@charset "UTF-8";
@font-face {
  font-family: "ZatsuTegaki";
  src: url("../fonts/851tegaki_zatsu_normal_0883.ttf") format("truetype");
}
html {
  font-size: 100%;
}

body {
  color: #333;
  font-family: "Noto Sans JP", serif;
  letter-spacing: 0.05em;
  background-color: #FFFFFD;
}
@media screen and (max-width: 960px) {
  body {
    font-size: 0.875rem;
    letter-spacing: 0em;
  }
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

ul {
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
  display: inline-block;
}

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 2%;
}
@media screen and (max-width: 960px) {
  .container {
    padding: 0 4%;
  }
}

.fukidashi-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  margin-top: 30px;
  text-align: center;
}

.fukidashi-1::before {
  content: "";
  width: 20px;
  height: 2px;
  transform: rotate(60deg);
  box-sizing: border-box;
  background-color: #333333;
}

.fukidashi-1::after {
  content: "";
  width: 20px;
  height: 2px;
  transform: rotate(-60deg);
  box-sizing: border-box;
  background-color: #333333;
}

.sec-title {
  text-align: center;
}
.sec-title h4 {
  font-size: 1.25rem;
  font-weight: normal;
  letter-spacing: 0.1em;
}
.sec-title p {
  margin-top: 10px;
}

.sp-only {
  display: none;
}
@media screen and (max-width: 960px) {
  .sp-only {
    display: block;
  }
}

.mv {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
}
.mv .logo {
  line-height: 0;
  position: absolute;
  top: 3%;
  left: 2%;
  z-index: 20;
}
.mv .logo img {
  width: 120px;
}
.mv h1 {
  position: absolute;
  top: 60%;
  left: 7%;
  font-size: 2.25rem;
  letter-spacing: 0.2em;
  font-weight: normal;
  line-height: 1.8;
  z-index: 10;
  color: black;
  opacity: 0;
  -webkit-animation: fadeIn 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: fadeIn 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
@media screen and (max-width: 960px) {
  .mv h1 {
    top: 50%;
    font-size: 1.5rem;
  }
}
.mv p {
  position: absolute;
  top: 70%;
  left: 7%;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  font-weight: normal;
  z-index: 10;
  color: black;
  opacity: 0;
  -webkit-animation: fadeIn 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: fadeIn 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.mv .mv-img {
  width: 80%;
  height: 100%;
  margin-left: auto;
  -webkit-animation: fadeIn 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: fadeIn 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.mv .mv-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fixed-btn {
  position: fixed;
  right: 30px;
  /* 右からの余白 */
  bottom: 30px;
  /* 下からの余白 */
  width: 130px;
  /* ボタンのサイズ（必要に応じて調整） */
  z-index: 9999;
  /* 最前面に表示 */
  -webkit-animation: poyopoyo 2s ease-out infinite;
          animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
@media screen and (max-width: 960px) {
  .fixed-btn {
    width: 90px;
  }
}

.fixed-btn.is-hide {
  opacity: 0;
  pointer-events: none;
}

.fixed-btn img {
  width: 100%;
  display: block;
}

@-webkit-keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
.sub-catch {
  margin-top: 120px;
  text-align: center;
  margin-bottom: 120px;
}
.sub-catch h3 {
  font-weight: normal;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 960px) {
  .sub-catch h3 {
    letter-spacing: 0.05em;
  }
}
.sub-catch .sp-only {
  display: none;
}
@media screen and (max-width: 960px) {
  .sub-catch .sp-only {
    display: block;
  }
}

.group {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 80px;
}
@media screen and (max-width: 960px) {
  .group {
    gap: 20px;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  /* 親要素に対して中央寄せ */
}

.arrow {
  position: relative;
  width: 25px;
  height: 25px;
  content: "";
  background: #F67D00;
  border-radius: 50%;
  transform: translateY(1px);
  transition: all 0.3s ease;
  margin-right: 3px;
}

.arrow::before {
  position: absolute;
  top: 50%;
  left: 45%;
  width: 5px;
  height: 5px;
  content: "";
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.btn:hover .arrow {
  transform: translateY(1px) scale(1.5);
  /* ← 1.5倍に拡大 (約30px相当) */
}

.notice {
  margin-left: 0.5em;
  line-height: 1.2em;
  color: #323232;
  transform: translate(0, 0.1em);
}

.problem {
  margin-bottom: 100px;
  overflow-x: hidden;
}
.problem .problem-bg {
  background-color: #F5F5F5;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}
.problem .problem-bg h4 {
  text-align: center;
  margin-bottom: 50px;
  font-weight: normal;
  font-size: 1.25rem;
}
@media screen and (max-width: 960px) {
  .problem .problem-bg h4 {
    font-size: 1.125rem;
  }
}
.problem .problem-bg .problem-contents {
  width: 60%;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 20px;
  padding: 5% 5%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.problem .problem-bg .problem-contents ul li {
  margin-bottom: 15px;
  padding-left: 16px;
  position: relative;
}
.problem .problem-bg .problem-contents ul li:last-child {
  margin-bottom: 0;
}
.problem .problem-bg .problem-contents ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  background: #333;
  border-radius: 50%;
  transform: translateY(-50%);
}
.problem .problem-bg .problem-contents .problem-img img {
  width: 180px;
}
@media screen and (max-width: 960px) {
  .problem .problem-bg .problem-contents {
    flex-direction: column;
    width: 85%;
  }
  .problem .problem-bg .problem-contents .problem-img {
    margin-top: 30px;
    margin-left: auto;
  }
  .problem .problem-bg .problem-contents .problem-img img {
    width: 160px;
  }
}
.problem .problem-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  border-top: 50px solid #F5F5F5;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  overflow-x: hidden;
}
.problem .fukidashi-1 {
  margin-top: 90px;
  gap: 30px;
  line-height: 1.8;
}
.problem .fukidashi-1 p {
  background: linear-gradient(transparent calc(100% - 8px), #feb163 calc(100% - 8px));
  font-size: 1.375rem;
}
.problem .fukidashi-1::before,
.problem .fukidashi-1::after {
  width: 30px;
}
.problem .problem-text {
  margin-top: 30px;
  text-align: center;
}
.problem .problem-text p {
  line-height: 2;
  font-size: 1.125rem;
}
.problem .problem-text span {
  background: linear-gradient(transparent calc(100% - 4px), #feb163 calc(100% - 4px));
}
@media screen and (max-width: 960px) {
  .problem .fukidashi-1 p {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 960px) and (max-width: 960px) {
  .problem .fukidashi-1 span {
    font-size: 1.25rem;
    background: linear-gradient(transparent calc(100% - 8px), #feb163 calc(100% - 8px));
  }
}
@media screen and (max-width: 960px) {
  .problem .problem-text p {
    font-size: 1rem;
  }
}

.reason {
  background-color: #F7F0DC;
  padding-top: 50px;
  padding-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .reason .container {
    padding: 0;
  }
}
.reason .point {
  max-width: 1000px;
  margin-top: 30px;
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-inline: auto;
}
@media screen and (max-width: 960px) {
  .reason .point {
    flex-direction: column;
  }
}
.reason .point .point-content {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  width: 33.3333333333%;
}
.reason .point .point-content .point-name {
  color: #F67D00;
  font-weight: bold;
  text-align: left;
}
.reason .point .point-content .point-name span {
  font-family: "Bilbo Swash Caps";
  font-size: 2.25rem;
  font-weight: normal;
  padding-left: 5px;
}
.reason .point .point-content img {
  width: 150px;
  height: 150px;
}
.reason .point .point-content .point-title {
  margin-top: 0px;
  height: 80px;
  font-size: 1rem;
}
.reason .point .point-content .point-title .pc-only {
  display: inline;
}
.reason .point .point-content .point-text {
  font-size: 0.875rem;
  margin-top: 10px;
  width: 80%;
  text-align: left;
  margin-inline: auto;
}
.reason .point .point-content .point-text span {
  font-weight: bold;
}
@media screen and (max-width: 960px) {
  .reason .point .point-content {
    width: 95%;
    border-radius: 0 20px 20px 0;
    padding: 10px;
    padding-left: 20px;
  }
  .reason .point .point-content .point-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .reason .point .point-content .point-inner img {
    margin-left: 10px;
    width: 100px;
    height: 100px;
    margin-top: 10px;
  }
  .reason .point .point-content .point-inner .inner2 {
    margin-bottom: 10px;
  }
  .reason .point .point-content .point-inner .point-title {
    margin-bottom: 20px;
    height: auto;
  }
  .reason .point .point-content .point-inner .point-text {
    font-size: 0.75rem;
    margin-top: 0;
    width: 90%;
  }
}
@media screen and (max-width: 960px) {
  .reason .point .point-content {
    opacity: 0;
  }
  .reason .point .point1,
.reason .point .point3 {
    margin-right: auto;
  }
  .reason .point .point2 {
    margin-left: auto;
    border-radius: 20px 0 0 20px;
  }
  .reason .point .slide-left {
    -webkit-animation: slide-left 0.5s ease-out 0s 1 forwards;
            animation: slide-left 0.5s ease-out 0s 1 forwards;
  }
  @-webkit-keyframes slide-left {
    0% {
      transform: translateX(-50%);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes slide-left {
    0% {
      transform: translateX(-50%);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .reason .point .slide-right {
    -webkit-animation: slide-right 0.5s ease-out 0s 1 forwards;
            animation: slide-right 0.5s ease-out 0s 1 forwards;
  }
  @-webkit-keyframes slide-right {
    0% {
      transform: translateX(50%);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes slide-right {
    0% {
      transform: translateX(50%);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

.studio {
  margin-top: 80px;
  margin-bottom: 100px;
  position: relative;
}
.studio .sikaku img {
  position: absolute;
  width: 180px;
  z-index: -1;
}
.studio .sikaku img:nth-child(1) {
  top: 5%;
  left: 8%;
}
.studio .sikaku img:nth-child(2) {
  top: 50%;
  right: 8%;
}
.studio .sikaku img:nth-child(3) {
  bottom: 2%;
  left: 4%;
}
@media screen and (max-width: 960px) {
  .studio .sikaku img {
    width: 100px;
  }
  .studio .sikaku img:nth-child(1) {
    top: 2%;
    left: 8%;
  }
  .studio .sikaku img:nth-child(2) {
    top: 35%;
    right: 8%;
  }
  .studio .sikaku img:nth-child(3) {
    bottom: 1%;
    left: 6%;
  }
}
.studio .btn {
  margin-top: 100px;
}

.studio-contents {
  margin-top: 80px;
}

.studio-title {
  margin-top: 50px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.125rem;
}

.wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  position: relative;
  overflow: visible;
}

.swiper {
  max-width: 600px;
  overflow: visible;
}

/* 矢印ボタンの共通デザイン */
.swiper-button-prev,
.swiper-button-next {
  width: 50px !important;
  /* ボタンの外枠サイズ */
  height: 50px !important;
  border: 1px solid #333;
  /* 丸枠の色 */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  /* デフォルトを上書き */
}

/* 矢印本体（アイコン）のカスタム） */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px !important;
  /* 矢印の大きさ */
  color: #333;
  /* 矢印の色 */
}

/* 前への矢印 */
.swiper-button-prev {
  left: -80px !important;
}

/* 次への矢印 */
.swiper-button-next {
  right: -80px !important;
}

@media (max-width: 960px) {
  .swiper-button-next,
.swiper-button-prev,
.swiper-button-next::after,
.swiper-button-prev::after {
    display: none !important;
  }
}
/* ページネーション */
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -20px !important;
}

.swiper-pagination-bullet-active {
  background-color: #F67D00 !important;
}

.swiper-slide img {
  height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

figcaption {
  margin-top: 10px;
}

.studio-text {
  max-width: 600px;
  margin-inline: auto;
  margin-top: 50px;
}
@media (max-width: 960px) {
  .studio-text {
    padding: 0 1%;
  }
}

.price-schedule {
  background-color: #F7F0DC;
  padding-top: 100px;
  padding-bottom: 100px;
}
.price-schedule .items {
  display: flex;
  gap: 80px;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 80px;
}
.price-schedule .items .item {
  background-color: #FFFFFD;
  width: 35%;
  padding: 50px 40px;
  box-shadow: 6px 6px 1px 0px rgba(17, 17, 26, 0.08);
}
.price-schedule .items .item p {
  padding-bottom: 5px;
}
.price-schedule .items .item .item-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.price-schedule .items .item .item-title::before {
  content: "";
  width: 40px;
  height: 1.5px;
  background-color: #333;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}
.price-schedule .items .price dl .price-list {
  display: flex;
  gap: 20px;
}
.price-schedule .items .price .note {
  margin-top: 30px;
}
.price-schedule .items .schedule .item-title::before {
  width: 64px;
}
.price-schedule .items .schedule .content {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  margin-bottom: 25px;
}
.price-schedule .items .schedule .schedule-link {
  color: #333;
  text-decoration: none;
}
.price-schedule .items .schedule .schedule-link::after {
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  margin: 0 0.3em 0em;
  content: "";
  border-right: 0.2em solid #F67D00;
  border-bottom: 0.2em solid #F67D00;
  transform: rotate(-45deg);
}
.price-schedule .items .schedule .schedule-link:hover {
  opacity: 0.6;
}
@media screen and (max-width: 960px) {
  .price-schedule .items {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .price-schedule .items .item {
    width: 90%;
  }
  .price-schedule .items .item .content {
    width: 80%;
    margin-inline: auto;
  }
}

/* モーダル */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  background-color: rgba(120, 123, 131, 0.8);
}

/* モーダルがactiveの時 */
.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* モーダル背景のオーバーレイ部分 */
.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* モーダルのコンテンツ */
.modal__content {
  position: relative;
  width: auto;
  max-width: 1000px;
  max-height: 100vh;
  padding: 0;
}

/* モーダルを閉じるボタン */
.modal__close-btn {
  position: fixed;
  right: 50px;
  top: 70px;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #ccc;
  cursor: pointer;
  z-index: 10;
}
@media screen and (max-width: 960px) {
  .modal__close-btn {
    top: 30px;
    right: 10px;
  }
}

.modal__slider {
  /* 前への矢印 */
  /* 次への矢印 */
}
.modal__slider .swiper-button-prev {
  left: 80px !important;
}
.modal__slider .swiper-button-next {
  right: 80px !important;
}

.modal__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  width: 100%;
  text-align: center;
}

.modal__slide img {
  width: 500px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Swiperの矢印部分 */
@media (max-width: 960px) {
  .modal .swiper-button-next,
.modal .swiper-button-prev {
    display: none;
  }
  .modal__slide img {
    max-width: 300px;
  }
}
.voice {
  margin-top: 80px;
  position: relative;
  /* 前への矢印 */
  /* 次への矢印 */
  /* ページネーション */
}
.voice .fukidashi-wrap {
  position: absolute;
  left: 7%;
  top: 3%;
}
@media (max-width: 960px) {
  .voice .fukidashi-wrap {
    left: 2%;
    top: 7%;
  }
}
.voice .voice-contents {
  margin-top: 100px;
  max-width: 700px;
  margin-inline: auto;
}
.voice .voice-contents .content {
  display: flex;
  margin-top: 40px;
  justify-content: space-between;
  padding: 0 2px;
  width: 98%;
}
.voice .voice-contents .content .image {
  text-align: center;
  width: 30%;
}
.voice .voice-contents .content .image p {
  font-size: 0.75rem;
  margin-top: 5px;
}
.voice .voice-contents .content .image img {
  width: 160px;
}
.voice .voice-contents .content .comment {
  width: 67%;
}
@media (max-width: 960px) {
  .voice .voice-contents .content {
    flex-direction: column;
  }
  .voice .voice-contents .content .image {
    margin-inline: auto;
  }
  .voice .voice-contents .content .comment {
    width: 100%;
  }
  .voice .voice-contents .content2 {
    flex-direction: column-reverse;
  }
}
.voice .swiper6 .voice-contents img {
  height: auto;
}
.voice .swiper-button-prev {
  left: 100px !important;
}
.voice .swiper-button-next {
  right: 100px !important;
}
.voice .swiper-horizontal > .swiper-pagination-bullets,
.voice .swiper-pagination-bullets.swiper-pagination-horizontal,
.voice .swiper-pagination-custom,
.voice .swiper-pagination-fraction {
  display: none;
}
@media (max-width: 960px) {
  .voice .swiper-button-next,
.voice .swiper-button-prev {
    display: none;
  }
  .voice .swiper-horizontal > .swiper-pagination-bullets,
.voice .swiper-pagination-bullets.swiper-pagination-horizontal,
.voice .swiper-pagination-custom,
.voice .swiper-pagination-fraction {
    display: block;
    bottom: -60px !important;
  }
}

.fukidashi-3 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 18px 18px;
  border: 1.5px solid #333;
  border-radius: 10px;
  margin-top: 20px;
  font-size: 0.875rem;
}

.fukidashi-3::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  background-color: #fff;
  /* 背景色と同じ色を指定 */
  rotate: 135deg;
  translate: -50%;
}

.fukidashi-3::after {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  border: 1.5px solid;
  border-color: transparent #333 #333 transparent;
  rotate: 135deg;
  translate: -50%;
}

.content2 {
  margin-top: 50px;
}
.content2 .fukidashi-3::before {
  left: auto;
  right: -8px;
  background-color: #fff;
}
.content2 .fukidashi-3::after {
  left: auto;
  right: -10px;
  border-color: #333 transparent transparent #333;
}

.fukidashi-2 {
  position: relative;
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  border: 1px solid #333333;
  border-radius: 50%;
  text-align: center;
  font-size: 0.75rem;
}

.fukidashi-2::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 70px;
  width: 15px;
  height: 15px;
  transform: rotate(135deg);
  box-sizing: border-box;
  background-color: #ffffff;
}

.fukidashi-2::after {
  content: "";
  position: absolute;
  top: 102%;
  left: 68px;
  width: 30px;
  height: 1px;
  transform: rotate(50deg);
  box-sizing: border-box;
  background-color: #333333;
}

.fukidashi-2 > .ornament {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translateX(3px) translateY(3px);
  /* 位置をややズラす */
  border-radius: 50%;
  background-color: #FFC387;
  pointer-events: none;
  /* クリック不可にする（下のテキストに触れるように） */
  mix-blend-mode: multiply;
  /* 乗算 */
}

@media (max-width: 960px) {
  .fukidashi-2 {
    width: 90px;
    height: 90px;
    font-size: 0.625rem;
  }
  .fukidashi-2::before {
    bottom: 0px;
  }
  .fukidashi-2::after {
    top: 96%;
    left: 68px;
    width: 30px;
  }
  .fukidashi-3::before {
    left: 50%;
    top: -1px;
  }
  .fukidashi-3::after {
    left: 50%;
    top: -2px;
    border-color: transparent transparent #333 #333;
  }
  .content2 .fukidashi-3::before {
    left: 50%;
    top: -1px;
  }
  .content2 .fukidashi-3::after {
    left: 50%;
    top: -2px;
    border-color: transparent transparent #333 #333;
  }
}
.flow {
  margin-top: 150px;
  margin-bottom: 100px;
}
.flow .steps {
  width: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 60px;
}
.flow .steps span {
  align-self: center;
  padding-bottom: 60px;
  font-size: 1.125rem;
}
.flow .steps .step {
  width: 20%;
}
.flow .steps .circle {
  width: 100px;
  height: 100px;
  text-align: center;
  background-color: #FFD592;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}
.flow .steps .circle p {
  font-size: 0.625rem;
}
.flow .steps .step-title {
  font-size: 0.875rem;
  color: #F67D00;
  margin-bottom: 5px;
  text-align: center;
}
.flow .steps .step-text {
  font-size: 0.875rem;
  width: 80%;
  margin-inline: auto;
  margin-top: 8px;
}
@media (max-width: 960px) {
  .flow .steps {
    flex-direction: column;
  }
  .flow .steps span {
    display: none;
  }
  .flow .steps .step {
    width: 90%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
  }
  .flow .steps .step .step-sp {
    margin-left: 20px;
  }
}
.flow .flow-text {
  text-align: center;
  font-size: 1.125rem;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (max-width: 960px) {
  .flow .flow-text {
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 50px;
  }
}

.qa {
  background-color: #F7F0DC;
  padding-top: 100px;
  padding-bottom: 100px;
}

.qa-wrapper {
  background-color: #FFFFFD;
  padding: 5%;
  border-radius: 20px;
  max-width: 96%;
  margin-inline: auto;
}
.qa-wrapper .btn {
  margin-bottom: 40px;
}

.qa-contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-top: 40px;
  margin-bottom: 70px;
}

.qa-1 {
  margin-bottom: 7px;
  border: 1px solid #d6dde3;
  border-radius: 10px;
  width: 30%;
}

.qa-1 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em 1em 3em;
  color: #333333;
  cursor: pointer;
}

.qa-1 summary::before,
.qa-1 p::before {
  position: absolute;
  left: 1em;
  font-size: 1.3em;
}

.qa-1 summary::before {
  color: #333;
  content: "Q";
}

.qa-1 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid rgba(51, 51, 51, 0.7019607843);
  border-right: 3px solid rgba(51, 51, 51, 0.7019607843);
  content: "";
  transition: transform 0.5s;
}

.qa-1[open] summary::after {
  transform: rotate(225deg);
}

.qa-1 p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 3em 1.5em;
  color: #333;
  transition: transform 0.5s, opacity 0.5s;
}

.qa-1[open] p {
  transform: none;
  opacity: 1;
}

.qa-1 p::before {
  color: #F67D00;
  line-height: 1.2;
  content: "A";
}

@media (max-width: 960px) {
  .qa-contents {
    flex-direction: column;
    flex-wrap: nowrap;
    margin-bottom: 40px;
  }
  .qa-1 {
    width: 100%;
  }
}
.loop {
  margin-top: 80px;
  margin-bottom: 80px;
  overflow: hidden;
  /* スライドの動き等速 */
  /* 画像のサイズ調整 */
}
.loop .swiper-wrapper {
  transition-timing-function: linear;
}
.loop .swiper-slide {
  width: 230px;
  flex-shrink: 0;
}
.loop .swiper-slide img {
  height: 230px;
  width: 230px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 960px) {
  .loop {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .loop .swiper-slide {
    width: 120px;
  }
  .loop .swiper-slide img {
    width: 120px;
    height: 120px;
  }
}

.last-cta {
  background-color: #F7F0DC;
  padding-top: 80px;
  padding-bottom: 80px;
}
.last-cta .message {
  text-align: center;
}
.last-cta .message p {
  margin-bottom: 30px;
  font-size: 1.125rem;
}
@media (max-width: 960px) {
  .last-cta .message p {
    margin-bottom: 15px;
  }
  .last-cta .message .message-2 {
    line-height: 1.8;
  }
}
.last-cta .last-btn {
  text-align: center;
  margin-top: 40px;
}
.last-cta .last-btn a.btn--orange {
  color: #fff;
  background-color: #F67D00;
  border-bottom: 5px solid #b84c00;
  padding: 10px 30px;
  border-radius: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.last-cta .last-btn a.btn--orange:hover {
  transform: translateY(3px);
  box-shadow: none;
}
.last-cta .last-btn a.btn--shadow {
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

footer {
  padding-top: 80px;
  padding-bottom: 30px;
  position: relative;
}
footer .footer {
  width: 90%;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-inline: auto;
}
footer .footer .footer-nav {
  display: flex;
  align-items: center;
  gap: 50px;
  font-size: 0.75rem;
  margin-right: 80px;
}
footer .footer .footer-nav img {
  width: 25px;
}
@media (max-width: 960px) {
  footer .footer .footer-nav {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-right: 20px;
  }
  footer .footer .footer-nav a {
    font-size: 0.75rem;
  }
  footer .footer .footer-nav li:hover {
    opacity: 0.8;
  }
}
footer .footer .footer-logo img {
  width: 100px;
}
footer .copylight {
  font-size: 0.5rem;
  text-align: center;
  margin-top: 30px;
}
footer button {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 80px;
  right: 20px;
  bottom: -180px;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  border: 0;
  background: #ffaf5f;
  transition: 0.2s;
  letter-spacing: 3px;
  font-weight: bold;
  border-radius: 100px 100px 0 0;
}
footer button:hover {
  transform: scale(1.05);
}
footer button i {
  position: absolute;
  font-size: 30px;
  color: #FFF;
  top: 15px;
  font-weight: 300;
}
footer button p {
  margin: 0;
  font-size: 13px;
  bottom: 13px;
  position: absolute;
}
footer .is-active {
  opacity: 1;
  visibility: visible;
}
footer button.is-active {
  bottom: 0px;
}
@media (max-width: 960px) {
  footer button {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */