@charset "UTF-8";
/* CSS Document */
html {
margin: 0 !important;
scroll-behavior: smooth;
}

body {
margin: 0;
padding: 0;
font-family: 'Zen Kaku Gothic New','ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
/*background-color: #f5f5f5;*/
color: #333333;
background-color: #FFFAF0;
}
  
p{
font-size: 14px;
line-height: 1.4em
}

.display_sp{
display: none;
}

/*animation*/
.fade-in {
    opacity: 1 !important; /* フェードアウト時に透明にする */
}

.fade-out {
    opacity: 0 !important; /* フェードアウト時に透明にする */
}

.site-header{
width: 100%;
}



/*
TOPスプリットレイアウト
------------------------------------------------------------------------------------------------------------------------
*/
#top_contents{
width: 100%;
height: 100vh;
flex-wrap: wrap;
justify-content: center; 
align-items: center; 
position: relative; 
overflow: hidden; 
transition: opacity 1s ease;
opacity: 0;
}

#top_left, #top_right {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
transition: width 1s ease, z-index 0s 1s; /* z-indexの変更を後から適用 */
}

#top_left{
background-color: #fff;
}

#top_left_img{
width: 40%;
margin: 0 auto 40px;
}

#top_left_title{
width: 240px;
margin: 0 auto 40px;
}

#top_left p{
text-align: center;
}

#top_right{
background-color: #566749;
}

#top_right_img{
width: 40%;
margin: 0 auto 40px;
}

#top_right_title{
width: 240px;
margin: 0 auto 40px;
}

#top_right p{
text-align: center;
color: #fff;
}

.bring-to-front {
z-index: 2; /* 最前面に移動 */
transition: width 1s ease, z-index 0s; /* z-index を即座に適用 */
}






/*
mitsubachi-header
------------------------------------------------------------------------------------------------------------------------
*/
.site-header{
position: fixed;
top: 16px;
display: flex;
align-items: center;
justify-content: space-between;
z-index: 99999;
}

#logo{
width: 50px;
height: 60px;
position: relative;
z-index: 9999;
left: 20px;
cursor: pointer;
}

#calendar_button{
width: 100%;
height: 50px;
color: #fff;
display: flex;
justify-content: space-around;
align-items: center;
position: fixed;
z-index: 9999;
cursor: pointer;
background-color: #755B46;
bottom: 0;
}

/*navi*/
#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
  z-index: -1;
  opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
  top:0;
  left: 0;
  width:100%;
    height: 100vh;/*ナビの高さ*/
background-color:#566749;
    /*動き*/
  transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
  opacity: 1;
  z-index:999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビのスタイル*/
nav.NavMenu {
  position: fixed;
  z-index: 12;
  top: 0;
  left: 0;
  background: #fff;
  text-align: center;
  width: 100%;
  height: 100%;
  display: none;
  padding: 160px 0;
  overflow: auto; }

.NavContainer {
  display: block;
  height: auto;
  width: 100%;
 }

.NavList {
  width: 100%;
  margin-bottom: 40px; }

.NaviList-ul {
  display: block;
  text-align: center; }

nav.NavMenu ul {
  width: 100%;
  margin: 20px auto; }

nav.NavMenu ul li {
  text-align: center;
  line-height: 28px;
  list-style-type: none;
  width: 100%;
  margin-bottom: 48px; }

nav.NavMenu ul li:last-child {
  padding-bottom: 0; }

nav.NavMenu ul li a {
  display: block;
  font-size: 16px;
  color: #333;
  font-family: "Zen Old Mincho","Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  text-decoration: none;
  transition: all  0.1s ease; }

nav.NavMenu ul li a:visited {
  color: #000; }



/*ボタンのスタイル*/
.Toggle {
  position: absolute;
  width: 45px;
  height: 45px;
  cursor: pointer;
  z-index: 13;
  display: block;
  right: 10px; }

.Toggle span {
  display: block;
  position: absolute;
  width: 24px;
  border-bottom: solid 2px #000;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  left: 11px; }

.Toggle span:nth-child(1) {
  top: 14px; }

.Toggle span:nth-child(2) {
  top: 22px; }

.Toggle span:nth-child(3) {
  top: 30px; }

.Toggle.active span:nth-child(1) {
  top: 18px;
  left: 11px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-bottom: solid 2px #111; }

.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  border-bottom: solid 2px #111; }





/*
蜜蜂荘TOP
------------------------------------------------------------------------------------------------------------------------
*/

@keyframes fade-in-top {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in-box {  
  /* .boxが「my-fade-in」で状態変化するように指定 */
  animation-name:     fade-in-top;
  animation-duration: 1s;
}

.m_main_content{
background-color: #FFFAF0;
}

.m_top_slide{
height: 100vh;
}

.m_top_slide img{

}

.slide01{
width: 100%;
height: 100%;
background-image: url(https://oomichi.jp/wp-content/themes/mitsubachisou/img/top-slide02.jpg);
background-size: cover;
background-position: center;
}

.m_about_wrap{
margin-bottom: 120px;
}

.m_about{
position: relative;
width: 100%;
height: auto;
padding: 80px 0;
background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url(https://oomichi.jp/wp-content/themes/mitsubachisou/img/top-about.jpg); 
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
}

.m_about p{
font-family: "Zen Old Mincho","Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

.m_about_text01{
text-align: center;
} 

.m_about_text01 p{
color: #fff;
font-size: 24px;
text-align: end;
margin-bottom: 80px;
line-height: 3.2rem;
writing-mode: vertical-rl;
letter-spacing: 0.3em;
display: inline-block;
}

.m_about_text02 p{
color: #fff;
text-align: center;font-family: 'Zen Kaku Gothic New','ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
line-height: 1.8rem;
}

.m_about_mitsubachisou{
margin: 80px auto 20px;
position: relative;
}

.m_mitsubachisou_title{
width: 90%;
margin-bottom: 40px;
color: #937E4F;
}

.m_mitsubachisou_title h2{
font-size: 24px;
margin-bottom: 8px;
text-align: left;
letter-spacing: 0.3em;
font-family: "Zen Old Mincho","Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

.m_mitsubachisou_title h2 span{
font-size: 14px;
letter-spacing: 1.6px;
margin-left: 8px;
}

.m_mitsubachisou_title h2:before{

}

.m_mitsubachisou_text{
width: 90%;
margin: 0 auto 40px;
}

.m_mitsubachisou_text p{
line-height: 1.6rem;
margin-bottom: 20px;
letter-spacing: -0.3px;
}

.m_about_img{
width: 100%;
margin-bottom: 120px;
}

.m_about_hachinosu{
margin: 80px auto 20px;
position: relative;
}

.m_hachinosu_title{
width: 90%;
margin: 0 auto;
color: #4C5B40;
}

.m_hachinosu_title h2{
font-size: 24px;
text-align: right;
margin-bottom: 20px;
line-height: 3.2rem;
letter-spacing: 0.3em;
font-family: "Zen Old Mincho","Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.m_hachinosu_title h2 span{
font-size: 14px;
font-weight: normal;
letter-spacing: 1.6px;
margin-left: 8px;
}

.m_hachinosu_title h2:before{

}

.m_hachinosu_text{
width: 90%;
margin: 0 auto 80px;
text-align: left;
}

.m_hachinosu_text p{
line-height: 1.6rem;
margin-bottom: 20px;
letter-spacing: -0.3px;
}

.m_hachinosu_info{
margin: 40px auto;;
}

.m_hachinosu_info p {
margin-bottom: 4px;
}

.m_hachinosu_info p span{
display: block;
font-weight: bold;
color: #4C5B40;
}

.m_about_img{
width: 100%;
}

.section_h3{
font-size: 18px;
text-align: center;
margin: 40px auto;
}

.m_product_wrap{
width: 90%;
margin: 0 auto;
padding: 0 0 40px;
}

.m_product{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.section_h3 {
position: relative;
display: inline-block;
padding: 0 60px;
left: 50%;
transform: translateX(-50%);
}

.section_h3:before, .section_h3:after {
content: '';
position: absolute;
top: 50%;
display: inline-block;
width: 32px;
height: 1px;
background-color: #888;
}

.section_h3:before {
  left:0;
}
.section_h3:after {
  right: 0;
}

.m_product_h3 span::after {
content: attr(data-en);
display: block;
font-size: 14px;
margin-top: 8px;
color: rgba(144,62,62,1.00);
}

.m_product_list{
width: 45%;
margin-bottom: 40px;
}

.m_product_img{
margin-bottom: 10px;
}

.m_product_title{
font-size: 14px;
}

.calendar{
text-align: center;
}

.calendar h3,.calendar p{
text-align: left;
}

.calendar_wrap{
width: 90%;
margin: 0 auto;
padding: 0 0 40px;
}

.calendar_h3 span::after {
content: attr(data-en);
display: block;
font-size: 14px;
margin-top: 8px;
color: rgba(80,159,163,1.00);
}

.event_list{
margin: 0 auto;
}

.event_list li{
width: 100%;
}

.event_thumbnail img{
margin-bottom: 10px;
}

.event_list li h3{
margin: 0 auto 4px;
}

.event_list li p{

}

.event_list li:nth-child{
margin-bottom: 8px;
}

.event_list li img{
width: 100%;
}

.event_item{
margin-bottom: 40px;
}

.news_wrap{
width: 90%;
margin: 0 auto;
}

.news_h3 span::after {
content: attr(data-en);
display: block;
font-size: 14px;
margin-top: 8px;
color: rgba(113,151,75,1.00);
}

.news_list_wrap{
margin: 0 auto 20px;
}

.thumbnail{
margin-bottom: 20px;
}

.news_list .top_post{
display: flex;
align-items: center;
}

.top_post .date{
width: 24%;
max-width: 100px;
font-size: 14px;
}

.top_post .post_title{
width: auto;
font-size: 14px;
}

.back_list{
width: 200px;
margin: 80px auto;
text-align: center;
border: 1px solid #333;
padding: 10px;
}

.back_product_list{
width: 200px;
margin: 20px auto;
text-align: center;
border: 1px solid #333;
padding: 10px;
}




/*product
-----------------------------------------------------------------------------------------
*/
.archive_product_wrap{
width: 90%;
max-width: 1400px;
margin: 120px auto;
}

.product_content{
width: 90%;
margin: 120px auto;
}

.main_product_contents{
margin-bottom: 80px;
}

.product_box01{
width: 100%;
}

.product_box02{
width: 100%;
}

.product_slider{
margin-bottom: 60px;
}

.product_title{
font-size: 20px;
margin-bottom: 20px;
}

.price{
margin-bottom: 40px;
}

.price p{
font-size: 16px;
}

.detailes{
line-height: 1.6;
margin-bottom: 40px;
}

.detailes p{
line-height: 1.6em;
margin-bottom: 40px;
}

.detailes_button{
width: 240px;
border: 1px solid #666;
padding: 10px;
text-align: center;
margin: 0 auto;
}

.back_list_button{
margin: 0 auto;
width: 240px;
border: 1px solid #666;
padding: 10px;
text-align: center;
}




/*calender
-----------------------------------------------------------------------------------------
*/
.tribe-events-pg-template{
margin-top: 120px !important;
}

.tribe-common-l-container{
margin: 80px auto 0 !important;
}

.tribe-events-c-subscribe-dropdown__container{
display: none !important;
}


/*news
-----------------------------------------------------------------------------------------
*/
.news{
width: 90%;
margin: 120px auto 80px;
}

.news-title{
font-size: 20px;
margin-bottom: 10px;
}

.date-category{
margin-bottom: 40px;
display: flex;
flex-wrap: wrap;
align-items: center;
}

.single_date{
margin-right: 8px;
}

.news-contents{

}

.single_thumbnail{
width: 100%;
margin: 40px auto;
}

.single_content{
margin-bottom: 80px;
}

.single_content p{
line-height: 1.6em;
}


/*footer
-----------------------------------------------------------------------------------------
*/
footer{
background-color: #31281D;
}

.footer_logo{
width: 60px;
margin: 0px auto;
padding: 20px 0;
}

.footer_logo img{
width: 100%;
margin: 0 auto;
}

.footer_address{
margin: 0px auto 20px;
}

.footer_address p{
font-size: 14px;
text-align: center;
margin: 10px auto;
color: #fff;
}

.copyright{
font-size: 12px;
text-align: center;
color: #fff;
padding-bottom: 70px;
}



@media screen and (min-width: 780px) {
}





@media screen and (min-width: 1025px) {

#calendar_button{
width: 200px;
height: 50px;
color: #fff;
display: flex;
justify-content: space-around;
align-items: center;
position: absolute;
z-index: 9999;
right: 100px;
cursor: pointer;
background-color: #755B46;
border-radius: 10px;
}

.Toggle {
top: 14px;
right: 20px;
}

#top_contents{
width: 100%;
height: 100vh;
display: flex;
flex-wrap: wrap;
justify-content: center; 
align-items: center; 
position: relative; 
overflow: hidden; 
transition: opacity 1s ease;
opacity: 0;
}

#top_left, #top_right {
position: absolute;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
transition: width 1s ease, z-index 0s 1s; /* z-indexの変更を後から適用 */
}

#top_left{
left: 0;
background-color: #fff;
}

.top_left_link{
height: 100vh;
display: grid;
place-items: center;
width: 40px;
position: absolute;
left: 0;
top: 0;
bottom: 0;
}

#top_left_img{
width: 250px;
margin: 0 auto 80px;
}

#top_left_title{
width: 240px;
margin: 0 auto 80px;
}

#top_left p{
text-align: center;
}

#top_right{
right: 0;
background-color: #566749;
}

.top_right_link{
color: #fff;
height: 100vh;
display: grid;
place-items: center;
width: 40px;
position: absolute;
right: 0;
top: 0;
bottom: 0;
}

#top_right_img{
width: 250px;
margin: 0 auto 80px;
}

#top_right_title{
width: 240px;
margin: 0 auto 80px;
}

#top_right p{
text-align: center;
color: #fff;
}

.bring-to-front {
z-index: 2; /* 最前面に移動 */
transition: width 1s ease, z-index 0s; /* z-index を即座に適用 */
}







/*蜜蜂荘TOP*/
.m_top_slide{
height: 100vh;
}

.m_top_slide img{

}

.slide01{
width: 100%;
height: 100vh;
background-image: url(https://oomichi.jp/wp-content/themes/mitsubachisou/img/top-slide01.jpg);
background-size: cover;
background-position: center;
}

.m_about{
position: relative;
padding: 120px 0;
display: flex;
align-items: center;
justify-content: center;
}

.m_about_wrap{
margin-top: 240px;
}

.m_about p{
font-family: "Zen Old Mincho","Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

.m_about_text01{
color: #fff;
font-size: 24px;
text-align: center;
margin-bottom: 80px;
line-height: 2.6rem;
}

.m_about_text01 p{
margin-bottom: 0px;
}

.m_about_text02{
color: #fff;
text-align: center;
}

.m_about_mitsubachisou{
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
margin: 0 auto 240px;
}

.m_mitsubachisou_text{
width: 25%;
margin: 0 auto;
}

.m_about_hachinosu{
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
margin: 0 auto 240px;
}

.m_hachinosu_text{
width: 35%;
order: 2;
margin: 0 auto;
text-align: left;
}

.m_about_img{
width: 50%;
margin-bottom: 0;
}

.section_h3{
margin-bottom: 80px;
}

.m_product_wrap{
width: 90%;
margin: 0 auto 120px;
}

.m_product{
width: 90%;
max-width: 1200px;
margin: 0 auto;
justify-content: space-between;
}

.m_product::after{
width: 30%;
display: block;
content:"";
}

.m_product::after{
width: 30%;
display: block;
content:"";
order: 1;
}

.m_product_list{
width: 30%;
}

.event_list{
width: 80%;
margin: 0 auto;
}

.event_list{
display: flex;
justify-content: space-between;
align-content: center;
flex-wrap: wrap;
}

.event_list:after {
content: "";
display: block;
width: 30%;  /* .boxに指定したwidthと同じ幅を指定する */
height: 0;
}

.event_list li{
width: 30%;
display: block;
text-align: left;
}

.event_list li img{
width: 100%;
}

.event_list li h3,.event_list li p{
margin-bottom: 10px;
}

.calendar_wrap{
width: 100%;
margin: 0 auto 120px;
}

.news_wrap{
width: 100%;
margin: 0 auto 120px;
}

.news_list_wrap{
width: 50%;
margin: 0 auto 20px;
}

.display_sp{
display: inherit;
}




/*product
-----------------------------------------------------------------------------------------
*/

.product_content{
width: 90%;
margin: 240px auto 120px;
}

.main_product_contents{
display: flex;
justify-content: space-around;
align-content: flex-start;
flex-wrap: wrap;
margin-bottom: 80px;
}

.product_box01{
width: 40%;
}

.product_box02{
width: 40%;
}

.price{
margin-bottom: 40px;
}

.detailes{
margin-bottom: 40px;
}

.detailes_button{
width: 120px;
border: 1px solid #666;
padding: 10px;
text-align: center;
}

.back_list_button{
margin: 0 auto;
width: 120px;
border: 1px solid #666;
padding: 10px;
text-align: center;
}




/*news
-----------------------------------------------------------------------------------------
*/
.news{
width: 50%;
margin: 160px auto 120px;
}

.news-title{
font-size: 20px;
margin-bottom: 10px;
}

.date-category{
margin-bottom: 40px;
display: flex;
flex-wrap: wrap;
align-items: center;
}

.single_date{
margin-right: 8px;
}

.news-contents{

}

.single_thumbnail{
width: 100%;
margin: 40px auto;
}

.single_content{
margin-bottom: 80px;
}

.single_content p{
line-height: 1.6em;
}

}