@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/


@font-face {
font-family: 'Playfair Display';
src: url('./css/PlayfairDisplay-Regular.ttf') format('truetype');
}


body {
font-family: 'Playfair Display', "游明朝", 'YuMincho', "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
background-color: #fff;
}
*{
box-sizing: border-box;
}
p{
}

.re{position:relative;}
.ab{position:absolute;}
.float-left{float: left;}
.clear{clear: both;}
img{ max-width: 100%; display: block; }
a{text-decoration: none;}
a:hover{opacity: .8; transition:.3s;}

.DivLink{
    position:relative;
}
.DivLink .Link{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
table{
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
ul {
  list-style: none;
  margin:0;
  padding:0;
}
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
/* Google Mapを囲う要素 */
.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%; /* 比率を4:3に固定 */
}
/* Google Mapのiframe */
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



/*WP設定*/
main{
  position: relative;
  z-index: 0;
}
.admin-panel{
  display: none;
}
.page .date-tags,.shoplist .date-tags{
  display: none;
}
.main {
  padding: 0 30px;
}
.entry-content {
    margin-top: 0;
    margin-bottom: 0;
}
section {
    padding: 80px 0;
}
.article h2,.article h1 {
  font-size: 2.3rem;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  font-weight: normal;
  text-align: center;
  margin: 0;
  letter-spacing: .03em;
}
.go-to-top{
  display: none!important;
}
.article ul, .article ol {
    padding-left: 0;
}

/*=======================================================
==========================================================
　　　　　　　　　　　　　MAIN CSS
==========================================================
========================================================*/


/*========= 途中からハンバーガーメニューに変化するのためのCSS ===============*/

/*========= ボタンのためのCSS ===============*/

/*ボタン全体の形状*/
.openbtn{
    /*はじめは非表示に*/
	display: none;
    /*ボタンの位置*/
	position:fixed;
	top:10px;
	left: 10px;
	z-index: 999;
    /*ボタンの形状*/
	cursor: pointer;
    width: auto;
    height:50px;
}

/*ボタンのアイコン設定*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 0px;
    background-color: #b3b3b4;
    width: 23px;
}

.openbtn span:nth-of-type(1) {
	top:15px;
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

/*activeクラスが付与された後のボタンのアイコン設定*/
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 23px;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 23px;
}
.openbtn p{
  margin: 12px 0 0 45px;
      color: #b3b3b4;
      font-size: 1.4rem;
}

/*fadeDownクラスが付与された後のボタンの出現アニメーション設定*/
.fadeDown {
    animation-name: fadeDownAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
    display: block;
}
@keyframes fadeDownAnime{
  from {
    opacity: 0;
	transform: translateY(-100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*========= ヘッダーナビゲーションのためのCSS ===============*/

/*==ヘッダーの形状*/
#header{
  height: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  text-align: center;
  padding: 1px;
  flex-direction: column;
}

/*.doneクラスがついたヘッダー*/
#header.dnone {
	opacity: 0;/*透過0にして非表示に*/
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたら*/
#header.dnone.panelactive {
	opacity: 1;/*不透明にして出現*/
}


/*==ヘッダーのテキストナビゲーションの形状*/
#g-navi {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    position: static;
}
#g-navi ul{
	list-style: none;
	display: flex;
	justify-content: center;
}

#g-navi ul li a{
  display: block;
  text-decoration: none;
  color: #000;
  padding: 0.2em 2.5em;
  transition: .3s;
  line-height: 1em;
  font-size: 1.4rem;
}

#g-navi ul li.current a,
#g-navi ul li a:hover{
	opacity: .5;
}

/*.doneクラスがついたヘッダーのテキストナビゲーションの形状*/
#header.dnone #g-navi {
    position: fixed;
    top: 0;
    left: -310px;
    z-index: -1;
    width: 300px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    opacity: 0;
    transition: all 0.4s;
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたナビゲーションの形状*/
#header.dnone.panelactive #g-navi {
    opacity: 1;
    z-index: 3;
    background: #fff;
    border-right: 1px solid #ddd;
    padding: 100px 40px;
    left: 0;
}

#header.dnone.panelactive #g-navi ul{
	display:block;/*flexの横並びをblockにして縦並びに*/
  width: 100%;
}


/*リストの形状*/
#header.dnone.panelactive #g-navi li{
  border-bottom: 1px solid #ccc;
  width: 100%;
  padding: 13px 0;
}

#header.dnone.panelactive #g-navi li a{
  color: #333;
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  letter-spacing: normal;
  transition: all 0.3s;
  font-size: 1.3rem;
  width: fit-content;
  display: block;
  text-align: left;
  padding: 0;
}
section{
    position: relative;
    z-index: 1;
}

.header-logobox{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding: 15px 40px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.header-logobox_first{
  width:1px;
}
.header-logobox_logo{
  width: 150px;
  position: absolute;
  top:8px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.header-logobox_logo img{
  width:100%;
}
.header-logobox_sns{
  display: flex;
  flex-direction: row;
}

.header-logobox_sns a{
  display: block;
  width:30px;
  margin:0 0 0 5px;
}
.header-logobox-fixed{
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 1;
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  padding: 17px 40px;
  width: 100%;
  max-width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #ddd;
}
.header-logobox_logo-fixed {
    width: 131px;
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}


/*===================================================
=======================footer========================
/*====================================================*/
#footer {
    background-color: #000;
    padding: 60px;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 0;
}
.footer-bottom{
  display: none;
}


#page-top{
  width: fit-content;
    margin: 0 auto 40px;
}
#page-top a{
  width: fit-content;
  color: #ccc;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  transition: all 0.3s;
  align-items: center;
}

#page-top a img{
  width: 2rem;
  margin: 0 0 .5rem;
}
.footer-logo{
  display: block;
  width: 140px;
  margin: 0 auto;
  text-align: center;
  padding: 1em 0 2em;
  position: relative;
  z-index: 2;
}
.footer-logobox_sns {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 20px auto;
}
.footer-logobox_sns a {
    display: block;
    width: 30px;
    margin: 0 0 0 5px;
  opacity:.7;
}
a.policy{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
    margin: 2.5em auto 1em;
  width:fit-content;
  opacity:.7;
}
a.policy p{
  font-size:1.3rem;
  color:#ddd;
  width:fit-content;
  margin:0;
}
a.policy img{
  width: 8px;
  margin-left: 8px;
}
a.policy:hover,.footer-logobox_sns a:hover{
  opacity:1;
}

p.ltd{
  font-size:1.2rem;
  color:#ddd;
  text-align: center;
  letter-spacing: .1em;
}
.footer {
    margin-top: 0;
}


/*固定ページ*/
.back-c{
  background-color: #f3f3f3;
}
.inner{
  width: 90%;
  max-width: 1400px;
  margin:0 auto;
}

/*記事ページ*/
body.post-template-default .content {
    margin-top: 0;
    background-color: #f3f3f3;
}
.sec-padi{
  padding: 80px 0;
  margin: 0 !important;
}
.font-jp{
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
}
.font-en{
  font-family: 'Playfair Display';
}
.top-line{
  border-top: 1px dotted #ddd;
}




/*NEWS*/
.top-news ul {
    margin: 45px 0 15px !important;
}
.top-news ul li{
  padding: 9%;
  background: #fff;
  border: 1px solid #ddd;
}
.top-news ul li .wp-block-post-date{
  font-size: 1.4rem;
  color: #909090;
  margin: .5em 0 !important;
  display: block;
}
.top-news :where(.wp-block-post-template.is-layout-grid) {
    gap: 2.5%;
}
.top-news p{
  font-size: 1.4rem;
  line-height: 1.8em;
}
.top-news p a{
  color: #aaaaaa;
  font-family: 'Playfair Display';
}
.top-news img{
  height: 14vw !important;
  object-fit: cover !important;
}


/*SHOP*/
body.single-shop section{
  padding:0 0 80px;
}
body.single-shop h1.entry-title{
  display: none;
}
body.single-shop .content {
    margin-top: 0;
}
body.single-shop .wrap {
    width: auto;
}
body.single-shop .main {
    padding: 0;
}

body.single-shop .shop-title-en{
  font-size: 2.9rem;
  text-align: center;
  margin: 2.5em 0 .3em;
}
body.single-shop h2.shop-title-jp {
    font-size: 1.4rem;
    margin: 0 0 1.5em;
}
body.single-shop .shop-title-day{
  font-size: 1.6rem;
  text-align: center;
  margin: 0;
  letter-spacing: .05em;
}
body.single-shop .main-text {
    text-align: center;
    line-height: 2.2em;
    margin: 2.5em 0 4em;
    font-size: 1.5rem;
}
body.single-shop .ad-text{
  text-align: center;
  line-height: 2em;
  font-size: 1.5rem;
  font-family: sans-serif;
}

body.single-shop ul.shop-sns{
  display: flex;
  justify-content: center;
  flex-direction: row;
  margin: 4em 0 0;
}
body.single-shop ul.shop-sns li {
    position: relative;
    width: fit-content;
    text-align: center;
    margin: 1.3em;
}
body.single-shop ul.shop-sns li:nth-child(1) a span::before{
  content:"";
  position:absolute;
  top:-41px;
  left:50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background-image: url(./img/sns07.png);
  background-size: contain;
  width:34px;
  height:34px;
}
body.single-shop ul.shop-sns li:nth-child(2) a span::before{
  content:"";
  position:absolute;
  top:-41px;
  left:50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background-image: url(./img/sns08.png);
  background-size: contain;
  width:34px;
  height:34px;
}
body.single-shop ul.shop-sns li a span{
  font-size: 1.1rem;
  font-family: sans-serif;
  line-height: 1.5em;
  display: block;
  color: #666;
  position:relative;
}
body.single-shop .shopimg-flex-row{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 4em 0 5%;
}
body.single-shop .shopimg-flex-row > div{
  width:48%;
}
body.single-shop .shopimg-flex-column{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body.single-shop .shopimg-flex-column img{
  height: 47%;
  object-fit: cover;
}
body.single-shop .shopimg-last{

}

/*SHOPLIST の他店舗shoplist*/
body.single-shop section.shoplist{
  width:100%;
  padding:80px 0;
}
body.single-shop section.shoplist ul{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  width:100%;
  margin: 30px 0 0;
}
body.single-shop section.shoplist ul li{
  width: 23%;
  margin: 13px 2.6% 13px 0;
  padding: 1.5%;
  border: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: #fff;
}
body.single-shop section.shoplist ul li:nth-child(4n){
  margin: 13px 0 13px 0;
}
body.single-shop section.shoplist ul li img{
  width: 100%;
  object-fit: cover;
  height: 14vw;
}
body.single-shop p.shop_en-title{
  text-align: center;
  margin: 1em 0 .2em;
  font-size: 1.8rem;
}
body.single-shop .article .shoplist h3{
  margin: 0 0 1em;
  border: 0;
  padding: 0;
  font-size: 1.3rem;
  text-align: center;
}
body.single-shop p.shop_text{
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  font-size: 1.2rem;
    margin: .3em 0 1em;
  line-height: 1.5em;
}
body.single-shop .shop-linkbox{
  display: flex;
  flex-direction: row;
  align-items: center;
}
body.single-shop .date-tags{
  display: none;
}
body.single-shop .shop-top > div:nth-child(1) img:nth-child(1){
  width:100%;
}



















/*=======================================================
==========================================================
　　　　　　　　　　　　　PC only
==========================================================
========================================================*/
@media screen and (min-width:1023px) {
html { font-size: 62.5%; }
.pc-none { display: none!important; }
.pc-br::after {
  content: "\A" ;
  white-space: pre;
}



}/*=======================================================
==========================================================
  　　　　　　　　　　　　SP only
==========================================================
========================================================*/
@media screen and (max-width:1023px) {
html { font-size: 60%; }
body{min-width: 320px;}
.sp-none { display: none!important; }
.sp-br::after {
  content: "\A" ;
  white-space: pre;
}

/*PC-header調整*/
.header-logobox_sns{
  display: none!important;
}
.header-logobox_logo-fixed,.header-logobox_logo {
  width: 96px;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: inherit;
  -webkit-transform: inherit;
  -ms-transform: 0;
}
.header-logobox,.header-logobox-fixed {
  animation-name: none;
  animation-duration: auto;
  animation-fill-mode: none;
  padding: 12px 0;
  justify-content: center;
  z-index: 9999;
}

/*========= ナビゲーションのためのCSS ===============*/

#g-nav2{
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position:fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top:0;
  left: -120%;
  width: 57%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.94);
    /*動き*/
  transition: all 0.6s;

}

/*アクティブクラスがついたら位置を0に*/
#g-nav2.panelactive {
    left: 0;
}

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

/*ナビゲーション*/
#g-nav2 ul {
  position: absolute;
  z-index: 999;
  top: 200px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72%;
  display: block;
}

/*リストのレイアウト設定*/

#g-nav2 li{
  list-style: none;
  text-align: left;
}

#g-nav2 li a{
  color: #000;
  text-decoration: none;
  padding: 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #ccc;
  font-size: 1.4rem;
  display: block;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
    position: fixed;
    z-index: 9999;
    top: 2px;
    left: 6px;
    cursor: pointer;
    width: 50px;
    height: 50px;
}

/*×に変化*/
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
  background-color: #b3b3b4;
    width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
  top:15px;
}

.openbtn1 span:nth-of-type(2) {
  top:23px;
}

.openbtn1 span:nth-of-type(3) {
  top:31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}


/*共通*/
main.main{
    padding: 0 0;
}
section {
    padding: 50px 0;
}
.sec-padi {
    padding: 50px 0;
    margin: 0 !important;
}
.inner {
    width: 80%;
    max-width: 700px;
    margin: 0 auto;
}



.top-news ul {
    margin: 25px 0 10px !important;
    display: flex !important;
    flex-direction: column;
}

.top-news img {
    height: 56vw !important;
    object-fit: cover !important;
}
.top-news ul li {
    padding: 9%;
    background: #fff;
    border: 1px solid #ddd;
    margin: 15px 0;
}




body.single-shop section.shoplist ul {
  margin: 10px 0 0;
  flex-direction: column;
}
body.single-shop section.shoplist ul li {
  width: 100%;
  margin: 1.2rem 0;
  padding: 8%;
  border: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body.single-shop section.shoplist ul li img {
    width: 100%;
    object-fit: cover;
    height: 48vw;
}
body.single-shop p.shop_text {
  margin: 1em 0;
}
body.single-shop section.shoplist ul li:last-child{
  margin-bottom:0;
}
body.single-shop p.shop_en-title {
    font-size: 1.9rem;
}
body.single-shop p.shop_text {
    font-size: 1.3rem;
}

body.single-shop section.shop-top .inner {
    width: 100%;
}
body.single-shop .shop-sp-90{
  width:80%;
  margin:0 auto;
}
body.single-shop .main-text {
    text-align: left;
}
body.single-shop .main-text br{
    display: none;
}
body.single-shop .ad-text {
    text-align: left;
}

body.single-shop .date-tags {
    line-height: 0.8;
    text-align: right;
    margin-bottom: 0;
}
body.single-shop .shopimg-flex-row {
    margin: 3em 0 5%;
}
body.single-shop section {
    padding: 0 0 0;
}







}/*=======================================================
==========================================================
  　　　　　　　　　　　　Ipad only
==========================================================
========================================================*/
@media screen and (min-width:480px) and ( max-width:1023px) {
html { font-size: 61%; }
.ip-none { display: none!important; }
.ip-br::after {
  content: "\A" ;
  white-space: pre;
}

}/*=======================================================
==========================================================
　　　　　　　　　　　　　共通コード
==========================================================
========================================================*/
