/*
Theme Name: my-pilates
*/

*{
  font-family: "Shippori Mincho", serif;
  font-family: "Cormorant Garamond", serif;
  font-style: normal;
  margin: 0;
  padding: 0;
}

body{
  background-color: #FAF8F4;
  cursor: none;
}

html {
  scroll-behavior: smooth;   /* スムーススクロール */
  scroll-padding-top: 164px; /* ← これが“ヘッダー分の空白” */
}


/* 小さな黒丸（中心カーソル） */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #B14B30;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

/* 大きな半透明円（追従） */
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border: 1px solid #b14c3022;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

/* aにホバーしたとき変化 */
.cursor-dot.hover {
  background-color: #b14c305c;
  transform: translate(-50%, -50%) scale(1.5);
}

.cursor-outline.hover {
  border: .5px solid #b14c3022;
  transform: translate(-50%, -50%) scale(1.5);
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .cursor-dot {
  display: none;
}

/* 大きな半透明円（追従） */
.cursor-outline {
  display: none;
}
}

/*フェードイン*/
.fade-in {
  opacity: 0; /* 初期状態では透明 */
  transform: translateY(10px); /* 少し下から出てくるように設定 */
  transition: opacity 0.5s ease, transform 0.5s ease; /* フェードインとスライドのトランジション */
}

/* 画面に入ったら透明度が1になり、位置が元に戻る */
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in2 {
  opacity: 0; /* 初期状態では透明 */
  transform: translateY(50px); /* 少し下から出てくるように設定 */
  transition: opacity 0.7s ease, transform 0.7s ease; /* フェードインとスライドのトランジション */
}

/* 画面に入ったら透明度が1になり、位置が元に戻る */
.fade-in2.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-block {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease, transform 1s ease;
  will-change: transform, opacity;
}

.fade-in-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.fv-title span,
.fv-subtitle span {
  opacity: 0;
  transform: translateY(1em);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fv-english span {
  opacity: 0;
  transform: translateY(1em);
  transition: opacity 0.1s ease, transform 0.1s ease;
}

.fv-title.visible span,
.fv-subtitle.visible span,
.fv-english.visible span {
  opacity: 1;
  transform: translateY(0);
}


.header {
  opacity: 0;
  transition: opacity 2s ease;
}
.header.visible {
  opacity: 1;
}

/*トップロゴ*/
#logoScreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
	isolation: isolate;
  opacity: 1;
  transition: opacity 1.5s ease;
}

#logoAnim {
  opacity: 0;
  clip-path: inset(0 100% 0 0); 
  transition: 
    opacity 1s ease,
    clip-path 1s ease;
  width: 200px; 
}

#logoAnim.visible {
  opacity: 1;
  clip-path: inset(0 0 0 0); 
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 480px) {
.pc { display: none !important; }
.sp { display: block !important; }
}

html {
  scroll-behavior: smooth;
}

p{
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  line-height: 2.4em;
  color: #333333;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
p{
  font-size: 12px;
  font-family: "Shippori Mincho", serif;
  line-height: 1.8em;
  color: #333333;
}
}


h1{color: #333333;}
h2{color: #333333;}
h5{color: #333333;}
h6{color: #333333;}

h3{
  font-family: "Shippori Mincho", serif;
  color: #333333ac;
  font-size: 10px;
  font-weight: 200;
}

h4{
  font-family: "Cormorant Garamond", serif;
  font-size: 50px;
  font-weight: 200;
  color: #333333;
  line-height: 1em;
  letter-spacing: 1px;
}

.en-text{
  color: #33333335;
  font-size: 12px;
  font-weight: 200;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.5em;
  letter-spacing: 1px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.en-text{
  color: #33333335;
  font-size: 10px;
  font-weight: 200;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.5em;
  letter-spacing: 1px;
}
}


main{
  position: relative;
}

#fixed-header {
	z-index: 9999;
  transition: opacity 0.5s ease;
}

#fixed-header.fade-out {
  opacity: 0;
  pointer-events: none;
}


.header {
  position: fixed;
  top: 0;
  width: 90%;
  background: transparent;
  z-index: 1000;
  transition: all 0.3s ease;
  margin: 2% 4% 0;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .header {
    position: fixed;
    top: 0;
    width: 92%;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
    margin: 4% 4% 0;
  }
}

.header-inner {
  display: flex;
  justify-content:flex-end;
  align-items: center;
}


.logo {
  transition: opacity 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
  height: 45px;
  z-index: 100;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .logo {
    transition: opacity 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    height: 40px;
  }
}



.contactbanner a{
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  line-height: 300px;
  text-decoration: none;
  color: #333333;
  border: solid 1px #beb09833;
  background-color: #faf8f452;
  height: 250px;
  width: 250px;
  border-radius: 200px;
  position: fixed;
  top: -104px;
  right: 15%;
  z-index: 2;
  text-align: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
  transition:
    color 0.4s ease,
    border 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.contactbanner{
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 50;
}

/* フェードアウト時 */
.contactbanner.fade-out {
  opacity: 0;
  visibility: hidden;
}

  .contactbanner a{
  font-size: 12px;
  font-family: "Shippori Mincho", serif;
  line-height: 150px;
  text-decoration: none;
  color: #333333;
  border: solid 1px #705a2812;
  background-color: #f7f3eadb;
  height: 220px;
  width: 220px;
  border-radius: 200px;
  position: fixed;
  top:auto;
  bottom: -100px;
  right: -30px;
  z-index: 2;
  text-align: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
  transition:
    color 0.4s ease,
    border 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
}

.contactbanner a::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 60%
  );
  transform: rotate(25deg) translateX(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
  z-index: 1;
}

/* ホバー時のエフェクトまとめ */
.contactbanner a:hover::before {
  transform: rotate(25deg) translateX(100%);
}

.contactbanner a:hover {
  transition: .5s;
  background-color: #f6efe87b;
  color: #000000;
  border: 1px solid #beb09826; /* ボーダーをやや太く */
}



.nav-list {
  list-style: none;
  display: flex;
  gap: 24px;
}



.hamburger-overlay span {
  background: #333333;
  transition: background 0.3s ease;
}

.hamburger-overlay {
  z-index: 1000;
  width: 60px;
  height: 100px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.hamburger-overlay__line {
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: #333;
  transition: all .6s;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .hamburger-overlay {
    z-index: 1000;
    width: 40px;
    height: 50px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    margin-right: 6%;
  }
  
  .hamburger-overlay__line {
    position: absolute;
    width: 40px;
    height: 1px;
    background-color: #333;
    transition: all .6s;
  }
}

.hamburger-overlay__line:nth-of-type(1) { top: 22px; }
.hamburger-overlay__line:nth-of-type(2) { display: none; }
.hamburger-overlay__line:nth-of-type(3) { top: 30px; }

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .hamburger-overlay__line:nth-of-type(1) { top: 14px; }
  .hamburger-overlay__line:nth-of-type(2) { display: none; }
  .hamburger-overlay__line:nth-of-type(3) { top: 20px; }
}

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #333333;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(4px) rotate(-8deg);
  background-color: #333333;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-4px) rotate(8deg);
  background-color: #333333#333333;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
    transform: translateY(4px) rotate(-8deg);
    background-color: #333333;
  }

  .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
    transform: translateY(-2px) rotate(8deg);
    background-color: #333333#333333;
  }
}

.nav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(
    to top,
    rgba(246, 239, 232, 1) 0%,
    rgba(246, 239, 232, 0.5) 40%,
    rgba(246, 239, 232, 0) 100%
  );
  background-color: #FAF8F4;
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 99;
  overflow: hidden; 
}


.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.nav-overlay__manu_list {
  position: fixed; /* 必要に応じて relative でもOK */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25%;
  width: 50%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.nav-overlay__manu_list {
  position: fixed; /* 必要に応じて relative でもOK */
  top: -60px;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  width: 84%;
}
}

.nav-overlay__manu_list li{
  list-style: none;
  margin-top: 16px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.nav-overlay__manu_list li{
  list-style: none;
  margin-top: 8px;
}
}

.nav-overlay__manu_list li a{
  font-size: 40px;
  font-family: "Cormorant Garamond", serif;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.nav-overlay__manu_list li a{
  font-size: 30px;
  font-family: "Cormorant Garamond", serif;
  color: #333;
  text-decoration: none;
  display: block;
  align-items: center;
  letter-spacing: 1px;
}
}

.nav-overlay__manu_list li a span{
  font-size: 10px;
  opacity: .5;
  font-family: "Shippori Mincho", serif;
  display: block;
  margin-left: 8px;
  letter-spacing: 0;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.nav-overlay__manu_list li a span{
  font-size: 10px;
  opacity: .5;
  font-family: "Shippori Mincho", serif;
  display: block;
  margin-left: 0;
  letter-spacing: 0;
}
}

.nav-overlay__manu_list li a:hover{
  opacity: 0.5;
  transition: .5s;
}

.nav-overlay__contact a{
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  line-height: 300px;
  text-decoration: none;
  color: #333333;
  border: solid 1px #beb09860;
  background-color: #faf8f452;
  height: 300px;
  width: 300px;
  border-radius: 200px;
  display: inline-block;
  position: relative;
  z-index: 2;
  text-align: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
  transition:
    color 0.4s ease,
    border 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.nav-overlay__contact a{
  font-size: 13px;
  font-family: "Shippori Mincho", serif;
  line-height: 250px;
  text-decoration: none;
  color: #333333;
  border: solid 1px #beb09860;
  background-color: #faf8f452;
  height: 250px;
  width: 250px;
  border-radius: 200px;
  display: inline-block;
  position: relative;
  z-index: 2;
  text-align: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
  transition:
    color 0.4s ease,
    border 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
}


.nav-overlay__contact a::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 60%
  );
  transform: rotate(25deg) translateX(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
  z-index: 1;
}

/* ホバー時のエフェクトまとめ */
.nav-overlay__contact a:hover::before {
  transform: rotate(25deg) translateX(100%);
}

.nav-overlay__contact a:hover {
  transition: .5s;
  background-color: #F6EFE8;
  color: #000000;
  border: 1px solid #beb09811; /* ボーダーをやや太く */
}

.nav-overlay__list_sns {
  position: fixed; /* 必要に応じて relative でもOK */
  bottom: 12%;
  right: 12%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.nav-overlay__list_sns {
  position: fixed; /* 必要に応じて relative でもOK */
  bottom: 8%;
  right: 12%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
}

.nav-overlay__list_sns li{
  list-style: none;
  margin-left: 32px;
}

.nav-overlay__list_sns li a{
  text-decoration: none;
  font-size: 14px;
  color: #333333;
  letter-spacing: 1px;
  font-family: "Cormorant Garamond", serif;
}

.nav-overlay__list_sns li a:hover{
  opacity: .5;
  transition: .5s;
}


.nav-overlay.active .nav-overlay__item {
  opacity: 1;
}

.nav-overlay__manu_list li {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* activeになったら表示される */
.nav-overlay.active .nav-overlay__manu_list li {
  opacity: 1;
}


.nav-overlay.active .nav-overlay__manu_list li:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__manu_list li:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__manu_list li:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__manu_list li:nth-child(4) { transition-delay: 0.4s; }
.nav-overlay.active .nav-overlay__manu_list li:nth-child(5) { transition-delay: 0.5s; }
.nav-overlay.active .nav-overlay__manu_list li:nth-child(6) { transition-delay: 0.6s; }


.nav-overlay__list_contact{
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* activeになったら表示される */
.nav-overlay.active .nav-overlay__list_contact {
  opacity: 1;
}


.nav-overlay.active .nav-overlay__list_contact{ transition-delay: 0.6s; }

.instagram{
  position: fixed;
  bottom: 6%;
  left: 4%;
  z-index: 2;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  writing-mode: vertical-rl;
}

.instagram.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.instagram a{
  font-size: 14px;
  font-family: "Cormorant Garamond", serif;
  color: #333333;
  text-decoration: none;
  letter-spacing: 1px;
}

.instagram a:hover{
  opacity: .5;
  transition: .7s;
}


.top-fv{
  background: linear-gradient(
    to top left, /* または 315deg */
    rgba(246, 239, 232, 0) 0%,         /* 右下：透明 */
    rgba(246, 239, 232, 0.16) 30%,     /* 少し透ける */
    #F6EFE8 70%,                       /* 左上：不透明 */
    #F6EFE8 100%
  );
  padding: 80px 0 0;
}

.top-fv-text{
  padding: 104px 12% 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-fv-text{
  padding: 94px 8% 24px;
  display: block;
  align-items: flex-end;
  justify-content: space-between;
}
}

.top-fv-text-left p{
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.top-fv-text-left h2{
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  font-size: 80px;
  letter-spacing: 1px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-fv-text-left h2{
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  font-size: 70px;
  letter-spacing: 1px;
}
}

.top-fv-text-right p{
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  letter-spacing: 1px;
  font-size: 12px;
  margin-bottom: 40px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-fv-text-right p{
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  letter-spacing: 1px;
  font-size: 12px;
  margin-bottom: 16px;
  text-align: right;
  margin-top: 40px;
}
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  margin: auto;
  height: 600px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.carousel-container {
  width: 100%;
  overflow: hidden;
  margin: auto;
  height: auto;
}
}

.carousel-track {
  display: flex;
  gap: 0;
  will-change: transform;
  align-items: flex-end;
}

.carousel-track img {
  width: calc(100% / 2.5); /* 2.5枚見える */
  flex-shrink: 0;
  height: auto;
  object-fit: cover;
  margin-left: 1px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.carousel-track img {
  width: calc(100% / 1.5); /* 2.5枚見える */
  flex-shrink: 0;
  height: auto;
  object-fit: cover;
  margin-left: 1px;
}
}

.top-section2{
  display: flex;
  justify-content: space-between;
  margin: 80px auto 0;
  max-width: 1200px;
  padding: 0 20%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section2{
  display: flex;
  justify-content: space-between;
  margin: 40px auto 0;
  max-width: 1200px;
  padding: 0 8%;
}
}

.top-section2-left{
  margin-top: 80px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section2-left{
  margin-top: 104px;
  margin-right: 16px;
}
}

.top-section2-left p{
  margin-bottom: 20px;
}

.top-section2-right{
  writing-mode: vertical-rl;
  text-orientation: mixed;   
  font-family: "Noto Serif JP", serif;
  font-size: 30px; 
  line-height: 2.2em;
  font-weight: 100;
  margin-right: 12%;
  letter-spacing: 8px;
  color: #333333;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.top-section2-right{
  writing-mode: vertical-rl;
  text-orientation: mixed;   
  font-family: "Noto Serif JP", serif;
  font-size: 30px; 
  line-height: 2.2em;
  font-weight: 100;
  margin-right: 0;
  letter-spacing: 8px;
  color: #333333;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section2-right{
  writing-mode: vertical-rl;
  text-orientation: mixed;   
  font-family: "Noto Serif JP", serif;
  font-size: 23px; 
  line-height: 1.6em;
  font-weight: 100;
  margin-right: 0;
  letter-spacing: 4px;
  color: #333333;
}
}


.top-section2-right span {
  opacity: 0;
  display: inline-block;
  transform: translateY(10px);
  animation: fadeInUp 0.2s ease forwards;
}

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

.top-section3{
  padding: 104px 16%;
  margin: 80px auto;
  background-image: url("img/top-3bg.png"); 
  background-size: cover;  
  background-position: center center;    
  background-repeat: no-repeat;  
  display: flex;     
  justify-content: space-between;
  max-width: 1500px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section3{
  padding: 64px 8%;
  margin: 40px auto;
  background-image: url("img/top-3bg.png"); 
  background-size: cover;  
  background-position: center center;    
  background-repeat: no-repeat;  
  display: block;     
  justify-content: space-between;
  max-width: 1500px;
}
}

.top-section3-left {
  width: 35%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section3-left {
  width: 80%;
  margin: 0 10%;
}
}

.top-section3-left img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;

}

.top-section3-right{
  width: 55%;
  margin-top: 64px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section3-right{
  width: 100%;
  margin-top: 32px;
}
}

.top-section3-right h2{
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  font-weight: 400;
  margin: 20px 0 16px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section3-right h2{
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  margin: 20px 0 16px;
}
}

.top-section3-right .en-text{
  margin-top: 20px;
}

.top-section4{
  margin: 104px auto;
  max-width: 1500px;
  padding: 0 16%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section4{
  margin: 64px auto;
  max-width: 1500px;
  padding: 0 8%;
}

}

.top-section4-title{
  display: flex;
  justify-content: space-between;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section4-title{
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}
}


.top-section4-title-left{
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.top-section4-title-right{
  width: 96%;
  margin-left: 4%;
}

.top-section4-title-right img{
  width: 100%;
}

.top-section4-text .en-text{
  margin: 20px 0 32px;
}

.top-section4-text a{
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  font-size: 14px;
  color: #333333;
  border-bottom: solid 1px #33333335;
  text-decoration: none;
  display: inline;
  padding-bottom: 8px;
}

.top-section4-text a:hover{
  opacity: .5;
  transition: .5s;
}

.top-section5{
  padding: 104px 6%;
  margin: 80px 14%;
  max-width: 1500px;
  background: linear-gradient(
  90deg,
  #F6F4EE 0%,                       /* スタートカラー（不透明） */
  rgba(245, 243, 237, 0) 50%,       /* 中間：F5F3ED 透明 */
  #F6F4EE 100%                      /* 終点：F5F3ED 不透明 */
);
  background-size: cover;  
  background-position: center center;    
  background-repeat: no-repeat;  
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.top-section5{
  padding: 104px 6%;
  margin: 80px 8%;
  max-width: 1500px;
  background: linear-gradient(
  90deg,
  #F6F4EE 0%,                       /* スタートカラー（不透明） */
  rgba(245, 243, 237, 0) 50%,       /* 中間：F5F3ED 透明 */
  #F6F4EE 100%                      /* 終点：F5F3ED 不透明 */
);
  background-size: cover;  
  background-position: center center;    
  background-repeat: no-repeat;  
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section5{
  padding: 64px 6%;
  margin: 64px 8%;
  max-width: 1500px;
  background: linear-gradient(
  90deg,
  #F6F4EE 0%,                       /* スタートカラー（不透明） */
  rgba(245, 243, 237, 0) 50%,       /* 中間：F5F3ED 透明 */
  #F6F4EE 100%                      /* 終点：F5F3ED 不透明 */
);
  background-size: cover;  
  background-position: center center;    
  background-repeat: no-repeat;  
}
}

.top-section5-title{
  margin: 0 0 40px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section5-title{
  margin: 0 0 32px;
}

.top-section5-title h4{
  font-size: 40px;
}
}


.top-section5-title-right{
  display: flex;
  list-style: none;
  justify-content: space-between;
  list-style: none;
  align-items: center;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section5-title-right{
  display: block;
}
}

.top-instructor{
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: solid 1px #3333330c;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-instructor{
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: solid 1px #3333330c;
}
}

.top-section5-title-right li{
  width: 40%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section5-title-right li{
  width: 100%;
}
}

.top-section5-title-right li:nth-child(1) p{
  font-size: 13px;
}

.top-section5-title-right li:nth-child(2){
  width: 55%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section5-title-right li:nth-child(2){
  width: 100%;
}
}

.top-section5-title-right h6{
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  font-size: 25px;
  color: #333333;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section5-title-right h6{
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  font-size: 25px;
  color: #333333;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  margin-bottom: 8px;
  margin-top: 40px;
}
}

.top-section5-title-right h6 span{
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  font-weight: 400;
  margin-left: 8px;
  letter-spacing: 1px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section5-title-right h6 span{
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
  font-weight: 400;
  margin-left: 8px;
  letter-spacing: 1px;
}
}

.top-section5-title-right p{
  line-height: 2em;
  margin: 16px 0;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section5-title-right p{
  line-height: 2em;
  margin: 12px 0;
}
}

.top-section5-title-right img{
  width: 100%;
}

.top-section5-text p{
  font-size: 12px;
}

.top-section6{
  margin: 80px auto;
  padding: 0 12%;
  display: flex;
  justify-content: space-between;
  max-width: 1500px;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.top-section6{
  margin: 80px auto;
  padding: 0 8%;
  display: flex;
  justify-content: space-between;
  max-width: 1500px;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section6{
  margin: 64px auto;
  padding: 0 8%;
  display: block;
  justify-content: space-between;
  max-width: 1500px;
}
}

.link-bannar{
  width: 25%;
  border: solid 1px #3333332f;
  padding: 12% 12%;
  border-radius: 500px;
  text-align: center;
  height: fit-content;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.link-bannar{
  width: 84%;
  border: solid 1px #3333332f;
  padding: 24% 8%;
  border-radius: 300px;
  text-align: center;
  height: fit-content;
}
}

.link-bannar img{
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin: 16px 0;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.link-bannar img{
  width: 60%;
  padding: 0 20%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin: 16px 0;
}
}

.link-bannar a{
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  font-size: 14px;
  color: #333333;
  border-bottom: solid 1px #33333335;
  text-decoration: none;
  display: inline;
  padding: 0 8px 8px;
}

.link-bannar a:hover{
  opacity: .5;
  transition: .5s;
}

.topfaqlink{
  margin-top: 80px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.topfaqlink{
  margin-top: 16px;
}
}

.top-section7{
  margin: 104px auto;
  padding: 0 16%;
  max-width: 1500px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section7{
  margin: 64px auto;
  padding: 0 8%;
  max-width: 1500px;
}
}

.top-section7-title{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.top-section7-title-right a{
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  font-size: 14px;
  color: #333333;
  border-bottom: solid 1px #33333335;
  text-decoration: none;
  display: inline;
  padding-bottom: 8px;
}

.top-section7-title-right a:hover{
  opacity: .5;
  transition: .5s;
}

.newslist li {
  list-style: none;
}

.newslist li a{
  display: flex;
  align-items: flex-start;
  justify-content:flex-start;
  text-decoration: none;
  border-bottom: solid 1px #3333331c;
  padding-bottom: 32px;
  padding-top: 32px;
}

.newslist li a:hover{
  opacity: .5;
  transition: .5s;
}

.newslist li a .newsday{
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  font-size: 14px;
  color: #333333;
  margin-right: 40px;
	letter-spacing: 1px;
}

.newslist li a .newstitle{
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  font-size: 14px;
  color: #333333;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.newslist li a .newstitle{
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  font-size: 12px;
  color: #333333;
}
}

.top-section7-2{
  margin: 104px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section7-2{
  margin: 64px 0 40px;
  display: block;
  justify-content: space-between;
  align-items: center;
}
}

.top-section7-2 li{
  width: 50%;
  list-style: none;
}

.top-section7-2 li:nth-child(2){
  width: 30%;
  margin-right: 12%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section7-2 li{
  width: 80%;
  list-style: none;
}

.top-section7-2 li:nth-child(2){
  width: 62%;
  margin-right: 8%;
  margin-left: 30%;
  margin-top: 8px;
}

}

.top-section7-2 li img{
  width: 100%;
  aspect-ratio: 4 / 5;
    object-fit: cover;
}

.top-section8svg{
  display: block;       
  margin: 0;
  padding: 0;
  line-height: 0;  
}

.top-section8 {
  background-color: #F7F2EC;
  margin: 0;
  padding: 0 14% 104px;
  display: flex;
  justify-content: space-between;
}

/* タブレット*/
@media (min-width: 2000px){
  .top-section8 {
  background-color: #F7F2EC;
  margin: 0;
  padding: 0 25% 104px;
  display: flex;
  justify-content: space-between;
  max-width: 1500px;
}
}

 /* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section8 {
  background-color: #F7F2EC;
  margin: 0;
  padding: 0 8% 64px;
  display: block;
  justify-content: space-between;
}
}

.top-section8-left{
  width: 25%;
  margin-right: 32px;
}

 /* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section8-left{
  width: 100%;
  margin-right: 0;
}
}

.top-section8-right h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  font-size: 25px;
  color: #333333;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section8-right h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  font-size: 25px;
  color: #333333;
  letter-spacing: 1px;
  margin-bottom: 16px;
  margin-top: 32px;
}
}

.top-section8-right h2 span {
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
}

.accessinfo{
  margin-top: 40px;
  display: flex;
  justify-content:space-between;
}

.accessinfo li{
  list-style: none;
}

.accessinfo li:nth-child(1){
  width: 20%;
}

.accessinfo li:nth-child(2){
  width: 78%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.accessinfo li:nth-child(1){
  width: 30%;
}

.accessinfo li:nth-child(2){
  width: 68%;
}

}

.accessinfo li a{
  color: #333333;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  font-size: 12px;
}

.top-section9{
  margin-bottom: 40px;
}

.image-overlay {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.image-overlay {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}

}

.image-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-overlay .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 透過黒 */

}

.top-section9-text{
  padding: 0;
  display: flex;
  align-items: flex-start;
  position: absolute;
  justify-content: space-between;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68%;
  max-width: 1400px;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.top-section9-text{
  padding: 0;
  display: flex;
  align-items: flex-start;
  position: absolute;
  justify-content: space-between;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84%;
  max-width: 1400px;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section9-text{
  padding: 0;
  display: block;
  align-items: flex-start;
  position: absolute;
  justify-content: space-between;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84%;
  max-width: 1400px;
}
}

.top-section9-text li{
  list-style: none;
}

.top-section9-text li:nth-child(1){
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-align: left;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section9-text li:nth-child(1){
  writing-mode:unset;
  text-orientation: mixed;
  text-align: left;
}

}

.top-section9-text li h4{
  font-family: "Cormorant Garamond", serif;
  font-size: 10px;
  font-weight: 200;
  color: #ffffff;
  letter-spacing: 2px;
  opacity: 1;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section9-text li h4{
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 200;
  color: #ffffff;
  letter-spacing: 1px;
  opacity: 1;
  margin-top: 4px;
}
}

.top-section9-text li h3{
  font-family: "Noto Serif JP", serif;
  color: #ffffff;
  font-size: 35px;
  font-weight: 100;
  letter-spacing: 14px;
  opacity: 1;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section9-text li h3{
  font-family: "Noto Serif JP", serif;
  color: #ffffff;
  font-size: 14px;
  font-weight: 100;
  letter-spacing: 3px;
  opacity: 1;
}
}

.top-section9-text li:nth-child(2){
  margin: 0 40px;
  margin-top: 80px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section9-text li:nth-child(2){
  margin: 0;
  margin-top: 24px;
}

}

.top-section9-text li p{
  color: #ffffff;
}

.top-section9-text li .en-text{
  margin-top: 20px;
}

.top-section9-text li:nth-child(3){
  margin-top: 144px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section9-text li:nth-child(3){
  margin-top: 32px;
}
}

.top-section9-text li a{
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  line-height: 250px;
  text-decoration: none;
  color: #ffffff;
  border: solid 1px #beb09860;
  height: 250px;
  width: 250px;
  border-radius: 200px;
  display: inline-block;
  position: relative;
  letter-spacing: 2px;
  text-align: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
  transition: color 0.4s ease, border 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section9-text li a{
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  line-height: 250px;
  text-decoration: none;
  color: #ffffff;
  border: solid 1px #beb09860;
  background-color: #beb0984d;
  height: 250px;
  width: 250px;
  margin-left: 140px;
  border-radius: 200px;
  display: inline-block;
  position: relative;
  letter-spacing: 2px;
  text-align: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
  transition: color 0.4s ease, border 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}
}

.top-section9-text li a::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 60%
  );
  transform: rotate(25deg) translateX(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
  z-index: 1;
}

/* ホバー時のエフェクトまとめ */
.top-section9-text li a:hover::before {
  transform: rotate(25deg) translateX(100%);
}

.top-section9-text li a:hover {
  transition: .5s;
  background-color: #f6efe821;
  border: 1px solid #ffffff1a; /* ボーダーをやや太く */
}

.top-section10{
  margin: 104px auto;
  text-align: right;
  max-width: 1500px;
  padding: 0 16%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section10{
  margin: 64px auto;
  text-align: right;
  max-width: 1500px;
  padding: 0 8%;
}
}

.top-section10 h3{
  text-align: left;
}

.top-section10 h4{
  text-align: left;
}

.top-section10-img {
  display: flex;
  width: 68%;
  margin: 32px 0;
}

/* 左側：大きな画像 */
.top-section10-img-left {
  flex: 1.5;
  width: 20%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.top-section10-img-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 右側：2x2 グリッド */
.top-section10-img-right {
  flex: 1.3;
  display: flex;
  flex-direction: column;
  width: 10%;
}

.img-row {
  display: flex;
  flex: 1;
}

.img-row img {
  flex: 1;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.top-section10-link{
  text-align: right;
  display:inline-block;
}

.top-section10 a {
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  font-size: 14px;
  color: #333333;
  border-bottom: solid 1px #33333335;
  text-decoration: none;
  display: inline;
  padding-bottom: 8px;
}

.top-section10 a:hover{
  opacity: .5;
  transition: .5s;
}

footer{
  padding: 104px 0 80px 12%;
  top: 0;
  right: 0;
  width: 88%;
  background: linear-gradient(
    to top,
    rgba(246, 239, 232, 1) 0%,
    rgba(246, 239, 232, 0.5) 40%,
    rgba(246, 239, 232, 0) 100%
  );
  background-color: #FAF8F4;
  transition: all .6s;
  overflow: hidden; 
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
footer{
  padding: 80px 0 40px 8%;
  top: 0;
  right: 0;
  width: 92%;
  background: linear-gradient(
    to top,
    rgba(246, 239, 232, 1) 0%,
    rgba(246, 239, 232, 0.5) 40%,
    rgba(246, 239, 232, 0) 100%
  );
  background-color: #FAF8F4;
  transition: all .6s;
  overflow: hidden; 
}
}


.footertop{
  display: flex;
  justify-content:space-between;
  position: relative;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.footertop{
  display: block;
  justify-content:space-between;
  position: relative;
}
}

.footertop li{
  list-style: none;
}

.footertop li:nth-child(1){
  display: flex;
  align-items: center;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.footertop li:nth-child(1){
  display: block;
  align-items: center;
}
}

.footertop-left-img{
  width: 150px;
}

.footertop-left-img img{
  width: 100%;
}

.footerlogoline{
  height: 30px;
  width: 1px;
  background-color: #33333312;
  margin: 0 24px;
}
/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.footerlogoline{
  height: 30px;
  width: 1px;
  background-color: #33333312;
  margin: 0 24px;
  display: none;
}
}

.footertop li h1{
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
}

.footertop li h1 span{
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  font-size: 18px;
  margin-left: 8px;
  letter-spacing: 1px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.footertop li h1{
  font-size: 13px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  margin-top: 16px;
}

.footertop li h1 span{
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  font-size: 14px;
  margin-left: 8px;
  letter-spacing: 1px;
}
}

.footertop li:nth-child(2){
  display: flex;
  margin: 40px 0;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.footertop li:nth-child(2){
  display: block;
  margin: 40px 0;
}
}

.footertop li:nth-child(2) h6{
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  font-size: 14px;
  letter-spacing: 1px;
  color: #33333378;
  margin-bottom: 8px;
}

.footertop li:nth-child(2) p{
  line-height: 1.8em;
  font-size: 12px;
}

.sitemap{
  display:grid;
  margin: 0 12%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.sitemap{
  display:grid;
  margin: 24px 0;
}
}

.sitemap a{
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  font-size: 12px;
  letter-spacing: 1px;
  color: #333333;
  text-decoration: none;
  line-height: 1.5em;
}

.sitemap a:hover{
  opacity: .5;
  transition: .5s;
}


.followus a{
  align-items: center;
  display: flex;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  font-size: 12px;
  letter-spacing: 1px;
  color: #333333;
  text-decoration: none;
  line-height: 1.8em;
}

.followus a:hover{
  opacity: .5;
  transition: .5s;
}

.followus a img{
  width: 20px;
  margin-right: 4px;
}

.footertop-right{
  position: absolute;
  top: -40px;
  right: 0;
}

.footertop-right a{
  position: absolute;
  top: 0;
  right: -40px;
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  line-height: 400px;
  text-decoration: none;
  color: #333333;
  border: solid 1px #beb09833;
  background-color: #faf8f452;
  height: 400px;
  width: 400px;
  border-radius: 500px;
  z-index: 2;
  text-align: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
  transition:
    color 0.4s ease,
    border 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.footertop-right{
  position: absolute;
  top: 240px;
  right: 0;
}

.footertop-right a{
  position: absolute;
  top: 0;
  right: -30px;
  font-size: 12px;
  font-family: "Shippori Mincho", serif;
  line-height: 250px;
  text-decoration: none;
  color: #333333;
  border: solid 1px #beb09833;
  background-color: #faf8f452;
  height: 250px;
  width: 250px;
  border-radius: 500px;
  z-index: 2;
  text-align: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
  transition:
    color 0.4s ease,
    border 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
}

.footertop-right a::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 60%
  );
  transform: rotate(25deg) translateX(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
  z-index: 1;
}

/* ホバー時のエフェクトまとめ */
.footertop-right a:hover::before {
  transform: rotate(25deg) translateX(100%);
}

.footertop-right a:hover {
  transition: .5s;
  background-color: #f6efe850;
  color: #000000;
  border: 1px solid #beb09811; /* ボーダーをやや太く */
}

.footerbottom{
  border-top: solid 1px #33333318;
  margin-top: 40px;
  padding-top: 24px;
  width: 60%;
}

.footerbottom .policy{
  display: flex;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.footerbottom .policy{
  display: block;
}
}

.footerbottom .policy li{
  list-style: none;
  margin-right: 16px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.footerbottom .policy li{
  list-style: none;
  margin-right: 0;
}
}

.footerbottom .policy li a{
  font-size: 10px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  text-decoration: none;
}

.footerbottom .policy li a:hover{
  border-bottom: solid 1px #33333325;
  transition: .5s;
  opacity: .5;
}

.footerbottom p{
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  font-size: 12px;
  margin-top: 10px;
}


.studiosection1 {
  padding: 0 12%;
  display: flex;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.studiosection1 {
  padding: 0 8%;
  display: flex;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.studiosection1 {
  padding: 104px 8% 0;
  display: block;
}
}

.studiosection1 img{
  width: 55%;
  margin-right: 80px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.studiosection1 img{
  width: 80%;
  margin-right:0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
}

.studiosection1 .pagesectiontitle{
  margin-top: 400px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.studiosection1 .pagesectiontitle{
  margin-top: 16px;
}
}

.pagesectiontitle h2{
  font-size: 10px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.studiosection1 .pagesectiontitle h2{
  font-size: 10px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  text-align: right;
}
}

.pagesectiontitle h3{
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  font-size: 70px;
  margin-top: 8px;
  letter-spacing: 1px;
  color:#333333;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.studiosection1 .pagesectiontitle h3{
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  font-size: 70px;
  margin-top: 0;
  letter-spacing: 1px;
  color:#333333;
  line-height: 1em;
  text-align: right;
}
}

.studiosection1-2{
  margin: 16px 45% 0 12%;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
	.studiosection1-2{
  margin: 16px 45% 0 8%;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.studiosection1-2{
  margin: 16px 8% 0;
}
}

.studiosection1-2 h4{
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
}

.studiosection1-2 p{
  line-height: 1.7em;
  margin-top: 8px;
	font-size: 12px;
}

.studiosection4 {
    margin: 104px auto 0;
    max-width: 1500px;
    padding: 0 12%;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.studiosection4{
  margin: 104px  auto 0;
  max-width: 1500px;
  padding: 0 8%;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .studiosection4{
  margin: 64px  auto 32px;
  max-width: 1500px;
  padding: 0 8%;
}
}

.studiosection4 li{
  width: 75%;
    list-style: none;
    margin-left: 25%;
}


/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.studiosection4 li{
  width: 90%;
  list-style: none;
	margin-left: 10%;
}

}

.studiosection4 li img{
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.studiosection4 li  h4{
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  margin-top: 8px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
.studiosection4 li  h4{
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  margin-top: 8px;
  line-height: 1.5em;
}
}

.studiosection4 li  p{
  line-height: 1.7em;
  margin-top: 8px;
	font-size: 12px;
}

.studiosection2{
  display: flex;
  justify-content: space-between;
  margin: 104px  auto 0;
  max-width: 1500px;
  padding: 0 12%;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.studiosection2{
  display: flex;
  justify-content: space-between;
  margin: 104px  auto 0;
  max-width: 1500px;
  padding: 0 8%;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .studiosection2{
  display: block;
  justify-content: space-between;
  margin: 64px  auto 32px;
  max-width: 1500px;
  padding: 0 8%;
}
}

.studiosection2 li{
  width: 30%;
  list-style: none;
}

.studiosection2 li:nth-child(2){
  width: 60%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.studiosection2 li{
  width: 70%;
  list-style: none;
}

.studiosection2 li:nth-child(2){
  width: 75%;
  margin-top: 40px;
  margin-left: 25%;
}
}

.studiosection2 li img{
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.studiosection2 li  h4{
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  margin-top: 8px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
.studiosection2 li  h4{
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  margin-top: 8px;
  line-height: 1.5em;
}
}

.studiosection2 li  p{
  line-height: 1.7em;
  margin-top: 8px;
	font-size: 12px;
}

.studiosection3{
  display: flex;
  justify-content: space-between;
   margin: 104px  auto 0;
  max-width: 1500px;
  padding: 0 12%;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.studiosection3{
  display: flex;
  justify-content: space-between;
   margin: 104px  auto 0;
  max-width: 1500px;
  padding: 0 8%;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.studiosection3{
  display: block;
  justify-content: space-between;
   margin: 64px auto 0;
  max-width: 1500px;
  padding: 0 8%;
}
}


.studiosection3 li{
  width: 60%;
  list-style: none;
}

.studiosection3 li:nth-child(2){
  width: 30%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.studiosection3 li{
  width: 70%;
  list-style: none;
}

.studiosection3 li:nth-child(2){
  margin-top: 40px;
  width: 75%;
  margin-top: 40px;
  margin-left: 25%;
}
}


.studiosection3 li img{
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.studiosection3 li  h4{
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  margin-top: 8px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
  .studiosection3 li  h4{
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  margin-top: 8px;
  line-height: 1.5em;
}
}

.studiosection3 li p{
  line-height: 1.7em;
  margin-top: 8px;
	font-size: 12px;
}

.studiosection5 {
    margin: 104px auto 0;
    max-width: 1500px;
    padding: 0 12%;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.studiosection5{
  margin: 104px  auto 0;
  max-width: 1500px;
  padding: 0 8%;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .studiosection5{
  margin: 64px  auto 32px;
  max-width: 1500px;
  padding: 0 8%;
}
}

.studiosection5 li{
  width: 75%;
    list-style: none;
    margin-right: 25%;
}


/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.studiosection5 li{
  width: 90%;
  list-style: none;
	margin-right: 10%;
}

}

.studiosection5 li img{
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.studiosection5 li  h4{
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  margin-top: 8px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
.studiosection5 li  h4{
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  margin-top: 8px;
  line-height: 1.5em;
}
}

.studiosection5 li  p{
  line-height: 1.7em;
  margin-top: 8px;
	font-size: 12px;
}

.pricesection1{
  padding: 168px 16% 0;
  max-width: 1500px;
  margin: 0 auto;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.pricesection1{
  padding: 168px 8% 0;
  max-width: 1500px;
  margin: 0 auto;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.pricesection1{
  padding: 104px 8% 0;
  max-width: 1500px;
  margin: 0 auto;
}

.pricesection1 h3{
  line-height: 1em;
}
}

.pricesection1-2{
  margin: 40px auto 104px;
  max-width: 1500px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.pricesection1-2{
  margin: 40px auto 64px;
  max-width: 1500px;
}
}

.pricesection2{
  margin: 0 16% 24px;
  border: solid 1px #33333327;
  border-radius: 10px;
  padding: 4%;
}


/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.pricesection2{
  margin: 0 8% 24px;
  border: solid 1px #33333327;
  border-radius: 10px;
  padding: 4%;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.pricesection2{
  margin: 0 8% 24px;
  border: solid 1px #33333327;
  border-radius: 10px;
  padding: 6%;
}
}

.pricesection2 li{
  list-style: none;
}

.pricesection2 li:nth-child(1){
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.pricesection2 li h3{
  font-size: 20px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
}

.pricesection2 li h6{
  font-size: 12px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  color: #333333;
  margin-left: 8px;
  letter-spacing: 1px;
}

.pricesection2 .pricesection2-info{
  display: flex;
  align-items: center;
  background-color:#F7F3EC;
  justify-content: space-between;
  padding: 2% 4%;
  margin: 8px 0;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.pricesection2 .pricesection2-info{
  display: block;
  align-items: center;
  background-color:#F7F3EC;
  justify-content: space-between;
  padding: 4% 4%;
  margin: 8px 0;
}
}

.pricesection2-menu{
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.pricesection2-menu{
  font-size: 12px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
}
}

.pricesection2-price{
  font-size: 25px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  color: #333333;
  letter-spacing: 1px;
}

.pricesection2 .pricesection2-notes{
  font-size: 10px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.8em;
  margin-top: 16px;
}

.newssection1{
  padding: 168px 16% 0;
  max-width: 1500px;
  margin: 0 auto;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.newssection1{
  padding: 168px 8% 0;
  max-width: 1500px;
  margin: 0 auto;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.newssection1{
  padding: 104px 8% 0;
  max-width: 1500px;
  margin: 0 auto;
}

.newssection1 h3{
  line-height: 1em;
}

}

.pagination{
	margin: 80px auto;
    text-align: center;
	font-size: 16px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  color: #333333;
}

.pagination a{
	font-size: 16px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  color: #333333;
}

.pagination a:hover{
	opacity: .5;
  transition: .5s;
}

.pagination .page-numbers{
	margin-right:4px;
}

.pagination .next{
	font-size: 14px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  color: #333333;
}

.newslistsection2{
  margin: 40px auto 104px;
  max-width: 1500px;
  padding: 0 16%;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.newslistsection2{
  margin: 40px auto 104px;
  max-width: 1500px;
  padding: 0 8%;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.newslistsection2{
  margin: 32px auto 64px;
  max-width: 1500px;
  padding: 0 8%;
}
}

.newssection2{
  margin: 40px auto 104px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1500px;
  padding: 0 16%;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.newssection2{
  margin: 40px auto 104px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1500px;
  padding: 0 8%;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.newssection2{
  margin: 40px auto 64px;
  display: block;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1500px;
  padding: 0 8%;
}
}

.newssection2 li:nth-child(1){
  list-style: none;
  width: 20%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.newssection2 li:nth-child(1){
  list-style: none;
  width: 100%;
}
}

.newssection2 li:nth-child(1) a{
  font-size: 14px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  color: #333333a9;
  letter-spacing: 1px;
  border-bottom: solid 1px #3333334b;
  padding-bottom: 4px;
  text-decoration: none;
  width: 80px;
  display: block;
}

.newssection2 li:nth-child(1) a:hover{
  color: #000000;
  transition: .5s;
}

.newssection2 li:nth-child(2){
  list-style: none;
  width: 78%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.newssection2 li:nth-child(2){
  list-style: none;
  width: 100%;
  margin-top: 32px;
}
}

.newssection2-day{
  font-size: 14px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  color: #333333;
  letter-spacing: 1px;
}

.newssection2-title{
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.8em;
  margin: 24px 0;
}

.newssection2-contents img{
  width: 100%;
}

.newssection2-contents p{
  font-size: 13px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  line-height: 2em;
}

.newssection2-contents h1{
  font-size: 26px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
 line-height: 1.8em;
}

.newssection2-contents h2{
  font-size: 24px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.8em;
}

.newssection2-contents h3{
  font-size: 22px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.8em;
}

.newssection2-contents h4{
  font-size: 20px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
 line-height: 1.8em;
}
.newssection2-contents h5{
  font-size: 18px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.8em;
}

.newssection2-contents h5{
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.8em;
}

.newssection2-contents h6{
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.8em;
}

.newssection2-contents b{
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  color: #333333;
  line-height: 1.8em;
}

.newssection2-contents a{
  font-family: "Shippori Mincho", serif;
  color: #333333;
  line-height: 1.8em;
}

.newssection2-contents a:hover{
  opacity: .5;
  transition: .5s;
}


.faqsection1 {
  display: flex;
  position: relative;
  padding: 168px 16% 0;
  max-width: 1500px;
  margin: 0 auto;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.faqsection1 {
  display: flex;
  position: relative;
  padding: 168px 8% 0;
  max-width: 1500px;
  margin: 0 auto;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.faqsection1 {
  display: block;
  position: relative;
  padding: 104px 8% 0;
  max-width: 1500px;
  margin: 0 auto;
}

.faqsection1 h3{
  line-height: 1em;
}
}

.faqsection2-left {
  width: 250px;
  position: fixed;
  opacity: 1;
  transition:
    opacity 0.1s ease,
    transform 0.1s ease;
  z-index: 10;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.faqsection2-left {
  width: 100%;
  position:sticky;
  opacity: 1;
  transition:
    opacity 0.1s ease,
    transform 0.1s ease;
  z-index: 10;
}
}

.faqsection2-left.fade-out {
  opacity: 0;
  transform: translateY(10px); /* ほんの少しだけ下にズラすと自然 */
  pointer-events: none;
}

.faqsection2-left-title {
  background: linear-gradient(
    135deg,                             /* 左上 → 右下 */
    #F5F3ED 0%,                        /* 左上：不透明 */
    rgba(246, 244, 238, 0) 50%,        /* 中央：透明（#F6F4EEを透明に） */
    #F5F3ED 100%                       /* 右下：不透明 */
  );
  padding: 32px;
  list-style: none;
  margin-top: 32px;
}

.faqsection2-left-title li{
  list-style: none;
  margin-bottom: 40px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.faqsection2-left-title li{
  list-style: none;
  margin-bottom: 24px;
}
}

.faqsection2-left-title li a{
  color: #333333;
  text-decoration: none;
  border-bottom: solid 1px #33333312;
  padding-bottom: 12px;
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.faqsection2-left-title li a{
  color: #333333;
  text-decoration: none;
  border-bottom: solid 1px #33333312;
  padding-bottom: 8px;
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}
}

.faqsection2-left-title li a:hover{
  opacity: .5;
  transition: .5s;
}

.faqsection2-right {
  margin-left: 360px;
  flex: 1;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.faqsection2-right {
  margin-left: 0;
  flex: 1;
}
}

.faqsection2-right h3{
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  margin: 80px 0 24px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.faqsection2-right h3{
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  margin: 64px 0 24px;
}

}


.faq-item {
  border-bottom: 1px solid #33333319;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  font-size: 14px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding-right: 40px;
  display: flex;
  align-items: center;
}

.faq-question p{
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  margin-left: 8px;
}

.faq-question img{
  width: 35px;
}

/* + / - 表示 */
.faq-question::after {
  content: "＋";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px; /* ← 固定幅で横ズレ防止 */
  display: inline-block;
  text-align: center;
  color: #333333;
}

.faq-item.active .faq-question::after {
  content: "−";
}

/* アコーディオン部分 */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.2s ease, padding 0.4s ease;
  display: flex;
  align-items: center;
}

.faq-answer p{
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  margin-left: 5px;
}

.faq-answer p a{
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.faq-answer p{
  font-size: 12px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  margin-left: 5px;
}

.faq-answer p a{
  font-size: 12px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
}

}

.faq-answer p a:hover{
  opacity: .5;
  transition: .5s;
}

.faq-answer img{
  width: 35px;
}

/* アクティブ時：開く */
.faq-item.active .faq-answer {
  max-height: 500px; /* 必要な最大の高さにしておく */
  padding: 0 0 24px;
}

.faqsection2{
  margin: 104px 16% 80px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.faqsection2{
  margin: 64px 8% 40px;
}
}

.faqsection2 a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  background-image: url("img/faq-1.png"); /* 画像パスを指定 */
  background-size: cover;              /* セクションに合わせて拡大縮小 */
  background-position: center;         /* 中央に配置 */
  background-repeat: no-repeat;        /* 繰り返しなし */
  padding: 4% 8%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.faqsection2 a{
  display: block;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  background-image: url("img/faq-1.png"); /* 画像パスを指定 */
  background-size: cover;              /* セクションに合わせて拡大縮小 */
  background-position: center;         /* 中央に配置 */
  background-repeat: no-repeat;        /* 繰り返しなし */
  padding: 10% 8%;
}
}

.faqsection2 a:hover{
  background-image:none; 
  transition: .9s;
  background-color: #F6EFE8;
}

.faqsection2 a li{
  list-style: none;
}

.faqsection2 a li:nth-child(1){
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  line-height:2em;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.faqsection2 a li:nth-child(1){
  font-size: 12px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  line-height:1.8em;
}
}

.faqsection2 a li:nth-child(2){
  height: 140px;
  width: 1px;
  background-color: #33333319;
  display: inline;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.faqsection2 a li:nth-child(2){
  height: 1px;
  width: 100%;
  background-color: #33333319;
  display: block;
  margin: 16px 0 24px;
}
}


.faqsection2 a li:nth-child(3){
  display: flex;
  align-items: center;
  text-align: center;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.faqsection2 a li:nth-child(3){
  display: flex;
  align-items: center;
  text-align: left;
  justify-content:space-between
}
}

.aqsection2-link h3{
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
}

.aqsection2-link h4{
  font-size: 50px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  color: #333333;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.aqsection2-link h4{
  font-size: 40px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  color: #333333;
  letter-spacing: 1px;
  margin-top: 4px;
}
}

.aqsection2-link{
  margin-right: 40px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.aqsection2-link{
  margin-right: 0;
}
}

.faqsection2 a li:nth-child(3) p{
  font-size: 20px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 100;
  color: #333333;
}

.contactsection1{
  margin: 240px auto;
  position: relative;
  max-width: 1500px;
  padding: 0 12%;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.contactsection1{
  margin: 240px auto;
  position: relative;
  max-width: 1500px;
  padding: 0 8%;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.contactsection1{
  margin: 104px auto;
  position: relative;
  max-width: 1500px;
  padding: 0 8%;
}
}

.contactsectiontitle h2{
  font-size: 12px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.contactsectiontitle h2{
  font-size: 10px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
}
}

.contactsectiontitle h3{
  font-size: 30px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  color: #333333;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.contactsectiontitle h3{
  font-size: 50px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  color: #333333;
  letter-spacing: 1px;
  margin-bottom: 24px;
  line-height: 1em;
}
}

.contactsectiontitle p{
  display: flex;
  align-items: center;
  line-height: 1.8em;
  width: 30%;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.contactsectiontitle p{
  display: flex;
  align-items: center;
  line-height: 1.8em;
  width: 40%;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.contactsectiontitle p{
  display: flex;
  align-items: center;
  line-height: 2em;
  width: 100%;
}
}

.contactsectiontitle p img{
  width: 20px;
}

.contactsection1-line{
  width: 100%;
  height: 1px;
  background-color: #33333312;
  margin: 40px 0;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.contactsection1-line{
  width: 100%;
  height: 1px;
  background-color: #33333312;
  margin: 142px 0 40px;
}
}

.contactsectiontitle a{
  text-decoration: none;
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  display: flex;
  justify-content: flex-end;
  width: 20%;
  margin-left: 80%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.contactsectiontitle a{
  text-decoration: none;
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-left: 0;
}
}

.contactsectiontitle a:hover{
  opacity: .5;
  transition: .5s;
}

.contactsection1-img {
  position: absolute;
  top: 90%;
  left: 60%;
  transform: translate(-50%, -50%);
  z-index: 1; /* 重なり順（必要に応じて調整） */
}

.contactsection1-img img {
  width: 400px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.contactsection1-img img {
  width: 300px;
  max-width: 100%;
  height: auto;
  display: block;
}

}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.contactsection1-img {
  position: absolute;
  top: 90%;
  left:20%;
  transform: translate(-50%, -50%);
  z-index: 1; /* 重なり順（必要に応じて調整） */
}

.contactsection1-img img {
  width: 200px;
  max-width: 100%;
  height: auto;
  display: block;
}
}


.policysectiontitle{
  margin: 0 auto;
  text-align: center;
  max-width: 1500px;
  padding: 168px 20% 40px;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.policysectiontitle{
  margin: 0 auto;
  text-align: center;
  max-width: 1500px;
  padding: 168px 8% 40px;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.policysectiontitle{
  margin: 0 auto;
  text-align: center;
  max-width: 1500px;
  padding: 104px 8% 24px;
}
}

.policysectiontitle h3{
  font-size: 12px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  color: #333333;
  letter-spacing: 1px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.policysectiontitle h3{
  font-size: 10px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  color: #333333;
  letter-spacing: 1px;
  margin-bottom: 4px;
  text-transform: uppercase;
}
}

.policysectiontitle h2{
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
}

.policysection1{
  margin: 0 auto 80px;
  max-width: 1500px;
  padding: 0 24%;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.policysection1{
  margin: 0 auto 80px;
  max-width: 1500px;
  padding: 0 14%;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.policysection1{
  margin: 0 auto 40px;
  max-width: 1500px;
  padding: 0 8%;
}
}

.policytitle{
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  margin-top: 40px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.policytitle{
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  margin-top: 24px;
}
}

.policytitle h6{
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
}

.policytitle img{
  width: 18px;
  margin-right: 4px;
}

.policysection1 p{
  line-height: 1.8em;
  font-size: 13px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
}

.policysection1 p a{
  line-height: 1.8em;
  font-size: 13px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.policysection1 p{
  line-height: 1.8em;
  font-size: 12px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
}

.policysection1 p a{
  line-height: 1.8em;
  font-size: 12px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333333;
}
}

.policysection1 p a:hover{
  opacity: .5;
  transition: .5s;
}


