@charset "UTF-8";
/* CSS Document */
@import url("//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@600&display=swap");
:root {
  --color1: #333333;
  --color2: #FA0F0F;
  --color3: #9D0B0B;
  --color4: #172D59;
  --color5: #FAFAFA;
  --color6: #F88907;
  --color7: #FCDD21;
  --color8: #2FB881;
  --color9: #F5F5F5;
  --black: #000;
  --white: #fff;
}

html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}

body {
  color: var(--color1);
  background-color: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.2rem;
  text-align: center;
}

section {
  margin-top: -1px;
}

img {
  width: 100%;
}

.br {
  display: inline-block;
}

a {
  transition: 0.5s;
}

a:hover {
  opacity: 0.5;
}

.br {
  display: inline-block;
}

.sp,
.sp-top {
  display: none;
}

@media screen and (max-width: 389px) {
  .--xs {
    display: none;
  }
}

.sp1023 {
  display: none;
}

.sp1280 {
  display: none;
}

@media (max-width: 1023px) {
  .sp1023 {
    display: block;
  }
  .pc1023 {
    display: none;
  }
}
@media (max-width: 1280px) {
  .sp1280 {
    display: block;
  }
  .pc1280 {
    display: none;
  }
}
@media (max-width: 599px) {
  .sp,
.sp-top {
    display: block;
  }
  .pc,
.pc-top {
    display: none;
  }
}
/* ----------------------------------------------------
	[START]全ページ共通コンテンツ
---------------------------------------------------- */
/* ====================================================
	header
==================================================== */
header {
  position: fixed;
  z-index: 99990;
  width: 100%;
  top: 0;
  left: 0;
  transition: 0.4s;
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.4s;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0));
  opacity: 0;
}

.home .header-scroll::before {
  opacity: 1;
}

.header {
  padding: 0 30px 20px;
  gap: 30px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .header {
    padding: 0 19px 15px;
  }
}

.header h1 {
  position: relative;
  z-index: 1;
  width: 370px;
  margin-top: 17px;
}
@media screen and (max-width: 599px) {
  .header h1 {
    width: 66%;
    margin-top: 14px;
  }
}

.header h1 img {
  transition: 0.4s;
}

@media screen and (max-width: 599px) {
  .header__navPc {
    display: none;
  }
}

.header__navPc__btn {
  position: relative;
  z-index: 1;
  height: 80px;
  margin-right: -30px;
}

.header__navPc__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 1.8rem;
  padding-right: 30px;
  width: 230px;
  height: 100%;
  color: var(--white) !important;
  border-radius: 0 0 0 5px;
  background: var(--color8);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}

.header__navPc__btn a span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 22px;
}

.header__navPc__btn a span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 8px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: var(--color8);
}

/* ====================================================
	footer
==================================================== */
footer {
  padding: 59px 0 40px;
  background: var(--black);
}
@media screen and (max-width: 1023px) {
  footer {
    padding: 130px 0 60px;
  }
}
@media screen and (max-width: 599px) {
  footer {
    padding: 127px 0 120px;
  }
}

.footer__logo {
  display: block;
  width: 170px;
  margin: 0 auto 43px;
}
@media screen and (max-width: 1023px) {
  .footer__logo {
    width: 200px;
    margin-bottom: 130px;
  }
}
@media screen and (max-width: 599px) {
  .footer__logo {
    width: 173px;
    margin-bottom: 64px;
  }
}

.footer__nav ul {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 34px;
  padding-right: 39px;
}
@media screen and (max-width: 599px) {
  .footer__nav ul {
    flex-direction: column;
    padding-right: 0;
    gap: 26px;
    margin-bottom: 56px;
  }
}

.footer__nav ul li a {
  color: var(--white);
  font-size: 1.4rem;
  letter-spacing: 0.16rem;
}
@media screen and (max-width: 1023px) {
  .footer__nav ul li a {
    font-size: 1.2rem;
  }
}

.copy {
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.13rem;
}

/* ====================================================
	top__button
==================================================== */
.top__button {
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  bottom: 2.5%;
  right: 2.5%;
  z-index: 100;
  box-shadow: 0 0 6px #D9D9D9;
}
@media screen and (max-width: 599px) {
  .top__button {
    width: 50px;
    height: 50px;
    bottom: 90px;
    right: 5%;
  }
}

.top__button span {
  display: block;
  width: 16px;
  height: 16px;
  transform: rotate(-135deg) translate(-3px, -3px);
  border-bottom: solid 1px var(--color2);
  border-right: solid 1px var(--color2);
}

.top__button__fade {
  visibility: initial;
  opacity: 1;
}

/* ----------------------------------------------------
	[END]全ページ共通コンテンツ
---------------------------------------------------- */
/* ----------------------------------------------------
	[START]TOPコンテンツ
---------------------------------------------------- */
/* ====================================================
	mv
==================================================== */
.mv {
  position: relative;
}
.mv img,
.mv video {
  width: 100%;
  min-height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
  aspect-ratio: 9/5;
  vertical-align: top;
}
@media screen and (max-width: 599px) {
  .mv img,
.mv video {
    aspect-ratio: 13/25;
  }
}
.mv img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

/* ====================================================
	campaign
==================================================== */
.campaign {
  padding: 25px 0 22px;
  background: var(--color2);
  color: var(--white);
  font-weight: 700;
}
.campaign.--mv {
  padding: 62px 0 21px;
}
@media screen and (max-width: 1023px) {
  .campaign.--mv {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .campaign.--mv {
    padding: 8.5vw 0 4vw;
  }
}
.campaign__wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 1023px) {
  .campaign__wrapper {
    align-items: center;
    flex-direction: column;
  }
}
@media screen and (max-width: 599px) {
  .campaign__wrapper {
    padding: 0 7vw;
    gap: 4vw;
  }
}
.campaign__left {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 15px;
}
@media screen and (max-width: 599px) {
  .campaign__left {
    display: block;
  }
}
.campaign__left__text {
  letter-spacing: 0;
}
.campaign__left__text.--limited {
  background-color: var(--color7);
  color: var(--color2);
  font-size: 2rem;
  min-width: 85px;
  min-height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  line-height: 1.2;
}
@media screen and (max-width: 599px) {
  .campaign__left__text.--limited {
    min-width: 10vw;
    min-height: 10vw;
    width: 21.8vw;
    height: 21.8vw;
    position: absolute;
    top: -0.3vw;
    left: 7vw;
    font-size: 5.4vw;
  }
}
.campaign__left__text.--content {
  text-align: left;
}
@media screen and (max-width: 599px) {
  .campaign__left__text.--content {
    padding-left: 24.4vw;
    line-height: 1;
  }
}
.campaign__left__text.--content .num {
  font-size: 5.4rem;
  font-family: Arial, Helvetica, sans-serif;
}
@media screen and (max-width: 599px) {
  .campaign__left__text.--content .num {
    font-size: 14.3vw;
    letter-spacing: 0.4vw;
  }
}
.campaign__left__text.--content .ja {
  font-size: 2.4rem;
  vertical-align: super;
}
@media screen and (max-width: 599px) {
  .campaign__left__text.--content .ja {
    font-size: 6.1vw;
    display: block;
  }
}
.campaign__left__text.--date {
  background-color: var(--white);
  color: var(--color2);
  border-radius: 4px;
  font-size: 2rem;
  font-family: Arial, Helvetica, sans-serif;
  margin-top: -13px;
  margin-right: 5px;
}
@media screen and (max-width: 599px) {
  .campaign__left__text.--date {
    margin-top: 3.9vw;
    font-size: 5.2vw;
    margin-right: 1vw;
  }
}
.campaign__right {
  text-align: left;
  padding-top: 12px;
}
@media screen and (max-width: 1023px) {
  .campaign__right {
    transform: scale(1.3);
    text-align: center;
    padding-left: 10px;
  }
}
@media screen and (max-width: 599px) {
  .campaign__right {
    text-align: left;
    padding-top: 0;
    padding-left: 0;
    transform: none;
  }
}
.campaign__right__text_box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.campaign__right__text {
  letter-spacing: 0;
}
.campaign__right__text.--content {
  font-size: 1.8rem;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 599px) {
  .campaign__right__text.--content {
    font-size: 4.3vw;
  }
}
.campaign__right__text.--content::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -6px;
  left: 0;
  background-color: var(--white);
}
@media screen and (max-width: 599px) {
  .campaign__right__text.--content::before {
    bottom: -1vw;
  }
}
.campaign__right__text.--price {
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 599px) {
  .campaign__right__text.--price {
    line-height: 1.4;
  }
}
.campaign__right__text.--price::before {
  content: "";
  width: 96%;
  height: 2px;
  background-color: var(--color4);
  position: absolute;
  top: 6px;
  right: 9px;
  transform: rotate(-17deg);
  transform-origin: 100% 100%;
}
@media screen and (max-width: 599px) {
  .campaign__right__text.--price::before {
    top: 0.5vw;
    right: 2.4vw;
  }
}
.campaign__right__text.--price .normal {
  display: block;
  font-size: 1.2rem;
  text-align: left;
}
@media screen and (max-width: 599px) {
  .campaign__right__text.--price .normal {
    font-size: 2.8vw;
  }
}
.campaign__right__text.--price .price {
  font-size: 2rem;
  font-family: Arial, Helvetica, sans-serif;
}
@media screen and (max-width: 599px) {
  .campaign__right__text.--price .price {
    font-size: 4.7vw;
  }
}
.campaign__right__text.--price .unit {
  font-size: 1.6rem;
}
@media screen and (max-width: 599px) {
  .campaign__right__text.--price .unit {
    font-size: 3.8vw;
  }
}
.campaign__right__text.--price .unit .tax {
  font-size: 1.2rem;
}
@media screen and (max-width: 599px) {
  .campaign__right__text.--price .unit .tax {
    font-size: 2.8vw;
  }
}
.campaign__right__text.--sale .price {
  font-size: 5.3rem;
  font-family: Arial, Helvetica, sans-serif;
}
@media screen and (max-width: 599px) {
  .campaign__right__text.--sale .price {
    font-size: 12vw;
    letter-spacing: 0.2vw;
  }
}
.campaign__right__text.--sale .unit {
  font-size: 2.4rem;
}
@media screen and (max-width: 599px) {
  .campaign__right__text.--sale .unit {
    font-size: 5.4vw;
    position: relative;
  }
}
.campaign__right__text.--sale .unit .tax {
  font-size: 1.6rem;
}
@media screen and (max-width: 599px) {
  .campaign__right__text.--sale .unit .tax {
    position: absolute;
    right: -3vw;
    top: -3.2vw;
    font-size: 2.6vw;
    white-space: nowrap;
  }
}
.campaign__center {
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: var(--white);
  border: 2px solid var(--white);
  background-color: var(--white);
  border-radius: 4px;
  width: 360px;
  height: 80px;
}
@media screen and (max-width: 599px) {
  .campaign__center {
    display: none;
  }
}
.campaign__center__btn,
.campaign__center a {
  display: block;
  width: 100%;
  height: 100%;
}
.campaign__center a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--color8);
}
.campaign__center .small {
  font-size: 1.4rem;
  letter-spacing: 0;
}
.campaign__center .text {
  font-size: 2.2rem;
  letter-spacing: 0.1rem;
}
.campaign__center .icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 9px;
}
.campaign__center .icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 8px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: var(--color8);
}

/* ====================================================
	reason
==================================================== */
.reason {
  padding: 141px 0 100px;
  background: var(--white);
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .reason {
    padding: 100px 0;
    overflow-x: hidden;
  }
}
@media screen and (max-width: 599px) {
  .reason {
    padding: 95px 0 75px;
  }
}
.reason .color {
  filter: none;
}
.reason__wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 1023px) {
  .reason__wrapper {
    max-width: 500px;
  }
}
.reason__small_title {
  display: block;
  margin-bottom: 14px;
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 700;
  color: var(--color4);
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .reason__small_title {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .reason__small_title {
    font-size: 1.2rem;
    letter-spacing: 0.25rem;
    margin-bottom: 9px;
  }
}
.reason__title {
  color: var(--color2);
  font-size: 3.6rem;
  text-align: center;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.4rem;
  margin-bottom: 72px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1023px) {
  .reason__title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .reason__title {
    font-size: 2.6rem;
    line-height: 1.4;
    letter-spacing: 0.3rem;
    margin-bottom: 101px;
  }
}
.reason__list {
  display: flex;
  flex-direction: column;
  gap: 132px;
}
@media screen and (max-width: 599px) {
  .reason__list {
    gap: 127px;
  }
}
.reason__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .reason__item {
    display: block;
  }
}
.reason__item:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1023px) {
  .reason__item:nth-of-type(even) .reason__item__text strong {
    text-align: left;
    padding-right: 0;
    padding-left: 75px;
  }
}
@media screen and (max-width: 599px) {
  .reason__item:nth-of-type(even) .reason__item__text strong {
    padding-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .reason__item:nth-of-type(even) .reason__item__text h3 {
    text-align: right;
  }
}
.reason__item:nth-of-type(even) .reason__item__images {
  position: relative;
  right: -120px;
  padding-top: 24px;
  margin-left: initial;
}
@media screen and (max-width: 599px) {
  .reason__item:nth-of-type(even) .reason__item__images {
    padding-top: 0;
    right: -8.5%;
  }
}
.reason__item:nth-of-type(even) .reason__item__images__title {
  margin-right: 30%;
  width: 41.1%;
  margin-left: auto;
}
@media screen and (max-width: 599px) {
  .reason__item:nth-of-type(even) .reason__item__images__title {
    width: 180px;
    left: initial;
    margin-right: 12%;
  }
}
@media screen and (max-width: 599px) {
  .reason__item:nth-of-type(even) .reason__item__text p {
    padding: 0px 0 0 30px;
  }
}
@media screen and (max-width: 1023px) {
  .reason__item:nth-of-type(1) .reason__item__images__image {
    margin-top: -75px;
  }
}
.reason__item:nth-of-type(2) .reason__item__images__image {
  margin-top: -80px;
}
@media screen and (max-width: 599px) {
  .reason__item:nth-of-type(2) .reason__item__images__image {
    margin-top: -90px;
  }
}
.reason__item:nth-of-type(3) .reason__item__text {
  padding-top: 11px;
  margin-top: -70px;
}
.reason__item:nth-of-type(3) .reason__item__images__title {
  width: 48%;
}
@media screen and (max-width: 599px) {
  .reason__item:nth-of-type(3) .reason__item__images__title {
    width: 209px;
  }
}
.reason__item:nth-of-type(3) .reason__item__images__image {
  margin-top: -40px;
}
@media screen and (max-width: 1023px) {
  .reason__item:nth-of-type(3) .reason__item__images__image {
    margin-top: -80px;
  }
}
.reason__item__text {
  width: 42%;
}
@media screen and (max-width: 1023px) {
  .reason__item__text {
    width: 100%;
    margin-top: -60px;
    z-index: 1;
    position: relative;
  }
}
.reason__item__text strong {
  font-size: 10rem;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color2);
  margin-bottom: -6px;
  letter-spacing: 0;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .reason__item__text strong {
    display: block;
    font-size: 8rem;
    text-align: right;
    margin: 0;
    padding-right: 80px;
  }
}
@media screen and (max-width: 599px) {
  .reason__item__text strong {
    padding-right: 0;
  }
}
.reason__item__text h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color2);
  margin-bottom: 16px;
  line-height: 1.7;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 1280px) {
  .reason__item__text h3 {
    font-size: 2.2rem;
    letter-spacing: 0.1rem;
  }
}
@media screen and (max-width: 1023px) {
  .reason__item__text h3 {
    font-size: 1.9rem;
    margin: 0 auto 20px;
    letter-spacing: 0.3rem;
  }
}
@media screen and (max-width: 599px) {
  .reason__item__text h3 {
    margin-top: -22px;
    padding: 0 8px;
    letter-spacing: 0.1rem;
  }
}
.reason__item__text p {
  letter-spacing: 0.16rem;
  line-height: 2;
  line-break: strict;
}
@media screen and (max-width: 1023px) {
  .reason__item__text p {
    font-size: 1.5rem;
    line-height: 1.8;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .reason__item__text p {
    padding: 0 25px 0 8px;
    font-size: 1.4rem;
    line-height: 2;
  }
}
.reason__item__images {
  position: relative;
  width: calc(54% + 120px);
  margin-left: -120px;
  padding-top: 18px;
}
@media screen and (max-width: 1023px) {
  .reason__item__images {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .reason__item__images {
    margin-left: -5.5%;
    padding-top: 0;
  }
}
.reason__item__images__image {
  filter: grayscale(1);
  transition: 1s;
  margin-top: -50px;
}
@media screen and (max-width: 599px) {
  .reason__item__images__image {
    width: 97%;
    aspect-ratio: 7/4;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.reason__item__images__title {
  position: relative;
  z-index: 1;
  margin-left: 28.4%;
  width: 37%;
  display: block;
}
@media screen and (max-width: 1023px) {
  .reason__item__images__title {
    width: 180px;
    top: -55px;
    left: 5%;
  }
}
@media screen and (max-width: 599px) {
  .reason__item__images__title {
    width: 160px;
    left: 10%;
    top: -47px;
    margin-left: 0;
  }
}

/* ====================================================
	mission
==================================================== */
.mission {
  background-color: var(--white);
  padding: 97px 0 330px;
}
@media screen and (max-width: 1023px) {
  .mission {
    padding-bottom: 910px;
  }
}
@media screen and (max-width: 599px) {
  .mission {
    padding: 64px 0 168vw;
  }
}
.mission__wrapper {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.mission__wrapper::before {
  content: "";
  width: 100%;
  max-width: 581px;
  aspect-ratio: 581/603;
  background-color: var(--color5);
  position: absolute;
  left: -120px;
  top: 448px;
}
@media screen and (max-width: 1023px) {
  .mission__wrapper::before {
    top: 1280px;
    max-width: 90%;
    aspect-ratio: 581/400;
    min-height: 603px;
  }
}
@media screen and (max-width: 599px) {
  .mission__wrapper::before {
    top: initial;
    left: -5%;
    bottom: -121vw;
    aspect-ratio: 338/351;
    width: 86vw;
    max-width: initial;
    min-height: initial;
  }
}
.mission__small_title {
  font-size: 1.8rem;
  color: var(--color4);
  font-weight: 700;
  display: block;
  margin-bottom: 21px;
  font-family: Arial, Helvetica, sans-serif;
}
@media screen and (max-width: 1023px) {
  .mission__small_title {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .mission__small_title {
    font-size: 1.2rem;
    letter-spacing: 0.25rem;
    margin-bottom: 12px;
  }
}
.mission__title {
  font-size: 3.6rem;
  color: var(--color2);
  font-family: "Noto Serif JP", serif;
  line-height: 1.6;
  letter-spacing: 0.4rem;
}
@media screen and (max-width: 1023px) {
  .mission__title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .mission__title {
    font-size: 2.5rem;
    letter-spacing: 0.2rem;
    line-height: 1.4;
  }
}
.mission__text {
  position: relative;
  z-index: 1;
  text-align: left;
  margin-top: 94px;
  margin-left: min(52%, 602px);
  line-height: 2;
  letter-spacing: 0.16rem;
}
@media screen and (max-width: 1023px) {
  .mission__text {
    margin-left: 0;
    display: inline-block;
  }
}
@media screen and (max-width: 599px) {
  .mission__text {
    margin: 53px 8px 0;
    font-size: 1.4rem;
  }
}
.mission__deco {
  position: absolute;
  z-index: 1;
}
.mission__deco01 {
  max-width: 340px;
  top: 314px;
  left: 0;
}
@media screen and (max-width: 1023px) {
  .mission__deco01 {
    top: 1150px;
  }
}
@media screen and (max-width: 599px) {
  .mission__deco01 {
    top: 104.6%;
    width: 56.5%;
    left: 48px;
  }
}
.mission__deco02 {
  max-width: 398px;
  bottom: -129px;
  right: min(55%, 650px);
}
@media screen and (max-width: 1023px) {
  .mission__deco02 {
    bottom: -820px;
    right: -5%;
  }
}
@media screen and (max-width: 599px) {
  .mission__deco02 {
    left: initial;
    right: -5%;
    bottom: -142vw;
    width: 66%;
  }
}

/* ====================================================
	curriculum
==================================================== */
.curriculum {
  padding: 142px 0 202px;
  background: var(--color5);
}
@media screen and (max-width: 1023px) {
  .curriculum {
    padding: 100px 0;
  }
}
@media screen and (max-width: 599px) {
  .curriculum {
    padding: 80px 0;
  }
}
.curriculum__wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}
.curriculum__small_title {
  display: block;
  margin-bottom: 16px;
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 700;
  color: var(--color4);
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .curriculum__small_title {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .curriculum__small_title {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
}
.curriculum__title {
  text-align: center;
  font-size: 3.6rem;
  color: var(--color2);
  margin-bottom: 25px;
  line-height: 1.6;
  letter-spacing: 0.4rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1023px) {
  .curriculum__title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .curriculum__title {
    font-size: 2.5rem;
    letter-spacing: 0.3rem;
    line-height: 1.45;
    margin-bottom: 35px;
  }
}
.curriculum__title span {
  letter-spacing: 0.4rem;
}
.curriculum__text {
  line-height: 2;
  text-align: center;
  margin-bottom: 100px;
  letter-spacing: 0.16rem;
}
@media screen and (max-width: 1023px) {
  .curriculum__text {
    font-size: 1.4rem;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .curriculum__text {
    text-align: left;
    padding: 0 10px;
    letter-spacing: 0.14rem;
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 599px) {
  .curriculum__list {
    padding: 0 10px;
  }
}
.curriculum__item {
  position: relative;
  background-color: var(--white);
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 70px min(9%, 100px) 46px;
}
@media screen and (max-width: 1023px) {
  .curriculum__item {
    flex-direction: column;
    padding: 50px 40px;
  }
}
@media screen and (max-width: 599px) {
  .curriculum__item {
    padding: 34px 20px 33px;
  }
}
.curriculum__item + .curriculum__item {
  margin-top: 41px;
}
@media screen and (max-width: 599px) {
  .curriculum__item + .curriculum__item {
    margin-top: 30px;
  }
}
.curriculum__item + .curriculum__item::before {
  content: "▼";
  color: var(--color2);
  font-size: 2.4rem;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 599px) {
  .curriculum__item + .curriculum__item::before {
    font-size: 1.8rem;
    top: -32px;
  }
}
.curriculum__item:last-child {
  padding-bottom: 60px;
}
@media screen and (max-width: 599px) {
  .curriculum__item:last-child {
    padding-bottom: 30px;
  }
}
.curriculum__item:last-child::before {
  color: var(--color6);
}
.curriculum__item:last-child .curriculum__item__contents strong,
.curriculum__item:last-child .curriculum__item__contents h3,
.curriculum__item:last-child .curriculum__item__contents small {
  color: var(--color6);
}
.curriculum__item:last-child .curriculum__label_item::before {
  background: var(--color6);
}
.curriculum__item:last-child .curriculum__item__image {
  top: 4px;
}
@media screen and (max-width: 599px) {
  .curriculum__item:last-child .curriculum__item__image {
    top: 14px;
  }
}
.curriculum__item__title {
  line-height: 1;
  position: relative;
  z-index: 1;
}
.curriculum__item__contents {
  position: relative;
  width: 50%;
  color: var(--color2);
}
@media screen and (max-width: 1023px) {
  .curriculum__item__contents {
    width: 100%;
  }
}
.curriculum__item__contents strong {
  font-size: 8rem;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
}
@media screen and (max-width: 1023px) {
  .curriculum__item__contents strong {
    line-height: 1;
  }
}
@media screen and (max-width: 599px) {
  .curriculum__item__contents strong {
    font-size: 7rem;
  }
}
.curriculum__item__contents h3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
  margin-top: -9px;
  letter-spacing: 0.4rem;
}
@media screen and (max-width: 1023px) {
  .curriculum__item__contents h3 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .curriculum__item__contents h3 {
    margin-top: -5px;
    padding-left: 1px;
  }
}
.curriculum__item__contents small {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  margin-left: 1px;
}
@media screen and (max-width: 1023px) {
  .curriculum__item__contents small {
    font-size: 1rem;
  }
}
@media screen and (max-width: 599px) {
  .curriculum__item__contents small {
    margin-top: 1px;
    padding-left: 4px;
    letter-spacing: 0.2rem;
    line-height: 1.5;
  }
}
.curriculum__item__image {
  position: absolute;
  top: -20px;
  left: min(40%, 204px);
  width: 220px;
}
@media screen and (max-width: 599px) {
  .curriculum__item__image {
    left: initial;
    right: 18px;
    width: min(46%, 134px);
    top: 0;
  }
}
.curriculum__item__text {
  line-height: 2;
  color: #333333;
  margin-top: 71px;
  letter-spacing: 0.16rem;
}
@media screen and (max-width: 1023px) {
  .curriculum__item__text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .curriculum__item__text {
    margin-top: 21px;
    line-height: 1.8;
    letter-spacing: 0.04rem;
  }
}
.curriculum__label_list {
  width: 46%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-end;
  gap: 9px 20px;
}
@media screen and (max-width: 1023px) {
  .curriculum__label_list {
    width: 100%;
    margin-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .curriculum__label_list {
    gap: 10px 0;
    justify-content: space-between;
    padding: 0 8px;
  }
}
@media screen and (max-width: 389px) {
  .curriculum__label_list {
    padding: 0;
  }
}
.curriculum__label_item {
  position: relative;
  letter-spacing: 0.1rem;
  width: calc((100% - 20px) / 2);
  padding: 10px 5px 8px 25px;
  box-shadow: 0 0 3px #aaaaaa;
  line-height: 1.4;
  font-weight: 700;
  font-size: 1.65rem;
  background-color: var(--white);
  display: flex;
  align-items: center;
  min-height: 50px;
  line-break: strict;
}
@media screen and (max-width: 599px) {
  .curriculum__label_item {
    width: 48%;
    border: none !important;
    padding: 0 0 0 18px;
    font-size: 1.2rem;
    min-height: 60px;
  }
}
@media screen and (max-width: 389px) {
  .curriculum__label_item {
    padding: 0 0 0 14px;
  }
}
.curriculum__label_item.--other {
  padding: 0;
  box-shadow: none;
  font-size: 1.4rem;
  justify-content: flex-end;
  align-items: flex-end;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .curriculum__label_item.--other {
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
  }
}
.curriculum__label_item.--other::before {
  display: none;
}
@media screen and (max-width: 599px) {
  .curriculum__label_item.--spacing-sp {
    letter-spacing: 0;
  }
}
.curriculum__label_item.--spacing {
  letter-spacing: 0;
}
.curriculum__label_item::before {
  content: "";
  display: block;
  width: 8px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color2);
}
.curriculum__point {
  position: relative;
  text-align: center;
  border: 1px solid var(--color2);
  margin-top: 175px;
}
@media screen and (max-width: 1023px) {
  .curriculum__point {
    margin-top: 100px;
  }
}
@media screen and (max-width: 599px) {
  .curriculum__point {
    margin: 80px 10px 0;
    padding: 38px 0 22px;
  }
}
.curriculum__point__title {
  font-size: 2.2rem;
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  background-color: var(--color2);
  padding: 6px 34px 10px;
  white-space: nowrap;
}
@media screen and (max-width: 599px) {
  .curriculum__point__title {
    font-size: 1.6rem;
    min-width: 210px;
    padding: 5px 5px 9px;
    top: -20px;
  }
}
.curriculum__point__title::before, .curriculum__point__title::after {
  content: "";
  width: 14px;
  height: 105%;
  background-color: var(--color2);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 5px;
}
@media screen and (max-width: 599px) {
  .curriculum__point__title::before, .curriculum__point__title::after {
    width: 12px;
    border-radius: 0;
    height: 100%;
  }
}
.curriculum__point__title::before {
  left: -13px;
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
@media screen and (max-width: 599px) {
  .curriculum__point__title::before {
    left: -12px;
  }
}
.curriculum__point__title::after {
  right: -13px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 599px) {
  .curriculum__point__title::after {
    right: -12px;
  }
}
.curriculum__point__list {
  display: flex;
  gap: 35px;
  margin: 78px 55px 38px;
}
@media screen and (max-width: 1023px) {
  .curriculum__point__list {
    flex-direction: column;
  }
}
@media screen and (max-width: 599px) {
  .curriculum__point__list {
    gap: 25px;
    margin: 0 20px;
  }
}
.curriculum__point__item {
  width: calc((100% - 70px) / 3);
}
@media screen and (max-width: 1023px) {
  .curriculum__point__item {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.curriculum__point__item .title {
  font-size: 2rem;
  color: var(--color2);
  font-weight: 700;
  margin-top: 31px;
}
@media screen and (max-width: 599px) {
  .curriculum__point__item .title {
    font-size: 1.6rem;
    margin-top: 11px;
  }
}
.curriculum__point__item .text {
  text-align: left;
  margin-top: 20px;
  letter-spacing: 0.16rem;
  line-height: 2;
  line-break: strict;
}
@media screen and (max-width: 599px) {
  .curriculum__point__item .text {
    letter-spacing: 0.19rem;
    font-size: 1.4rem;
    margin-top: 10px;
  }
}

/* ====================================================
	style
==================================================== */
.style {
  background: url(images/style/image.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 146px 0 200px;
  position: relative;
  text-align: left;
}
@media screen and (max-width: 1023px) {
  .style {
    padding: 100px 0 130px;
  }
}
@media screen and (max-width: 599px) {
  .style {
    padding: 97px 0 79px;
  }
}
.style__sp {
  display: none;
}
@media screen and (max-width: 1023px) {
  .style__sp {
    display: block;
  }
}
.style__wrapper {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
  color: var(--white);
}
.style::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, #FA0F0F, #CF0000);
  opacity: 0.8;
}
.style__text_box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px 74px;
  padding-right: 20px;
  margin-bottom: 93px;
}
@media screen and (max-width: 1023px) {
  .style__text_box {
    padding-right: 0;
    gap: 10px;
  }
}
@media screen and (max-width: 599px) {
  .style__text_box {
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
}
.style__small_title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
}
@media screen and (max-width: 1023px) {
  .style__small_title {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .style__small_title {
    font-size: 1.2rem;
    display: block;
    text-align: center;
    margin-left: 0;
    letter-spacing: 0.24rem;
  }
}
.style__title {
  font-size: 3.6rem;
  letter-spacing: 0.35rem;
  line-height: 1.6;
  font-family: "Noto Serif JP", serif;
  margin-top: 20px;
}
@media screen and (max-width: 1023px) {
  .style__title {
    font-size: 2.2rem;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .style__title {
    font-size: 2.4rem;
    text-align: center;
    margin: 12px 0 14px;
    line-height: 1.5;
    letter-spacing: 0.4rem;
  }
}
.style__img {
  max-width: min(30%, 351px);
}
@media screen and (max-width: 599px) {
  .style__img {
    width: 82%;
    max-width: initial;
  }
}
.style__ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 100px;
}
@media screen and (max-width: 1023px) {
  .style__ul {
    max-width: 500px;
    margin: 0 auto;
    flex-direction: column;
    gap: 80px;
  }
}
@media screen and (max-width: 599px) {
  .style__ul {
    gap: 43px;
  }
}
.style__ul__li {
  position: relative;
  width: calc((100% - 100px) / 2);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1023px) {
  .style__ul__li {
    width: 90%;
  }
}
@media screen and (max-width: 599px) {
  .style__ul__li {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .style__ul__li:first-child .style__ul__li__title {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 1023px) {
  .style__ul__li:nth-child(even) {
    margin-top: 0;
    margin-left: auto;
  }
}
@media screen and (max-width: 599px) {
  .style__ul__li:nth-child(even) {
    margin: 0;
  }
}
@media screen and (max-width: 1023px) {
  .style__ul__li:nth-child(even) .style__ul__li__title {
    right: auto;
    left: -30px;
  }
}
@media screen and (max-width: 599px) {
  .style__ul__li:nth-child(even) .style__ul__li__title {
    left: 0;
  }
}
.style__ul__li img {
  display: block;
  width: 82%;
}
@media screen and (max-width: 599px) {
  .style__ul__li img {
    width: 77%;
  }
}
.style__ul__li h3 {
  width: 90%;
  margin: 0 auto 17px;
  font-size: 2rem;
  line-height: 1.4;
  text-align: left;
  color: var(--color2);
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .style__ul__li h3 {
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: 0.15rem;
  }
}
@media screen and (max-width: 599px) {
  .style__ul__li h3 {
    text-align: center;
    letter-spacing: 0;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .style__ul__li h3 span {
    display: none;
  }
}
.style__ul__li__title {
  position: relative;
  margin-top: -80px;
  padding: 25px 7px 20px;
  width: 82%;
  margin-left: auto;
  background: var(--white);
  line-height: 1.2;
  letter-spacing: 0;
  flex: 1;
  min-height: 220px;
}
@media screen and (max-width: 1023px) {
  .style__ul__li__title {
    min-height: 190px;
    bottom: -30px !important;
    left: auto;
    right: -30px;
  }
}
@media screen and (max-width: 599px) {
  .style__ul__li__title {
    min-height: 215px;
    bottom: initial !important;
    margin-left: auto;
    right: 0;
    margin-bottom: 0 !important;
    width: 77%;
    margin-top: -42px;
    padding: 16px 7px;
  }
}
.style__ul__li__ul {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  line-height: 1.6;
  color: #333333;
}
@media screen and (max-width: 1023px) {
  .style__ul__li__ul {
    font-size: 1.4rem;
    font-weight: 400;
  }
}
@media screen and (max-width: 599px) {
  .style__ul__li__ul {
    gap: 8px;
  }
}
.style__ul__li__ul li {
  display: flex;
  gap: 10px;
  text-align: left;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  .style__ul__li__ul li {
    min-height: 45px;
  }
}
.style__ul__li__ul li .line {
  color: var(--color2);
  background: linear-gradient(transparent 93%, var(--color2) 7%);
  padding-bottom: 2px;
}
.style__ul__li__ul li img {
  width: 25px;
  height: 25px;
  margin-top: 2px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1023px) {
  .style__ul__li__ul li img {
    width: 22px;
    height: 22px;
  }
}
.style__ul__li__ul li .spacing {
  letter-spacing: 0.16rem;
}
@media screen and (max-width: 599px) {
  .style__ul__li__ul li .spacing {
    letter-spacing: 0.05rem;
  }
}

/* ====================================================
	trainers
==================================================== */
.trainers {
  background-color: var(--color5);
  text-align: left;
  padding: 152px 0 122px;
}
@media screen and (max-width: 1023px) {
  .trainers {
    padding: 100px 0;
  }
}
@media screen and (max-width: 599px) {
  .trainers {
    padding: 63px 0;
  }
}
.trainers__wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .trainers__wrapper {
    flex-direction: column;
  }
}
.trainers__text_box {
  margin-left: min(9%, 100px);
  min-width: 400px;
}
@media screen and (max-width: 1023px) {
  .trainers__text_box {
    margin-left: 0;
    min-width: 350px;
  }
}
@media screen and (max-width: 599px) {
  .trainers__text_box {
    min-width: initial;
  }
}
.trainers__small_title {
  display: block;
  margin-top: 24px;
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 700;
  color: var(--color4);
  font-family: Arial, Helvetica, sans-serif;
}
@media screen and (max-width: 1023px) {
  .trainers__small_title {
    margin-top: 0;
    font-size: 1.4rem;
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .trainers__small_title {
    font-size: 1.2rem;
  }
}
.trainers__title {
  color: var(--color2);
  font-size: 3.6rem;
  line-height: 1.6;
  letter-spacing: 0.35rem;
  margin: 15px 0 100px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1023px) {
  .trainers__title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .trainers__title {
    font-size: 2.6rem;
    margin: 9px 0 34px;
    line-height: 1.4;
  }
}
.trainers__list {
  display: flex;
  gap: min(7%, 50px);
  padding-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .trainers__list {
    gap: 50px;
    width: 110%;
    overflow-x: scroll;
    padding: 0 29px 20px;
  }
}
@media screen and (max-width: 599px) {
  .trainers__item {
    min-width: 200px;
  }
}
.trainers__item .text {
  font-size: 1.4rem;
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0;
  padding: 0 10px;
}

/* ====================================================
	support
==================================================== */
.support {
  background-color: var(--white);
  padding: 190px 0 100px;
}
@media screen and (max-width: 1023px) {
  .support {
    padding-top: 100px;
  }
}
@media screen and (max-width: 599px) {
  .support {
    padding: 144px 0 50px;
  }
}
.support__wrapper {
  position: relative;
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}
.support__small_title {
  display: block;
  margin-bottom: 16px;
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 700;
  color: var(--color4);
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .support__small_title {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .support__small_title {
    font-size: 1.2rem;
    letter-spacing: 0.25rem;
    margin-bottom: 9px;
  }
}
.support__title {
  color: var(--color2);
  font-size: 3.6rem;
  text-align: center;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.35rem;
  margin-bottom: 94px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1023px) {
  .support__title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .support__title {
    font-size: 2.6rem;
    line-height: 1.4;
    letter-spacing: 0.25rem;
    margin-bottom: 34px;
  }
}
.support__block {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 1023px) {
  .support__block {
    flex-direction: column;
  }
}
@media screen and (max-width: 599px) {
  .support__block {
    padding: 0 20px;
    gap: 19px;
  }
}
.support__block__img {
  max-width: 600px;
}
.support__block__contents {
  text-align: left;
  width: calc(100% - 650px);
}
@media screen and (max-width: 1023px) {
  .support__block__contents {
    max-width: 600px;
    width: 100%;
  }
}
.support__block__title {
  font-size: 2.4rem;
  font-weight: 700;
  padding-bottom: 15px;
  position: relative;
  color: var(--color4);
  line-height: 1.6;
  letter-spacing: 0.24rem;
}
@media screen and (max-width: 599px) {
  .support__block__title {
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.4;
    padding-bottom: 20px;
  }
}
.support__block__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color4);
}
.support__block__text {
  margin-top: 15px;
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (max-width: 599px) {
  .support__block__text {
    font-size: 1.4rem;
    margin-top: 19px;
    line-height: 1.95;
  }
}
.support__block__text .small {
  display: block;
  font-size: 1.2rem;
  margin-top: 30px;
}
@media screen and (max-width: 599px) {
  .support__block__text .small {
    font-size: 1.4rem;
    margin-top: 26px;
  }
}

/* ====================================================
	superiority
==================================================== */
.superiority {
  padding: 102px 0 58px;
  background: var(--white);
}
@media screen and (max-width: 599px) {
  .superiority {
    padding: 43px 0 60px;
  }
}

.superiority__background {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .superiority__background {
    width: 100%;
  }
}

.superiority__small_title {
  display: block;
  margin-bottom: 15px;
  letter-spacing: 0.4rem;
  font-size: 2rem;
  line-height: 2;
  font-weight: 700;
  color: var(--color4);
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .superiority__small_title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .superiority__small_title {
    font-size: 1.2rem;
    letter-spacing: 0.25rem;
    margin-bottom: 9px;
  }
}

.superiority__title {
  font-size: 3.6rem;
  margin-bottom: 92px;
  letter-spacing: 0.3rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color2);
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1023px) {
  .superiority__title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .superiority__title {
    font-size: 2.6rem;
    line-height: 1.4;
    margin-bottom: 43px;
  }
}

.scroll-box {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 50px;
}
@media screen and (max-width: 599px) {
  .scroll-box {
    margin: 0 0 0 20px;
  }
}

.simplebar-track {
  background: var(--color5);
  /* バーの背景色を設定できます*/
}

.simplebar-track .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
  /* デフォルトだと薄くなっています。*/
}

.simplebar-track .simplebar-scrollbar::before {
  background: var(--color2);
}

table.b {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  min-width: 1100px;
  margin-bottom: 40px;
}

table.b tr:first-child {
  position: relative;
}

.b__header {
  border-left: solid 10px var(--white);
  border-right: solid 10px var(--white);
  border-bottom: solid 1px #D9D9D9;
}

table.b tr {
  width: 100%;
}

table.b td {
  font-size: 1.6rem;
}

table.b tr:first-child .table__thBackground {
  padding: 30px 0 21px;
  background: var(--color2);
  position: relative;
  z-index: 1;
}

table.b tr:first-child td {
  background: linear-gradient(#fff 0%, #fff 20%, #f5f5f5 21%, #f5f5f5 100%);
  font-size: 1.8rem;
  padding-bottom: 0;
  font-weight: 700;
}

table.b tr:first-child .table__thBackground img {
  display: block;
  width: 90%;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

table.b tr:last-child td {
  text-align: left;
}

table.b th {
  width: 20%;
}

table.b td {
  width: 26.6666666667%;
}

table.b th,
table.b td {
  vertical-align: middle;
  letter-spacing: 0;
  padding: 20px;
  border-bottom: 1px solid #D9D9D9;
  text-align: center;
}

table.b tr:nth-child(2) th,
table.b tr:nth-child(2) td {
  padding: 30px 20px;
}

table.b .table__tdBackground {
  background: #FFEFEF;
  color: var(--color2);
  font-size: 1.6rem;
  font-weight: 700;
}

table.b ._sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  background: var(--white);
  font-size: 1.8rem;
  font-weight: 600;
  z-index: 2;
}

.b__price {
  font-size: 1.8rem;
}

.b__yen {
  font-size: 1.8rem;
}

@media (max-width: 1023px) {
  table.b {
    min-width: 930px;
  }
  table.b th {
    width: 180px;
    font-size: 1.6rem !important;
    padding: 20px 0;
    margin-left: 10px;
  }
  table.b td {
    font-size: 1.6rem;
    width: 280px;
  }
  .b__price {
    font-size: 2rem;
  }
  table.b .table__tdBackground {
    font-size: 1.8rem;
  }
}
@media (max-width: 599px) {
  table.b th {
    font-size: 1.2rem !important;
    width: 140px;
  }
  table.b .table__tdBackground {
    font-size: 1.2rem;
    width: 200px;
  }
  .b__price {
    font-size: 1.5rem;
  }
  .b__yen {
    font-size: 1.3rem;
  }
  table.b td {
    font-size: 1.2rem;
    width: 200px;
  }
  table.b {
    min-width: 720px;
  }
  table.b td {
    padding: 15px 10px;
  }
}
/* ====================================================
	service
==================================================== */
.service {
  background: var(--white);
  padding: 102px 0 50px;
}
@media screen and (max-width: 599px) {
  .service {
    padding: 40px 0 50px;
  }
}

.service__wrapper {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}

.service__small {
  color: var(--color2);
  font-size: 2rem;
  line-height: 2;
  margin-bottom: 18px;
  display: block;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.4rem;
}
@media screen and (max-width: 1023px) {
  .service__small {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .service__small {
    font-size: 1.2rem;
    letter-spacing: 0.3rem;
    margin-bottom: 4px;
  }
}

.service__title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 102px;
  letter-spacing: 0.35rem;
}
@media screen and (max-width: 1023px) {
  .service__title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .service__title {
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
    margin-bottom: 40px;
  }
}

.service__ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .service__ul {
    padding: 0 10px;
  }
}

.service__ul__li {
  width: 25%;
  border-left: solid 1px #D9D9D9;
  margin-bottom: 52px;
}

.service__ul__li:nth-of-type(4),
.service__ul__li:nth-of-type(8) {
  border-right: solid 1px #D9D9D9;
}

.service__ul__li__wrapper {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .service__ul__li__wrapper {
    width: 95%;
  }
}

.service__ul__li__wrapper small {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color2);
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 35px;
}

.service__ul__li__wrapper__icon {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .service__ul__li__wrapper__icon {
    margin-bottom: 4px;
  }
}

.service__ul__li img {
  display: block;
  height: 76px;
}

.service__ul__li:nth-child(2) img {
  height: 67px;
}

.service__ul__li:nth-child(3) img {
  height: 54px;
}

.service__ul__li:nth-child(4) img {
  height: 79px;
}

.service__ul__li:nth-child(5) img {
  height: 87px;
}

.service__ul__li:nth-child(6) img {
  height: 83px;
}

.service__ul__li:nth-child(7) img {
  height: 72px;
}

.service__ul__li:nth-child(8) img {
  height: 77px;
}

.service__ul__li__wrapper h3 {
  padding-bottom: 30px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.1rem;
  font-weight: 700;
}

@media (max-width: 599px) {
  .service__ul__li {
    width: 50%;
    border-bottom: solid 1px #D9D9D9;
    margin-bottom: 5px;
  }
  .service__ul__li:nth-child(odd) {
    border-left: none;
    position: relative;
  }
  .service__ul__li:nth-child(odd)::after {
    content: "";
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--white);
  }
  .service__ul__li:nth-child(7),
.service__ul__li:nth-child(8) {
    border-bottom: none;
  }
  .service__ul__li__wrapper h3 {
    padding-bottom: 15px;
    font-size: 1.3rem;
    letter-spacing: 0;
    min-height: 54px;
    height: auto;
    justify-content: flex-start;
  }
  .service__ul__li__wrapper small {
    padding-top: 10px;
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
  .service__ul__li:nth-of-type(4),
.service__ul__li:nth-of-type(8) {
    border-right: none;
  }
  .service__ul__li img {
    height: 66px;
  }
  .service__ul__li:nth-child(2) img {
    height: 60px;
  }
  .service__ul__li:nth-child(3) img {
    height: 48px;
  }
  .service__ul__li:nth-child(4) img {
    height: 66px;
  }
  .service__ul__li:nth-child(5) img {
    height: 76px;
  }
  .service__ul__li:nth-child(6) img {
    height: 72px;
  }
  .service__ul__li:nth-child(7) img {
    height: 64px;
  }
  .service__ul__li:nth-child(8) img {
    height: 68px;
  }
}
/* ====================================================
	entry
==================================================== */
.entry {
  padding: 100px 0 172px;
  background: var(--white);
}
@media screen and (max-width: 1023px) {
  .entry {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 599px) {
  .entry {
    padding: 36px 0 60px;
  }
}

.entry__background {
  width: 90%;
  margin: 0 auto;
}

.entry__small_title {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color2);
  margin-bottom: 18px;
  line-height: 2;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.4rem;
}
@media screen and (max-width: 1023px) {
  .entry__small_title {
    font-size: 1.6rem;
    margin-bottom: 0;
    line-height: 2;
  }
}
@media screen and (max-width: 599px) {
  .entry__small_title {
    font-size: 1.2rem;
    letter-spacing: 0.25rem;
  }
}

.entry__title {
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 99px;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 1023px) {
  .entry__title {
    font-size: 2.6rem;
    line-height: 2;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .entry__title {
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
    margin-bottom: 35px;
  }
}

.entry__table {
  display: block;
  max-width: 1100px;
  margin: 0 auto;
  font-weight: 600;
}
@media screen and (max-width: 1023px) {
  .entry__table {
    max-width: 500px;
  }
}

.entry__table tbody {
  display: block;
}

.entry__table tbody tr {
  border-top: 1px solid #D9D9D9;
}
.entry__table tbody tr:last-child {
  border-bottom: 1px solid #D9D9D9;
}

.entry__table tbody tr th,
.entry__table tbody tr td {
  display: block;
  text-align: left;
  width: 31%;
  padding-left: 20px;
}
@media screen and (max-width: 1023px) {
  .entry__table tbody tr th,
.entry__table tbody tr td {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    font-size: 1.8rem;
    padding-left: 3px;
  }
}

@media screen and (max-width: 1023px) {
  .entry__table tbody tr td {
    padding-left: 30px;
  }
}

.entry__table tbody tr:first-child {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 29px 0 26px;
  font-size: 2rem;
  color: var(--white);
  background: var(--color2);
}
@media screen and (max-width: 1023px) {
  .entry__table tbody tr:first-child {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .entry__table tbody tr:first-child {
    padding: 24px 0 21px;
  }
}
@media screen and (max-width: 599px) {
  .entry__table tbody tr:first-child th {
    padding-bottom: 13px;
  }
}

.entry__smallPrice {
  font-size: 1.6rem;
}
@media screen and (max-width: 1023px) {
  .entry__smallPrice {
    font-size: 1.4rem;
    letter-spacing: 0.13rem;
  }
}

.entry__table tbody tr:nth-child(2),
.entry__table tbody tr:nth-child(3) {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 26px 0;
  background: #FFEFEF;
}
@media screen and (max-width: 1023px) {
  .entry__table tbody tr:nth-child(2),
.entry__table tbody tr:nth-child(3) {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .entry__table tbody tr:nth-child(2),
.entry__table tbody tr:nth-child(3) {
    padding: 20px 0;
  }
}

.entry__table tbody tr:nth-child(3) {
  background: #FFE2E2;
}

.entry__table tbody tr:nth-child(2) th,
.entry__table tbody tr:nth-child(3) th {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .entry__table tbody tr:nth-child(2) th,
.entry__table tbody tr:nth-child(3) th {
    align-items: flex-start;
    gap: 15px;
  }
}

.entry__table tbody tr:nth-child(2) th span,
.entry__table tbody tr:nth-child(3) th span {
  display: block;
  position: relative;
  width: 20px;
  height: 2px;
  background: var(--color2);
}
@media screen and (max-width: 1023px) {
  .entry__table tbody tr:nth-child(2) th span,
.entry__table tbody tr:nth-child(3) th span {
    width: 15px;
    margin-top: 11px;
  }
}

.entry__table tbody tr:nth-child(2) th span::before,
.entry__table tbody tr:nth-child(3) th span::before {
  content: "";
  display: block;
  position: absolute;
  top: -9px;
  left: 9px;
  width: 2px;
  height: 20px;
  background: var(--color2);
}
@media screen and (max-width: 1023px) {
  .entry__table tbody tr:nth-child(2) th span::before,
.entry__table tbody tr:nth-child(3) th span::before {
    top: -6.5px;
    left: 6.5px;
    width: 2px;
    height: 15px;
  }
}

.entry__table tbody tr:nth-child(2) th div p,
.entry__table tbody tr:nth-child(3) th div p {
  color: var(--color2);
}
@media screen and (max-width: 1023px) {
  .entry__table tbody tr:nth-child(2) th div p,
.entry__table tbody tr:nth-child(3) th div p {
    font-size: 1.4rem;
  }
}

.entry__table tbody tr:nth-child(2) th div p.title,
.entry__table tbody tr:nth-child(3) th div p.title {
  color: var(--color1);
}
@media screen and (max-width: 1023px) {
  .entry__table tbody tr:nth-child(2) th div p.title,
.entry__table tbody tr:nth-child(3) th div p.title {
    padding-bottom: 15px;
  }
}

.entry__table tbody tr:nth-child(2) td,
.entry__table tbody tr:nth-child(3) td {
  font-size: 2rem;
}
@media screen and (max-width: 1023px) {
  .entry__table tbody tr:nth-child(2) td,
.entry__table tbody tr:nth-child(3) td {
    font-size: 1.4rem;
    text-align: left;
    padding-left: 60px;
  }
}

.entry__table__red {
  color: var(--color2);
}

.entry__before {
  font-size: 1.6rem;
  display: inline;
  text-decoration: line-through;
  -webkit-text-decoration-color: var(--black);
          text-decoration-color: var(--black);
}
@media screen and (max-width: 1023px) {
  .entry__before {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 599px) {
  .entry__before {
    letter-spacing: 0.1rem;
  }
}

/* ====================================================
	coupon
==================================================== */
.coupon {
  padding: 53px 0;
  background: var(--color2);
}
@media screen and (max-width: 1023px) {
  .coupon {
    padding-top: 40px;
  }
}
@media screen and (max-width: 599px) {
  .coupon {
    padding: 36px 0 49px;
  }
}

.secCoupon__wrapper {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media screen and (max-width: 1023px) {
  .secCoupon__wrapper {
    flex-direction: column;
  }
}

.secCoupon__title {
  position: relative;
  text-align: left;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 9px;
  line-height: 1.7;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 1023px) {
  .secCoupon__title {
    margin: 0 auto 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 17px;
  }
}
@media screen and (max-width: 599px) {
  .secCoupon__title {
    margin: 0 auto 28px;
  }
}

.secCoupon__title p {
  position: absolute;
  top: -145px;
  left: 0;
  width: 130px;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--color7);
  color: var(--color2);
  font-weight: 600;
  font-size: 2.5rem;
  letter-spacing: 0.25rem;
  padding-left: 2px;
}
@media screen and (max-width: 1023px) {
  .secCoupon__title p {
    position: relative;
    top: initial;
    left: initial;
  }
}
@media screen and (max-width: 599px) {
  .secCoupon__title p {
    width: 79px;
    height: 79px;
    min-width: 79px;
    min-height: 79px;
    font-size: 1.5rem;
  }
}
.secCoupon__title p::after {
  position: absolute;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  content: "";
  width: 20%;
  height: 20%;
  background: var(--color7);
  bottom: 17px;
  right: -5.5px;
  transform: rotate(25deg);
}
@media screen and (max-width: 599px) {
  .secCoupon__title p::after {
    bottom: 10px;
    right: -5px;
  }
}

.secCoupon__title h2 {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--white);
  padding-right: 30px;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 1023px) {
  .secCoupon__title h2 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .secCoupon__title h2 {
    font-size: 2rem;
    letter-spacing: 0.2rem;
    display: block;
    line-height: 1.4;
    padding-top: 7px;
    padding-right: 15px;
  }
}

.coupon ul {
  display: flex;
  justify-content: center;
  gap: 13px;
}
@media screen and (max-width: 1023px) {
  .coupon ul {
    flex-direction: column;
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .coupon ul {
    width: 94%;
    gap: 21px;
  }
}

.coupon ul li {
  width: 288px;
  position: relative;
  background: var(--white);
  border-radius: 10px;
  padding: 30px 0;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .coupon ul li {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .coupon ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px 10px 25px;
    gap: 10px;
  }
}

.coupon ul li p {
  position: absolute;
  top: 20px;
  left: -38px;
  padding: 0px 50px;
  background: #CF0000;
  transform: rotate(-45deg);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  font-family: Arial, Helvetica, sans-serif;
}
@media screen and (max-width: 1023px) {
  .coupon ul li p {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 599px) {
  .coupon ul li p {
    top: 14px;
    left: -39px;
  }
}

.coupon ul li p span {
  font-size: 2rem;
}
@media screen and (max-width: 1023px) {
  .coupon ul li p span {
    font-size: 1.8rem;
  }
}

.coupon ul li img {
  display: block;
  margin: 0 auto 6px;
  width: 55px;
  height: 55px;
}
@media screen and (max-width: 1023px) {
  .coupon ul li img {
    width: 60px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 599px) {
  .coupon ul li img {
    margin: 0 0 0 20px;
    height: auto;
  }
}

.coupon ul li h3 {
  font-size: 1.8rem;
  color: var(--color2);
  font-weight: 600;
}
@media screen and (max-width: 1023px) {
  .coupon ul li h3 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .coupon ul li h3 {
    font-size: 1.6rem;
    text-align: left;
    letter-spacing: 0.15rem;
  }
}

/* ====================================================
	step
==================================================== */
.step {
  background: var(--white);
  padding: 150px 0;
}
@media screen and (max-width: 1023px) {
  .step {
    padding: 100px 0 0;
  }
}
@media screen and (max-width: 599px) {
  .step {
    padding: 100px 0 45px;
  }
}

.step__wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.step__wrapper__small_title {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2rem;
  color: var(--color2);
  font-weight: 600;
  margin-bottom: 11px;
  line-height: 2;
  letter-spacing: 0.4rem;
}
@media screen and (max-width: 1023px) {
  .step__wrapper__small_title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .step__wrapper__small_title {
    font-size: 1.2rem;
    letter-spacing: 0.3rem;
    margin-bottom: 0;
  }
}

.step__wrapper__title {
  font-size: 3.2rem;
  line-height: 2;
  font-weight: 600;
  margin-bottom: 90px;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 1023px) {
  .step__wrapper__title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .step__wrapper__title {
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
    margin-bottom: 40px;
  }
}

.step__wrapper__ul {
  display: flex;
  position: relative;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .step__wrapper__ul {
    flex-direction: column;
    gap: 40px;
    max-width: 500px;
    margin: 0 auto 100px;
  }
}
@media screen and (max-width: 599px) {
  .step__wrapper__ul {
    gap: 48px;
    margin-bottom: 33px;
  }
}
.step__wrapper__ul::before {
  content: "";
  position: absolute;
  left: 15%;
  top: 30px;
  width: 70%;
  height: 2px;
  background: var(--color2);
}
@media screen and (max-width: 1023px) {
  .step__wrapper__ul::before {
    display: none;
  }
}

.step__wrapper__ul__li {
  width: 30%;
}
@media screen and (max-width: 1023px) {
  .step__wrapper__ul__li {
    width: 100%;
  }
}

.step__wrapper__ul__li__number {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: solid 2px var(--color2);
  margin: 0 auto 30px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color2);
  font-size: 2.4rem;
  font-weight: 600;
  background: var(--white);
  position: relative;
  z-index: 1;
  padding-left: 3px;
}
@media screen and (max-width: 1023px) {
  .step__wrapper__ul__li__number {
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}

.step__wrapper__ul__li:last-child .step__wrapper__ul__li__number {
  background: var(--color2);
  color: var(--white);
}

.step__wrapper__ul__li__title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
}
@media screen and (max-width: 1023px) {
  .step__wrapper__ul__li__title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .step__wrapper__ul__li__title {
    margin-bottom: 8px;
  }
}

.step__wrapper__ul__li__image {
  display: block;
  margin-bottom: 21px;
}
@media screen and (max-width: 599px) {
  .step__wrapper__ul__li__image {
    padding: 10px;
    margin-bottom: 11px;
  }
}

.step__wrapper__ul__li__text {
  text-align: left;
  line-height: 2;
  letter-spacing: 0.07rem;
  font-weight: 400;
  font-size: 1.4rem;
  line-break: strict;
}
@media screen and (max-width: 599px) {
  .step__wrapper__ul__li__text {
    padding: 0 10px;
    line-height: 1.9;
    letter-spacing: 0.14rem;
  }
}

/* ====================================================
	faq
==================================================== */
.faq {
  background: var(--color9);
  padding: 1px 0 200px;
}
@media screen and (max-width: 1023px) {
  .faq {
    padding: 1px 0 100px;
  }
}

.faq__wrapper {
  width: 90%;
  max-width: 1200px;
  padding: 105px 0 245px;
  margin: 100px auto 0;
  background: var(--white);
}
@media screen and (max-width: 1023px) {
  .faq__wrapper {
    padding: 80px 0 100px;
    margin-top: 100px;
  }
}
@media screen and (max-width: 599px) {
  .faq__wrapper {
    padding: 43px 0 50px;
    margin: 80px auto 0;
    width: 85%;
  }
}

.faq__wrapper__area {
  text-align: left;
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}
.faq__wrapper__area ul li p {
  padding: 17px 0 7px;
  display: none;
  letter-spacing: 0.16rem;
  line-height: 2;
  font-size: 1.6rem;
}
@media screen and (max-width: 1023px) {
  .faq__wrapper__area ul li p {
    padding: 20px 0;
    font-size: 1.5rem;
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .faq__wrapper__area ul li p {
    font-size: 1.4rem;
    padding: 20px 0 26px;
  }
}

.faq__small_title {
  color: var(--color2);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: Arial, Helvetica, sans-serif;
  display: block;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .faq__small_title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .faq__small_title {
    font-size: 1.2rem;
    text-align: left;
    padding-left: 14px;
    margin-bottom: 3px;
  }
}

.faq__title {
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 44px;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 1023px) {
  .faq__title {
    font-size: 2.6rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .faq__title {
    font-size: 1.8rem;
    text-align: left;
    padding-left: 14px;
    letter-spacing: 0.2rem;
    margin-bottom: 13px;
  }
}

.nav-open {
  padding: 54px 45px 11px 4px;
  border-bottom: solid 2px var(--color2);
  font-size: 2rem;
  position: relative;
  cursor: pointer;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .nav-open {
    display: flex;
    flex-direction: column;
    padding: 20px 30px 20px 0;
    gap: 10px;
  }
}
@media screen and (max-width: 599px) {
  .nav-open {
    font-size: 1.6rem;
    padding: 20px 10px 20px 15px;
    letter-spacing: 0.16rem;
    gap: 12px;
  }
}
.nav-open span {
  color: var(--color2);
  font-family: Arial, Helvetica, sans-serif;
  margin-right: 10px;
  font-weight: 700;
  font-size: 2rem;
}
@media screen and (max-width: 599px) {
  .nav-open span {
    font-size: 1.6rem;
  }
}
.nav-open::before {
  content: "▼";
  position: absolute;
  right: 15px;
  top: 52px;
  color: var(--color2);
  font-size: 2rem;
}
@media screen and (max-width: 1023px) {
  .nav-open::before {
    right: 0;
    top: 12.5px;
  }
}
@media screen and (max-width: 599px) {
  .nav-open::before {
    font-size: 1.8rem;
    right: 24px;
    top: 20px;
  }
}
.nav-open.active-faq::before {
  content: "△";
}

/* ====================================================
	company
==================================================== */
.company {
  background: var(--white);
  padding: 100px 0 0;
}
@media screen and (max-width: 599px) {
  .company {
    background-color: var(--color5);
  }
}

.company__wrapper__small_title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2rem;
  color: var(--color2);
  font-weight: 600;
  margin-bottom: 11px;
  line-height: 2;
  letter-spacing: 0.4rem;
  display: block;
}
@media screen and (max-width: 1023px) {
  .company__wrapper__small_title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .company__wrapper__small_title {
    font-size: 1.2rem;
    letter-spacing: 0.25rem;
    margin-bottom: 0;
  }
}

.company__wrapper__title {
  font-size: 3.2rem;
  line-height: 2;
  font-weight: 600;
  margin-bottom: 38px;
}
@media screen and (max-width: 1023px) {
  .company__wrapper__title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .company__wrapper__title {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
}

.company__wrapper {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1023px) {
  .company__wrapper {
    display: block;
  }
}
.company__wrapper div {
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .company__wrapper div {
    width: 100%;
  }
}

.company__wrapper__contents {
  background-color: var(--color5);
}

.company__wrapper__contents__date {
  text-align: left;
  max-width: 620px;
}
@media screen and (max-width: 1023px) {
  .company__wrapper__contents__date {
    max-width: initial;
  }
}

.company__wrapper__contents__date dl {
  display: flex;
  flex-wrap: wrap;
  padding: 13px 60px 0 20px;
}
@media screen and (max-width: 1023px) {
  .company__wrapper__contents__date dl {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .company__wrapper__contents__date dl {
    padding: 20px 30px;
    font-size: 1.4rem;
  }
}

.company__wrapper__contents__date dl dt,
.company__wrapper__contents__date dl dd {
  display: block;
  padding: 52px 0 20px;
  border-bottom: solid 1px #D9D9D9;
}
@media screen and (max-width: 599px) {
  .company__wrapper__contents__date dl dt,
.company__wrapper__contents__date dl dd {
    padding: 20px 0;
  }
}

.company__wrapper__contents__date dl dt {
  padding-left: 21px;
  width: 25%;
}
@media screen and (max-width: 599px) {
  .company__wrapper__contents__date dl dt {
    padding-left: 0;
    width: 21%;
  }
}

.company__wrapper__contents__date dl dd {
  width: 75%;
}
@media screen and (max-width: 599px) {
  .company__wrapper__contents__date dl dd {
    width: 79%;
    letter-spacing: 0.1rem;
  }
}

.company__wrapper__contents__date .line {
  text-decoration: underline;
  padding-left: 1.7rem;
  display: block;
}

.google-map iframe {
  width: 100%;
  height: 500px;
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  border: none;
}
@media screen and (max-width: 599px) {
  .google-map iframe {
    height: 530px;
  }
}

/* ====================================================
	floating
==================================================== */
.floating {
  position: fixed;
  left: 0;
  bottom: -2px;
  width: 100%;
  padding: 0 3%;
  z-index: 100;
}
.floating__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--color8);
  max-width: 330px;
  width: 100%;
  height: 82px;
  margin: 0 auto;
  position: relative;
  color: var(--white);
  border-radius: 5px 5px 0 0;
}
.floating__btn .small {
  font-size: 1.4rem;
  letter-spacing: 0;
}
.floating__btn .text {
  font-size: 2.2rem;
  letter-spacing: 0.1rem;
}
.floating__btn .icon {
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
}
.floating__btn .icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 8px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: var(--color8);
}

/* ----------------------------------------------------
	[END]TOPコンテンツ
---------------------------------------------------- */
/* ----------------------------------------------------
	[START]TOP・下層共通コンテンツ
---------------------------------------------------- */
/* ====================================================
	news
==================================================== */
.news {
  padding: 226px 0 100px;
  background: var(--white);
  text-align: left;
}
@media screen and (max-width: 1023px) {
  .news {
    padding: 100px 0;
  }
}

.news__background {
  margin: 0 auto;
}

.news__small {
  text-align: center;
  display: block;
  color: var(--color2);
  font-size: 2rem;
  line-height: 2;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.4rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 1023px) {
  .news__small {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .news__small {
    font-size: 1.2rem;
    letter-spacing: 0.25rem;
    margin-bottom: -1px;
  }
}

.news__title {
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 92px;
  line-height: 2;
}
@media screen and (max-width: 1023px) {
  .news__title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .news__title {
    letter-spacing: 0;
    margin-bottom: 37px;
    font-size: 2rem;
  }
}

.news__ul__link {
  display: block;
}

.news__ul__link:hover {
  opacity: 1;
}

.news__ul__link:hover .news__ul__link__li__image img {
  transform: scale(1.15);
}

.news__ul__link__li {
  padding: 0 20px;
}
@media screen and (max-width: 1023px) {
  .news__ul__link__li {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 599px) {
  .news__ul__link__li {
    width: 100%;
    padding: 0 15px;
  }
}

.news__ul__link__li__image {
  margin-bottom: 15px;
  aspect-ratio: 16/8.6;
  overflow: hidden;
  border: 1px solid #D9D9D9;
}
@media screen and (max-width: 599px) {
  .news__ul__link__li__image {
    margin-bottom: 10px;
  }
}

.news__ul__link__li__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}

.news__ul__link__li__time {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--color2);
  margin-bottom: 2px;
}
@media screen and (max-width: 1023px) {
  .news__ul__link__li__time {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 599px) {
  .news__ul__link__li__time {
    font-size: 1.6rem;
  }
}

.news__ul__link__li__title {
  line-height: 1.5;
  letter-spacing: 0.16rem;
}
@media screen and (max-width: 1023px) {
  .news__ul__link__li__title {
    font-size: 1.4rem;
    line-height: 2;
  }
}
@media screen and (max-width: 599px) {
  .news__ul__link__li__title {
    line-height: 1.6;
  }
}

.news__link {
  position: relative;
  display: block;
  width: 90%;
  max-width: 400px;
  padding: 25px 0;
  line-height: 2;
  border: solid 1px var(--color2);
  letter-spacing: 0.3rem;
  font-weight: 500;
  text-align: center;
  color: var(--color2);
  margin: 0 auto;
  transition: 0.5s;
}
@media screen and (max-width: 1023px) {
  .news__link {
    padding: 16.5px 0;
  }
}

.news__link::after {
  content: "";
  display: block;
  width: 12.5px;
  height: 12.5px;
  border-right: solid 2px var(--color2);
  border-bottom: solid 2px var(--color2);
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: 0.5s;
}

.news__link:hover {
  background: var(--color2);
  color: var(--white);
  opacity: 1;
}

.news__link:hover::after {
  border-right: solid 2px var(--white);
  border-bottom: solid 2px var(--white);
}

/* ====================================================
	archive
==================================================== */
#archive {
  padding-top: 0;
}

.archiveNews__ul {
  width: 90%;
  max-width: 1480px;
  margin: 0 auto 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.archiveNews__ul__link__li {
  width: calc(33.3333333333% - 34px);
}

.wp-pagenavi {
  margin-bottom: 100px;
}

@media (max-width: 1024px) {
  .archiveNews__ul__link__li {
    width: calc(50% - 25px);
  }
}
@media (max-width: 599px) {
  .archiveNews__ul__link__li {
    width: 100%;
  }
}
/* ----------------------------------------------------
	[END]TOP・下層共通コンテンツ
---------------------------------------------------- */
/* ----------------------------------------------------
	[START]下層コンテンツ
---------------------------------------------------- */
/* ====================================================
	other-top
==================================================== */
.other-top {
  padding-top: 77px;
  margin-bottom: 120px;
}

.other-top img {
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 150px;
}

@media (max-width: 599px) {
  .other-top img {
    min-height: 100px;
  }
}
/* ====================================================
	privacy
==================================================== */
.privacy__contents {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 150px;
  text-align: left;
  line-height: 2;
}

.privacy__contents__title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.privacy__contents__text {
  margin-bottom: 100px;
}

.privacy__contents__ul {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.privacy__contents__ul__li__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 10px;
}

.privacy__contents__ul__li__title span {
  display: block;
  width: 10px;
  height: 2px;
  background: var(--color2);
}

.privacy__contents__ul__li__ul {
  margin-top: 15px;
}

.privacy__contents__ul__li__ul__li {
  padding-left: 16px;
}

.privacy__contents__ul__li__ul__bottom {
  margin-bottom: 50px;
}

@media (max-width: 1023px) {
  .privacy__contents__title {
    font-size: 1.8rem;
  }
  .privacy__contents__text {
    font-size: 1.4rem;
  }
  .privacy__contents__ul {
    font-size: 1.4rem;
  }
}
/* ====================================================
	tokusho
==================================================== */
.tokusho {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 150px;
  text-align: left;
}

.tokusho__title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 70px;
}

.tokusho dl {
  display: flex;
  flex-wrap: wrap;
}

.tokusho dl dt {
  padding: 20px 0;
  border-bottom: solid 1px #D9D9D9;
  width: 250px;
  font-weight: 700;
}

.tokusho dl dd {
  padding: 20px 0;
  width: calc(100% - 250px);
  border-bottom: solid 1px #D9D9D9;
}

.tokusho dl dd span {
  color: #757373;
}

.tokusho dl dd a {
  text-decoration: underline;
  color: #0085FF;
}

@media (max-width: 1023px) {
  .tokusho__title {
    font-size: 1.8rem;
  }
  .tokusho dl dt {
    width: 100%;
    border-bottom: none;
    padding-bottom: 0;
    font-size: 1.4rem;
  }
  .tokusho dl dd {
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.8;
    padding-top: 10px;
  }
}
/* ====================================================
	contact
==================================================== */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

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

input[type=submit] {
  width: 100%;
  display: block;
  margin: 0 auto;
  text-align: center;
  margin-top: 50px;
  background: #D9D9D9;
  border-radius: 5px;
  padding: 15px 0;
  transition: 0.4s;
}

input[type=submit]:hover {
  background: var(--black);
  color: var(--white);
}

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

.pageContact {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 200px;
}

.pageContact__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 50px;
}

.pageContact__ul {
  width: 220px;
  height: 2px;
  background: #D9D9D9;
  position: relative;
  margin: 0 auto 120px;
}

.pageContact__ul__li {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  left: -30px;
  top: -4px;
}

.pageContact__ul__li:nth-of-type(2) {
  left: 50%;
  transform: translateX(-50%);
}

.pageContact__ul__li:nth-of-type(3) {
  left: auto;
  right: -30px;
}

.pageContact__ul__li span {
  display: block;
  width: 10px;
  height: 10px;
  background: #D9D9D9;
  border-radius: 50%;
}

.pageContact__ul__li p {
  line-height: 2;
  font-size: 1.4rem;
  color: #D9D9D9;
}

.pageContact__ul__li-current span {
  background: var(--color2);
}

.pageContact__ul__li-current p {
  color: var(--color2);
}

.contact__form {
  display: block;
  text-align: left;
}

.contact__form tbody {
  display: block;
}

.contact__form tbody tr {
  display: block;
  margin-bottom: 20px;
}

.contact__form tbody tr th {
  display: block;
  line-height: 2;
}

.contact__form tbody tr td {
  display: block;
}

.contact__form tbody tr td span {
  display: block;
  width: 100%;
  height: 100%;
}

.contact__form tbody tr td span input {
  width: 100%;
  border: solid 1px #D9D9D9;
  padding: 9px 16px;
}

.contact__form tbody tr td span textarea {
  width: 100%;
  height: 100%;
  border: solid 1px #D9D9D9;
  padding: 9px 16px;
  resize: none;
}

.contact__form tbody tr td span input::-moz-placeholder {
  color: #D9D9D9;
}

.contact__form tbody tr td span input::placeholder {
  color: #D9D9D9;
}

.contact__form tbody tr td span textarea::-moz-placeholder {
  color: #D9D9D9;
}

.contact__form tbody tr td span textarea::placeholder {
  color: #D9D9D9;
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-list-item {
  margin: 0 !important;
}

.wpcf7-list-item input {
  width: 18px;
  height: 18px;
  border: solid 1px #D0d0d0;
  margin-bottom: 2.5px;
}

.form-confirmation {
  display: flex;
  gap: 12.5px;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.form-confirmation a {
  color: #0085FF;
  text-decoration: underline;
}

.wpcf7-submit {
  display: block;
  width: 90%;
  max-width: 280px;
  padding: 14px 0;
  margin: 0 auto;
  line-height: 2;
  letter-spacing: 0.4rem;
  background: var(--black);
  color: var(--white);
  transition: 0.25s;
}

.wpcf7-submit:hover {
  opacity: 0.5;
}

.wpcf7-submit:disabled {
  opacity: 0.25;
}

.pageContact-confirmation .contact__form {
  margin-bottom: 150px;
}

.pageContact-confirmation .contact__form tbody tr {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 1px #D9D9D9;
  display: flex;
  align-items: center;
}

.pageContact-confirmation .contact__form tbody tr:last-child {
  align-items: flex-start;
}

.pageContact-confirmation .contact__form tbody tr th {
  width: 200px;
}

.pageContact-confirmation .contact__form tbody tr td {
  flex: 1;
}

.pageContact-confirmation .contact__form tbody tr:last-child td {
  margin-top: 2.5px;
}

.pageContact-thanks__text {
  line-height: 2;
  margin-bottom: 220px;
  text-align: left;
}

.pageContact-thanks__button {
  display: block;
  width: 90%;
  max-width: 280px;
  margin: 0 auto;
  background: var(--black);
  color: var(--white);
  padding: 14px 0;
  line-height: 2;
}

@media (max-width: 1023px) {
  .pageContact-confirmation .contact__form tbody tr {
    display: block;
  }
  .pageContact-confirmation .contact__form tbody tr td {
    padding-left: 20px;
  }
}
/* ====================================================
	single
==================================================== */
.single-contents {
  width: 90%;
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: left;
}

.single-contents time {
  font-size: 1.2rem;
  color: var(--color2);
  line-height: 2;
}

.single-contents h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.single-contents img {
  aspect-ratio: 16/9;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}

.single-contents p {
  line-height: 2;
  letter-spacing: 0.4rem;
}

.single__page-navi {
  position: relative;
  display: inline-block;
  margin-bottom: 150px;
}

.single__page-navi__back {
  position: absolute;
  top: 0;
  left: -110px;
}

.single__page-navi__next {
  position: absolute;
  top: 0;
  right: -110px;
}

.wp-pagenavi {
  clear: both;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}

.wp-pagenavi a,
.wp-pagenavi span {
  text-decoration: none;
  border: 1px solid #D9D9D9 !important;
  padding: 5px 10px !important;
}

.wp-pagenavi span.current {
  font-weight: bold;
  background: red;
  border: none;
  color: var(--white);
}

/* ====================================================
	form
==================================================== */
.pageform {
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
}

.form__subTitle {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color2);
  line-height: 2;
  letter-spacing: 0.2rem;
  margin-bottom: 10px;
  text-align: center;
}

.form__title {
  font-family: "Noto Sans JP";
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 4px;
  margin-bottom: 40px;
}

.form__topText {
  text-align: center;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.8px;
  margin-bottom: 40px;
}

.form__bottomText {
  font-family: "Noto Sans JP";
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 60px;
  text-align: left;
}

.form__contents {
  margin-bottom: 200px;
}

.form__input {
  width: 100%;
  display: block;
}

.form__input tbody {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__input tbody tr {
  display: flex;
}

.form__input tbody tr th {
  width: 220px;
  margin-top: 12.5px;
}

.form__input tbody tr td {
  flex: 1;
}

.wpcf7-form-control-wrap {
  width: 100%;
  display: block;
}

.wpcf7-form-control-wrap input {
  width: 100%;
  text-align: left;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  padding: 10px 12.5px;
  border: solid 1px #D4D4D4;
  border-radius: 5px;
}

.form__red {
  width: 60px;
  padding: 5px;
  color: var(--color2);
  border: solid 1px var(--color2);
  border-radius: 5px;
  font-size: 1.2rem;
  margin-right: 10px;
  display: inline-block;
  text-align: center;
}

.form__input tbody .form__date {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.form__input tbody .form__date th {
  margin-left: 70px;
}

.form__date__top {
  margin-top: 5px;
}

.form__date__top2 {
  margin-top: 7.5px;
}

.form__input tbody .form__date td {
  display: flex;
  width: 100%;
}

.form__date__td__title {
  margin-right: 10px;
}

.form__input .wpcf7-date {
  border: solid 1px #D9D9D9;
  padding: 5px 10px;
  border-radius: 5px;
  display: block;
  height: 35px;
}

.form__date__td__margin {
  margin: 0 15px;
}

.form__input .wpcf7-select {
  width: 100%;
  padding: 5px 30px 5px 10px;
  border: solid 1px #D8D8D8;
  border-radius: 5px;
  text-align: left;
  position: relative;
  z-index: 10;
}

.form__date__td__flex1 {
  flex: 1;
}

.hidden {
  visibility: hidden;
}

.comfilme__input p {
  text-align: left;
  border: solid 1px #D9D9D9;
  border-radius: 5px;
  padding: 5px 10px;
  margin-top: 7.5px;
}

.comfilme {
  padding: 6px 10px;
  border: solid 1px #D9D9D9;
  border-radius: 5px;
}

.formmain {
  overflow-x: hidden;
}

.pageform {
  padding-top: 150px;
}

.form__date__td__flex1 .wpcf7-form-control-wrap::after {
  width: 15px;
  height: 12.5px;
  background: var(--black);
  content: "";
  display: block;
  position: absolute;
  right: 10px;
  top: 12.5px;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.form__input__button {
  position: relative;
  width: 280px;
  margin: 0 auto;
}

.form__input__button::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 12px;
  height: 12px;
  border-right: solid 2px var(--white);
  border-bottom: solid 2px var(--white);
  transform: rotate(-45deg) translateY(-50%);
}

.form__input__button input {
  transition: 0.4s;
  background: linear-gradient(129deg, #E60012 26.14%, #8D000B 86.26%);
}

.form__input__button input[type=submit]:hover {
  background: linear-gradient(129deg, #E60012 26.14%, #8D000B 86.26%);
  color: var(--white);
  opacity: 0.75;
}

@media (max-width: 650px) {
  .pageform {
    padding-top: 100px;
  }
  .form__subTitle {
    font-size: 1.2rem;
    margin-bottom: 0;
  }
  .form__title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .form__topText {
    font-size: 1.4rem;
    text-align: left;
    margin-bottom: 30px;
  }
  .form__input tbody tr {
    flex-direction: column;
    gap: 10px;
  }
  .form__input tbody .form__date th {
    margin: 0;
  }
  .form__input tbody .form__date td {
    flex-wrap: wrap;
    gap: 10px;
  }
  .form__date__top2 {
    width: calc(100% - 70px);
    text-align: left;
  }
  .form__date .form__date__top {
    margin-right: 0;
  }
  .form__date__td__margin {
    margin: 0;
    width: 40%;
  }
  .form__date__td__title {
    text-align: left;
    width: 47.5%;
    margin-right: 0;
  }
  .form__input .wpcf7-date {
    margin-right: 0;
  }
}
/*# sourceMappingURL=style.css.map */