*{
    font-family: "Shippori Mincho", serif;
    color: #424450;
    margin: 0;
    font-size: 17px;
    box-sizing: border-box;
    list-style: none;
    line-height: 1.8;
}

.mina{
    font-family: mina, serif;
}

.trajan{
    font-family: "trajan-pro-3", serif;
}

.shippori-mincho-regular {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.shippori-mincho-medium {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
}

.shippori-mincho-semibold {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
}
.sp{
  display: none;
}

/* ==============================
   ベーススタイル
============================== */
html{
    scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  overflow-y: scroll;
}

img{
  width: 100%;
	    height: auto;
}

h2.trajan {
  font-size: 80px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  font-family: "trajan-pro-3", serif;
}

h2 span {
  font-size: 80px;
  font-weight: 500;
  color: #999408;
  letter-spacing: 0.1em;
}

.ja{
  font-weight: 600;
  font-size: 21px;
  letter-spacing: 0.05em;
  margin-top: -10px;
}


@media (max-width: 768px) {
.ja{
  font-size: 20px;
}
}

@media (max-width: 600px) {

  h2.trajan {
  font-size: 40px;
}

h2 span {
  font-size: 40px;
}

.ja{
  font-size: 18px;
}

p{
  font-size: 16px;
}
}

.fade-in-top, .fade-in-bottom, .fade-in-left, .fade-in-right,
.slide-in-top, .slide-in-bottom, .slide-in-left, .slide-in-right {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px); /* 初期位置を下げる */
    transition: all 0.6s ease-out; /* スムーズなアニメーション */
}

/* フェードイン */
.fade-in-top { transform: translateY(-30px); }
.fade-in-bottom { transform: translateY(30px); }
.fade-in-left { transform: translateX(-30px); }
.fade-in-right { transform: translateX(30px); }

/* スライドイン */
.slide-in-top {transform: translateY(50px);}
.slide-in-bottom { transform: translateY(50px); }
.slide-in-left { transform: translateX(-50px); }
.slide-in-right { transform: translateX(50px); }

.inner{
  max-width: 1710px;
  margin: 0 auto;
  padding: 0;
}

/* header */
.header-placeholder {
  height: 80px;
}
.sp-nav{
  display: none;
}

.header-wrapper {
  position: relative;
  max-width: 1710px;
  margin: 0 auto;
  padding: 0 60px;
  z-index: 1000;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; 
  height: 90px;
  z-index: 1000;
  background-color: #ffffffcc;
  transition: transform 0.4s ease;
}

header .inner {
  max-width: 1710px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  justify-content: flex-end; 
  align-items: center;
}


header.hide {
  transform: translateY(-120px);
}


header.show {
  transform: translateY(0);
}

header .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between; 
  height: 100%;
}

header h1 {
  position: absolute;
  top: 15px;
  left: 23px;
width: 65px;
}

a.logo{
  transition: 0.3s;
}

a.logo:hover{
  opacity: 0.6;
}

header nav {
  margin-left: auto;
}

header nav ul {
  display: flex;
  gap: 51px;
  list-style: none;
  margin: 0;
  padding: 0;
}

header nav a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

nav a:hover {
  color: #b2b083; 
}

nav li:nth-child(1),
nav li:nth-child(2),
nav li:nth-child(3){
  position: relative;
}

nav li:nth-child(1)::before,
nav li:nth-child(2)::before,
nav li:nth-child(3)::before{
    display: block;
    position: absolute;
    content: "|";
    color: #d9d8c3;
    top: 0px;
    right: -26px;
}


nav.pc-nav li:last-child{
  position: relative;
  font-size: 0;
}

nav.pc-nav li:last-child::before{
  display: block;
  position: absolute;
  content: url(../img/common/icon_calendar.png);
  width: 24px;
  height: 24px;
  top: 2px;
  left: 24px;
}

nav.pc-nav li:last-child a {
  padding: 17px 20px 15px 60px;
  border-radius: 5px;
  font-weight: 500;
  background-color: #b2b083;
  color: #fff;
  letter-spacing: 0.05em;
}

nav.pc-nav li:last-child a:hover {
  border: 1px solid #cac9af;
  background-color: #cac9af;
}

/* ハンバーガー初期非表示 */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  border: none;
  background: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #999408;
  border-radius: 2px;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}



@media screen and (max-width: 1050px) {
header {
  padding-right: 0;
}

  .pc-nav {
    display: none;
  }

  .sp-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #e9e7d9;
    z-index: 999;
    padding: 100px 25px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }

  .sp-nav.active {
    transform: translateX(0);
  }

  .sp-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: 90%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 15px;
    gap: 0;
  }

  .sp-nav ul li {
    border-bottom: 1px #bdbb8e dashed;
    padding: 20px 10px;
    text-align: left;
    position: relative;
  }

  .sp-nav ul li:last-child{
    border-bottom: none;
  }

  .sp-nav ul li::after {
    content: "";
    position: absolute;
    background-image: url(../img/common/sp-nav.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
    height: 20px;
    right: 25px;
    top: 26px;
  }

  .sp-nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
  }

  .sp-nav .button {
    margin: 30px auto 0;
    display: block;
    width: fit-content;
    background-color: #b2b083;
    color: #fff;
    padding: 12px 24px 12px 48px;
    border-radius: 4px;
    font-weight: bold;
    position: relative;
    letter-spacing: 0.05em;
  }

  .sp-nav .button::before {
    content: "";
    position: absolute;
    background-image: url(../img/common/icon_calendar.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 24px;
    top: 10px;
    left: 15px;
  }

  /* ハンバーガー */
  .hamburger {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
top: 39px;
        right: 24px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1000;
  border-radius: 2px;
  transition: transform 0.4s ease, opacity 0.4s ease, width 0.4s ease;
  transform-origin: center;
}


.hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background-color: #999408;
  transition: all 0.4s ease;
}

.hamburger >span:nth-last-of-type(1){
  width: 30px;
  }

.hamburger >span:nth-last-of-type(2){
  width: 35px;
  }

.hamburger >span:nth-last-of-type(3){
  width: 40px;
  }

  .hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  width: 30px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  width: 30px;
}
}
/* main */

/* mv */
.mv {
  position: relative;
  max-width: 1710px;
  margin: auto;
  padding: 0 10px;
}

.mv-inner {
  position: relative;
  background-image: url(../img/mv_main.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100vh;
  max-width: 1710px;
  border-top-left-radius: 163px;
}

.mv .logo{
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mv-catch {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px;
  line-height: 1.6;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
}

.mv .mina{
    position: absolute;
  top: 72%;
  left: 50%;
  transform: translate(-50%, -50%);
    font-size: 80px;
    color: #a9a87a;
}


@media screen and (max-width: 1800px) {
    .mv-catch {
    font-size: 22px;
}

  .mv .mina {
    font-size: 48px;
}
}

@media screen and (max-width: 1050px) {
.mv {
    padding: 0 0 0 60px;
}

.logo img{
  transform: scale(0.8);
}

.mv-catch{
  font-size: 18px;
}

.mv .mina {
  font-size: 40px;
}
}

@media screen and (max-width: 768px) {
 .mv .sp{
  display: block;
 }

.mv{
    padding: 0 0 0 30px;
}

.mv-inner {
    height: 75vh;
}

.logo img {
  transform: scale(0.6);
}

.mv-catch{
  font-size: 18px;
}

.mv .mina {
  font-size: 24px;
}
}
@media screen and (max-width: 600px) {
	.mv-inner{
    border-top-left-radius: 90px;		
	}
.header-placeholder {
    height: 50px;
}
    .mv {
        padding: 0 0 0 10px;
    }

}
@media screen and (max-width: 450px) {
.logo img {
    transform: scale(0.5);
}

header h1 {
    position: absolute;
    top: 6px;
    left: 12px;
	    width: 80px;
}

.mv-catch{
  font-size: 16px;
}

.mv .mina {
  font-size: 20px;
}
}

/* concept */
.concept {
  margin-top: 170px;
}

.concept h2{
  text-align: left;
  font-weight: 500;
}

.concept-grid {
  display: grid;
grid-template-columns: minmax(320px, 58%) 1fr;
  gap: clamp(60px, 6vw, 120px);
  width: 100%;
  max-width: 1710px;
  margin: 0 0 220px 0;
  padding: 50px 50px 0 0;
  box-sizing: border-box;
}

.concept-img img {
  width: 100%;
  max-width: 100%;
    min-width: 50vw;
  height: auto;
  display: block;
  border-top-right-radius: 146px;
}

.concept-content {
  position: relative;
  max-width: 800px;
}

.concept .concept-text p:first-child {
  font-size: 22px;
  letter-spacing: 0.1em;
      margin: 40px 0 20px;
}

.concept .mina {
    position: absolute;
    font-size: 50px;
    color: #bdbb85;
    font-family: mina, serif;
    bottom: 0;
}

.concept .mina .picture-elements {
  position: relative;
    display: inline-block;
    top: 0;
}

.concept .mina .picture-elements::before {
  content: "";
  position: absolute;
  background-image: url(../img/concept_sub_01.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 102px;
  height: 145px;
  top: 0;
  right: -60px;
  z-index: 3;
}

.concept .concept-divider img{
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
}

@media (max-width: 1600px) {
.concept-grid {
    grid-template-columns: minmax(320px, 50%) 1fr;
}

.concept .mina {
    bottom: -95px;
}

}


@media (max-width: 1300px) {
.concept .mina {
  font-size: 36px;
  margin-top: 15px;
  font-family: mina, serif;
}

.concept .mina .picture-elements::before {
  top: -20px;
  right: -42px;
  transform: scale(0.6);
}
}



@media (max-width: 1200px) {
  .concept-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 30px 0 0;
    margin: 0 0 100px 0;
  }

  .concept-img {
    margin-bottom: 40px;
  }

  .concept-content {
    max-width: 100%;
  }

  .concept .mina::before {
    right: 0;
    transform: scale(0.6);
  }

  .concept .mina {
    text-align: center;
    position: static; /* ← これもポイント！下固定解除して自然な位置へ */
    margin-top: 30px;
  }
}
@media (max-width: 600px) {
.concept {
    margin-top: 120px;
}
    .concept-img img {
        border-top-right-radius: 80px;
    }
.concept-grid {
  padding: 0 15px 0 0;
}
    .concept-content {
        max-width: 100%;
        width: 95%;
        margin: 0 auto;
    }
.concept .mina .picture-elements::before {
        top: -80px;
        right: -65px;
        transform: scale(0.4);
        width: 135px;
        height: 200px;
}
}
@media (max-width: 450px) {
.concept .sp{
  display: block;
}


  
.concept .mina {
  font-size: 28px;
}



.concept .concept-text p:first-child {
    font-size: 20px;
    margin: 20px 0;
}

  .concept-img img {
    border-top-right-radius: 85px;
  }
}

/* feature */
.feature {
  margin-top: 150px;
}

.feature img,
.feature img{
    border-radius: 10px 70px 10px 70px;
  object-fit: cover;
  height: auto;
  max-height: 480px;
  max-width: 830px;
}

.feature h2,
.feature .ja {
  text-align: center;
}

.feature .inner {
  width: 90%;
  max-width: 1710px;
  margin: 140px auto 0;
}

.feature .inner.point-02 {
  width: 97%;
  max-width: 1710px;
/*   margin: 200px auto 0; */
}

.feature .flex-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 200px;
}

.feature .flex-box.reverse {
  flex-direction: row-reverse;
}

.point-01 .flex-img,
.point-03 .flex-img {
  width: 50%;
  text-align: right;
}

.point-01 .flex-img .img-sub,
.point-03 .flex-img .img-sub {
  width: 85%;
  margin:0 0 0 auto;
}

.flex-img .img-sub {
    width: 85%;
    margin: 0;
}

.flex-img .img-sub img{
    border-radius: 70px 10px 70px 10px;
}

.flex-img .img-sub .img-02 {
  max-width: 690px;
  max-height: 380px;

}

.flex-text {
  width: 50%;
  position: relative;
}

/* カード全体 */
.point-01 .card,
.point-03 .card {
 width: 750px;
  background: #fff;
  border-radius: 40px;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        padding: 0 50px 15px 15px;
        position: absolute;
    top: 90px;
    left: -90px;
}

.point-02 .card {
  width: 750px;
  background: #fff;
  border-radius: 40px;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    padding: 0 50px 15px 15px;
        position: absolute;
    top: 90px;
    right: -90px;
}

/* .point-02 .card{
    width: 700px;
    background: #fff;
    border-radius: 40px;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    padding: 0 40px 20px 30px;
    position: absolute;
    top: 90px;
    right: -110px;
} */

/* 内側の枠＋斜め背景 */
.point-01 .card-border,
.point-02 .card-border,
.point-03 .card-border {
  position: relative;
  padding: 20px 30px;
  border-left: 1px solid #bebc8b;
  border-bottom: 1px solid #bebc8b;
  border-radius: 0 0 0 40px;
}

.point-03 .card-border {
    height: 320px;
}

.point-01 .card-border::before,
.point-02 .card-border::before,
.point-03 .card-border::before  {
  content: "";
  position: absolute;
  inset: 0;
  background: #fbfbf6;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  border-radius: 0 0 0 40px;
  z-index: 0;
}

.point-01 .flex-text .card-border::after,
.point-02 .flex-text .card-border::after,
.point-03 .flex-text .card-border::after{
  content: "";
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index:2;
}

.point-01 .flex-text .card-border::after{
  position: absolute;
  background-image: url(../img/feature_01_sub_01.png);
  width: 64px;
  height: 187px;
  bottom: -70px;
  right: -65px;
}

.point-02 .flex-text .card-border::after{
  position: absolute;
  background-image: url(../img/feature_02_sub_01.png);
  width: 79px;
  height: 167px;
  bottom: -57px;
  right: -30px;
}

.point-03 .flex-text .card-border::after{
  position: absolute;
  background-image: url(../img/feature_03_sub_01.png);
  width: 61px;
  height: 184px;
  bottom: -57px;
  right: -30px;
}


/* 見出し・文章 */
.card-border h3,
.card-border p {
  position: relative;
  z-index: 1;
}

.point-01 h3,
.point-02 h3,
.point-03 h3{
  font-size: 20px;
      font-weight: 600;
  margin-bottom: 25px;
}

.point-01 .card-border p,
.point-02 .card-border p,
.point-03 .card-border p{
  font-size: 16px;
  line-height: 2;
  margin-bottom: 10px;
}

/* ラベル部分 */
.little-label {
  font-size: 100px;
  font-family: serif;
  color: #424450;
    text-align: left;
    margin-top: -30px;
    padding-left: 40px;
}

.little-label .bebc8b{
  font-size: 100px;
  color: #bebc8b;
}

.little-label .mina{
  font-size: 60px;
  color: #bebc8b;
  padding-right: 30px;
}

 .feature .bg-text {
  position: absolute;
    bottom: 0;
    left: 30px;
  font-size: 5.2vw;
  color: rgba(0,0,0,0.05);
  z-index: 0;
  letter-spacing: 0.4em;
  line-height: 1.2;
  background: linear-gradient(to right, #e2dfcb, #eeeeee, #f4f4f4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.feature .point-02 .bg-text {
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 1500px) {
.feature .bg-text {
    bottom: -90px;
}
}

@media (max-width: 1350px) {
.feature .inner.point-02 {
  margin-top: 100px;
    width: 90%;
}

.feature .point-01 img,
.feature .point-03 img{
  max-height: 500px;
}

.feature .point-02 img{
  max-height: 500px;
}

.feature .inner {
    margin: 60px auto 0;
    padding-bottom: 100px;
}

.feature .flex-box {
    gap: 50px;
}

.feature .flex-box.reverse {
    flex-direction: column-reverse;
}

.feature .flex-box {
    flex-direction: column-reverse;
}

.feature .flex-img {
        width: auto;
        min-width: 730px;
    margin: auto;
}

.flex-text {
    width: 100%;
    position: relative;
}

.flex-text .card {
        width: 95%;
    max-width: 800px;
    position: static;
    min-width: auto;
    margin: auto;
}

 .feature .bg-text {
  font-size: 85px;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
}

  .feature .point-02 .bg-text {
      bottom: -50%;
      left: 50%;
      transform: translateX(-50%);
  }

 .feature .point-03 .bg-text {
      bottom: -50%;
      left: 50%;
      transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
.feature .flex-img {
    width: 95%;
    min-width: initial;
}


.point-01 .card,
.point-03 .card {
    padding: 20px;
}

.little-label {
  margin-top: 0;
  font-size: 60px;
}

.little-label .mina {
    position: relative;
    font-size: 35px;
    color: #ccc983;
    padding-right: 15px;
}

.little-label .bebc8b {
    font-size: 60px;
}

.little-label span::before{
  top: 17px;
    right: 46px;
    transform: scale(0.6);
}

.feature h3 {
        font-size: 18px;
        margin-bottom: 20px;
        margin-top: 35px;
    }

.point-01 .flex-text .card-border, 
.point-03 .flex-text .card-border {
    padding: 0 0 25px 25px;
}

.point-02 .flex-text .card-border {
    padding: 0 25px 25px 25px;
}


.point-01 .flex-img, .point-03 .flex-img {
    width: 100%;
}

.flex-img .img-sub {
    margin: 20px 0 0 auto;
}

.flex-text .card-border::after {
    transform: scale(0.6);
}

.point-01 .flex-text .card-border::after {
    bottom: -102px;
    right: -37px;
}

.point-03 .flex-text .card-border::after {
    bottom: -89px;
    right: -15px;
}
.feature .bg-text { 
  font-size: 60px;
}
}
@media (max-width: 600px) {
	    .feature .flex-box {
        gap: 0px;
    }
	.feature .inner{
		width: 100%;
		padding-bottom: 0px;
	}
.little-label {
    padding-left: 0px;
}
.feature img, .feature img {
        border-radius: 5px 30px 5px 30px;
	}
.flex-img .img-sub img {
    border-radius: 30px 5px 30px 5px;
}
.flex-text .card{
		width: 100%;
		}	
    .point-01 .flex-text .card-border, .point-03 .flex-text .card-border {
        padding: 10px;
    }
.feature .inner.point-02 {
        width: 100%;
	        margin-top: 0px;
    }
    .point-01 .card, .point-03 .card {
        padding: 8px;
    }
    .point-02 .card {
        padding: 8px;
    }
	.point-02 .flex-text .card-border{
	        padding: 10px;	
	}
    .feature .point-02 .bg-text {
        bottom: -20%;
    }
.point-02 .flex-text .card-border::after {
    position: absolute;
    bottom: -110px;
    right: 0px;
}
	.point-01 .flex-img, .point-03 .flex-img{
        width: 90%;		
	}
	    .point-01 .flex-text .card-border::after {
        right: 10px;
    }
	.flex-text-inner{
        width: 98%;
        margin: 0 auto;	
	}
    .feature  .bg-text {
        font-size: 45px;
        left: 50%;
        bottom: -18%;
        z-index: -1;
    }
	  .feature .point-01 .bg-text,
	  .feature .point-02 .bg-text{
        bottom: -28%;
    }
	
    .point-03 .flex-text .card-border::after {
        bottom: -125px;
        right: 5px;
    }
	
	    .feature .point-03 .bg-text {
        bottom: -41%;
    }
}
/* @media (max-width: 450px) {

    .feature h3 {
      font-size: 18px;
      margin-bottom: 20px;
      margin-top: 35px;
  }
  .feature .flex-box {
      gap: 25px;
  }

.flex-img .img-sub {
    margin: 5px 0 0 auto;
}

.feature .point-01 img, .feature .point-03 img {
    max-height: 250px;
}

.feature .point-02 img{
    max-height: 250px;
}

  .feature .bg-text {
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 45px;
}

.feature .point-02 .bg-text {
    bottom: -25%;
}

  .feature .point-03 .bg-text{
      bottom: -35%;
}
} */
/* photo */
  .photo-slider{
    display: none;
  }

.photo {
  padding-top: 150px;
  background-color: #f7f7f0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.photo .z-index-2{
  position: relative;
  z-index: 2;
}

.photo h2{
  position: relative;
  z-index: 2;
}

.photo .inner {
  position: relative;
  width: 100%;
  margin-top: 55px;
}

.photo .inner .bg-text{
  position: absolute;
  font-size: 14vw;
  color: #fff;
  text-align: center;
  letter-spacing: 0.3em;
  z-index: 0;
}

.photo .inner > p:nth-of-type(1) {
  top:-225px;
  left: 50%;
  transform:translateX(-50%);
}

.photo .inner > p:last-of-type {
  bottom:15%;
  left: 50%;
  transform:translateX(-50%);
}

.photo .flex-box{
  position: relative;
  display: flex;
  justify-content: space-around;
      gap: 30px;
      flex-wrap: nowrap;
}

.photo img{
  border-radius: 200px;
  height: auto;
  width: 100%;
  object-fit: cover;
}

.photo .flex-box .flex-item:nth-child(odd) {
  margin-top: 160px;
}

.photo .flex-item p.mina {
  font-size: 40px;
  color: #999408;
}

.photo .button {
  display: inline-block;
  width: 190px;
  height: 50px;
  line-height: 50px;
  margin: 80px 0 80px;
  background-color: #b4b171;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.photo .button:hover {
  background-color: #a09c66;
  transform: translateY(3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 1700px) {
  .photo .flex-box {
    flex-wrap: wrap;
        justify-content: space-evenly;
  }

  .photo .flex-box .flex-item {
    flex: 0 0 calc(35% - 30px);
    gap:100px;
  }

  .photo .flex-item p.mina {
    font-size: 32px;
}
}
@media screen and (max-width: 850px) {
.photo {
    padding-top: 60px;
  }

  .photo .flex-box {
    display: none;
  }

  .photo-slider {
    display: block;
    margin: 0 auto;
    width: 90%;
    overflow: hidden;
  }

  .photo-slide {
    text-align: center;
  }

    .slick-list {
    overflow: hidden !important; /* ←slick用ラッパーにも指定 */
  }

  .photo-slide img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 200px;
    margin: 0 auto;
  }

  .photo-slide p.mina {
    font-size: 30px;
    color: #999408;
    margin-top: 15px;
  }

  /* slick arrows */
.slick-prev, .slick-next {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 40px;
  color: #999408;
  background: transparent;
  border: none;
  cursor: pointer;
}

.slick-prev {
  left: -5px;
}

.slick-next {
  right: -5px;
}

.slick-prev,
.slick-next {
  font-size: 0;
}

.slick-next,
.slick-prev {
  width: 40px;
  height: 40px;
  z-index: 10;
}

.slick-prev::after {
  content: "";
  position: absolute;
  background-image: url(../img/common/sp-photo-prev.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
    width: 11px;
    height: 19px;
    top: 15px;
    left: 17px;
}

.slick-next::after {
  content: "";
  position: absolute;
  background-image: url(../img/common/sp-photo-next.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
    width: 11px;
    height: 19px;
    top: 15px;
    left: 17px;
}

.photo .inner > p:nth-of-type(1) {
    top: -16%;
}
}

@media screen and (max-width: 600px) {

.slick-slider img{
  padding: 0 40px;
        max-width: 350px;
        height: 400px;
}
	.slick-prev::after{
	        left: 5px;	
	}
    .slick-next::after {
        left: 25px;
    }
}
        

/* access */
.access{
  margin-top: 160px;
}

.access h2{
  text-align: center;
}

.access .ja{
  text-align: center;
}

.access .access-img-wrapper{
    width: 95%;
    max-width: 1050px;
  margin: auto;
}

.access .access-img{
  margin-top: 100px;
  height: auto;
  border-radius: 400px;

}

.access .access-container{
  margin-top: 90px;
  text-align: center;
}

.access .logo img{
  width: 79px;
  margin: 0 auto 60px;
}

.access .flex-box{
  display: flex;
  gap: 60px;
  justify-content: center;
  margin-top: 45px;
}

.access .flex-box a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  width: 190px;
  height: 50px;
  line-height: 50px;
  letter-spacing: 0.05em;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
  padding-left: 22px;
  transition: opacity 0.3s ease;
}

.access .flex-box a:hover {
  opacity: 0.6;
}

.access .flex-box > a:nth-of-type(1){
  background-color: #bdbb8e;
}

.access .flex-box > a:nth-of-type(1)::before{
  content: "";
  position: absolute;
  background-image: url(../img/common/icon_calendar.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
    width: 20px;
    height: 20px;
    top: 15px;
    left: 17px;
}
.access .flex-box > a:nth-of-type(2){
  background-color: #424450;
}

.access .flex-box > a:nth-of-type(2)::before{
  content: "";
  position: absolute;
  background-image: url(../img/common/icon_tell.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 14px;
  height: 23px;
  top: 12px;
  left: 43px;
}

.access .map-wrapper {
  width: 100vw;
  margin-top: 105px;
  margin-left: calc(-50vw + 50%);
  position: relative;
  z-index: 0;
}

.access .map-wrapper iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: none;
}

@media (max-width: 768px) {
  .access {
      margin-top: 80px;
  }

  .access .access-img-wrapper {
    width: 90%;
  }

  .access .access-img {
    width: 100%;
    margin-top: 60px;
  }

  .access .flex-box {
    gap: 20px;
  }

  .access .map-wrapper {
    margin-top: 60px;
  }

.access .access-container {
    margin-top: 30px;
}

.access .logo {
    margin: 0 auto 10px;
}

.access .flex-box {
    gap: 20px;
    margin-top: 25px;
}
}

@media (max-width: 450px) {
.access {
    margin-top: 80px;
}

.access .flex-box {
    flex-direction: column;
}

.access .flex-box a {
  margin: auto;
}
}
/* reserve */
.reserve{
  background-image: url(../img/reserve_bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  object-fit: cover;
height: 650px;
  padding-top: 60px;
}

.reserve .inner{
  text-align: center;
}

.reserve .reserve-container{
  padding: 60px 0 75px;
  width: 1000px;
  max-height: 555px;
  border-radius: 10px;
  background-color: #ffffff80;
  margin: auto;
}

.reserve .reserve-container .flex-box{
  display: flex;
  gap: 7px;
  width: 100%;
  max-width: 695px;
  max-height: 180px;
  margin:65px auto 0;
  padding: 8px 11px;
  border-radius: 10px;
}

.reserve .reserve-container .flex-box .flex-item{
  width: 50%;
  height: 180px;
  background-color: #424450;
  border-radius: 10px;
  padding: 8px 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}


.reserve .reserve-container .flex-box .flex-item:hover {
  background-color: #141418;
  transform: translateY(3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.reserve .flex-box .flex-item .frame-inner {
  position: relative;
      height: 165px;
  border: solid 1px #f4f2ad;
  border-radius: 5px;
  text-align: center;
}

.reserve .reserve-container .flex-box .flex-item .frame-inner>p:nth-of-type(1){
  position: relative;
  font-size: 20px;
  font-weight: bold;
  max-width: 250px;
  height: 50px;
  line-height: 50px;
  margin: 11px auto 0;
  background-color: #fff;
  border-radius: 5px;
  border: #f4f2ad 1px solid;
}

.reserve .reserve-container .flex-box .reserve-icon .frame-inner>p:nth-of-type(1)::before{
  position: absolute;
    content: "";
    position: absolute;
    background-image: url(../img/common/icon_calendar-02.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 52px;
    height: 53px;
    top:70px;
  left: 50%;
  transform: translateX(-50%);
}

.reserve .reserve-container .flex-box .tel-icon .frame-inner>p:nth-of-type(1)::before{
  position: absolute;
    content: "";
    position: absolute;
    background-image: url(../img/common/icon_tell-02.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 36px;
    height: 60px;
    top: 67px;
  left: 50%;
  transform: translateX(-50%);
}

.reserve .reserve-container .flex-box .flex-item .frame-inner>p:nth-of-type(2){
  margin: 25px auto;
}

@media (max-width: 1100px) {
.reserve .reserve-container {
    width: 90%;
    max-width: 720px;
}
}

@media (max-width: 768px) {
.reserve {
    height: 900px;
}

 .reserve .reserve-container {
        width: 90%;
    max-height: initial;
} 

.reserve .reserve-container {
  height: 680px;
}

.reserve .reserve-container .flex-box {
  flex-direction: column;
    margin: 30px auto 0;
}

.reserve .reserve-container .flex-box .flex-item {
    margin: auto;
    width: 80%;
    max-width: 250px;
}

.reserve .reserve-container .flex-box .flex-item .frame-inner>p:nth-of-type(1) {
  width: 80%;
    font-size: 16px;
}

.reserve .reserve-container .flex-box .reserve-icon .frame-inner>p:nth-of-type(1)::before{
  position: absolute;
    content: "";
    position: absolute;
    background-image: url(../img/common/icon_calendar-02.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 52px;
    height: 53px;
    top:70px;
  left: 50%;
  transform: translateX(-50%);
}

.reserve .reserve-container .flex-box .reserve-icon .frame-inner>p:nth-of-type(1)::before{
width: 43px;
    height: 42px;
    top: 80px;
}

.reserve .reserve-container .flex-box .tel-icon .frame-inner>p:nth-of-type(1)::before{
width: 28px;
        height: 47px;
        top: 74px;
}
}


/* footer */
footer{
  width: 100%;
  text-align: center;
}

footer .footer-inner {
     background-color: #cac89a;
    display: flex;
    justify-content: center;
    padding: 5px;
}
footer p{
    font-size: 15px;
    color: #fff;
}

footer a:hover{
  opacity: 0.6; 
}





