@charset "UTF-8";
/* -------------------------------------------
	Reset, Variables, Functions, Mixins, Extends
------------------------------------------- */
/* ==========================================================================
 *
 * Utility: Function - calculate-vw-size
 *
========================================================================== */
/* ==========================================================================
 *
 * Utility: Function - strip-unit
 *
========================================================================== */
/* ==========================================================================
 *
 * Utility: Function - url-encode
 *
========================================================================== */
/* ==========================================================================
 *
 * Utility: Function - zero-padding
 * 数値をゼロパディングする
 *
========================================================================== */
/* ==========================================================================
 *
 * Reset
 *
========================================================================== */
body {
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

div, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ul, ol, li, blockquote, pre, table, caption, th, td, address, form, fieldset, legend, object, header, footer, section, article, nav, figure, canvas {
  margin: 0;
  padding: 0;
}

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

fieldset, img {
  border: none;
  vertical-align: top;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

ol, ul, li {
  list-style: none;
}

caption, th, td {
  text-align: left;
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6, small {
  font-weight: normal;
  font-size: 100%;
}

i {
  font-style: normal;
}

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

abbr, acronym {
  border: none;
}

sup {
  vertical-align: top;
}

sub {
  vertical-align: baseline;
}

a, object, embed {
  outline: none;
}

a:hover, a:active, a:focus {
  outline: none;
}

header, footer, section, article, nav, figure, canvas, main {
  display: block;
}

.slick-arrow::before {
  display: none;
}

/* ==========================================================================
 *
 * Variables
 *
========================================================================== */
/* ==========================================================================
 *
 * Utility: Mixin - clearfix
 *
========================================================================== */
/* ==========================================================================
 *
 * Utility: Mixin - cover illust
 *
========================================================================== */
/* ==========================================================================
 *
 * Utility: Mixin - font-smoothing
 * OSX 向けフォントレンダリングの調整
 * http://maximilianhoffmann.com/posts/better-font-rendering-on-osx
 *
========================================================================== */
/* ==========================================================================
 *
 * Utility: Mixin - hidden-text
 * sprite などのお供に
 *
========================================================================== */
/* ==========================================================================
 *
 * Utility: Mixin - hidden
 * display: none せずに要素を隠す
 *
========================================================================== */
/* ==========================================================================
 *
 * Utility: Mixin - iconfont
 *
========================================================================== */
/* ==========================================================================
 *
 * Utility: Mixin - layout
 *
========================================================================== */
/* ==========================================================================
 *
 * Utility: Mixin - placeholder
 * プレースホルダーの色を設定する
 *
========================================================================== */
/* ==========================================================================
 *
 * Utility: Mixin - pre-wrap
 * テキストの改行を pre 的な振る舞いに設定
 *
========================================================================== */
/* ==========================================================================
 *
 * Utility: Mixin - reset-button
 * button 要素をリセット
 *
========================================================================== */
/* ==========================================================================
 *
 * Utility: Mixin - reset-input
 * input 要素をリセット
 *
========================================================================== */
/* ==========================================================================
 *
 * Utility: Mixin - reset-select
 * select 要素をリセット
 *
========================================================================== */
/* ==========================================================================
 *
 * Utility: Mixin - safari
 *
========================================================================== */
/* ==========================================================================
 *
 * Utility: Mixin - sprite
 *
========================================================================== */
/* ==========================================================================
 *
 * Utility: Mixin - tategaki
 *
========================================================================== */
/* ==========================================================================
 *
 * Utility: Mixin - text-ellipsis
 * テキストを ... で省略する
 *
========================================================================== */
/* ==========================================================================
 *
 * Utility: Mixin - title element
 * Section Title上部アイコン
 *
========================================================================== */
/* ==========================================================================
 *
 * Utility: Mixin - white-space
  - normal
  - nowrap
  - pre-wrap
 *
========================================================================== */
/* ==========================================================================
 *
 * Utility: Extend - layout
 *
========================================================================== */
/* -------------------------------------------
	Base
------------------------------------------- */
/* ==========================================================================
 *
 * Base
 *
========================================================================== */
/* -------------------------------------------
  Elements
------------------------------------------- */
body {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: url(/assets/img/common/background.webp) repeat;
  background-color: #000;
  color: #fff;
  font-weight: 700;
  font-size: 3.2vw;
  line-height: 1.88;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.03em;
}

.font-mincho-regular {
  font-style: normal;
  font-weight: 400;
  font-family: "Zen Old Mincho", serif;
}

.font-mincho-bold {
  font-style: normal;
  font-weight: 700;
  font-family: "Zen Old Mincho", serif;
}

.font-manrope {
  font-style: normal;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
}

* {
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

b,
em,
strong,
.bold {
  font-weight: bold;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
img[src$=".svg"] {
  display: block;
  width: 100%;
  height: auto;
}

svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

.content {
  padding: 0 2.6666666667vw;
}

/* -------------------------------------------
  Common
------------------------------------------- */
.hidden {
  visibility: hidden !important;
  z-index: -1 !important;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.pc {
  display: none !important;
}

.center {
  text-align: center;
}

@media (min-width: 769px) {
  body {
    font-size: 16px;
  }
  .content {
    padding: 0 20px;
  }
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
  br .pc,
  img .pc,
  span .pc,
  em .pc {
    display: inline !important;
  }
}
/* -------------------------------------------
	Libraries
------------------------------------------- */
/* -------------------------------------------
	Amimations
------------------------------------------- */
/* ==========================================================================
 *
 * Amimations - xxx
 *
========================================================================== */
@keyframes xxx {}
/* -------------------------------------------
	Blocks
------------------------------------------- */
/* ==========================================================================
 *
 * Blocks - xxx
 *
========================================================================== */
/* ==========================================================================
 *
 * Blocks - btn
 *
========================================================================== */
.btn {
  position: relative;
  border-radius: 2em;
  background-color: #2bf835;
  color: #fff;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}
.btn:not([type=submit])::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "＞";
  color: #fff;
  font-weight: bold;
  line-height: 1;
}
.btn:hover {
  background-color: #000;
  color: #2bf835;
}
.btn:hover::after {
  color: #2bf835;
}
.btn.-border {
  background-color: #000;
  color: #2bf835;
  font-weight: bold;
}
.btn.-border:hover {
  background-color: #2bf835;
  color: #fff;
}
.btn.-border:hover::after {
  color: #fff;
}
.btn.-border::after {
  color: #2bf835;
}
.btn.-black {
  background-color: #000;
  color: #fff;
  font-weight: bold;
}
.btn.-black:hover {
  background-color: #2bf835;
}
.btn.-black:hover::after {
  color: #fff;
}
.btn.-black::after {
  color: #fff;
}
@media (min-width: 769px) {
  .btn {
    display: inline-block;
    padding: 12px 54px;
    border: 2px solid #2bf835;
    font-size: 16px;
  }
  .btn:not([type=submit])::after {
    transform: translate3d(-20px, -50%, 0);
    font-size: 12px;
  }
  .btn.-black {
    border: 2px solid #000;
  }
  .btn.-black:hover {
    border: 2px solid #2bf835;
  }
}
@media (max-width: 768px) {
  .btn {
    display: block;
    width: 100%;
    padding-top: 3.4666666667vw;
    padding-bottom: 3.4666666667vw;
    border: 0.8vw solid #2bf835;
    font-size: 5.0666666667vw;
  }
  .btn:not([type=submit])::after {
    transform: translate3d(-7.2vw, -50%, 0);
    font-size: 3.7333333333vw;
  }
  .btn.-black {
    border: 0.8vw solid #000;
  }
}

/* ==========================================================================
 *
 * Blocks - content
 *
========================================================================== */
.content {
  z-index: 0;
  position: relative;
}
/* ==========================================================================
 *
 * Blocks - footer
 *
========================================================================== */
.footer {
  position: relative;
}
.backtotop {
  display: flex;
  position: relative;
  align-items: flex-end;
  justify-content: space-evenly;
  border-radius: 50%;
  background-color: #d8d8d8;
  color: #000;
  letter-spacing: 0.14em;
}
.backtotop::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(/assets/img/common/backtotop.svg) no-repeat center center/contain;
  content: "";
}
.backtotop span {
  line-height: 1;
}

.footer__inner {
  border-top: 1px solid #2f3036;
  text-align: center;
}

@media (min-width: 769px) {
  .footer .copyright {
    padding: 10px 0 64px;
    font-size: 14px;
  }
  .backtotop {
    position: absolute;
    right: 34px;
    bottom: 135px;
    width: 140px;
    height: 140px;
    border: 2px solid #d8d8d8;
    font-size: 14px;
  }
  .backtotop:hover {
    border: 2px solid #fff;
    background-color: #000;
    color: #fff;
  }
  .backtotop:hover::after {
    background: url(/assets/img/common/backtotop_w.svg) no-repeat center center/contain;
  }
  .backtotop::after {
    width: 14px;
    height: 10px;
  }
  .backtotop span {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .footer {
    background: url(/assets/img/common/light_sp.webp) no-repeat center 5.3333333333vw/contain;
  }
  .footer .copyright {
    padding: 2.6666666667vw 0 8.5333333333vw;
    font-size: 2.9333333333vw;
  }
  .backtotop {
    width: 26.2666666667vw;
    height: 26.2666666667vw;
    margin: 0 auto 16.6666666667vw;
    border: 0.8vw solid #d8d8d8;
    font-size: 2.6666666667vw;
  }
  .backtotop::after {
    width: 2.6666666667vw;
    height: 1.6vw;
  }
  .backtotop span {
    margin-bottom: 5.3333333333vw;
  }
}

/* ==========================================================================
 *
 * Blocks - header
 *
========================================================================== */
.header {
  z-index: 1;
  position: relative;
}
.header__logo {
  z-index: 1;
  position: absolute;
}

.header__insurance {
  position: absolute;
}

.header__badge {
  position: absolute;
}

.gotohome {
  display: flex;
  position: absolute;
  align-items: flex-end;
  justify-content: space-evenly;
  border-radius: 50%;
  background-color: #2bf835;
  color: #000;
  letter-spacing: 0.14em;
  text-align: center;
}
.gotohome::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(/assets/img/common/gotohome.svg) no-repeat center center/contain;
  content: "";
}
.gotohome span {
  line-height: 1;
}

@media (min-width: 769px) {
  .header__inner {
    height: 135px;
  }
  body.-page .header__inner {
    height: 506px;
  }
  .header__logo {
    top: 24px;
    left: 35px;
    width: 260px;
  }
  body.-page .header__logo {
    width: 206px;
  }
  .header__insurance {
    top: 26px;
    left: 320px;
    width: 21px;
  }
  body.-page .header__insurance {
    left: 262px;
    width: 17px;
  }
  .header__badge {
    top: 24px;
    left: 46px;
    width: 92px;
  }
  body.-page .header__badge {
    left: 40px;
    width: 74px;
  }
  .gotohome {
    top: 34px;
    right: 34px;
    width: 140px;
    height: 140px;
    border: 2px solid #2bf835;
    font-size: 14px;
  }
  .gotohome:hover {
    background-color: #000;
    color: #2bf835;
  }
  .gotohome:hover::after {
    background: url(/assets/img/common/gotohome_g.svg) no-repeat center center/contain;
  }
  .gotohome::after {
    bottom: 26px;
    width: 26px;
    height: 20px;
  }
  .gotohome span {
    margin-bottom: 43px;
  }
}
@media (max-width: 768px) {
  .header .header__inner {
    height: 14.9333333333vw;
  }
  body.-page .header .header__inner {
    height: 98.9333333333vw;
  }
  .header .header__logo {
    top: 5.6vw;
    left: 4vw;
    width: 37.8666666667vw;
  }
  .header .header__insurance {
    top: 5.8666666667vw;
    left: 45.3333333333vw;
    width: 3.0666666667vw;
  }
  .header .header__badge {
    top: 6.2666666667vw;
    left: 4.2666666667vw;
    width: 15.6vw;
  }
  .header .gotohome {
    right: 4.5333333333vw;
    bottom: 4.5333333333vw;
    width: 18.6666666667vw;
    height: 18.6666666667vw;
    font-size: 2.4vw;
  }
  .header .gotohome::after {
    bottom: 4.8vw;
    width: 4.8vw;
    height: 3.6vw;
  }
  .header .gotohome span {
    margin-bottom: 5.6vw;
  }
}

/* ==========================================================================
 *
 * Blocks - inner
 *
========================================================================== */
.inner {
  position: relative;
}
@media (min-width: 769px) {
  .inner {
    width: 1020px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .inner {
    margin-right: 5.0666666667vw;
    margin-left: 5.0666666667vw;
  }
}

/* ==========================================================================
 *
 * Blocks - main
 *
========================================================================== */
.main {
  position: relative;
  height: 100%;
}
/* ==========================================================================
 *
 * Blocks - section
 *
========================================================================== */
section.-separator {
  border-bottom: 4px double #2bf835;
}
section.-separator__top {
  border-top: 4px double #2bf835;
}
.section__head {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  line-height: 1.2;
}
.section__head .head__en {
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.2em;
}
.section__head .head__jp {
  color: #2bf835;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
}

@media (min-width: 769px) {
  section.-light {
    background: url(/assets/img/common/light.webp) no-repeat bottom center/contain;
  }
  .head__en {
    font-size: 60px;
  }
  .head__jp {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  section.-light {
    background: url(/assets/img/common/light_sp.webp) no-repeat bottom center/contain;
  }
  .head__en {
    order: 2;
    font-size: 9.6vw;
  }
  .head__jp {
    order: 1;
    font-size: 3.7333333333vw;
  }
}

/* -------------------------------------------
	Pages
------------------------------------------- */
/* ==========================================================================
 *
 * Blocks - contact
 *
========================================================================== */
#contact .contact {
  position: relative;
}
#contact .form-group, #contact .radio-group {
  position: relative;
}
#contact .form-group .flex, #contact .radio-group .flex {
  display: flex;
  flex-wrap: wrap;
}
#contact .form-group .flex.vertically, #contact .radio-group .flex.vertically {
  flex-direction: column;
}
#contact .required {
  color: #2bf835;
}
#contact .radio-group .flex label {
  display: block;
  position: relative;
  background-color: #d8d8d8;
  color: #000;
  font-weight: normal;
  cursor: pointer;
}
#contact .radio-group .flex label::before, #contact .radio-group .flex label::after {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  content: "";
}
#contact .radio-group .flex label::before {
  border: 1px solid #000;
  border-radius: 50%;
  background-color: #fff;
}
#contact .radio-group .flex label::after {
  border-radius: 50%;
  background-color: #000;
  opacity: 0;
}
#contact .radio-group .flex label.checked::after {
  opacity: 1;
}
#contact .radio-group .flex input:not([type=submit]):checked + label::after {
  opacity: 1;
}
#contact .radio-group .flex .visually-hidden {
  clip: rect(0 0 0 0);
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  white-space: nowrap;
  clip-path: inset(50%);
}
#contact input:not([type=submit]), #contact textarea {
  background-color: #d8d8d8;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
}
#contact input:not([type=submit])::-moz-placeholder {
  color: #747474;
}
#contact input:not([type=submit])::placeholder {
  color: #747474;
}
#contact .mw_wp_form .error {
  position: absolute;
  font-weight: normal;
  line-height: 1;
}
@media (min-width: 769px) {
  #contact .contact {
    padding: 86px 0 210px;
  }
  #contact .t1, #contact .t2 {
    margin: 43px 0 112px;
  }
  #contact .t2 {
    font-size: 20px;
  }
  #contact input:not([type=submit]), #contact textarea {
    font-size: 18px;
  }
  #contact .btn {
    width: 100%;
    margin-top: 80px;
    font-size: 20px;
  }
  #contact .form-group, #contact .radio-group {
    display: flex;
  }
  #contact .form-group:not(.-nocenter), #contact .radio-group:not(.-nocenter) {
    align-items: center;
  }
  #contact .form-group.-nocenter label, #contact .radio-group.-nocenter label {
    padding-top: 16px;
  }
  #contact .form-group .flex, #contact .radio-group .flex {
    width: 802px;
    gap: 20px;
  }
  #contact .form-group .flex:not(.vertically) > input:not([type=submit]), #contact .radio-group .flex:not(.vertically) > input:not([type=submit]) {
    width: calc(50% - 10px);
  }
  #contact .form-group .flex > input:not([type=submit]), #contact .radio-group .flex > input:not([type=submit]) {
    width: 100%;
    padding: 18px 28px;
  }
  #contact .form-group .flex:not(.vertically) > div, #contact .radio-group .flex:not(.vertically) > div {
    width: calc(50% - 10px);
  }
  #contact .form-group .flex > div, #contact .radio-group .flex > div {
    width: 100%;
  }
  #contact .form-group .flex > div label, #contact .radio-group .flex > div label {
    width: 100%;
    padding: 18px 66px;
  }
  #contact .form-group .flex > div label::before, #contact .radio-group .flex > div label::before {
    left: 26px;
    width: 28px;
    height: 28px;
  }
  #contact .form-group .flex > div label::after, #contact .radio-group .flex > div label::after {
    left: 30px;
    width: 20px;
    height: 20px;
  }
  #contact .form-group > label, #contact .radio-group > label {
    width: 218px;
    font-size: 16px;
  }
  #contact .form-group ~ .form-group, #contact .form-group ~ .radio-group, #contact .radio-group ~ .form-group, #contact .radio-group ~ .radio-group {
    margin-top: 32px;
  }
  #contact .form-group > input:not([type=submit]), #contact .form-group textarea {
    width: 802px;
    padding: 18px 28px;
  }
  #contact .mw_wp_form .error {
    top: 46px;
    left: 0;
  }
}
@media (max-width: 768px) {
  #contact .contact {
    padding: 11.2vw 0 24.8vw;
    background: none;
  }
  #contact .t1, #contact .t2 {
    margin: 3.7333333333vw 0 12.8vw;
  }
  #contact .t2 {
    font-size: 3.6vw;
  }
  #contact label {
    display: block;
    width: 100%;
    font-size: 3.7333333333vw;
  }
  #contact input:not([type=submit]), #contact textarea {
    font-size: 3.7333333333vw;
  }
  #contact .btn {
    margin-top: 16vw;
  }
  #contact .form-group .flex, #contact .radio-group .flex {
    width: 100%;
    gap: 2.6666666667vw;
  }
  #contact .form-group .flex:not(.vertically) > input:not([type=submit]), #contact .radio-group .flex:not(.vertically) > input:not([type=submit]) {
    width: calc(50% - 1.3333333333vw);
  }
  #contact .form-group .flex > input:not([type=submit]), #contact .radio-group .flex > input:not([type=submit]) {
    width: 100%;
    padding: 2.9333333333vw 4.8vw;
  }
  #contact .form-group .flex:not(.vertically) > div, #contact .radio-group .flex:not(.vertically) > div {
    width: calc(50% - 1.3333333333vw);
  }
  #contact .form-group .flex > div, #contact .radio-group .flex > div {
    width: 100%;
  }
  #contact .form-group .flex > div label, #contact .radio-group .flex > div label {
    width: 100%;
    padding: 2.9333333333vw 1.3333333333vw 2.9333333333vw 9.8666666667vw;
  }
  #contact .form-group .flex > div label::before, #contact .radio-group .flex > div label::before {
    left: 2.9333333333vw;
    width: 4.8vw;
    height: 4.8vw;
  }
  #contact .form-group .flex > div label::after, #contact .radio-group .flex > div label::after {
    left: 3.6vw;
    width: 3.4666666667vw;
    height: 3.4666666667vw;
  }
  #contact .form-group > label, #contact .radio-group > label {
    width: 100%;
    margin-bottom: 1.3333333333vw;
  }
  #contact .form-group ~ .form-group, #contact .form-group ~ .radio-group, #contact .radio-group ~ .form-group, #contact .radio-group ~ .radio-group {
    margin-top: 7.2vw;
  }
  #contact .form-group input:not([type=submit]), #contact .form-group textarea {
    width: 100%;
    padding: 2.9333333333vw 4.8vw;
  }
  #contact .mw_wp_form .error {
    top: 1.3333333333vw;
    right: 0;
  }
}

/* ==========================================================================
 *
 * Blocks - faq
 *
========================================================================== */
#faq .faq {
  position: relative;
}
#faq .faq__lists {
  border-top: 1px solid #fff;
}
#faq .faq__lists li {
  border-bottom: 1px solid #fff;
}
#faq .faq__lists .question {
  position: relative;
}
#faq .faq__lists .question::before {
  position: absolute;
  -webkit-text-fill-color: #000;
  -webkit-text-stroke: 1px #fff;
  content: "Q.";
  color: #2bf835;
  font-family: "Manrope", sans-serif;
}
#faq .faq__lists .question::after {
  position: absolute;
  content: "+";
  line-height: 1;
  font-family: "Manrope", sans-serif;
}
#faq .faq__lists .question.-show::after {
  content: "CLOSE";
  line-height: 5.3;
}
#faq .faq__lists .answer {
  position: relative;
  background-color: #d8d8d8;
  color: #000;
}
#faq .faq__lists .answer::before {
  position: absolute;
  content: "A.";
  color: #d8d8d8;
  font-family: "Manrope", sans-serif;
}
@media (min-width: 769px) {
  #faq .faq {
    padding: 86px 0 210px;
  }
  #faq .faq__link {
    position: absolute;
    top: 106px;
    right: 0;
  }
  #faq .faq__lists {
    margin-top: 60px;
  }
  #faq .faq__lists li {
    padding: 36px 0;
  }
  #faq .faq__lists .question {
    margin-left: 96px;
    font-size: 18px;
  }
  #faq .faq__lists .question::before {
    top: -25px;
    left: -97px;
    font-size: 44px;
  }
  #faq .faq__lists .question::after {
    top: -14px;
    right: 25px;
    font-size: 60px;
  }
  #faq .faq__lists .question.-show::after {
    font-size: 12px;
  }
  #faq .faq__lists .answer {
    margin: 50px 93px 0 76px;
    padding: 0 20px;
    font-size: 18px;
  }
  #faq .faq__lists .answer::before {
    top: -25px;
    left: -76px;
    font-size: 44px;
  }
  #faq .faq__cv {
    margin-top: 190px;
    padding: 12px 82px;
  }
}
@media (max-width: 768px) {
  #faq .faq {
    padding: 11.2vw 0 24.8vw;
    background: none;
  }
  #faq .faq__link {
    margin: 10.1333333333vw 0 14.9333333333vw;
  }
  #faq .faq__lists {
    margin-top: 8vw;
  }
  #faq .faq__lists li {
    padding: 5.8666666667vw 0;
  }
  #faq .faq__lists .question {
    margin-left: 14.6666666667vw;
    font-size: 3.4666666667vw;
  }
  #faq .faq__lists .question::before {
    top: -6.1333333333vw;
    left: -14.6666666667vw;
    font-size: 9.6vw;
  }
  #faq .faq__lists .question::after {
    top: -2.9333333333vw;
    right: 1.0666666667vw;
    font-size: 12vw;
  }
  #faq .faq__lists .question.-show::after {
    top: -3.4666666667vw;
    font-size: 2.6666666667vw;
  }
  #faq .faq__lists .answer {
    margin: 6.6666666667vw 4.8vw 0 14.6666666667vw;
    padding: 0 2.6666666667vw;
    font-size: 3.4666666667vw;
  }
  #faq .faq__lists .answer::before {
    top: -6.1333333333vw;
    left: -14.6666666667vw;
    font-size: 9.6vw;
  }
  #faq .faq__cv {
    margin-top: 38.1333333333vw;
  }
}

/* ==========================================================================
 *
 * Blocks - top
 *
========================================================================== */
#top .mainimage {
  position: relative;
  width: 100%;
}
#top .mainimage picture img {
  -o-object-fit: cover;
  width: 100%;
  object-fit: cover;
  opacity: 0.6;
}
#top .mainimage .header__cv {
  z-index: 1;
  position: absolute;
}
#top .about {
  position: relative;
}
#top .about__copy {
  letter-spacing: 0.07em;
  white-space: nowrap;
}
#top .service__right h3 {
  display: flex;
  font-weight: bold;
  line-height: 1.2;
}
#top .service__right h3 .num {
  line-height: 0.7;
}
#top .service__right p {
  color: #a7a7a7;
}
#top .menu__txt1, #top .menu__txt2 {
  padding-left: 0 !important;
  color: #fff !important;
}
#top .menu__right h3 {
  position: relative;
  font-weight: bold;
  line-height: 1;
}
#top .menu__right h3::after {
  position: absolute;
  content: "";
}
#top .menu__right h3.-l1::after {
  background: linear-gradient(0deg, rgb(7, 76, 154) 0%, rgb(109, 29, 90) 100%);
}
#top .menu__right h3.-l2::after {
  background: linear-gradient(0deg, rgb(33, 149, 222) 0%, rgb(7, 76, 154) 100%);
}
#top .menu__right h3.-l3::after {
  background: linear-gradient(0deg, rgb(163, 191, 18) 0%, rgb(33, 149, 222) 100%);
}
#top .menu__right h3.-l4::after {
  background: linear-gradient(0deg, rgb(254, 218, 8) 0%, rgb(163, 191, 18) 100%);
}
#top .menu__right h3.-l5::after {
  background: linear-gradient(0deg, rgb(240, 124, 18) 0%, rgb(254, 218, 8) 100%);
}
#top .menu__right h3.-l6::after {
  background: linear-gradient(0deg, rgb(238, 0, 0) 0%, rgb(240, 124, 18) 100%);
}
#top .menu__right .num {
  display: inline-block;
  position: relative;
}
#top .menu__right p {
  color: #a7a7a7;
}
#top .price {
  background: url(/assets/img/top/kikko_pattern.png) repeat top left;
  background-size: 168px 194px;
  color: #000;
  text-align: center;
}
#top .price .-t1 {
  display: inline-block;
  position: relative;
  line-height: 1.5;
  letter-spacing: 0.07em;
}
#top .price .-t1::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  content: "";
}
#top .price .-t3 {
  font-size: 18px;
}
#top .price h3 {
  font-weight: bold;
}
#top .price__box2 h4 {
  display: inline-block;
  position: relative;
  font-weight: bold;
}
#top .price__box2 h4::before {
  content: "（";
}
#top .price__box2 h4::after {
  content: "）";
}
#top .price__box2 h4::before, #top .price__box2 h4::after {
  position: absolute;
  line-height: 1;
}
#top .creditcards {
  display: flex;
  align-items: center;
  justify-content: center;
}
#top .step__right h3 {
  border-top: 1px solid #4a4c55;
  border-bottom: 1px solid #4a4c55;
  font-weight: bold;
  line-height: 1.2;
}
#top .step__right .num {
  display: inline-block;
}
#top .step__right p {
  color: #a7a7a7;
}
#top .step__box {
  text-align: center;
}
#top .step__box h4 {
  display: inline-block;
  position: relative;
  font-weight: bold;
}
#top .step__box h4::before {
  content: "（";
}
#top .step__box h4::after {
  content: "）";
}
#top .step__box h4::before, #top .step__box h4::after {
  position: absolute;
  line-height: 1;
}
#top .faq {
  position: relative;
}
#top .faq__lists {
  border-top: 1px solid #fff;
}
#top .faq__lists li {
  border-bottom: 1px solid #fff;
  cursor: pointer;
}
#top .faq__lists .question {
  position: relative;
}
#top .faq__lists .question::before {
  position: absolute;
  -webkit-text-fill-color: #000;
  -webkit-text-stroke: 1px #fff;
  content: "Q.";
  color: #2bf835;
  font-family: "Manrope", sans-serif;
}
#top .faq__lists .question::after {
  position: absolute;
  content: "+";
  line-height: 1;
  font-family: "Manrope", sans-serif;
}
#top .faq__lists .question.-show::after {
  content: "CLOSE";
  line-height: 5.3;
}
#top .faq__lists .answer {
  position: relative;
  background-color: #d8d8d8;
  color: #000;
}
#top .faq__lists .answer::before {
  position: absolute;
  content: "A.";
  color: #d8d8d8;
  font-family: "Manrope", sans-serif;
}
@media (min-width: 769px) {
  #top .mainimage {
    height: 890px;
  }
  #top .mainimage picture img {
    height: 890px;
  }
  #top .mainimage .header__cv {
    top: -100px;
    right: 36px;
    padding: 15px 78px;
    font-size: 18px;
  }
  #top .about {
    padding: 34px 0 80px;
  }
  #top .about .section__head {
    position: absolute;
    top: -27px;
    left: 0;
  }
  #top .about .head__en {
    font-size: 44px;
  }
  #top .about .head__jp {
    font-size: 16px;
  }
  #top .about__copy {
    padding: 0 98px;
    font-size: 64px;
    line-height: 2;
  }
  #top .about__copy > span {
    font-size: 34px;
  }
  #top .service {
    display: flex;
    padding-top: 115px;
    padding-bottom: 80px;
  }
  #top .service__left {
    width: 43%;
  }
  #top .service__left p {
    margin-top: 40px;
    font-size: 18px;
  }
  #top .service__right {
    width: 57%;
  }
  #top .service__right h3 {
    margin-bottom: 16px;
    font-size: 34px;
  }
  #top .service__right h3 .num {
    width: 50px;
    margin-right: 30px;
    font-size: 50px;
  }
  #top .service__right p {
    margin-left: 80px;
  }
  #top .service__right li ~ li {
    margin-top: 44px;
  }
  #top .service__right .btn {
    position: absolute;
    top: 378px;
    left: 0;
  }
  #top .menu {
    display: flex;
    padding-top: 79px;
    padding-bottom: 80px;
  }
  #top .menu > div {
    width: 50%;
  }
  #top .menu__left {
    order: 2;
  }
  #top .menu__txt1 {
    margin-top: 40px;
    font-size: 18px;
  }
  #top .menu__right {
    order: 1;
  }
  #top .menu__right h3 {
    font-size: 34px;
  }
  #top .menu__right h3::after {
    top: 15px;
    left: 75px;
    width: 5px;
    height: 74px;
  }
  #top .menu__right h3 .num {
    top: 8px;
    width: 95px;
    font-size: 50px;
  }
  #top .menu__right p {
    margin-top: 15px;
    padding-left: 95px;
  }
  #top .menu__right li ~ li {
    margin-top: 16px;
  }
  #top .menu__right .btn {
    position: absolute;
    top: 457px;
    left: 50%;
  }
  #top .price {
    padding: 58px 0 50px;
  }
  #top .price .section__head {
    margin-bottom: 20px;
  }
  #top .price .-t1 {
    margin-bottom: 10px;
    font-size: 30px;
  }
  #top .price .-t1::after {
    height: 6px;
  }
  #top .price .-t1 span {
    font-size: 40px;
  }
  #top .price .-t2 {
    margin-bottom: 40px;
    font-size: 30px;
  }
  #top .price .-t3 {
    font-size: 18px;
  }
  #top .price .-t6 {
    margin-bottom: 20px;
  }
  #top .price .btn {
    padding: 12px 88px;
  }
  #top .price__box {
    margin-top: 48px;
    margin-bottom: 10px;
    padding: 43px 0 65px;
    border: 6px solid #000;
  }
  #top .price__box2 h4 {
    margin-top: 79px;
    margin-bottom: 40px;
    font-size: 18px;
  }
  #top .price__box2 h4::before {
    left: -90px;
  }
  #top .price__box2 h4::after {
    right: -90px;
  }
  #top .price__box2 h4::before, #top .price__box2 h4::after {
    top: -11px;
    font-size: 50px;
  }
  #top .creditcards {
    margin-bottom: 46px;
    gap: 30px;
  }
  #top .creditcards .visa {
    width: 85px;
  }
  #top .creditcards .mc {
    width: 70px;
  }
  #top .creditcards .jcb {
    width: 56px;
  }
  #top .creditcards .amex {
    width: 45px;
  }
  #top .creditcards .dc {
    width: 62px;
  }
  #top .step {
    padding-top: 106px;
    padding-bottom: 80px;
  }
  #top .step .flex {
    display: flex;
  }
  #top .step__left {
    width: 46%;
  }
  #top .step__left p {
    margin-top: 40px;
    font-size: 18px;
  }
  #top .step__right {
    width: 54%;
  }
  #top .step__right h3 {
    font-size: 34px;
  }
  #top .step__right h3 .num {
    margin-right: 10px;
    font-size: 38px;
  }
  #top .step__right li ~ li {
    margin-top: 38px;
  }
  #top .step__right .btn {
    position: absolute;
    top: 378px;
    left: 0;
  }
  #top .step__box h4 {
    margin-top: 79px;
    margin-bottom: 40px;
    font-size: 18px;
  }
  #top .step__box h4::before {
    left: -90px;
  }
  #top .step__box h4::after {
    right: -90px;
  }
  #top .step__box h4::before, #top .step__box h4::after {
    top: -11px;
    font-size: 50px;
  }
  #top .faq {
    padding: 96px 0 210px;
  }
  #top .faq__link {
    position: absolute;
    top: 106px;
    right: 0;
  }
  #top .faq__lists {
    margin-top: 60px;
  }
  #top .faq__lists li {
    padding: 36px 0;
  }
  #top .faq__lists .question {
    margin-left: 96px;
    padding-right: 94px;
    font-size: 18px;
  }
  #top .faq__lists .question::before {
    top: -25px;
    left: -97px;
    font-size: 44px;
  }
  #top .faq__lists .question::after {
    top: -14px;
    right: 25px;
    font-size: 60px;
  }
  #top .faq__lists .question.-show::after {
    font-size: 12px;
  }
  #top .faq__lists .answer {
    margin: 50px 93px 0 76px;
    padding: 0 20px;
    font-size: 18px;
  }
  #top .faq__lists .answer::before {
    top: -25px;
    left: -76px;
    font-size: 44px;
  }
  #top .faq__cv {
    margin-top: 190px;
    padding: 12px 82px;
  }
}
@media (max-width: 768px) {
  #top .mainimage {
    height: 134.1333333333vw;
  }
  #top .mainimage picture img {
    height: 134.1333333333vw;
  }
  #top .mainimage .header__cv {
    bottom: -8vw;
    left: 50%;
    width: calc(100% - 10.1333333333vw);
    transform: translateX(-50%);
  }
  #top .about {
    padding-top: 24vw;
    padding-bottom: 14.9333333333vw;
  }
  #top .about .section__head {
    margin-bottom: 3.4666666667vw;
  }
  #top .about__copy {
    font-size: 7.3333333333vw;
    line-height: 1.6;
  }
  #top .about__copy > span {
    font-size: 4.8vw;
  }
  #top .service {
    padding-top: 17.6vw;
    padding-bottom: 19.4666666667vw;
  }
  #top .service__left p {
    margin-top: 3.7333333333vw;
    font-size: 3.7333333333vw;
  }
  #top .service__right h3 {
    margin-bottom: 3.4666666667vw;
    font-size: 6.1333333333vw;
  }
  #top .service__right h3 .num {
    width: 13.3333333333vw;
    margin-right: 2.6666666667vw;
    font-size: 9.3333333333vw;
  }
  #top .service__right p {
    margin-left: 14.6666666667vw;
  }
  #top .service__right ul {
    padding-top: 8vw;
  }
  #top .service__right li ~ li {
    margin-top: 6.6666666667vw;
  }
  #top .service__right .btn {
    margin-top: 12vw;
  }
  #top .menu {
    padding-top: 17.6vw;
    padding-bottom: 19.4666666667vw;
  }
  #top .menu__txt1 {
    margin-top: 3.7333333333vw;
    font-size: 3.7333333333vw;
  }
  #top .menu__txt2 {
    margin-top: 8vw !important;
    font-size: 3.7333333333vw;
  }
  #top .menu__right h3 {
    margin-bottom: 1.3333333333vw;
    font-size: 6.1333333333vw;
  }
  #top .menu__right h3::after {
    top: 2.6666666667vw;
    left: 14.4vw;
    width: 0.9333333333vw;
    height: 14.5333333333vw;
  }
  #top .menu__right h3 .num {
    top: 1.8666666667vw;
    width: 18.4vw;
    font-size: 9.3333333333vw;
  }
  #top .menu__right p {
    margin-top: 3.2vw;
    padding-left: 18.4vw;
  }
  #top .menu__right ul {
    padding-top: 8vw;
  }
  #top .menu__right li ~ li {
    margin-top: 3.2vw;
  }
  #top .menu__right .btn {
    margin-top: 12vw;
  }
  #top .price {
    padding: 16vw 0 16vw;
    background-size: 22.4vw 25.8666666667vw;
  }
  #top .price .section__head {
    margin-bottom: 2.6666666667vw;
  }
  #top .price .-t1 {
    margin-bottom: 1.3333333333vw;
    font-size: 4.8vw;
  }
  #top .price .-t1::after {
    height: 1.0666666667vw;
  }
  #top .price .-t1 span {
    font-size: 8vw;
  }
  #top .price .-t2 {
    margin-bottom: 3.2vw;
    font-size: 4.8vw;
  }
  #top .price .-t3 {
    font-size: 3.0666666667vw;
  }
  #top .price .-t6 {
    margin-bottom: 4vw;
  }
  #top .price .btn {
    padding: 12px 88px;
    border: 0.8vw solid #2bf835;
    background-color: #2bf835;
  }
  #top .price__box {
    margin-top: 5.3333333333vw;
    padding: 8vw 0 9.3333333333vw;
    border: 1.0666666667vw solid #000;
  }
  #top .price__box2 h4 {
    margin-top: 11.4666666667vw;
    margin-bottom: 4.5333333333vw;
    font-size: 3.2vw;
  }
  #top .price__box2 h4::before {
    left: -12vw;
  }
  #top .price__box2 h4::after {
    right: -12vw;
  }
  #top .price__box2 h4::before, #top .price__box2 h4::after {
    top: -1.3333333333vw;
    font-size: 8.2666666667vw;
  }
  #top .creditcards {
    margin-bottom: 9.3333333333vw;
    gap: 4vw;
  }
  #top .creditcards .visa {
    width: 14vw;
  }
  #top .creditcards .mc {
    width: 12vw;
  }
  #top .creditcards .jcb {
    width: 10.1333333333vw;
  }
  #top .creditcards .amex {
    width: 8.6666666667vw;
  }
  #top .creditcards .dc {
    width: 10.9333333333vw;
  }
  #top .step {
    padding-top: 17.6vw;
    padding-bottom: 19.4666666667vw;
  }
  #top .step__left p {
    margin-top: 3.7333333333vw;
    font-size: 3.7333333333vw;
  }
  #top .step__right h3 {
    margin-bottom: 1.3333333333vw;
    font-size: 6.1333333333vw;
  }
  #top .step__right h3 .num {
    margin-right: 2.6666666667vw;
    font-size: 6.9333333333vw;
  }
  #top .step__right ul {
    padding-top: 8vw;
  }
  #top .step__right li ~ li {
    margin-top: 9.3333333333vw;
  }
  #top .step__right .btn {
    margin-top: 14.6666666667vw;
  }
  #top .step__box h4 {
    margin-top: 11.4666666667vw;
    margin-bottom: 4.5333333333vw;
    font-size: 3.2vw;
  }
  #top .step__box h4::before {
    left: -12vw;
  }
  #top .step__box h4::after {
    right: -12vw;
  }
  #top .step__box h4::before, #top .step__box h4::after {
    top: -1.3333333333vw;
    font-size: 8.2666666667vw;
  }
  #top .faq {
    padding: 17.3333333333vw 0 24.8vw;
    background: none;
  }
  #top .faq__link {
    margin: 10.1333333333vw 0 14.9333333333vw;
  }
  #top .faq__lists {
    margin-top: 8vw;
  }
  #top .faq__lists li {
    padding: 5.8666666667vw 0;
  }
  #top .faq__lists .question {
    margin-left: 14.6666666667vw;
    padding-right: 16vw;
    font-size: 3.4666666667vw;
  }
  #top .faq__lists .question::before {
    top: -6.1333333333vw;
    left: -14.6666666667vw;
    font-size: 9.6vw;
  }
  #top .faq__lists .question::after {
    top: -2.9333333333vw;
    right: 1.0666666667vw;
    font-size: 12vw;
  }
  #top .faq__lists .question.-show::after {
    top: -3.4666666667vw;
    font-size: 2.6666666667vw;
  }
  #top .faq__lists .answer {
    margin: 6.6666666667vw 4.8vw 0 14.6666666667vw;
    padding: 0 2.6666666667vw;
    font-size: 3.4666666667vw;
  }
  #top .faq__lists .answer::before {
    top: -6.1333333333vw;
    left: -14.6666666667vw;
    font-size: 9.6vw;
  }
  #top .faq__cv {
    margin-top: 38.1333333333vw;
  }
}
/*# sourceMappingURL=sourcemaps/style.css.map */