@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Cormorant Garamond", serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

li {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

a, span {
  display: inline-block;
}

button {
  color: #000;
  background: transparent;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.pc {
  display: block;
}
@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 767px) {
  .sp {
    display: block;
  }
}

.lg {
  display: none;
}
@media (max-width: 1100px) {
  .lg {
    display: block;
  }
}

body {
  color: #333;
  background: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
}

html,
body {
  overflow-x: hidden;
}

.inner {
  width: 1270px;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 767px) {
  .inner {
    width: 100%;
    padding-inline: 20px;
  }
}

.section-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Cormorant Garamond", serif;
  color: #333;
  font-size: 96px;
  font-weight: 700;
  line-height: 160%;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 48px;
  }
}

.section-title-sub {
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
  color: #c6bdd8;
}

.animation-fade {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.animation-fade.is-show {
  opacity: 1;
}

.animation-left {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  opacity: 0;
  transition: opacity 0.8s ease, -webkit-clip-path 0.8s ease;
  transition: clip-path 0.8s ease, opacity 0.8s ease;
  transition: clip-path 0.8s ease, opacity 0.8s ease, -webkit-clip-path 0.8s ease;
  will-change: clip-path, opacity;
}
.animation-left.is-show {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  opacity: 1;
}

.animation-right {
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
  opacity: 0;
  transition: opacity 0.8s ease, -webkit-clip-path 0.8s ease;
  transition: clip-path 0.8s ease, opacity 0.8s ease;
  transition: clip-path 0.8s ease, opacity 0.8s ease, -webkit-clip-path 0.8s ease;
  will-change: clip-path, opacity;
}
.animation-right.is-show {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  opacity: 1;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
  padding-block: 10px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
  color: #fff;
  z-index: 9999;
  transition: all 0.3s ease;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 4px 20px 0px rgba(41, 54, 57, 0.1);
  padding-block: 24px;
  color: #333;
}

.header-inner {
  padding-inline: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1100px) {
  .header-inner {
    padding-inline: 40px;
  }
}
@media (max-width: 767px) {
  .header-inner {
    padding-inline: 16px;
  }
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-logo img {
  width: 250px;
}
@media (max-width: 767px) {
  .header-logo img {
    width: 150px;
  }
}

.header-nav {
  display: flex;
  align-items: center;
  -moz-column-gap: 48px;
       column-gap: 48px;
}
@media (max-width: 1100px) {
  .header-nav {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media (max-width: 767px) {
  .header-nav {
    display: none;
  }
}

.header-list {
  display: flex;
  align-items: center;
  -moz-column-gap: 48px;
       column-gap: 48px;
}
@media (max-width: 1100px) {
  .header-list {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.header-list .header-list li {
  position: relative;
  display: inline-block;
  padding: 5px 0;
}
.header-list li a {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  color: #333;
  line-height: 120%;
  text-decoration: none;
  position: relative;
  display: inline-block;
}
@media (max-width: 1100px) {
  .header-list li a {
    font-size: 20px;
  }
}

.header-list li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  height: 1px;
  background-color: #333;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease, width 0.3s ease;
}

.header-list li:hover a::after {
  width: 100%;
  transform: translateX(-50%) scaleX(1);
}

.header-contact {
  width: 3.75rem;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .header-contact:hover {
    opacity: 0.7;
  }
}

.header-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #333;
  padding: 4px;
}
@media (min-width: 768px) {
  .header-icon {
    display: none;
  }
}
.header-icon .header-icon-bar-wrap {
  width: 100%;
  height: 100%;
  padding-inline: 9px 7px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 2px;
}
.header-icon .header-icon-bar1 {
  width: 8px;
  height: 1px;
  background: #fff;
}
.header-icon .header-icon-bar2 {
  width: 8px;
  height: 1px;
  background: #fff;
}
.header-icon .header-icon-bar3 {
  width: 6px;
  height: 1px;
  background: #fff;
}

@media (max-width: 767px) {
  .header.is-drawer-open {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0px 4px 20px 0px rgba(41, 54, 57, 0.1);
    transition: all 0.3s ease;
  }
  .header.is-drawer-open .header-logo a {
    color: #333;
  }
  .header.is-drawer-open .header-icon {
    border: 1px solid #fff;
  }
  .header.is-drawer-open .header-icon-bar1 {
    width: 8px;
    background: #fff;
    rotate: 45deg;
    translate: -1px 1.5px;
  }
  .header.is-drawer-open .header-icon-bar2 {
    display: none;
  }
  .header.is-drawer-open .header-icon-bar3 {
    width: 8px;
    background: #fff;
    rotate: -45deg;
    translate: -1px -1.5px;
  }
}
.drawer {
  position: fixed;
  z-index: 9990;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  padding-block: 106px 140px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.drawer.is-drawer-open {
  top: 0;
  opacity: 1;
  visibility: visible;
}

.drawer-inner {
  padding-inline: 47.5px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}

.drawer-list {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.drawer-list li a {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  -webkit-padding-after: 24px;
          padding-block-end: 24px;
  -webkit-border-after: 1px solid #dddddd;
          border-block-end: 1px solid #dddddd;
}

.drawer-contact {
  padding-block: 20px;
  width: 100%;
  background: #333;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 120%;
  text-align: center;
  border-radius: 2px;
}

.fv {
  position: relative;
  width: 100%;
}

.fv-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1440/810;
  margin-top: 112px;
}
@media (max-width: 767px) {
  .fv-image {
    aspect-ratio: 390/600;
    margin-top: 66px;
  }
}

.fv-swiper-container,
.swiper.fv-swiper,
.fv-swiper-wrapper {
  width: 100%;
  height: 100%;
}

.fv-swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.3);
  transition: transform 2s ease;
  margin-top: -50px;
}

.swiper-slide-active .fv-swiper-slide img {
  transform: scale(1.5);
}

.swiper-pagination.fv-pagination {
  position: absolute !important;
  top: 60% !important;
  right: 24px !important;
  width: auto !important;
  left: auto !important;
  transform: translateY(-50%) !important;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.swiper-pagination.fv-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border: 1px solid #fff;
  background: #fff;
  opacity: 1;
  border-radius: 50%;
  transition: border 0.3s;
}

.swiper-pagination.fv-pagination .swiper-pagination-bullet-active {
  background: #ff0000;
}

.fv-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #333;
  z-index: 8000;
}

@-webkit-keyframes underline-grow {
  to {
    width: 13.8888888889vw;
  }
}

@keyframes underline-grow {
  to {
    width: 13.8888888889vw;
  }
}
@-webkit-keyframes underline-grow-sp {
  to {
    width: 12.3076923077vw;
  }
}
@keyframes underline-grow-sp {
  to {
    width: 12.3076923077vw;
  }
}
.fv-title {
  display: inline-block;
  overflow: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 4.4444444444vw;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  line-height: 160%;
  opacity: 0;
  transform: translateY(30px);
  -webkit-animation: fadeUp 1s ease forwards;
          animation: fadeUp 1s ease forwards;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .fv-title {
    font-size: 6.1538461538vw;
  }
}

@-webkit-keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fv-subtitle {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 1.6666666667vw;
  color: #fff;
  line-height: 160%;
  opacity: 0;
  transform: translateY(20px);
  -webkit-animation: fadeUp 1s ease 1s forwards;
          animation: fadeUp 1s ease 1s forwards;
  text-align: center;
}
.fv-subtitle span {
  color: #fff;
}
@media (max-width: 767px) {
  .fv-subtitle {
    font-size: 3.3333333333vw;
    -webkit-padding-start: 5.3846153846vw;
            padding-inline-start: 5.3846153846vw;
  }
}

.about {
  background-image: url("/img/about-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-container {
  padding-block: 212px;
  margin: auto 0;
}
@media (max-width: 767px) {
  .about-container {
    padding-block: 80px;
  }
}

.about-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 20px;
  font-weight: 400;
  line-height: 160%;
  -webkit-margin-before: 32px;
          margin-block-start: 32px;
  display: flex;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media (max-width: 767px) {
  .about-text {
    font-size: 16px;
    -webkit-margin-before: 16px;
            margin-block-start: 16px;
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
}

.service {
  background-image: url("/img/service-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-container {
  padding-block: 80px;
  margin: auto 0;
}

.service-subtitle {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 24px;
  font-weight: 700;
  line-height: 160%;
  -webkit-margin-before: 16px;
          margin-block-start: 16px;
  display: flex;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media (max-width: 767px) {
  .service-subtitle {
    font-size: 16px;
    -webkit-margin-before: 16px;
            margin-block-start: 16px;
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
}
.service-subtitle span {
  font-weight: 400;
}

.service-cards {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  align-items: stretch;
}
@media (max-width: 1000px) {
  .service-cards {
    grid-template-columns: 1fr;
  }
}

.service-card {
  width: 100%;
  height: 100%;
  border: 1px solid #1c61a3;
  background-color: rgba(255, 255, 255, 0.7);
}

.service-card:first-child {
  position: relative;
}

.service-card:first-child::before {
  content: "おすすめ";
  position: absolute;
  top: -8px;
  left: -8px;
  background: #ff6b6b;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border: 4px solid #fff;
  border-radius: 8px;
  font-weight: bold;
}

.card-body {
  padding: 32px;
}

.card-text {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.card-product_name {
  font-family: "Noto Sans JP", sans-serif;
  color: #1c61a3;
  font-size: 24px;
  font-weight: 700;
  -webkit-margin-before: 8px;
          margin-block-start: 8px;
  text-align: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
}

.card-date {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  -webkit-margin-before: 8px;
          margin-block-start: 8px;
  text-align: center;
}

.card-price {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 42px;
  font-weight: 700;
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .card-price {
    font-size: 36px;
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
  }
}

.card-description {
  min-width: 300px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: 0 auto;
}

.card-point {
  font-family: "Noto Sans JP", sans-serif;
  color: #ff6b6b;
  font-size: 20px;
  font-weight: 700;
  -webkit-margin-before: 25px;
          margin-block-start: 25px;
}
@media (max-width: 767px) {
  .card-point {
    font-size: 16px;
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
  }
}

.card-details {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.card-detail {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
}
@media (max-width: 767px) {
  .card-detail {
    font-size: 14px;
  }
}

.service-subtext {
  font-family: "Noto Sans JP", sans-serif;
  color: #ff0000;
  font-size: 16px;
  font-weight: 700;
  -webkit-margin-before: 40px;
          margin-block-start: 40px;
}
@media (max-width: 767px) {
  .service-subtext {
    font-size: 16px;
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
  }
}

.flow {
  background-image: url("/img/flow-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.flow-container {
  padding-block: 188px;
  margin: auto 0;
}
@media (max-width: 767px) {
  .flow-container {
    padding-block: 80px;
  }
}

.flow-cards {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  align-items: stretch;
}
@media (max-width: 767px) {
  .flow-cards {
    grid-template-columns: 1fr;
  }
}

.flow-card {
  width: 100%;
  height: 100%;
  border: 1px solid #1c61a3;
  background-color: rgba(255, 255, 255, 0.7);
}

.flow-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 24px;
  font-weight: 700;
  line-height: 160%;
}
@media (max-width: 767px) {
  .flow-subtitle {
    font-size: 16px;
    -webkit-margin-before: 16px;
            margin-block-start: 16px;
  }
}

.flow-num {
  font-family: "Cormorant Garamond", serif;
  color: rgba(198, 189, 216, 0.5);
  font-size: 96px;
  font-weight: 700;
  line-height: 160%;
  text-align: left;
  padding-left: 30px;
}
@media (max-width: 767px) {
  .flow-num {
    font-size: 96px;
    -webkit-margin-before: 16px;
            margin-block-start: 16px;
  }
}

.flow-heading {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 24px;
  font-weight: 700;
  line-height: 160%;
  text-align: center;
}

.flow-subtext {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  padding-inline: 20px;
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-after: 128px;
          margin-block-end: 128px;
  text-align: center;
}
@media (max-width: 767px) {
  .flow-subtext {
    font-size: 16px;
    -webkit-margin-before: 16px;
            margin-block-start: 16px;
    -webkit-margin-after: 80px;
            margin-block-end: 80px;
  }
}

.review {
  background-image: url("/img/reviews-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.review-inner {
  padding-block: 185px;
  margin-left: 125px;
}
@media (max-width: 1280px) {
  .review-inner {
    margin-left: 40px;
  }
}
@media (max-width: 767px) {
  .review-inner {
    font-size: 16px;
    margin-left: 0;
    padding-inline: 20px;
  }
}

.review-container {
  position: relative;
}

.review-swiper-container,
.review-swiper,
.review-swiper-wrapper,
.review-swiper-slide {
  position: relative;
}

.review-swiper-wrapper {
  align-items: stretch;
}

.review-swiper-slide {
  display: flex;
  height: auto;
}

/* 位置のreset */
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

/* =============================
   ページネーション (bullets)
============================= */
/* 位置の設定 (枠組み) */
.swiper-pagination-bullets.review-pagination.swiper-pagination-horizontal {
  top: calc(100% + 29px);
}

/* それぞれのページネーション */
.swiper-pagination-bullets.review-pagination.swiper-pagination-horizontal .swiper-pagination-bullet {
  opacity: 1;
  width: 12px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  margin-inline: 5.5px;
}

/* activeな部分 */
.swiper-pagination-bullets.review-pagination.swiper-pagination-horizontal .swiper-pagination-bullet-active {
  background: #1c61a3;
}

.review-card {
  max-width: 500px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #1c61a3;
  padding-inline: 30px;
  padding-block: 40px;
}
@media (max-width: 767px) {
  .review-card {
    min-height: 520px;
    padding-inline: 20px;
    padding-block: 20px;
  }
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-owner img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #888;
}

.review-nameset {
  margin-left: 10px;
}

.review-name {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  text-align: left;
}
@media (max-width: 767px) {
  .review-name {
    font-size: 14px;
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
  }
}

.review-industry {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .review-industry {
    font-size: 14px;
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
  }
}

.review-heading {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  text-align: left;
}
@media (max-width: 767px) {
  .review-heading {
    font-size: 16px;
    -webkit-margin-before: 16px;
            margin-block-start: 16px;
  }
}

.review-text {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
  text-align: left;
  flex: 1;
}
@media (max-width: 767px) {
  .review-text {
    font-size: 16px;
    -webkit-margin-before: 16px;
            margin-block-start: 16px;
  }
}

.swiper-pagination.review-pagination {
  position: absolute !important;
  width: auto !important;
  left: 0 !important;
  transform: translateY(-50%) !important;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.swiper-pagination.review-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border: 1px solid #1c61a3;
  background: transparent;
  opacity: 1;
  border-radius: 50%;
  transition: border 0.3s;
}

.swiper-pagination.review-pagination .swiper-pagination-bullet-active {
  background: #1c61a3;
}

.contact {
  position: relative;
  background-image: url("/img/contact-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 40px 80px;
  margin: auto 0;
}

.contact-inner {
  max-width: 720px;
  width: 100%;
  margin: auto 0;
  padding-inline: 20px;
  margin-inline: auto;
}

.contact-container {
  max-width: 720px;
  width: 100%;
  margin: auto 0;
}

.contact-title {
  content: "";
  position: absolute;
  top: 300px;
  left: -250px;
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  font-size: 220px;
  font-weight: 700;
  text-align: left;
  transform: rotate(90deg);
}
@media (max-width: 767px) {
  .contact-title {
    font-size: 16px;
    -webkit-margin-before: 16px;
            margin-block-start: 16px;
  }
}

.contact-text span {
  color: #ff0000;
}

.contact-form {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.contact-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  -moz-column-gap: 30px;
       column-gap: 30px;
  align-items: center;
}
.contact-row.--aifs {
  align-items: flex-start;
}
@media (max-width: 767px) {
  .contact-row {
    grid-template-columns: 1fr;
  }
}

.contact-head {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 20px;
  font-weight: 400;
  line-height: 160%;
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
  text-align: left;
}
@media (max-width: 767px) {
  .contact-head {
    font-size: 16px;
    -webkit-margin-before: 16px;
            margin-block-start: 16px;
  }
}
.contact-head span.--must {
  position: relative;
  display: inline-block;
}
.contact-head span.--must::after {
  content: "*";
  color: #ff0000;
  position: absolute;
  top: calc(50% + 1px);
  translate: 0 -50%;
  left: calc(100% + 14px);
  font-size: 20px;
  line-height: normal;
  display: inline-block;
  padding: 1px 7px;
  border-radius: 4px;
  white-space: nowrap;
}

.contact-data {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  text-align: left;
  border: 1px solid #bbbbbb;
}
@media (max-width: 767px) {
  .contact-data {
    font-size: 16px;
    -webkit-margin-before: 16px;
            margin-block-start: 16px;
  }
}
.contact-data input,
.contact-data textarea {
  width: 100%;
}
.contact-data input::-moz-placeholder, .contact-data textarea::-moz-placeholder {
  color: #bbbbbb;
}
.contact-data input::placeholder,
.contact-data textarea::placeholder {
  color: #bbbbbb;
}

.contact-select-wrap option {
  color: #bbbbbb;
}

.contact-data-checkbox {
  text-align: center;
}

/* 全体 */
.contact-acceptance {
  margin-top: 16px;
}

/* label をクリックしやすく */
.contact-acceptance label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  line-height: 1.4;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* inputは見た目だけ隠して機能は残す */
.contact-acceptance input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
}

/* 擬似チェックボックス */
.contact-acceptance span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* 箱 */
.contact-acceptance span::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #bbbbbb;
  border-radius: 4px; /* 四角丸。丸にしたいなら 50% */
  box-sizing: border-box;
  display: inline-block;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}

/* チェック状態 */
.contact-acceptance input[type=checkbox]:checked + span::before {
  background: #333;
  border-color: #333;
  box-shadow: inset 0 0 0 3px #fff; /* 白いチェック風 */
}

/* フォーカス（キーボード操作時に見える） */
.contact-acceptance input[type=checkbox]:focus-visible + span::before {
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.15);
  border-color: #333;
}

/* hover */
.contact-acceptance label:hover span::before {
  border-color: #555;
}

/* リンク見た目 */
.contact-acceptance a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-acceptance a:hover {
  opacity: 0.75;
}

.contact-submit {
  width: 200px;
  background: #333;
  margin: 0 auto;
}
.contact-submit input {
  font-family: "Zen Old Mincho", serif;
  color: #fff;
  padding: 10px 48px;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}
@media (max-width: 767px) {
  .contact-submit input {
    font-size: 16px;
  }
}

.footer {
  position: relative;
  background-image: url("/img/fv01-pc.webp");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  padding-block: 40px 20px;
  margin: auto 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo img {
  width: 250px;
}
@media (max-width: 767px) {
  .footer-logo img {
    width: 150px;
  }
}

.footer-text {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  padding-block: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}

.sns-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-block: 30px;
}

.footer-copyright {
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 160%;
}
@media (max-width: 767px) {
  .footer-copyright {
    font-size: 16px;
    -webkit-margin-before: 16px;
            margin-block-start: 16px;
  }
}

.thanks {
  padding-block: 200px;
  background-image: url("/img/contact-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 20%;
  margin: auto 0;
}

.thanks-text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Old Mincho", serif;
  color: #333;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 767px) {
  .thanks-text {
    font-size: 16px;
    -webkit-margin-before: 16px;
            margin-block-start: 16px;
  }
}

.thanks-button {
  width: 240px;
  background-color: #f3d6df;
  padding: 10px 48px;
  margin: 30px auto;
}

.policy {
  position: relative;
  background-image: url("/img/policy-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: auto 0;
  padding-block: 150px;
}
@media (max-width: 767px) {
  .policy {
    padding-block: 100px;
  }
}

.policy-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Cormorant Garamond", serif;
  color: #333;
  font-size: 64px;
  font-weight: 700;
  line-height: 160%;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .policy-title {
    font-size: 36px;
  }
}

.policy-heading {
  margin-top: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Zen Old Mincho", serif;
  color: #333;
  font-size: 24px;
  font-weight: 700;
  line-height: 160%;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .policy-heading {
    font-size: 20px;
  }
}

.policy-text {
  padding-block: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Zen Old Mincho", serif;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  display: flex;
  align-items: center;
}

.policy-item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Zen Old Mincho", serif;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  display: flex;
  align-items: center;
}