@charset "UTF-8";
:root {
  --inner-scale: 1;
  --vw-base: calc(1920 / var(--inner-scale));
  --inner: 1200;
}
@media screen and (max-width: 999px) {
  :root {
    --inner-scale: calc(0.9 / (1200 / 1920));
  }
}
@media screen and (max-width: 767px) {
  :root {
    --vw-base: 375;
    --inner-scale: 1;
    --inner: 345;
  }
}

/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  font-weight: 500;
  background: #fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

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

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #fff;
}

/*------------------------------
common
------------------------------*/
body {
  word-break: break-all;
  color: #231815;
  font-family: "Noto Sans JP", sans-serif;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll; /* スクロールバー補完 */
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
/* コンテンツ幅
------------------------------*/
.inner {
  width: calc(var(--inner) / var(--vw-base) * 100%);
  margin: 0 auto;
}
@media (max-width: 999px) {
  .inner {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .inner {
    width: calc(var(--inner) / var(--vw-base) * 100%);
  }
}

/* タイトル
------------------------------*/
.c-sec-ttl {
  font-size: calc(40 * 100vw / var(--vw-base));
  font-weight: 500;
  line-height: 2.05;
  text-align: center;
}
@media (max-width: 767px) {
  .c-sec-ttl {
    font-size: calc(18 * 100vw / var(--vw-base));
    font-weight: 700;
  }
}

/* テキスト装飾
-----------------------------*/
.u-underline {
  text-decoration: underline;
}

.u-text-accent {
  color: #e95520;
}

.u-text-black {
  color: #231815;
}

.u-text-box {
  background: #e95520;
  color: #fff;
}
@media (max-width: 767px) {
  .u-text-box {
    padding: 0 0.3em;
  }
}

/* LINEボタン
------------------------------*/
.c-cta-btn span {
  display: block;
  font-size: calc(50 * 100vw / var(--vw-base));
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.c-cta-btn a {
  display: flex;
  justify-content: center;
  font-size: calc(75 * 100vw / var(--vw-base));
  font-weight: 700;
  line-height: 1.2;
  border-radius: 0.64em;
  padding: 0.24em 0.4em;
  margin-top: 0.4em;
}
@media (max-width: 767px) {
  .c-cta-btn span {
    font-size: calc(22 * 100vw / var(--vw-base));
  }
  .c-cta-btn a {
    font-size: calc(28 * 100vw / var(--vw-base));
  }
}

.c-cta-btn--line span {
  color: #00c04b;
}
.c-reverse {
  position: relative;
  align-items: center;
  border: 1px solid #e95520;
  transition: all 0.3s;
}
.c-reverse em {
  transition: all 0.3s;
  display: inline-block;
  content: "";
  position: relative;
  width: 0.76em;
  aspect-ratio: 1/1;
  margin-left: 0.2em;
  transform: translateY(5%);
  border-radius: 50%;
}
.c-reverse em::after {
  transition: all 0.3s;
  content: "";
  position: absolute;
  aspect-ratio: 221/311;
  transform: translate(-50%, -50%);
  width: 47%;
  left: 55%;
  top: 50%;
  -webkit-mask-image: url(../img/icon_arrow3.svg);
          mask-image: url(../img/icon_arrow3.svg);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
@media (hover: hover) {
  .c-reverse:hover {
    opacity: 1;
  }
}

.c-reverse1[class][class] {
  border-color: #e95520;
  color: #e95520;
  background: #fff;
}
.c-reverse1[class][class] em {
  background: #e95520;
}
.c-reverse1[class][class] em::after {
  background: #fff;
}
@media (hover: hover) {
  .c-reverse1[class][class]:hover {
    color: #fff;
    background: #e95520;
  }
  .c-reverse1[class][class]:hover em {
    background: #fff;
  }
  .c-reverse1[class][class]:hover em::after {
    background: #e95520;
  }
}
@media (max-width: 767px) {
  .c-reverse1[class][class] {
    background: #e95520;
    color: #fff;
  }
  .c-reverse1[class][class] em {
    background: #fff;
  }
  .c-reverse1[class][class] em::after {
    background: #e95520;
  }
}

.c-reverse2[class][class] {
  border-color: #00c04b;
  background: #00c04b;
  color: #fff;
}
.c-reverse2[class][class] em {
  background: #fff;
}
.c-reverse2[class][class] em::after {
  background: #00c04b;
}
@media (hover: hover) {
  .c-reverse2[class][class]:hover {
    color: #00c04b;
    background: #fff;
  }
  .c-reverse2[class][class]:hover em {
    background: #00c04b;
  }
  .c-reverse2[class][class]:hover em::after {
    background: #fff;
  }
}

.body[class] .c-indent1 {
  padding-left: 1em;
  text-indent: -1em;
}
.body[class] .u-fontfeaturepalt {
  font-feature-settings: "palt";
}
.body[class] .u-underline2 {
  border-bottom: calc(3 * 100vw / var(--vw-base)) solid #e95520;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.body[class] .u-color3 {
  color: #fff096;
}
.body[class] .u-writinglr {
  writing-mode: vertical-lr;
}
.body[class] .u-fw1 {
  font-weight: 100;
}
.body[class] .u-fw9 {
  font-weight: 900;
}
.body[class] .u-fz17 {
  font-size: calc(17 * 100vw / var(--vw-base));
}
.body[class] .u-fz20 {
  font-size: calc(20 * 100vw / var(--vw-base));
}
.body[class] .u-fz23 {
  font-size: calc(23 * 100vw / var(--vw-base));
}
.body[class] .u-fz24 {
  font-size: calc(24 * 100vw / var(--vw-base));
}
.body[class] .u-fz27 {
  font-size: calc(27 * 100vw / var(--vw-base));
}
.body[class] .u-fz30 {
  font-size: calc(30 * 100vw / var(--vw-base));
}
.body[class] .u-fz25 {
  font-size: calc(25 * 100vw / var(--vw-base));
}
.body[class] .u-fz62 {
  font-size: calc(62 * 100vw / var(--vw-base));
}
.body[class] .u-fz87 {
  font-size: calc(87 * 100vw / var(--vw-base));
}
.body[class] .u-mt0_7em {
  margin-top: 0.7em;
}
.body[class] .u-mt1em {
  margin-top: 1em;
}
.body[class] .u-ml1em {
  margin-left: 1em;
}
.body[class] .u-mh0_3em {
  margin-top: 0.3em;
  margin-bottom: 0.3em;
}
.body[class] .u-lh1_2 {
  line-height: 1.2;
}
.body[class] .u-lh1_4 {
  line-height: 1.4;
}
.body[class] .u-pl0_6em {
  padding-left: 0.6em;
}
.body[class] .u-transy10 {
  transform: translateY(10%);
}
.body[class] .u-displayib {
  display: inline-block;
}
@media (max-width: 767px) {
  .body[class] .u-fz18-sp {
    font-size: calc(18 * 100vw / var(--vw-base));
  }
  .body[class] .u-fz17-sp {
    font-size: calc(17 * 100vw / var(--vw-base));
  }
  .body[class] .u-fz18-sp {
    font-size: calc(18 * 100vw / var(--vw-base));
  }
  .body[class] .u-fz50-sp {
    font-size: calc(50 * 100vw / var(--vw-base));
  }
  .body[class] .u-fz10-sp {
    font-size: calc(10 * 100vw / var(--vw-base));
  }
  .body[class] .u-fz13-sp {
    font-size: calc(13 * 100vw / var(--vw-base));
  }
  .body[class] .u-fz14-sp {
    font-size: calc(14 * 100vw / var(--vw-base));
  }
  .body[class] .u-fz15-sp {
    font-size: calc(15 * 100vw / var(--vw-base));
  }
  .body[class] .u-fz16-sp {
    font-size: calc(16 * 100vw / var(--vw-base));
  }
  .body[class] .u-fz17-sp {
    font-size: calc(17 * 100vw / var(--vw-base));
  }
  .body[class] .u-fz20-sp {
    font-size: calc(20 * 100vw / var(--vw-base));
  }
  .body[class] .u-fz23-sp {
    font-size: calc(23 * 100vw / var(--vw-base));
  }
  .body[class] .u-fz24-sp {
    font-size: calc(24 * 100vw / var(--vw-base));
  }
  .body[class] .u-fz27-sp {
    font-size: calc(27 * 100vw / var(--vw-base));
  }
  .body[class] .u-fz30-sp {
    font-size: calc(30 * 100vw / var(--vw-base));
  }
  .body[class] .u-fz25-sp {
    font-size: calc(25 * 100vw / var(--vw-base));
  }
  .body[class] .u-fz40-sp {
    font-size: calc(40 * 100vw / var(--vw-base));
  }
  .body[class] .u-fz62-sp {
    font-size: calc(62 * 100vw / var(--vw-base));
  }
  .body[class] .u-fz87-sp {
    font-size: calc(87 * 100vw / var(--vw-base));
  }
  .body[class] .u-mt0_7em-sp {
    margin-top: 0.7em;
  }
  .body[class] .u-mt1em-sp {
    margin-top: 1em;
  }
  .body[class] .u-ml1em-sp {
    margin-left: 1em;
  }
  .body[class] .u-mh0_3em-sp {
    margin-top: 0.3em;
    margin-bottom: 0.3em;
  }
  .body[class] .u-lh1_2-sp {
    line-height: 1.2;
  }
  .body[class] .u-lh1_4-sp {
    line-height: 1.4;
  }
  .body[class] .u-pl0_6em-sp {
    padding-left: 0.6em;
  }
  .body[class] .u-pl0-sp {
    padding-left: 0;
  }
  .body[class] .u-displayb-sp {
    display: block;
  }
}

/*------------------------------
header
------------------------------*/
header {
  padding: calc(20 * 100vw / var(--vw-base)) 0;
}
@media (max-width: 767px) {
  header {
    padding: calc(5 * 100vw / var(--vw-base));
  }
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .header__content {
    padding-right: 5%;
  }
}

.header__logo {
  width: calc(292 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  .header__logo {
    width: calc(100 / var(--inner) * 100%);
  }
}

.header__cta-button {
  display: flex;
  align-items: center;
}
.header__cta-button span {
  display: block;
  font-size: calc(16 * 100vw / var(--vw-base));
  font-weight: 700;
  line-height: 1.1875;
  text-align: center;
}
.header__cta-button a {
  display: flex;
  justify-content: center;
  font-size: calc(25 * 100vw / var(--vw-base));
  font-weight: 700;
  line-height: 1.2;
  border-radius: calc(16 * 100vw / var(--vw-base));
  padding: 0.1em 0.4em;
  margin-top: 0.2em;
}
@media (max-width: 767px) {
  .header__cta-button a {
    font-size: calc(15 * 100vw / var(--vw-base));
    margin-top: 0;
    border-radius: calc(5 * 100vw / var(--vw-base));
  }
}

.header__tel span {
  color: #e95520;
}
@media (max-width: 767px) {
  .header__tel a {
    background: #e95520;
    color: #fff;
  }
}

.header__line {
  margin-left: calc(25 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  .header__line {
    margin-left: calc(10 * 100vw / var(--vw-base));
    background: #00c04b;
    border-radius: calc(16 * 100vw / var(--vw-base));
    color: #fff;
  }
}

.header__cta-note {
  font-size: calc(14 * 100vw / var(--vw-base));
  font-weight: 500;
  text-align: right;
  margin-top: 1em;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .header__cta-note {
    display: none;
  }
}

/*------------------------------
fv
------------------------------*/
.fv {
  background: url(../img/fv_bg.png) no-repeat center center/cover;
  aspect-ratio: 1920/820;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(70 * 100vw / var(--vw-base)) 0 calc(100 * 100vw / var(--vw-base));
  width: 100%;
}
@media (max-width: 767px) {
  .fv {
    background: none;
    overflow: hidden;
    position: relative;
    aspect-ratio: 376/415;
    padding: 0;
  }
  .fv img {
    position: absolute;
    top: 47%;
    left: 54%;
    transform: translate(-50%, -50%);
    aspect-ratio: 1019/846;
    width: 134%;
    max-width: unset;
  }
}

@media (max-width: 767px) {
  .fv__inner {
    padding: 0;
  }
}

/*------------------------------
problem
------------------------------*/
.problem {
  padding: calc(20 * 100vw / var(--vw-base)) 0 calc(140 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  .problem {
    padding: 0 0 calc(40 * 100vw / var(--vw-base));
  }
}

.problem__heading {
  font-size: calc(50 * 100vw / var(--vw-base));
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 767px) {
  .problem__heading {
    font-size: calc(22 * 100vw / var(--vw-base));
    line-height: 1.6363636364;
  }
}

.problem__figure {
  margin-top: calc(55 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  .problem__figure {
    margin-top: calc(15 / var(--inner) * 100%);
  }
}

/*------------------------------
support
------------------------------*/
.support {
  background: #fff0c8;
  padding: calc(100 * 100vw / var(--vw-base)) 0 calc(190 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  .support {
    padding: calc(45 * 100vw / var(--vw-base)) 0;
  }
}

.support-intro__lead {
  font-size: calc(50 * 100vw / var(--vw-base));
  line-height: 1.56;
  font-weight: 700;
  text-align: center;
}
.support-intro__lead em {
  padding: 0 0.3em;
}
@media (max-width: 767px) {
  .support-intro__lead {
    font-size: calc(17 * 100vw / var(--vw-base));
  }
}

.support-intro__lead01 {
  font-size: calc(41 * 100vw / var(--vw-base));
  text-decoration: underline;
}
@media (max-width: 767px) {
  .support-intro__lead01 {
    font-size: calc(16 * 100vw / var(--vw-base));
  }
}

.support-intro__lead02 {
  font-size: calc(50 * 100vw / var(--vw-base));
  margin-top: calc(30 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  .support-intro__lead02 {
    font-size: calc(17 * 100vw / var(--vw-base));
    margin-top: calc(10 / var(--inner) * 100%);
  }
}

.support-intro__lead03 {
  font-size: calc(42 * 100vw / var(--vw-base));
  margin-top: calc(40 / var(--inner) * 100%);
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .support-intro__lead03 {
    font-size: calc(20 * 100vw / var(--vw-base));
    margin-top: calc(10 / var(--inner) * 100%);
  }
}

.support-intro__wrapper {
  display: flex;
  margin-top: calc(105 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  .support-intro__wrapper {
    display: block;
    margin-top: calc(35 / var(--inner) * 100%);
  }
}

.support-intro__body {
  width: 60%;
  font-size: calc(35 * 100vw / var(--vw-base));
  font-weight: 700;
  line-height: 2.2857142857;
}
@media (max-width: 767px) {
  .support-intro__body {
    width: 100%;
    font-size: calc(15 * 100vw / var(--vw-base));
    text-align: center;
    line-height: 1.8;
  }
}

.support-intro__image {
  width: 40%;
  transform: translate(-7%, -3%) scale(1.15);
}
@media (max-width: 767px) {
  .support-intro__image {
    width: 100%;
    text-align: center;
  }
  .support-intro__image img {
    width: calc(204 / var(--inner) * 100%);
    margin-left: 22%;
    margin-top: 10%;
  }
}

.support-intro__message {
  text-align: center;
  font-size: calc(49 * 100vw / var(--vw-base));
  line-height: 1.2040816327;
  font-weight: 700;
  margin-top: 5.8%;
}
.support-intro__message strong {
  font-size: calc(80 * 100vw / var(--vw-base));
  font-weight: 900;
  color: #e95520;
  background: linear-gradient(transparent 60%, #fff 60%);
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .support-intro__message {
    font-size: calc(16 * 100vw / var(--vw-base));
    margin-top: 14.8%;
  }
  .support-intro__message strong {
    font-size: calc(28 * 100vw / var(--vw-base));
  }
}

.support-intro__message01 {
  font-size: calc(42 * 100vw / var(--vw-base));
  line-height: 1.1904761905;
  position: relative;
}
.support-intro__message01::before {
  content: "";
  position: absolute;
  background: url(../img/support2.png) no-repeat center center/100%;
  aspect-ratio: 354/451;
  transform: translate(-50%, -50%);
  width: 15%;
  left: 13.3%;
  top: -150%;
}
@media (max-width: 767px) {
  .support-intro__message01 {
    font-size: calc(16 * 100vw / var(--vw-base));
  }
  .support-intro__message01::before {
    background: url(../img/support2-sp.png) no-repeat center center/100%;
    aspect-ratio: 1/1;
    width: 14%;
    left: 10.3%;
    top: -5%;
  }
}

.support-intro__message02 {
  margin-top: calc(22 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  .support-intro__message02 {
    margin-top: 0;
  }
}

.support-intro__message03 {
  margin-top: calc(40 / var(--inner) * 100%);
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .support-intro__message03 {
    margin-top: calc(20 / var(--inner) * 100%);
  }
}

.support-service {
  padding: calc(100 / var(--inner) * 100%) calc(90 / var(--inner) * 100%) calc(20 / var(--inner) * 100%);
  background: #fff;
  margin-top: calc(80 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  .support-service {
    padding: calc(20 / var(--inner) * 100%) calc(20 / var(--inner) * 100%);
    margin-top: calc(40 / var(--inner) * 100%);
  }
}

.support-service_heading {
  max-width: calc(800 * 100vw / var(--vw-base));
  margin: 0 auto;
  font-size: calc(24 * 100vw / var(--vw-base));
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  background: #e95520;
  text-align: center;
  padding-bottom: 0.7em;
}
.support-service_heading strong {
  display: block;
  font-size: calc(55 * 100vw / var(--vw-base));
  font-weight: 900;
}
@media (max-width: 767px) {
  .support-service_heading {
    font-size: calc(12 * 100vw / var(--vw-base));
  }
  .support-service_heading strong {
    font-size: calc(21 * 100vw / var(--vw-base));
  }
}

.support-service__content {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .support-service__content {
    position: relative;
  }
}

.support-service__body {
  width: 57%;
  color: #e95520;
  margin-top: calc(30 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  .support-service__body {
    width: 72%;
    margin-top: calc(10 / var(--inner) * 100%);
  }
}

.support-service__label {
  font-size: calc(30 * 100vw / var(--vw-base));
  font-weight: 500;
  line-height: 1.2;
  border-bottom: 1px solid #e95520;
  padding-bottom: 0.3em;
  padding-left: 0.5em;
}
@media (max-width: 767px) {
  .support-service__label {
    font-size: calc(13 * 100vw / var(--vw-base));
    padding-left: 0.2em;
  }
}

.support-service__list li {
  font-size: calc(33 * 100vw / var(--vw-base));
  font-weight: 700;
  line-height: 1.3636363636;
  padding: 0.7em 0.8em;
  border-bottom: 1px solid #e95520;
}
.support-service__list li span {
  line-height: 1;
  position: relative;
  margin-right: 1.3em;
}
.support-service__list li span::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid #e95520;
  aspect-ratio: 1/1;
  transform: translate(-50%, -50%);
  width: 1.5em;
  left: 50%;
  top: 50%;
}
@media (max-width: 767px) {
  .support-service__list li {
    font-size: calc(13 * 100vw / var(--vw-base));
    padding: 0.5em 0.8em;
    padding-right: 0;
  }
}

.support-service__image {
  width: 40%;
  transform: translateX(11%);
}
@media (max-width: 767px) {
  .support-service__image {
    position: absolute;
    top: 57%;
    left: 89%;
    transform: translate(-50%, -50%);
    width: 29%;
  }
}

.support-service__message {
  max-width: calc(580 * 100vw / var(--vw-base));
  margin: 0 auto;
  margin-top: calc(130 / var(--inner) * 100%);
  text-align: center;
  padding: calc(40 * 100vw / var(--vw-base)) 6% 0;
  padding-top: 3%;
  background: url(../img/img_bubble02.png) no-repeat center center/100%;
  aspect-ratio: 1160/581;
  position: relative;
}
.support-service__message::before {
  content: "";
  position: absolute;
  background: url(../img/support3.png) no-repeat center center/100%;
  aspect-ratio: 403/450;
  transform: translate(-50%, -50%);
  width: 35%;
  left: -8.7%;
  top: -6%;
}
.support-service__message strong {
  font-size: calc(45 * 100vw / var(--vw-base));
  font-weight: 700;
  line-height: 1.2222222222;
  color: #e95520;
  font-feature-settings: "palt";
  width: calc(100% + 2em);
  margin-left: 50%;
  transform: translateX(-50%);
  display: block;
  margin-top: 0.2em;
}
@media (max-width: 767px) {
  .support-service__message {
    width: 85%;
    margin: 0 auto;
    margin-top: calc(70 / var(--inner) * 100%);
  }
  .support-service__message::before {
    background: url(../img/support3-sp.png) no-repeat center center/100%;
    aspect-ratio: 146/198;
    width: 28%;
    left: 0.3%;
    top: -16%;
  }
  .support-service__message strong {
    font-size: calc(19 * 100vw / var(--vw-base));
  }
}

.support-service__message-lead {
  font-size: calc(25 * 100vw / var(--vw-base));
  font-weight: 500;
  line-height: 1.52;
  border-bottom: 1px solid #000;
  padding-bottom: 0.5em;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .support-service__message-lead {
    font-size: calc(13 * 100vw / var(--vw-base));
  }
}

.support-service__catch {
  font-size: calc(32 * 100vw / var(--vw-base));
  font-weight: 500;
  line-height: 1.625;
  text-align: center;
  margin-top: 2%;
}
.support-service__catch strong {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 900;
  line-height: 1;
  color: #e95520;
  font-size: calc(175 * 100vw / var(--vw-base));
  background: linear-gradient(transparent 55%, #fff096 55%);
  font-feature-settings: "palt";
  padding-bottom: 0.15em;
}
@media (max-width: 767px) {
  .support-service__catch {
    font-size: calc(14 * 100vw / var(--vw-base));
  }
  .support-service__catch strong {
    font-size: calc(50 * 100vw / var(--vw-base));
    padding: 0 0.3em 0.15em;
  }
}

.support-service__figure {
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  padding: 13.4% 7% 8%;
}
.support-service__figure > div {
  width: 60%;
}
.support-service__figure > div p:nth-child(1) {
  padding-left: 1em;
}
.support-service__figure > div p:nth-child(2) {
  margin-top: 1.4em;
  padding-left: 0.5em;
}
.support-service__figure picture {
  width: 39%;
  margin-top: -5%;
}
@media (max-width: 767px) {
  .support-service__figure {
    flex-direction: column-reverse;
    padding: 13.4% 0% 8%;
  }
  .support-service__figure > div {
    width: 100%;
  }
  .support-service__figure > div p:nth-child(1) {
    padding-left: 0;
    text-align: center;
  }
  .support-service__figure > div p:nth-child(2) {
    margin-top: 0.9em;
    padding-left: 0.5em;
    text-align: center;
  }
  .support-service__figure > div p:nth-child(3) {
    text-align: center;
    margin-top: 0.1em;
  }
  .support-service__figure picture {
    width: 73%;
    margin-top: 5%;
    display: block;
    margin: -1% auto 3%;
  }
}

.support-graph {
  font-weight: 500;
  font-size: calc(42 * 100vw / var(--vw-base));
  color: #e95520;
  text-align: center;
  display: flex;
  justify-content: flex-start;
  width: 104%;
  margin-left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .support-graph {
    justify-content: space-between;
    width: 100%;
    margin-left: 0;
    transform: unset;
    font-size: calc(20 * 100vw / var(--vw-base));
    position: relative;
  }
  .support-graph::before {
    content: "";
    position: absolute;
    background: url(../img/icon_arrow5.png) no-repeat center center/100%;
    aspect-ratio: 165/136;
    transform: translate(-50%, -50%) rotate(90deg);
    width: 13%;
    left: 50%;
    top: 134%;
  }
}

.support-graph-item {
  font-feature-settings: "palt";
  line-height: 1.3;
  border: 1px solid #e95520;
  padding: 1.5% 0;
  width: 29%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}
.support-graph-item::before {
  content: "";
  position: absolute;
  background: url(../img/icon_arrow5.png) no-repeat center center/100%;
  aspect-ratio: 165/136;
  transform: translate(-50%, -50%);
  width: 26%;
  left: 105%;
  top: 54%;
}
.support-graph-item:nth-child(n+2) {
  margin-left: 2.4%;
}
@media (max-width: 767px) {
  .support-graph-item {
    width: 48%;
  }
  .support-graph-item:nth-child(n+2)::before {
    display: none;
  }
}

.support-graph-item-dec1 {
  position: relative;
}
.support-graph-item-dec1::before {
  content: "";
  position: absolute;
  background: url(../img/dec2.png) no-repeat center center/100%;
  aspect-ratio: 1/1;
  transform: translate(-50%, -50%);
  width: 13%;
  left: 50%;
  top: -25%;
}

.support-graph-item2 {
  text-align: center;
  font-feature-settings: "palt";
  color: #fff;
  position: absolute;
  width: 38%;
  top: 46%;
  left: 81.6%;
  transform: translate(-50%, -50%);
}
.support-graph-item2::before {
  content: "";
  position: absolute;
  background: url(../img/dec3.png) no-repeat center center/100%;
  aspect-ratio: 800/634;
  transform: translate(-50%, -45%);
  width: 100%;
  left: 50%;
  top: 50%;
}
.support-graph-item2 > p {
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .support-graph-item2 {
    top: 290%;
    width: 85%;
    left: 50%;
  }
}

.support-service__note {
  font-size: calc(25 * 100vw / var(--vw-base));
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  color: #646464;
  margin-top: calc(115 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  .support-service__note {
    font-size: calc(10 * 100vw / var(--vw-base));
    margin-top: calc(265 * 100vw / var(--vw-base));
  }
}

.support-detail {
  margin-top: 8.5%;
  background: #fff;
  padding: 8% 8.6%;
}
@media (max-width: 767px) {
  .support-detail {
    padding: 15% 6.5% 6%;
  }
}

.support-detail__heading {
  font-size: calc(50 * 100vw / var(--vw-base));
  font-weight: 700;
  text-align: center;
  color: #e95520;
}
@media (max-width: 767px) {
  .support-detail__heading {
    font-size: calc(20 * 100vw / var(--vw-base));
  }
}

.support-detail__list {
  display: flex;
  justify-content: space-between;
  margin-top: 6%;
}
@media (max-width: 767px) {
  .support-detail__list {
    flex-direction: column;
  }
}

.support-detail__item {
  background: #fff0c8;
  width: 30%;
  padding: 3% 2.5%;
}
.support-detail__item:nth-child(1) {
  position: relative;
}
.support-detail__item:nth-child(1)::before {
  content: "";
  position: absolute;
  background: url(../img/support4.png) no-repeat center center/100%;
  aspect-ratio: 281/260;
  transform: translate(-50%, -50%);
  width: 47%;
  left: 70%;
  top: 71%;
}
@media (max-width: 767px) {
  .support-detail__item {
    width: 100%;
    padding: 0% 2.5% 7%;
  }
  .support-detail__item:nth-child(n+2) {
    margin-top: 8%;
  }
  .support-detail__item:nth-child(1)::before {
    width: 36%;
    left: 78%;
    top: 67%;
  }
}

.support-detail__item-label {
  font-size: calc(28 * 100vw / var(--vw-base));
  font-weight: 700;
  text-align: center;
  color: #e95520;
  width: calc(100% + 2em);
  margin-left: 50%;
  transform: translateX(-50%);
  margin-bottom: 0.6em;
}
@media (max-width: 767px) {
  .support-detail__item-label {
    font-size: calc(20 * 100vw / var(--vw-base));
    transform: unset;
    width: 100%;
    margin-left: 0;
    margin-top: 1em;
    margin-bottom: 0.8em;
  }
}

.support-detail__item-list li {
  font-size: calc(21 * 100vw / var(--vw-base));
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.3;
  font-feature-settings: "palt";
  letter-spacing: -0.02em;
}
.support-detail__item-list li:nth-child(n+2) {
  margin-top: 0.2em;
}
.support-detail__item-list li span {
  font-size: calc(15 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  .support-detail__item-list li {
    font-size: calc(15 * 100vw / var(--vw-base));
    line-height: 1.5;
  }
}

.support-detail__item-message {
  text-align: center;
  color: #646464;
  margin-top: 1em;
  font-size: calc(25 * 100vw / var(--vw-base));
  line-height: 1.5;
}
@media (max-width: 767px) {
  .support-detail__item-message {
    font-size: calc(10 * 100vw / var(--vw-base));
  }
}

.benefits {
  margin-top: 7.5%;
}
@media (max-width: 767px) {
  .benefits {
    margin-top: 12.5%;
  }
}

.benefits__heading {
  font-size: calc(35 * 100vw / var(--vw-base));
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}
.benefits__heading strong {
  display: block;
  width: 6em;
  margin: 0 auto;
  font-size: calc(130 * 100vw / var(--vw-base));
  font-weight: 900;
  color: #e95520;
  background: linear-gradient(transparent 60%, #fff096 60%);
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .benefits__heading {
    font-size: calc(13 * 100vw / var(--vw-base));
  }
  .benefits__heading strong {
    font-size: calc(44 * 100vw / var(--vw-base));
    background: linear-gradient(transparent 55%, #fff096 55%);
  }
}

.benefits__heading--sub {
  margin-bottom: calc(50 / var(--inner) * 100%);
  font-size: calc(50 * 100vw / var(--vw-base));
  font-weight: 900;
  line-height: 1.4;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}
.benefits__heading--sub::before {
  display: inline-block;
  content: "";
  position: relative;
  background: url(../img/benefits_text.png) no-repeat center center/contain;
  width: 2.6em;
  aspect-ratio: 1/1;
  margin-right: 0.6em;
}
@media (max-width: 767px) {
  .benefits__heading--sub {
    font-size: calc(17 * 100vw / var(--vw-base));
    margin-bottom: calc(10 / var(--inner) * 100%);
  }
  .benefits__heading--sub::before {
    width: 3.3em;
    margin-right: 0.5em;
  }
}

.benefits__container {
  margin-top: calc(110 / var(--inner) * 100%);
  background: #e95520;
  padding: calc(32 / var(--inner) * 100%) calc(40 / var(--inner) * 100%) calc(70 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  .benefits__container {
    padding: calc(20 / var(--inner) * 100%);
    margin-top: calc(40 / var(--inner) * 100%);
  }
}

.benefits__section:nth-child(n+2) {
  margin-top: calc(180 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  .benefits__section:nth-child(n+2) {
    margin-top: calc(24 / var(--inner) * 100%);
  }
}

.benefits__section-heading {
  font-size: calc(45 * 100vw / var(--vw-base));
  font-weight: 700;
  line-height: 1.3333333333;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .benefits__section-heading {
    font-size: calc(19 * 100vw / var(--vw-base));
  }
}

@media (min-width: 768px) {
  .benefits__section-heading2 {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -100%);
    width: 100%;
    height: 2lh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.benefits__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: calc(50 * 100vw / var(--vw-base)) calc(60 / var(--inner) * 100%);
  margin-top: calc(30 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  .benefits__wrapper {
    display: block;
    margin-top: calc(20 / var(--inner) * 100%);
  }
}

.benefits__item-wrap {
  width: calc(50% - (60 / var(--inner) * 100%) / 2);
  position: relative;
}
@media (min-width: 768px) {
  .benefits__item-wrap:has(.benefits__item--4) {
    display: flex;
    align-items: flex-end;
  }
}
@media (max-width: 767px) {
  .benefits__item-wrap {
    width: 100%;
  }
  .benefits__item-wrap:nth-child(n+2) {
    margin-top: 6%;
  }
}

.benefits__item {
  background: #fff;
  padding: calc(45 / var(--inner) * 100%) 8%;
  padding-top: 9.6%;
  padding-bottom: 7%;
}
@media (min-width: 768px) {
  .benefits__item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .benefits__item {
    width: 100%;
    padding: calc(20 / var(--inner) * 100%) calc(15 / var(--inner) * 100%) calc(20 / var(--inner) * 100%);
  }
  .benefits__item:nth-child(n+2) {
    margin-top: calc(20 / var(--inner) * 100%);
  }
}

.benefits__item--1 {
  position: relative;
}
.benefits__item--1::before {
  content: "";
  position: absolute;
  background: url(../img/benefits1.png) no-repeat center center/100%;
  aspect-ratio: 338/271;
  transform: translate(-50%, -50%);
  width: 32%;
  left: 75%;
  top: 29%;
}
@media (max-width: 767px) {
  .benefits__item--1 {
    padding-top: calc(45 / var(--inner) * 100%);
  }
}

.benefits__item--2 {
  position: relative;
}
.benefits__item--2::before {
  content: "";
  position: absolute;
  background: url(../img/benefits2.png) no-repeat center center/100%;
  aspect-ratio: 369/229;
  transform: translate(-50%, -50%);
  width: 33%;
  left: 78%;
  top: 50%;
}

.benefits__item--3 {
  position: relative;
}
.benefits__item--3::before {
  content: "";
  position: absolute;
  background: url(../img/benefits3.png) no-repeat center center/100%;
  aspect-ratio: 449/264;
  transform: translate(-50%, -50%);
  width: 42%;
  left: 75%;
  top: 26%;
}

@media (min-width: 768px) {
  .benefits__item--4 {
    width: 95%;
    margin-left: auto;
    height: 96%;
    justify-content: flex-start;
    padding-left: 4%;
    padding-right: 6%;
    padding-top: 6%;
  }
}
.benefits__item-list li {
  font-size: calc(24 * 100vw / var(--vw-base));
  font-weight: 400;
  line-height: 1.7916666667;
  position: relative;
  padding-left: 1.5em;
  font-feature-settings: "palt";
  width: calc(100% + 1em);
}
.benefits__item-list li::before {
  content: "♦︎";
  position: absolute;
  top: 0.4em;
  left: 0.7em;
  color: #e95520;
  font-size: calc(18 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  .benefits__item-list li {
    font-size: calc(16 * 100vw / var(--vw-base));
    line-height: 1.7;
  }
  .benefits__item-list li::before {
    top: 0;
    left: 0.1em;
  }
}

.benefits__item-point {
  margin-top: 1em;
  font-size: calc(40 * 100vw / var(--vw-base));
  font-weight: 700;
  color: #fff;
  background: #e95520;
  padding: 0.375em 0;
  text-align: center;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .benefits__item-point {
    font-size: calc(22 * 100vw / var(--vw-base));
    width: 94%;
    margin: 6% auto 0;
    padding: 0.575em 0;
  }
}

.benefits__item-point--2 p:nth-child(1) span {
  background: #fff;
  color: #e95520;
  transform: translateX(-16%) rotate(-8deg);
  position: relative;
  display: inline-block;
  padding: 0.1em;
  margin-right: 0.3em;
}
.benefits__item-point--2 p:nth-child(2) {
  margin-top: 0.3em;
}
@media (min-width: 768px) {
  .benefits__item-point--2 {
    padding: 0.6em 0;
    margin-top: 0.5em;
  }
}

.benefits__message {
  margin-top: calc(90 / var(--inner) * 100%);
  padding: calc(35 / var(--inner) * 100%);
  border: 1px solid #e95520;
}
@media (max-width: 767px) {
  .benefits__message {
    padding: calc(16 / var(--inner) * 100%) calc(5 / var(--inner) * 100%);
    margin-top: calc(15 / var(--inner) * 100%);
  }
}

.benefits__message-label {
  font-size: calc(30 * 100vw / var(--vw-base));
  font-weight: 700;
  line-height: 1.2;
  color: #e95520;
  text-align: center;
}
@media (max-width: 767px) {
  .benefits__message-label {
    font-size: calc(14 * 100vw / var(--vw-base));
  }
}

.benefits__message-text {
  font-size: calc(20 * 100vw / var(--vw-base));
  font-weight: 400;
  line-height: 2;
  color: #e95520;
  text-align: center;
  margin-top: calc(30 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  .benefits__message-text {
    font-size: calc(10 * 100vw / var(--vw-base));
    margin-top: 0.5em;
  }
}

.benefits__item-list2 {
  padding: 0 12% 0 13%;
  position: relative;
}
.benefits__item-list2::before {
  content: "";
  position: absolute;
  background: #e95520;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 1px;
  left: 50%;
  top: 50%;
}
.benefits__item-list2 > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.benefits__item-list2 > div::before {
  content: "";
  position: absolute;
  background: url(../img/dec1.png) no-repeat center center/100%;
  aspect-ratio: 133/40;
  transform: translate(-50%, -50%);
  width: 20%;
  left: 47%;
  top: 59%;
}
.benefits__item-list2 > div:nth-child(2) {
  margin-top: 3%;
}
.benefits__item-list2 > div p {
  line-height: 1.4;
  font-weight: 900;
}
.benefits__item-list2 > div p:nth-child(1) {
  font-size: calc(24 * 100vw / var(--vw-base));
  font-weight: 500;
}
.benefits__item-list2 > div p:nth-child(2) {
  font-size: calc(60 * 100vw / var(--vw-base));
  color: #e95520;
  width: 2.3em;
}
.benefits__item-list2 > div p span {
  font-size: calc(40 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  .benefits__item-list2 {
    padding: 0 2%;
  }
  .benefits__item-list2 > div {
    padding: 0 8%;
  }
  .benefits__item-list2 > div::before {
    width: 17%;
  }
  .benefits__item-list2 > div p {
    line-height: 1.4;
    font-weight: 900;
  }
  .benefits__item-list2 > div p:nth-child(1) {
    font-size: calc(15 * 100vw / var(--vw-base));
    font-weight: 500;
  }
  .benefits__item-list2 > div p:nth-child(2) {
    font-size: calc(40 * 100vw / var(--vw-base));
    color: #e95520;
    width: 2.3em;
  }
  .benefits__item-list2 > div p span {
    font-size: calc(27 * 100vw / var(--vw-base));
  }
}

/*------------------------------
cta
------------------------------*/
.cta {
  padding: calc(210 * 100vw / var(--vw-base)) 0;
}
@media (max-width: 767px) {
  .cta {
    padding: calc(50 * 100vw / var(--vw-base)) 0 calc(40 * 100vw / var(--vw-base));
  }
}

.cta__button a {
  max-width: calc(715 / var(--inner) * 100%);
  margin: 0 auto;
  margin-top: calc(35 / var(--inner) * 100%);
  padding: 2.2% 0;
  border-radius: calc(65 * 100vw / var(--vw-base));
}
.cta__button a::after {
  width: 1em;
  transform: translateX(60%);
}
.cta__button > span {
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .cta__button {
    width: calc(275 / var(--inner) * 100%);
    margin: 0 auto;
  }
}

/*------------------------------
about
------------------------------*/
.about {
  background: #fff0c8;
  padding: calc(160 * 100vw / var(--vw-base)) 0 calc(220 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  .about {
    padding: calc(50 * 100vw / var(--vw-base)) 0 calc(20 * 100vw / var(--vw-base));
  }
}

.about__heading {
  font-size: calc(44 * 100vw / var(--vw-base));
  font-weight: 900;
  line-height: 1.5909090909;
  text-align: center;
}
@media (max-width: 767px) {
  .about__heading {
    font-size: calc(18 * 100vw / var(--vw-base));
  }
}

.about__catch {
  max-width: calc(760 / var(--inner) * 100%);
  margin: 0 auto;
  margin-top: calc(80 / var(--inner) * 100%);
  font-size: calc(50 * 100vw / var(--vw-base));
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  color: #e95520;
  background: url(../img/img_bubble.png) no-repeat center center/100%;
  aspect-ratio: 1527/508;
  padding-top: calc(40 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  .about__catch {
    margin-top: calc(20 / var(--inner) * 100%);
    font-size: calc(18 * 100vw / var(--vw-base));
    padding-top: calc(15 / var(--inner) * 100%);
    width: 83%;
  }
}

.about__service {
  max-width: calc(835 / var(--inner) * 100%);
  margin: 0 auto;
  margin-top: calc(55 / var(--inner) * 100%);
  display: flex;
  gap: 0 calc(35 / var(--inner) * 100%);
}
.about__service li {
  width: calc(33.3% - (35 / var(--inner) * 100%) * 2 / 3);
  position: relative;
}
.about__service li::before {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -8px;
  background: #f08232;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.about__service li span {
  position: relative;
  font-size: calc(45 * 100vw / var(--vw-base));
  font-weight: 700;
  line-height: 1.3333333333;
  color: #fff;
  background: #e95520;
  border: 5px solid #fff;
  border-radius: 50%;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .about__service {
    margin-top: calc(20 / var(--inner) * 100%);
    gap: 0 calc(13 * 100vw / var(--vw-base));
    padding: 0 7%;
  }
  .about__service li {
    width: calc(33.3% - (13 / var(--inner) * 100%) * 2 / 3);
  }
  .about__service li::before {
    bottom: -3px;
    right: -3px;
  }
  .about__service li span {
    font-size: calc(18 * 100vw / var(--vw-base));
    border: 2px solid #fff;
  }
}

.about__items {
  margin-top: calc(70 / var(--inner) * 100%);
  display: flex;
  flex-wrap: wrap;
  gap: calc(50 * 100vw / var(--vw-base)) calc(100 / var(--inner) * 100%);
}
.about__items li {
  width: calc(50% - (100 / var(--inner) * 100%) / 2);
}
@media (max-width: 767px) {
  .about__items {
    display: block;
    margin-top: calc(20 / var(--inner) * 100%);
    padding: 0 7%;
  }
  .about__items li {
    width: 100%;
  }
  .about__items li:nth-child(n+2) {
    margin-top: calc(27 / var(--inner) * 100%);
  }
}

@media (max-width: 767px) {
  .about__items2 {
    padding: 0 7%;
  }
}

.about__item {
  background: #fff;
  position: relative;
  padding: calc(55 * 100vw / var(--vw-base));
  padding-bottom: 6%;
}
.about__item::after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #e95520;
  width: calc(100% - (40 * 100vw / var(--vw-base)));
  height: calc(100% - (40 * 100vw / var(--vw-base)));
}
@media (max-width: 767px) {
  .about__item {
    padding: calc(30 * 100vw / var(--vw-base)) calc(24 * 100vw / var(--vw-base));
  }
  .about__item::after {
    width: calc(100% - (22 * 100vw / var(--vw-base)));
    height: calc(100% - (30 * 100vw / var(--vw-base)));
  }
}

@media (max-width: 767px) {
  .about__item:nth-child(1) .about__item-figure {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .about__item:nth-child(2) .about__item-figure {
    width: 80%;
  }
}

@media (max-width: 767px) {
  .about__item:nth-child(3) .about__item-figure {
    width: 64%;
  }
}

@media (max-width: 767px) {
  .about__item:nth-child(4) .about__item-figure {
    width: 80%;
  }
}

.about__item--05 {
  margin-top: calc(100 / var(--inner) * 100%);
  position: relative;
}
.about__item--05::before {
  content: "";
  position: absolute;
  background: url(../img/about5.png) no-repeat center center/100%;
  aspect-ratio: 528/697;
  transform: translate(-50%, -50%);
  width: 22%;
  left: 80%;
  top: 52%;
}
@media (min-width: 768px) {
  .about__item--05 {
    padding-top: 6%;
    padding-bottom: 6%;
    padding-left: 9%;
  }
}
@media (max-width: 767px) {
  .about__item--05 {
    margin-top: calc(20 / var(--inner) * 100%);
    padding-top: 57%;
  }
  .about__item--05::before {
    width: 38%;
    left: 51%;
    top: 23%;
  }
}

.about__item--06 {
  margin-top: calc(80 / var(--inner) * 100%);
}
@media (min-width: 768px) {
  .about__item--06 {
    padding-top: 6%;
    padding-bottom: 3%;
  }
}
@media (max-width: 767px) {
  .about__item--06 {
    margin-top: calc(20 / var(--inner) * 100%);
  }
}

.about__item-figure {
  aspect-ratio: 440/297;
}
.about__item-figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .about__item-figure {
    aspect-ratio: unset;
    margin: 0 auto;
  }
}

.about__item-heading {
  font-size: calc(28 * 100vw / var(--vw-base));
  line-height: 1.5;
  font-weight: 900;
  color: #e95520;
  text-align: center;
  margin-top: 0.1em;
}
@media (max-width: 767px) {
  .about__item-heading {
    font-size: calc(16 * 100vw / var(--vw-base));
    margin-top: 1em;
  }
}

.about__item-heading--2 {
  font-size: calc(35 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  .about__item-heading--2 {
    font-size: calc(18 * 100vw / var(--vw-base));
  }
}

.about__item-descrption {
  font-size: calc(18 * 100vw / var(--vw-base));
  font-weight: 400;
  line-height: 1.9444444444;
  margin-top: 0.6em;
}
@media (max-width: 767px) {
  .about__item-descrption {
    font-size: calc(13 * 100vw / var(--vw-base));
    line-height: 1.5;
    margin-top: 0;
  }
}

.about__item-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .about__item-wrapper {
    flex-direction: column-reverse;
  }
}

.about__item-body {
  width: 60%;
}
@media (max-width: 767px) {
  .about__item-body {
    width: 100%;
  }
}

.about__item-image {
  width: 30%;
}
@media (max-width: 767px) {
  .about__item-image {
    width: 100%;
  }
}

/*------------------------------
faq
------------------------------*/
.faq {
  padding: calc(100 * 100vw / var(--vw-base)) 0 calc(180 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  .faq {
    padding: calc(30 * 100vw / var(--vw-base)) 0 calc(50 * 100vw / var(--vw-base));
  }
}

.faq__list {
  margin-top: calc(30 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  .faq__list {
    margin-top: calc(20 / var(--inner) * 100%);
  }
}

.faq__item {
  background: #fffab4;
  padding: calc(45 / var(--inner) * 100%) calc(60 / var(--inner) * 100%);
}
.faq__item:nth-child(n+2) {
  margin-top: calc(40 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  .faq__item {
    padding: calc(10 / var(--inner) * 100%) calc(15 / var(--inner) * 100%);
  }
  .faq__item:nth-child(n+2) {
    margin-top: calc(10 / var(--inner) * 100%);
  }
}

.faq__item-q {
  font-size: calc(22 * 100vw / var(--vw-base));
  font-weight: 700;
  position: relative;
  padding: 1em 0;
  padding-left: calc(96 * 100vw / var(--vw-base));
}
.faq__item-q::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/icon_q.png) no-repeat center center/contain;
  width: calc(60 * 100vw / var(--vw-base));
  aspect-ratio: 1/1;
}
.faq__item-q::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../img/icon_arrow02.png) no-repeat center center/contain;
  width: 1.7em;
  aspect-ratio: 88/61;
  transition: all 0.5s;
}
.faq__item-q.is-open::after {
  transform: translateY(-50%) rotate(180deg);
}
@media (max-width: 767px) {
  .faq__item-q {
    font-size: calc(13 * 100vw / var(--vw-base));
    line-height: 1.5384615385;
    padding: 0.4em 0;
    padding-left: calc(30 * 100vw / var(--vw-base));
  }
  .faq__item-q::before {
    width: calc(20 * 100vw / var(--vw-base));
  }
  .faq__item-q::after {
    width: 0.8em;
  }
}

.faq__item-a {
  display: none;
  margin-top: calc(20 / var(--inner) * 100%);
  font-size: calc(16 * 100vw / var(--vw-base));
  font-weight: 300;
  line-height: 1.875;
  position: relative;
  padding: 1em 0;
  padding-left: calc(96 * 100vw / var(--vw-base));
}
.faq__item-a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/icon_a.png) no-repeat center center/contain;
  width: calc(60 * 100vw / var(--vw-base));
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .faq__item-a {
    margin-top: 0;
    font-size: calc(13 * 100vw / var(--vw-base));
    padding: 0.4em 0;
    padding-left: calc(30 * 100vw / var(--vw-base));
    padding-right: calc(20 / var(--inner) * 100%);
  }
  .faq__item-a::before {
    top: 0.7em;
    transform: unset;
    width: calc(20 * 100vw / var(--vw-base));
  }
}

/*------------------------------
company
------------------------------*/
.company {
  padding-bottom: calc(200 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  .company {
    padding-bottom: calc(70 * 100vw / var(--vw-base));
  }
}

.company__wrapper {
  margin-top: calc(30 / var(--inner) * 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .company__wrapper {
    display: block;
    margin-top: calc(10 / var(--inner) * 100%);
  }
}

.company__info {
  border-top: 1px solid #000;
  width: calc(555 / var(--inner) * 100%);
  display: flex;
  flex-wrap: wrap;
}
.company__info dt, .company__info dd {
  padding: 4% 0;
  border-bottom: 1px solid #000;
}
.company__info dt {
  width: 31%;
  font-size: calc(22 * 100vw / var(--vw-base));
  font-weight: 500;
  line-height: 1.7272727273;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 1.3em;
}
.company__info dd {
  width: 69%;
  font-size: calc(19 * 100vw / var(--vw-base));
  font-weight: 400;
  line-height: 1.8421052632;
  padding-left: 2.1em;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .company__info {
    width: 100%;
    border-top: 1px solid #c8c8c8;
  }
  .company__info:nth-child(2) {
    border-top: none;
  }
  .company__info dt, .company__info dd {
    padding: 3% 0;
    font-size: calc(12 * 100vw / var(--vw-base));
    border-bottom: 1px solid #c8c8c8;
  }
  .company__info dt {
    width: calc(88 / var(--inner) * 100%);
    padding-left: 0.7em;
  }
  .company__info dd {
    width: calc(100% - (88 / var(--inner) * 100%));
    padding-left: 3em;
  }
}

/*------------------------------
contact
------------------------------*/
.contact {
  background: #fff0c8;
  padding-top: calc(160 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  .contact {
    padding-top: calc(45 * 100vw / var(--vw-base));
  }
}

.contact__form {
  background: #fff;
  padding: calc(60 / var(--inner) * 100%) calc(50 / var(--inner) * 100%) calc(80 / var(--inner) * 100%);
  margin-top: calc(40 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  .contact__form {
    margin-top: calc(10 / var(--inner) * 100%);
    padding: calc(20 / var(--inner) * 100%) calc(15 / var(--inner) * 100%);
  }
}

.contact__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contact__items dt:nth-of-type(n + 2), .contact__items dd:nth-of-type(n + 2) {
  margin-top: calc(50 * 100vw / var(--vw-base));
}
.contact__items dt {
  width: 25.5%;
  font-size: calc(22 * 100vw / var(--vw-base));
  font-weight: 500;
  line-height: 1.7272727273;
  align-self: center;
}
.contact__items dd {
  width: 74.5%;
}
.contact__items dd input[type=text],
.contact__items dd input[type=tel],
.contact__items dd input[type=email],
.contact__items dd textarea {
  font: inherit;
  font-family: inherit;
  color: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  font-size: calc(22 * 100vw / var(--vw-base));
  font-weight: 500;
  width: 100%;
  border: 1px solid #c8c8c8;
  border-radius: calc(10 * 100vw / var(--vw-base));
  padding: 1.5em 0.5em;
}
.contact__items dd textarea {
  min-height: 290px;
  resize: vertical;
}
@media (max-width: 767px) {
  .contact__items dt:nth-of-type(n + 2), .contact__items dd:nth-of-type(n + 2) {
    margin-top: calc(15 * 100vw / var(--vw-base));
  }
  .contact__items dt {
    font-size: calc(12 * 100vw / var(--vw-base));
    width: 40%;
  }
  .contact__items dd {
    font-size: calc(14 * 100vw / var(--vw-base));
    width: 60%;
  }
  .contact__items dd input[type=text],
.contact__items dd input[type=tel],
.contact__items dd input[type=email],
.contact__items dd textarea {
    padding: 0.5em;
    font-size: calc(16 * 100vw / var(--vw-base));
    padding: 0em 0.5em;
    border-radius: calc(2.5 * 100vw / var(--vw-base));
  }
  .contact__items dd textarea {
    min-height: 70px;
  }
}

.contact__required {
  display: inline-block;
  font-size: calc(20 * 100vw / var(--vw-base));
  font-weight: 500;
  line-height: 1.75;
  color: #fff;
  background: #e95520;
  padding: 0.2em 0.4em;
  margin-right: 1em;
}
@media (max-width: 767px) {
  .contact__required {
    font-size: calc(11 * 100vw / var(--vw-base));
    padding: 0 0.5em;
    margin-right: 0.6em;
  }
}

.contact__option {
  display: inline-block;
  font-size: calc(20 * 100vw / var(--vw-base));
  font-weight: 500;
  line-height: 1.75;
  padding: 0.2em 0.4em;
  border: 1px solid #000;
  margin-right: 1em;
}
@media (max-width: 767px) {
  .contact__option {
    font-size: calc(11 * 100vw / var(--vw-base));
    padding: 0 0.5em;
    margin-right: 0.6em;
  }
}

.contact__textarea {
  align-self: flex-start !important;
}

.contact__submit {
  margin-top: calc(74 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  .contact__submit {
    margin-top: calc(27 / var(--inner) * 100%);
  }
}

.contact__button {
  cursor: pointer;
  position: relative;
  width: 5.57em;
  margin: 0 auto;
  background: #00c04b;
  font-size: calc(35 * 100vw / var(--vw-base));
  font-weight: 500;
  line-height: 1.2;
  border-radius: 0.57em;
  color: #fff;
  text-align: center;
  padding: 0.57em 0;
}
.contact__button input {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
@media (max-width: 767px) {
  .contact__button {
    font-size: calc(15 * 100vw / var(--vw-base));
  }
}

.wpcf7-response-output { /* エラー&送信完了テキスト */
  font-size: 16px;
  text-align: center;
}

input[type=submit]:disabled {
  opacity: 0.5;
} /* 無効時透明度 */
.wpcf7-list-item {
  margin: 0;
}

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

/*------------------------------
footer
------------------------------*/
footer {
  background: #fff0c8;
  padding: calc(150 * 100vw / var(--vw-base)) 0 calc(135 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  footer {
    padding: calc(45 * 100vw / var(--vw-base)) 0 calc(75 * 100vw / var(--vw-base));
  }
}

.footer__privacy {
  font-size: calc(22 * 100vw / var(--vw-base));
  font-weight: 700;
  line-height: 1.7272727273;
  text-align: center;
  text-decoration: underline;
}
.footer__privacy a {
  padding-left: 1em;
  position: relative;
}
.footer__privacy a::before {
  content: "";
  position: absolute;
  background: url(../img/icon_arrow04.png) no-repeat center center/100%;
  aspect-ratio: 23/24;
  transform: translate(40%, -50%);
  width: 6%;
  left: 0%;
  top: 50%;
}
@media (max-width: 767px) {
  .footer__privacy {
    font-size: calc(14 * 100vw / var(--vw-base));
  }
}

.footer__copyright {
  margin-top: 1.7em;
  font-size: calc(14 * 100vw / var(--vw-base));
  font-weight: 400;
  text-align: center;
}
@media (max-width: 767px) {
  .footer__copyright {
    font-size: calc(11 * 100vw / var(--vw-base));
    margin-top: 1em;
  }
}

/*------------------------------
float
------------------------------*/
.float {
  position: fixed;
  z-index: 3000;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: calc(12 * 100vw / var(--vw-base));
  font-weight: 500;
  display: flex;
}
.float a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5em;
  width: 50%;
  border-width: calc(5 * 100vw / var(--vw-base));
  border-style: solid;
}
.float a:nth-child(1) {
  color: #e95520;
  border-color: #e95520;
}
.float a:nth-child(2) {
  color: #fff;
  background: #00c04b;
  border-color: #00c04b;
}
@media (min-width: 768px) {
  .float {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */