@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: 1.3rem;
  padding-bottom: 20px;
  padding-bottom: 1.3rem;
  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;
  }
}

.ingenuity-card {
  background-color: #fff6f2;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0 0.1875rem 1rem rgba(0, 0, 0, 0.16);
  box-shadow: 0 0.1875rem 1rem rgba(0, 0, 0, 0.16);
  position: relative;
}

.ingenuity-card__fukidashi {
  display: inline-block;
  min-height: 33px;
  min-height: 2.0625rem;
  padding: 7px 16.5px 7px;
  padding: 0.4375rem 1.03125rem 0.4375rem;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  line-height: 1.4285714286;
  background-color: #d5323c;
  border-radius: 1.1875rem;
  position: absolute;
  top: -14px;
  top: -0.875rem;
  left: 0;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .ingenuity-card__fukidashi {
    padding: 6px 16px 7px;
    padding: 0.375rem 1rem 0.4375rem;
  }
}

.ingenuity-card__fukidashi::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 11px 13px 0;
  border-width: 0 0.6875rem 0.8125rem 0;
  border-color: transparent #d5323c transparent transparent;
  position: absolute;
  bottom: -8px;
  bottom: -0.5rem;
  left: 22px;
  left: 1.375rem;
}

.ingenuity-card__body {
  padding: 33px 21px 18px;
  padding: 2.0625rem 1.3125rem 1.125rem;
}

@media screen and (max-width: 768px) {
  .ingenuity-card__body {
    padding: 28px 16px 8px;
    padding: 1.75rem 1rem 0.5rem;
  }
}

.ingenuity-card__title {
  font-size: 19px;
  font-size: 1.1875rem;
  color: #d5323c;
  text-align: center;
  line-height: 1.4736842105;
  letter-spacing: 0.1em;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .ingenuity-card__title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
}

.ingenuity-card__img {
  margin-top: 13px;
  margin-top: 0.8125rem;
}

@media screen and (max-width: 768px) {
  .ingenuity-card__img {
    margin-top: 3px;
    margin-top: 0.1875rem;
  }
}

.ingenuity-card__img img {
  width: 100%;
  aspect-ratio: 271/156;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .ingenuity-card__img img {
    aspect-ratio: 214/124;
  }
}

.ingenuity-card__btn {
  width: 56.4575645756%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 13px;
  margin-top: 0.8125rem;
  min-height: 38px;
  min-height: 2.375rem;
  padding: 9px 0;
  padding: 0.5625rem 0;
  background-color: #fff;
  border-radius: 1.1875rem;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.16);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.16);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .ingenuity-card__btn {
    width: 71.4953271028%;
    margin-top: 7px;
    margin-top: 0.4375rem;
  }
}

.ingenuity-card__btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  font-size: 0.875rem;
  color: #d5323c;
  line-height: 1.4285714286;
  letter-spacing: 0.03em;
  font-weight: 500;
  position: relative;
}

@media screen and (max-width: 768px) {
  .ingenuity-card__btn span {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.ingenuity-card__btn span::after {
  content: "";
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  display: inline-block;
  margin-left: 7px;
  margin-left: 0.4375rem;
  background: transparent url(../images/common/icon-plus.png) no-repeat center center;
  background-size: 100%;
}

.ingenuity-title {
  text-align: center;
}

.ingenuity-title__ja {
  display: inline;
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1.48;
  letter-spacing: 0.1em;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(65%, #faee00));
  background: linear-gradient(transparent 65%, #faee00 65%);
}

@media screen and (max-width: 768px) {
  .ingenuity-title__ja {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.4736842105;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(77%, transparent), color-stop(77%, #faee00));
    background: linear-gradient(transparent 77%, #faee00 77%);
  }
}

.ingenuity-title__ja span {
  display: inline-block;
  margin-right: 4px;
  margin-right: 0.25rem;
  margin-left: 7px;
  margin-left: 0.4375rem;
  font-size: 38px;
  font-size: 2.375rem;
  color: #d5323c;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .ingenuity-title__ja span {
    margin-right: 0px;
    margin-right: 0rem;
    margin-left: 2px;
    margin-left: 0.125rem;
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.inner {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1366px;
}

.insulation-card {
  -webkit-box-shadow: 0 0.1875rem 1rem rgba(0, 0, 0, 0.16);
  box-shadow: 0 0.1875rem 1rem rgba(0, 0, 0, 0.16);
  border-radius: 0.625rem;
  background-color: #fff;
}

.insulation-card__head {
  padding-top: 2px;
  padding-top: 0.125rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #d5323c;
  border-radius: 0.625rem 0.625rem 0 0;
}

@media screen and (max-width: 768px) {
  .insulation-card__head {
    min-height: 40px;
    min-height: 2.5rem;
    padding-top: 0;
    padding-bottom: 6px;
    padding-bottom: 0.375rem;
  }
}

.insulation-card__title {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #fff;
  line-height: 1.48;
  letter-spacing: 0.12em;
  font-weight: 700;
  position: relative;
}

@media screen and (max-width: 768px) {
  .insulation-card__title {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.4666666667;
  }
}

.insulation-card__title.insulation-card__title--dot::after {
  content: "※";
  display: block;
  font-size: 10px;
  font-size: 0.625rem;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.12em;
  font-weight: 700;
  position: absolute;
  top: 18px;
  top: 1.125rem;
  right: -20px;
  right: -1.25rem;
}

@media screen and (max-width: 768px) {
  .insulation-card__title.insulation-card__title--dot::after {
    font-size: 5px;
    font-size: 0.3125rem;
    line-height: 1.6;
    top: 0.7rem;
    right: -0.4rem;
  }
}

.insulation-card__title span {
  display: inline-block;
  margin: 0 5px;
  margin: 0 0.3125rem;
  font-size: 39px;
  font-size: 2.4375rem;
  color: #ffe216;
  line-height: 1.4;
  letter-spacing: 0.12em;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .insulation-card__title span {
    margin-right: 0;
    margin-left: 3px;
    margin-left: 0.1875rem;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

.insulation-card__body {
  padding: 18px 0 12px;
  padding: 1.125rem 0 0.75rem;
  border-radius: 0 0 0.625rem 0.625rem;
}

@media screen and (max-width: 768px) {
  .insulation-card__body {
    padding: 12px 0 9px;
    padding: 0.75rem 0 0.5625rem;
  }
}

.insulation-card__img-large {
  display: block;
  width: 85.9848484848%;
  margin-right: auto;
  margin-left: 30px;
  margin-left: 1.875rem;
}

@media screen and (max-width: 768px) {
  .insulation-card__img-large {
    width: 90.7407407407%;
    margin-left: auto;
  }
}

.insulation-card__supplement {
  width: 85.9848484848%;
  margin-right: auto;
  margin-left: 30px;
  margin-left: 1.875rem;
  margin-top: 11px;
  margin-top: 0.6875rem;
  font-size: 13px;
  font-size: 0.8125rem;
  text-align: right;
  line-height: 1.6923076923;
}

@media screen and (max-width: 768px) {
  .insulation-card__supplement {
    width: 90.7407407407%;
    margin-left: auto;
    margin-top: 9px;
    margin-top: 0.5625rem;
    font-size: 11px;
    font-size: 0.6875rem;
    text-align: left;
    line-height: 1.5454545455;
  }
}

.insulation-card__subtitle {
  width: 89.0151515152%;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #707070;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.45;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .insulation-card__subtitle {
    padding-bottom: 8px;
    padding-bottom: 0.5rem;
    width: 90.4320987654%;
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 1.4705882353;
  }
}

.insulation-card__subtitle span {
  display: inline-block;
  color: #d5323c;
  margin-right: 5px;
  margin-right: 0.3125rem;
}

.insulation-card__subtitle span:last-of-type {
  margin-left: 5px;
  margin-left: 0.3125rem;
}

.insulation-card__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
  margin-right: 1.8165625rem;
}

@media screen and (max-width: 768px) {
  .insulation-card__container {
    justify-content: center;
    gap: 0.6rem;
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .insulation-card__container .insulation-card__text {
  }
}

.insulation-card__box .insulation-card__text {
  margin-right: 0;
  margin-left: 1.8165625rem;
  width: 15.4rem;
}

@media screen and (max-width: 768px) {
  .insulation-card__container .insulation-card__text {
    margin-left: 0.8165625rem;
    width: 11rem;
  }
}

.insulation-card__text {
  width: 89.0151515152%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 12px;
  margin-top: 0.75rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 768px) {
  .insulation-card__text {
    width: 90.4320987654%;
    margin-top: 9px;
    margin-top: 0.5625rem;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.insulation-card__img {
  display: block;
  width: 89.0151515152%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 10px;
  margin-top: 0.625rem;
}

@media screen and (max-width: 768px) {
  .insulation-card__img {
    width: 90.4320987654%;
    margin: 0.5rem auto 0;
  }
}

.insulation {
  background-color: #e9edef;
}

.insulation__inner {
  padding: 7.375rem 0rem 8.5rem;
}

@media screen and (max-width: 768px) {
  .insulation__inner {
    /* padding: 3rem 0 3.05rem 1.575rem; */
    padding: 3rem 0 1rem;
  }
}

.insulation__body {
  margin-top: 50px;
  margin-top: 3.125rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

@media screen and (max-width: 768px) {
  .insulation__body {
    margin-top: 37px;
    margin-top: 2.3125rem;
  }
}

@media screen and (max-width: 768px) {
  .insulation__wrapper {
    width: 100%;
    position: relative;
    height: 30rem;
  }
}

.insulation__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 70.5rem;
  gap: 2.375rem;
  margin: 0 auto 3rem;
}

@media screen and (max-width: 768px) {
  .insulation__list {
    position: absolute;
    top: 0;
    left: 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0;
    width: auto;
  }
}

.insulation__list .swiper-slide {
  height: auto;
  width: auto;
}
@media screen and (max-width: 768px) {
  .insulation__list .swiper-slide {
    padding: 2rem 0;
    height: 100%;
    width: 100%;
  }
}

.insulation__item {
  width: 529px;
  width: 33.0625rem;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .insulation__item {
    width: 325px;
    width: 20.3125rem;
  }
}

@media screen and (max-width: 768px) {
  .insulation__item:first-child {
    margin-left: 1.625rem;
  }
}

@media screen and (max-width: 768px) {
  .insulation__item:last-child {
    margin-right: 1.625rem;
  }
}

.insulation-card2 {
  padding: 52px 0 29px;
  padding: 3.25rem 0 1.8125rem;
  width: 68.5rem;
  -webkit-box-shadow: 0 0.1875rem 1rem rgba(0, 0, 0, 0.16);
  box-shadow: 0 0.1875rem 1rem rgba(0, 0, 0, 0.16);
  border-radius: 0.625rem;
  background-color: #687788;
  position: relative;
}

@media screen and (max-width: 768px) {
  .insulation-card2 {
    padding: 34px 0 17px;
    padding: 2.125rem 0 1.0625rem;
    width: 20.3125rem;
  }
}

.insulation-card2__question {
  display: block;
  width: 76px;
  width: 4.75rem;
  height: 73px;
  height: 4.5625rem;
  position: absolute;
  top: -23px;
  top: -1.4375rem;
  left: -15px;
  left: -0.9375rem;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .insulation-card2__question {
    width: 54px;
    width: 3.375rem;
    height: 53px;
    height: 3.3125rem;
    top: -20px;
    top: -1.25rem;
    left: -19px;
    left: -1.1875rem;
  }
}

.insulation-card2__container {
  display: flex;
  align-items: center;

  @media screen and (max-width: 768px) {
    display: block;
  }
}

.insulation-card2__head {
  width: 86.1742424242%;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 13px;
  padding-bottom: 0.8125rem;
  border-bottom: 2px solid #fff;
  position: relative;
}

@media screen and (max-width: 768px) {
  .insulation-card2__head {
    width: 89.5384615385%;
    padding-bottom: 4px;
    padding-bottom: 0.25rem;
  }
}

.insulation-card2__head::after {
  content: "";
  width: 76px;
  width: 4.75rem;
  height: 79px;
  height: 4.9375rem;
  background: transparent url(../images/lp/insulation-human.png) no-repeat top right;
  background-size: 100%;
  position: absolute;
  bottom: -1px;
  bottom: -0.0625rem;
  right: 0;
}

.insulation-card2__title {
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .insulation-card2__title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.8;
  }
}

.insulation-card2__em {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 7px;
  margin-right: 0.4375rem;
  border-radius: 0.375rem;
  padding: 0 10px;
  padding: 0 0.625rem;
  font-size: 23px;
  font-size: 1.4375rem;
  color: #d5323c;
  line-height: 1.6956521739;
  letter-spacing: 0.06em;
  font-weight: 700;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .insulation-card2__em {
    padding: 0 7px;
    padding: 0 0.4375rem;
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.65;
  }
}

.insulation-card2__body {
  width: 86.1742424242%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 12px;
  margin-top: 0.75rem;
}

@media screen and (max-width: 768px) {
  .insulation-card2__body {
    width: 89.5384615385%;
    margin-top: 11px;
    margin-top: 0.6875rem;
  }
}

.insulation-card2__text {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #fff;
  line-height: 1.6666666667;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 768px) {
  .insulation-card2__text {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.5714285714;
  }
}

.insulation-card2__img {
  display: block;
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-right: 1.825rem;
}

@media screen and (max-width: 768px) {
  .insulation-card2__img {
    margin: 0.8125rem auto 0;
    width: 90%;
  }
}

.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;
}

.maker {
  margin-top: -160px;
  margin-top: -10rem;
  background-color: #d5323c;
  background-color: #e9edef;
}

@media screen and (max-width: 768px) {
  .maker {
    margin-top: 0;
  }
}

.maker__inner {
  margin-right: auto;
  margin-left: auto;
  padding-top: 215px;
  padding-top: 13.4375rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  max-width: 667px;
  max-width: 41.6875rem;
}

@media screen and (max-width: 768px) {
  .maker__inner {
    padding-top: 40px;
    padding-top: 2.5rem;
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
    max-width: 325px;
    max-width: 20.3125rem;
  }
}

.catalog .maker__inner {
  padding-top: 5rem;
}
@media screen and (max-width: 768px) {
  .catalog .maker__inner {
    padding-top: 2.5rem;
  }
}

.maker__title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4375;
  letter-spacing: 0.1em;
  color: #fff;
  color: #000;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .maker__title {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.4545454545;
  }
}

.maker__text {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  color: #000;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .maker__text {
    margin-top: 16px;
    margin-top: 1rem;
  }
}

.maker__top-items {
  margin-top: 29px;
  margin-top: 1.8125rem;
  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;
  gap: 18px;
  gap: 1.125rem;
}

@media screen and (max-width: 768px) {
  .maker__top-items {
    margin-top: 14px;
    margin-top: 0.875rem;
    gap: 10px;
    gap: 0.625rem;
  }
}

.maker__item {
  width: 100%;
  max-width: 190px;
  max-width: 11.875rem;
}

@media screen and (max-width: 768px) {
  .maker__item {
    max-width: 102px;
    max-width: 6.375rem;
  }
}

.maker__under-items {
  margin-top: 12px;
  margin-top: 0.75rem;
  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;
  gap: 18px;
  gap: 1.125rem;
}

@media screen and (max-width: 768px) {
  .maker__under-items {
    margin-top: 6px;
    margin-top: 0.375rem;
    gap: 10px;
    gap: 0.625rem;
  }
}

.maker__wrap {
  margin-top: 24px;
  margin-top: 1.5rem;
  display: grid;
  justify-items: center;
}

@media screen and (max-width: 768px) {
  .maker__wrap {
    margin-top: 12px;
    margin-top: 0.75rem;
  }
}

.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;
  }
}

.mv {
  background-color: #d5323c;
}

@media screen and (max-width: 768px) {
  .mv {
    height: auto;
    height: initial;
    background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
    background: initial;
  }
}

.mv__inner {
  margin-right: auto;
  margin-left: auto;
  padding-top: 5.3rem;
}

@media screen and (max-width: 768px) {
  .mv__inner {
    padding-top: 0;
  }
}

.mv__box {
  display: flex;
  justify-content: center;
}


.mv__left {
  padding: 3.5rem 4rem 3.5rem 5.4rem;
  width: 38%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mv__left::-webkit-scrollbar {
  display: none;
}

.mv__right {
  width: 62%;
}

.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;
}

.mv__img {
  max-width: 628px;
  max-width: 39.25rem;
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .mv__img {
    display: block;
    width: 100%;
    height: inherit;
  }
}

.mv__img img {
  display: block;
  width: 100%;
  height: inherit;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.mv__text {
  margin-top: 1rem;
  max-width: 30rem;
}

@media screen and (max-width: 768px) {
  .mv__text {
    padding: 5.5rem 1.75rem 2.1rem;
    background: #d5323c;
  }
}

.mv__notes {
  font-size: 0.775rem;
  color: #fff;
  font-weight: 300;
  line-height: 1.225;
}

@media screen and (max-width: 768px) {
  .mv__notes {
    font-size: 0.5rem;
    font-weight: 400;
  }
}
.mv__model-button {
  position: absolute;
  z-index: 999;
  top: 34vw;
  right: 4%;
  width: 18vw;
  max-width: 320px;
}
.mv__model-link {
  width: 100%;
}

.research-top {
  margin-right: auto;
  margin-left: auto;
  max-width: 960px;
  max-width: 60rem;
  background-color: #fff;
  border-radius: 0.625rem;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .research-top {
    margin-right: auto;
    margin-left: auto;
    max-width: 325px;
    max-width: 20.3125rem;
  }
}

.research-top__read {
  padding-top: 15px;
  padding-top: 0.9375rem;
  padding-bottom: 14px;
  padding-bottom: 0.875rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4583333333;
  letter-spacing: 0.12em;
  color: #fff;
  background-color: #d5323c;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .research-top__read {
    padding-top: 11px;
    padding-top: 0.6875rem;
    padding-bottom: 9px;
    padding-bottom: 0.5625rem;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.4;
  }
}

.research-top__items {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 960px;
  max-width: 60rem;
  padding-top: 28px;
  padding-top: 1.75rem;
  padding-right: 57px;
  padding-right: 3.5625rem;
  padding-bottom: 36px;
  padding-bottom: 2.25rem;
  padding-left: 57px;
  padding-left: 3.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 88px;
  gap: 5.5rem;
  position: relative;
}

@media screen and (max-width: 768px) {
  .research-top__items {
    margin-right: auto;
    margin-left: auto;
    padding-top: 16px;
    padding-top: 1rem;
    padding-right: 0;
    padding-bottom: 18px;
    padding-bottom: 1.125rem;
    padding-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 292px;
    max-width: 18.25rem;
  }
}

.research-top__items::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 387px;
  height: 24.1875rem;
  height: 425px;
  height: 26.5625rem;
  background-color: #d5323c;
  position: absolute;
  top: 24px;
  top: 1.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .research-top__items::after {
    display: none;
  }
}

.research-top__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 380px;
  max-width: 23.75rem;
}

@media screen and (max-width: 768px) {
  .research-top__item:first-of-type {
    padding-bottom: 16px;
    padding-bottom: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .research-top__item + .research-top__item {
    padding-top: 12px;
    padding-top: 0.75rem;
    border-top: 1px solid #d5323c;
  }
}

.research-top__head {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
  color: #d5323c;
}

@media screen and (max-width: 768px) {
  .research-top__head {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }
}

.research-top__head span {
  margin-right: 14.5px;
  margin-right: 0.90625rem;
  font-size: 26px;
  font-size: 1.625rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2307692308;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .research-top__head span {
    margin-right: 4px;
    margin-right: 0.25rem;
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 1.1904761905;
  }
}

.research-top__text {
  margin-top: 8px;
  margin-top: 0.5rem;
  margin-bottom: auto;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5714285714;
  letter-spacing: -0.04em;
  color: #000;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

@media screen and (max-width: 768px) {
  .research-top__text {
    margin-top: 4px;
    margin-top: 0.25rem;
    letter-spacing: 0;
  }
}

.research-top__img {
  margin-top: 18px;
  margin-top: 1.125rem;
  display: block;
  width: 100%;
  max-width: 380px;
  max-width: 23.75rem;
}

@media screen and (max-width: 768px) {
  .research-top__img {
    margin-top: 11px;
    margin-top: 0.6875rem;
    max-width: 380px;
    max-width: 23.75rem;
  }
}

.research-top__img img {
  width: 100%;
  aspect-ratio: 380/246;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media screen and (max-width: 768px) {
  .research-top__img img {
    aspect-ratio: 380/246;
  }
}

.research-under {
  margin-right: auto;
  margin-left: auto;
  max-width: 960px;
  max-width: 60rem;
  padding-top: 33px;
  padding-top: 2.0625rem;
  padding-right: 58px;
  padding-right: 3.625rem;
  padding-left: 58px;
  padding-left: 3.625rem;
  background-color: #fff;
  border-radius: 0.625rem;
}

@media screen and (max-width: 768px) {
  .research-under {
    margin-right: auto;
    margin-left: auto;
    padding-top: 18px;
    padding-top: 1.125rem;
    padding-right: 0;
    padding-bottom: 17px;
    padding-bottom: 1.0625rem;
    padding-left: 0;
    max-width: 325px;
    max-width: 20.3125rem;
  }
}

.research-under__wrap {
  text-align: center;
}

.research-under__read {
  display: inline-block;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0.15em;
  color: #d5323c;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(65%, #faee00));
  background: linear-gradient(transparent 65%, #faee00 65%);
}

@media screen and (max-width: 768px) {
  .research-under__read {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.45;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(77%, transparent), color-stop(77%, #faee00));
    background: linear-gradient(transparent 77%, #faee00 77%);
  }
}

.research-under__read span {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 500;
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
  color: #000;
}

@media screen and (max-width: 768px) {
  .research-under__read span {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}

.research-under__items {
  margin-top: 34px;
  margin-top: 2.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 27px;
  gap: 1.6875rem;
}

@media screen and (max-width: 768px) {
  .research-under__items {
    margin-top: 16px;
    margin-top: 1rem;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 240px;
    max-width: 15rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
}

.research-under__item {
  position: relative;
}

@media screen and (max-width: 768px) {
  .research-under__item::after {
    content: "";
    display: inline-block;
    width: 8.96px;
    width: 0.56rem;
    height: 16px;
    height: 1rem;
    background-image: url(../images/common/triangle.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    rotate: 90deg;
    bottom: -17px;
    bottom: -1.0625rem;
    left: 48%;
  }
}

.research-under__inner-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 27px;
  gap: 1.6875rem;
  position: relative;
}

@media screen and (max-width: 768px) {
  .research-under__inner-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 17px;
    gap: 1.0625rem;
  }
}

.research-under__inner-item {
  position: relative;
}

@media screen and (max-width: 768px) {
  .research-under__inner-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 17px;
    gap: 1.0625rem;
  }
}

.research-under__inner-tag {
  padding-top: 5.5px;
  padding-top: 0.34375rem;
  padding-bottom: 5.5px;
  padding-bottom: 0.34375rem;
  display: inline-block;
  width: 43px;
  width: 2.6875rem;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.4545454545;
  color: #fff;
  background-color: #d5323c;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .research-under__inner-tag {
    padding-top: 2.5px;
    padding-top: 0.15625rem;
    padding-bottom: 2.5px;
    padding-bottom: 0.15625rem;
    width: 21px;
    width: 1.3125rem;
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 1.4545454545;
  }
}

.research-under__inner-img {
  display: block;
  width: 100%;
  max-width: 148px;
  max-width: 9.25rem;
}

@media screen and (max-width: 768px) {
  .research-under__inner-img {
    max-width: 71px;
    max-width: 4.4375rem;
  }
}

.research-under__inner-img img {
  width: 100%;
  aspect-ratio: 148/148;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media screen and (max-width: 768px) {
  .research-under__inner-img img {
    aspect-ratio: 71/71;
  }
}

.research-under__inner-img + .research-under__inner-img {
  position: relative;
}

.research-under__inner-img::before {
  content: "";
  display: inline-block;
  width: 13.9px;
  width: 0.86875rem;
  height: 24.82px;
  height: 1.55125rem;
  background-image: url(../images/common/triangle.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 31%;
  left: -19px;
  left: -1.1875rem;
}

@media screen and (max-width: 768px) {
  .research-under__inner-img::before {
    width: 8.96px;
    width: 0.56rem;
    height: 16px;
    height: 1rem;
    rotate: 90deg;
    top: -12px;
    top: -0.75rem;
    left: 48%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.research-under__inner-img.research-under__inner-img-first::before {
  display: none;
}

.research-under__inner-head {
  margin-top: 9px;
  margin-top: 0.5625rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #d5323c;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .research-under__inner-head {
    margin-top: 0;
    text-align: left;
  }
}

.research-under__inner-desc {
  margin-top: 4px;
  margin-top: 0.25rem;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.4615384615;
  letter-spacing: 0.1em;
  color: #000;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .research-under__inner-desc {
    text-align: left;
  }
}

.research-under__inner-desc span {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .research-under__inner-desc span {
    display: inline;
    display: initial;
  }
}

.research-under__text-wrap {
  margin-top: 20px;
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .research-under__text-wrap {
    position: absolute;
    top: 26px;
    top: 1.625rem;
    left: -35px;
    left: -2.1875rem;
  }
}

.research-under__text {
  padding-right: 4.25px;
  padding-right: 0.265625rem;
  padding-left: 4.25px;
  padding-left: 0.265625rem;
  max-width: 80px;
  max-width: 5rem;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.4615384615;
  letter-spacing: 0.1em;
  color: #000;
  background-color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .research-under__text {
    padding-top: 1px;
    padding-bottom: 1px;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}

.research-under__text span {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .research-under__text span {
    display: inline;
    display: initial;
  }
}

.research-under__bg {
  display: block;
  width: 100%;
  max-width: 325px;
  max-width: 20.3125rem;
  position: relative;
  top: -30px;
  top: -1.875rem;
}

@media screen and (max-width: 768px) {
  .research-under__bg {
    max-width: 16px;
    max-width: 1rem;
    position: absolute;
    top: 0;
    left: -21px;
    left: -1.3125rem;
  }
}

.research-under__middle {
  margin-top: 17px;
  margin-top: 1.0625rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.research-under__middle-text {
  padding-top: 10px;
  padding-top: 0.625rem;
  padding-right: 35px;
  padding-right: 2.1875rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  padding-left: 35px;
  padding-left: 2.1875rem;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.4615384615;
  letter-spacing: 0.1em;
  color: #d5323c;
  background-color: #fff6f2;
  text-align: center;
  border-radius: 0.1875rem;
}

@media screen and (max-width: 768px) {
  .research-under__item-under {
    position: relative;
  }
}

.research-under__text-wrap-right {
  margin-top: 20px;
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .research-under__text-wrap-right {
    position: absolute;
    top: 33px;
    top: 2.0625rem;
    left: -37px;
    left: -2.3125rem;
  }
}

.research-under__text-right {
  padding-right: 7px;
  padding-right: 0.4375rem;
  padding-left: 7px;
  padding-left: 0.4375rem;
  max-width: 284px;
  max-width: 17.75rem;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.4615384615;
  letter-spacing: 0.1em;
  color: #d5323c;
  background-color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .research-under__text-right {
    padding-top: 1px;
    padding-bottom: 1px;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.research-under__text-right span {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .research-under__text-right span {
    display: inline;
    display: initial;
  }
}

.research-under__bg-right {
  display: block;
  width: 100%;
  max-width: 500px;
  max-width: 31.25rem;
  position: relative;
  top: -50px;
  top: -3.125rem;
}

@media screen and (max-width: 768px) {
  .research-under__bg-right {
    max-width: 16px;
    max-width: 1rem;
    position: absolute;
    top: 0;
    left: -21px;
    left: -1.3125rem;
  }
}

.research {
  padding-top: 54px;
  padding-top: 3.375rem;
  padding-bottom: 218px;
  padding-bottom: 13.625rem;
  background-color: #e9edef;
  position: relative;
}

@media screen and (max-width: 768px) {
  .research {
    padding-top: 45px;
    padding-top: 2.8125rem;
    padding-bottom: 33px;
    padding-bottom: 2.0625rem;
  }
}

.research__inner {
  margin-right: auto;
  margin-left: auto;
  max-width: 960px;
  max-width: 60rem;
  max-width: 962px;
}

.research__title .common-title__en {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.2666666667;
  letter-spacing: 0.14em;
}

@media screen and (max-width: 768px) {
  .research__title .common-title__en {
    letter-spacing: 0.06em;
  }
}

.research__top-box {
  margin-top: 48px;
  margin-top: 3rem;
}

@media screen and (max-width: 768px) {
  .research__top-box {
    margin-top: 24px;
    margin-top: 1.5rem;
  }
}

.research__under-box {
  margin-top: 32px;
  margin-top: 2rem;
}

@media screen and (max-width: 768px) {
  .research__under-box {
    margin-top: 16px;
    margin-top: 1rem;
  }
}

.resistance-modal {
  position: relative;
}

.resistance-modal__inner {
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  background-color: #fff;
  border-radius: 0.625rem;
  position: relative;
}

@media screen and (max-width: 768px) {
  .resistance-modal__inner {
    padding-top: 16px;
    padding-top: 1rem;
    padding-bottom: 28px;
    padding-bottom: 1.75rem;
  }
}

.resistance-modal__head {
  width: 91.3461538462%;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .resistance-modal__head {
    width: 91.7981072555%;
  }
}

.resistance-modal__title {
  padding: 12.5px 24px;
  padding: 0.78125rem 1.5rem;
  font-size: 17px;
  font-size: 1.0625rem;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.08em;
  font-weight: 700;
  background-color: #d5323c;
}

@media screen and (max-width: 768px) {
  .resistance-modal__title {
    padding: 7.5px 16px;
    padding: 0.46875rem 1rem;
  }
}

.resistance-modal__body {
  width: 91.3461538462%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 17px;
  margin-top: 1.0625rem;
}

@media screen and (max-width: 768px) {
  .resistance-modal__body {
    width: 91.7981072555%;
    margin-top: 10px;
    margin-top: 0.625rem;
  }
}

.resistance-modal__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
  .resistance-modal__text {
    line-height: 1.5714285714;
    letter-spacing: 0;
  }
}

.resistance-modal__text--yellow {
  display: inline;
  background: #faee00;
}

.resistance-modal__imgWrap {
  margin-top: 22px;
  margin-top: 1.375rem;
  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) {
  .resistance-modal__imgWrap {
    margin-top: 19px;
    margin-top: 1.1875rem;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.resistance-modal__img {
  width: 49.022556391%;
}

@media screen and (max-width: 768px) {
  .resistance-modal__img {
    width: auto;
  }
}

@media screen and (max-width: 768px) {
  .resistance-modal__img:nth-child(n + 2) {
    margin-top: 19px;
    margin-top: 1.1875rem;
  }
}

.resistance-modal__imgTitle {
  display: block;
  margin-bottom: 3px;
  margin-bottom: 0.1875rem;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.8461538462;
  letter-spacing: 0.08em;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .resistance-modal__imgTitle {
    margin-bottom: 6px;
    margin-bottom: 0.375rem;
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 1.8181818182;
  }
}

.resistance-modal__imgTitle--red {
  color: #d5323c;
}

.resistance-modal__img img {
  width: 100%;
  aspect-ratio: 326/211;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .resistance-modal__img img {
    aspect-ratio: 291/178;
  }
}

.resistance-modal__img--gray {
  border: 4px solid #b7b7b7;
}

.resistance-modal__img--red {
  border: 4px solid #d5323c;
}

.resistance-modal__caption {
  margin-top: 11px;
  margin-top: 0.6875rem;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.8461538462;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
  .resistance-modal__caption {
    margin-top: 4px;
    margin-top: 0.25rem;
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 1.5384615385;
    letter-spacing: 0;
  }
}

.resistance-modal__caption--red {
  display: inline;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #d5323c;
  line-height: 1.6;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .resistance-modal__caption--red {
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 1.4615384615;
  }
}

.resistance-modal__list {
  margin-top: 32px;
  margin-top: 2rem;
  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) {
  .resistance-modal__list {
    margin-top: 30px;
    margin-top: 1.875rem;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.resistance-modal__item {
  width: 31.5789473684%;
}

@media screen and (max-width: 768px) {
  .resistance-modal__item {
    width: auto;
  }
}

@media screen and (max-width: 768px) {
  .resistance-modal__item:nth-child(n + 2) {
    margin-top: 8px;
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 768px) {
  .resistance-modal__item .modal-card__img {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (max-width: 768px) {
  .resistance-modal__item:nth-child(1) .modal-card__img {
    width: 79.5847750865%;
  }
}

@media screen and (max-width: 768px) {
  .resistance-modal__item:nth-child(2) .modal-card__img {
    width: 92.3875432526%;
  }
}

@media screen and (max-width: 768px) {
  .resistance-modal__item:nth-child(3) .modal-card__img {
    width: 66.0899653979%;
  }
}

.resistance-modal__arrow {
  width: 27px;
  width: 1.6875rem;
  height: 54px;
  height: 3.375rem;
  text-indent: -9999px;
  background: transparent url(../images/common/slide-arrow-white.png) no-repeat center center;
  background-size: 100%;
}

.resistance-modal__arrow--prev {
  position: absolute;
  top: 50%;
  left: -56px;
  left: -3.5rem;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}

.resistance-modal__arrow--next {
  position: absolute;
  top: 50%;
  right: -56px;
  right: -3.5rem;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}

#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;
  }
}

.resistance-top {
  border: 1px solid #d5313c;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0.625rem;
}

.resistance-top__head {
  padding-top: 1px;
  padding-top: 0.0625rem;
  padding-bottom: 11px;
  padding-bottom: 0.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #d5323c;
  border-radius: 0.5625rem 0.5625rem 0 0;
}

@media screen and (max-width: 768px) {
  .resistance-top__head {
    padding-top: 0;
    padding-bottom: 6px;
    padding-bottom: 0.375rem;
  }
}

.resistance-top__title {
  font-size: 32px;
  font-size: 2rem;
  color: #fff;
  line-height: 1.46875;
  letter-spacing: 0.12em;
  font-weight: 700;
  position: relative;
}

@media screen and (max-width: 768px) {
  .resistance-top__title {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.4666666667;
  }
}

.resistance-top__title::after {
  content: "※";
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  line-height: 1.4285714286;
  letter-spacing: 0.12em;
  font-weight: 700;
  position: absolute;
  top: 18px;
  top: 1.125rem;
  right: -20px;
  right: -1.25rem;
}

@media screen and (max-width: 768px) {
  .resistance-top__title::after {
    font-size: 5px;
    font-size: 0.3125rem;
    line-height: 1.6;
    top: 2px;
    top: 0.125rem;
    right: -10px;
    right: -0.625rem;
  }
}

.resistance-top__title span {
  display: inline-block;
  margin: 0 5px;
  margin: 0 0.3125rem;
  font-size: 47px;
  font-size: 2.9375rem;
  color: #ffe216;
  line-height: 1.4;
  letter-spacing: 0.12em;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .resistance-top__title span {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

.resistance-top__body {
  padding: 26px 14px 2px;
  padding: 1.625rem 0.875rem 0.125rem;
  background-color: #fff;
  border-radius: 0 0 0.5625rem 0.5625rem;
}

@media screen and (max-width: 768px) {
  .resistance-top__body {
    padding: 16px 0 13px;
    padding: 1rem 0 0.8125rem;
  }
}

.resistance-top__read {
  width: 57.6923076923%;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .resistance-top__read {
    width: 89.5061728395%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.resistance-top__icon {
  width: 18.7387387387%;
  margin-right: 11px;
  margin-right: 0.6875rem;
}

@media screen and (max-width: 768px) {
  .resistance-top__icon {
    width: 36.1111111111%;
    margin-right: auto;
  }
}

.resistance-top__read-txt {
  width: 77.6576576577%;
}

@media screen and (max-width: 768px) {
  .resistance-top__read-txt {
    width: auto;
    margin-top: 4px;
    margin-top: 0.25rem;
  }
}

.resistance-top__read-txt--red {
  display: inline-block;
  font-size: 30px;
  font-size: 1.875rem;
  color: #d5323c;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .resistance-top__read-txt--red {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.4736842105;
  }
}

.resistance-top__img {
  display: block;
  width: 67.4121405751%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 11px;
  margin-top: 0.6875rem;
}

@media screen and (max-width: 768px) {
  .resistance-top__img {
    width: 90.7407407407%;
    margin-top: 16px;
    margin-top: 1rem;
  }
}

.resistance-top__img img {
  width: 100%;
  aspect-ratio: 633/239;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .resistance-top__img img {
    aspect-ratio: 292/110;
  }
}

.resistance-top__supplement {
  margin-top: 22px;
  margin-top: 1.375rem;
  font-size: 13px;
  font-size: 0.8125rem;
  text-align: right;
  line-height: 1.6923076923;
}

@media screen and (max-width: 768px) {
  .resistance-top__supplement {
    width: 90.1234567901%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 11px;
    margin-top: 0.6875rem;
    font-size: 11px;
    font-size: 0.6875rem;
    text-align: left;
    line-height: 1.5454545455;
  }
}

.resistance {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#e9edef),
    color-stop(17%, #e9edef),
    color-stop(17%, #fff),
    color-stop(87%, #fff),
    color-stop(87%, #e9edef),
    to(#e9edef)
  );
  background: linear-gradient(180deg, #e9edef 0%, #e9edef 17%, #fff 17%, #fff 87%, #e9edef 87%, #e9edef 100%);
}

@media screen and (max-width: 768px) {
  .resistance {
    background: #fff;
  }
}

.resistance__inner {
  max-width: 1169px;
  padding-top: 54px;
  padding-top: 3.375rem;
  padding-bottom: 71px;
  padding-bottom: 4.4375rem;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .resistance__inner {
    padding-top: 33px;
    padding-top: 2.0625rem;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
  }
}

.resistance__top {
  width: 82.9769033362%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 50px;
  margin-top: 3.125rem;
}

@media screen and (max-width: 768px) {
  .resistance__top {
    width: 86.4%;
    margin-top: 23px;
    margin-top: 1.4375rem;
  }
}

.resistance__bottom {
  margin-top: 28px;
  margin-top: 1.75rem;
}

@media screen and (max-width: 768px) {
  .resistance__bottom {
    margin-top: 33px;
    margin-top: 2.0625rem;
  }
}

@media screen and (max-width: 768px) {
  .resistance__wrapper {
    width: 92.8%;
    margin-left: auto;
  }
}

.resistance__list {
  width: 82.8058169376%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 47px;
  margin-top: 2.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .resistance__list {
    display: block;
    width: auto;
    margin-right: 0;
    margin-left: 0;
    margin-top: 14px;
    margin-top: 0.875rem;
  }
}

.resistance__item {
  width: 32.3347107438%;
}

@media screen and (max-width: 768px) {
  .resistance__item {
    width: auto;
    margin-right: 12px;
    margin-right: 0.75rem;
  }
}

.resistance__item:not(:nth-child(3n + 1)) {
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .resistance__item:not(:nth-child(3n + 1)) {
    margin-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .resistance__list .slick-list {
    padding-top: 15px;
    padding-top: 0.9375rem;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
    padding-right: 27.2%;
  }
}

.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;
}

.under-mv {
  margin-top: 1rem;
  background-color: #d5323c;
  max-width: 28rem;
}

@media screen and (max-width: 768px) {
  .under-mv {
    margin-top: 0;
    margin-left: 0;
    padding: 1.5rem 1.75rem 1.875rem;
    max-width: none;
    max-width: initial;
  }
}

@media screen and (max-width: 768px) {
  .under-mv-sp-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin: 0 0 0.425rem 0;
  }
}
@media screen and (max-width: 768px) {
  .under-mv-sp-model-button {
    margin-bottom: 1rem;
  }
}
.under-mv__inner {
  /* padding-bottom: 146px;
  padding-bottom: 9.125rem; */
  padding-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  .under-mv__inner {
    padding-bottom: 0;
  }
}

.under-mv__text {
  margin-top: -17px;
  margin-top: -1.0625rem;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 500;
  line-height: 2.5238095238;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .under-mv__text {
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 2;
  }
}

.under-mv__text + .under-mv__text {
  margin-top: 17px;
  margin-top: 1.0625rem;
}

@media screen and (max-width: 768px) {
  .under-mv__text + .under-mv__text {
    margin-top: 11px;
    margin-top: 0.6875rem;
  }
}

@-moz-document url-prefix() {
  @media screen and (max-width: 768px) {
    .under-mv__text + .under-mv__text {
      letter-spacing: -0.01em;
    }
  }
}

::-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;
  }
}

.warranty {
  background-color: #fff;
}

.warranty__inner {
  margin-top: -160px;
  margin-top: -10rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-right: 99.5px;
  padding-right: 6.21875rem;
  padding-bottom: 56px;
  padding-bottom: 3.5rem;
  padding-left: 99.5px;
  padding-left: 6.21875rem;
  max-width: 1170px;
  max-width: 73.125rem;
  background-color: #fff;
  position: relative;
}

@media screen and (max-width: 768px) {
  .warranty__inner {
    margin-top: 0;
    padding-top: 37px;
    padding-top: 2.3125rem;
    padding-right: 0;
    padding-bottom: 41px;
    padding-bottom: 2.5625rem;
    padding-left: 0;
    max-width: 325px;
    max-width: 20.3125rem;
  }
}

.warranty__title .common-title__en {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.2666666667;
}

.warranty__box {
  margin-top: 55px;
  margin-top: 3.4375rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 970px;
  max-width: 60.625rem;
  border: 1px solid #d5323c;
  border-radius: 0.625rem;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .warranty__box {
    margin-top: 20px;
    margin-top: 1.25rem;
  }
}

.warranty__read {
  padding-top: 14.5px;
  padding-top: 0.90625rem;
  padding-bottom: 14.5px;
  padding-bottom: 0.90625rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4583333333;
  letter-spacing: 0.12em;
  color: #fff;
  background-color: #d5323c;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .warranty__read {
    padding-top: 9.7px;
    padding-top: 0.60625rem;
    padding-bottom: 9.8px;
    padding-bottom: 0.6125rem;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.4;
  }
}

.warranty__content {
  padding-top: 28px;
  padding-top: 1.75rem;
  padding-right: 43px;
  padding-right: 2.6875rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
  padding-left: 43px;
  padding-left: 2.6875rem;
}

@media screen and (max-width: 768px) {
  .warranty__content {
    padding-top: 13.5px;
    padding-top: 0.84375rem;
    padding-right: 8.9px;
    padding-right: 0.55625rem;
    padding-bottom: 15.4px;
    padding-bottom: 0.9625rem;
    padding-left: 15.7px;
    padding-left: 0.98125rem;
  }
}

.warranty__img {
  width: 100%;
  max-width: 904px;
  max-width: 56.5rem;
}

@media screen and (max-width: 768px) {
  .warranty__img {
    margin-top: 14px;
    margin-top: 0.875rem;
    max-width: 387px;
    max-width: 24.1875rem;
    position: relative;
    overflow-x: scroll;
  }
}

.warranty__img img {
  width: 100%;
  /* aspect-ratio: 904/388; */
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media screen and (max-width: 768px) {
  .warranty__img img {
    aspect-ratio: 387/185;
  }
}

@media screen and (max-width: 768px) {
  .warranty__img-head {
    width: 100%;
    max-width: 292px;
    max-width: 18.25rem;
  }
}

@media screen and (max-width: 768px) {
  .warranty__img-head img {
    width: 100%;
    aspect-ratio: 292/26;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
}

.warranty__accordion-box {
  margin-top: 32px;
  margin-top: 2rem;
}

@media screen and (max-width: 768px) {
  .warranty__accordion-box {
    margin-top: 16px;
    margin-top: 1rem;
  }
}

/*# sourceMappingURL=styles.css.map */

/* -------------lp-design--------------- */

.design {
  background: #e9edef;
}

.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;
  }
}

/* ---------teamセクション---------- */
.team__inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5.6rem;
  margin: 0 0 7.8rem 0;
  padding: 4.5rem 11.725rem 0;

  @media screen and (max-width: 768px) {
    display: block;
    margin: 0 0 3.1rem 0;
    padding: 2.2rem 1.525rem 0;
  }
}

/* .team__inner::after {
  content: url(../images/team/team_bg_logo.png);
  position: absolute;
  top: 17vw;
  left: 30vw;
  object-fit: contain;
} */

.team__box {
  position: relative;
  width: 25.75rem;
  @media screen and (max-width: 768px) {
    width: auto;
    margin-bottom: 2.425rem;
  }
}

.team__txt-main {
  margin-bottom: 2.435rem;
  color: #d5313c;
  font-size: 1.675rem;
  font-weight: 900;
  line-height: 1.875;

  @media screen and (max-width: 768px) {
    margin-bottom: 1.4rem;
    font-size: 1.375rem;
    line-height: 1.8;
    font-weight: 700;
  }
}

.team__txt-explanation {
  margin-bottom: 1.475rem;
  font-size: 0.925rem;
  line-height: 2.15;
  font-weight: 500;

  @media screen and (max-width: 768px) {
    line-height: 2;
  }
}

.team__txt-explanation:nth-of-type(3) {
  margin-bottom: 0;
}

.team__bg {
  position: absolute;
  top: 51%;
  left: 30%;
  z-index: -1;
  width: 24.09625rem;
  max-width: 385.54px;
  @media screen and (max-width: 768px) {
    top: 58%;
    right: 0;
    left: auto;
    width: 14.4875rem;
    max-width: 231.8px;
  }
}

.team__pic {
  width: fit-content;
}

/* -----------resultセクション---------- */

.result {
  padding: 4.625rem 0 6.25rem;
  background: #fff;

  @media screen and (max-width: 768px) {
    padding: 2.5rem 1.575rem 3.75rem;
  }
}

.result__banner-box {
  max-width: 999px;
  width: 62.4375rem;
  margin: 0 auto 3.275rem;

  @media screen and (max-width: 768px) {
    width: 100%;
    margin-bottom: 2.1875rem;
  }
}

.result__banner {
  margin-bottom: 0.95rem;

  @media screen and (max-width: 768px) {
    margin-bottom: 0.75rem;
  }
}

.result__banner-txt {
  margin: 0 auto;
  width: fit-content;
  font-size: 0.625rem;
  line-height: 1.375;
}

.result__box {
  margin-top: 3.4375rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 970px;
  max-width: 60.625rem;
  border: 1px solid #d5323c;
  border-radius: 0.625rem;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .result__box {
    margin-top: 20px;
    margin-top: 1.25rem;
  }
}

.result__read {
  padding-top: 14.5px;
  padding-top: 0.90625rem;
  padding-bottom: 14.5px;
  padding-bottom: 0.90625rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4583333333;
  letter-spacing: 0.12em;
  color: #fff;
  background-color: #d5323c;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .result__read {
    padding-top: 9.7px;
    padding-top: 0.60625rem;
    padding-bottom: 9.8px;
    padding-bottom: 0.6125rem;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.4;
  }
}

.result__content {
  padding-top: 1.9rem;
  margin-bottom: 0.95rem;

  @media screen and (max-width: 768px) {
    padding: 1.25rem 1.6rem 0 1.2rem;
    margin-bottom: 0.9rem;
  }
}

.result__graph-pic {
  margin: 0 auto 1.33rem;
  max-width: 432.17px;
  width: 27rem;

  @media screen and (max-width: 768px) {
    margin-bottom: 0.925rem;
    max-width: auto;
    width: 100%;
  }
}

.result__graph-txt {
  font-size: 0.625rem;
  line-height: 1.375;
  text-align: center;
}

/* ----------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: auto;
  }
}

.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%;
  }
}
.follow__wrap {
  @media screen and (max-width: 768px) {
    display: flex;
    flex-direction: column-reverse;
  }
}

.follow__button-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 0 auto 4rem;
  width: 59.125rem;
  max-width: 970px;
  @media screen and (max-width: 768px) {
    flex-direction: column;
    gap: 0;
    padding-top: 2rem;
    margin-bottom: 2rem;
    width: auto;
  }
}

.follow__button {
  @media screen and (max-width: 768px) {
    max-width: 325px;
    width: 100%;
  }
}



/* 240830 追記 */


.mv__box {
  position: relative;
}

.mv__box .campaignbnr {
  width: 30%;
    position: absolute;
    right: 1rem;
    top: .6rem;
    z-index: 3;
}

@media screen and (max-width: 768px) {
  .under-mv {
    position: relative;
  }
  .under-mv .campaignbnr {
    width: 40%;
        position: absolute;
        left: 0;
        top: -5.8rem;
        z-index: 1;
  }
}

.imgbox {
  padding: 3rem 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .imgbox {
    padding: 1.6rem .8rem;
  }
}

.imgbox figure {
  display: inline-block;
  width: 100%;
  max-width: 736px;
}

.imgbox figure img {
  width: 100%;
  height: auto;
}

