@charset "UTF-8";
.adlp-footer {
  padding: min(calc(60 / 1080 * 100vw), 60px) 0 min(calc(80 / 1080 * 100vw), 80px);
}
@media screen and (max-width: 767px) {
  .adlp-footer {
    padding: calc(80 / 750 * 100vw) 0 calc(100 / 750 * 100vw);
  }
}
.adlp-footer__menu {
  text-align: center;
  font-size: min(calc(14 / 1080 * 100vw), 14px);
}
.adlp-footer__menu__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  gap: min(calc(60 / 1080 * 100vw), 60px);
}
@media screen and (max-width: 767px) {
  .adlp-footer__menu__wrapper {
    flex-direction: column;
    width: 100%;
    gap: calc(40 / 750 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .adlp-footer__menu {
    font-size: calc(24 / 750 * 100vw);
  }
}
.adlp-footer__text {
  margin: min(calc(60 / 1080 * 100vw), 60px) auto 0;
  font-size: min(calc(12 / 1080 * 100vw), 12px);
  text-align: center;
  color: #666;
}
@media screen and (max-width: 767px) {
  .adlp-footer__text {
    font-size: calc(22 / 750 * 100vw);
    margin: calc(100 / 750 * 100vw) auto 0;
  }
}

.adlp-accordion {
  background: #fff;
}
.adlp-accordion__wrapper {
  display: flex;
  flex-direction: column;
  gap: min(calc(30 / 1080 * 100vw), 30px);
}
@media screen and (max-width: 767px) {
  .adlp-accordion__wrapper {
    gap: calc(30 / 750 * 100vw);
  }
}
.adlp-accordion__header {
  position: relative;
  cursor: pointer;
}
.adlp-accordion__header__inner {
  display: flex;
  align-items: center;
  padding: min(calc(20 / 1080 * 100vw), 20px) min(calc(80 / 1080 * 100vw), 80px) min(calc(20 / 1080 * 100vw), 20px) min(calc(40 / 1080 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .adlp-accordion__header__inner {
    padding: calc(40 / 750 * 100vw) calc(112 / 750 * 100vw) calc(40 / 750 * 100vw) calc(40 / 750 * 100vw);
  }
}
.adlp-accordion__header__inner .lead {
  line-height: 1;
  font-size: min(calc(40 / 1080 * 100vw), 40px);
  margin-right: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .adlp-accordion__header__inner .lead {
    font-size: calc(48 / 750 * 100vw);
    margin-right: calc(20 / 750 * 100vw);
  }
}
.adlp-accordion__header::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: min(calc(20 / 1080 * 100vw), 20px);
  height: min(calc(12 / 1080 * 100vw), 12px);
  right: min(calc(45 / 1080 * 100vw), 45px);
  transition: all 0.3s;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='12' viewBox='0 0 20 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 11.5L0.47372 0.25L19.5263 0.250002L10 11.5Z' fill='%23012F83'/%3E%3C/svg%3E%0A");
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .adlp-accordion__header::after {
    width: calc(28 / 750 * 100vw);
    height: calc(17 / 750 * 100vw);
    right: calc(35 / 750 * 100vw);
  }
}
.adlp-accordion__header.--open::after {
  transform: translateY(-50%) rotate(180deg);
}
.adlp-accordion__header.--open::before {
  opacity: 0;
}
.adlp-accordion__header.--img::after {
  display: none;
}
.adlp-accordion__header.--img > span:last-child {
  display: none;
}
.adlp-accordion__header.--img.--open > span:first-child {
  display: none;
}
.adlp-accordion__header.--img.--open > span:last-child {
  display: block;
}
.adlp-accordion__header.--plus::before {
  content: "";
  display: block;
  background-image: none;
  background: #012F83;
  position: absolute;
  height: min(calc(20 / 1080 * 100vw), 20px);
  width: min(calc(2 / 1080 * 100vw), 2px);
  right: min(calc(49 / 1080 * 100vw), 49px);
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .adlp-accordion__header.--plus::before {
    height: calc(20 / 750 * 100vw);
    width: calc(2 / 750 * 100vw);
    right: calc(49 / 750 * 100vw);
  }
}
.adlp-accordion__header.--plus::after {
  width: min(calc(20 / 1080 * 100vw), 20px);
  height: min(calc(2 / 1080 * 100vw), 2px);
  right: min(calc(40 / 1080 * 100vw), 40px);
  background-image: none;
  background: #012F83;
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .adlp-accordion__header.--plus::after {
    width: calc(20 / 750 * 100vw);
    height: calc(2 / 750 * 100vw);
    right: calc(40 / 750 * 100vw);
  }
}
.adlp-accordion__body {
  display: none;
}
.adlp-accordion__body__inner {
  display: flex;
  align-items: flex-start;
  padding: min(calc(20 / 1080 * 100vw), 20px) min(calc(40 / 1080 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .adlp-accordion__body__inner {
    padding: 0 calc(40 / 750 * 100vw) calc(40 / 750 * 100vw);
  }
}
.adlp-accordion__body__inner .lead {
  font-size: min(calc(40 / 1080 * 100vw), 40px);
  margin-right: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .adlp-accordion__body__inner .lead {
    margin-right: calc(20 / 750 * 100vw);
  }
}
.js-toggle {
  cursor: pointer;
}
.js-toggle + * {
  display: none;
}

.adlp-card {
  display: flex;
  flex-direction: column;
  background: #f1f1f1;
  padding: min(calc(20 / 1080 * 100vw), 20px);
  gap: min(calc(20 / 1080 * 100vw), 20px);
}
.adlp-card__wrapper {
  display: flex;
  justify-content: center;
  gap: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .adlp-card__wrapper {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .adlp-card {
    max-width: min(calc(350 / 1080 * 100vw), 350px);
  }
}
@media screen and (max-width: 767px) {
  .adlp-card {
    width: 100%;
  }
}
.adlp-card__head {
  display: flex;
  align-items: center;
  gap: min(calc(20 / 1080 * 100vw), 20px);
}
.adlp-card__no {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(calc(80 / 1080 * 100vw), 80px);
  height: min(calc(80 / 1080 * 100vw), 80px);
  background: #fff;
}
@media screen and (max-width: 767px) {
  .adlp-card__no {
    width: calc(80 / 750 * 100vw);
    height: calc(80 / 750 * 100vw);
  }
}
.adlp-card__no .text01 {
  text-align: center;
  line-height: 1;
  font-size: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .adlp-card__no .text01 {
    font-size: calc(20 / 750 * 100vw);
  }
}
.adlp-card__no .text02 {
  text-align: center;
  line-height: 1;
  font-size: min(calc(30 / 1080 * 100vw), 30px);
}
@media screen and (max-width: 767px) {
  .adlp-card__no .text02 {
    font-size: calc(32 / 750 * 100vw);
  }
}
.adlp-card__title {
  font-size: min(calc(30 / 1080 * 100vw), 30px);
  background: #fff;
  flex: 1;
  padding: 0 min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .adlp-card__title {
    font-size: calc(38 / 750 * 100vw);
    padding: 0 calc(20 / 750 * 100vw);
  }
}
.adlp-card__body {
  display: flex;
  align-items: flex-start;
  gap: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .adlp-card__body {
    gap: calc(20 / 750 * 100vw);
  }
}
.adlp-card__text {
  flex: 1;
  background: #fff;
  padding: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .adlp-card__text {
    padding: calc(20 / 750 * 100vw);
  }
}
.adlp-card__img {
  width: min(calc(50 / 1080 * 100vw), 50px);
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .adlp-card__img {
    width: calc(80 / 750 * 100vw);
  }
}

.adlp-circle {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(calc(150 / 1080 * 100vw), 150px);
  height: min(calc(150 / 1080 * 100vw), 150px);
  background: #f1f1f1;
}
.adlp-circle__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(calc(10 / 1080 * 100vw), 10px);
}
@media screen and (max-width: 767px) {
  .adlp-circle__wrapper {
    width: 100%;
    gap: calc(10 / 750 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .adlp-circle {
    width: calc(150 / 750 * 100vw);
    height: calc(150 / 750 * 100vw);
  }
}
.adlp-circle__text {
  text-align: center;
}
.adlp-circle__text .text01 {
  font-size: min(calc(24 / 1080 * 100vw), 24px);
}
@media screen and (max-width: 767px) {
  .adlp-circle__text .text01 {
    font-size: calc(32 / 750 * 100vw);
  }
}
.adlp-circle__text .text02 {
  font-size: min(calc(18 / 1080 * 100vw), 18px);
}
@media screen and (max-width: 767px) {
  .adlp-circle__text .text02 {
    font-size: calc(20 / 750 * 100vw);
  }
}

.adlp-fadein {
  opacity: 0;
}

.fadeInUp {
  opacity: 0;
  animation-name: fadein-up;
  animation-duration: 0.7s;
  animation-delay: 0.3s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 767px) {
  .fadeInUp {
    animation-name: fadein-up-sp;
  }
}

@keyframes fadein-up {
  0% {
    opacity: 0;
    transform: translateY(min(calc(60 / 1080 * 100vw), 60px));
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadein-up-sp {
  0% {
    opacity: 0;
    transform: translateY(calc(60 / 750 * 100vw));
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.adlp-flow {
  display: flex;
  grid-gap: min(calc(47 / 1080 * 100vw), 47px);
  align-items: center;
  z-index: 1;
}
.adlp-flow__wrapper {
  display: flex;
  flex-direction: column;
  background: #fff;
  margin: 0 auto;
  grid-gap: min(calc(20 / 1080 * 100vw), 20px);
  padding: min(calc(40 / 1080 * 100vw), 40px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .adlp-flow__wrapper {
    width: calc(690 / 750 * 100vw);
    margin: calc(70 / 750 * 100vw) auto 0;
    grid-gap: calc(50 / 750 * 100vw);
    padding: calc(40 / 750 * 100vw) calc(30 / 750 * 100vw);
  }
}
.adlp-flow__wrapper::after {
  content: "";
  display: block;
  width: min(calc(4 / 1080 * 100vw), 4px);
  height: calc(100% - min(calc(80 / 1080 * 100vw), 80px));
  position: absolute;
  top: min(calc(40 / 1080 * 100vw), 40px);
  left: min(calc(132 / 1080 * 100vw), 132px);
  background: #95B6CE;
}
@media screen and (max-width: 767px) {
  .adlp-flow__wrapper::after {
    width: calc(5 / 750 * 100vw);
    height: calc(100% - calc(90 / 750 * 100vw));
    top: calc(40 / 750 * 100vw);
    left: calc(125 / 750 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .adlp-flow {
    grid-gap: calc(30 / 750 * 100vw);
  }
}
.adlp-flow__img {
  width: min(calc(185 / 1080 * 100vw), 185px);
}
@media screen and (max-width: 767px) {
  .adlp-flow__img {
    width: calc(190 / 750 * 100vw);
  }
}
.adlp-flow__body {
  width: min(calc(528 / 1080 * 100vw), 528px);
}
@media screen and (max-width: 767px) {
  .adlp-flow__body {
    width: calc(410 / 750 * 100vw);
  }
}
.adlp-flow__head {
  display: flex;
  align-items: center;
  font-weight: 700;
}
.adlp-flow__head .--no {
  font-size: min(calc(42 / 1080 * 100vw), 42px);
  margin-right: min(calc(10 / 1080 * 100vw), 10px);
}
@media screen and (max-width: 767px) {
  .adlp-flow__head .--no {
    font-size: calc(50 / 750 * 100vw);
    margin-right: calc(12 / 750 * 100vw);
  }
}
.adlp-flow__head .--title {
  font-size: min(calc(26 / 1080 * 100vw), 26px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .adlp-flow__head .--title {
    font-size: calc(32 / 750 * 100vw);
  }
}

.adlp-flow02 {
  gap: min(calc(10 / 1080 * 100vw), 10px);
  display: flex;
  align-items: center;
  z-index: 1;
}
.adlp-flow02__wrapper {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  gap: min(calc(80 / 1080 * 100vw), 80px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .adlp-flow02__wrapper {
    flex-direction: column;
    width: calc(690 / 750 * 100vw);
    margin: calc(20 / 750 * 100vw) auto 0;
    gap: calc(50 / 750 * 100vw);
  }
}
.adlp-flow02__wrapper::after {
  content: "";
  display: block;
  height: min(calc(4 / 1080 * 100vw), 4px);
  width: 100%;
  position: absolute;
  top: min(calc(70 / 1080 * 100vw), 70px);
  left: 50%;
  transform: translateX(-50%);
  background: #95B6CE;
}
@media screen and (max-width: 767px) {
  .adlp-flow02__wrapper::after {
    width: calc(5 / 750 * 100vw);
    height: calc(100% - calc(90 / 750 * 100vw));
    top: calc(40 / 750 * 100vw);
    left: calc(125 / 750 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .adlp-flow02 {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .adlp-flow02 {
    grid-gap: calc(30 / 750 * 100vw);
  }
}
.adlp-flow02__img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .adlp-flow02__img {
    width: calc(240 / 750 * 100vw);
  }
}
.adlp-flow02__body {
  width: min(calc(140 / 1080 * 100vw), 140px);
}
@media screen and (max-width: 767px) {
  .adlp-flow02__body {
    flex: 1;
  }
}
.adlp-flow02__head {
  font-size: min(calc(26 / 1080 * 100vw), 26px);
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .adlp-flow02__head {
    font-size: calc(30 / 750 * 100vw);
    text-align: left;
  }
}
.adlp-flow02__text {
  font-size: min(calc(18 / 1080 * 100vw), 18px);
}
@media screen and (max-width: 767px) {
  .adlp-flow02__text {
    font-size: calc(24 / 750 * 100vw);
  }
}

.adlp-head {
  text-align: center;
}
.adlp-head::after {
  content: "";
  display: block;
  width: min(calc(50 / 1080 * 100vw), 50px);
  height: min(calc(5 / 1080 * 100vw), 5px);
  background: #E75B18;
  margin: min(calc(10 / 1080 * 100vw), 10px) auto 0;
}
.adlp-head .text01 {
  font-size: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .adlp-head .text01 {
    font-size: calc(30 / 750 * 100vw);
  }
}
.adlp-head .text02 {
  font-size: min(calc(30 / 1080 * 100vw), 30px);
}
@media screen and (max-width: 767px) {
  .adlp-head .text02 {
    font-size: calc(46 / 750 * 100vw);
  }
}

.adlp-list {
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M25 12.5C25 19.4036 19.4036 25 12.5 25C5.59644 25 0 19.4036 0 12.5C0 5.59644 5.59644 0 12.5 0C19.4036 0 25 5.59644 25 12.5ZM7.02857 10.1124L11.5604 14.6443L17.9714 8.23335L20.4948 10.7567L14.0839 17.1677L11.5604 19.6911L9.03705 17.1677L4.50519 12.6359L7.02857 10.1124Z' fill='orange'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: min(calc(20 / 1080 * 100vw), 20px) min(calc(20 / 1080 * 100vw), 20px);
  background-position: left top min(calc(4 / 1080 * 100vw), 4px);
  padding-left: min(calc(30 / 1080 * 100vw), 30px);
}
.adlp-list__wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: min(calc(10 / 1080 * 100vw), 10px);
}
@media screen and (max-width: 767px) {
  .adlp-list__wrapper {
    gap: calc(10 / 750 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .adlp-list {
    padding-left: calc(40 / 750 * 100vw);
    background-size: calc(30 / 750 * 100vw) calc(30 / 750 * 100vw);
    background-position: left top calc(8 / 750 * 100vw);
  }
}
.adlp-list.--check {
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.891075 2.52926C1.08634 2.334 1.40292 2.334 1.59818 2.52926L3.36595 4.29703L6.90148 0.761492C7.09674 0.56623 7.41333 0.56623 7.60859 0.761492C7.80385 0.956754 7.80385 1.27334 7.60859 1.4686L3.7195 5.35769C3.52424 5.55295 3.20766 5.55295 3.0124 5.35769L0.891075 3.23637C0.695813 3.0411 0.695813 2.72452 0.891075 2.52926Z' fill='black'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: min(calc(16 / 1080 * 100vw), 16px) min(calc(16 / 1080 * 100vw), 16px);
  background-position: left min(calc(5 / 1080 * 100vw), 5px) top min(calc(8 / 1080 * 100vw), 8px);
  padding-left: min(calc(30 / 1080 * 100vw), 30px);
}
@media screen and (max-width: 767px) {
  .adlp-list.--check {
    padding-left: calc(40 / 750 * 100vw);
    background-size: calc(30 / 750 * 100vw) calc(30 / 750 * 100vw);
    background-position: left top calc(8 / 750 * 100vw);
  }
}

.adlp-logo {
  animation: infinity-scroll-left 35s infinite linear 0.5s both;
  width: min(calc(2296 / 1080 * 100vw), 2296px);
}
.adlp-logo__wrapper {
  display: flex;
  width: min(calc(4592 / 1080 * 100vw), 4592px);
}
@media screen and (max-width: 767px) {
  .adlp-logo__wrapper {
    width: calc(4592 / 750 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .adlp-logo {
    width: calc(2296 / 750 * 100vw);
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.adlp-swiper {
  position: relative;
  padding-bottom: min(calc(50 / 1080 * 100vw), 50px);
  width: 100%;
  /* ページネーションの余白 */
}
@media screen and (max-width: 767px) {
  .adlp-swiper {
    padding-bottom: calc(80 / 750 * 100vw);
  }
}
.adlp-swiper.--hide {
  overflow: hidden;
}
.adlp-swiper .swiper-slide {
  padding: 0 min(calc(40 / 1080 * 100vw), 40px);
}
.adlp-swiper .swiper-button-next,
.adlp-swiper .swiper-button-prev {
  width: min(calc(24 / 1080 * 100vw), 24px);
  height: min(calc(84 / 1080 * 100vw), 84px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .adlp-swiper .swiper-button-next,
  .adlp-swiper .swiper-button-prev {
    width: calc(30 / 750 * 100vw);
  }
}
.adlp-swiper .swiper-button-next::after,
.adlp-swiper .swiper-button-prev::after {
  display: none;
}
.adlp-swiper .swiper-button-prev {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='84' viewBox='0 0 24 84' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='24' height='84' fill='%234A453B'/%3E%3Cpath d='M18 51L8 42L18 33' stroke='white' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  left: 0;
}
.adlp-swiper .swiper-button-next {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='84' viewBox='0 0 24 84' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='24' height='84' fill='%234A453B'/%3E%3Cpath d='M8 33L18 42L8 51' stroke='white' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  right: 0;
}
.adlp-swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.adlp-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 min(calc(8 / 1080 * 100vw), 8px);
}
@media screen and (max-width: 767px) {
  .adlp-swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .adlp-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 calc(8 / 750 * 100vw);
  }
}
.adlp-swiper .swiper-pagination-bullet {
  height: min(calc(10 / 1080 * 100vw), 10px);
  width: min(calc(10 / 1080 * 100vw), 10px);
}
@media screen and (max-width: 767px) {
  .adlp-swiper .swiper-pagination-bullet {
    width: calc(16 / 750 * 100vw);
    height: calc(16 / 750 * 100vw);
  }
}
.adlp-swiper .swiper-pagination-bullet-active {
  background-color: #E0BF23;
}
.adlp-swiper__wrapper {
  padding-bottom: min(calc(30 / 1080 * 100vw), 30px);
}
@media screen and (max-width: 767px) {
  .adlp-swiper__wrapper {
    width: 100%;
    padding-bottom: calc(60 / 750 * 100vw);
  }
}

.adlp-tab__content {
  display: none;
}
.adlp-tab__content.--active {
  display: block;
}

.adlp-text__label {
  font-size: min(calc(24 / 1080 * 100vw), 24px);
  padding: min(calc(10 / 1080 * 100vw), 10px) min(calc(30 / 1080 * 100vw), 30px);
  background: #fff;
  width: fit-content;
  margin: 0 auto min(calc(30 / 1080 * 100vw), 30px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .adlp-text__label {
    font-size: calc(24 / 750 * 100vw);
    padding: calc(10 / 750 * 100vw) calc(30 / 750 * 100vw);
    margin: 0 auto calc(30 / 750 * 100vw);
  }
}
.adlp-text__label::after {
  content: "";
  display: block;
  width: min(calc(35 / 1080 * 100vw), 35px);
  height: min(calc(20 / 1080 * 100vw), 20px);
  clip-path: polygon(50% 100%, 0 0, 100% 0%);
  background: #fff;
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translate(-50%, 100%);
}
@media screen and (max-width: 767px) {
  .adlp-text__label::after {
    width: calc(50 / 750 * 100vw);
    height: calc(20 / 750 * 100vw);
  }
}
.adlp-text__label.--top::after {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  bottom: auto;
  top: 1px;
  transform: translate(-50%, -100%);
}
.adlp-text__label.--round {
  border-radius: 1000px;
}
.adlp-text__label.--txt {
  color: #fff;
  background: #333;
}
.adlp-text__label.--txt::after {
  background: #333;
}
.adlp-text__label.--white {
  color: #fff;
  background: #fff;
}
.adlp-text__label.--white::after {
  background: #fff;
}
.adlp-text__label.--silver {
  color: #fff;
  background: #f1f1f1;
}
.adlp-text__label.--silver::after {
  background: #f1f1f1;
}
.adlp-text__label.--accent {
  color: #fff;
  background: #E75B18;
}
.adlp-text__label.--accent::after {
  background: #E75B18;
}

.adlp-text__label__para {
  font-size: min(calc(24 / 1080 * 100vw), 24px);
  padding: min(calc(10 / 1080 * 100vw), 10px) min(calc(30 / 1080 * 100vw), 30px);
  min-width: min(calc(200 / 1080 * 100vw), 200px);
  margin: 0 auto min(calc(30 / 1080 * 100vw), 30px);
  width: fit-content;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .adlp-text__label__para {
    font-size: calc(24 / 750 * 100vw);
    padding: calc(10 / 750 * 100vw) calc(30 / 750 * 100vw);
    margin: 0 auto calc(30 / 750 * 100vw);
    min-width: calc(200 / 750 * 100vw);
  }
}
.adlp-text__label__para .text01 {
  z-index: 1;
  position: relative;
}
.adlp-text__label__para::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transform: skew(-15deg);
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
.adlp-text__label__para.--txt {
  color: #fff;
}
.adlp-text__label__para.--txt::after {
  background: #333;
}
.adlp-text__label__para.--white {
  color: #fff;
}
.adlp-text__label__para.--white::after {
  background: #fff;
}
.adlp-text__label__para.--silver {
  color: #fff;
}
.adlp-text__label__para.--silver::after {
  background: #f1f1f1;
}
.adlp-text__label__para.--accent {
  color: #fff;
}
.adlp-text__label__para.--accent::after {
  background: #E75B18;
}

.adlp-stroke {
  position: relative;
  font-size: min(calc(110 / 1080 * 100vw), 110px);
  font-weight: 700;
  filter: drop-shadow(0px min(calc(5 / 1080 * 100vw), 5px) min(calc(10 / 1080 * 100vw), 10px) rgba(0, 0, 0, 0.15));
}
@media screen and (max-width: 767px) {
  .adlp-stroke {
    font-size: calc(110 / 750 * 100vw);
    filter: drop-shadow(0px calc(5 / 750 * 100vw) calc(10 / 750 * 100vw) rgba(0, 0, 0, 0.15));
  }
}
.adlp-stroke .text01 {
  z-index: 10;
  position: relative;
  color: #E75B18;
}
.adlp-stroke::after {
  content: attr(data-text);
  position: absolute;
  z-index: 5;
  white-space: nowrap;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: min(calc(10 / 1080 * 100vw), 10px) #fff;
}
@media screen and (max-width: 767px) {
  .adlp-stroke::after {
    -webkit-text-stroke: calc(10 / 750 * 100vw) #fff;
  }
}

.adlp-ba-slider {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}
.adlp-ba-slider__inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
}
.adlp-ba-slider__before, .adlp-ba-slider__after {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.adlp-ba-slider__after {
  margin-left: -100%;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  transition: none;
}
.adlp-ba-slider__divider {
  position: absolute;
  top: 0;
  left: 0%;
  width: 4px;
  height: 100%;
  background: white;
  transform: translateX(-2px);
  z-index: 10;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: none;
  cursor: ew-resize;
  pointer-events: none;
}
.adlp-ba-slider__divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.adlp-ba-slider__divider::after {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: #333;
  font-weight: bold;
  z-index: 1;
}
.adlp-ba-slider__handle {
  position: absolute;
  top: 0;
  left: -20px;
  width: 44px;
  height: 100%;
  z-index: 11;
  cursor: ew-resize;
  pointer-events: auto;
}

.adlp-video-slider {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .adlp-video-slider {
    padding: calc(70 / 750 * 100vw) 0;
  }
}
.adlp-video-slider .video-swiper {
  overflow: visible;
}
.adlp-video-slider .video-swiper .swiper-wrapper .swiper-slide .video-container {
  width: 100%;
  border-radius: 8%;
  overflow: hidden;
  scale: 0.85;
  opacity: 0.3;
  transition: scale 0.4s ease-in-out;
}
.adlp-video-slider .video-swiper .swiper-wrapper .swiper-slide .video-container video {
  width: 100%;
  display: block;
  scale: 0.9;
}
.adlp-video-slider .video-swiper .swiper-wrapper .swiper-slide-active .video-container {
  scale: 1;
  opacity: 1;
}
.adlp-video-slider .video-swiper .swiper-button-prev,
.adlp-video-slider .video-swiper .swiper-button-next {
  width: min(calc(70 / 1080 * 100vw), 70px);
  height: min(calc(70 / 1080 * 100vw), 70px);
  background: url("data:image/svg+xml,%3Csvg width='70' height='70' viewBox='0 0 70 70' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='35' cy='35' r='35' transform='matrix(-1 0 0 1 70 0)' fill='%230491FE'/%3E%3Cpath d='M39 24L27 35.5238L39 46' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") 0 0/100% no-repeat;
}
@media screen and (max-width: 767px) {
  .adlp-video-slider .video-swiper .swiper-button-prev,
  .adlp-video-slider .video-swiper .swiper-button-next {
    width: calc(70 / 750 * 100vw);
    height: calc(70 / 750 * 100vw);
  }
}
.adlp-video-slider .video-swiper .swiper-button-prev::after,
.adlp-video-slider .video-swiper .swiper-button-next::after {
  content: none;
}
@media screen and (max-width: 767px) {
  .adlp-video-slider .video-swiper .swiper-button-prev {
    left: 0;
  }
}
.adlp-video-slider .video-swiper .swiper-button-next {
  transform: scale(-1, 1);
}
.adlp-video-slider .video-swiper .swiper-pagination {
  bottom: max(calc(-70 / 1080 * 100vw), -70px);
}
@media screen and (max-width: 767px) {
  .adlp-video-slider .video-swiper .swiper-pagination {
    bottom: calc(-70 / 750 * 100vw);
  }
}
.adlp-video-slider .video-swiper .swiper-pagination .swiper-pagination-bullet {
  width: min(calc(180 / 1080 * 100vw), 180px);
  height: min(calc(10 / 1080 * 100vw), 10px);
  border-radius: min(calc(8 / 1080 * 100vw), 8px);
  background: #fff;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .adlp-video-slider .video-swiper .swiper-pagination .swiper-pagination-bullet {
    width: calc(180 / 750 * 100vw);
    height: calc(10 / 750 * 100vw);
    border-radius: calc(8 / 750 * 100vw);
  }
}
.adlp-video-slider .video-swiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
}

.sec01 {
  position: relative;
  padding: min(calc(80 / 1080 * 100vw), 80px) 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sec01 {
    padding: calc(100 / 750 * 100vw) 0;
  }
}

.sec01__deco {
  position: absolute;
  top: 0;
  right: 0;
  width: min(calc(1134 / 1080 * 100vw), 1134px);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .sec01__deco {
    top: 0;
    right: 0;
    width: calc(750 / 750 * 100vw);
  }
}
.sec01__deco img {
  display: block;
  width: 100%;
  height: auto;
}

.sec01__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(40 / 1080 * 100vw), 40px);
  max-width: min(calc(920 / 1080 * 100vw), 920px);
  margin: 0 auto;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .sec01__inner {
    gap: calc(50 / 750 * 100vw);
    max-width: 100%;
    padding: 0;
  }
}

.sec01__header {
  display: flex;
  flex-direction: column;
  gap: min(calc(20 / 1080 * 100vw), 20px);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sec01__header {
    gap: calc(10 / 750 * 100vw);
    padding: 0 calc(30 / 750 * 100vw);
  }
}

.sec01__heading {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-size: min(calc(46 / 1080 * 100vw), 46px);
  color: #333;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .sec01__heading {
    font-size: calc(56 / 750 * 100vw);
    white-space: nowrap;
  }
}
.sec01__heading p {
  margin: 0;
}
.sec01__heading-accent {
  color: #dd5a48;
}

.sec01__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  color: #333;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .sec01__lead {
    font-size: calc(26 / 750 * 100vw);
  }
}

.sec01__wrapper {
  width: min(calc(720 / 1080 * 100vw), 720px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec01__wrapper {
    width: 100%;
  }
}

.sec01__img {
  position: relative;
  z-index: 1;
}

.sec01__list {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: min(calc(30 / 1080 * 100vw), 30px) min(calc(50 / 1080 * 100vw), 50px);
  width: min(calc(586 / 1080 * 100vw), 586px);
}
@media screen and (max-width: 767px) {
  .sec01__list {
    gap: calc(40 / 750 * 100vw);
    width: calc(600 / 750 * 100vw);
  }
}

.sec01__item {
  position: relative;
  flex: 0 0 min(calc(162 / 1080 * 100vw), 162px);
  height: min(calc(211 / 1080 * 100vw), 211px);
}
@media screen and (max-width: 767px) {
  .sec01__item {
    flex: 0 0 calc(279 / 750 * 100vw);
    height: calc(339 / 750 * 100vw);
  }
}
.sec01__item-img {
  width: min(calc(133 / 1080 * 100vw), 133px);
  height: min(calc(211 / 1080 * 100vw), 211px);
}
@media screen and (max-width: 767px) {
  .sec01__item-img {
    width: calc(279 / 750 * 100vw);
    height: calc(339 / 750 * 100vw);
  }
}
.sec01__item-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}
.sec01__item-label {
  position: absolute;
  z-index: 4;
  bottom: max(calc(-12 / 1080 * 100vw), -12px);
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(29 / 1080 * 100vw), 29px);
  height: min(calc(94 / 1080 * 100vw), 94px);
  border: 1px solid #333;
  padding: min(calc(4 / 1080 * 100vw), 4px) min(calc(2 / 1080 * 100vw), 2px);
}
@media screen and (max-width: 767px) {
  .sec01__item-label {
    width: calc(44 / 750 * 100vw);
    height: calc(140 / 750 * 100vw);
    padding: calc(4 / 750 * 100vw) calc(2 / 750 * 100vw);
  }
}
.sec01__item-label span {
  writing-mode: vertical-rl;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: min(calc(18 / 1080 * 100vw), 18px);
  color: #333;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  font-feature-settings: "palt" 1, "vrt2" 1;
}
@media screen and (max-width: 767px) {
  .sec01__item-label span {
    font-size: calc(28 / 750 * 100vw);
  }
}

.sec02 {
  position: relative;
  overflow: hidden;
  background-color: #F9F9F9;
}

.sec02__deco {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  pointer-events: none;
}
.sec02__deco.--item01 {
  top: min(calc(23 / 1080 * 100vw), 23px);
  left: min(calc(7 / 1080 * 100vw), 7px);
  width: min(calc(98 / 1080 * 100vw), 98px);
}
@media screen and (max-width: 767px) {
  .sec02__deco.--item01 {
    top: calc(62 / 750 * 100vw);
    left: calc(43 / 750 * 100vw);
    width: calc(134 / 750 * 100vw);
  }
}
.sec02__deco.--item02 {
  top: min(calc(405 / 1080 * 100vw), 405px);
  left: min(calc(755 / 1080 * 100vw), 755px);
  width: min(calc(112 / 1080 * 100vw), 112px);
}
@media screen and (max-width: 767px) {
  .sec02__deco.--item02 {
    top: calc(620 / 750 * 100vw);
    left: calc(575 / 750 * 100vw);
    width: calc(150 / 750 * 100vw);
  }
}
.sec02__deco.--item03 {
  top: min(calc(785 / 1080 * 100vw), 785px);
  left: min(calc(785 / 1080 * 100vw), 785px);
  width: min(calc(88 / 1080 * 100vw), 88px);
}
@media screen and (max-width: 767px) {
  .sec02__deco.--item03 {
    top: calc(1213 / 750 * 100vw);
    left: calc(612 / 750 * 100vw);
    width: calc(94 / 750 * 100vw);
  }
}

.sec02__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(30 / 1080 * 100vw), 30px);
  max-width: min(calc(920 / 1080 * 100vw), 920px);
  margin: 0 auto;
  z-index: 2;
  padding: min(calc(80 / 1080 * 100vw), 80px) 0;
}
@media screen and (max-width: 767px) {
  .sec02__inner {
    padding: calc(80 / 750 * 100vw) calc(30 / 750 * 100vw);
    gap: calc(30 / 750 * 100vw);
    max-width: 100%;
  }
}

.sec02__hero {
  position: relative;
  width: 100%;
  height: min(calc(340 / 1080 * 100vw), 340px);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sec02__hero {
    height: calc(560 / 750 * 100vw);
  }
}
.sec02__hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sec02__hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec02__hero-heading {
  position: absolute;
  top: min(calc(86 / 1080 * 100vw), 86px);
  left: 0;
  display: flex;
  flex-direction: column;
  gap: min(calc(10 / 1080 * 100vw), 10px);
}
@media screen and (max-width: 767px) {
  .sec02__hero-heading {
    top: calc(148 / 750 * 100vw);
    gap: 0;
  }
}
.sec02__hero-heading-line {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .sec02__hero-heading-line .line {
    display: inline-block;
    background-color: #fff;
    height: min(calc(50 / 1080 * 100vw), 50px);
    padding: max(calc(0 / 1080 * 100vw), 0px) max(calc(0 / 1080 * 100vw), 0px) max(calc(0 / 1080 * 100vw), 0px) min(calc(25 / 1080 * 100vw), 25px);
    font-family: "Hina Mincho", serif;
    font-weight: 400;
    font-size: min(calc(36 / 1080 * 100vw), 36px);
    color: #dd5a48;
    letter-spacing: 0.08em;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .sec02__hero-heading-line .line02 {
    display: block;
    width: fit-content;
    margin: calc(10 / 750 * 100vw) 0 0;
    background-color: #fff;
    font-family: "Hina Mincho", serif;
    font-weight: 400;
    font-size: min(calc(36 / 1080 * 100vw), 36px);
    color: #dd5a48;
    letter-spacing: 0.08em;
    line-height: 1.4;
    padding: calc(0 / 750 * 100vw) calc(25 / 750 * 100vw) calc(0 / 750 * 100vw) calc(25 / 750 * 100vw);
    font-size: calc(48 / 750 * 100vw);
    height: calc(68 / 750 * 100vw);
  }
}

.sec02__lead {
  width: 100%;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  color: #333;
  letter-spacing: 0.08em;
  line-height: 2.3;
}
@media screen and (max-width: 767px) {
  .sec02__lead {
    font-size: calc(26 / 750 * 100vw);
  }
}

.sec02__photos {
  display: flex;
  gap: min(calc(20 / 1080 * 100vw), 20px);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sec02__photos {
    gap: calc(20 / 750 * 100vw);
  }
}
.sec02__photos-item {
  flex: 1;
  overflow: hidden;
}
.sec02__cta {
  width: 100%;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  color: #333;
  letter-spacing: 0.08em;
  line-height: 2.3;
}
@media screen and (max-width: 767px) {
  .sec02__cta {
    font-size: calc(26 / 750 * 100vw);
  }
}

.sec03 {
  position: relative;
  background-color: #F6F4E8;
  padding: min(calc(80 / 1080 * 100vw), 80px) 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sec03 {
    padding: calc(100 / 750 * 100vw) calc(30 / 750 * 100vw);
  }
}
.sec03::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg width='250' height='251' viewBox='0 0 250 251' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.6'%3E%3Cpath d='M189.838 81.408C179.903 106.719 159.521 122.678 143.775 129.231' stroke='white' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M107.424 59.0388C133.894 64.8642 152.737 82.5902 161.622 97.2305' stroke='white' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M67.907 123.386C85.8978 102.436 110.74 93.9218 128.006 92.8855' stroke='white' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M120.28 185.495C105.857 162.593 105 136.794 108.956 120.237' stroke='white' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M188.561 156.375C167.082 160.472 146.453 157.334 126.949 144.764' stroke='white' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M157.764 62.8008C233.38 19.6662 273.062 104.695 222.786 141.441' stroke='white' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M87.1436 79.4773C67.8917 -5.47894 160.909 -18.8302 181.433 39.9923' stroke='white' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M90.8891 149.047C4.13092 154.978 5.46176 61.3519 66.6673 50.163' stroke='white' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M144.42 186.391C105.498 263.908 24.9478 215.454 46.3231 157.248' stroke='white' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M190.88 128.237C259.071 181.532 195.951 250.911 143.218 218.58' stroke='white' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  width: min(calc(250 / 1080 * 100vw), 250px);
  height: min(calc(251 / 1080 * 100vw), 251px);
  top: min(calc(30 / 1080 * 100vw), 30px);
  right: min(calc(451 / 1080 * 100vw), 451px);
}
@media screen and (max-width: 767px) {
  .sec03::before {
    background-image: url("data:image/svg+xml,%3Csvg width='257' height='327' viewBox='0 0 257 327' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.6'%3E%3Cpath d='M251.828 115.556C237.902 151.079 209.335 173.476 187.264 182.674' stroke='white' stroke-width='12' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M136.311 84.1631C173.412 92.3386 199.823 117.216 212.276 137.763' stroke='white' stroke-width='12' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M80.9239 174.469C106.14 145.069 140.961 133.119 165.161 131.664' stroke='white' stroke-width='12' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M154.332 261.635C134.117 229.494 132.915 193.287 138.459 170.05' stroke='white' stroke-width='12' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M250.039 220.768C219.932 226.518 191.018 222.114 163.681 204.473' stroke='white' stroke-width='12' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M206.871 89.443C312.857 28.9064 368.477 148.238 298.008 199.809' stroke='white' stroke-width='12' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M107.887 112.847C80.9032 -6.3836 211.281 -25.1211 240.047 57.4323' stroke='white' stroke-width='12' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M113.136 210.484C-8.46765 218.808 -6.6023 87.4092 79.1858 71.7064' stroke='white' stroke-width='12' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M188.168 262.894C133.614 371.684 20.711 303.681 50.6714 221.993' stroke='white' stroke-width='12' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M253.287 181.277C348.866 256.073 260.395 353.442 186.483 308.068' stroke='white' stroke-width='12' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E%0A");
    width: calc(257 / 750 * 100vw);
    height: calc(327 / 750 * 100vw);
    top: calc(42 / 750 * 100vw);
    right: calc(-85 / 750 * 100vw);
    right: 0;
  }
}

.sec03__deco {
  position: absolute;
  top: min(calc(43 / 1080 * 100vw), 43px);
  right: min(calc(30 / 1080 * 100vw), 30px);
  width: min(calc(244 / 1080 * 100vw), 244px);
}
@media screen and (max-width: 767px) {
  .sec03__deco {
    top: calc(42 / 750 * 100vw);
    right: calc(-20 / 750 * 100vw);
    width: calc(342 / 750 * 100vw);
  }
}
.sec03__deco img {
  width: 100%;
  transform: rotate(6.13deg);
}

.sec03__outer {
  width: min(calc(920 / 1080 * 100vw), 920px);
  margin: auto;
}
@media screen and (max-width: 767px) {
  .sec03__outer {
    width: calc(690 / 750 * 100vw);
  }
}

.sec03__heading {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-size: min(calc(48 / 1080 * 100vw), 48px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #333;
  margin-bottom: min(calc(81 / 1080 * 100vw), 81px);
}
@media screen and (max-width: 767px) {
  .sec03__heading {
    font-size: calc(48 / 750 * 100vw);
    letter-spacing: 0.08em;
    margin-bottom: calc(81 / 750 * 100vw);
  }
}

.sec03__list {
  display: flex;
  flex-direction: column;
  gap: min(calc(30 / 1080 * 100vw), 30px);
}
@media screen and (max-width: 767px) {
  .sec03__list {
    gap: calc(50 / 750 * 100vw);
  }
}

.sec03__row {
  display: flex;
  gap: min(calc(40 / 1080 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .sec03__row {
    flex-direction: column;
    gap: calc(50 / 750 * 100vw);
  }
}

.sec03__item {
  display: flex;
  gap: min(calc(20 / 1080 * 100vw), 20px);
  align-items: flex-start;
  width: min(calc(440 / 1080 * 100vw), 440px);
}
@media screen and (max-width: 767px) {
  .sec03__item {
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }
}

.sec03__item-img {
  flex-shrink: 0;
  width: min(calc(223 / 1080 * 100vw), 223px);
}
@media screen and (max-width: 767px) {
  .sec03__item-img {
    width: calc(324 / 750 * 100vw);
  }
}
.sec03__item-img img {
  width: 100%;
  height: auto;
}

.sec03__item-body {
  width: min(calc(197 / 1080 * 100vw), 197px);
}
@media screen and (max-width: 767px) {
  .sec03__item-body {
    width: calc(345 / 750 * 100vw);
  }
}

.sec03__item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(22 / 1080 * 100vw), 22px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #DD5A48;
  margin-bottom: min(calc(6 / 1080 * 100vw), 6px);
}
@media screen and (max-width: 767px) {
  .sec03__item-title {
    font-size: calc(32 / 750 * 100vw);
    letter-spacing: 0.04em;
    margin-bottom: calc(6 / 750 * 100vw);
  }
}

.sec03__item-title-price {
  font-size: min(calc(22 / 1080 * 100vw), 22px);
}
@media screen and (max-width: 767px) {
  .sec03__item-title-price {
    font-size: calc(32 / 750 * 100vw);
  }
}

.sec03__item-title-tax {
  font-size: min(calc(14 / 1080 * 100vw), 14px);
}
@media screen and (max-width: 767px) {
  .sec03__item-title-tax {
    font-size: calc(22 / 750 * 100vw);
  }
}

.sec03__item-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #333;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .sec03__item-text {
    font-size: calc(26 / 750 * 100vw);
    letter-spacing: 0.08em;
  }
}

.sec03__line {
  height: min(calc(10 / 1080 * 100vw), 10px);
}
@media screen and (max-width: 767px) {
  .sec03__line {
    width: calc(690 / 750 * 100vw);
    height: calc(16 / 750 * 100vw);
  }
}
.sec03__line img {
  width: 100%;
  height: auto;
}
.sec03__line.sp {
  background: url("../img/common/sec03__line.svg") no-repeat center/100% auto;
}

.sec04 {
  position: relative;
  overflow: hidden;
}

.sec04__deco {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}
.sec04__deco.--item01 {
  top: min(calc(123 / 1080 * 100vw), 123px);
  left: min(calc(762 / 1080 * 100vw), 762px);
  width: min(calc(96 / 1080 * 100vw), 96px);
}
@media screen and (max-width: 767px) {
  .sec04__deco.--item01 {
    top: calc(70 / 750 * 100vw);
    left: auto;
    right: calc(43 / 750 * 100vw);
    width: calc(116 / 750 * 100vw);
  }
}
.sec04__deco.--item02 {
  top: min(calc(480 / 1080 * 100vw), 480px);
  left: max(calc(-120 / 1080 * 100vw), -120px);
  width: min(calc(72 / 1080 * 100vw), 72px);
}
@media screen and (max-width: 767px) {
  .sec04__deco.--item02 {
    top: calc(160 / 750 * 100vw);
    right: calc(8 / 750 * 100vw);
    right: auto;
    top: auto;
    left: calc(30 / 750 * 100vw);
    bottom: calc(60 / 750 * 100vw);
    width: calc(85 / 750 * 100vw);
  }
}

.sec04__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(50 / 1080 * 100vw), 50px);
  width: min(calc(920 / 1080 * 100vw), 920px);
  padding: min(calc(100 / 1080 * 100vw), 100px) 0 min(calc(80 / 1080 * 100vw), 80px);
  margin: 0 auto;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .sec04__inner {
    padding: calc(100 / 750 * 100vw) calc(0 / 750 * 100vw) calc(80 / 750 * 100vw);
    gap: calc(50 / 750 * 100vw);
    width: 100%;
    max-width: 100%;
  }
}

.sec04__header {
  display: flex;
  flex-direction: column;
  gap: min(calc(10 / 1080 * 100vw), 10px);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sec04__header {
    gap: calc(10 / 750 * 100vw);
    padding: 0 calc(30 / 750 * 100vw);
  }
}

.sec04__sub {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: min(calc(20 / 1080 * 100vw), 20px);
  color: #dd5a48;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .sec04__sub {
    font-size: calc(30 / 750 * 100vw);
  }
}

.sec04__heading {
  margin: 0;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-size: min(calc(52 / 1080 * 100vw), 52px);
  color: #333;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .sec04__heading {
    font-size: calc(64 / 750 * 100vw);
  }
}

.sec04__grid {
  display: flex;
  gap: min(calc(10 / 1080 * 100vw), 10px);
  width: 100%;
}
.sec04__grid-item {
  flex: 0 0 min(calc(300 / 1080 * 100vw), 300px);
  overflow: hidden;
}
.sec04__slider {
  position: relative;
  width: 100%;
}
.sec04__slider-container {
  width: 100%;
  overflow: hidden;
}
.sec04__slider-container .swiper-slide .swiper-slide-inner {
  padding: 0 calc(30 / 750 * 100vw);
}
.sec04__slider-container .swiper-slide img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.sec04__slider .swiper-button-prev {
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='72' height='100' viewBox='0 0 72 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0H22C49.6142 0 72 22.3858 72 50V50C72 77.6142 49.6142 100 22 100H0V0Z' fill='%23EC6859'/%3E%3Cpath d='M37 38L23 50L37 62' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.sec04__slider .swiper-button-next,
.sec04__slider .swiper-button-prev {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(72 / 750 * 100vw);
  height: calc(100 / 750 * 100vw);
  cursor: pointer;
  pointer-events: auto;
  top: calc(130 / 750 * 100vw);
  margin: 0;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.sec04__slider .swiper-button-next::after,
.sec04__slider .swiper-button-prev::after {
  content: none;
  display: none;
}
.sec04__slider .swiper-button-next {
  background-image: url("data:image/svg+xml,%3Csvg width='72' height='100' viewBox='0 0 72 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M72 0L50 0C22.3858 0 0 22.3858 0 50V50C0 77.6142 22.3858 100 50 100H72L72 0Z' fill='%23EC6859'/%3E%3Cpath d='M35 38L49 50L35 62' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  right: 0;
}
.sec04__slider .swiper-pagination {
  position: relative;
  display: flex;
  justify-content: center;
  gap: calc(20 / 750 * 100vw);
  margin-top: calc(48 / 750 * 100vw);
  bottom: 0;
}
.sec04__slider .swiper-pagination .swiper-pagination-bullet {
  width: calc(20 / 750 * 100vw);
  height: calc(20 / 750 * 100vw);
  background-color: #ddd;
  border-radius: 50%;
  opacity: 1;
}
.sec04__slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ec6859;
}

.sec05 {
  background-color: #f9f9f9;
  padding: min(calc(80 / 1080 * 100vw), 80px) 0;
}
@media screen and (max-width: 767px) {
  .sec05 {
    padding: calc(100 / 750 * 100vw) 0;
  }
}

.sec05__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(40 / 1080 * 100vw), 40px);
  max-width: min(calc(920 / 1080 * 100vw), 920px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec05__inner {
    gap: calc(40 / 750 * 100vw);
    max-width: 100%;
    padding: 0 calc(30 / 750 * 100vw);
  }
}

.sec05__header {
  display: flex;
  flex-direction: column;
  gap: min(calc(10 / 1080 * 100vw), 10px);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sec05__header {
    gap: calc(10 / 750 * 100vw);
  }
}

.sec05__sub {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: min(calc(20 / 1080 * 100vw), 20px);
  color: #dd5a48;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .sec05__sub {
    font-size: calc(30 / 750 * 100vw);
  }
}
.sec05__sub span {
  display: inline;
}
@media screen and (max-width: 767px) {
  .sec05__sub span {
    display: block;
  }
}

.sec05__heading {
  margin: 0;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-size: min(calc(46 / 1080 * 100vw), 46px);
  color: #333;
  letter-spacing: 0.02em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .sec05__heading {
    font-size: calc(56 / 750 * 100vw);
    white-space: nowrap;
  }
}
.sec05__heading p {
  margin: 0;
  line-height: 1.6;
}

.sec05__content {
  display: flex;
  align-items: center;
  gap: min(calc(40 / 1080 * 100vw), 40px);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sec05__content {
    flex-direction: column;
    gap: calc(40 / 750 * 100vw);
  }
}

.sec05__photo {
  position: relative;
  flex-shrink: 0;
  width: min(calc(479 / 1080 * 100vw), 479px);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sec05__photo {
    width: 100%;
  }
}
.sec05__photo picture, .sec05__photo img {
  display: block;
  width: 100%;
  height: auto;
}

.sec05__badge {
  position: absolute;
  bottom: min(calc(20 / 1080 * 100vw), 20px);
  left: min(calc(20 / 1080 * 100vw), 20px);
  width: min(calc(150 / 1080 * 100vw), 150px);
  height: min(calc(150 / 1080 * 100vw), 150px);
}
@media screen and (max-width: 767px) {
  .sec05__badge {
    bottom: calc(30 / 750 * 100vw);
    left: calc(30 / 750 * 100vw);
    width: calc(220 / 750 * 100vw);
    height: calc(220 / 750 * 100vw);
    white-space: nowrap;
  }
}
.sec05__badge-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sec05__badge-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #dd5a48;
}
.sec05__badge-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .sec05__badge-label {
    font-size: calc(26 / 750 * 100vw);
  }
}
.sec05__badge-time {
  display: flex;
  justify-content: center;
  align-items: baseline;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  line-height: 1;
}
.sec05__badge-num {
  font-size: min(calc(46 / 1080 * 100vw), 46px);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .sec05__badge-num {
    font-size: calc(56 / 750 * 100vw);
  }
}
.sec05__badge-unit {
  font-size: min(calc(32 / 1080 * 100vw), 32px);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .sec05__badge-unit {
    font-size: calc(42 / 750 * 100vw);
  }
}

.sec05__text {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  color: #333;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .sec05__text {
    font-size: calc(26 / 750 * 100vw);
  }
}
.sec05__text p {
  margin: 0;
}

.sec06 {
  background-color: #f6f4e8;
  padding: min(calc(80 / 1080 * 100vw), 80px) 0;
}
@media screen and (max-width: 767px) {
  .sec06 {
    padding: calc(100 / 750 * 100vw) 0;
  }
}

.sec06__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(40 / 1080 * 100vw), 40px);
  max-width: min(calc(920 / 1080 * 100vw), 920px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec06__inner {
    gap: calc(40 / 750 * 100vw);
    max-width: 100%;
    padding: 0 calc(30 / 750 * 100vw);
  }
}

.sec06__header {
  display: flex;
  flex-direction: column;
  gap: max(calc(0 / 1080 * 100vw), 0px);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sec06__header {
    gap: calc(0 / 750 * 100vw);
  }
}

.sec06__sub {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: min(calc(20 / 1080 * 100vw), 20px);
  color: #dd5a48;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .sec06__sub {
    font-size: calc(30 / 750 * 100vw);
  }
}

.sec06__heading {
  margin: 0;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-size: min(calc(52 / 1080 * 100vw), 52px);
  color: #333;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .sec06__heading {
    margin: calc(10 / 750 * 100vw) 0 0;
    font-size: calc(64 / 750 * 100vw);
  }
}

.sec06__lead {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  color: #333;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin: min(calc(30 / 1080 * 100vw), 30px) 0 0;
}
@media screen and (max-width: 767px) {
  .sec06__lead {
    font-size: calc(26 / 750 * 100vw);
    margin: calc(40 / 750 * 100vw) 0 0;
  }
}

.sec06__marudai {
  display: flex;
  align-items: center;
  gap: min(calc(30 / 1080 * 100vw), 30px);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sec06__marudai {
    flex-direction: column;
    gap: calc(40 / 750 * 100vw);
  }
}
.sec06__marudai-photo {
  flex-shrink: 0;
  width: min(calc(460 / 1080 * 100vw), 460px);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sec06__marudai-photo {
    width: 100%;
  }
}
.sec06__marudai-photo img {
  display: block;
  width: 100%;
  height: auto;
}
.sec06__marudai-content {
  display: flex;
  flex-direction: column;
  gap: min(calc(20 / 1080 * 100vw), 20px);
  width: min(calc(430 / 1080 * 100vw), 430px);
}
@media screen and (max-width: 767px) {
  .sec06__marudai-content {
    gap: calc(20 / 750 * 100vw);
    width: 100%;
  }
}
.sec06__marudai-label {
  display: flex;
  align-items: center;
  gap: min(calc(22 / 1080 * 100vw), 22px);
}
@media screen and (max-width: 767px) {
  .sec06__marudai-label {
    gap: calc(32 / 750 * 100vw);
  }
}
.sec06__marudai-line {
  width: min(calc(153 / 1080 * 100vw), 153px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .sec06__marudai-line {
    width: calc(263 / 750 * 100vw);
  }
}
.sec06__marudai-title {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-size: min(calc(38 / 1080 * 100vw), 38px);
  color: #dd5a48;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .sec06__marudai-title {
    font-size: calc(48 / 750 * 100vw);
  }
}
.sec06__marudai-text {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  color: #333;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .sec06__marudai-text {
    font-size: calc(26 / 750 * 100vw);
  }
}

.sec06__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.sec06__card::before {
  content: "";
  display: block;
  width: 1px;
  height: min(calc(60 / 1080 * 100vw), 60px);
  background-color: #ec6859;
}
@media screen and (max-width: 767px) {
  .sec06__card::before {
    width: calc(2 / 750 * 100vw);
    height: calc(80 / 750 * 100vw);
  }
}
.sec06__card-inner {
  display: flex;
  gap: min(calc(33 / 1080 * 100vw), 33px);
  align-items: center;
  width: 100%;
  padding: min(calc(40 / 1080 * 100vw), 40px);
  background-color: #fff;
  border: 1px solid #ec6859;
}
@media screen and (max-width: 767px) {
  .sec06__card-inner {
    border: calc(2 / 750 * 100vw) solid #ec6859;
    flex-direction: column;
    gap: calc(40 / 750 * 100vw);
    padding: calc(40 / 750 * 100vw);
  }
}
.sec06__card-photo {
  flex-shrink: 0;
  width: min(calc(378 / 1080 * 100vw), 378px);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sec06__card-photo {
    width: calc(406 / 750 * 100vw);
  }
}
.sec06__card-photo img {
  display: block;
  width: 100%;
  height: auto;
}
.sec06__card-content {
  display: flex;
  flex-direction: column;
  gap: min(calc(33 / 1080 * 100vw), 33px);
}
@media screen and (max-width: 767px) {
  .sec06__card-content {
    gap: calc(40 / 750 * 100vw);
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .sec06__card .sec06__card-contentWrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: calc(30 / 750 * 100vw);
  }
}
.sec06__card-heading {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-size: min(calc(30 / 1080 * 100vw), 30px);
  color: #dd5a48;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .sec06__card-heading {
    flex: 0 0 auto;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: calc(20 / 750 * 100vw);
    font-size: calc(40 / 750 * 100vw);
  }
}
.sec06__card-heading p {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .sec06__card-heading p {
    line-height: 1;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-feature-settings: "vert" 1;
  }
}
.sec06__card-text {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  color: #333;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .sec06__card-text {
    font-size: calc(26 / 750 * 100vw);
  }
}

.sec07 {
  position: relative;
}

.sec07__hero {
  position: relative;
  height: min(calc(434 / 1080 * 100vw), 434px);
}
@media screen and (max-width: 767px) {
  .sec07__hero {
    height: calc(600 / 750 * 100vw);
  }
}
.sec07__hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sec07__hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sec07__hero-heading {
  position: absolute;
  top: 50%;
  left: min(calc(500 / 1080 * 100vw), 500px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: min(calc(10 / 1080 * 100vw), 10px);
}
@media screen and (max-width: 767px) {
  .sec07__hero-heading {
    margin: 0;
    top: calc(329 / 750 * 100vw);
    left: 0;
    transform: none;
    gap: calc(10 / 750 * 100vw);
  }
}
.sec07__hero-heading-line {
  margin: 0;
}
.sec07__hero-heading-line .inner {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.9);
  padding: min(calc(2 / 1080 * 100vw), 2px) min(calc(30 / 1080 * 100vw), 30px) min(calc(4 / 1080 * 100vw), 4px);
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-size: min(calc(38 / 1080 * 100vw), 38px);
  color: #333;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .sec07__hero-heading-line .inner {
    padding: calc(2 / 750 * 100vw) calc(30 / 750 * 100vw) calc(4 / 750 * 100vw);
    font-size: calc(48 / 750 * 100vw);
  }
}
.sec07__hero-heading-accent {
  color: #dd5a48;
}

.sec07__deco {
  position: absolute;
  z-index: 3;
  top: min(calc(332 / 1080 * 100vw), 332px);
  left: min(calc(960 / 1080 * 100vw), 960px);
  width: min(calc(138 / 1080 * 100vw), 138px);
}
@media screen and (max-width: 767px) {
  .sec07__deco {
    top: calc(498 / 750 * 100vw);
    left: calc(120 / 750 * 100vw);
    width: calc(128 / 750 * 100vw);
  }
}

.sec07__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(10 / 1080 * 100vw), 10px);
  padding: min(calc(40 / 1080 * 100vw), 40px) min(calc(60 / 1080 * 100vw), 60px);
  background-color: #f7efec;
}
@media screen and (max-width: 767px) {
  .sec07__cta {
    gap: calc(27 / 750 * 100vw);
    padding: calc(50 / 750 * 100vw) calc(60 / 750 * 100vw);
  }
}
.sec07__cta-text {
  margin: 0;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  color: #333;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec07__cta-text {
    font-size: calc(26 / 750 * 100vw);
  }
}
.sec07__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(calc(20 / 1080 * 100vw), 20px);
  width: min(calc(520 / 1080 * 100vw), 520px);
  height: min(calc(80 / 1080 * 100vw), 80px);
  background-color: #ec6859;
  border-radius: min(calc(70 / 1080 * 100vw), 70px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
  text-decoration: none;
  transition: opacity 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec07__cta-btn {
    gap: calc(30 / 750 * 100vw);
    width: calc(630 / 750 * 100vw);
    height: calc(130 / 750 * 100vw);
    border-radius: calc(70 / 750 * 100vw);
  }
}
.sec07__cta-btn:hover {
  opacity: 0.8;
}
.sec07__cta-btn span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: min(calc(22 / 1080 * 100vw), 22px);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .sec07__cta-btn span {
    font-size: calc(34 / 750 * 100vw);
  }
}
.sec07__cta-btn-icon {
  width: min(calc(23 / 1080 * 100vw), 23px);
  height: auto;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  right: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .sec07__cta-btn-icon {
    width: calc(44 / 750 * 100vw);
    right: calc(44 / 750 * 100vw);
  }
}

.sec08 {
  background-color: #fff;
  padding: min(calc(100 / 1080 * 100vw), 100px) 0;
}
@media screen and (max-width: 767px) {
  .sec08 {
    padding: calc(100 / 750 * 100vw) calc(30 / 750 * 100vw);
  }
}

.sec08__inner {
  max-width: min(calc(920 / 1080 * 100vw), 920px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: min(calc(60 / 1080 * 100vw), 60px);
}
@media screen and (max-width: 767px) {
  .sec08__inner {
    max-width: 100%;
    gap: calc(60 / 750 * 100vw);
  }
}

.sec08__heading {
  font-family: "Hina Mincho", serif;
  font-size: min(calc(30 / 1080 * 100vw), 30px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #333;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 767px) {
  .sec08__heading {
    font-size: calc(40 / 750 * 100vw);
    letter-spacing: 0.08em;
  }
}

.sec08__steps {
  display: flex;
  flex-direction: column;
  gap: min(calc(60 / 1080 * 100vw), 60px);
}
@media screen and (max-width: 767px) {
  .sec08__steps {
    gap: calc(60 / 750 * 100vw);
  }
}

.sec08__step {
  display: flex;
  align-items: center;
  gap: min(calc(16 / 1080 * 100vw), 16px);
}
@media screen and (max-width: 767px) {
  .sec08__step {
    flex-direction: column;
    align-items: flex-start;
    gap: calc(20 / 750 * 100vw);
  }
}
.sec08__step-header {
  display: flex;
  align-items: flex-start;
  gap: min(calc(16 / 1080 * 100vw), 16px);
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .sec08__step-header {
    gap: calc(22 / 750 * 100vw);
    width: 100%;
  }
}
.sec08__step-icon {
  display: flex;
  align-items: center;
  position: relative;
  width: min(calc(200 / 1080 * 100vw), 200px);
}
@media screen and (max-width: 767px) {
  .sec08__step-icon {
    width: calc(320 / 750 * 100vw);
  }
}
.sec08__step-num {
  font-family: "Hina Mincho", serif;
  font-size: min(calc(26 / 1080 * 100vw), 26px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #dd5a48;
  font-feature-settings: "palt" 1;
  width: min(calc(90 / 1080 * 100vw), 90px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec08__step-num {
    font-size: calc(36 / 750 * 100vw);
    width: calc(135 / 750 * 100vw);
    letter-spacing: 0.08em;
  }
}
.sec08__step-flower {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: auto;
}
.sec08__step-title {
  font-family: "Hina Mincho", serif;
  font-size: min(calc(26 / 1080 * 100vw), 26px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #dd5a48;
  font-feature-settings: "palt" 1;
  width: min(calc(200 / 1080 * 100vw), 200px);
}
@media screen and (max-width: 767px) {
  .sec08__step-title {
    font-size: calc(36 / 750 * 100vw);
    width: auto;
    flex: 1;
  }
}
.sec08__step-content {
  display: flex;
  align-items: center;
  gap: min(calc(30 / 1080 * 100vw), 30px);
  flex: 1;
}
@media screen and (max-width: 767px) {
  .sec08__step-content {
    width: 100%;
    justify-content: space-between;
    gap: calc(20 / 750 * 100vw);
  }
}
.sec08__step-photo {
  flex-shrink: 0;
  width: min(calc(198 / 1080 * 100vw), 198px);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sec08__step-photo {
    width: calc(314 / 750 * 100vw);
  }
}
.sec08__step-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec08__step-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #333;
  font-feature-settings: "palt" 1;
  text-align: justify;
  width: min(calc(263 / 1080 * 100vw), 263px);
}
@media screen and (max-width: 767px) {
  .sec08__step-text {
    font-size: calc(26 / 750 * 100vw);
    width: calc(343 / 750 * 100vw);
    letter-spacing: 0.08em;
  }
}
.sec08__step-text p {
  margin: 0;
}

.sec08__note {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(20 / 1080 * 100vw), 20px);
  padding: min(calc(20 / 1080 * 100vw), 20px) 0;
  border-top: 1px dashed #333;
  border-bottom: 1px dashed #333;
}
@media screen and (max-width: 767px) {
  .sec08__note {
    gap: calc(20 / 750 * 100vw);
    padding: calc(20 / 750 * 100vw) 0;
  }
}
.sec08__note-header {
  display: flex;
  align-items: center;
  gap: min(calc(23 / 1080 * 100vw), 23px);
}
@media screen and (max-width: 767px) {
  .sec08__note-header {
    gap: calc(23 / 750 * 100vw);
  }
}
.sec08__note-label {
  font-family: "Hina Mincho", serif;
  font-size: min(calc(26 / 1080 * 100vw), 26px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #dd5a48;
  font-feature-settings: "palt" 1;
  background-color: #f6f4e8;
  padding: 0 min(calc(10 / 1080 * 100vw), 10px);
}
@media screen and (max-width: 767px) {
  .sec08__note-label {
    font-size: calc(36 / 750 * 100vw);
    padding: 0 calc(10 / 750 * 100vw);
  }
}
.sec08__note-value {
  font-family: "Hina Mincho", serif;
  font-size: min(calc(26 / 1080 * 100vw), 26px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #dd5a48;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 767px) {
  .sec08__note-value {
    font-size: calc(36 / 750 * 100vw);
  }
}
.sec08__note-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #333;
  font-feature-settings: "palt" 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec08__note-text {
    font-size: calc(26 / 750 * 100vw);
  }
}

.sec09 {
  background-color: #f9f9f9;
  position: relative;
}

.sec09__inner {
  max-width: min(calc(920 / 1080 * 100vw), 920px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: min(calc(60 / 1080 * 100vw), 60px);
  position: relative;
  padding: min(calc(80 / 1080 * 100vw), 80px) 0;
}
@media screen and (max-width: 767px) {
  .sec09__inner {
    padding: calc(100 / 750 * 100vw) calc(30 / 750 * 100vw);
    max-width: 100%;
    gap: calc(60 / 750 * 100vw);
  }
}

.sec09__header {
  display: flex;
  flex-direction: column;
  gap: min(calc(8 / 1080 * 100vw), 8px);
}
@media screen and (max-width: 767px) {
  .sec09__header {
    gap: calc(8 / 750 * 100vw);
    width: calc(690 / 750 * 100vw);
  }
}

.sec09__sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(20 / 1080 * 100vw), 20px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #dd5a48;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 767px) {
  .sec09__sub {
    font-size: calc(30 / 750 * 100vw);
  }
}

.sec09__heading {
  font-family: "Hina Mincho", serif;
  font-size: min(calc(52 / 1080 * 100vw), 52px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #333;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 767px) {
  .sec09__heading {
    font-size: calc(64 / 750 * 100vw);
  }
}

.sec09__deco {
  position: absolute;
  top: min(calc(132 / 1080 * 100vw), 132px);
  right: min(calc(60 / 1080 * 100vw), 60px);
  width: min(calc(120 / 1080 * 100vw), 120px);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .sec09__deco {
    top: calc(68 / 750 * 100vw);
    right: calc(30 / 750 * 100vw);
    width: calc(183 / 750 * 100vw);
  }
}
.sec09__deco img {
  width: 100%;
  height: auto;
}

.sec09__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(40 / 1080 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .sec09__contents {
    align-items: flex-start;
    gap: calc(40 / 750 * 100vw);
  }
}

.sec09__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: min(calc(16 / 1080 * 100vw), 16px);
  width: min(calc(920 / 1080 * 100vw), 920px);
}
@media screen and (max-width: 767px) {
  .sec09__tabs {
    width: calc(690 / 750 * 100vw);
    gap: calc(15 / 750 * 100vw);
  }
}

.sec09__tab {
  width: min(calc(140 / 1080 * 100vw), 140px);
  height: min(calc(50 / 1080 * 100vw), 50px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(22 / 1080 * 100vw), 22px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #ca847b;
  background-color: #feeeee;
  border: 1px solid #ca847b;
  box-shadow: 4px 4px 0 0 rgba(143, 114, 114, 0.25);
  cursor: pointer;
  transition: all 0.3s;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 767px) {
  .sec09__tab {
    width: calc(220 / 750 * 100vw);
    height: calc(80 / 750 * 100vw);
    font-size: calc(32 / 750 * 100vw);
  }
}
.sec09__tab.--active {
  background-color: #ec6859;
  color: #fff;
  border: none;
  box-shadow: 4px 4px 0 0 rgba(181, 43, 43, 0.3);
}
.sec09__tab:hover {
  opacity: 0.8;
}

.sec09__map {
  width: min(calc(470 / 1080 * 100vw), 470px);
  margin: 0 auto min(calc(40 / 1080 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .sec09__map {
    width: 100%;
    margin: 0 auto calc(40 / 750 * 100vw);
  }
}
.sec09__map-placeholder {
  width: 100%;
  height: 100%;
  background-color: #f0e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: min(calc(14 / 1080 * 100vw), 14px);
}
@media screen and (max-width: 767px) {
  .sec09__map-placeholder {
    font-size: calc(24 / 750 * 100vw);
  }
}

.sec09__schools {
  width: 100%;
}

.sec09__school-boxList {
  width: min(calc(920 / 1080 * 100vw), 920px);
  background-color: #fff;
  padding: min(calc(40 / 1080 * 100vw), 40px) min(calc(20 / 1080 * 100vw), 20px) min(calc(56 / 1080 * 100vw), 56px);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: min(calc(32 / 1080 * 100vw), 32px);
}
@media screen and (max-width: 767px) {
  .sec09__school-boxList {
    gap: calc(40 / 750 * 100vw);
    padding: calc(40 / 750 * 100vw) calc(30 / 750 * 100vw) calc(56 / 750 * 100vw);
  }
}
.sec09__school-box {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: min(calc(32 / 1080 * 100vw), 32px);
}
@media screen and (max-width: 767px) {
  .sec09__school-box {
    align-items: flex-start;
    gap: calc(32 / 750 * 100vw);
  }
}
.sec09__school-name {
  width: min(calc(410 / 1080 * 100vw), 410px);
  height: min(calc(50 / 1080 * 100vw), 50px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(22 / 1080 * 100vw), 22px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #ec6859;
  border-top: 1px solid #ec6859;
  border-bottom: 1px solid #ec6859;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 767px) {
  .sec09__school-name {
    width: calc(610 / 750 * 100vw);
    height: calc(63 / 750 * 100vw);
    font-size: calc(32 / 750 * 100vw);
  }
}
.sec09__school-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(24 / 1080 * 100vw), 24px);
  width: min(calc(410 / 1080 * 100vw), 410px);
}
@media screen and (max-width: 767px) {
  .sec09__school-info {
    width: calc(610 / 750 * 100vw);
    gap: calc(24 / 750 * 100vw);
  }
}
.sec09__school-item {
  display: flex;
  align-items: flex-start;
  gap: min(calc(18 / 1080 * 100vw), 18px);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sec09__school-item {
    gap: calc(18 / 750 * 100vw);
  }
}
.sec09__school-item.--tel {
  align-items: center;
}
.sec09__school-label {
  width: min(calc(80 / 1080 * 100vw), 80px);
  height: min(calc(30 / 1080 * 100vw), 30px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #fff;
  flex-shrink: 0;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 767px) {
  .sec09__school-label {
    width: calc(126 / 750 * 100vw);
    height: calc(40 / 750 * 100vw);
    font-size: calc(26 / 750 * 100vw);
  }
}
.sec09__school-value {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #333;
  text-align: justify;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 767px) {
  .sec09__school-value {
    font-size: calc(26 / 750 * 100vw);
  }
}
.sec09__school-value p {
  margin: 0;
}
.sec09__school-tel {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(24 / 1080 * 100vw), 24px);
  font-weight: 700;
  line-height: 1.6;
  color: #ec6859;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 767px) {
  .sec09__school-tel {
    font-size: calc(28 / 750 * 100vw);
  }
}
.sec09__school-tel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(10 / 750 * 100vw);
  width: calc(380 / 750 * 100vw);
  height: calc(58 / 750 * 100vw);
  background-color: #006634;
  border-radius: calc(14 / 750 * 100vw);
  box-shadow: 0 4px 0 0 #123217;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(28 / 750 * 100vw);
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
  font-feature-settings: "palt" 1;
  position: relative;
  padding-left: calc(46 / 750 * 100vw);
  padding-right: calc(50 / 750 * 100vw);
}
.sec09__school-tel-btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 0 #123217;
}
.sec09__school-tel-icon {
  width: calc(41 / 750 * 100vw);
  height: calc(41 / 750 * 100vw);
}
.sec09__school-tel-arrow {
  position: absolute;
  right: calc(23 / 750 * 100vw);
  top: 50%;
  transform: translateY(-50%);
  width: calc(24 / 750 * 100vw);
  height: calc(26 / 750 * 100vw);
}

.sec10 {
  background-color: #fff;
  padding: min(calc(100 / 1080 * 100vw), 100px) 0;
}
@media screen and (max-width: 767px) {
  .sec10 {
    padding: calc(100 / 750 * 100vw) calc(30 / 750 * 100vw);
  }
}

.sec10__inner {
  max-width: min(calc(920 / 1080 * 100vw), 920px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: min(calc(62 / 1080 * 100vw), 62px);
}
@media screen and (max-width: 767px) {
  .sec10__inner {
    max-width: 100%;
    gap: calc(60 / 750 * 100vw);
  }
}

.sec10__header {
  display: flex;
  flex-direction: column;
  gap: min(calc(8 / 1080 * 100vw), 8px);
}
@media screen and (max-width: 767px) {
  .sec10__header {
    gap: calc(8 / 750 * 100vw);
  }
}

.sec10__sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(20 / 1080 * 100vw), 20px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #dd5a48;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 767px) {
  .sec10__sub {
    font-size: calc(30 / 750 * 100vw);
  }
}

.sec10__heading {
  font-family: "Hina Mincho", serif;
  font-size: min(calc(52 / 1080 * 100vw), 52px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #333;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 767px) {
  .sec10__heading {
    font-size: calc(64 / 750 * 100vw);
  }
}

.sec10__accordion {
  display: flex;
  flex-direction: column;
  gap: min(calc(24 / 1080 * 100vw), 24px);
}
@media screen and (max-width: 767px) {
  .sec10__accordion {
    gap: calc(24 / 750 * 100vw);
  }
}

.sec10__item {
  border: 1px solid #ec6859;
}
.sec10__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: min(calc(60 / 1080 * 100vw), 60px);
  padding: min(calc(20 / 1080 * 100vw), 20px) min(calc(80 / 1080 * 100vw), 80px);
  background-color: #ffdeda;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .sec10__item-header {
    gap: calc(30 / 750 * 100vw);
    padding: calc(20 / 750 * 100vw) calc(30 / 750 * 100vw);
  }
}
.sec10__item-header:hover {
  opacity: 0.8;
}
.sec10__item-header.--open .sec10__item-icon::after {
  opacity: 0;
}
.sec10__item-question {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(20 / 1080 * 100vw), 20px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #333;
  text-align: justify;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 767px) {
  .sec10__item-question {
    font-size: calc(28 / 750 * 100vw);
  }
}
.sec10__item-icon {
  width: min(calc(18 / 1080 * 100vw), 18px);
  height: min(calc(18 / 1080 * 100vw), 18px);
  position: relative;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .sec10__item-icon {
    width: calc(28 / 750 * 100vw);
    height: calc(28 / 750 * 100vw);
  }
}
.sec10__item-icon::before, .sec10__item-icon::after {
  content: "";
  position: absolute;
  background-color: #ec6859;
  transition: transform 0.3s;
}
.sec10__item-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .sec10__item-icon::before {
    height: 3px;
  }
}
.sec10__item-icon::after {
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .sec10__item-icon::after {
    width: 3px;
  }
}
.sec10__item-body {
  padding: max(calc(0 / 1080 * 100vw), 0px) min(calc(80 / 1080 * 100vw), 80px);
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .sec10__item-body {
    padding: calc(0 / 750 * 100vw) calc(30 / 750 * 100vw);
  }
}
.sec10__item-answer {
  padding: min(calc(20 / 1080 * 100vw), 20px) max(calc(0 / 1080 * 100vw), 0px);
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #333;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .sec10__item-answer {
    padding: calc(20 / 750 * 100vw) calc(0 / 750 * 100vw);
    font-size: calc(26 / 750 * 100vw);
  }
}
.sec10__item-answer p {
  margin: 0;
}
.sec10__item.--open .sec10__item-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.sec10__item.--closed .sec10__item-body {
  display: none;
}

.cv03 {
  background-color: #f7efec;
  padding: min(calc(40 / 1080 * 100vw), 40px) min(calc(60 / 1080 * 100vw), 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(calc(10 / 1080 * 100vw), 10px);
}
@media screen and (max-width: 767px) {
  .cv03 {
    padding: calc(50 / 750 * 100vw) calc(60 / 750 * 100vw);
    gap: calc(27 / 750 * 100vw);
  }
}

.cv03__lead {
  font-family: "Hina Mincho", serif;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #333;
  text-align: center;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 767px) {
  .cv03__lead {
    font-size: calc(26 / 750 * 100vw);
  }
}

.cv03__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(520 / 1080 * 100vw), 520px);
  height: min(calc(80 / 1080 * 100vw), 80px);
  background-color: #ec6859;
  border-radius: min(calc(70 / 1080 * 100vw), 70px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
  text-decoration: none;
  transition: opacity 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cv03__btn {
    width: calc(630 / 750 * 100vw);
    height: calc(130 / 750 * 100vw);
    border-radius: calc(70 / 750 * 100vw);
  }
}
.cv03__btn:hover {
  opacity: 0.8;
}
.cv03__btn span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(22 / 1080 * 100vw), 22px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cv03__btn span {
    font-size: calc(32 / 750 * 100vw);
  }
}
.cv03__btn-icon {
  position: absolute;
  right: min(calc(40 / 1080 * 100vw), 40px);
  top: 50%;
  transform: translateY(-50%);
  width: min(calc(23 / 1080 * 100vw), 23px);
  height: min(calc(24 / 1080 * 100vw), 24px);
}
@media screen and (max-width: 767px) {
  .cv03__btn-icon {
    right: calc(60 / 750 * 100vw);
    width: calc(44 / 750 * 100vw);
    height: calc(44 / 750 * 100vw);
  }
}

.sec15 {
  position: relative;
  background-color: #f9f9f9;
  padding: min(calc(80 / 1080 * 100vw), 80px) 0 min(calc(100 / 1080 * 100vw), 100px);
}
@media screen and (max-width: 767px) {
  .sec15 {
    padding: calc(100 / 750 * 100vw) calc(30 / 750 * 100vw) calc(120 / 750 * 100vw);
  }
}

.sec09__header {
  display: flex;
  flex-direction: column;
  gap: min(calc(8 / 1080 * 100vw), 8px);
  margin: 0 0 min(calc(50 / 1080 * 100vw), 50px);
}
@media screen and (max-width: 767px) {
  .sec09__header {
    gap: calc(8 / 750 * 100vw);
    width: calc(690 / 750 * 100vw);
  }
}

.sec09__sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(20 / 1080 * 100vw), 20px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #dd5a48;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 767px) {
  .sec09__sub {
    font-size: calc(30 / 750 * 100vw);
  }
}

.sec09__heading {
  font-family: "Hina Mincho", serif;
  font-size: min(calc(52 / 1080 * 100vw), 52px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #333;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 767px) {
  .sec09__heading {
    font-size: calc(64 / 750 * 100vw);
  }
}

.sec09__deco {
  position: absolute;
  top: min(calc(102 / 1080 * 100vw), 102px);
  right: min(calc(560 / 1080 * 100vw), 560px);
  width: min(calc(120 / 1080 * 100vw), 120px);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .sec09__deco {
    top: calc(68 / 750 * 100vw);
    right: calc(30 / 750 * 100vw);
    width: calc(183 / 750 * 100vw);
  }
}
.sec09__deco img {
  width: 100%;
  height: auto;
}

.sec15__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: min(calc(8 / 1080 * 100vw), 8px);
  margin-bottom: min(calc(60 / 1080 * 100vw), 60px);
  max-width: min(calc(920 / 1080 * 100vw), 920px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .sec15__heading {
    gap: calc(16 / 750 * 100vw);
    margin-bottom: calc(60 / 750 * 100vw);
    max-width: none;
  }
}

.sec15__heading-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: min(calc(20 / 1080 * 100vw), 20px);
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #dd5a48;
}
@media screen and (max-width: 767px) {
  .sec15__heading-sub {
    font-size: calc(32 / 750 * 100vw);
  }
}

.sec15__heading-main {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-size: min(calc(52 / 1080 * 100vw), 52px);
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #333;
}
@media screen and (max-width: 767px) {
  .sec15__heading-main {
    font-size: calc(68 / 750 * 100vw);
  }
}

.sec15__container {
  max-width: min(calc(920 / 1080 * 100vw), 920px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec15__container {
    max-width: none;
  }
}

.sec15 .adlp-tab__head__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: min(calc(16 / 1080 * 100vw), 16px);
}
@media screen and (max-width: 767px) {
  .sec15 .adlp-tab__head__wrapper {
    gap: calc(15 / 750 * 100vw);
  }
}
.sec15 .adlp-tab__head {
  flex: 0 0 min(calc(140 / 1080 * 100vw), 140px);
  height: min(calc(50 / 1080 * 100vw), 50px);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #feeeee;
  border: 1px solid #ca847b;
  box-shadow: min(calc(4 / 1080 * 100vw), 4px) min(calc(4 / 1080 * 100vw), 4px) 0 0 rgba(143, 114, 114, 0.25);
  cursor: pointer;
  color: #ca847b;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(22 / 1080 * 100vw), 22px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .sec15 .adlp-tab__head {
    flex: 0 0 calc(220 / 750 * 100vw);
    height: calc(80 / 750 * 100vw);
    box-shadow: calc(6 / 750 * 100vw) calc(6 / 750 * 100vw) 0 0 rgba(143, 114, 114, 0.25);
    font-size: calc(34 / 750 * 100vw);
  }
}
.sec15 .adlp-tab__head.--active {
  background-color: #ec6859;
  border-color: #ec6859;
  box-shadow: min(calc(4 / 1080 * 100vw), 4px) min(calc(4 / 1080 * 100vw), 4px) 0 0 rgba(181, 43, 43, 0.3);
  color: #fff;
}
@media screen and (max-width: 767px) {
  .sec15 .adlp-tab__head.--active {
    box-shadow: calc(6 / 750 * 100vw) calc(6 / 750 * 100vw) 0 0 rgba(181, 43, 43, 0.3);
  }
}
.sec15 .adlp-tab__content__wrapper {
  padding-top: min(calc(40 / 1080 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .sec15 .adlp-tab__content__wrapper {
    padding-top: calc(40 / 750 * 100vw);
  }
}
.sec15 .adlp-tab__content {
  display: none;
}
.sec15 .adlp-tab__content.--active {
  display: block;
}
.sec15 .adlp-tab__body {
  position: relative;
}

.sec15__mapWrapper {
  width: min(calc(470 / 1080 * 100vw), 470px);
  margin: 0 auto min(calc(40 / 1080 * 100vw), 40px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec15__mapWrapper {
    width: 100%;
    margin-bottom: calc(0 / 750 * 100vw);
  }
}

.sec15__map {
  position: relative;
  z-index: 1;
}

.sec15__mapLink {
  position: absolute;
  z-index: 2;
  height: min(calc(35 / 1080 * 100vw), 35px);
  border-radius: 99px;
  opacity: 0;
  display: block;
  filter: blur(min(calc(2 / 1080 * 100vw), 2px));
}
@media screen and (max-width: 767px) {
  .sec15__mapLink {
    height: calc(51 / 750 * 100vw);
  }
}
.sec15__mapLink.--item01 {
  top: min(calc(184 / 1080 * 100vw), 184px);
  left: min(calc(306 / 1080 * 100vw), 306px);
  width: min(calc(108 / 1080 * 100vw), 108px);
}
@media screen and (max-width: 767px) {
  .sec15__mapLink.--item01 {
    top: calc(271 / 750 * 100vw);
    left: calc(450 / 750 * 100vw);
    width: calc(150 / 750 * 100vw);
  }
}
.sec15__mapLink.--item02 {
  top: min(calc(36 / 1080 * 100vw), 36px);
  left: min(calc(224 / 1080 * 100vw), 224px);
  width: min(calc(106 / 1080 * 100vw), 106px);
}
@media screen and (max-width: 767px) {
  .sec15__mapLink.--item02 {
    top: calc(46 / 750 * 100vw);
    left: calc(331 / 750 * 100vw);
    width: calc(150 / 750 * 100vw);
  }
}
.sec15__mapLink.--item03 {
  top: min(calc(158 / 1080 * 100vw), 158px);
  left: min(calc(60 / 1080 * 100vw), 60px);
  width: min(calc(106 / 1080 * 100vw), 106px);
}
@media screen and (max-width: 767px) {
  .sec15__mapLink.--item03 {
    top: calc(210 / 750 * 100vw);
    left: calc(91 / 750 * 100vw);
    width: calc(150 / 750 * 100vw);
  }
}
.sec15__mapLink.--item04 {
  top: min(calc(202 / 1080 * 100vw), 202px);
  left: min(calc(52 / 1080 * 100vw), 52px);
  width: min(calc(163 / 1080 * 100vw), 163px);
}
@media screen and (max-width: 767px) {
  .sec15__mapLink.--item04 {
    top: calc(271 / 750 * 100vw);
    left: calc(76 / 750 * 100vw);
    width: calc(240 / 750 * 100vw);
  }
}
.sec15__mapLink.--item05 {
  top: min(calc(103 / 1080 * 100vw), 103px);
  left: min(calc(145 / 1080 * 100vw), 145px);
  width: min(calc(106 / 1080 * 100vw), 106px);
}
@media screen and (max-width: 767px) {
  .sec15__mapLink.--item05 {
    top: calc(136 / 750 * 100vw);
    left: calc(215 / 750 * 100vw);
    width: calc(150 / 750 * 100vw);
  }
}
.sec15__mapLink.--item06 {
  top: min(calc(153 / 1080 * 100vw), 153px);
  left: min(calc(321 / 1080 * 100vw), 321px);
  width: min(calc(106 / 1080 * 100vw), 106px);
}
@media screen and (max-width: 767px) {
  .sec15__mapLink.--item06 {
    top: calc(203 / 750 * 100vw);
    left: calc(473 / 750 * 100vw);
    width: calc(150 / 750 * 100vw);
  }
}
.sec15__mapLink.--item07 {
  top: min(calc(84 / 1080 * 100vw), 84px);
  left: min(calc(291 / 1080 * 100vw), 291px);
  width: min(calc(130 / 1080 * 100vw), 130px);
}
@media screen and (max-width: 767px) {
  .sec15__mapLink.--item07 {
    top: calc(111 / 750 * 100vw);
    left: calc(430 / 750 * 100vw);
    width: calc(184 / 750 * 100vw);
  }
}
.sec15__mapLink.--item08 {
  top: min(calc(116 / 1080 * 100vw), 116px);
  left: min(calc(10 / 1080 * 100vw), 10px);
  width: min(calc(130 / 1080 * 100vw), 130px);
}
@media screen and (max-width: 767px) {
  .sec15__mapLink.--item08 {
    top: calc(153 / 750 * 100vw);
    left: calc(17 / 750 * 100vw);
    width: calc(184 / 750 * 100vw);
  }
}
.sec15__mapLink.--item09 {
  top: min(calc(220 / 1080 * 100vw), 220px);
  left: min(calc(283 / 1080 * 100vw), 283px);
  width: min(calc(106 / 1080 * 100vw), 106px);
}
@media screen and (max-width: 767px) {
  .sec15__mapLink.--item09 {
    top: calc(293 / 750 * 100vw);
    left: calc(418 / 750 * 100vw);
    width: calc(150 / 750 * 100vw);
  }
}
.sec15__mapLink.--item10 {
  top: min(calc(282 / 1080 * 100vw), 282px);
  left: min(calc(134 / 1080 * 100vw), 134px);
  width: min(calc(154 / 1080 * 100vw), 154px);
}
@media screen and (max-width: 767px) {
  .sec15__mapLink.--item10 {
    top: calc(377 / 750 * 100vw);
    left: calc(201 / 750 * 100vw);
    width: calc(219 / 750 * 100vw);
  }
}
.sec15__mapLink.--item11 {
  top: min(calc(118 / 1080 * 100vw), 118px);
  left: min(calc(51 / 1080 * 100vw), 51px);
  width: min(calc(130 / 1080 * 100vw), 130px);
}
@media screen and (max-width: 767px) {
  .sec15__mapLink.--item11 {
    top: calc(155 / 750 * 100vw);
    left: calc(81 / 750 * 100vw);
    width: calc(184 / 750 * 100vw);
  }
}
.sec15__mapLink.--item12 {
  top: min(calc(94 / 1080 * 100vw), 94px);
  left: min(calc(221 / 1080 * 100vw), 221px);
  width: min(calc(154 / 1080 * 100vw), 154px);
}
@media screen and (max-width: 767px) {
  .sec15__mapLink.--item12 {
    top: calc(123 / 750 * 100vw);
    left: calc(328 / 750 * 100vw);
    width: calc(219 / 750 * 100vw);
  }
}
.sec15__mapLink.--item13 {
  top: min(calc(196 / 1080 * 100vw), 196px);
  left: min(calc(273 / 1080 * 100vw), 273px);
  width: min(calc(130 / 1080 * 100vw), 130px);
}
@media screen and (max-width: 767px) {
  .sec15__mapLink.--item13 {
    top: calc(260 / 750 * 100vw);
    left: calc(404 / 750 * 100vw);
    width: calc(184 / 750 * 100vw);
  }
}
.sec15__mapLink.--item14 {
  top: min(calc(85 / 1080 * 100vw), 85px);
  left: min(calc(87 / 1080 * 100vw), 87px);
  width: min(calc(106 / 1080 * 100vw), 106px);
}
@media screen and (max-width: 767px) {
  .sec15__mapLink.--item14 {
    top: calc(110 / 750 * 100vw);
    left: calc(130 / 750 * 100vw);
    width: calc(150 / 750 * 100vw);
  }
}
.sec15__mapLink.--item15 {
  top: min(calc(127 / 1080 * 100vw), 127px);
  left: min(calc(173 / 1080 * 100vw), 173px);
  width: min(calc(106 / 1080 * 100vw), 106px);
}
@media screen and (max-width: 767px) {
  .sec15__mapLink.--item15 {
    top: calc(168 / 750 * 100vw);
    left: calc(257 / 750 * 100vw);
    width: calc(150 / 750 * 100vw);
  }
}
.sec15__mapLink.--item16 {
  top: min(calc(103 / 1080 * 100vw), 103px);
  left: min(calc(205 / 1080 * 100vw), 205px);
  width: min(calc(154 / 1080 * 100vw), 154px);
}
@media screen and (max-width: 767px) {
  .sec15__mapLink.--item16 {
    top: calc(136 / 750 * 100vw);
    left: calc(304 / 750 * 100vw);
    width: calc(219 / 750 * 100vw);
  }
}

.sec15__box {
  background: #ffffff;
  padding: min(calc(40 / 1080 * 100vw), 40px) min(calc(20 / 1080 * 100vw), 20px) min(calc(56 / 1080 * 100vw), 56px);
}
@media screen and (max-width: 767px) {
  .sec15__box {
    padding: calc(40 / 750 * 100vw) calc(30 / 750 * 100vw) calc(56 / 750 * 100vw);
  }
}

.sec15__schools {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(calc(40 / 1080 * 100vw), 40px) min(calc(40 / 1080 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .sec15__schools {
    grid-template-columns: 1fr;
    gap: calc(40 / 750 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .sec15__schools.--center {
    display: flex;
    justify-content: center;
  }
}
.sec15__school {
  display: flex;
  flex-direction: column;
  gap: min(calc(32 / 1080 * 100vw), 32px);
  padding-top: min(calc(30 / 1080 * 100vw), 30px);
  margin-top: max(calc(-30 / 1080 * 100vw), -30px);
}
@media screen and (max-width: 767px) {
  .sec15__school {
    gap: calc(32 / 750 * 100vw);
    padding-top: calc(30 / 750 * 100vw);
    margin-top: calc(-30 / 750 * 100vw);
  }
}

.sec15__school-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: min(calc(22 / 1080 * 100vw), 22px);
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #ec6859;
  padding: min(calc(7 / 1080 * 100vw), 7px) 0;
  border-top: 1px solid #ec6859;
  border-bottom: 1px solid #ec6859;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec15__school-name {
    font-size: calc(34 / 750 * 100vw);
    padding: calc(6 / 750 * 100vw) 0;
  }
}

.sec15__school-info {
  display: flex;
  flex-direction: column;
  gap: min(calc(24 / 1080 * 100vw), 24px);
}
@media screen and (max-width: 767px) {
  .sec15__school-info {
    gap: calc(24 / 750 * 100vw);
  }
}

.sec15__info-item {
  display: flex;
  gap: min(calc(18 / 1080 * 100vw), 18px);
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .sec15__info-item {
    gap: calc(18 / 750 * 100vw);
  }
}

.sec15__info-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(calc(80 / 1080 * 100vw), 80px);
  height: min(calc(30 / 1080 * 100vw), 30px);
  background: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #ffffff;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .sec15__info-label {
    width: calc(126 / 750 * 100vw);
    height: calc(40 / 750 * 100vw);
    font-size: calc(24 / 750 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .sec15__info-label.--tel {
    display: none;
  }
}

.sec15__info-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: min(calc(16 / 1080 * 100vw), 16px);
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #333;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .sec15__info-text {
    font-size: calc(24 / 750 * 100vw);
  }
}

.sec15__tel-number {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: min(calc(24 / 1080 * 100vw), 24px);
  line-height: 1.6;
}
.sec15__tel-number a {
  color: #ec6859;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .sec15__tel-number {
    width: 100%;
  }
  .sec15__tel-number a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(380 / 750 * 100vw);
    height: calc(58 / 750 * 100vw);
    background: #006634;
    border-radius: calc(14 / 750 * 100vw);
    color: #ffffff;
    margin: 0 auto;
    position: relative;
    box-shadow: 0px calc(4 / 750 * 100vw) 0px 0px #123217;
    font-size: calc(28 / 750 * 100vw);
    gap: calc(10 / 750 * 100vw);
    line-height: 1;
  }
  .sec15__tel-number a::before {
    content: "";
    display: block;
    width: calc(36 / 750 * 100vw);
    aspect-ratio: 1/1;
    background: url("../img/common/icon_tel_white.svg") no-repeat center/contain;
    position: absolute;
    left: calc(40 / 750 * 100vw);
    top: 50%;
    transform: translateY(-50%);
  }
  .sec15__tel-number a::after {
    content: "";
    display: block;
    width: calc(24 / 750 * 100vw);
    aspect-ratio: 24/26;
    background: url("../img/common/icon_arrow_white.svg") no-repeat center/contain;
    position: absolute;
    right: calc(23 / 750 * 100vw);
    top: 50%;
    transform: translateY(-50%);
  }
}

.sec15__area-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: min(calc(28 / 1080 * 100vw), 28px);
  line-height: 1.4;
  letter-spacing: 0.14em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .sec15__area-title {
    font-size: calc(38 / 750 * 100vw);
  }
}

.footer {
  padding: min(calc(60 / 1080 * 100vw), 60px) 0 min(calc(80 / 1080 * 100vw), 80px);
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: calc(80 / 750 * 100vw) 0 calc(100 / 750 * 100vw);
  }
}

.footer__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(calc(60 / 1080 * 100vw), 60px);
}
@media screen and (max-width: 767px) {
  .footer__menu {
    flex-direction: column;
    gap: calc(60 / 750 * 100vw);
  }
}
.footer__menu-item a {
  font-size: min(calc(14 / 1080 * 100vw), 14px);
  color: #333;
  letter-spacing: 0.08em;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 767px) {
  .footer__menu-item a {
    font-size: calc(24 / 750 * 100vw);
  }
}

.footer__copyright {
  margin-top: min(calc(60 / 1080 * 100vw), 60px);
  font-size: min(calc(12 / 1080 * 100vw), 12px);
  color: #666;
  letter-spacing: 0.08em;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    margin-top: calc(100 / 750 * 100vw);
    font-size: calc(22 / 750 * 100vw);
  }
}
/*# sourceMappingURL=lp.css.map */
