@charset "UTF-8";
:root {
  --color-main: #279800;
  --color-text: #000;
  --color-gold: #f5edc0;
  --color-brown: #330000;
  --color-green: #397c00;
  --color-blue: #3471b4;
  --color-darkblue: #18445f;
  --color-yellow: #eec14e;
  --color-lightgray: #b9b9b9;
  --color-gray: #929292;
  --color-bggray: #f2f2f2;
  --grad-black: linear-gradient(
    90deg,
    #111111 0%,
    #000111 20%,
    #333 40%,
    #333 60%,
    #000111 80%,
    #111111 100%
  );
  /*
  --grad-blue: linear-gradient(
    to right,
    rgba(219, 244, 244, 1) 0%,
    rgba(255, 255, 255, 1) 40%,
    rgba(255, 255, 255, 1) 60%,
    rgba(219, 244, 244, 1) 100%
  );
  */
  --grad-blue: linear-gradient(
    to right,
    color-mix(in srgb, #ebffff 100%, transparent) 0%,
    rgba(255, 255, 255, 1) 30%,
    rgba(255, 255, 255, 1) 70%,
    color-mix(in srgb, #ebffff 100%, transparent) 100%
  );
  --grad-gold: linear-gradient(to right, #f5edc0 0%, #ffffff 52%, #f5edc0 99%);
  --grad-button: linear-gradient(
    to bottom,
    #fae675 0%,
    #eec946 45%,
    #d9ae24 65%,
    #ddce7d 100%
  );
  --font-serif: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝",
    "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  --font-noto-sans-jp: "Noto Sans JP", sans-serif;
  --font-noto-serif: "Noto Serif JP", serif;
  /*
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  font-weight: 900;
  font-style: normal;
  */
}

/* rest */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* -----------------------------------------
body
--------------------------------------------*/
html {
  font-size: 62.5%;
  font-family: var(--font-noto-sans-jp);
  font-weight: 400;
  scroll-behavior: smooth;
}
@media screen and (min-width: 980px) {
  html {
    scroll-padding-top: 55px;
  }
}

#body_wrapper {
  position: relative;
  overflow: hidden;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* -----------------------------------------
common
--------------------------------------------*/
/* --- clearfix --- */
.cf:before,
.cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}

/* css sprite */
.s {
  background: url(../images/sprite@2x.png) no-repeat 0 0;
  background-size: 500px 500px;
  text-indent: 200%;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  border-style: none;
}

.sb::before,
.sa::after {
  content: "";
  background-image: url(../images/sprite@2x.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 500px 500px;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  border-style: none;
}

.nobi {
  /*
  margin-right: 5px;
  letter-spacing: -5px;
  */
  transform: scale(2, 1);
  transform-origin: top left;
  display: inline-block;
  margin-left: 0.5em;
  margin-right: 1em;
}

/* ----------------- 
reset
----------------- */
@media screen and (min-width: 640px) {
  .xs_only {
    display: none;
  }
}

.sm_only {
  display: none;
}
@media screen and (min-width: 640px) {
  .sm_only {
    display: inline;
  }
}

.md_only {
  display: none;
}
@media screen and (min-width: 768px) {
  .md_only {
    display: inline;
  }
}

.ts_only {
  display: block;
}
@media screen and (min-width: 980px) {
  .ts_only {
    display: none;
  }
}

.lg_only {
  display: none;
}
@media screen and (min-width: 980px) {
  .lg_only {
    display: inline;
  }
}

em {
  font-style: normal;
}

b {
  font-weight: 700;
  color: inherit;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

.img-resp {
  width: 100%;
  height: auto;
}

.svg-resp {
  width: 100%;
  height: 100%;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/* table */
.table_table table {
  width: 100%;
}
@media screen and (min-width: 640px) {
  .table_table th,
  .table_table td {
    text-align: center;
    font-size: 1.6rem;
  }
}

.table_dl {
  display: block;
}
.table_dl table {
  width: 100%;
}
.table_dl thead {
  display: none;
}
.table_dl tbody,
.table_dl tr {
  display: block;
}
.table_dl th {
  padding: 0 0 0.4em 0;
  display: block;
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: left;
  font-weight: normal;
}
.table_dl td {
  padding: 0 0 1em 0;
  display: block;
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: left;
}
@media screen and (min-width: 640px) {
  .table_dl table {
    display: table;
    width: 100%;
  }
  .table_dl thead,
  .table_dl tbody {
    display: table-row-group;
  }
  .table_dl tr {
    display: table-row;
  }
  .table_dl th {
    padding: 15px 0 10px 10px;
    display: table-cell;
    vertical-align: top;
    text-align: left;
    width: 30%;
  }
  .table_dl td {
    padding: 15px 10px 10px 10px;
    display: table-cell;
    vertical-align: top;
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .table_dl {
    margin: 0 auto;
  }
  .table_dl th,
  .table_dl td {
    font-size: 1.4rem;
  }
}

#bg_black {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
}

@media screen and (min-width: 768px) {
  .sm_only {
    display: none;
  }
}

body {
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  color: var(--color-text);
  background-color: #111;
  line-height: 1.8;
  letter-spacing: 0.02em;
  -webkit-text-size-adjust: 100%;
  font-family: var(--font-noto-sans-jp);
  font-weight: 500;
  position: relative;
}

.header {
  position: fixed;
  width: 100%;
  height: 50px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background-color: #fff;
}
.header__logo {
  margin: 0 auto;
  width: 300px;
  height: 20px;
  opacity: 1;
  transition: opacity 500ms;
  position: absolute;
  top: 10px;
  left: 50%;
  translate: -50% 0;
  z-index: 3;
}
.header__content {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  background-color: #eee;
  translate: 0 200px;
  transition: transform 800ms, opacity 300ms, visibility 300ms, translate 300ms;
  transition-timing-function: cubic-bezier(0.65, 0.06, 0.36, 0.95);
}
.header__content--open {
  translate: 0 0;
}
.header__menu__list-main {
  display: grid;
  margin: 0 auto;
  padding: 2.0408163265vw 6.1224489796vw;
  gap: 0;
  width: min(100%, 640px);
  gap: 4.0816326531vw;
  grid-template-columns: repeat(3, 1fr);
  box-sizing: border-box;
}
.header__menu__list-main__link {
  display: block;
}
@media screen and (min-width: 980px) {
  .header {
    padding: 0;
    transition: background-color 300ms;
    height: 60px;
    width: 100%;
  }
  .header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    height: 60px;
    max-width: 1220px;
  }
  .header__logo {
    margin: 0 auto 0 20px;
    position: static;
    translate: none;
    width: 320px;
    height: auto;
  }
  .header__content {
    width: auto;
    height: 100%;
    align-items: center;
    background: none;
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background-color: transparent;
    translate: 0 0;
  }
  .header__menu {
    display: flex;
    justify-content: flex-end;
    height: 100%;
    padding: 0 0;
  }
  .header__menu__list-main {
    display: flex;
    padding: 0 20px;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    width: 780px;
    gap: 20px;
  }
  .header__menu__list-main__item {
    margin: 0;
    padding: 0;
  }
  .header__copyright {
    display: none;
  }
}
@media screen and (min-width: 1500px) {
  .header__logo {
    top: 35px;
    left: 100px;
    width: 270px;
  }
}

.menu-sw {
  margin: 0;
  position: fixed;
  top: 15px;
  right: 25px;
  width: 24px;
  height: 24px;
  z-index: 20;
  overflow: hidden;
}
.menu-sw button {
  padding: 0;
  display: block;
  border-style: none;
  border-radius: 0;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  background-color: transparent;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: background-color 500ms;
  overflow: hidden;
  cursor: pointer;
}
.menu-sw span {
  position: absolute;
  width: 100%;
  height: 3px;
  top: 10px;
  left: 0;
}
.menu-sw span::before, .menu-sw span::after,
.menu-sw span i {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0%;
  width: 100%;
  height: 3px;
  background-color: #fff;
  margin: -1px 0 0 0;
  transition: background-color 500ms, transform 500ms;
  border-radius: 20px;
}
.menu-sw span::before {
  transform: translate(0, -9px);
  transition: transform 500ms;
}
.menu-sw span::after {
  transform: translate(0, 9px);
  transition: transform 500ms;
}
.menu-sw--open span::before {
  transform: translate(0, 0) rotate(45deg);
}
.menu-sw--open span i {
  transform: rotate(-45deg);
}
.menu-sw--open span::after {
  transform: translate(0, 0) rotate(45deg);
}
@media screen and (min-width: 980px) {
  .menu-sw {
    display: none;
  }
}

.float-contact {
  display: grid;
  padding: 10px 2.6666666667vw;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.6666666667vw;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  background-color: #fff;
}
.float-contact__link {
  display: flex;
  padding: 0 10px 5px 10px;
  align-items: center;
  border-radius: 15px;
  overflow: hidden;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-size: 14px;
  line-height: 1;
}
.float-contact__link--line {
  background-color: #00b900;
  border-bottom: 5px solid #008600;
}
.float-contact__link--contact {
  background-color: #03285c;
  border-bottom: 5px solid #01132b;
}
.float-contact__icon {
  display: block;
  margin-right: 15px;
  width: 36px;
  height: 36px;
}
@media screen and (min-width: 768px) {
  .float-contact__link {
    font-size: 16px;
  }
  .float-contact__text {
    flex: 1;
    padding-right: 60px;
    text-align: center;
  }
}
@media screen and (min-width: 980px) {
  .float-contact {
    display: none;
  }
}

.over-stage {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  z-index: 40;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.float-banner {
  margin: 0 auto;
  width: 90.6666666667vw;
  max-width: 540px;
  position: fixed;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
.float-banner__close {
  display: block;
  position: absolute;
  right: 0px;
  top: -60px;
  width: 50px;
  height: 50px;
  border-style: none;
  background-color: transparent;
  cursor: pointer;
}
.float-banner__close::before, .float-banner__close::after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  rotate: -45deg;
}
.float-banner__close::after {
  rotate: 45deg;
}
@media screen and (min-width: 980px) {
  .float-banner {
    width: 540px;
    max-width: 70vh;
  }
}

.footer {
  margin-top: 0;
  padding: 20px 0 160px 0;
  background-color: #fff;
}
.footer__logo {
  margin: 0 auto 15px auto;
  width: 260px;
}
.footer__tradelaw {
  margin: 0 auto 15px auto;
  text-align: center;
  font-size: 12px;
}
.footer__tradelaw a {
  color: var(--color-text);
}
.footer__copyright {
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 50px 0 160px 0;
  }
  .footer__copyright {
    font-size: 14px;
  }
  .footer__banner-contact {
    width: 14.6666666667vw;
    height: 14.6666666667vw;
    right: 5.2083333333vw;
  }
  .footer__banner-contact--on {
    bottom: 5.2083333333vw;
  }
  .footer__banner-contact__text {
    transition: scale var(--time-transition);
  }
  .footer__banner-contact__mark {
    transition: scale var(--time-transition);
  }
  .footer__banner-contact:hover .footer__banner-contact__text {
    scale: 1.05;
  }
  .footer__banner-contact:hover .footer__banner-contact__mark {
    scale: 0.95;
  }
}
@media screen and (min-width: 980px) {
  .footer {
    margin-top: 0;
    padding: 20px 0;
  }
}

.illust, .about__illust {
  margin: 30px auto;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .illust, .about__illust {
    margin: 6.1224489796vw auto;
  }
}
@media screen and (min-width: 980px) {
  .illust, .about__illust {
    margin: 60px auto;
  }
}

.para, .contact-fin__para, .contact__message, .flow__list__comment, .price__para, .comparing__para, .ex__risk__para, .ex__para, .detail__list__para, .about__para, .para-note {
  margin: 0 0 1.5em 0;
  line-height: 1.8;
  font-size: 16px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .para, .contact-fin__para, .contact__message, .flow__list__comment, .price__para, .comparing__para, .ex__risk__para, .ex__para, .detail__list__para, .about__para, .para-note {
    font-size: 3.6734693878vw;
  }
}
@media screen and (min-width: 980px) {
  .para, .contact-fin__para, .contact__message, .flow__list__comment, .price__para, .comparing__para, .ex__risk__para, .ex__para, .detail__list__para, .about__para, .para-note {
    font-size: 36px;
  }
}

.para-note {
  font-size: 1rem;
}
@media screen and (min-width: 980px) {
  .para-note {
    font-size: 1.2rem;
  }
}

.marker {
  background: linear-gradient(transparent 50%, #f8ff72 50%);
}
.marker--red {
  font-weight: 700;
  background: linear-gradient(transparent 50%, #ff3333 50%);
}

.color--white {
  color: #fff;
}
.color--black {
  color: var(--color-text);
}

.bold {
  font-weight: 700;
}
.bold--blue {
  color: #0071b7;
}
.bold--lightblue {
  color: #22fff0;
}
.bold--red {
  color: #f00;
}
.bold--gold {
  color: #600;
}
.bold--yellow {
  color: var(--color-yellow);
}

em {
  font-weight: 700;
  font-style: normal;
}

.nobashi {
  margin-left: 0em;
  transform: scale(2, 1);
  transform-origin: left center;
  display: inline-block;
  width: 2em;
}

/* main */
.main {
  padding-top: 50px;
  container-type: inline-size;
}
@media screen and (min-width: 980px) {
  .main {
    padding-top: 60px;
  }
}

/* section */
.fx {
  opacity: 0;
  translate: 0 50px;
  transition: opacity 500ms, translate 500ms;
}
.fx--open {
  opacity: 1;
  translate: 0 0;
}

@media screen and (min-width: 980px) {
  .wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
  }
  .wrapper--narrow {
    max-width: 960px;
  }
}

.unit {
  padding: 10.6666666667vw 5.3333333333vw;
  position: relative;
  overflow: hidden;
  background-image: url(../images/bg_camo.webp);
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .unit {
    padding: 7.1614583333vw 5.2083333333vw;
  }
}
@media screen and (min-width: 980px) {
  .unit {
    margin: 0 auto;
    padding: 100px 60px;
    width: 980px;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 768px) {
  .content-block {
    margin: 0 5.2083333333vw;
  }
}
@media screen and (min-width: 980px) {
  .content-block {
    margin: 0 auto;
  }
}

/* ----------------- 
titletitle
----------------- */
.title-mid {
  margin: 0 auto 20px auto;
  padding: 0.4em 1.6em;
  line-height: 1.4;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgba(0, 0, 0, 0.6);
  position: relative;
  text-align: center;
}
.title-mid::after {
  display: block;
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  position: absolute;
  border: 1px solid var(--color-gold);
  left: 4px;
  top: 4px;
}
@media screen and (min-width: 768px) {
  .title-mid {
    margin: 0 auto 30px auto;
    font-size: 4.0816326531vw;
    text-align: center;
  }
}
@media screen and (min-width: 980px) {
  .title-mid {
    margin: 0 auto 40px auto;
    font-size: 40px;
  }
}

.title-bold {
  margin-bottom: 4px;
  font-size: 19px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .title-bold {
    font-size: 4.8979591837vw;
  }
}
@media screen and (min-width: 980px) {
  .title-bold {
    font-size: 48px;
  }
}

.lead-gold {
  margin: 0.6em auto;
  line-height: 1.4;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 27px;
  text-align: center;
  font-weight: 700;
  font-family: serif;
  background: linear-gradient(180deg, #eec14e 0%, #fbf2a4 50%, #b17825 100%);
  background: -webkit-linear-gradient(180deg, #eec14e 0%, #fbf2a4 50%, #b17825 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 1px solid #fbf2a4;
}
@media screen and (min-width: 768px) {
  .lead-gold {
    font-size: 8.1632653061vw;
  }
}
@media screen and (min-width: 980px) {
  .lead-gold {
    font-size: 80px;
  }
}

/* ----------------- 
linklink
----------------- */
.banner-campaign {
  margin: 25px 4vw;
}
@media screen and (min-width: 980px) {
  .banner-campaign {
    margin: 25px auto;
    width: 64vw;
  }
}
@media screen and (min-width: 1500px) {
  .banner-campaign {
    margin: 25px auto;
    width: 960px;
  }
}

.cta-campaign__item {
  text-align: center;
}
.cta-campaign__item:not(:last-of-type) {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .cta-campaign__item:not(:last-of-type) {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 980px) {
  .cta-campaign img {
    width: 820px;
  }
}

.cta-contact {
  padding-left: 0;
  padding-right: 0;
  position: relative;
}
.cta-contact__title {
  padding-top: 20px;
  text-align: center;
  line-height: 1.4;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  position: relative;
}
.cta-contact__title::before {
  display: block;
  content: "";
  background-image: url(../images/cta-contact_bar.png);
  background-size: 375px 4px;
  width: 100%;
  height: 4px;
  position: absolute;
  top: 2px;
  left: 50%;
  right: 0;
  translate: -50% 0;
  z-index: 2;
}
.cta-contact__para-button {
  margin: 5px 0;
  padding: 0 2.6666666667vw 15px 2.6666666667vw;
  position: relative;
}
.cta-contact__para-button::after {
  display: block;
  content: "";
  background-image: url(../images/cta-contact_bar.png);
  background-size: 375px 4px;
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: 0vw;
  left: 50%;
  right: 0;
  translate: -50% 0;
  z-index: 2;
}
.cta-contact__links {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 5.3333333333vw;
  margin: 0 5.3333333333vw;
}
.cta-contact__links__item:nth-of-type(1) .cta-contact__links__title__text {
  color: #084d88;
}
.cta-contact__links__item:nth-of-type(2) .cta-contact__links__title__text {
  color: #05c755;
}
.cta-contact__links__link {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  color: var(--color-text);
  text-decoration: none;
}
.cta-contact__links__title {
  display: block;
  width: 36px;
  line-height: 1.2;
  font-weight: 700;
}
.cta-contact__links__title__text {
  display: none;
}
.cta-contact__links__content {
  color: var(--color-text);
  font-size: 20px;
  line-height: 1;
  color: #084d88;
  font-weight: 700;
}
.cta-contact__links__content__note {
  font-size: 10px;
}
.cta-contact__links__content__line {
  width: 60px;
}
@media screen and (min-width: 768px) {
  .cta-contact__title {
    font-size: 24px;
  }
  .cta-contact__title::before {
    background-image: url(../images/cta-contact_bar_lg.png);
    background-size: 100% auto;
  }
  .cta-contact__para-button {
    margin: 10px auto;
    text-align: center;
  }
  .cta-contact__para-button::after {
    background-image: url(../images/cta-contact_bar_lg.png);
    background-size: 100% auto;
  }
  .cta-contact__para-button img {
    width: 70.3125vw;
    max-width: 540px;
  }
  .cta-contact__links {
    align-content: center;
    gap: 30px;
    margin: 0 auto;
    width: 420px;
  }
  .cta-contact__links__link {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    text-decoration: none;
  }
  .cta-contact__links__title {
    display: block;
    width: 36px;
  }
  .cta-contact__links__content {
    font-size: 24px;
    line-height: 1;
  }
  .cta-contact__links__content__note {
    font-size: 10px;
  }
  .cta-contact__links__content__line {
    width: 60px;
  }
}
@media screen and (min-width: 980px) {
  .cta-contact {
    padding: 55px 0;
  }
  .cta-contact__title {
    padding-top: 40px;
    font-size: 32px;
  }
  .cta-contact__para-button {
    margin: 10px auto;
  }
  .cta-contact__links {
    align-content: center;
    gap: 30px;
    margin: 0 auto;
    width: 540px;
  }
  .cta-contact__links__link {
    gap: 15px;
  }
  .cta-contact__links__title {
    width: 50px;
  }
  .cta-contact__links__title svg {
    width: 36px;
  }
  .cta-contact__links__title__text {
    display: block;
    margin-top: 5px;
    color: var(--color-gold);
    text-align: center;
  }
  .cta-contact__links__content {
    font-size: 32px;
  }
  .cta-contact__links__content__note {
    margin-top: 10px;
    display: block;
    font-size: 14px;
    text-align: center;
  }
  .cta-contact__links__content__line {
    width: 60px;
  }
}

/* for inline */
input[type=text], input[type=email], input[type=tel] {
  padding: 0.4em 0.8em;
  line-height: 1;
  font-size: 16px;
  color: var(--color-text);
  border: 1px solid #666;
  background-color: #fff;
  border-radius: 5px;
  box-sizing: border-box;
  width: 100%;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder {
  color: #ccc;
}
input[type=text]::placeholder, input[type=email]::placeholder, input[type=tel]::placeholder {
  color: #ccc;
}
input[type=date] {
  padding: 0.4em;
  line-height: 1;
  font-size: 14px;
  color: var(--color-text);
  border: 1px solid var(--color-text);
  border: 1px solid #666;
  border-radius: 5px;
  box-sizing: border-box;
  width: 100%;
}
input[type=date]::-moz-placeholder {
  color: #ccc;
}
input[type=date]::placeholder {
  color: #ccc;
}
@media screen and (min-width: 980px) {
  input[type=text], input[type=email], input[type=tel], input[type=date] {
    padding: 0.6em 1em;
    font-size: 13px;
  }
}

textarea {
  padding: 0.8em;
  line-height: 1.4;
  font-size: 16px;
  border: 1px solid #666;
  border-radius: 5px;
  box-sizing: border-box;
  width: 100%;
}
textarea::-moz-placeholder {
  color: #ccc;
}
textarea::placeholder {
  color: #ccc;
}
@media screen and (min-width: 980px) {
  textarea {
    font-size: 12px;
  }
}

.radio {
  display: flex;
  justify-content: flex-start;
}
.radio li {
  margin-right: 10px;
}

.select {
  display: inline-flex;
  margin: 10px 0 0 0;
  align-items: center;
  position: relative;
}
.select::after {
  position: absolute;
  right: 10px;
  width: 8px;
  height: 7px;
  background-color: #000;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}
.select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  min-width: 60px;
  height: 2.8em;
  padding: 0.4em calc(0.8em + 20px) 0.4em 1em;
  border: 1px solid #666;
  border-radius: 3px;
  background-color: #fff;
  color: #333333;
  font-size: 12px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .select {
    margin-top: 0;
  }
  .select::after {
    right: 20px;
  }
  .select select {
    padding: 0.8em calc(0.8em + 30px) 0.8em 1em;
  }
}
.button {
  display: block;
  padding: 1em 0 0.8em 0;
  border-style: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 5px;
  width: 100%;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  font-size: 14px;
  background-color: #ccc;
  color: #000;
  font-family: var(--font-noto-serif);
}
.button--submit {
  background: var(--grad-button);
}
@media screen and (min-width: 768px) {
  .button {
    min-width: 30%;
  }
}

.open {
  margin: 0;
  padding: 0;
}
.open__image {
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .open {
    background-image: url(../images/top_open_bg.webp);
  }
  .open__image {
    display: block;
    margin: 0 auto;
    width: 100%;
  }
}
@media screen and (min-width: 1500px) {
  .open__image {
    width: 1336px;
  }
}

.top {
  position: relative;
}
.top__flg {
  position: absolute;
  z-index: 10;
  width: 10px;
  height: 10px;
  top: 0;
  left: 0;
}
@media screen and (min-width: 980px) {
  .top {
    margin: 0 auto;
    width: 980px;
  }
}

.news {
  margin: 30px 5.3333333333vw;
  padding: 30px 5.3333333333vw;
  border: 5px solid #fff;
  border-radius: 10px;
}
.news__title {
  margin-bottom: 0.8em;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  font-size: clamp(16px, 7.4666666667vw, 28px);
}
.news__para {
  line-height: 1.4;
  text-align: center;
  line-height: 1.8;
  font-size: clamp(14px, 6.4vw, 24px);
  color: #fff;
}
@media screen and (min-width: 980px) {
  .news {
    margin: 60px auto;
    padding: 30px auto;
    width: 900px;
  }
}

@media screen and (min-width: 980px) {
  .problem {
    margin: 0 auto;
    width: 980px;
  }
}

.promotion {
  padding: 20px 5.3333333333vw;
  background-color: #fff;
}
@media screen and (min-width: 980px) {
  .promotion {
    padding: 40px 0;
    margin: 0 auto;
    max-width: 1240px;
    text-align: center;
  }
}

.about__para--white {
  color: #fff;
}
.about__title {
  margin: 0 0 20px 0;
}
.about__illust {
  background-color: transparent;
}
.about__row {
  margin-top: 20px;
  display: grid;
  grid-template-rows: auto auto;
  gap: 10px;
}
.about__row:nth-of-type(1) {
  margin-top: 40px;
}
.about__title-mid {
  grid-row: 1;
  padding: 15px 0 15px 45px;
  background-image: url(../images/about_bg.webp);
  background-size: 600px 200px;
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  position: relative;
}
.about__title-mid--gold {
  padding: 15px 0;
  background-color: transparent;
  background-image: none;
  border: 1px solid #f8ed9f;
  text-align: center;
  font-weight: 700;
  background: linear-gradient(90deg, #eec14e, #fbf2a4 50%, #b17825);
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
.about__title-mid__mark {
  display: block;
  width: 26px;
  height: 28px;
  position: absolute;
  left: 10px;
  top: 50%;
  translate: 0 -50%;
}
.about__photo {
  grid-row: 2;
}
.about__photo img {
  border-radius: 10px;
  overflow: hidden;
}
.about__comment {
  grid-row: 3;
}
.about__nac-plant {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .about .content-block {
    margin: 60px auto;
    padding: 0 100px 50px 100px;
    width: 810px;
    box-sizing: border-box;
    background-color: color-mix(in srgb, #000 80%, transparent);
  }
  .about__title {
    margin: 0 auto 60px auto;
  }
  .about__title-mid {
    margin-bottom: 1.5306122449vw;
    grid-column: 1/3;
    grid-row: 1;
    font-size: 4.8979591837vw;
  }
  .about__photo {
    margin-top: 20px;
    grid-row: 2;
    grid-column: 1;
  }
  .about__comment {
    grid-row: 2;
    grid-column: 2;
  }
  .about__row {
    gap: 0 4.0816326531vw;
  }
  .about__row:nth-of-type(2n) .about__title-mid {
    grid-column: 1/3;
    grid-row: 1;
  }
  .about__row:nth-of-type(2n) .about__photo {
    grid-row: 2;
    grid-column: 1;
  }
  .about__row:nth-of-type(2n) .about__comment {
    grid-row: 2;
    grid-column: 2;
  }
  .about__wrapper {
    padding-top: 80px;
  }
  .about__nac-plant {
    margin: 0 auto;
    max-width: 980px;
  }
}
@media screen and (min-width: 980px) {
  .about__title-mid {
    padding: 20px 0;
    font-size: 48px;
  }
  .about__row {
    gap: 0 40px;
  }
}

.reasons {
  padding-bottom: 0;
}
.reasons__title {
  margin: 5px 6.6666666667vw 0 6.6666666667vw;
  padding: 10px 0;
  text-align: center;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
  background-color: var(--color-blue);
  position: relative;
}
.reasons__title::before, .reasons__title::after {
  display: block;
  content: "";
  width: 100%;
  height: 5px;
  background-color: #1e5897;
  position: absolute;
  top: -7px;
  left: 0;
}
.reasons__title::after {
  top: auto;
  bottom: -7px;
}
.reasons__features {
  counter-reset: list-num;
  align-items: stretch;
}
.reasons__features__wrapper {
  padding: 15px 0;
  box-sizing: border-box;
}
.reasons__features__item {
  counter-increment: list-num;
  border: 1px solid var(--color-blue);
  border-radius: 10px;
  margin-bottom: 25px;
  box-sizing: border-box;
  height: auto;
  background-color: #fff;
}
.reasons__features__next, .reasons__features__prev {
  top: 35%;
}
.reasons__features__content {
  padding: 20px 20px;
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}
.reasons__features__title {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}
.reasons__features__title__num {
  display: block;
  margin: 0 auto 10px auto;
  width: 40px;
  height: 40px;
  text-align: center;
  font-weight: 400;
  font-size: 26px;
  line-height: 40px;
  color: #fff;
  background-color: #0071b7;
  border-radius: 5px;
}
.reasons__features__para {
  line-height: 1.7;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
}
.reasons__features__para--bold {
  text-align: center;
  margin: 0.8em 0;
  font-weight: 700;
  font-size: 16px;
}
.reasons__features__photo {
  margin-bottom: 15px;
}
.reasons__features__campaign {
  margin-top: 15px;
  font-size: 14px;
  text-align: left;
  color: var(--color-green);
  font-weight: 700;
}
@media screen and (min-width: 980px) {
  .reasons {
    padding-left: 0;
    padding-right: 0;
  }
  .reasons__title {
    margin-left: auto;
    margin-right: auto;
    padding-right: 40px;
    padding-left: 40px;
    font-size: 40px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .reasons__features {
    width: 100%;
  }
  .reasons__features__wrapper {
    margin: 55px auto 15px auto;
  }
  .reasons__features__next {
    right: 50% !important;
    translate: 380px 0 !important;
  }
  .reasons__features__prev {
    left: 50% !important;
    translate: -380px 0 !important;
  }
  .reasons__features__item {
    width: 1000px;
  }
  .reasons__features__content {
    padding: 40px 80px;
  }
  .reasons__features__content::before, .reasons__features__content::after {
    width: 60px;
    height: 60px;
    left: 80px;
  }
  .reasons__features__title {
    margin: 0 auto 10px auto;
    padding: 0 0 20px 0;
    font-size: 48px;
    line-height: 80px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .reasons__features__title::before {
    font-size: 40px;
    width: 80px;
    height: 80px;
    line-height: 80px;
  }
  .reasons__features__para {
    line-height: 1.8;
    font-size: 24px;
    font-weight: 700;
  }
  .reasons__features__para--bold {
    font-size: 18px;
  }
  .reasons__features__photo {
    padding-left: 30px;
  }
  .reasons__features__campaign {
    padding-top: 15px;
    font-size: 36px;
    text-align: center;
  }
}

.detail__list {
  margin: 0;
}
.detail__list__item {
  padding: 20px 15px;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
}
.detail__list__item:not(:last-of-type) {
  margin-bottom: 30px;
}
.detail__list__title {
  margin: 0 0 20px 0;
  padding: 10px 0;
  padding: 10px;
  text-align: center;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(to right, rgb(0, 9, 69) 0%, rgb(19, 89, 181) 43%, rgb(19, 89, 181) 62%, rgb(0, 9, 69) 100%);
  position: relative;
  font-family: serif;
}
.detail__list__para {
  color: var(--color-text);
  margin-left: 10px;
  margin-right: 10px;
  line-height: 1.8;
}
.detail__list__para:not(:last-of-type) {
  margin-bottom: 1em;
}
.detail__photo--1 {
  margin: 0 auto 20px auto;
  width: 42.6666666667vw;
}
.detail__photo--2 {
  margin: 20px auto;
  width: 74.6666666667vw;
}
.detail__photo--3 {
  margin: 20px auto;
  width: 42.6666666667vw;
}
@media screen and (min-width: 768px) {
  .detail__photo--1 {
    width: 100%;
  }
  .detail__photo--2 {
    margin: 20px auto;
    width: 100%;
  }
  .detail__photo--3 {
    grid-column: 1;
    grid-row: 1;
    margin: 0 auto;
    width: 100%;
  }
  .detail__list__item {
    padding: 30px;
  }
  .detail__list__item:not(:last-of-type) {
    margin-bottom: 50px;
  }
  .detail__list__title {
    margin-bottom: 30px;
    padding: 20px;
    text-align: center;
    font-size: 22px;
  }
  .detail__list__para--center {
    text-align: center;
  }
  .detail__qfu {
    display: grid;
    gap: 50px;
  }
  .detail__qfu__text {
    grid-column: 2;
  }
}
@media screen and (min-width: 980px) {
  .detail__list {
    margin: 0 auto;
  }
  .detail__list__item {
    padding: 40px;
  }
  .detail__list__title {
    margin: 0 0 30px 0;
    font-size: 32px;
  }
}

.ex__para--note {
  margin-top: -0.5em;
  font-size: 10px;
}
.ex__list__wrapper {
  margin: 0 5.3333333333vw;
  padding: 20px;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.ex__list__item {
  padding: 20px 40px;
  box-sizing: border-box;
}
.ex__list__title {
  margin-bottom: 20px;
  padding: 15px;
  line-height: 1.4;
  font-weight: 400;
  font-size: 18px;
  color: var(--color-text);
  border: 2px solid var(--color-gold);
  background: var(--grad-gold);
}
.ex__list__para {
  line-height: 1.8;
  font-size: 14px;
}
.ex__list__para:not(:last-of-type) {
  margin-bottom: 1em;
}
.ex__list dl {
  display: grid;
  margin-top: 10px;
  grid-template-columns: auto auto;
  font-size: 10px;
  border: 1px solid #deb42e;
  line-height: 1.4;
}
.ex__list dt {
  padding: 10px;
  background: #fef9e3;
}
.ex__list dt:nth-of-type(n + 2) {
  border-top: 1px solid #deb42e;
}
.ex__list dd {
  padding: 10px;
}
.ex__list dd:nth-of-type(n + 2) {
  border-top: 1px solid #deb42e;
}
.ex__risk {
  padding: 20px;
  background-color: #fff;
  margin-top: 30px;
}
.ex__risk__title {
  margin-bottom: 0.4em;
  font-family: sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 20px;
}
.ex__risk__para {
  margin-bottom: 0.2em;
  color: var(--color-text);
}
@media screen and (min-width: 768px) {
  .ex__para {
    text-align: center;
  }
  .ex__para--note {
    margin-top: -0.5em;
    margin-bottom: 1em;
    font-size: 12px;
  }
  .ex__list__wrapper {
    margin: 0 5.2083333333vw;
    padding: 20px;
  }
  .ex__list dl {
    margin: 10px 0;
    font-size: 2.2222222222vw;
  }
  .ex__risk {
    padding: 5.5555555556vw;
  }
  .ex__risk__title {
    margin-bottom: 0.5em;
    font-size: 4.4444444444vw;
  }
}
@media screen and (min-width: 980px) {
  .ex {
    padding-bottom: 10px;
  }
  .ex__list__wrapper {
    margin: 40px auto 0 auto;
    padding: 40px 80px;
  }
  .ex__list__item {
    padding: 40px 80px;
    box-sizing: border-box;
  }
  .ex__list dl {
    margin: 10px 0;
    font-size: 12px;
    grid-template-columns: auto auto auto auto;
  }
  .ex__list dt {
    text-align: center;
  }
  .ex__list dt:nth-of-type(2) {
    border-style: none;
  }
  .ex__list dd {
    text-align: center;
  }
  .ex__list dd:nth-of-type(2) {
    border-style: none;
  }
  .ex__risk {
    margin: 60px auto;
  }
  .ex__risk__title {
    font-size: 48px;
  }
}

.plant-flow__content {
  padding: 5.3333333333vw;
  background-color: #fff;
}
.plant-flow__title {
  font-size: 21px;
  margin-bottom: 3px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .plant-flow__title {
    font-size: 4.4444444444vw;
  }
}
@media screen and (min-width: 980px) {
  .plant-flow__title {
    font-size: 48px;
  }
}

.comparing {
  background-color: #fff;
}
.comparing__table {
  margin: 0 0 0 0;
  overflow-x: scroll;
}
.comparing__table table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}
.comparing__table thead th {
  padding: 5px 10px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.4;
  font-size: 12px;
  color: var(--color-text);
  background-color: #fff;
  border: 1px solid #fff;
  width: 21.3333333333vw;
  font-weight: 400;
}
.comparing__table tbody th {
  padding: 5px 10px;
  line-height: 1.5;
  font-size: 10px;
  border: 1px solid #fff;
  text-align: left;
  color: #fff;
}
.comparing__table tbody td {
  padding: 5px 10px;
  line-height: 1.5;
  font-size: 24px;
  border: 1px solid #fff;
  text-align: center;
  color: #fff;
}
.comparing__table__bold {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .comparing__table {
    margin: 0 5.3333333333vw;
    overflow-x: visible;
  }
  .comparing__table table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
  }
  .comparing__table thead th {
    padding: 5px 10px;
    font-size: 12px;
    width: auto;
    text-align: center;
  }
  .comparing__table tbody th {
    padding: 5px 10px;
    font-size: 10px;
    width: 15%;
  }
  .comparing__table tbody td {
    padding: 5px 10px;
    font-size: 32px;
    width: 17%;
  }
  .comparing__table__bold {
    font-weight: 700;
    color: var(--color-brown);
  }
}
@media screen and (min-width: 980px) {
  .comparing__table {
    margin: 0 auto;
  }
  .comparing__table thead th {
    padding: 15px 10px;
    font-size: 16px;
  }
  .comparing__table tbody th {
    padding: 15px 10px;
    font-size: 14px;
    text-align: center;
  }
  .comparing__table tbody td {
    padding: 15px 10px;
    text-align: center;
  }
  .comparing__table__bold {
    font-weight: 700;
  }
}

.price__para--note {
  text-align: right;
}
.price__unit {
  font-size: 10px;
}
.price__table {
  margin: 0 0 20px 0;
}
.price__table table {
  width: 100%;
}
.price__table tr {
  border: 2px solid #fff;
}
.price__table thead th {
  padding: 10px;
  background-color: #fdf9e3;
  font-weight: 400;
  color: #000;
  font-size: 11px;
  text-align: right;
}
.price__table tbody th {
  padding: 10px 5px;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
  font-size: 11px;
  background-color: #fff;
  vertical-align: middle;
}
.price__table tbody td {
  padding: 10px 5px;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
  font-size: 11px;
  background-color: #fff;
  color: #900;
  vertical-align: middle;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .price__para {
    text-align: center;
  }
  .price__table {
    margin: 0 0 20px 0;
  }
  .price__table thead th {
    padding: 10px 20px 10px 0;
    font-size: 14px;
  }
  .price__table tbody th {
    padding: 10px;
    font-size: 14px;
    text-align: left;
  }
  .price__table tbody td {
    padding: 10px;
    font-size: 14px;
  }
  .price__support {
    margin: 0 auto;
    max-width: 640px;
  }
}
@media screen and (min-width: 980px) {
  .price__para--last {
    margin-bottom: 40px;
  }
  .price__table {
    margin: 0 auto 30px auto;
  }
  .price__table thead th {
    padding: 15px 30px;
    font-size: 20px;
    text-align: center;
  }
  .price__table tbody th {
    padding: 15px 0 15px 30px;
    font-size: 26px;
  }
  .price__table tbody td {
    padding: 15px 30px;
    font-size: 24px;
  }
  .price__unit {
    font-size: 16px;
  }
}

.flow__list {
  margin: 0 0;
  counter-reset: list-num;
}
.flow__list__item {
  counter-increment: list-num;
}
.flow__list__item:not(:last-of-type) {
  margin-bottom: 30px;
}
.flow__list__photo {
  margin-bottom: 15px;
}
.flow__list__photo img {
  overflow: hidden;
  border-radius: 10px;
}
.flow__list__title {
  margin-bottom: 10px;
  padding-left: 55px;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  color: #fff;
}
.flow__list__title::before, .flow__list__title::after {
  display: block;
  position: absolute;
  left: 10px;
  top: 50%;
  width: 30px;
  height: 30px;
}
.flow__list__title::before {
  content: "";
  background: linear-gradient(0, #fae675 0%, #ddbd4c 37%, #ddbd4c 70%, #fae675 100%);
  rotate: -45deg;
  translate: 0 -50%;
}
.flow__list__title::after {
  content: counter(list-num);
  text-align: center;
  font-weight: 400;
  font-family: var(--font-noto-serif);
  font-size: 18px;
  line-height: 30px;
  text-shadow: 1px 1px 1px white;
  translate: 0 -50%;
  color: var(--color-text);
}
.flow__list__comment {
  margin-left: 2.6666666667vw;
  margin-right: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .flow__list__item {
    display: grid;
    grid-template-columns: 55% 45%;
    grid-template-rows: 60px auto;
  }
  .flow__list__item:not(:last-of-type) {
    margin-bottom: 40px;
  }
  .flow__list__photo {
    grid-column: 2;
    grid-row: 1/3;
    margin-bottom: 15px;
  }
  .flow__list__title {
    margin: 0;
    padding: 15px 0 15px 55px;
    font-size: 18px;
  }
  .flow__list__title::before, .flow__list__title::after {
    display: block;
    position: absolute;
    left: 10px;
    top: 50%;
    width: 30px;
    height: 30px;
  }
  .flow__list__title::after {
    font-size: 18px;
    line-height: 30px;
  }
  .flow__list__comment {
    margin-left: 2.6666666667vw;
    margin-right: 2.6666666667vw;
  }
}
@media screen and (min-width: 980px) {
  .flow__list {
    margin: 0 auto;
  }
  .flow__list__item {
    grid-template-columns: 60% 40%;
    grid-template-rows: 60px auto;
    gap: 0 40px;
  }
  .flow__list__item:not(:last-of-type) {
    margin-bottom: 50px;
  }
  .flow__list__photo {
    margin-bottom: 0;
    padding: 0 0;
  }
  .flow__list__title {
    padding: 15px 0 45px 80px;
    font-size: 30px;
    line-height: 1;
  }
  .flow__list__title::before, .flow__list__title::after {
    display: block;
    position: absolute;
    left: 10px;
    width: 50px;
    height: 50px;
    top: 50%;
    translate: 0 -50%;
  }
  .flow__list__title::after {
    font-size: 26px;
    line-height: 50px;
  }
  .flow__list__comment {
    margin: 20px 0 0 0;
    font-size: 24px;
  }
}

.faq {
  background-color: #eee;
}
.faq__list {
  margin: 0 0;
  counter-reset: list-num;
}
.faq__list__item {
  counter-increment: list-num;
  transition: translate 500ms, opacity 500ms;
}
.faq__list__item:not(:last-of-type) {
  margin-bottom: 20px;
}
.faq__list__q {
  background-color: #000;
  position: relative;
}
.faq__list__q::before {
  display: block;
  content: "Q." counter(list-num);
  width: 28px;
  height: 28px;
  font-family: var(--font-redhat);
  color: var(--color-text);
  border-radius: 40px;
  text-align: center;
  font-weight: 700;
  line-height: 28px;
  font-size: 16px;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
}
.faq__list__q__button {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  cursor: pointer;
  padding: 15px 40px 15px 55px;
  text-align: left;
  line-height: 1.6;
  font-size: 16px;
  position: relative;
  font-weight: 700;
  color: var(--color-text);
  background-color: #ccc;
  border-style: none;
}
.faq__list__q__button::before, .faq__list__q__button::after {
  display: block;
  content: "";
  width: 14px;
  height: 2px;
  background-color: var(--color-text);
  position: absolute;
  top: 25px;
  right: 15px;
  transition: rotate 500ms;
}
.faq__list__q__button::after {
  rotate: 90deg;
}
.faq__list__q__button--open::before {
  rotate: 180deg;
}
.faq__list__q__button--open::after {
  rotate: 0deg;
}
.faq__list__a {
  line-height: 0;
  padding: 0 15px 0 55px;
  font-size: 13px;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  opacity: 0;
  transition: line-height 500ms, padding 500ms, opacity 500ms, min-height 500ms;
  min-height: 0;
}
.faq__list__a--open {
  padding: 15px 15px 15px 55px;
  line-height: 1.6;
  opacity: 1;
  min-height: 28px;
}
.faq__list__a::before {
  display: block;
  content: "A";
  width: 28px;
  height: 28px;
  color: #fff;
  background-color: #000;
  border-radius: 40px;
  text-align: center;
  font-weight: 700;
  line-height: 28px;
  font-size: 16px;
  position: absolute;
  top: 15px;
  left: 15px;
}
@media screen and (min-width: 768px) {
  .faq__list {
    margin: 0 12.7551020408vw;
  }
  .faq__list__item:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 980px) {
  .faq__list {
    margin: 60px auto 0 auto;
  }
  .faq__list__item:not(:last-of-type) {
    margin-bottom: 40px;
  }
  .faq__list__q::before {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    top: 20px;
    left: 20px;
  }
  .faq__list__q__button {
    font-size: 22px;
    padding: 20px 65px 20px 75px;
  }
  .faq__list__q__button::before, .faq__list__q__button::after {
    top: 50%;
    right: 20px;
  }
  .faq__list__a {
    padding: 0 65px 0 75px;
    font-size: 18px;
  }
  .faq__list__a--open {
    padding: 25px 65px 25px 75px;
    min-height: 40px;
  }
  .faq__list__a::before {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    top: 15px;
    left: 20px;
  }
}

.access__list__item:not(:last-of-type) {
  margin-bottom: 40px;
}
.access__list__title {
  margin-bottom: 15px;
  padding: 10px 0 10px 20px;
  line-height: 1;
  font-size: 30px;
  font-weight: 400;
  position: relative;
}
.access__list__title::before {
  display: block;
  content: "";
  background: linear-gradient(0deg, #fae675 0%, #eec946 37%, #eec946 70%, #fae675 100%);
  width: 10px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.access__list__table {
  margin-bottom: 15px;
}
.access__list__table table {
  width: 100%;
  min-width: 300px;
  border-collapse: collapse;
}
.access__list__table tr {
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
.access__list__table th {
  padding: 10px;
  color: #000;
  font-weight: 700;
  line-height: 1.5;
  font-size: 14px;
  width: 30%;
  background-color: #fff;
}
.access__list__table td {
  padding: 10px;
  color: #000;
  background-color: #fff;
  line-height: 1.5;
  font-size: 14px;
}
.access__list__map {
  overflow: hidden;
  width: 100%;
  height: 300px;
}
@media screen and (min-width: 768px) {
  .access__list__item {
    display: grid;
    grid-template-rows: 55% 45%;
    grid-template-rows: auto auto;
    gap: 20px;
  }
  .access__list__item:not(:last-of-type) {
    margin-bottom: 50px;
  }
  .access__list__title {
    grid-row: 1;
    grid-column: 1;
    margin: 0;
    padding: 5px 0 5px 30px;
    font-size: 32px;
  }
  .access__list__table {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 0;
  }
  .access__list__table th {
    padding: 10px;
    font-size: 14px;
    width: 30%;
  }
  .access__list__table td {
    padding: 10px;
    font-size: 14px;
  }
  .access__list__map {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    height: 300px;
  }
}
@media screen and (min-width: 980px) {
  .access__list {
    margin: 0 auto;
  }
  .access__list__item {
    grid-template-columns: 500px auto;
    gap: 40px;
  }
  .access__list__item:not(:last-of-type) {
    margin-bottom: 50px;
  }
  .access__list__title {
    grid-row: 1;
    grid-column: 1;
    margin: 0;
    padding: 5px 0 5px 30px;
    font-size: 32px;
  }
  .access__list__table {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 0;
  }
  .access__list__table th {
    padding: 10px;
    font-size: 14px;
    width: 30%;
  }
  .access__list__table td {
    padding: 10px;
    font-size: 14px;
  }
  .access__list__map {
    height: 340px;
  }
}

.line__para:not(:last-of-type) {
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .line {
    text-align: center;
  }
  .line img {
    max-width: 640px;
  }
}

.contact {
  background-color: #efefef;
}
.contact__flow {
  margin-bottom: 20px;
}
.contact__table {
  margin: 20px 0;
  padding: 20px;
  background-color: #fff;
}
.contact__table table,
.contact__table tbody,
.contact__table tr,
.contact__table th,
.contact__table td {
  display: block;
}
.contact__table tr {
  margin-bottom: 20px;
}
.contact__table th {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
}
.contact__table td {
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
.contact__message {
  padding-bottom: 15px;
  font-size: 14px;
  border-bottom: 1px solid var(--color-gold);
  color: var(--color-text);
}
.contact__required {
  margin-left: 5px;
  color: #c30;
  font-size: 10px;
}
.contact__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}
.contact__buttons--col1 {
  grid-template-columns: auto;
}
.contact__buttons--col1 .contact__buttons__item {
  width: 60vw;
}
.contact__buttons__item--confirm {
  width: 100%;
}
.contact__privacy__title {
  margin-bottom: 10px;
  text-align: center;
  font-family: sans-serif;
}
.contact__privacy__text {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 15px;
  height: 200px;
  overflow: auto;
  box-sizing: border-box;
}
.contact__privacy p {
  margin-bottom: 1em;
  line-height: 1.6;
  font-size: 12px;
  text-align: left;
}
.contact__privacy h4 {
  margin: 2em 0 0.5em 0;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}
.contact__privacy ul li {
  margin: 0.8em 0;
  margin-left: 2em;
  list-style-type: disc;
  line-height: 1.6;
  font-size: 12px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .contact__flow {
    margin: 0 auto 30px auto;
    max-width: 540px;
  }
  .contact__message {
    padding-bottom: 25px;
    margin-bottom: 25px;
    font-size: 14px;
  }
  .contact__table {
    margin: 20px 0;
    padding: 40px;
    text-align: center;
  }
  .contact__table table {
    display: inline-table;
    width: 100%;
  }
  .contact__table tbody {
    display: table-row-group;
  }
  .contact__table tr {
    display: table-row;
  }
  .contact__table tr {
    margin-bottom: 20px;
  }
  .contact__table th {
    display: table-cell;
    vertical-align: top;
    padding: 20px 10px;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    border-bottom: 1px solid #ccc;
  }
  .contact__table td {
    display: table-cell;
    padding: 20px 10px;
    text-align: left;
  }
  .contact__row-time {
    margin-top: 10px;
  }
  .contact__buttons {
    gap: 40px;
    margin-top: 40px;
  }
  .contact__buttons--col1 .contact__buttons__item {
    width: 400px;
  }
  .contact__privacy {
    margin-top: 20px;
  }
  .contact__privacy__title {
    font-size: 16px;
  }
  .contact__privacy__text {
    padding: 25px;
    height: 200px;
  }
  .contact__privacy p {
    font-size: 14px;
  }
  .contact__privacy h4 {
    font-size: 16px;
  }
  .contact__privacy ul li {
    font-size: 14px;
  }
}
@media screen and (min-width: 980px) {
  .contact__message {
    padding-bottom: 25px;
    margin-bottom: 35px;
    font-size: 14px;
  }
  .contact__table {
    margin: 20px auto;
    padding: 50px 100px;
    text-align: center;
    box-sizing: border-box;
  }
  .contact__table table {
    display: inline-table;
    width: 80%;
  }
  .contact__table tbody {
    display: table-row-group;
  }
  .contact__table tr {
    display: table-row;
  }
  .contact__table tr {
    margin-bottom: 20px;
  }
  .contact__table th {
    display: table-cell;
    vertical-align: top;
    padding: 20px 10px;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
  }
  .contact__table td {
    display: table-cell;
    padding: 20px 10px;
    text-align: left;
  }
  .contact__row-time {
    margin-top: 10px;
  }
  .contact__privacy {
    margin-top: 30px;
  }
  .contact__privacy__text {
    margin: 0 auto;
    height: 200px;
    width: 600px;
  }
}

.contact-fin {
  margin: 30px 5.3333333333vw;
  padding: 20px;
  background-color: #fff;
  border-radius: 20px;
}
.contact-fin__title {
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.5;
  font-size: 20px;
}
.contact-fin__para {
  text-align: center;
  font-size: 14px;
  color: var(--color-text);
}
@media screen and (min-width: 980px) {
  .contact-fin {
    margin: 50px auto;
    padding: 40px;
    width: 760px;
  }
  .contact-fin__title {
    margin-bottom: 30px;
    font-size: 26px;
  }
  .contact-fin__para {
    text-align: center;
    font-size: 16px;
  }
}

.principle__photo {
  margin: 0 auto 20px auto;
  width: 200px;
}
.principle__name {
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
}
.principle__name__role {
  display: block;
  text-align: center;
  font-size: 16px;
}
.principle__name__name {
  display: block;
  text-align: center;
  font-size: 20px;
}
.principle__message {
  margin: 0 8vw 25px 8vw;
}
.principle__message__para {
  margin-bottom: 10px;
  font-size: 14px;
  color: #fff;
}
.principle__table {
  margin: 0 8vw;
}
.principle__table table {
  width: 100%;
}
.principle__table caption {
  padding-bottom: 10px;
  text-align: left;
  width: 100%;
  font-size: 15px;
}
.principle__table tr {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.principle__table th {
  padding: 10px 10px 10px 0;
  white-space: nowrap;
  font-weight: 400;
  line-height: 1.5;
  font-size: 12px;
  color: #fff;
}
.principle__table td {
  padding: 10px 0;
  white-space: nowrap;
  font-weight: 400;
  line-height: 1.5;
  font-size: 12px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .principle__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0 13.3333333333vw;
    gap: 5%;
  }
  .principle__photo {
    grid-column: 1;
    width: auto;
  }
  .principle__text {
    grid-column: 2;
  }
  .principle__name {
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 400;
  }
  .principle__name__role {
    text-align: left;
    font-size: 16px;
  }
  .principle__name__name {
    text-align: left;
    font-size: 20px;
  }
  .principle__message {
    margin: 0 0 20px 0;
  }
  .principle__message__para {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .principle__table {
    margin: 0;
  }
}
@media screen and (min-width: 980px) {
  .principle__row {
    gap: 50px;
    margin: 0 auto;
    width: 800px;
  }
  .principle__name {
    margin: 0 0 30px 0;
  }
  .principle__name__role {
    font-size: 18px;
  }
  .principle__name__name {
    font-size: 24px;
  }
  .principle__message {
    margin: 0 0 40px 0;
  }
  .principle__message__para {
    font-size: 15px;
  }
  .principle__table {
    margin: 0;
  }
  .principle__table caption {
    font-size: 16px;
  }
  .principle__table th {
    font-size: 14px;
  }
  .principle__table td {
    font-size: 14px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: var(--color-darkblue);
  border-radius: 30px;
  right: 10px;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
  color: #fff;
}
@media screen and (min-width: 980px) {
  .swiper-button-prev,
  .swiper-button-next {
    right: 40px;
  }
}

.swiper-button-prev {
  right: auto;
  left: 10px;
}
@media screen and (min-width: 980px) {
  .swiper-button-prev {
    left: 40px;
  }
}

.unit-tel {
  container-type: inline-size;
  box-sizing: border-box;
  margin: 0 auto;
  width: min(980px, 100%);
}
.unit-tel__content {
  padding: 10.8163265306cqw 5.4081632653cqw;
  background: linear-gradient(180deg, #ffffff 0%, #fff0c9 100%);
}
.unit-tel__para {
  margin: 1em 5.4081632653cqw 2em 5.4081632653cqw;
  padding: 1em 0;
  font-size: 4.8979591837cqw;
  line-height: 1.5;
  text-align: center;
  background-color: #fff;
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.2));
  border-radius: 2.5510204082cqw;
  position: relative;
}
.unit-tel__para::after {
  display: block;
  content: "";
  width: 5.4081632653cqw;
  height: 5.4081632653cqw;
  background-color: #fff;
  position: absolute;
  left: 50%;
  bottom: -5.4081632653cqw;
  translate: -50% 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}/*# sourceMappingURL=style.css.map */