@charset "UTF-8";
/* aタグ設定
------------------------------------- */
@media (any-hover: hover) {
  a:hover, button:hover {
    opacity: 0.75;
  }
}

a, button {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  text-decoration: none;
}

/* 基本設定
------------------------------------- */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media screen and (min-width: 900px) {
  html {
    scroll-padding-top: 80px;
  }
}

body {
  -webkit-text-size-adjust: 100%;
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}

ul {
  list-style: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* デフォルトの三角形アイコンを非表示にする */
summary {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker,
summary::marker {
  display: none;
}

/* レスポンシブ設定
------------------------------------- */
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.pc {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

.inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-inline: 40px;
    max-width: 1280px;
    margin: 0 auto;
  }
}

/* 共通パーツ
------------------------------------- */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F27F03;
  color: #fff;
  border-radius: 50px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.section__title {
  font-size: 2.4rem;
  color: #065EAB;
  text-align: center;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .section__title {
    font-size: 4rem;
  }
}
@media screen and (min-width: 1200px) {
  .section__title {
    text-align: left;
    margin-left: 26px;
  }
}
@media screen and (min-width: 1200px) {
  .section__title br {
    display: none;
  }
}
.section__title::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 1.5px;
  background: #065EAB;
  top: 50%;
  transform: translateY(-50%);
  left: -22px;
}
@media screen and (min-width: 768px) {
  .section__title::before {
    left: -26px;
    width: 20px;
    height: 4px;
  }
}
.section__title::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 1.5px;
  background: #065EAB;
  top: 50%;
  transform: translateY(-50%);
  right: -22px;
}
@media screen and (min-width: 768px) {
  .section__title::after {
    right: -26px;
    width: 20px;
    height: 4px;
  }
}

.area-sushi {
  width: 300px;
  height: 200px;
  background-image: url("../images/sushi.jpg");
}

.webp .area-sushi {
  background-image: url("../images/sushi.webp");
}

.header {
  height: 67px;
  position: static;
  z-index: 20;
  background-color: #fff;
}
@media screen and (min-width: 1200px) {
  .header {
    position: fixed;
    top: 0px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 80px;
  }
}

.header__inner {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 20px;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .header__inner {
    padding-inline: 25px;
  }
}

.header__logo {
  width: 133px;
  height: 32px;
}

.drawer-icon {
  width: 30px;
  height: 18px;
  position: relative;
  position: fixed;
  right: 20px;
  z-index: 15;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}
@media screen and (min-width: 1200px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon__bar {
  position: absolute;
  width: 30px;
  height: 2px;
  background: #002C83;
  left: 0;
  transition: top 0.4s, transform 0.4s;
}
.drawer-icon__bar:nth-child(1) {
  top: 0;
}
.drawer-icon__bar:nth-child(2) {
  top: 8px;
}
.drawer-icon__bar:nth-child(3) {
  top: 16px;
}

.header__nav {
  width: 100%;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 0px;
  padding-top: 100px;
  padding-bottom: 30px;
  overflow-y: auto;
  z-index: 10;
  display: none;
  background-color: #fff;
}
@media screen and (min-width: 1200px) {
  .header__nav {
    display: flex !important;
    justify-content: flex-end;
    width: auto;
    top: 0;
    padding: 0;
    position: static;
    left: auto;
    transform: none;
  }
}

.header__lists {
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: #002C83;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  .header__lists {
    flex-direction: row;
    justify-content: flex-end;
    gap: 15px;
  }
}

.header__list span {
  display: none;
}
@media screen and (min-width: 1200px) {
  .header__list span {
    display: inline-block;
  }
}
.header__list img {
  display: inline-block;
  width: 300px;
}
@media screen and (min-width: 1200px) {
  .header__list img {
    display: none;
  }
}

.fv {
  position: relative;
  width: 100%;
  height: auto;
  background: #fff;
}

.fv__inner {
  text-align: center;
}

.fv__img-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .fv__img-sp {
    display: none;
  }
}
.fv__img-sp img {
  width: 100%;
}

.fv__img-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .fv__img-pc {
    display: block;
  }
}
.fv__img-pc img {
  width: 100%;
}

.fv__btnarea {
  display: inline-block;
  width: 88vw;
  padding-top: 5.6vw;
}
@media screen and (min-width: 768px) {
  .fv__btnarea {
    position: absolute;
    width: 34.7222222222vw;
    bottom: 8.125vw;
    right: 12.7083333333vw;
  }
}
.fv__btnarea img {
  width: 100%;
}

.fv__catch {
  display: block;
  margin-bottom: 2.6666666667vw;
  font-weight: bold;
  font-size: 4vw;
}
@media screen and (min-width: 768px) {
  .fv__catch {
    display: none;
  }
}

.fv__subtitle {
  font-size: 5.33333vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv__subtitle {
    font-size: 4rem;
  }
}
.fv__subtitle .large {
  font-size: 6.933333vw;
}
@media screen and (min-width: 768px) {
  .fv__subtitle .large {
    font-size: 5.4rem;
  }
}
.fv__subtitle::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 5px;
  background: #FFC107;
  bottom: -3px;
}
@media screen and (min-width: 768px) {
  .fv__subtitle::before {
    height: 15px;
    bottom: -15px;
  }
}

.fv__title {
  text-align: center;
  font-size: 10.133333vw;
  margin-top: 8vw;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .fv__title {
    margin-top: 61px;
    font-size: 8rem;
  }
}

.fv__discription {
  text-align: center;
  margin-top: 4vw;
  font-weight: 700;
  font-size: 4.2666667vw;
}
@media screen and (min-width: 768px) {
  .fv__discription {
    margin-top: 34px;
    font-size: 2.5rem;
    line-height: 1.6;
  }
}

.trouble {
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .trouble {
    padding-top: 38px;
    padding-bottom: 30px;
  }
}

@media screen and (min-width: 600px) {
  .trouble__inner {
    max-width: 1054px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    display: grid;
    grid-template-columns: auto auto; /* 左右2列 */
    grid-template-rows: auto auto; /* 上下2行 */
    -moz-column-gap: 5.83333vw;
         column-gap: 5.83333vw;
    row-gap: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .trouble__inner {
    -moz-column-gap: 70px;
         column-gap: 70px;
  }
}

.trouble__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (min-width: 600px) {
  .trouble__title {
    grid-column: 1;
    grid-row: 1;
  }
}
@media screen and (min-width: 768px) {
  .trouble__title {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .trouble__title {
    font-size: 3rem;
  }
}

.trouble__lists {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (min-width: 600px) {
  .trouble__lists {
    margin-top: 0;
    gap: 14px;
    justify-content: center;
    grid-column: 2;
    grid-row: 1/span 2; /* 1行目から2行目まで縦に伸ばす */
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 768px) {
  .trouble__lists {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1200px) {
  .trouble__lists {
    font-size: 2.2rem;
  }
}
.trouble__lists li {
  padding-left: 20px;
  position: relative;
  font-weight: 500;
}
.trouble__lists li::before {
  position: absolute;
  content: "✓";
  top: 1px;
  left: 0;
  width: 5px;
  height: 5px;
}

.trouble__btn {
  margin-top: 30px;
  margin-inline: auto;
  font-weight: 900;
  width: 320px;
  height: 60px;
}
@media screen and (min-width: 600px) {
  .trouble__btn {
    margin-top: 0;
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    height: 5.83333vw;
    font-size: 2.08333vw;
  }
}
@media screen and (min-width: 1200px) {
  .trouble__btn {
    font-size: 2.5rem;
    height: 70px;
  }
}

.about {
  padding-block: 50px;
}
@media screen and (min-width: 768px) {
  .about {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

@media screen and (min-width: 768px) {
  .about__inner {
    padding-inline: 0;
  }
}

.about__title {
  color: #039BE5;
  text-align: center;
}

.lead1 {
  font-size: 2rem;
  font-weight: 700;
  color: #065EAB;
  display: block;
  line-height: 1.5;
}
@media screen and (min-width: 1200px) {
  .lead1 {
    font-size: 3rem;
  }
}

.lead2 {
  line-height: 1.5;
  font-size: 2.8rem;
  font-weight: 700;
  color: #065EAB;
}
@media screen and (min-width: 768px) {
  .lead2 {
    font-size: 4.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .lead2 br {
    display: none;
  }
}

.about__content {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .about__content {
    margin-top: 41px;
    display: flex;
    flex-direction: row-reverse;
    gap: 5.972222vw;
    padding-right: 30px;
    align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .about__content {
    padding-right: 120px;
  }
}

.about__txt {
  line-height: 1.8;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .about__txt {
    width: 49.33333vw;
    flex-shrink: 0;
    font-size: 2rem;
    line-height: 2;
  }
}
@media screen and (min-width: 1200px) {
  .about__txt {
    width: 41.1111vw;
    line-height: 2.45;
    font-size: 2.4rem;
  }
}
.about__txt strong {
  font-weight: 800;
  color: #065EAB;
}

.about__img {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .about__img {
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .about__img {
    overflow: hidden;
  }
}

.merit {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .merit {
    margin-top: 100px;
  }
}

.merit__lists {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .merit__lists {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
.merit__lists img {
  position: absolute;
  top: -45px;
  right: -14px;
  width: 70px;
  z-index: -1;
}
@media screen and (min-width: 600px) {
  .merit__lists img {
    width: 100px;
    top: -90px;
    z-index: -1;
  }
}
@media screen and (min-width: 768px) {
  .merit__lists img {
    width: 150px;
    top: -110px;
  }
}
@media screen and (min-width: 1200px) {
  .merit__lists img {
    right: 0;
    left: calc(50% + 28vw);
    transform: translateX(-50%);
  }
}

.merit__item {
  background: #FFC107;
  border-radius: 10px;
  padding: 15px;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .merit__item {
    border-radius: 15px;
  }
}
.merit__item ul {
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .merit__item ul {
    margin-top: 10px;
  }
}

.merit-item__head {
  font-size: 1.8rem;
  display: flex;
  gap: 14px;
  align-items: center;
}

.merit-item__number {
  font-size: 5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  margin-top: -0.2em;
}

@media screen and (min-width: 768px) {
  .merit-item__title {
    font-size: 3rem;
  }
}

.merit__txt {
  padding-left: 11px;
  position: relative;
}
.merit__txt::before {
  position: absolute;
  content: "・";
  left: -3px;
}

.map {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .map {
    margin-top: 100px;
  }
}

.map__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .map__lists {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 45px;
         column-gap: 45px;
    margin-top: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .map__lists {
    grid-template-columns: repeat(6, 1fr);
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}

.map__item {
  text-align: center;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .map__item {
    max-width: none;
    width: 100%;
  }
}

.map-item__head {
  padding: 10px 13px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 1.8rem;
}
.map-item__head::before {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}
.map-item__head::after {
  content: "";
  position: absolute;
  bottom: 11px;
  right: 1px;
  width: 1.2rem;
  height: 1.2rem;
  background: url(../images/external_link.svg);
  background-size: contain;
}

.map__text {
  margin-top: 30px;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .map__text {
    font-size: 2.5rem;
  }
}

.shop__list {
  width: 100%;
  height: 150px;
  margin-top: 30px;
}
@media screen and (min-width: 900px) {
  .shop__list {
    height: 300px;
  }
}

.swiper {
  height: 100%;
}

.swiper-wrapper {
  height: 100%;
  transition-timing-function: linear;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.example {
  margin-top: 30px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .example {
    margin-top: 100px;
    padding-bottom: 60px;
  }
}

.example__contents {
  margin-top: 20px;
  margin-inline: auto;
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  width: 70%;
}
@media screen and (min-width: 768px) {
  .example__contents {
    margin-top: 40px;
    width: 100%;
    overflow-x: hidden;
  }
}

.example__img {
  width: 100%;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .example__img {
    width: auto;
    flex-shrink: 1;
  }
}

.process {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .process {
    margin-top: 100px;
  }
}

.process__txt-inner {
  width: 70%;
  margin: 0 auto;
  margin-top: 24px;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .process__txt-inner {
    font-size: 2rem;
  }
}
@media screen and (min-width: 900px) {
  .process__txt-inner {
    max-width: 1030px;
    width: 91.1111111111vw;
    text-align: left;
  }
}
@media screen and (min-width: 1200px) {
  .process__txt-inner {
    margin-top: 40px;
  }
}

.steps {
  margin-top: 32px;
  margin-inline: auto;
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 900px) {
  .steps {
    margin-top: 40px;
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }
}

.step {
  background: #F582AE;
  padding: 10px 15px;
  border-radius: 5px;
}
@media screen and (min-width: 900px) {
  .step {
    flex: 1;
    max-width: 190px;
    padding-block: 25px;
  }
}

.step__head {
  color: #fff;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.1em;
  font-size: 2rem;
}
@media screen and (min-width: 900px) {
  .step__head {
    font-size: 2.5rem;
  }
}

.step__body {
  margin-top: 7px;
  background: #fff;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .step__body {
    font-size: 1.8rem;
    margin-top: 12px;
    height: 160px;
  }
}
.step__body .light {
  font-weight: 400;
}

.qa {
  margin-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .qa {
    margin-top: 100px;
    padding-bottom: 100px;
  }
}

.qa__lists {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .qa__lists {
    margin-top: 40px;
  }
}

.qa__list {
  background: #F3FBFD;
  border-radius: 15px;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .qa__list {
    padding-block: 18px;
    padding-inline: 23px;
  }
}
.qa__list.is-open .qa__head::after {
  content: "▲";
}

.qa__head {
  font-weight: 700;
  display: flex;
  gap: 7px;
  font-size: 1.8rem;
  position: relative;
  padding-right: 30px;
}
.qa__head::after {
  content: "▼";
  position: absolute;
  color: #065EAB;
  top: 0px;
  right: 5px;
}
@media screen and (min-width: 768px) {
  .qa__head::after {
    right: 15px;
  }
}
@media screen and (min-width: 768px) {
  .qa__head {
    font-size: 2rem;
    padding-right: 70px;
  }
}

.qa__body {
  display: none;
  padding-top: 10px;
  font-size: 1.4rem;
  font-weight: 400;
  padding-right: 30px;
  padding-left: 20px;
}
.qa__body .red {
  font-weight: 500;
  color: #AB0606;
}
@media screen and (min-width: 768px) {
  .qa__body {
    font-size: 1.6rem;
    padding-right: 50px;
  }
}

.cta {
  padding-block: 30px;
  background-color: #F3FBFD;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cta {
    padding-block: 80px;
  }
}

.cta__title {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  .cta__title {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .cta__title {
    font-size: 3rem;
  }
}

.cta__btn {
  margin-top: 20px;
  font-size: 1.8rem;
  border-radius: 50px;
  padding-block: 10px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .cta__btn {
    margin-top: 24px;
    font-size: 3.5rem;
    padding-block: 30.5px;
  }
}

.contact {
  background: #F3FBFD;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.contact__form {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .contact__form {
    margin-top: 40px;
    margin-inline: auto;
    max-width: 980px;
  }
}

.contact__fields {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media screen and (min-width: 768px) {
  .form-field {
    display: flex;
    gap: 32px;
  }
}

.form-field__head {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .form-field__head {
    width: 217px;
    flex-shrink: 0;
    justify-content: space-between;
  }
}

.form-field__label {
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .form-field__label {
    font-size: 2rem;
  }
}

.form-field__tag {
  font-weight: 400;
  background: #002C83;
  color: #fff;
  font-size: 1.4rem;
  padding: 1px 3px;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .form-field__tag {
    font-size: 1.6rem;
    padding: 5px;
  }
}

.form-field__item {
  margin-top: 15px;
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .form-field__item {
    margin-top: 0;
  }
}
.form-field__item.select {
  position: relative;
}
.form-field__item.select::after {
  content: "▼";
  position: absolute;
  top: 15px;
  right: 20px;
}
@media screen and (min-width: 768px) {
  .form-field__item.select::after {
    right: 15px;
  }
}

.form-text {
  width: 100%;
  border-radius: 5px;
  background: #D9D9D9;
  padding: 15px;
  transition: border-color 0.3s, background-color 0.3s;
}
.form-text:hover, .form-text:focus {
  border-color: #002C83;
  background-color: #ffffff;
}

.form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  border-radius: 5px;
  background: #D9D9D9;
  font-weight: 700;
  padding: 15px;
  transition: border-color 0.3s, background-color 0.3s;
}
.form-select:hover, .form-select:focus {
  border-color: #002C83;
  background-color: #ffffff;
}

.form-textarea {
  width: 100%;
  height: 180px;
  border-radius: 5px;
  background: #D9D9D9;
  padding: 15px;
  transition: border-color 0.3s, background-color 0.3s;
}
.form-textarea:hover, .form-textarea:focus {
  border-color: #002C83;
  background-color: #ffffff;
}

.privacy_policy {
  margin-top: 50px;
}

.privacy_policy_content {
  margin-top: 10px;
  padding: 15px;
  height: 48vw;
  overflow-y: scroll;
  border: 1px solid #002C83;
  border-radius: 10px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .privacy_policy_content {
    height: 190px;
  }
}
.privacy_policy_content h4 {
  font-size: 18px;
}
.privacy_policy_content ol {
  list-style-position: inside;
}
.privacy_policy_content li {
  text-indent: -1em;
  padding-left: 1em;
}
.privacy_policy_content p {
  padding-left: 1em;
}

.privacy_policy_checkbox {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .privacy_policy_checkbox {
    margin-top: 20px;
  }
}

.form-checkbox {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .form-checkbox {
    font-size: 1.8rem;
  }
}

.contact__button {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .contact__button {
    margin-top: 20px;
  }
}
.contact__button .btn {
  width: 320px;
  height: 60px;
  font-weight: 900;
  margin: 0 auto;
  background-color: #D9D9D9;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .contact__button .btn {
    width: 420px;
    height: 70px;
    font-size: 2rem;
  }
}
.contact__button .btn.is-active {
  background-color: #F27F03;
  cursor: pointer;
  opacity: 1;
}
.contact__button .btn.is-active:hover {
  opacity: 0.75;
}
.contact__button .send__btn {
  background-color: #F27F03;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.contact__button .send__btn:hover {
  opacity: 0.75;
}

.contact__tel {
  text-align: center;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .contact__tel {
    margin-top: 50px;
  }
}

.contact-tel__text {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .contact-tel__text {
    margin-top: 20px;
  }
}
.contact-tel__text strong {
  font-size: 1.8rem;
  font-weight: 700;
}

.contact-tel__button {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .contact-tel__button {
    margin-top: 20px;
  }
}
.contact-tel__button .btn {
  width: 320px;
  height: 60px;
  font-weight: 900;
  margin: 0 auto;
  background-color: #F27F03;
}
@media screen and (min-width: 768px) {
  .contact-tel__button .btn {
    width: 420px;
    height: 70px;
    font-size: 2rem;
  }
}
.contact-tel__button .btn .number {
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .contact-tel__button .btn .number {
    font-size: 2.2rem;
  }
}
.contact-tel__button .btn img {
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 0.5em;
  margin-top: 0.15em;
}
@media screen and (min-width: 768px) {
  .contact-tel__button .btn img {
    width: 2rem;
    height: 2rem;
  }
}

.contact-tel__note {
  margin-top: 10px;
  font-weight: 700;
}

.copyright_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  color: #002C83;
}
@media screen and (min-width: 768px) {
  .copyright_inner {
    height: 80px;
  }
}
.copyright_inner small {
  text-decoration: underline;
}

.contact__confirm .contact__fields {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .contact__confirm .confirm-actions .contact__button {
    flex: 0 1 420px;
    width: 100%;
  }
  .contact__confirm .confirm-actions .contact__button .btn {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .contact__confirm .confirm-actions form {
    flex: 0 1 420px;
  }
}

.contact-confirm__text {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .contact-confirm__text {
    margin-top: 40px;
  }
}

.form__answer {
  width: 100%;
  border-radius: 5px;
  background: #fff;
  padding: 15px;
}

.confirm-actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .confirm-actions {
    margin-top: 40px;
    flex-direction: row;
  }
}
.confirm-actions .btn__back {
  background: #002C83;
}

.thanks {
  text-align: center;
}

.thanks__title {
  margin-top: 50px;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .thanks__title {
    margin-top: 100px;
    font-size: 2.5rem;
  }
}

.thanks__text {
  margin-top: 20px;
}

.thanks__button {
  margin-top: 50px;
  max-width: 320px;
  height: 50px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .thanks__button {
    margin-top: 70px;
  }
}
.thanks__button .btn {
  width: 100%;
  height: 100%;
}
/*# sourceMappingURL=base.css.map */