@charset "UTF-8";



/* =================================
共通部分
================================= */

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    height: 100%;
}
body{
    font-size: 1.6rem;
    font-family:"Zen Maru Gothic", san-serif;
    line-height: 2;
    letter-spacing: 1.3px;
    color: #4b2e1e;
    font-weight: 500;
}
@media screen and (max-width: 640px) {/* 640px以下*/
  body {
      font-size: 1.4rem;/*14px*/
      line-height: 1.8;
      letter-spacing: 1px;
  }
}
a {
    text-decoration: none;
    color:inherit
}
a:hover {
    opacity: 0.8;
    transition: 0.3s;
}
img {
    max-width: 100%;
    vertical-align: bottom;
}
table {
    width: 100%;
}
.wrapper{
  max-width:1080px;
  margin:auto;
  padding:0 20px;
}
.section-inner{
  margin:auto;
  padding: 100px 0;
}
button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}
hr {
  display: none;
}
.indent{
  text-indent: -1em;
  padding-left: 1em;
}

/* 調整用スタイル */
ul,
li {
  list-style: none;
}



/* =================================
pankuzu list
================================= */

.breadcrumbs span{
    font-size: 1rem;
    vertical-align: 2%;
    font-family: 'Noto Sans JP',san-serif;
	font-weight:500;
}
.breadcrumbs a{
	color: #007C55;
}
.pan_list{
	display:flex;
}
@media print, screen and (min-width: 960px) {/*--960pxより大きい場合-- */
	.breadcrumbs span{
		font-size: 1.3rem;
	}
}


/* =================================
改行・ページ内リンク位置調整
================================= */

/*スマホだけ改行（brにclassを付与して使用する）*/
.br-sp{ display: none; }
@media screen and (max-width: 767px) {
  .br-sp{ display: block; }
}

/*PCだけ改行*/
.br-pc{ display: block; }
@media screen and (max-width: 767px) {
  .br-pc{ display: none; }
}

/*ページ内リンク　位置調整*/
.jump::before{
  content:'';
  display: block;
  padding-top: 70px;
  margin-top: -70px;
}

@media print, screen and (min-width: 768px) {/*--768pxより大きい場合-- */
.jump::before{
  content:'';
  display: block;
  padding-top: 160px;
  margin-top: -160px;
}
}


/* =================================
SCROLL animation
================================= */

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}
/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}
/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}


/* =================================
button base
================================= */
a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 4rem;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 3px;
  color: #4b2e1e;
  background: #fff;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  box-sizing: border-box;
  transition: transform .3s;
}

a.btn:hover {
  transform: translateY(-3px);
}

/* 
VARIATION
================================= */

/* シャドウ */
a.btn-shadow {
  box-shadow: 0 6px 0 #f6d2dd;
}

/* 枠線（角丸） */
a.btn-border {
  border: 1px solid #987f6c;
}

/* 枠線（角） */
a.btn-square {
  border-radius: 0;
  background: #F5F3F0;
  padding: 3rem 2rem;
}

/* ABOUT用 */
a.btn-about {
  border-radius: 0;
  background: #F5F3F0;
  padding: 3rem 2rem;
}

/* 
SIZE
================================= */

/* デフォルト幅 */
a.btn-wide {
  width: 300px;
  margin: 0 auto;
}

/* FAQ */
a.btn-faq {
  width: 230px;
  margin: 0 auto;
}

/* SP対応 */
@media (max-width: 1080px) {
  a.btn-wide,
  a.btn-faq {
    width: 100%;
  }
}

@media (max-width: 768px) {
  a.btn-square,
  a.btn-about {
    padding: 1rem;
    font-size: 1.3rem;
  }
}

/* 
用途別
================================= */

/* TOPICS */
a.btn-topics {
  font-size: 1.4rem;
}

/* MENU */
a.btn-menu {
  min-height: 60px;
  padding: 0 1.2rem;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 1px;
}

/* 
ARROW
================================= */
.arrow {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #e26a9a;
  border-right: 2px solid #e26a9a;
  transform: translateY(-50%) rotate(45deg);
  transition: right .3s;
}

a.btn:hover .arrow {
  right: 12px;
}

/* 
LAYOUT
================================= */
.btn-center {
    text-align: center;
    margin: 20px 0;
}



/* =============================
   Header
============================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: rgba(255,255,255,0.3);
  z-index: 1000;
}
.header-inner {
  height: 100%;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  width: 70px;
}

/*----------------------------
PCナビ
----------------------------*/

.header-center {
  display: none;
  align-items: center;
  gap: 20px;
  margin-right: 90px;
}
.pc-nav-list {
  display: flex;
  gap: 20px;
  font-size: 1.5rem;
  align-items: center;
}
.pc-nav-list a {
  text-decoration: none;
  font-weight: 600;
  position: relative;
}
.pc-nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: #E86497;
  transform: scaleX(0);
  transition: 0.3s;
}
.pc-nav-list a:hover::after {
  transform: scaleX(1);
}
.h-i{
    background: #fff;
    border-radius: 50px;
    padding: 0 1.5rem;
    margin-bottom: 5px;
    font-size: 1.7rem;
    font-weight: 600;
}
.info-label {
    color: #E86497;
    margin-right: 5px;
}
.header-info p{
    font-size: 1.1rem;
    line-height: 1.5;
    letter-spacing: 0px;
}
.access-li a{
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 1px solid #ededed;
  padding: 0 15px;
  border-right: 1px solid #ededed;
}
.access-li a::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background: url(../images/access.png) no-repeat center / contain;
}

/* PCで表示 */
@media (min-width: 1024px){

  .header-center{
    display:flex;
  }

}




/*----------------------------
ハンバーガー
----------------------------*/

.hamburger {
    position: fixed;
    top: 10px;
    right: 1rem;
    width: 68px;
    height: 65px;
    border: none;
    background: none;
    cursor: pointer;
    text-align: center;
    z-index: 6000;
}
.hamburger::before{
    content: "";
    position: absolute;
    width: 68px;
    height: 68px;
    left: 0;
    top: 0;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgb(60 49 31 / 14%);
    transition: .35s;
    z-index: -1;
}
.hamburger:hover::before{
  transform:scale(1.08);
}

/*----------------------------
三本線
----------------------------*/

.hamburger span{
  position:absolute;
  left:50%;
  width:26px;
  height:3px;
  background:#422b0b;
  transform:translateX(-50%);
  transition:.35s;
}

/* 位置 */

.hamburger span:nth-child(1){
  top:22px;
}
.hamburger span:nth-child(2){
  top:30px;
}
.hamburger span:nth-child(3){
  top:38px;
}


/*----------------------------
MENU文字
----------------------------*/

.hamburger p{
  position:absolute;
  bottom:6px;
  left:50%;
  transform:translateX(-50%);
  font-size:11px;
  font-family:'Outfit',sans-serif;
  font-weight:600;
  color:#4b2e1e;
  letter-spacing:.12em;
}

/*----------------------------
OPEN状態
----------------------------*/

.hamburger.active span:nth-child(1){
  top:30px;
  transform:translateX(-50%) rotate(45deg);
}
.hamburger.active span:nth-child(2){
  opacity:0;
}
.hamburger.active span:nth-child(3){
  top:30px;
  transform:translateX(-50%) rotate(-45deg);
}




/* =================================
Variables
================================= */

:root{
  --drawer-bg:#48290D;
  --drawer-accent:#c85c13;
  --drawer-text:#fff;
  --drawer-brown:#4b2e1e;
  --drawer-gray:#ddd8d3;
}


/* =================================
Drawer Base
================================= */

.drawer{
  position:fixed;
  top:0;
  right:0;
  width:100%;
  height:100vh;
  pointer-events:none;
  z-index:5000;
}
.drawer.active{
  pointer-events:auto;
}

/* 
Overlay
-------------------------------- */

.drawer-overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,.45);
  opacity:0;
  transition:.4s;
}
.drawer.active .drawer-overlay{
  opacity:1;
}

/* 
Drawer Panel
-------------------------------- */

.drawer-panel{
  position:absolute;
  top:0;
  right:0;
  width:100%;
  height:100%;
  background:var(--drawer-bg);
  transform:translateX(100%);
  transition:.5s;
  overflow-y:auto;
}
.drawer.active .drawer-panel{
  transform:translateX(0);
}

/* 
Inner Layout
-------------------------------- */

.drawer-inner{
  max-width:420px;
  margin:0 auto;
  padding:90px 25px 40px;
  color:var(--drawer-text);
  font-family:'Zen Kaku Gothic',sans-serif;
}

/* 
Time / Info
-------------------------------- */

.drawer-time{
  display:flex;
  justify-content:space-between;
  padding:7px 20px;
  margin-bottom:10px;
  background:#fff;
  border-radius:50px;
  color:var(--drawer-brown);
  font-size:1.6rem;
  font-weight:bold;
  font-family:'Outfit',sans-serif;
}
.drawer-note{
  margin-bottom:15px;
  font-size:1rem;
  line-height:1.6;
  opacity:.8;
}
.drawer-info{
  margin-bottom:10px;
  padding-top:10px;
  text-align:center;
  line-height:1.7;
  border-top:1px solid #674343;
}
.drawer-info h4{
  font-size:1.5rem;
}
.drawer-info p{
  font-size:1.3rem;
}
.drawer-access{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px;
  margin-bottom:15px;
  background:var(--drawer-gray);
  border-radius:7px;
  color:#222;
  font-size:1.5rem;
  font-weight:bold;
  text-decoration:none;
}
.drawer-access img{
  width: 12px;
  margin-right: 5px;
}


/* 
Content Blocks
-------------------------------- */

.drawer-block{
  margin-bottom:10px;
  padding:15px;
  background:var(--drawer-accent);
  border-radius:10px;
  text-align:center;
}
.drawer-block h3{
  margin-bottom:15px;
  font-size:2rem;
  line-height:1.5;
  font-family:'Zen Maru Gothic',sans-serif;
}


/* 
Grid Layouts
-------------------------------- */

.drawer-grid,
.eat-links{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.drawer-grid{
  margin-bottom:25px;
  font-family:'Zen Maru Gothic',sans-serif;
}
.drawer-links{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:5px 20px;
  margin-bottom:30px;
}


/* 
Menu Buttons
-------------------------------- */

.dg-menu{
  display:flex;
  align-items:center;
  justify-content:center;
  height:60px;
  border-radius:10px;
  color:#fff;
  font-size:2rem;
  font-weight:bold;
  text-decoration:none;
}
.eat-links a{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 1rem;
  color: var(--drawer-brown);
  font-size: 1.1rem;
  letter-spacing: 1px;
  line-height: 1.4;
}

/* 
Link List
-------------------------------- */

.drawer-links a{
  position: relative;
  padding-left: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
}
.drawer-links a::before{
  content:"—";
  position:absolute;
  left:0;
}


/* 
SNS
-------------------------------- */

.drawer-sns{
  display:flex;
  justify-content:center;
  gap:20px;
}
.drawer-sns a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:55px;
  height:55px;
  background:#fff;
  border-radius:50%;
  color:#000;
  text-decoration:none;
}
.drawer-sns img{
  width:26px;
}

/* 
Responsive
-------------------------------- */

@media (min-width:768px){
  .drawer-panel{
    width:420px;
  }
  .drawer-inner{
    padding:100px 30px 50px;
  }
}



/* =============================
 main visual
============================= */

#mv{
  position:relative;
  min-height:100vh;
  min-height:100dvh;
  overflow:hidden;
  --wave-height:120px;
}

/* =============================
 background
============================= */

.mv-bg{
  position:absolute;
  inset:0;
  background:url("../images/mainimage-01.jpg") center/cover no-repeat;
  z-index:0;
  animation:mvZoom 12s ease forwards;
}

/* =============================
 inner
============================= */

.mv-inner{
  max-width:1400px;
  margin-inline:auto;
  min-height:inherit;
  position:relative;
  z-index:2;
  padding:20px;
}

/* =============================
 logo
============================= */

.mv-logo{
  position:absolute;
  left:20px;
  bottom:90px;
  animation:fadeUp 1.2s ease forwards;
  animation-delay:.3s;
}
.mv-logo img{
  width:clamp(180px,30vw,390px);
  height:auto;
}

/* =============================
 copy
============================= */

.mv-copy{
  position:absolute;
  right:20px;
  bottom:90px;
  writing-mode:vertical-rl;
  text-orientation:upright;
  font-size:clamp(2.2rem,4vw,4rem);
  font-weight:bold;
  line-height:1.6;
  display:flex;
  flex-direction:column;
  gap:1rem;
  width:fit-content;
  z-index:1;
}
.mv-copy span{
  background:rgba(255,255,255,.9);
  padding:.35em .3em;
  border-radius:3px;
}
.mv-copy span:nth-child(1){
    margin-bottom: 50px;
}
.mv-copy span:nth-child(2){
    margin-top: 50px;
}

/* 桃装飾 */
.mv-copy::after{
  content:"";
  position:absolute;
  right:-20%;
  bottom:-15%;
  width:clamp(280px,40vw,420px);
  height:clamp(280px,40vw,420px);
  background:url("../images/peach01.png") center/contain no-repeat;
  z-index:-1;
  opacity:0;
  animation:peachEntrance 1.6s ease forwards;
  animation-delay:1.1s;
}


/* =============================
 scroll
============================= */

.mv-scroll{
  position:absolute;
  right:50%;
  bottom:30px;
  transform:translateY(-50%);
  writing-mode:vertical-rl;
  text-orientation:mixed;
  font-size:1rem;
  font-weight:700;
  letter-spacing:.25em;
  color:#E86497;
  z-index:3;
  animation:scrollFade 2s ease-in-out infinite;
}

/* 縦ライン */
.mv-scroll::before{
	content: "";
    display: block;
    width: 1px;
    height: 120px;
    background: #E86497;
    margin: 0px auto;
}

/* 落ちる点 */
.mv-scroll::after{
  content:"";
  position:absolute;
  left:50%;
  top:50px;
  width:7px;
  height:7px;
  background:#fa68b4;
  border-radius:50%;
  transform:translateX(-50%);
  animation:scrollDot 2s infinite;
}

/* =============================
 wave
============================= */

.mv-wave{
  position:absolute;
  bottom:-50px;
  left:0;
  width:100%;
  z-index:1;
}
.mv-wave img{
  width:100%;
  height:auto;
  display:block;
}


/* =============================
 animation
============================= */
@keyframes fadeUp{

  0%{
    opacity:0;
    transform:translateY(40px);
  }
  100%{
    opacity:1;
    transform:translateY(0);
  }

}

@keyframes fadeUpCenter{

  0%{
    opacity:0;
    transform:translate(-50%, 40px);
  }

  100%{
    opacity:1;
    transform:translate(-50%, 0);
  }

}


/* 背景ズーム */

@keyframes mvZoom{

  0%{
    transform:scale(1.1);
  }

  100%{
    transform:scale(1);
  }

}


/* scroll dot */

@keyframes scrollDot{

  0%{
    transform:translate(-50%,0);
    opacity:0;
  }

  20%{
    opacity:1;
  }

  80%{
    transform:translate(-50%,60px);
    opacity:0;
  }

}

/* scroll text */

@keyframes scrollFade{

  0%,100%{
    opacity:.6;
  }

  50%{
    opacity:1;
  }

}


/* peach */

@keyframes peachEntrance {

  0% {
    opacity: 0;
    transform: translateY(40px) rotate(-8deg);
  }
  60% {
    opacity: 1;
    transform: translateY(0) rotate(-12deg);
  }
  75% {
    transform: rotate(-5deg);
  }
  90% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(-8deg);
    opacity: 1;
  }
}


/* =============================
 SP
============================= */

@media (max-width:768px){
	/* .mv-logo{
		display:block;
		position:absolute;
		left:50%;
		bottom:calc(var(--wave-height) - 30px);
		transform:translate(-50%, 0);
		animation:fadeUpCenter 1.2s ease forwards; 
	}*/
	.mv-logo{
		display:none;
	}
	.mv-copy {
        right: 15px;
        /* transform: translateX(50%); */
        bottom: 110px;
	}

	/* 桃装飾 */
	.mv-copy::after{
	  right:-70%;
	  width:clamp(250px,40vw,420px);
	  height:clamp(260px,40vw,420px);
	}
	
	/* scroll */
	.mv-scroll{
		right: initial;
		left: 10px;
		bottom:50px;
		color:#fff;
	}
	.mv-scroll::before{
		background: #fff;
		height:80px;
	}
	.mv-scroll::after{
	  background:#fff;
	}
	
	/* wave */
	.mv-wave{
	  bottom:0px;
	}
}


/* =============================
   TOPICS
============================= */
#topTopics {
  background: #F7F3EF;
  padding: 50px 0;
  position: relative;
}
.topTopics-inner {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 90px;
  margin: 0 auto;
}

/* -----------------
   カテゴリーbutton
----------------- */
.topics-category{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 70px;
}
.topics-category a{
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
}
.topics-category a.btn-border:hover{
  background-color: #E86497;
  color: #fff;
  border-color: #fff;
}

.t-category-ttl{
    margin-bottom: 50px;
    font-size: 3rem;
}

@media (max-width:768px){
  .topics-category{
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 40px;
  }
	.topics-category a {
		font-size: 1.2rem;
		padding: 1.3rem 1rem;
		letter-spacing: 1px;
	}
	.t-category-ttl{
		margin-bottom: 30px;
		font-size: 2rem;
	}
}



/* -----------------
   左カラム
----------------- */
.tT-ttl {
  margin-bottom: 4rem;
}
.tT-ttl span {
  font-size: 6.5rem;
  font-weight: bold;
  color: #58b983;
  letter-spacing: 2px;
}
.tT-ttl h3 {
  font-size: 3rem;
  line-height: 1;
}

@media (max-width: 768px) {
	.tT-ttl span {
	  font-size: 4rem;
	}
	.tT-ttl h3 {
	  font-size: 2.5rem;
	}
}


.tushin-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 6px 0px #f6d2dd;
  text-align: center;
  position: relative;
  margin-top: 2rem;
}
.tushin-ttl {
  font-weight: 600; 
  margin-bottom: 15px; 
  line-height: normal; 
}
.tushin-card a img {
  height: auto;
}

/* 装飾 */
.underline {
  background: linear-gradient(transparent 60%, #fbd3d8 40%);
}
.card-right {
  position: absolute;
  top: -10px;
  right: -20px;
  width: 50px;
}
.card-left {
  position: absolute;
  bottom: -30px;
  left: -25px;
  width: 70px;
}

/* -----------------
   右カラム
----------------- */

/* =====================
記事カードグリッド（一覧ページ含）
===================== */

/* TOPページ */
.tT-grid-top{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

/* 一覧ページ */
.tT-grid-archive{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* SP */
@media (max-width:768px){
	.tT-grid-top,
	.tT-grid-archive{
	  grid-template-columns:1fr;
	}
}


.tT-item {
  transition: transform 0.35s ease;
}
.tT-item:hover {
  transform: translateY(-8px);
}
.tT-item .tT-thumb {
    width: 100%;
    background: #e3dacb;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: transform 0.4s ease;
    height: 260px;
    overflow: hidden;
    border-radius: 10px;
}
.tT-item .tT-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.tT-item:hover .tT-thumb {
  transform: scale(1.05);
}
.tT-cat {
  display: inline-block;
  font-size: 1.2rem;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 5px;
  font-weight: 500;
  border: 1px solid #4b2e1e;
  line-height: 1;
}
.tT-item .tT-item-ttl {
  font-size: 1.9rem;
  font-weight: 600;
}
.tT-item .date {
  font-size: 12px;
  color: #777;
}

@media (max-width: 768px) {
	.tT-item .tT-item-ttl {
	  font-size: 1.6rem;
	}
}

/* -----------------
   下部
----------------- */
.tT-bottom {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tT-sns {
  display: flex;
  align-items: center;
  gap: 26px;
}
.tT-sns ul {
  display: flex;
  gap: 26px;
}
.tT-sns img {
  width: 30px;
}


/* -----------------
   桃背景
----------------- */
.peach-big {
  position: absolute;
  left: 0;
  bottom: -70px;
  width: 260px;
  z-index: 0;
  transform: rotate(-8deg);
  opacity: 0;
}
.peach-enter {
  animation: peachEntrance 1.8s ease forwards;
}

@keyframes peachEntrance {
  0% {
    opacity: 0;
    transform: translateY(40px) rotate(-8deg);
  }
  60% {
    opacity: 1;
    transform: translateY(0) rotate(-12deg);
  }
  75% {
    transform: rotate(-5deg);
  }
  90% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(-8deg);
    opacity: 1;
  }
}


/* =============================
   レスポンシブ
============================= */
@media (max-width: 1024px) {

  .tT-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 768px) {
  .topTopics-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .tT-grid {
    grid-template-columns: 1fr;
  }
  .tT-bottom {
    flex-direction: column;
    gap: 30px;
  }
  .peach-big {
    width: 160px;
    left: -40px;
    bottom: -40px;
  }
	
	.tT-left{
		display: flex;
		align-items: flex-start;
		gap: 16px;
		justify-content: space-between;
	}
	.tushin-card {
		padding: 15px;
		margin: 0;
		order: 2;
		width: 30%;
	}
	.tushin-ttl {
		font-size: 1.1rem;
	}
	.tT-ttl{
		order: 1;
	}
}



/* topAccess
------------------------------- */

/* --GoogMAPレスポンシブ-- */
.map {
  width: 100%;
  position: relative;
  padding-top: 45%;
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.topMap{
  display: block;
  justify-content: space-evenly;
  margin-top: 30px;
}
.tA-bl{
    background: #f7faf8;
    padding: 8%;
    border-radius: 15px;
}
.tM-item-r{
  margin-bottom: 3%;
  font-weight: 500;
}
.tM-item-r h4{
  font-size: 2rem;
}

@media print, screen and (min-width: 960px) {/*--960pxより大きい場合-- */
  .topMap{
    display: flex;
  }
}



/* topService
------------------------------- */
#topService {
  background: #F7F3EF;
  padding: 50px 0 120px;
}

/* =============================
 wave PARTS
============================= */

.wservice-wave{
  width:100%;
  line-height:0;
}
.service-wave img{
  width:100%;
  height:auto;
  display:block;
}

/* =============================
   行レイアウト
============================= */
.service-row {
  display: grid;
  gap: 30px;
}
.service-row-top {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 40px;
}
.service-row-bottom {
  grid-template-columns: repeat(3, 1fr);
}

/* =============================
   カード共通
============================= */
.tM-card{
  position:relative;
  border-radius:20px;
  padding:60px 40px;
  text-align:center;
  color:#fff;
  overflow:hidden;
}
/* 背景画像レイヤー */
.tM-card::before{
  content:"";
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  opacity:0.15;
  z-index:0;
}
/* テキストを前面へ */
.tM-card > *{
  position:relative;
  z-index:1;
}

/* 背景画像 */
.card-eat::before{
  background-image:url("../images/f-tokatei.jpg");
}
.card-buy::before{
  background-image:url("../images/ichiba-main.jpg");
}
.card-enjoy::before{
  background-image:url("../images/f-tunagaroom.jpg");
}
.card-stay::before{
  background-image:url("../images/f-stay.jpg");
}
.card-rental::before{
  background-image:url("../images/f-uguisu.jpg");
}


.tM-card h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: bold;
    border-bottom: 5px solid #CCCAB3;
    display: inline-block;
    line-height: 1.5;
    width: 160px;
    padding-bottom: 5px;
}
.tM-card h2::before {
    content: "";
    display: block;
    width: 190px;
    height: 12px;
    background-image: url(../images/wave_small.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 auto;
}
.tM-card .tM-desc {
  font-size: 1.5rem;
  margin-bottom: 30px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .tM-card {
    padding: 40px 20px 20px;
  }
}



/* =============================
   ボタン
============================= */
.tMbtn-g-grid {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
}
.tMbtn-g {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(1, 1fr);
}
@media (max-width: 768px) {
	.tMbtn-g-grid {
		grid-template-columns: repeat(1, 1fr);
	}
}


/* =============================
   カラーバリエーション
============================= */
.card-eat { background: #dd6918; }
.card-buy  { background: #269935; }
.card-enjoy   { background: #d95198; }
.card-stay  { background: #905D38; }
.card-rental    { background: #a92337; }



/* =============================
   レスポンシブ
============================= */
@media (max-width: 1024px) {
  .service-row-top {
    grid-template-columns: 1fr;
  }
  .service-row-bottom {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .service-row-bottom {
    grid-template-columns: 1fr;
  }
  .card {
    padding: 40px 25px;
  }
}


/* topFacility
------------------------------- */
.tF-bl{
    display: flex;
    gap: 35px;
}
.tF-r{
    margin-top: 20%;
    display: grid;
    gap: 10px;
}
.tF-l img{
    border-top-left-radius: 130px;
}
.tS-bl{
    margin-top: 10%;
    padding: 10% 0;
    border-top: 1px solid #dddddd;
}
.tS-bl h4{
    text-align: center;
    font-size: 2.2rem;
    letter-spacing: 2px;
}


.facility-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  margin-top: 5%;
  font-family: 'Noto Sans JP',san-serif;
}
.facility-item{
  text-align:center;
}
.facility-item .icon{
  width:90px;
  height:90px;
  background:#7a451c;
  border-radius:50%;
  margin:0 auto 15px;
  display:flex;
  align-items:center;
  justify-content:center;
  }
.facility-item h3{
  margin-bottom:10px;
  position:relative;
  padding-bottom:10px;
}
.facility-item h3::after{
  content:"";
  display:block;
  width:40px;
  height:2px;
  background:#7a451c;
  margin:8px auto 0;
}
.facility-item p{
	font-size:1.3rem;
	line-height:1.6;
	font-weight: 500;
}
p.facility-hosoku{
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: left;
    letter-spacing: 0;
    margin-top: 8px;
}

/* =============================
   レスポンシブ
============================= */
@media (max-width:768px){
	.facility-list{
		gap: 30px;
	}
	.facility-item h3 {
		font-size: 1.4rem;
	}
	.facility-item p {
		font-size: 1.2rem;
	}
	.tF-bl{
		display: block;
	}
	.tF-r{
		margin-top: 10%;
	}
}

/* ===============================
   ABOUT SECTION
=============================== */

.topConcept-block{
  position:relative;
}

/* -------------------------------
   波
--------------------------------*/

.wave-top{
  position:absolute;
  top:-10px;
  left:0;
  width:100%;
  line-height:0;
  z-index:1;
}
.wave-top img{
  width:100%;
  display:block;
}

/* -------------------------------
   背景
--------------------------------*/

.about-bg{
  background:url("../images/gaikan.jpg") center / cover no-repeat;
  padding:300px 20px 210px;
  position:relative;
}

/* -------------------------------
   中央パネル
--------------------------------*/

.about-inner{
  max-width:760px;
  margin:0 auto;
  padding:60px 90px;

  background:rgba(255,255,255,0.7);
  border-radius:70px;
  text-align:center;

  /* 初期アニメーション */
  opacity:0;
  transform:translateY(60px) scale(.96);
  filter:blur(12px);

  transition:
    opacity 1.6s ease,
    transform 1.6s cubic-bezier(.22,1,.36,1),
    filter 1.8s ease;
}

/* 表示時 */

.about-inner.show{
  opacity:1;
  transform:translateY(0) scale(1);
  filter:blur(0);
}

/* -------------------------------
   テキストアニメーション
--------------------------------*/

.about-title,
.about-text,
.about-link{
  opacity:0;
  transform:translateY(20px);
  transition:all .8s ease;
}
.about-inner.show .about-title{
  opacity:1;
  transform:none;
  transition-delay:.5s;
}
.about-inner.show .about-text{
  opacity:1;
  transform:none;
  transition-delay:.8s;
}
.about-inner.show .about-link{
  opacity:1;
  transform:none;
  transition-delay:1.1s;
}

/* -------------------------------
   タイトル
--------------------------------*/

.about-title{
  font-size:28px;
  line-height:1.6;
  color:#4b2e1e;
  margin-bottom:25px;
}
.about-text{
  font-size:15px;
  line-height:2;
  color:#4b2e1e;
  margin-bottom:30px;
}

/* -------------------------------
   下リンク
--------------------------------*/

.about-link{
  display:flex;
  flex-direction:column;
  align-items:center;
}

/* 波装飾 */
.wave-line{
  width:140px;
  margin-bottom:10px;
  display:block;
}

/* -------------------------------
   ボタン
--------------------------------*/

.about-btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  padding-bottom:15px;
  text-decoration:none;
  color:#4b2e1e;
  font-weight:bold;
  border-bottom:4px solid #4b2e1e;
  position:relative;
  transition:.3s ease;
}

/* テキスト */

.btn-text{
  transition:opacity .3s;
}

/* 桃 */

.about-btn::after{
  content:"";
  position:absolute;
  width:90px;
  height:50px;
  background:url("../images/peach05.png") center / contain no-repeat;
  opacity:0;
  transform:scale(.8);
  transition:.35s ease;
}

/* hover */

.about-btn:hover .btn-text{
  opacity:0;
}
.about-btn:hover::after{
  opacity:1;
}

/* ===============================
   Responsive
=============================== */

@media (max-width:768px){

  .about-bg{
    padding:120px 20px;
  }
  .about-inner{
    padding:40px 30px;
    border-radius:60px;
  }
  .about-title{
    font-size:22px;
  }
  .about-text{
    font-size:14px;
    line-height:1.8;
  }
}



/* ===============================
   ONLINE SHOP
=============================== */

.onlineshop-bnr{
  text-align:center;
  margin:80px 0;
}

.onlineshop-bnr a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:#562D08;
  color:#fff;
  padding:20px 30px;
  font-size:2rem;
  min-width:260px;
  position:relative;
}

.onlineshop-bnr a::before{
  content:"";
  width:30px;
  height:30px;
  background:url(../images/icon-shop.svg) center / contain no-repeat;
}



/* ===============================
FAQ
=============================== */

#topFAQ{
  background:#F7F3EF;
  padding:5% 0;
}
.tFAQ-bl{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}
.tFAQ-l{
  min-width:220px;
}
.tFAQ-r{
  display:flex;
  gap:30px;
  flex-wrap:wrap;
}


/* ===============================
SP
=============================== */

@media (max-width:1080px){
	#topFAQ{
	  padding:10% 0;
	}
  .tFAQ-bl{
    flex-direction:column;
    align-items:flex-start;
    gap:0px;
  }
  .tFAQ-r{
    width:100%;
    flex-direction:column;
    gap:20px;
  }
}



/* topContact
------------------------------- */
#topContact{
  position:relative;
  background:url("../images/contact-back.JPEG") center / cover no-repeat;
  color:#fff;
}
#topContact::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.5);
  pointer-events:none;
}
#topContact > *{
  position:relative;
  z-index:1;
}

.centercls{
  text-align: center;
}
.contact-info{
  text-align: center;
  font-weight: 500;
}
.tel-no{
  font-family: 'Outfit', sans-serif;
  font-size: 3.2rem;
  letter-spacing: 2px;
  font-weight: 500;
}



/* =================================
FOOTER
================================= */

.site-footer{
  background:#48290D;
  color:#fff;
  padding:80px 20px 40px;
  border-top:6px solid #f6d2dd;
}

/* レイアウト */
.footer-inner{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  gap:80px;
}

/* =========================
左
========================= */

.footer-left{
  width:100%;
  max-width:420px;
}
.footer-logo img{
  width:180px;
  margin-bottom:25px;
}
.footer-address{
  line-height:1.8;
  margin-bottom:15px;
  font-size:1.5rem;
}
.footer-policy a{
  color:#fff;
  text-decoration:none;
  font-size:11px;
  opacity:.8;
}
.footer-policy a:hover{
  opacity:1;
}


/* =========================
右
========================= */

.footer-right{
  width:100%;
  max-width:420px;
}

/* 営業時間 */
.footer-time{
  background:#fff;
  color:#48290D;
  display:flex;
  gap: 20px;
  align-items:center;
  padding:12px 20px;
  margin-bottom:10px;
  font-weight:bold;
  font-size:1.8rem;
  width:100%;
  box-sizing:border-box;
}

.footer-time strong{
  font-family:'Outfit',sans-serif;
}

.footer-note{
  font-size:1.3rem;
  opacity:.8;
  margin-bottom:25px;
  line-height:1.7;
}

/* =========================
ボタン
========================= */

.footer-buttons{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.footer-btn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  border:1px solid #fff;
  border-radius:40px;
  padding:16px 28px;
  text-decoration:none;
  color:#fff;
  font-weight:bold;
  transition:.3s;
  width:100%;
  box-sizing:border-box;
}
.footer-btn:hover{
  background:#fff;
  color:#6b3300;
}
.footer-btn .f-arrow{
  width:6px;
  height:6px;
  border-top:2px solid currentColor;
  border-right:2px solid currentColor;
  transform:rotate(45deg);
}

/* =========================
下ナビ
========================= */

.footer-nav{
  max-width:900px;
  margin:80px auto 0;
  text-align:center;
  padding-top:40px;
  border-top:1px solid rgba(255,255,255,0.15);
}
.footer-menu{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  line-height:2.8;
}
.footer-menu li{
  list-style:none;
  display:flex;
  align-items:center;
}

/* 区切り */
.footer-menu li::after{
  content:"/";
  margin:0 14px;
  opacity:.4;
}
.footer-menu li:last-child::after{
  display:none;
}

.footer-menu a{
  color:#dedede;
  text-decoration:none;
  font-size:1.4rem;
  letter-spacing:.05em;
  white-space:nowrap;
  transition:.25s;
}
/* hover */
.footer-menu a:hover{
  opacity:.7;
}


/* =========================
SP
========================= */

@media (max-width:768px){

  .footer-inner{
    flex-direction:column;
    gap:50px;
  }

  .footer-logo img{
    width:150px;
  }

  .footer-time{
    font-size:14px;
  }

  .footer-btn{
    font-size:14px;
    padding:14px 20px;
  }

  .footer-nav{
    font-size:13px;
  }

}





/* page
------------------------------- */
.main_contents{
  width:100%;
  margin-bottom: 50px;
}
@media print, screen and (min-width: 768px) {/*--768pxより大きい場合-- */
  .main_contents{
    margin-bottom: 90px;
  }
}


/* page title
------------------------------- */
#page_title{
  padding-top: 100px;
}
.page_title_block{
  background: #F7F3EF;
  padding: 15px 0 70px;
  text-align: center;
}
.page_title_block h2{
  font-size: 3rem;
  line-height: 1;
    margin-top: 35px;
}
.page_title_block span{
    position: relative;
    width: 190px;
    font-size: 6.5rem;
    font-weight: bold;
    color: #58b983;
    padding: 20px 0 15px;
    text-align: center;
    margin: 0 auto 20px;
    line-height: normal;
}
.page_title_block span::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:190px;
  height:15px;
  background:url("../images/wave_small.png") center/contain no-repeat;
}
.page_title_block span::after{
  content:"";
  position:absolute;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  width:190px;
  height:6px;
  background:#CCCAB3;
}

@media (max-width:768px){
	.page_title_block{
	  padding: 60px 0 50px;
	}
	.page_title_block h2{
	  font-size: 2.5rem;
	}
	.page_title_block span{
		font-size: 5rem;
	}
	.page_title_block span::before{
	  width:170px;
	}
	.page_title_block span::after{
	  width:170px;
	  height:5px;
	}
}




/* pankuzulist */
.pan_list ul{
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0;
}
.pan_list ul li{
    font-size: 1.4rem;
    font-weight: 500;
    margin-right: 8px;
}


/* archive
------------------------------- */
#sidebar{
    width: 100%;
	font-weight:500;
}

.main_column{
    display: block;
    margin: 0 auto;
    padding-top: 60px;
    margin-bottom: 5%;
}
.archive_contents{
    width: 100%;
}
.archive_list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    margin-bottom: 3%;
}
.archive_list__item{
	width: 100%;
}
.archive_list__item:nth-of-type(3n) {
    margin-right: 0;
}
.archive_list__item-img{
    border-radius: 6px;
    height: calc(400 / 1140* 100vw);
    max-height: 400px;
    overflow: hidden;
    width: 100%;
    margin-right: 0px;
}
.archive_list__item img{
	font-family: 'object-fit: cover;';
	height: 100%;
	object-fit: cover;
	object-position: top;
	width: 100%;
}
.archive_list__link{
    display: block;
}
.archive_list__item-name {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0 10px;
  color: #096F6F;
  background-color: #ecf3f1;
}
.archive_list__item-title {
    line-height: normal;
    margin: 0;
    margin-top: 5px;
}

/* pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 4% 0;
}
.pagination a,
.pagination span {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}
.pagination a:hover {
  background-color: #f0f0f0;
  border-color: #bbb;
}
.pagination .current {
  background-color: #007C55;
  color: #fff;
  border-color: #0073aa;
}
.pagination .prev,
.pagination .next {
  font-weight: bold;
}


@media print, screen and (min-width: 960px) {/*--960pxより大きい場合-- */
	#sidebar{
		display:block;
		width: 20%;
	}
	.main_column{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.archive_contents{
		width: calc(80% - 52px);
	}
	.archive_list{
	  grid-gap: 35px;
	}
	.archive_list__item-img{
		height: calc(300 / 1140* 100vw);
		max-height: 300px;
	}
	.archive_list__item-title {
		line-height: normal;
		margin: 7px 0px;
		font-size: 2rem;
		font-weight: 600;
	}
}


/* PARTS
------------------------------- */

/* ブロック　ボーダー有り */
.block_border-inner{
  max-width: 1100px;
  margin: auto;
  padding: 50px;
  border: 2px solid #b79b87;
  border-radius: 20px;
  background: #ffffff;
  margin-bottom: 3%;
}
@media (max-width:768px){
	.block_border-inner{
		padding: 4rem 2rem 3rem;
	}
}



/* ブロック　メインタイトル */
.block_main-title{
  text-align:center;
  margin-top: 20px;
  margin-bottom:60px;
}
.title-line{
  width:40px;
  height:3px;
  background:#ff6b9a;
  display:block;
  margin:0 auto 15px;
}
.block_main-title h2{
  font-size:32px;
  color:#6b3a14;
}
.title-en{
  color:#ff6b9a;
  letter-spacing:2px;
  font-size:14px;
}
@media (max-width:768px){
	.block_main-title{
	  margin-bottom:30px;
	}
	.block_main-title h2{
	  font-size:23px;
	}
}

/* ブロック　情報リスト */
.block_page-info{
  border-top:1px solid #ddd;
}
.info-row{
  display:grid;
  grid-template-columns:160px 1fr;
  border-bottom:1px solid #ddd;
  padding:18px 0;
    font-weight: 500;
}
.info-title{
  color:#8c6b54;
}
.sns-icon{
  width:26px;
}

/* ブロック　大タイトル */
h3.block_h3ttl{
    font-size: 2.2rem;
    border-left: 3px solid #6b3a15;
    padding-left: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
    border-bottom: 1px solid #dac6a0;
    padding-bottom: 4px;
}

/* ブロック　中タイトル */
h4.block_h4ttl{
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #9A6E4E;
  border-bottom: 1px solid #D8D8DB;
  padding-bottom: 5px;
}

/* ブロック　小タイトル */
h5.block_h5ttl{
  background-color: #F5F3F0;
  padding: 4px 10px;
  margin-bottom:20px;
}

/* ブロック　ページリンク */
.pagelink-buttons{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:15px;
  margin-bottom:60px;
}
@media (max-width:768px){
  .pagelink-buttons{
  	grid-template-columns:repeat(2,1fr);
	gap:10px;
  }
}

/* ブロック　about */
.about-buttons{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:15px;
  margin-bottom:60px;
}
@media (max-width:768px){
  .about-buttons{
  	grid-template-columns:repeat(1,1fr);
	gap:10px;
  }
}

/* ブロック　レストラン　button */
.restaurant_top-buttons{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  margin-bottom:50px;
}
@media (max-width:768px){
  .restaurant_top-buttons{
    grid-template-columns:1fr;
  }
}

/* ブロック　アクセスタイトル */
/* 共通スタイル */
h3.block_accessttl{
  font-size:2rem;
  border-bottom:1px solid #6b3a15;
  padding-bottom:8px;
  margin-bottom:20px;
  display:flex;
  align-items:center;
  gap:10px;
}

/* 共通アイコン */
h3.block_accessttl::before{
  content:'';
  display:inline-block;
  width:28px;
  height:28px;
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;
}
/* 車 */
h3.access-car::before{
  background-image:url(../images/access-car.svg);
}
/* 電車 */
h3.access-train::before{
  background-image:url(../images/access-train.svg);
}
/* バス */
h3.access-bus::before{
  background-image:url(../images/access-bus.svg);
}

/* フロアマップ　各施設紹介 */
.floor-card{
text-align:center;
}

/* PDF DLアイコン*/
.PDF-Link{
  font-weight: 500;
  color: #5a1b1b;
}
.PDF-Link::before{
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../images/pdf.png) no-repeat;
  background-size: contain;
  margin-right: 5px;
  vertical-align: top;
}

/* ページ　メインvisual */
.page_main_v{
    margin-bottom: 15%;
}
.page_main_v img{
    border-radius: 30px;
}
.page_main_v p{
    margin-top: 30px;
    font-weight: 500;
    text-align: center;
}


/* =================================
eat　｜　食べる
================================= */

.restaurant-grid{
  display:grid;
  grid-template-columns:1fr 1.3fr;
  gap:70px;
}


/* =================================
左カラム
================================= */

.restaurant-info{
  max-width:420px;
}
.restaurant-thumb{
  width:160px;
  margin:0 auto 24px;
}
.restaurant-thumb img{
  width:100%;
  height:auto;
}
.restaurant-text{
	line-height:1.9;
	margin-bottom:26px;
	text-align: justify;
}


/* ボタン */

.restaurant-btn{
  display:block;
  text-align:center;
  padding:14px;
  margin-bottom:34px;
  background:#e6dbcf;
  color:#6b3a14;
  text-decoration:none;
  transition:.3s;
}

.restaurant-btn:hover{
  background:#d6c7b7;
  transform:translateY(-2px);
}

/* =================================
施設情報
================================= */

.restaurant_info-list{
	border-top:1px solid #ddd;
	margin-top:20px;
	font-size: 1.5rem;
}
.restaurant_info-list-row{
  display:flex;
  padding:14px 0;
  border-bottom:1px solid #eee;
}
.restaurant_info-list-row .th{
  width:90px;
  font-weight:600;
}
.restaurant_info-list-row .td{
  flex:1;
}
.restaurant_info-list-row img{
  width:26px;
}


/* =================================
ギャラリー（共通）
================================= */

.restaurant-gallery{
  display:grid;
  gap:20px;
}

.restaurant-gallery img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:14px;
  display:block;
}

.gallery-main img{
  border-radius:18px;
}


/* =================================
3枚（メイン＋サブ2枚）
================================= */

.restaurant-gallery.gallery-3{
  grid-template-columns:1fr 1fr;
  grid-template-rows:320px 180px;
}

.gallery-3 .gallery-main{
  grid-column:1 / 3;
}

.gallery-3 .gallery-sub1{
  grid-column:1 / 2;
}

.gallery-3 .gallery-sub2{
  grid-column:2 / 3;
}


/* =================================
1枚（全幅）
================================= */

.restaurant-gallery.gallery-1{
  display:block;
}

.gallery-1 .gallery-main img{
  width:100%;
  height:auto;
}


/* =================================
SP
================================= */

@media (max-width:768px){

  .restaurant-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  /* ギャラリー共通 */
  .restaurant-gallery{
    order:-1;
    gap:14px;
  }

  /* 3枚 */
  .restaurant-gallery.gallery-3{
    grid-template-columns:1fr 1fr;
  }

  .gallery-3 .gallery-main{
    grid-column:1 / 3;
  }

  /* 1枚 */
  .restaurant-gallery.gallery-1{
    display:block;
  }

  .restaurant-gallery img{
    width:100%;
    height:100%;
    object-fit:cover;
  }

  /* 左カラム */

  .restaurant-info{
    max-width:none;
  }

  .restaurant-thumb{
    width:140px;
  }

  .info-row{
    flex-direction:column;
    gap:6px;
  }

}



/* =================================
buy　｜　買う
================================= */

.buy-card{
	background: #F7F3EF;
    padding-bottom: 30px;
}
.buy-title{
  text-align:center;
  font-size:30px;
  letter-spacing:0.08em;
  margin-bottom:80px;
  color:#6b3f1d;
}

/* 各ブロック */
.buy-row{
  display:flex;
  align-items:center;
  gap:70px;
  margin-bottom:90px;
}

/* 画像 */
.buy-img{
  flex:1.2;
}

.buy-img img{
  width:100%;
  height:auto;
  display:block;
  border-radius:6px;
}

/* テキスト */
.buy-text{
  flex:1;
}

.buy-text h3{
  font-size:24px;
  margin-bottom:22px;
  color:#6b3f1d;
  line-height:1.6;
  letter-spacing:0.05em;
}

.buy-text p{
  font-size:15px;
  line-height:2;
}


@media (max-width:768px){

.buy-card{
  padding:70px 20px;
}

.buy-title{
  font-size:24px;
  margin-bottom:50px;
}

.buy-row{
  flex-direction:column;
  gap:30px;
  margin-bottom:60px;
}

.buy-text h3{
  font-size:20px;
}

.buy-text p{
  font-size:14px;
  line-height:1.9;
}

}






/* メイン画像 */

.tunaga-mainimg img{
  width:100%;
  border-radius:14px;
}


/* テキスト */

.tunaga-text{
  margin:30px 0 40px;
  line-height:1.9;
}


/* ギャラリー */

.tunaga-gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin-bottom:50px;
}

.gallery-item img{
  width:100%;
  border-radius:12px;
  display:block;
}


.dogpark-gallery{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
  margin-bottom:50px;
}

.gallery-item2 img{
  width:100%;
  border-radius:12px;
  display:block;
}


/* 注意 */

.tunaga-notice{
  padding-top:25px;
}

.tunaga-notice ul{
  padding-left:20px;
}

.tunaga-notice li{
  margin-bottom:8px;
}


@media (max-width:768px){

.tunaga-inner{
  padding:40px 25px;
}

.tunaga-title h2{
  font-size:24px;
}


/* ギャラリー */

.tunaga-gallery{
  grid-template-columns:1fr;
  gap:20px;
}
	
.dogpark-gallery{
  grid-template-columns:1fr;
  gap:20px;
	width:100%;
}
	

/* 情報 */

.info-row{
  grid-template-columns:1fr;
  gap:6px;
}

.info-title{
  font-weight:bold;
}

}



/* hero */
.concept-hero img{
  width:100%;
  border-radius:20px;
}

/* concept box */
.concept-box{
  background:#EFF7F2;
  text-align:center;
  padding:40px;
  margin:40px 0 80px;
  border-radius:16px;
}
.concept-box h3{
	color:#58b983;
	letter-spacing:2px;
	font-size: 3rem;
    line-height: 1.5;
}
.concept-box span{
    display: block;
    margin-bottom: 20px;
    font-weight: 500;
}
.concept-box p{
	font-size: 2.5rem;
	font-weight: bold;
	letter-spacing: 2px;
	line-height: 1.7;
}


/* grid */

.concept-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
  margin-bottom:80px;
}
/* reverse */
.concept-grid.reverse{
  grid-template-columns:1fr 1fr;
}
.concept-grid.reverse .concept-image{
  order:-1;
}
.concept-text h2{
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.6;
}
.concept-text p{
  line-height:2;
}


@media (max-width:768px){

.concept-grid{
  grid-template-columns:1fr;
  gap:40px;
}
/* reverse */
.concept-grid.reverse{
  grid-template-columns:1fr;
}

.concept-grid .concept-image{
  order:1;
}
.concept-grid .concept-text{
  order:2;
}
.concept-text h2{
  font-size:22px;
}
.concept-box{
  padding:24px;
  margin:30px 0 50px;
}

.concept-box h3{
  font-size:26px;
}

.concept-box p{
  font-size:18px;
}

.concept-grid{
  margin-bottom:50px;
}

.concept-hero img{
  border-radius:12px;
}
}




/* FAQ　固定ページ
------------------------------- */
#faq{
  padding: 7% 0;
}
.faq-block{
  margin-top: 100px;
}
.faq-bl{
  margin-bottom: 15px;
}
p.question {
  cursor: pointer;
  background: #FAEFEF;
  border-radius: 50px;
  padding: 1rem 3rem 1rem 2rem; 
  position: relative;
}
/* ＋アイコン */
.question .icon{
	position: absolute;
	right: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
	font-weight: bold;
	font-size: 13px;
	color: #e47faf;
}

/* 開 */
.faq-bl.active p.answer{
  display: block;
}
.faq-bl.active p.question{
  background: #f8dede;
}

p.answer {
  display: none;
  padding: 1rem 2rem;
  margin-top: 10px;
}
p.indent {
  padding-left: 1em;
  text-indent: -1em;
}
.faq-contact{
	text-align:center;
	margin-top:70px;
}

/* 404
------------------------------- */
.error-message{
  text-align:center;
}
.error-illust{
  max-width:250px;
  margin-bottom:30px;
}
.error-text{
  font-size:1.6rem;
  line-height:2;
  margin-bottom:30px;
}
.error-btn{
  margin-bottom:60px;
}

.error-links{
  text-align:center;
}

.error-links h3{
  font-size:1.8rem;
  margin-bottom:20px;
}

.error-links ul{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
}

.error-links li{
  list-style:none;
}

.error-links a{
  text-decoration:none;
  font-size:1.5rem;
  color:#333;
  border-bottom:2px solid #E86497;
  padding-bottom:5px;
}

.error-links a:hover{
  opacity:.7;
}


/* archive
------------------------------- */
.archive-list{
  margin-top:40px;
}

/* 記事カード */
.archive-item{
  border-bottom:1px solid #eee;
  padding:20px 0;
}

.archive-item a{
  display:flex;
  gap:20px;
  text-decoration:none;
  color:#333;
}

/* サムネ */
.archive-thumb{
  width:200px;
  flex-shrink:0;
}

.archive-thumb img{
  width:100%;
  height:auto;
  border-radius:10px;
}

/* テキスト */
.archive-date{
  font-size:1.3rem;
  color:#888;
  margin-bottom:5px;
}

.archive-title{
  font-size:1.7rem;
  line-height:1.5;
}

/* ページネーション */
.pagination{
  margin-top:40px;
  text-align:center;
}

.pagination .page-numbers{
  display:inline-block;
  padding:8px 12px;
  margin:0 3px;
  border:1px solid #ddd;
  text-decoration:none;
}

.pagination .current{
  background:#333;
  color:#fff;
}




/* お問い合わせ
------------------------------- */
.contact-faq-Link{
	border-radius: 10px;
    font-size: 2rem;
    padding: 30px 50px;
    text-align: center;
    background: #e86497;
    color: #fff;
    font-weight: 500;
    margin: 0 auto;
    display: inline-block;
}
.contact-faq-Link:hover{
	opacity:0.7;
	transition:0.3s;
}

#cf-tbl {
  background-color: #f5f3f2;
  padding: 2rem;
  border-radius: 1rem;
}
#cf-tbl table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
#cf-tbl th {
  width: 30%;
  text-align: left;
  vertical-align: top;
  padding: 1rem 1rem 0.5rem 0;
  font-weight: bold;
  font-size: 1.6rem;
  border: none;
}
#cf-tbl td {
  width: 70%;
  padding: 1rem 0;
  border: none;
}

#cf-tbl input[type="text"],
#cf-tbl input[type="email"],
#cf-tbl input[type="tel"],
#cf-tbl input[type="file"],
#cf-tbl textarea {
  width: 100%;
  padding: 1rem;
  font-size: 1.6rem;
  border: 1px solid #ccc;
  border-radius: 0.6rem;
  background-color: #fff;
  box-sizing: border-box;
}

#cf-tbl textarea {
  height: 12rem;
  resize: vertical;
}

::placeholder {
  color: #aaa;
  font-size: 1.4rem;
}

.c-comment {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #555;
}
.c-comment span{
	color:red;
}

.required {
  color: #d00;
  font-size: 1.4rem;
  margin-left: 0.3rem;
}

/* 同意チェック */
.acceptance__ch {
    background: #f5f3f2;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 0.8rem;
    margin-top: 15px;
}
.acceptance__ttl {
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: center;
}
.a__txt {
    color: #444;
    font-weight: 500;
}
.a__txt a{
    color: #8b1212;
    font-weight: 600;
}
.acceptance__btn {
    margin-top: 1.5rem;
    background-color: #fff;
    padding: 1.5rem 0;
    border-radius: 5px;
    font-weight: 500;
}

/* 送信ボタン */
input.wpcf7-submit {
	display: block;
	padding: 15px;
	width: 400px;
	background: #48290e;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 500;
	margin: 15px auto 0;
	border: none;
	border-radius:5px;
}
select.wpcf7-form-control{
	padding: 5px 45px;
}
@media screen and (max-width:768px){
	input.wpcf7-submit {
	width: 250px;
	}
}
input.wpcf7-submit:hover {
	opacity:0.7;
}


@media screen and (max-width: 640px) {
  #cf-tbl th,
  #cf-tbl td {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
    border: none;
  }

  #cf-tbl th {
    padding-top: 1rem;
  }
}



/* チェックボックス全体のラベル */
.wpcf7-list-item-label {
  font-size: 1.5rem;
  padding-left: 0.5rem;
}

/* 元のチェックボックスの非表示 */
.wpcf7-acceptance input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 2px solid #0B241C;
  padding: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 0.4rem;
  display: inline-block;
  position: relative;
  cursor: pointer;
  vertical-align: text-top;
}
.wpcf7-acceptance input[type="checkbox"]::after {
  content: "✓";
  color: #fff;
  font-size: 1.2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.wpcf7-acceptance input[type="checkbox"]:checked {
  background-color: #0B241C;
  border-color: #0B241C;
}
.wpcf7-acceptance input[type="checkbox"]:checked::after {
  opacity: 1;
}

/* チェックされたときの背景 */
.wpcf7-acceptance input[type="checkbox"]:checked {
    background-color: #f870b8;
    border-color: #63452a;
}

/* エラーメッセージを見やすく */
span.wpcf7-not-valid-tip,
.wpcf7-response-output.wpcf7-validation-errors {
	color: red;
	font-weight: 600;
}



/* =========================
   single
========================= */

.post_header {
  margin-bottom: 30px;
  border-bottom: 1px solid #e7e7e7;
}

/* タイトル */
.post_title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* 日付 */
.post_date {
  color: #888;
  margin-bottom:10px;
}

/* =========================
   アイキャッチ
========================= */
.post_thumbnail {
  margin: 30px 0;
  overflow: hidden;
  border-radius: 6px;
}

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

/* =========================
   本文
========================= */
.post_content {
  line-height: 1.9;
}

/* 見出し */
.post_content h2 {
  font-size: 2rem;
  margin: 40px 0 15px;
  padding-bottom: 5px;
  border-bottom: 2px solid #111;
}

.post_content h3 {
  font-size: 1.8rem;
  margin: 30px 0 10px;
}

/* 段落 */
.post_content p {
  margin-bottom: 20px;
}

/* 画像 */
.post_content img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

/* リスト */
.post_content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.post_content li {
  margin-bottom: 8px;
}

/* リンク */
.post_content a {
  color: #0073aa;
  text-decoration: underline;
}

.post_content a:hover {
  opacity: 0.7;
}

/* =========================
   一覧に戻るボタン
========================= */
.back_to_list {
  margin-top: 50px;
  text-align: center;
}

/* =========================
   レスポンシブ
========================= */
@media screen and (max-width: 768px) {

  .post_title {
    font-size: 22px;
  }

  .post_content {
    font-size: 15px;
  }

  .post_content h2 {
    font-size: 20px;
  }

}



