@charset "UTF-8";
/* 共通処理 */
body{
    overflow-x: hidden;
    font-family: 'Noto Sans JP', sans-serif;
    /* font-family: "Zen Kaku Gothic New", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Helvetica, Arial, Verdana, sans-serif; */
    color: #333;
    font-weight: 500;
    min-width: 370px;
}
ul{
	list-style: none;
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
}

/* ヘッダー */
.header{
    position: relative;
    background-color: #ffffff;
    align-items: center;
    width: 100%;
    padding: 4px 0;
    z-index: 10;
    top: 0;
    left: 0;
    box-shadow: 0 5px 10px 0 rgba(50, 50, 50, 0.06);
}
.header-contents{
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
.navlist{
    display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 10px auto;
    max-width: 1024px;
    white-space: nowrap;
}
.navitem{
	text-align: center;
}
.navitem > a{
    display: block;
    padding: 0 13px;
    border-bottom: 2px solid transparent;
    transition: border-color .25s;
	font-size: 15px;
    color: #000000;
}
.pcmenu {
    margin: auto 0;
}
.navitem > a:hover{
    border-bottom: 2px solid #000000;
}
.nav a{
    color: #000000;
}
@media screen and (max-width: 768px){
    .header-contents{
        display: block;
        text-align: center;
        padding: 0;
    }
    .title_name{
        margin: 0 auto;
    }
    .title_name a {
        display: inline;
    }
    .pcmenu{
        display: none;
    }
}

.spmenu{
    display: none;
}
.spmenu.active{
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #00274b;
    width: 100%;
}
li.nav-items__item {
    border-bottom: 1px dotted #ffffff;
}
li.nav-items__item a{
    color: #ffffff;
    padding: 22px 25px;
    display: block;
}
@media screen and (min-width: 768px){
    .spmenu.active{
        display: none;
    }
}
  
/* ハンバーガーメニュー */
.hamburger {
    position: absolute;
    top: 25px;
    right: 10px;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
}
.hamburger {
    display: none;
}
@media screen and (max-width: 768px) {
    .hamburger {
      display: block;
    }
}
.hamburger span {
    width: 100%;
    height: 1px;
    background-color: #000000;
    position: relative;
    transition: ease .4s;
    display: block;
}
  
.hamburger span:nth-child(1) {
    top: 0;
}
  
.hamburger span:nth-child(2) {
    margin: 8px 0;
}
  
.hamburger span:nth-child(3) {
    top: 0;
}
  
  
/* ハンバーガーメニュークリック後のスタイル */
.hamburger.active span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
    color: #ffffff;
}
  
.hamburger.active span:nth-child(2) {
    opacity: 0;
    color: #ffffff;
}
  
.hamburger.active span:nth-child(3) {
    top: -9px;
    transform: rotate(-45deg);
    color: #ffffff;
}
/* メイン共通 */
.container_sec{
    max-width: 1200px;
    margin: 0 auto;
}
.main{
    padding: 0 30px;
}

/* トップページ */
.toptitle{
    text-align: center;
    color: #ac7822;
    margin: 60px;
}
.short-border {
    border-bottom: 2px solid #ac7822; /* ボーダーの太さと色を指定 */
    width: 50px; /* ボーダーの短さを指定 */
    display: inline-block; /* インライン要素にすることで横幅がボーダーの短さになります */
}
.title-border{
    border-bottom: 2px solid #ac7822; /* ボーダーの太さと色を指定 */
}
.border-center{
    text-align: center;
}
.top-container{
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}
.sp-top{
    display: none;
}
.top-image {
    width: 100%; /* 横幅を画面幅に合わせる */
    height: auto;
    object-fit: cover;
    object-position: center; /* ここで右寄せに設定 */
}
.top-container span{
    font-size: 30px;
    color: red;
}
.top-container p{
    padding: 0 18px;
    margin: 0;
    font-weight: bold;
}
.text01 {
    color:#ffffff;
    font-size: 48px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.text02 {
    color: #94721b;
    font-size: 20px;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translate(-50%);
}
.logo1 {
    position: absolute;
    bottom: 30px;
    right: 20px;
    transition: all .5s;
}   
.logo1 img {
    width: 80px;
}
.logo2 {
    position: absolute;
    bottom: 30px;
    right: 120px;
    transition: all .5s;
}   
.logo2 img {
    width: 80px;
}
.logo1:hover , .logo2:hover {
    opacity: 0.7;
  }
@media screen and (max-width: 896px){
    .top-image{
        display: none;
    }
    .sp-top{
        width: 100%; /* 横幅を画面幅に合わせる */
        display: block;
    }
    .text01 , .text02 , .text03{
        position: unset;
        font-size: 20px !important;
        border-bottom: 1px dotted;
        margin: 6px !important;
    }
    .top-container span{
        font-size: 22px;
    }
    .top-container p{
        display: none;
    }
    .logo1 {
        bottom: 10px;
        right: 10px;
    } 
    .logo1 img {
        width: 50px;
    }
    .logo2 {
        bottom: 10px;
        right: 70px;
    } 
    .logo2 img {
        width: 50px;
    }
}
.vk_outer-width-full {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}
.temp .wp-block-columns {
    margin: 0;
}
@media screen and (max-width: 768px){
    .column-reverse {
        flex-direction: column-reverse;
    }
}
.container_org{
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}
.main .top_row{
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
}
.main .top_row:after {
    content: "";
    display: block;
    width: calc(33.33% - 10px);
    height: 0;
}
.main .column {
    position: relative;
    width: calc(50% - 10px);
    border: 1px solid #e0e0e0;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0px 8px 16px -2px rgba(10, 10, 10, 0.1), 0px 0px 5px -10px rgba(10, 10, 10, 0.02);
}
.main .column-link {
    overflow: hidden;
}
.main .column a{
    transition: background-color 0.3s ease;
    color: #000000;
}
.card-headline{
    margin: 0;
}
.card-description{
    margin: 0;
}
.main .item_type a{
    border: 1px solid #ac7822;
    border-radius: 3px;
    color: #ac7822;
    font-size: 12px;
    line-height: 1.4;
    padding: 2px 8px 3px 8px;
    background-color: #ffffff;
}
.main .custom-thumbnail{
    width: 100%;
    object-fit: cover;
}
.main .list_link:hover {
    box-shadow: 0 15px 30px -5px rgba(0,0,0,.15), 0 0 5px rgba(0,0,0,.1);
    transform: translateY(-4px);
    opacity:0.7;
}
.main a:hover .custom-thumbnail{
    opacity:0.5;
    filter:alpha(opacity=50);
    -ms-filter: "alpha( opacity=50 )";
}
.main .blog-card-title{
    text-align: left;
    padding: 14px;
    font-weight: bold;
}
.main .blog-excerpt{
    font-size: 14px;
    padding: 14px;
}
.main .blog-card-date{
    text-align: left;
    font-size: 12px;
    padding: 4px 14px;
}
.item_type li{
    position: absolute;
    top: 0;
    right: 0;
}
@media screen and (max-width: 768px){
    .main .column{
        width: calc(50% - 5px);
    }
}
#sp-pcp-id-1191{
    padding-top: 40px !important;
}
/* 固定ページ */
.pagetop {
    width: 100%; /* 横幅を画面幅に合わせる */
    object-fit: cover;
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed; スクロール時に背景を固定 */
    position: relative;
    z-index: 1;
    height: 180px;
}
.pagetop:before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 黒みがかった背景色 */
    z-index: -1;
}
.page-title{
    font-size: 38px;
    padding: 30px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.page-sec{
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}
.page-sec section{
    padding: 0 60px;
}

/* カルーセル */
.carousel{
    /* width: 90%; */
    max-width: 1200px !important;
    margin: 0 auto;
    padding: 0 30px;
}
.sp-pcp-title a{
    font-size: 15px !important;
    padding: 0 10px !important;
}
.sp-pcp-post .sp-pcp-post-meta li{
    font-size: 12px !important;
    padding: 0 10px !important;
}
.top-category li a {
    display: block;
    padding: 14px;
    border-bottom: 1px dotted;
    transition: all 0.3s ease;
    color: #000000;
}
.top-category li a:hover{
    background-color: #d1e8f8;
}
.top-tag a{
    transition: all 0.3s ease;
    color: #000000;
}
.top-tag a:hover{
    background-color: #d1e8f8;
}
@media screen and (max-width: 768px){
    .page-sec section {
        width: 100%;
        padding: 30px;
        margin: 0;
    }
    .page-sec{
        display: block;
    }
}
/* 投稿ページ */
.pankuzu{
    border-top: 1px solid #e9e9e9;
    background: #f8f9f9;
    border-bottom: 1px solid #e9e9e9;
}
.pankuzu p{
    margin: 0 !important;
}
.rank-math-breadcrumb{
    max-width: 1200px;
    padding: 8px 30px;
    margin: 0 auto;
    
}
.single-title {
    font-size: 24px;
}
.single-date{
    margin: 0 auto;
}
.single-image img{
    width: 100% !important;
    height: auto !important;
}
.single-contents{
    margin: 40px auto;
}
@media screen and (max-width: 768px){
    .single-title{
        font-size: 22px !important;
    }
    .main {
        width: 100%;
        padding: 30px;
        margin: 0;
    }
    .container_sec{
        display: block;
    }
}
/* アーカイブ */
.archive_sec{
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}
.archive-title{
    font-size: 24px;
}
/* サイドバー */
.side-taxonomy .vk_taxonomy-list li a {
    display: block;
    padding: 8px;
    border-bottom: 1px dotted;
    transition: all 0.3s ease;
    color: #000000;
}
.side-taxonomy .vk_taxonomy-list li a:hover {
    background-color: #e0e0e0;
}
.side-post .vk_post{
    margin-bottom: 10px !important;
}
.card-body {
    padding: 0 !important;
}
.vk_post .vk_post_title a:hover {
    color: #b0b0b0;
}
.side .detail_cart{
    width: 100%;
    height: auto;
}
.side table{
    width: 100% !important;
}
.side{
    flex: 0 0 25%;
    padding: 0 30px;
}
@media screen and (max-width: 768px){
    .side {
        max-width: 100%;
        width: 100%;
        padding: 30px;
        margin: 50px 0;
    }
}
/* 問い合わせフォームCSS */
.contact-input input{
    width: 100%;
    height: 36px;
    font-size: 18px;
}
.con-message,textarea{
    width: 100% !important;
    font-size: 18px; 
}
.con-submit input{
    background-color: rgb(235, 235, 235);
    transition: 0.2s;
    border: 1px solid;
    padding: 5px 0;
    cursor: pointer;
    width: 100%;
    height: 60px;
    font-size: 18px;
}
.con-submit input:hover{
    background-color: white;
}
.wpcf7 form.sent .wpcf7-response-output {
    max-width: 700px;
    font-size: 20px;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 30px;
}
