@charset "UTF-8";

/* リキッドレイアウト対応 */
body {
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 768px) {
  body {
    touch-action: pan-x pan-y;
  }
}

main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-sp {
    display: block;
  }
}

.disnon {
  display: none;
}

html {
  font-size: 1.1713030747vw;
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 4.2666666667vw;
  }
}

@media (min-width: 1366px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: initial;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media screen and (max-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
/* img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
  filter: blur(10px);
} */

/* フォームリセット */
/* input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

*:focus {
  outline: none;
} */

.accordion {
  margin-right: auto;
  margin-left: auto;
  max-width: 970px;
  max-width: 60.625rem;
}

.accordion__item {
  background-color: #fff;
  border: 1px solid #d5323c;
  border-radius: 0.625rem;
}

.accordion__item + .accordion__item {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

@media screen and (max-width: 768px) {
  .accordion__item + .accordion__item {
    margin-top: 8px;
    margin-top: 0.5rem;
  }
}

.accordion__question {
  padding-top: 18px;
  padding-top: 1.125rem;
  padding-right: 21px;
  padding-right: 1.3125rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  padding-left: 23px;
  padding-left: 1.4375rem;
  border-top-right-radius: 10px;
  border-top-right-radius: 0.625rem;
  border-top-left-radius: 10px;
  border-top-left-radius: 0.625rem;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 768px) {
  .accordion__question {
    padding-top: 16px;
    padding-top: 1rem;
    padding-right: 15px;
    padding-right: 0.9375rem;
    padding-bottom: 15px;
    padding-bottom: 0.9375rem;
    padding-left: 15px;
    padding-left: 0.9375rem;
  }
}

/* 開閉の＋ーの実装 共通部分*/
.accordion__question::before,
.accordion__question::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #d5323c;
}

/* 開閉の＋ーの実装 こちらはー*/
.accordion__question::before {
  width: 20px;
  width: 1.25rem;
  height: 2px;
  right: 23px;
  right: 1.4375rem;
}

@media screen and (max-width: 768px) {
  .accordion__question::before {
    right: 16px;
    right: 1rem;
  }
}

/* 開閉の＋ーの実装 こちらは｜*/
.accordion__question::after {
  width: 2px;
  height: 20px;
  height: 1.25rem;
  right: 32px;
  right: 2rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

@media screen and (max-width: 1024px) {
  .accordion__question::after {
    right: 31px;
    right: 1.9375rem;
  }
}

@media screen and (max-width: 768px) {
  .accordion__question::after {
    right: 25px;
    right: 1.5625rem;
  }
}

/* 縦線（after）だけ縦回転させる */
.accordion__question.open:after {
  top: 40%;
  /* 適宜調整 */
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  opacity: 0;
}

.accordion__question.open {
  background-color: #fff6f2;
}

.accordion__q-text.open {
  color: #d5323c;
}

.accordion__q-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #000;
}

@media screen and (max-width: 768px) {
  .accordion__q-text {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.accordion__q-text::before {
  margin-right: 16px;
  margin-right: 1rem;
  content: "";
  display: inline-block;
  width: 19.82px;
  width: 1.23875rem;
  height: 22.64px;
  height: 1.415rem;
  background-image: url(../images/common/home-icon.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .accordion__q-text::before {
    margin-right: 9px;
    margin-right: 0.5625rem;
  }
}

.accordion__answer {
  display: none;
  padding-top: 17px;
  padding-top: 1.0625rem;
  padding-right: 23px;
  padding-right: 1.4375rem;
  padding-bottom: 21px;
  padding-bottom: 1.3125rem;
  padding-left: 21px;
  padding-left: 1.3125rem;
  border-top: 1px solid #d5323c;
}

@media screen and (max-width: 768px) {
  .accordion__answer {
    padding-top: 14px;
    padding-top: 0.875rem;
    padding-right: 14px;
    padding-right: 0.875rem;
    padding-bottom: 13px;
    padding-bottom: 0.8125rem;
    padding-left: 15px;
    padding-left: 0.9375rem;
  }
}

.accordion__a-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4285714286;
  color: #000;
}

.common-title {
  text-align: center;
}

.common-title__en {
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  line-height: 1.2222222222;
  letter-spacing: 0.14em;
  color: #d5323c;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .common-title__en {
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 1.2307692308;
  }
}

.common-title__ja {
  margin-top: 26px;
  margin-top: 1.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 42px;
  font-size: 2.625rem;
  font-weight: 600;
  line-height: 1.1904761905;
  letter-spacing: 0.1em;
  color: #000;
}

@media screen and (max-width: 768px) {
  .common-title__ja {
    margin-top: 9px;
    margin-top: 0.5625rem;
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.0909090909;
  }
}

.common-title__ja::before {
  margin-top: 6px;
  margin-top: 0.375rem;
  margin-right: 20.6px;
  margin-right: 1.2875rem;
  content: "";
  display: inline-block;
  width: 44.43px;
  width: 2.776875rem;
  height: 44.43px;
  height: 2.776875rem;
  background-image: url(../images/common/title-icon.png);
  background-size: cover;
  background-position: center center;
  /* x軸方向 y軸方向 */
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .common-title__ja::before {
    margin-top: 2px;
    margin-top: 0.125rem;
    margin-right: 12px;
    margin-right: 0.75rem;
    width: 24px;
    width: 1.5rem;
    height: 24px;
    height: 1.5rem;
  }
}

.tag {
  display: inline-block;
  width: 100%;
  max-width: 46px;
  max-width: 3.2rem;
  position: fixed;
  top: 314px;
  top: 19.625rem;
  right: 0;
  z-index: 9997;
}

@media screen and (max-width: 768px) {
  .tag {
    display: none;
  }
}
.tag {
  display: block;
  position: fixed;
  bottom: 0;
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
}
.tag.fixed {
  /* display: block; */
  position: fixed;
  bottom: 0;
  z-index: 9999;
  opacity: 1;
  pointer-events: all;
}
@media screen and (max-width: 768px) {
  .tag.fixed {
    display: none;
  }
}

.document-tag {
  display: inline-block;
  margin-bottom: 2rem;
}

.drawer {
  padding-bottom: 36px;
  padding-bottom: 2.25rem;
  padding-left: 15px;
  padding-left: 0.9375rem;
  display: none;
  width: 100%;
  height: 100%;
  max-width: 375px;
  max-width: 23.4375rem;
  background-color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10000;
}

@media screen and (max-width: 768px) {
  .drawer {
    padding-bottom: 22px;
    padding-bottom: 1.375rem;
    height: auto;
    height: initial;
  }
}

.drawer__logo {
  margin-top: 14px;
  margin-top: 0.875rem;
  display: block;
  width: 175px;
  width: 10.9375rem;
}

.drawer__nav {
  margin-top: 29px;
  margin-top: 1.8125rem;
  margin-left: 13px;
  margin-left: 0.8125rem;
}

.drawer__item {
  line-height: 1;
}

.drawer__item + .drawer__item {
  margin-top: 4px;
  margin-top: 0.25rem;
}

.drawer__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2.6;
  letter-spacing: 0.08em;
  color: #000;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
  position: relative;
}

.drawer__link:hover {
  color: #d5323c;
}

.drawer__link::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #d5323c;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.drawer__link:hover::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.drawer__link::after {
  margin-left: 6px;
  margin-left: 0.375rem;
  content: "";
  display: inline-block;
  width: 14.82px;
  width: 0.92625rem;
  height: 14.82px;
  height: 0.92625rem;
  background-image: url(../images/common/arrow-black.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: background-image 0.3s ease-out;
  transition: background-image 0.3s ease-out;
}

.drawer__link:hover::after {
  background-image: url(../images/common/arrow-red.png);
}

.drawer__btn {
  margin-top: 14px;
  margin-top: 0.875rem;
  margin-left: 14px;
  margin-left: 0.875rem;
}

.follow {
  background-color: #fff;
}

.follow__inner {
  margin-right: auto;
  margin-left: auto;
  padding-top: 72px;
  padding-top: 4.5rem;
  padding-bottom: 72px;
  padding-bottom: 4.5rem;
  max-width: 300px;
  max-width: 18.75rem;
}

@media screen and (max-width: 768px) {
  .follow__inner {
    padding-top: 40px;
    padding-top: 2.5rem;
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
  }
}

.follow__title {
  font-size: 21px;
  font-size: 1.3125rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.1904761905;
  letter-spacing: 0.1em;
  color: #000;
  text-transform: uppercase;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .follow__title {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.1875;
  }
}

.follow__box {
  margin-top: 33px;
  margin-top: 2.0625rem;
  margin-bottom: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 42px;
  gap: 2.625rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .follow__box {
    margin-top: 14px;
    margin-top: 0.875rem;
    margin-bottom: 0;
    gap: 34px;
    gap: 2.125rem;
  }
}

.follow__facebook,
.follow__line,
.follow__instagram,
.follow__youtube {
  display: block;
  width: 100%;
  max-width: 43px;
  max-width: 2.6875rem;
}

@media screen and (max-width: 768px) {
  .follow__facebook,
  .follow__line,
  .follow__instagram,
  .follow__youtube {
    max-width: 34px;
    max-width: 2.125rem;
  }
}

.follow__facebook:hover,
.follow__line:hover,
.follow__instagram:hover,
.follow__youtube:hover {
  opacity: 0.8;
}

.footer {
  background-color: #d5323c;
}

.footer__inner {
  padding-top: 52px;
  padding-top: 3.25rem;
  padding-right: 98px;
  padding-right: 6.125rem;
  padding-bottom: 36px;
  padding-bottom: 2.25rem;
  padding-left: 99px;
  padding-left: 6.1875rem;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .footer__inner {
    padding-top: 30px;
    padding-top: 1.875rem;
    padding-right: 15px;
    padding-right: 0.9375rem;
    padding-bottom: 9.5px;
    padding-bottom: 0.59375rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
  }
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.footer__logo {
  max-width: 237.51px;
  max-width: 14.844375rem;
}

@media screen and (max-width: 768px) {
  .footer__logo {
    max-width: 213px;
    max-width: 13.3125rem;
  }
}

.footer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 24px;
  gap: 1.5rem;
}

@media screen and (max-width: 768px) {
  .footer__link {
    margin-top: 20px;
    margin-top: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    gap: 0.625rem;
  }
}

.footer__document,
.footer__home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.footer__document::after {
  margin-left: 8px;
  margin-left: 0.5rem;
  content: "";
  display: inline-block;
  width: 19.97px;
  width: 1.248125rem;
  height: 19.97px;
  height: 1.248125rem;
  background-image: url(../images/common/arrow-white.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.footer__home::after {
  margin-left: 8px;
  margin-left: 0.5rem;
  content: "";
  display: inline-block;
  width: 16.51px;
  width: 1.031875rem;
  height: 16.51px;
  height: 1.031875rem;
  background-image: url(../images/common/link-icon.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.footer__under {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .footer__under {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.footer__adress {
  margin-top: 62px;
  margin-top: 3.875rem;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.5882352941;
  letter-spacing: 0.09em;
}

@media screen and (max-width: 768px) {
  .footer__adress {
    margin-top: 45px;
    margin-top: 2.8125rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.6875;
    letter-spacing: 0;
  }
}

.footer__info {
  margin-top: 3px;
  margin-top: 0.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  gap: 0.9375rem;
}

@media screen and (max-width: 768px) {
  .footer__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
}

.footer__tel,
.footer__fax {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.5882352941;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 768px) {
  .footer__tel,
  .footer__fax {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.6875;
    letter-spacing: 0;
  }
}

.footer__tel {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .footer__tel {
    pointer-events: initial;
  }
}

@media screen and (max-width: 768px) {
  .footer__fax {
    margin-top: -4px;
    margin-top: -0.25rem;
  }
}

.footer__privacy-wrap {
  margin-top: 19px;
  margin-top: 1.1875rem;
}

@media screen and (max-width: 768px) {
  .footer__privacy-wrap {
    margin-top: 14px;
    margin-top: 0.875rem;
  }
}

.footer__privacy {
  display: inline-block;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.4615384615;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .footer__privacy {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.4166666667;
  }
}

.footer__registration {
  margin-top: 85px;
  margin-top: 5.3125rem;
}

@media screen and (max-width: 768px) {
  .footer__registration {
    margin-top: 8px;
    margin-top: 0.5rem;
  }
}

.footer__registration-text {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.4615384615;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 768px) {
  .footer__registration-text {
    letter-spacing: 0;
  }
}

.footer__copyright {
  margin-top: 9px;
  margin-top: 0.5625rem;
  padding-top: 16px;
  padding-top: 1rem;
  line-height: 1;
  text-align: center;
  border-top: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .footer__copyright {
    margin-top: 6px;
    margin-top: 0.375rem;
    padding-top: 6px;
    padding-top: 0.375rem;
    max-width: 325px;
    max-width: 20.3125rem;
  }
}

.footer__copyright small {
  display: inline-block;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.4615384615;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .footer__copyright small {
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 1.4545454545;
    letter-spacing: 0;
  }
}

.hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  width: 3.25rem;
  height: 52px;
  height: 3.25rem;
  background-color: #4e4e4e;
  border-radius: 50%;
  position: fixed;
  top: 15px;
  top: 0.9375rem;
  right: 18px;
  right: 1.125rem;
  z-index: 11000;
}

@media screen and (max-width: 768px) {
  .hamburger {
    width: 46px;
    width: 2.875rem;
    height: 46px;
    height: 2.875rem;
    position: absolute;
    top: 7px;
    top: 0.4375rem;
    right: 12px;
    right: 0.75rem;
  }
}

.hamburger span {
  display: block;
  width: 19px;
  width: 1.1875rem;
  height: 2px;
  height: 2px;
  height: 0.125rem;
  background-color: #fff;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}

@media screen and (max-width: 768px) {
  .hamburger span {
    width: 17px;
    width: 1.0625rem;
  }
}

.hamburger span:nth-child(1) {
  top: 19px;
  top: 1.1875rem;
}

@media screen and (max-width: 768px) {
  .hamburger span:nth-child(1) {
    top: 17px;
    top: 1.0625rem;
  }
}

.hamburger span:nth-child(2) {
  top: 50%;
}

@media screen and (max-width: 768px) {
  .hamburger span:nth-child(2) {
    top: 49%;
  }
}

.hamburger span:nth-child(3) {
  bottom: 18px;
  bottom: 1.125rem;
}

@media screen and (max-width: 768px) {
  .hamburger span:nth-child(3) {
    bottom: 16px;
    bottom: 1rem;
  }
}

.hamburger.open span:nth-child(1) {
  top: 50%;
  left: 31%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .hamburger.open span:nth-child(1) {
    top: 50%;
  }
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.hamburger.open span:nth-child(3) {
  top: 50%;
  left: 31%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .hamburger.open span:nth-child(3) {
    top: 50%;
  }
}

.header {
  position: fixed;
  background-color: #fff;
  width: 100%;
  z-index: 9999;
}

@media screen and (max-width: 768px) {
  .header {
    /* width: 100%; */
    height: 60px;
    height: 3.75rem;
    /* background-color: #fff;
    position: fixed;
    z-index: 9999; */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  }
}

.header__inner {
  padding-left: 40px;
  padding-left: 2.5rem;
  padding-top: 20px;
  padding-top: 1rem;
  padding-bottom: 20px;
  padding-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /* max-width: 1366px; */
}

.header__inner.inner {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .header__inner {
    padding-top: 14px;
    padding-top: 0.87rem;
    padding-bottom: 14px;
    padding-bottom: 0.87rem;
    padding-left: 15px;
    padding-left: 0.9375rem;
  }
}

.header__logo {
  width: 100%;
  max-width: 237.51px;
  max-width: 14.844375rem;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .header__logo {
    /* margin-top: 14px;
    margin-top: 0.875rem; */
    max-width: 175px;
    max-width: 10.9375rem;
  }
}

.inner {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1366px;
}

.link {
  padding-top: 22px;
  padding-top: 1.375rem;
  padding-right: 100px;
  padding-right: 6.25rem;
  padding-bottom: 22px;
  padding-bottom: 1.375rem;
  padding-left: 100px;
  padding-left: 6.25rem;
  width: 100%;
  max-width: 315px;
  max-width: 19.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.1875;
  letter-spacing: 0.21em;
  color: #fff;
  background-color: #d5323c;
  border-radius: 2rem;
}

.link::before {
  margin-right: 10px;
  margin-right: 0.625rem;
  content: "";
  display: inline-block;
  width: 15px;
  width: 0.9375rem;
  height: 18px;
  height: 1.125rem;
  background-image: url(../images/common/document-icon.png);
  background-size: cover;
  background-position: center center;
  /* x軸方向 y軸方向 */
  background-repeat: no-repeat;
}

.link:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .link:hover {
    opacity: 1;
  }
}

.link-model {
  padding: 1.375rem 0;
}

.link-model::before {
  width: 1.1rem;
  height: 1.1rem;
  background-image: url(../images/common/reserve-icon.png);
  background-size: contain;
}


.modal-card {
  background-color: #fff;
  border: 1px solid #d5323c;
}

.modal-card__head {
  min-height: 54px;
  min-height: 3.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #d5323c;
}

@media screen and (max-width: 768px) {
  .modal-card__head {
    min-height: 30px;
    min-height: 1.875rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.modal-card__title {
  padding: 0 12px;
  padding: 0 0.75rem;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #fff;
  line-height: 1.5384615385;
  letter-spacing: 0.08em;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .modal-card__title {
    padding: 0 7px;
    padding: 0 0.4375rem;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.6666666667;
    letter-spacing: 0;
  }
}

.modal-card__body {
  margin-top: 10px;
  margin-top: 0.625rem;
  padding-right: 11px;
  padding-right: 0.6875rem;
  padding-left: 11px;
  padding-left: 0.6875rem;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
}

@media screen and (max-width: 768px) {
  .modal-card__body {
    margin-top: 10px;
    margin-top: 0.625rem;
    padding-right: 11px;
    padding-right: 0.6875rem;
    padding-left: 11px;
    padding-left: 0.6875rem;
    padding-bottom: 10px;
    padding-bottom: 0.625rem;
  }
}

.modal-card__img img {
  -o-object-fit: contain;
  object-fit: contain;
}

.modal-card__text {
  margin-top: 5px;
  margin-top: 0.3125rem;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .modal-card__text {
    margin-top: 2px;
    margin-top: 0.125rem;
    font-size: 10px;
    font-size: 0.625rem;
    line-height: 1.3;
  }
}



.swiper__slide {
  width: 100%;
}

.swiper__slide img {
  width: 100%;
  object-fit: cover;
}

.swiper-pagination {
  width: initial !important;
  left: initial !important;
  right: 2rem !important;
}

.swiper-pagination-bullet {
  opacity: 1;
  margin: 0 6px !important;
  width: 7px;
  height: 7px;
  background: #ffffff00;
  border: 1px solid #fff;
}
.swiper-pagination-bullet-active {
  background-color: #d5323c;
  border: none;
}

#colorbox {
  height: 600px !important;
  height: 37.5rem !important;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  #colorbox {
    height: 100% !important;
    height: 85vh !important;
  }
}

#cboxWrapper {
  height: 600px !important;
  height: 37.5rem !important;
  padding-top: 90px;
  padding-top: 5.625rem;
}

@media screen and (max-width: 768px) {
  #cboxWrapper {
    height: 100% !important;
    padding-top: 75px !important;
    padding-top: 4.6875rem !important;
  }
}

#cboxContent {
  border-radius: 10px;
}

#cboxLoadedContent {
  min-height: 525px;
  min-height: 32.8125rem;
  border-radius: 0.625rem;
}

@media screen and (max-width: 768px) {
  #cboxLoadedContent {
    height: 87vh !important;
    height: 75vh !important;
    min-height: auto;
  }
}

#cboxClose {
  width: 52px;
  width: 3.25rem;
  height: 52px;
  height: 3.25rem;
  background: transparent url(../images/common/btn-close.png) no-repeat center center;
  background-size: 100%;
  top: -66px;
  top: -4.125rem;
  right: 0;
}

@media screen and (max-width: 768px) {
  #cboxClose {
    top: -23px;
    top: -1.4375rem;
    right: -24px;
    right: -1.5rem;
  }
}

#cboxCurrent {
  display: none !important;
}

#cboxPrevious,
#cboxNext {
  width: 54px;
  width: 3.375rem;
  height: 130px;
  height: 8.125rem;
  background: transparent url(../images/common/slide-arrow-white.png) no-repeat center center;
  background-size: 1.6875rem 3.375rem;
  bottom: auto;
}

@media screen and (max-width: 768px) {
  #cboxPrevious,
  #cboxNext {
    width: 26px;
    width: 1.625rem;
    height: 100px;
    height: 6.25rem;
  }
}

#cboxPrevious {
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: -56px;
  left: -3.5rem;
  transform: rotateY(180deg) translate(0, -50%);
  -webkit-transform: rotateY(180deg) translate(0, -50%);
}

@media screen and (max-width: 768px) {
  #cboxPrevious {
    background: transparent url(../images/common/slide-arrow-white-sp.png) no-repeat 100% center;
    background-size: 0.8125rem 2.1875rem;
    left: -25px;
    left: -1.5625rem;
  }
}

#cboxNext {
  top: 50%;
  right: -56px;
  right: -3.5rem;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}

@media screen and (max-width: 768px) {
  #cboxNext {
    background: transparent url(../images/common/slide-arrow-white-sp.png) no-repeat right center;
    background-size: 0.8125rem 2.1875rem;
    right: -25px;
    right: -1.5625rem;
  }
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  /* min-height: 100vh; */
}

@media screen and (max-width: 768px) {
  .site-wrapper {
    min-height: auto;
  }
}

.test {
  font-size: 20px;
  font-size: 1.25rem;
  background-color: #000;
  color: #fff;
}

/* ::-webkit-full-page-media,
:future,
:root HTML要素名 {
  margin-top: -0.3em;
}

@media screen and (max-width: 768px) {
  ::-webkit-full-page-media,
  :future,
  :root .under-mv__text + .under-mv__text {
    letter-spacing: -0.02em;
  }
} */

/*# sourceMappingURL=styles.css.map */

/* -------------lp-cp--------------- */

/* -------------mv--------------- */

.top__model-button {
  position: fixed;
  top: 40%;
  right: 0;
  width: 3.2rem;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .top__model-button {
    top: auto;
    bottom: 0;
    width: 100%;
  }
}
.mv {
  height: 100vh;
}
@media screen and (max-width: 1024px) {
  .mv {
    height: 80vh;
    background: #FFF6F2;
  }
}
@media screen and (max-width: 767px) {
  .mv {
    height: 60vh;
    background: #FFF6F2;
  }
}

@media screen and (max-width: 375px) {
  .mv {
    height: 76vh;
    background: #FFF6F2;
  }
}
.mv__inner {
  height: 100%;
  background-image: url(../images/mv/top_pc.png);
  background-position-x: 16rem;
  background-repeat: no-repeat;
  background-size: cover;
}
.mv__inner::before {
  content: "";
  display: block;
  position: absolute;
  height: 100vh;
  width: 100%;
  z-index: -1;
  background: #f4efe9;
}
@media screen and (max-width: 768px) {
  .mv__inner {
    padding-top: 2.8rem;
    background-image: url(../images/mv/top_sp.png);
    background-position: center;
    background-size: cover;
  }
  .mv__inner::before {
    display: none;
  }
}
.mv__anniversary {
  width: 120vh;
  min-width: 540px;
}
@media screen and (max-width: 1024px) {
  .mv__anniversary {
    width: 100vw;
    min-width: auto;
  }
}
@media screen and (max-width: 768px) {
  .mv__anniversary {
    width: 100vw;
    min-width: auto;
  }
}
.mv__title {
  margin-top: -2rem;
  margin-left: 5rem;
  width: 80vh;
  min-width: 430px;
}
@media screen and (max-width: 1024px) {
  .mv__title {
    margin: 0 auto 1rem;
    width: 90vw;
    min-width: auto;
  }
}
@media screen and (max-width: 768px) {
  .mv__title {
    margin: 0 auto 1rem;
  width: 90vw;
  min-width: auto;
  }
}
.mv__cp-wrap {
  display: flex;
}
.mv__cp-present {
  margin-top: -1rem;
  margin-left: 2rem;
  width: 70vh;
  min-width: 300px;
}
@media screen and (max-width: 1024px) {
  .mv__cp-present {
    margin-top: -1rem;
    margin-left: 2rem;
    width: 76vw;
    min-width: 300px;
  }
}
.mv__cp-date-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9rem;
  height: 9rem;
  background: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .mv__cp-date-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0.2rem 1.4rem;
    width: auto;
    height: auto;
    background: #fff;
    border-radius: 50px;
  }
}
@media screen and (max-width: 768px) {
  .mv__cp-date-box {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
}
.mv__cp-date-start {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.mv__cp-date-start::after {
  content: "";
  display: inline-block;
  margin-bottom: 10%;
  height: 2px;
  width: 1.2rem;
  background: #000;
}
.mv__cp-date-start span {
  display: inline-block;
  text-align: center;
  width: 1.4rem;
  height: 1.4rem;
  font-size: .9rem;
  color: #fff;
  background: #d5313c;
  border-radius: 50%;
  letter-spacing: 0;
}
.mv__cp-date-end {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}
/* .mv__cp-date-end::before {
  content: "";
  display: inline-block;
  margin-bottom: 10%;
  height: 2px;
  width: 1.2rem;
  background: #000;
} */
.mv__cp-date-end span {
  display: inline-block;
  text-align: center;
  width: 1.4rem;
  height: 1.4rem;
  font-size: .9rem;
  color: #fff;
  background: #556981;
  border-radius: 50%;
  letter-spacing: 0;
}
.mv__notes {
  padding-top: 0.8rem;
  text-align: center;
  font-size: 0.6rem;
  color: #fff;
}
/* presentセクション */
.present {
  padding: 8vw 0 4rem;
  background: #FFF6F2;
}
@media screen and (max-width: 767px) {
  .present {
    position: relative;
    padding: 0;
  }
}
.present__inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  .present__inner {
    top: -4vw;
  }
}
@media screen and (max-width: 375px) {
  .present__inner {
    top: -10vw;
  }
}
.present__title {
  position: absolute;
  top: -4vw;
  left: 50%;
  width: 43vw;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .present__title {
    top: -8vw;
    width: 90vw;
  }
}
.present__wrap {
  margin: 0 auto;
  padding: 8rem 4rem 3rem;
  width: 78vw;
  max-width: 67rem;
  background: #fff;
  border: solid 3px #d5313c;
  border-radius: 40px;
}
@media screen and (max-width: 768px) {
  .present__wrap {
    padding: 2.6rem 1rem 1.4rem;
    width: 94vw;
  }
}
.present__questionnaire-box::after {
  content: '';
  display: block;
  width: 100%;
  height: 1.58rem;
  background-image: url(../images/present/title_border_pc.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .present__questionnaire-box::after {
    height: 0.6rem;
  background-image: url(../images/present/title_border_sp.png);
  }
}
.present__questionnaire {
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .present__questionnaire {
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
  }
  .present__money-price {
    margin-bottom: 0.8rem;
  }
}
.present__money-box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .present__money-box {
  display: block;
  margin-bottom: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .present__money-price {
    margin-bottom: 0.8rem;
  }
}
.present__money-kinds {
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 768px) {
  .present__money-kinds {
    margin-bottom: 0;
  }
}
.present__button {
  display: block;
  margin: 0 auto 3rem;
  width: 32vw;
  max-width: 27.9375rem;
}
@media screen and (max-width: 768px) {
  .present__button {
    margin-bottom: 1rem;
    width: 100%;
  }
}
.present__title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
  padding: 0.4rem;
  background: #748A9C;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .present__title-box {
    display: block;
    padding: 0.8rem;
    width: 100%;
    text-align: center;
  }
}
.present__terms-title {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .present__terms-title {

  }
}
.present__terms-title-sub {
  font-size: 0.8125rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .present__terms-title-sub  {
    margin: 0 auto;
    width: 76%;
  }
}
.present__terms-box {
  margin: 0 auto 3.225rem;
  width: 45.75rem;
}
@media screen and (max-width: 768px) {
  .present__terms-box {
    margin-bottom: 1rem;
    width: 100%;
  }
}
.present__terms-text {
  font-size: 1.06rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .present__terms-text  {
    font-size: 0.8125rem;
  }
}
.present__notes-container {
  border: solid 1px #748A9C;
  border-radius: 10px;
}
.present__notes-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.675rem 1rem 0.675rem 23rem;
  background: #FFF6F2;
  text-align: center;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .present__notes-title-box {
    padding: 0.6rem 1rem 0.6rem 3.4rem;
  }
}
.present__notes-title {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.present__notes-title-accordion {
  display: flex;
  align-items: center;
  justify-content: center;
}
.present__notes-title-accordion-top, .present__notes-title-accordion-bottom {
  display: inline-block;
  width: 1.2rem;
  height: 1px;
  background: #000;
}
@media screen and (max-width: 768px) {
  .present__notes-title-accordion-top, .present__notes-title-accordion-bottom {
    width: 0.9rem;
  height: 1px;
  }
}
.present__notes-title-accordion-bottom {
  position: absolute;
  transform: rotate(90deg);
  transition: 0.4s;
}
.present__notes-title-accordion-bottom.open {
  opacity: 0;
  transform: rotate(0);
}
.present__notes-text-box {
  /* display: none; */
  padding: 2rem 3rem;
  border-top: solid 1px #748A9C;
}
@media screen and (max-width: 768px) {
  .present__notes-text-box {
    padding: 1rem;
  }
}
.present__notes-text-box.open {
  display: block;
}
.present__notes-text {
  font-size:0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  .present__notes-text {
    font-size:0.8125rem;
  }
}

/* guidanceセクション */
.guidance__title {
  margin-bottom: 7.3rem;
  padding-top: 7.5rem;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .guidance__title {
    padding-top: 3rem;
    margin-bottom: 3.4rem;
    font-size: 1.5rem;
  }
}
.guidance__subtitle-box {
  padding: 1.425rem 0;
  background: #d5313c;
  border-radius: 20px 20px 0 0;
}
@media screen and (max-width: 768px) {
  .guidance__title {
    padding: 1.25rem;
  }
}
.guidance__subtitle {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .guidance__subtitle {
    font-size: 1.25rem;
  }
}
.guidance__merit-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin: 0 auto;
  margin-bottom: 5rem;
  padding: 3rem 0 0;
  width: 67rem;
  max-width: 1240px;
}
@media screen and (max-width: 768px) {
  .guidance__merit-inner {
    display: block;
    margin-bottom: 4rem;
    padding: 1rem 1.12rem 0;
    width: 100%;
  }
}
.guidance__merit-inner::after {
  position: absolute;
  top: 58%;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  content: "";
  border-bottom: 2px dotted #707070;
}
@media screen and (max-width: 768px) {
  .guidance__merit-inner::after {
    display: none;
  }
}
.guidance__merit-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 47%;
}
@media screen and (max-width: 768px) {
  .guidance__merit-content {
    gap: 1.225rem;
    padding: 1.4rem 0;
    width: 100%;
    border-bottom: 2px dotted #707070;
  }
}
.guidance__merit-content-border::after {
  content: '';
  display: block;
  width: 2px;
  height: 92%;
  border-right: 2px dotted #707070;
}
@media screen and (max-width: 768px) {
  .guidance__merit-content-border::after {
    display: none;
  }
}
.guidance__merit-pic {
  width: 36%;
}
@media screen and (max-width: 768px) {
  .guidance__merit-pic {
    width: 28%;
  }
}
.guidance__merit-text {
  width: 72%;
  font-size: 1.0825rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.7647;
}
@media screen and (max-width: 768px) {
  .guidance__merit-text {
    font-size: 0.9375rem;
    line-height: 1.866;
  }
}
.guidance__pattern-inner {
  margin: 0 auto;
  margin-bottom: 8rem;
  padding: 3rem 0 0;
  width: 67rem;
  max-width: 1240px;
}
@media screen and (max-width: 768px) {
  .guidance__pattern-inner{
    margin-bottom: 5rem;
    padding: 1.5rem 1.12rem 0;
    width: 100%;
  }
}
.guidance__pattern-content {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 8rem;
  margin-bottom: 2.4rem;
  padding-bottom: 1rem;
  border-bottom: 2px dotted #707070;
}
@media screen and (max-width: 768px) {
  .guidance__pattern-content {
    display: block;
    margin-bottom: 1.4rem;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.guidance__pattern-content-wrap {
  width: 47%;
}
@media screen and (max-width: 768px) {
  .guidance__pattern-content-wrap {
    padding: 1.4rem 0;
    width: 100%;
    border-bottom: 2px dotted #707070;
  }
}
.guidance__pattern-border::after {
  position: absolute;
  top: 0;
  right: 52.9%;
  content: '';
  display: block;
  width: 2px;
  height: 92%;
  border-right: 2px dotted #707070;
}
@media screen and (max-width: 768px) {
  .guidance__pattern-border::after {
    display: none;
  }
}
.guidance__pattern-content-box {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.1725rem;
}
@media screen and (max-width: 768px) {
.guidance__pattern-content-box {
  gap: 1.225rem;
  }
}
.guidance__pattern-content-tel-box {
  gap: 3rem;
  margin-left: 1rem;
}
.guidance__pattern-pic {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .guidance__pattern-pic {
    width: 28%;
    }
  }
.guidance__pattern-pic-tel {
  width: 10%;
}
@media screen and (max-width: 768px) {
  .guidance__pattern-pic-tel {
    width: 14%;
    }
  }
.guidance__pattern-title-box {
  width: 80%;
}
.guidance__pattern-title  {
  margin-bottom: 0.8725rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06rem;
}
@media screen and (max-width: 768px) {
  .guidance__pattern-title{
    margin-bottom: 0.5rem;
    font-size: 1rem;
    }
  }
.guidance__pattern-title-text {
  font-size: 1.0725rem;
  font-weight: 400;
  line-height: 1.764;
}
@media screen and (max-width: 768px) {
  .guidance__pattern-title-text {
    font-size: 0.875rem;
    }
  }
  .guidance__pattern-title-text-link {
    color: #d5313c;
  font-weight: 700;
  border-bottom: solid 1px #d5313c;
  }
.guidance__pattern-title-tel {
  color: #d5313c;
  font-weight: 700;
  border-bottom: solid 1px #d5313c;
}
.guidance__pattern-notes {
  font-size: 0.875rem;
  line-height: 1.642;
}
@media screen and (max-width: 768px) {
  .guidance__pattern-notes {
    font-size: 0.75rem;
    line-height: 1.66;
    }
  }
.guidance__pattern-title-tel {
  font-size: 1.0725rem;
  color: #d5313c;
  font-weight: 700;
  line-height: 1.764;
}
@media screen and (max-width: 768px) {
  .guidance__pattern-title-tel {
    font-size: 0.875rem;
    }
  }
.guidance__text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.875;
}

.campaign {
  background: #E9EDEF;
}
@media screen and (max-width: 768px) {
  .campaign {
    background: #fff;
    }
  }
.campaign__inner {
  margin: 0 auto;
  padding: 6rem 0;
  width: 62.5rem;
  max-width: 1000px;
}
@media screen and (max-width: 768px) {
  .campaign__inner {
    margin-bottom: 2rem;
    padding: 0;
    width: 100%;
    }
  }
.campain__content {
  width: 100%;
  margin-bottom: 3.4rem;
  }
  @media screen and (max-width: 768px) {
    .campain__content {
      margin-bottom: 2rem;
      }
    }
.campaign .present__notes-container {
  margin: 0 auto;
  width: 94%;
}
.campaign .present__notes-text-box {
  background: #fff;
  border-radius: 0 0 10px 10px;
}

.section__title-box {
  position: relative;
  padding: 2rem 0;
  background: #d5313c;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section__title-box {
    padding: 1.25rem 0;
  }
}

.section__title-box::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% -30%;
  display: block;
  width: 61px;
  height: 26px;
  clip-path: polygon(50% 26px, 0% 0%, 61px 0%);
  background: #d5313c;
}
@media screen and (max-width: 768px) {
  .section__title-box::after {
    translate: -50% -50%;
  }
}

.section__title-sub {
  margin: 0 auto;
  padding: 0.1rem 1.3rem;
  width: fit-content;
  background: #fff;
  color: #d5313c;
  font-size: 1.075rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  .section__title-sub {
    font-size: 0.7rem;
  }
}

.section__title-main {
  font-size: 2.5rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .section__title-main {
    font-size: 1.25rem;
    line-height: 1.6;
  }
}

.section__title-notes {
  font-size: 1.225rem;
}

.design__wrap {
  padding: 6rem 9rem;
}
@media screen and (max-width: 768px) {
  .design__wrap {
    padding: 2.5rem 1.25rem;
  }
}

.design__inner {
  padding: 4rem 0 5.4rem 0;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .design__inner {
    padding: 2.125rem 1rem;
  }
}

.design__price-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8rem;
  margin: 0 0 2.8rem 0;
}
@media screen and (max-width: 768px) {
  .design__price-container {
    display: block;
  }
}

.design__price-box {
  position: relative;
  padding: 0 0.4rem 0 1.84rem;
}
@media screen and (max-width: 768px) {
  .design__price-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.825rem;
    padding: 0;
  }
}

.design__price-box:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -4rem;
  width: 1px;
  height: 100%;
  background: #e2e2e2;
}
@media screen and (max-width: 768px) {
  .design__price-box:not(:last-child)::after {
    display: none;
  }
}

.design__price__tsubo-box {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0 auto 1rem;
  padding: 0.4rem 0;
  width: 5.5rem;
  background: #d5313c;
  color: #fff;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  .design__price__tsubo-box {
    flex-direction: column;
    width: 3.175rem;
    height: 3.175rem;
    margin: 0;
  }
}

.design__price__tsubo-box::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% -10%;
  display: block;
  width: 12px;
  height: 7px;
  clip-path: polygon(50% 7px, 0% 0%, 12px 0%);
  background: #d5313c;
}
@media screen and (max-width: 768px) {
  .design__price__tsubo-box::after {
    display: none;
  }
}

.design__price__tsubo-num {
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .design__price__tsubo-num {
    font-size: 1.125rem;
    line-height: 1.1;
  }
}

.design__price__tsubo-txt {
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .design__price__tsubo-txt {
    font-size: 0.675rem;
  }
}

.design__price-yen {
  position: relative;
  z-index: 0;
  color: #d5313c;
  font-size: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .design__price-yen {
    margin-bottom: 4%;
    font-size: 2.5rem;
  }
}

.design__price-yen::after {
  content: "";
  display: block;
  width: 116%;
  height: 1rem;
  position: absolute;
  z-index: -1;
  bottom: 9%;
  right: -2.4%;
  background: #faee00;
}
@media screen and (max-width: 768px) {
  .design__price-yen::after {
    width: 106%;
    bottom: 4%;
    right: -4%;
  }
}

.design__price-yen span {
  margin-left: 1.125rem;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .design__price-yen span {
    margin-left: 2.5rem;
    font-size: 1.125rem;
  }
}

.design__txt {
  margin: 0 0 2.75rem 0;
  font-size: 1rem;
  text-align: center;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .design__txt {
    font-size: 0.825rem;
    line-height: 1.925;
    text-align: left;
  }
}

.design__swiper-container {
  width: 100vw;
  margin: 0 calc(49% - 50vw);

  @media screen and (max-width: 768px) {
    margin: 0 -1rem;
    padding: 0 1rem;
    width: auto;
  }
}

.swiper-button-box {
  width: 50px;
}

.design__swiper-container .swiper-button-prev,
.design__swiper-container .swiper-button-next {
  position: absolute;
  top: 50%;
}

.design__swiper-container .swiper-button-prev::after,
.design__swiper-container .swiper-button-next::after {
  position: absolute;
  content: ""; /* 空指定してデフォルトの矢印を消す */
  width: 0;
  height: 0;
  border-style: solid;
  top: -50%;
}

.design__swiper-container .swiper-button-prev {
  left: 21%;
}

@media screen and (max-width: 768px) {
  .design__swiper-container .swiper-button-prev {
    left: 4%;
  }
}

.design__swiper-container .swiper-button-prev::after {
  display: inline-block;
  vertical-align: middle;
  width: 5rem;
  height: 5rem;
  color: #d5313c;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  line-height: 1;
  transform: rotate(-135deg);
}

@media screen and (max-width: 768px) {
  .design__swiper-container .swiper-button-prev::after {
    width: 2rem;
    height: 2rem;
  }
}

.design__swiper-container .swiper-button-next {
  right: 21%;
}

@media screen and (max-width: 768px) {
  .design__swiper-container .swiper-button-next {
    right: 4%;
  }
}

.design__swiper-container .swiper-button-next::after {
  display: inline-block;
  vertical-align: middle;
  width: 5rem;
  height: 5rem;
  color: #d5313c;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  line-height: 1;
  transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .design__swiper-container .swiper-button-next::after {
    width: 2rem;
    height: 2rem;
  }
}

.design__slide {
  @media screen and (max-width: 768px) {
    width: 100%;
  }
}

.design__slide-pic {
  margin: 0 0 0.8rem 0;

  @media screen and (max-width: 768px) {
    margin: 0 0 1.075rem 0;
  }
}

.design__slide-txt {
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  line-height: 1.25;

  @media screen and (max-width: 768px) {
    font-size: 0.8rem;
  }
}

/* ----------questionnaireセクション------------- */
.questionnaire {
  background: #fff6f2;
}

.questionnaire__inner {
  margin: 0 auto;
  padding: 5.5rem 0 7rem;
  width: 60rem;
  max-width: 940px;
  @media screen and (max-width: 768px) {
    padding: 2rem 1.2rem 2.5rem;
    width: 100%;
  }
}

.questionnaire__text {
  margin-bottom: 1.25rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.15em;
  @media screen and (max-width: 768px) {
    font-size: 1.1875rem;
  }
}

/* ------------modelセクション------------- */
.model {
}
.model__inner {
  padding: 3rem 0 3.225rem;
  background: #e9edef;
  @media screen and (max-width: 768px) {
    padding: 2rem 0 2.125rem;
  }
}
.model__wrap {
  margin: 0 auto 3rem;
  padding: 4rem 8.8rem 5rem;
  width: 67rem;
  max-width: 1072px;
  background: #fff;

  @media screen and (max-width: 768px) {
    margin-bottom: 1.5rem;
    padding: 1.6rem 1.6rem 1.8rem;
    width: 20.9375rem;
  }
}

.model__sub {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #d5313c;
  padding: 10px;
  margin: 0 auto 1.5rem;
  text-align: center;
  border: 2px dotted;
  border-radius: 50px;
  @media screen and (max-width: 768px) {
    font-size: .7rem;
  }
}

.model__title-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 1.5rem;
  width: fit-content;
  @media screen and (max-width: 768px) {
    align-items: start;
    gap: 0.75rem;
    margin: 0 0 1rem;
  }
}

.model__title-address {
  padding: 0.7rem 1.225rem;
  background: #818484;
  font-size: 1.375rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1;
  border-radius: 50px;
  white-space: nowrap;
  @media screen and (max-width: 768px) {
    padding: 0.225rem 0.675rem;
    font-size: 0.625rem;
  }
}

.model__title {
  font-size: 2.4375rem;
  font-weight: 900;
  color: #d5313c;
  line-height: 1;
  letter-spacing: 0.06em;
  @media screen and (max-width: 768px) {
    font-size: 1.225rem;
  }
}

.accordion__model-catch-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid #d5313c;
  @media screen and (max-width: 768px) {
    padding-bottom: 0.6rem;
  }
}

.accordion__model-catch-button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2rem;
  width: 2rem;
  border-radius: 50px;
  background: #d5313c;
  @media screen and (max-width: 768px) {
    height: 1.2rem;
    width: 1.2rem;
  }
}
.accordion__model-catch-button-top {
  display: inline-block;
  width: 1rem;
  height: 2px;
  background: #fff;
  @media screen and (max-width: 768px) {
    width: 0.6rem;
    height: 2px;
  }
}
.accordion__model-catch-button-bottom {
  position: absolute;
  display: inline-block;
  width: 1rem;
  height: 2px;
  transform: rotate(90deg);
  background: #fff;
  transition: 0.2s;
  @media screen and (max-width: 768px) {
    width: 0.6rem;
    height: 2px;
  }
}
.accordion__model-catch-button-bottom.open {
  opacity: 0;
  transform: rotate(0);
}

.model__accordion-box {
  margin-bottom: 2rem;
  @media screen and (max-width: 768px) {
    margin-bottom: 1.225rem;
  }
}
.model__accordion-box .accordion__item {
  border: none;
}

.accordion__model-catch {
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  @media screen and (max-width: 768px) {
    width: 90%;
    font-size: 1rem;
  }
}

.accordion__model-detail-box {
  padding-top: 1.225rem;
  display: none;
}
.accordion__model-detail-box.open {
  display: block;
}

.accordion__model-detail {
  font-size: 0.875rem;
}

.model__swiper-wrap {
  position: relative;
  margin-bottom: 0.75rem;
}
.model__swiper-wrap .swiper-button-prev,
.model__swiper-wrap .swiper-button-next {
  position: absolute;
  top: 50%;
}

.model__swiper-wrap .swiper-button-prev::after,
.model__swiper-wrap .swiper-button-next::after {
  position: absolute;
  content: ""; /* 空指定してデフォルトの矢印を消す */
  width: 0;
  height: 0;
  border-style: solid;
  top: -25%;
}

@media screen and (max-width: 768px) {
  .model__swiper-wrap .swiper-button-prev::after,
  .model__swiper-wrap .swiper-button-next::after {
    top: 5%;
  }
}

.model__swiper-wrap .swiper-button-prev {
  left: 0%;
}

@media screen and (max-width: 768px) {
  .model__swiper-wrap .swiper-button-prev {
    left: -2%;
  }
}

.model__swiper-wrap .swiper-button-prev::after {
  display: inline-block;
  vertical-align: middle;
  width: 5rem;
  height: 5rem;
  color: #d5313c;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  line-height: 1;
  transform: rotate(-135deg);
}

@media screen and (max-width: 768px) {
  .model__swiper-wrap .swiper-button-prev::after {
    width: 2rem;
    height: 2rem;
  }
}

.model__swiper-wrap .swiper-button-next {
  right: 0;
}

@media screen and (max-width: 768px) {
  .model__swiper-wrap .swiper-button-next {
    right: -2%;
  }
}

.model__swiper-wrap .swiper-button-next::after {
  display: inline-block;
  vertical-align: middle;
  width: 5rem;
  height: 5rem;
  color: #d5313c;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  line-height: 1;
  transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .model__swiper-wrap .swiper-button-next::after {
    width: 2rem;
    height: 2rem;
  }
}

.model__swiper-thumbnail {
  position: relative;
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
  @media screen and (max-width: 768px) {
    width: 84%;
  }
}
.model__swiper-thumbnail .model__slide-thumbnail {
  opacity: 0.5;
  transition: opacity 0.5s;
}
.model__swiper-thumbnail .model__slide-thumbnail.swiper-slide-thumb-active {
  opacity: 1;
}
.model__swiper-thumbnail-container .swiper-button-prev,
.model__swiper-thumbnail-container .swiper-button-next {
  position: absolute;
  top: 22px;
  background: #d5313c;
  height: 100%;
  width: 1.8rem;
}
@media screen and (max-width: 768px) {
  .model__swiper-thumbnail-container .swiper-button-prev,
  .model__swiper-thumbnail-container .swiper-button-next {
    width: 1rem;
  }
}

.model__swiper-thumbnail-container .swiper-button-prev::after,
.model__swiper-thumbnail-container .swiper-button-next::after {
  position: absolute;
  content: ""; /* 空指定してデフォルトの矢印を消す */
  width: 0;
  height: 0;
  /* border-style: solid; */
  /* top: -25%; */
}

.model__swiper-thumbnail-container .swiper-button-prev {
  left: 0%;
}

@media screen and (max-width: 768px) {
  .model__swiper-thumbnail-container .swiper-button-prev {
    left: 0;
  }
}

.model__swiper-thumbnail-container .swiper-button-prev::after {
  display: inline-block;
  vertical-align: middle;
  width: 1rem;
  height: 1rem;
  color: #fff;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  line-height: 1;
  transform: rotate(-135deg);
}

@media screen and (max-width: 768px) {
  .model__swiper-thumbnail-container .swiper-button-prev::after {
    width: 0.7rem;
    height: 0.7rem;
  }
}

.model__swiper-thumbnail-container .swiper-button-next {
  right: 0;
}

@media screen and (max-width: 768px) {
  .model__swiper-thumbnail-container .swiper-button-next {
    right: 0;
  }
}

.model__swiper-thumbnail-container .swiper-button-next::after {
  display: inline-block;
  vertical-align: middle;
  width: 1rem;
  height: 1rem;
  color: #fff;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  line-height: 1;
  transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .model__swiper-thumbnail-container .swiper-button-next::after {
    width: 0.7rem;
    height: 0.7rem;
  }
}
.model__swiper-thumbnail-container {
  position: relative;
  margin-bottom: 3.225rem;
}
.model__info-box {
  display: flex;
}
.model__info-wrap {
  margin-bottom: 2.925rem;
  border: 1px solid #818484;
  border-bottom: none;
}
.model__info-container {
  display: flex;
  @media screen and (max-width: 768px) {
    display: block;
  }
}
.model__info-box {
  flex: 1;
}

.model__info-item {
  padding: 0.725rem;
  width: 5.375rem;
  background: #818484;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  @media screen and (max-width: 768px) {
    display: flex;
    width: 4rem;
    align-items: center;
    text-align: left;
    padding: 0 0 0 0.7rem;
  }
}
.model__info-item-border {
  border-bottom: 1px solid #fff;
  @media screen and (max-width: 768px) {
    border-bottom: none;
  }
}
.model__info-item-borders {
  @media screen and (max-width: 768px) {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }
}
.model__info-content {
  display: flex;
  align-items: center;
  flex: 1;
  padding-left: 0.6rem;
  font-size: 0.875rem;
  font-weight: 400;
  border-bottom: 1px solid #818484;
  @media screen and (max-width: 768px) {
    padding: 0.725rem 0 0.725rem 1rem;
  }
}

.model__button-container {
  display: flex;
  justify-content: center;
  gap: 2.925rem;
  @media screen and (max-width: 768px) {
    display: block;
  }
}
.model__button {
  width: 19.375rem;
  max-width: 310px;
  @media screen and (max-width: 768px) {
    margin-bottom: 1rem;
    width: 100%;
    max-width: 100%;
  }
}

