@charset "UTF-8";
/*----------------------------------------
	reset
----------------------------------------*/
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,
main,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
}

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

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:before,
:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 62.5%;
}

body {
  font-size: 1.6em;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Arial", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.75;
}

span,
small,
strong,
em {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  margin: 1em 0;
  padding: 0;
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
}

input,
select {
  vertical-align: middle;
}

button {
  appearance: none;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

address {
  font-style: normal;
}

/*Font
----------------------------------------*/
.sans {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.serif {
  font-family: "Noto Serif JP", serif;
}

/* Links
----------------------------------------*/
a {
  color: #000000;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #1e9acd;
  text-decoration: underline;
}

a.tel-link {
  color: #000000;
}

/* bg
----------------------------------------*/
.rsv {
  background: #f0f0f0 url(../img/pc/bg_pattern.svg) no-repeat top/contain;
}
@media screen and (max-width: 1080px) {
  .rsv {
    background-image: url(../img/sp/bg_pattern.svg);
  }
}

.done {
  background: #eeeff0 url(../img/pc/bg_pattern--done.png) no-repeat bottom
    right/30%;
}

/* html,Body
----------------------------------------*/
html,
body {
  overflow-y: auto;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #000000;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.6em;
  line-height: 1.6;
}

/* container
----------------------------------------*/
.container--wide {
  box-sizing: content-box;
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

.container {
  box-sizing: content-box;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* common
----------------------------------------*/
.u-line {
  background: linear-gradient(to top, #ffed00 60%, #fff 60%);
}

.u-sp {
  display: none;
}

.u-pc {
  display: block;
}

@media screen and (max-width: 1080px) {
  .u-sp {
    display: block;
  }
  .u-pc {
    display: none;
  }
}
/* PCでのscale調整
----------------------------------------*/
/*カンプ通りの数値でコーディングしたら思ったより大きかったと言われたため、
PCレイアウトだけ全体縮小。
本来であればカンプからサイズ修正→コーディングに反映すべきところだが時間がないので簡易的に対応。
各ボックス内で指定している数値とブラウザの表示サイズ実寸が異なる状態であるため要注意!!
*/
@media screen and (min-width: 1081px) {
  html {
    zoom: 0.8;
  }
}

/*----------------------------------------
	header
----------------------------------------*/
.header {
  padding: min(5.33vmin, 20px) 0 min(6.4vmin, 70px);
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .header {
    padding-bottom: 0;
  }
}
.header__logo {
  width: min(40vmin, 300px);
  margin-right: 20px;
}
@media screen and (max-width: 1080px) {
  .header__logo {
    display: flex;
    align-items: center;
    flex: 1;
    width: min(20vmin, 150px);
    margin-right: 9px;
  }
}
.header__text {
  margin-top: 35px;
  font-size: 40px;
  font-weight: 500;
  color: #f4bc00;
}
@media screen and (max-width: 1080px) {
  .header__text {
    font-size: 14px;
  }
}
.header__ttl {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1080px) {
  .header__ttl {
    font-size: 22px;
  }
}
.header__ttl-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
}
.header__ttl-wrapper::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  display: block;
  width: 82px;
  height: 3px;
  background: #000000;
}
@media screen and (max-width: 1080px) {
  .header__ttl-wrapper::after {
    width: min(10.93vmin, 82px);
    height: min(0.4vmin, 3px);
    margin: min(3.33vmin, 25px) auto 0;
    bottom: -20px;
  }
}

/*----------------------------------------
	カウンセリング内容
----------------------------------------*/
.feature {
  padding-top: 80px;
}
@media (max-width: 1400px) {
  .feature {
    margin-right: -20px;
  }
}
@media screen and (max-width: 1080px) {
  .feature {
    padding-top: 5.33vmin;
  }
}
.feature__details {
  position: relative;
  transition: 0.3s;
  transform: translateX(-10px);
  margin-inline: 10px;
}
.feature__summary {
  position: relative;
  display: block;
  padding: min(4vw, 30px);
  background: #080807;
  color: #ffffff;
  text-align: center;
  font-size: min(2.66vw, 20px);
  cursor: pointer;
  outline: none;
}
.feature__summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  transform-origin: center;
  display: block;
  width: 1em;
  height: 1em;
  background: url(../img/ico_arw.svg) center/contain no-repeat;
  transition: 0.3s;
}
@media screen and (max-width: 1080px) {
  .feature__summary::after {
    position: relative;
    left: 50%;
    right: 0;
    transform: translate(-50%, 50%);
  }
}
.feature__summary::-webkit-details-marker {
  display: none;
}
.feature__summary .text01 {
  display: block;
  font-size: 28px;
  text-decoration: underline;
  text-underline-offset: 0.4em;
}
@media screen and (max-width: 1080px) {
  .feature__summary .text01 {
    font-size: 18px;
  }
}
.feature__summary .text02 {
  display: block;
  font-size: 32px;
  font-weight: bold;
}
@media screen and (max-width: 1080px) {
  .feature__summary .text02 {
    font-size: 22px;
  }
}
@media screen and (min-width: 1081px) {
  .feature__summary {
    zoom: 1.2;
  }
}
.feature__wrap {
  display: flex;
  justify-content: space-between;
  gap: 52px;
  padding-bottom: 20px;
  padding-top: 40px;
}
@media screen and (max-width: 1080px) {
  .feature__wrap {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 0;
  }
}

/*開いた時のスタイル*/
.feature__details[open] .feature__summary::after {
  rotate: -180deg;
  transform: translateY(50%);
}
@media screen and (max-width: 1080px) {
  .feature__details[open] .feature__summary::after {
    transform: translate(50%, -50%);
  }
}

.feature-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: #ffffff;
}
@media screen and (max-width: 1080px) {
  .feature-box {
    padding: 20px;
  }
}
.feature-box__thumb {
  order: -1;
  margin-bottom: min(2vw, 15px);
}
.feature-box__thumb img {
  max-width: none;
  width: 100%;
}
.feature-box__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 24px;
  font-weight: 800;
}
@media screen and (max-width: 1080px) {
  .feature-box__ttl {
    font-size: 18px;
  }
}
.feature-box__ttl .u-line {
  font-size: 1.2em;
  display: inline-block;
}
.feature-box__txt {
  margin-top: 0.5em;
  font-size: 20px;
}
@media screen and (max-width: 1080px) {
  .feature-box__txt {
    font-size: 16px;
  }
}

/*----------------------------------------
	カウンセリング特典
----------------------------------------*/
.benefit {
  position: relative;
  padding: 0;
}
.benefit__ttl {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-inline: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  word-break: keep-all;
  background-color: #fff;
}
@media screen and (max-width: 1080px) {
  .benefit__ttl {
    padding-inline: 8px;
    font-size: 5.06vmin;
  }
}
.benefit__content {
  font-size: 34px;
  margin-top: 80px;
  padding-block: 70px;
  border: solid 4px #000000;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .benefit__content {
    font-size: 16px;
    margin-top: 44px;
    padding-block: 24px;
  }
}
.benefit__content strong {
  font-size: 38px;
  font-weight: 800;
}
@media screen and (max-width: 1080px) {
  .benefit__content strong {
    font-size: 20px;
  }
}

/*----------------------------------------
	カウンセリングご予約
----------------------------------------*/
.reserve {
  padding-top: 34px;
}
@media screen and (max-width: 1080px) {
  .reserve {
    padding-top: 4vmin;
  }
}
.reserve__body {
  padding-bottom: 50px;
}
@media screen and (max-width: 1080px) {
  .reserve__body {
    padding: 0 0 8vmin;
  }
}
.reserve__lead {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 46px 0 35px 76px;
  background: #f4d432;
  color: #000000;
  border: solid 4px #ffed94;
}
@media screen and (max-width: 1080px) {
  .reserve__lead {
    flex-direction: column;
    padding: 2.66vmin 1.33vmin;
    gap: 1.33vmin;
  }
}
.reserve__txt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
@media screen and (max-width: 1080px) {
  .reserve__txt {
    gap: 14px;
    padding: 0 16px;
  }
}
.reserve__txt .shoulder {
  padding: 4px 8px;
  font-size: 30px;
  white-space: nowrap;
  background-color: #000000;
  color: #ffffff;
  line-height: 1;
}
@media screen and (max-width: 1080px) {
  .reserve__txt .shoulder {
    left: 2vmin;
    top: -10.67vmin;
    font-size: 13px;
  }
  .reserve__txt .shoulder::after {
    width: 37.33vmin;
    height: 2.66vmin;
    margin-left: -2vmin;
  }
}
.reserve__txt .online {
  font-size: 34px;
  font-weight: 600;
  word-break: keep-all;
}
@media screen and (max-width: 1080px) {
  .reserve__txt .online {
    font-size: 18px;
  }
}
.reserve__txt_wrapper {
  display: flex;
  gap: 48px;
}
@media screen and (max-width: 1080px) {
  .reserve__txt_wrapper {
    gap: 20px;
  }
}
.reserve__note {
  margin-top: 30px;
  color: #000000;
}
@media screen and (max-width: 1080px) {
  .reserve__note {
    margin-top: 2.66vmin;
    font-size: 3.2vmin;
  }
}

/*----------------------------------------
	予約フォーム
----------------------------------------*/
@media screen and (max-width: 1080px) {
  .form {
    padding-bottom: 68px;
  }
}
.form .container {
  padding: 87px 100px 144px;
  border: solid 4px #f4d432;
  background: #ffffff;
}
@media screen and (max-width: 1080px) {
  .form .container {
    margin-inline: 20px;
    padding: 35px 24px 55px;
  }
}

/*----------------------------------------
	よくあるご質問
----------------------------------------*/
.faq {
  margin-top: 104px;
  padding: 100px 0 20%;
  background: #f4d432 url(../img/bg_light_yellow_pattern.svg) center bottom 10% /
    contain no-repeat;
}
@media screen and (max-width: 1080px) {
  .faq {
    margin-top: 53px;
    padding: 7.73vmin 0 20%;
    background: #f4d432 url(../img/bg_light_yellow_pattern.svg) center bottom
      40% / contain no-repeat;
  }
}
.faq__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: min(5.33vmin, 50px);
  font-size: min(9.6vmin, 72px);
  font-weight: 300;
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1080px) {
  .faq__ttl {
    font-size: 32px;
  }
}
.faq__ttl::after {
  content: "";
  display: block;
  width: 82px;
  height: 2px;
  margin-top: 10px;
  background: #000000;
}
@media screen and (max-width: 1080px) {
  .faq__ttl::after {
    width: 40px;
    margin-top: 0;
  }
}
.faq__ttl_en {
  font-size: min(4.26vmin, 32px);
  font-weight: 500;
  letter-spacing: 1;
  color: #ffffff;
}
@media screen and (max-width: 1080px) {
  .faq__ttl_en {
    font-size: 18px;
  }
}
.faq__box {
  margin-top: min(5.33vmin, 50px);
  padding: 0 min(6vmin, 45px);
  background: #ffffff;
}
@media screen and (max-width: 1080px) {
  .faq__box {
    padding: 0 min(1.6vmin, 12px);
  }
}
.faq__toggle button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  padding: min(5.33vmin, 40px);
  padding-left: 0;
  color: #000000;
  font-size: min(3.73vmin, 28px);
  font-family: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
@media screen and (max-width: 1080px) {
  .faq__toggle button {
    gap: 12px;
    padding: 20px 20px 20px 10px;
    font-size: 15px;
  }
}
.faq__toggle button::before {
  content: "Q";
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  font-size: 34px;
}
@media screen and (max-width: 1080px) {
  .faq__toggle button::before {
    width: 28.5px;
    height: 28.5px;
    font-size: 16px;
  }
}
.faq__toggle button::after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
  width: min(3.33vmin, 25px);
  height: min(3.33vmin, 25px);
  background: url(../img/ico_plus.svg) 0 0 / contain no-repeat;
  transition: 0.3s;
}
@media screen and (max-width: 1080px) {
  .faq__toggle button::after {
    width: 16px;
    height: 16px;
  }
}
.faq__toggle button._open::after {
  transform: rotate(180deg);
}
.faq__body {
  display: none;
  padding: min(5.33vmin, 40px) 0;
  border-top: 2px solid #f39826;
  font-size: min(3.33vmin, 25px);
  line-height: 1.72;
}
@media screen and (max-width: 1080px) {
  .faq__body {
    padding: 20px;
    font-size: 13px;
  }
}

.cv-btn {
  max-width: 640px;
  margin: 110px auto 0;
  text-align: center;
}
.cv-btn > a {
  position: relative;
  color: white;
  display: inline-block;
  padding: 40px 105px;
  background: #000000;
  color: #ffffff;
  font-size: 32px;
  word-break: keep-all;
}
@media screen and (max-width: 1080px) {
  .cv-btn > a {
    font-size: 14px;
    padding: 26px 76px;
  }
}
.cv-btn > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 45px;
  display: block;
  width: 21px;
  height: 12.5px;
  background: url(../img/ico_arw.svg) center/contain no-repeat;
  rotate: -90deg;
  translate: 0 -50%;
}
@media screen and (max-width: 1080px) {
  .cv-btn > a::after {
    right: 4.93vmin;
    width: 1.46vmin;
    height: 0.93vmin;
  }
}
@media screen and (max-width: 1080px) {
  .cv-btn {
    margin-top: 8vmin;
  }
}

/*----------------------------------------
	footer
----------------------------------------*/
/*LP本体から移植したcss に若干の改変を加えたもの*/
.relative {
  position: relative;
}

.footer {
  background: #000;
  zoom: 1.25;
}

.footer > img.pc {
  margin: auto;
}

.footer_inner {
  position: absolute;
  width: 38.8545%;
  min-width: 750px;
  top: 34%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media (min-width: 751px) and (max-width: 1079px) {
  .footer_inner {
    min-width: 600px;
  }
}
@media (max-width: 750px) {
  .footer {
    background: #000000;
    zoom: 1;
  }
  .footer_inner {
    position: absolute;
    width: 28.667%;
    min-width: 0;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    display: block;
  }
  .footer_inner div {
    margin-bottom: 13%;
  }
  .footer_inner div:last-child {
    margin-bottom: 0;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/*----------------------------------------
	完了画面
----------------------------------------*/
.header--done .header__ttl {
  position: relative;
  font-size: 42px;
}
@media screen and (max-width: 1080px) {
  .header--done .header__ttl {
    margin: 20px 0 0;
    font-size: 20px;
  }
}
.header--done .header__ttl::before,
.header--done .header__ttl::after {
  content: "";
  position: absolute;
  display: block;
  margin: 0;
  width: 100%;
  background: #000000;
}
.header--done .header__ttl::before {
  height: 3px;
  bottom: -26px;
}
@media screen and (max-width: 1080px) {
  .header--done .header__ttl::before {
    bottom: -15px;
  }
}
.header--done .header__ttl::after {
  height: 6px;
  bottom: -19px;
}
@media screen and (max-width: 1080px) {
  .header--done .header__ttl::after {
    bottom: -8px;
  }
}
.header--done .header__subttl {
  display: flex;
  align-items: center;
  gap: 20.5px;
  color: #f39826;
  font-size: 19px;
  font-weight: 600;
}
@media screen and (max-width: 1080px) {
  .header--done .header__subttl {
    font-size: 10px;
  }
}
.header--done .header__subttl::before,
.header--done .header__subttl::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
}
.header--done .header__subttl__text {
  flex-shrink: 0;
}
.header--done .header__logo {
  width: min(68vmin, 510px);
  margin: auto;
}
@media screen and (max-width: 1080px) {
  .header--done .header__logo {
    width: 85%;
  }
}

/* メッセージ
----------------------------------------*/
.doneMsg {
  margin: 70px auto 0;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 1080px) {
  .doneMsg {
    margin-top: min(5.33vmin, 40px);
    font-size: 16px;
  }
}
.doneMsg__txt01 {
  text-align: center;
}
.doneMsg__txt02 {
  margin-top: 15px;
}
.doneMsg__txt02 strong > a {
  color: #f39826;
}
.doneMsg__txt03 {
  margin-top: 70px;
  text-align: left;
  font-size: 20px;
  font-weight: 300;
}
.doneMsg__txt03 b {
  color: #ffcc00;
}
@media screen and (max-width: 1080px) {
  .doneMsg__txt03 {
    margin-top: min(4vmin, 30px);
    font-size: 15px;
  }
}
.doneMsg__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding: 60px;
  border: 5px solid #1ec755;
  background: #ffffff;
}
@media screen and (max-width: 1080px) {
  .doneMsg__line {
    flex-direction: column;
    padding: 30px;
  }
}
.doneMsg__line__left img {
  width: 130px;
  object-fit: contain;
}
@media screen and (max-width: 1080px) {
  .doneMsg__line__left img {
    width: 60px;
  }
}
.doneMsg__line__center span {
  display: block;
  font-size: 30px;
}
@media screen and (max-width: 1080px) {
  .doneMsg__line__center span {
    font-size: 20px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 1080px) {
  .doneMsg__line__center {
    width: 100%;
  }
}
.doneMsg__line__link {
  position: relative;
  display: inline-block;
  padding: 40px 110px;
  background: #1ec755;
  font-size: 22px;
  color: #ffffff;
}
.doneMsg__line__link:hover {
  color: #ffffff;
  text-decoration: none;
}
@media screen and (max-width: 1080px) {
  .doneMsg__line__link {
    display: block;
    margin-top: 13px;
    padding: 25px 0;
    font-size: 15px;
  }
}
.doneMsg__line__link::after {
  content: "";
  position: absolute;
  background: url(../img/ico_arw.svg) no-repeat;
  background-size: contain;
  width: 1em;
  height: 1em;
  top: 50%;
  right: 35px;
  translate: 0 -50%;
  rotate: -90deg;
}
@media screen and (max-width: 1080px) {
  .doneMsg__line__link::after {
    right: 20px;
  }
}
.doneMsg__worx_logo {
  width: min(68vmin, 510px);
}
.doneMsg__qr_code img {
  width: 192px;
  object-fit: contain;
}
@media screen and (max-width: 1080px) {
  .doneMsg__qr_code img {
    width: 120px;
  }
} /*# sourceMappingURL=style.css.map */
