@charset "UTF-8";
/*============================================================================================================
	base
============================================================================================================*/
div, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, th, td, section, article, header, footer, main, nav, span, a, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  img {
    width: 100%;
  }
}

h1, h2, h3, h4, h5, h6, p, li, th, td, dt, dd {
  margin: 0;
  word-wrap: break-word;
}

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

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

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

li {
  list-style: none;
}

/*------------------------------------------
	root
------------------------------------------*/
:root {
  --inner-padding: 10px;
  --inner-width: 1200px;
  --font-size-base: 26px;
  --line-height-base: 1.6;
  --line-height-head: 1.5;
  --letter-spacing: .02em;
  --font-family-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  --font-family-en: "Roboto Condensed", sans-serif;
  --color-txt: #000;
  --color-navy: #171C61;
  --color-green: #469E97;
}
@media screen and (min-width: 768px) {
  :root {
    --body-min-width: 1000px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --inner-padding: 20px;
    --font-size-base: 18px;
  }
}

/*------------------------------------------
	utility
------------------------------------------*/
@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
@media screen and (min-width: 375px) {
  .u-sp-small {
    display: none !important;
  }
}
/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-family: var(--font-family-base);
  -webkit-text-size-adjust: 100%;
}

* {
  letter-spacing: var(--letter-spacing);
}

a {
  letter-spacing: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: var(--line-height-head);
}

.f-robotocon {
  font-weight: 500;
  font-family: var(--font-family-en);
}

/*------------------------------------------
	frame / smooth scroll
------------------------------------------*/
html {
  scroll-behavior: smooth;
}

@media screen and (min-width: 768px) {
  body {
    min-width: var(--body-min-width);
  }
}

/*------------------------------------------
	hover
------------------------------------------*/
@media (hover: hover) {
  a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  a:hover {
    opacity: 0.7;
  }
}
#hamburger nav.open {
  padding-block: 25px;
  height: auto;
}

#hamburger nav ul li:last-of-type {
  margin-top: 0;
}

/*============================================================================================================
	component
============================================================================================================*/
/*------------------------------------------
	inner
------------------------------------------*/
.c-inner01 {
  width: 100%;
  max-width: calc(var(--inner-width) + var(--inner-padding) * 2);
  margin-inline: auto;
  padding-inline: var(--inner-padding);
}

/*------------------------------------------
	tit
------------------------------------------*/
/*	.c-tit01
------------------------------------------*/
.c-tit01 {
  font-weight: 800;
  font-size: 54px;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-tit01 {
    font-size: 30px;
  }
}

/*	.c-tit02
------------------------------------------*/
.c-tit02 {
  font-weight: 700;
  font-size: 48px;
  text-align: center;
  letter-spacing: 0.05em;
}
.c-tit02__en {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 100px;
  margin: 0 auto 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid;
  font-weight: 500;
  font-size: 24px;
  font-family: var(--font-family-en);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-tit02 {
    font-size: 26px;
  }
  .c-tit02__en {
    min-width: 70px;
    margin-bottom: 7px;
    padding-bottom: 4px;
    font-size: 16px;
  }
}

/*------------------------------------------
	btn
------------------------------------------*/
/*	.c-btn01
------------------------------------------*/
.c-btn01 {
  width: min(100%, 442px);
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.5;
}
.c-btn01 a {
  min-height: 67px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 40px;
  border-radius: inherit;
  background: url(../img/common/ico_arrow01.svg) no-repeat right 25px center;
}
@media screen and (max-width: 767px) {
  .c-btn01 {
    width: min(100%, 306px);
    font-size: 20px;
  }
  .c-btn01 a {
    min-height: 46px;
    padding-inline: 30px 25px;
    background-position: right 15px center;
    background-size: 8px;
  }
}
@media (hover: hover) {
  .c-btn01 a:hover {
    opacity: 0.6;
  }
}

/* color variation */
.c-btn01.is-orange a {
  background-color: #E99230;
}

.c-btn01.is-green a {
  background-color: #99D13E;
}

/*------------------------------------------
	list
------------------------------------------*/
/*	.c-list01
------------------------------------------*/
.c-list01 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}
.c-list01__item {
  padding-left: 1.7em;
  font-weight: 700;
  font-size: var(--font-size-base);
  position: relative;
}
.c-list01__item::after {
  content: "";
  display: block;
  width: 1.15em;
  aspect-ratio: 30/30;
  background: url(../img/common/ico_check01.svg) no-repeat center/contain;
  position: absolute;
  top: 0.2em;
  left: 0;
}
@media screen and (max-width: 767px) {
  .c-list01 {
    grid-gap: 15px;
  }
}

/*============================================================================================================
	page
============================================================================================================*/
/*	home
============================================================================================================*/
/*------------------------------------------
	.homeMv
------------------------------------------*/
.homeMv {
  margin-top: 90px;
  margin-bottom: 120px;
  position: relative;
}
.homeMv-inner {
  height: 100%;
  width: min(100%, 1240px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 20px 20px 60px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 2;
}
.homeMv__logo {
  width: 553px;
  margin-bottom: 75px;
}
.homeMv__logo img {
  width: 100%;
}
.homeMv__txt {
  margin-bottom: 35px;
  color: #fff;
  font-weight: 700;
  font-size: var(--font-size-base);
}
.homeMv__btn + .homeMv__btn {
  margin-top: 18px;
}
.homeMv-imgBox img {
  width: 100%;
  height: 100%;
  min-height: 747px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .homeMv {
    margin-top: 75px;
    margin-bottom: 40px;
  }
  .homeMv-inner {
    width: 100%;
    display: block;
    padding: 14vw var(--inner-padding) 0;
  }
  .homeMv__logo {
    width: 80%;
    margin: 0 auto 6vw;
  }
  .homeMv__txt {
    margin-bottom: 6.5vw;
    font-size: 4.5vw;
    line-height: 7.5vw;
  }
  .homeMv__btn {
    width: 91.5%;
    margin-inline: auto;
    font-size: 5.2vw;
  }
  .homeMv__btn + .homeMv__btn {
    margin-top: 3vw;
  }
  .homeMv__btn a {
    min-height: 12vw;
    padding-inline: 8vw 7vw;
    background-size: 2.5%;
    background-position: right 5% center;
  }
  .homeMv-imgBox img {
    min-height: auto;
    height: auto;
    -o-object-fit: fill;
       object-fit: fill;
  }
}

/*------------------------------------------
	.homeBcp
------------------------------------------*/
.homeBcp {
  padding-block: 0 165px;
  background: url(../img/home/bg_bcp01.webp) no-repeat right min(0px, 50% - 340px) bottom/min(75%, 922px);
}
.homeBcp__secTit {
  margin-bottom: 65px;
  color: var(--color-navy);
}
.homeBcp__txt {
  margin-bottom: 35px;
  font-weight: 700;
  font-size: var(--font-size-base);
}
.homeBcp__note {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .homeBcp {
    padding-block: 0 195px;
    background-position: right bottom;
    background-size: 110%;
  }
  .homeBcp__secTit {
    margin-bottom: 28px;
  }
  .homeBcp__txt {
    margin-bottom: 13px;
  }
  .homeBcp__note {
    font-size: 14px;
  }
}

/*------------------------------------------
	.homeWorry
------------------------------------------*/
.homeWorry {
  padding-block: 130px 155px;
  background: rgba(70, 158, 151, 0.7);
  position: relative;
}
.homeWorry::after {
  content: "";
  display: block;
  width: calc(50% + 680px);
  height: 100%;
  background: url(../img/home/bg_worry01_pc.webp) no-repeat left center/cover;
  position: absolute;
  top: 0;
  right: 0;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.homeWorry-inner {
  position: relative;
  z-index: 2;
}
.homeWorry__secTit {
  margin-bottom: 48px;
  color: #fff;
}
.homeWorry-list {
  width: min(100%, 1140px);
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 28px;
}
.homeWorry-list__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff;
  font-weight: 700;
  text-align: center;
  font-size: var(--font-size-base);
}
@media screen and (max-width: 767px) {
  .homeWorry {
    padding-block: 40px 25px;
    background: url(../img/home/bg_worry01_sp.webp) no-repeat center/cover;
  }
  .homeWorry::after {
    content: none;
  }
  .homeWorry-inner {
    padding-inline: 12px;
  }
  .homeWorry__secTit {
    margin-bottom: 15px;
  }
  .homeWorry-list {
    width: min(100%, 350px);
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5px;
  }
  .homeWorry-list__item {
    font-size: min(4.6vw, var(--font-size-base));
  }
}

/*------------------------------------------
	.homeResolve
------------------------------------------*/
.homeResolve {
  padding-block: 0 130px;
}
.homeResolve__secTit {
  --clipPosition: 130px;
  height: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-block: -1px 65px;
  padding-bottom: 45px;
  background: var(--color-navy);
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% var(--clipPosition), 50% 100%, 0 var(--clipPosition));
}
.homeResolve-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.homeResolve-boxWrap {
  width: min(100%, 1160px);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
  margin: 0 auto 148px;
}
.homeResolve-box__txt {
  margin-bottom: 24px;
  color: var(--color-navy);
  font-weight: 700;
  font-size: 36px;
  text-align: center;
}
.homeResolve-box__img {
  display: block;
  margin: auto auto 0;
}
@media screen and (max-width: 767px) {
  .homeResolve {
    padding-block: 0 20px;
  }
  .homeResolve__secTit {
    --clipPosition: 65px;
    height: 105px;
    margin-bottom: 25px;
    padding-bottom: 23px;
  }
  .homeResolve-box {
    display: block;
  }
  .homeResolve-boxWrap {
    width: 100%;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-bottom: 45px;
  }
  .homeResolve-box__txt {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .homeResolve-box__img {
    margin: 0 auto;
  }
}

/*	.homeResolve-point
------------------------------------------*/
.homeResolve-point {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 44%;
  grid-template-columns: 1fr 44%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 50px;
  padding-left: 15px;
}
.homeResolve-point__tit {
  margin-bottom: 50px;
  color: var(--color-navy);
}
.homeResolve-point__img {
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  .homeResolve-point {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    padding-left: 0;
  }
  .homeResolve-point__tit {
    margin-bottom: 30px;
  }
  .homeResolve-point__img {
    margin-top: 0;
  }
}

/*------------------------------------------
	.homeWrap01
------------------------------------------*/
.homeWrap01 {
  padding-block: 120px 90px;
  background: url(../img/home/bg_wrap01.webp) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .homeWrap01 {
    padding-block: 35px 55px;
  }
}

/*------------------------------------------
	.homeService
------------------------------------------*/
.homeService {
  overflow-x: clip;
  padding-block: 0 70px;
}
.homeService__secTit {
  margin-bottom: 65px;
  color: var(--color-navy);
}
.homeService__catch {
  margin-bottom: 125px;
  color: var(--color-green);
  font-weight: 800;
  font-size: 54px;
  text-align: center;
}
.homeService-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 43%;
  grid-template-columns: 1fr 43%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 45px 45px;
}
.homeService-list {
  margin-left: 15px;
}
.homeService-bcp {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: max(350px, 37.5%) 1fr;
  grid-template-columns: max(350px, 37.5%) 1fr;
  grid-gap: 40px;
  padding: 10px 30px;
  border: 1px solid var(--color-green);
  border-radius: 30px;
}
.homeService-bcp__tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px;
  border-right: 1px solid;
  color: var(--color-green);
  font-weight: 700;
  font-size: var(--font-size-base);
  text-align: center;
}
.homeService-bcp__tit .small {
  display: block;
  font-size: 0.77em;
}
.homeService-bcp-list {
  width: min(100%, 612px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  padding-block: 10px;
}
.homeService-bcp-list__item {
  width: min(100%, 182px);
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background: var(--color-green);
  color: #fff;
  font-weight: 700;
  font-size: var(--font-size-base);
  text-align: center;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .homeService-list {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .homeService__img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: none;
    width: calc(100% + 84px);
    margin-top: 7px;
  }
  .homeService-bcp {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}
@media screen and (max-width: 767px) {
  .homeService {
    padding-block: 0 25px;
  }
  .homeService__secTit {
    margin-bottom: 15px;
  }
  .homeService__catch {
    margin-bottom: 23px;
    font-size: 30px;
  }
  .homeService-box {
    display: block;
  }
  .homeService-list {
    margin: 0 auto 35px;
  }
  .homeService-bcp {
    display: block;
    margin: 0 auto 12px;
    padding: 15px 6px;
    border-radius: 20px;
  }
  .homeService-bcp__tit {
    display: block;
    margin-bottom: 11px;
    padding: 0;
    border-right: none;
  }
  .homeService-bcp-list {
    width: min(100%, 320px);
    gap: 5px;
    margin-inline: auto;
    padding-block: 0;
  }
  .homeService-bcp-list__item {
    width: 100%;
    font-size: min(3.8vw, 15px);
  }
}

/*------------------------------------------
	.homePoint
------------------------------------------*/
.homePoint__secTit {
  margin-bottom: 75px;
  color: var(--color-navy);
}
.homePoint-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 44% 1fr;
  grid-template-columns: 44% 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 50px;
}
@media screen and (min-width: 768px) {
  .homePoint__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    max-width: none;
    width: calc(100% + 28px);
    margin: 7px auto 0 -45px;
  }
}
@media screen and (max-width: 767px) {
  .homePoint__secTit {
    margin-bottom: 30px;
  }
  .homePoint-box {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 7px;
  }
}

/*------------------------------------------
	.homeFlow
------------------------------------------*/
.homeFlow {
  padding-block: 115px 120px;
  background: url(../img/home/bg_flow01_pc.webp) no-repeat right min(0px, 50% - 460px) center/auto 100%;
}
.homeFlow__secTit {
  margin-bottom: 70px;
  color: var(--color-navy);
}
.homeFlow-list {
  width: min(100%, 1080px);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6.5%;
}
.homeFlow-list__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background: var(--color-green);
  color: #fff;
  font-weight: 700;
  font-size: var(--font-size-base);
  text-align: center;
  position: relative;
}
.homeFlow-list__item::after {
  content: "";
  display: block;
  width: 23.5%;
  aspect-ratio: 51/16;
  background: url(../img/common/ico_arrow02.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 104%;
  margin: auto;
}
.homeFlow-list__item:last-of-type::after {
  content: none;
}
@media screen and (max-width: 767px) {
  .homeFlow {
    padding-block: 35px 20px;
    background: url(../img/home/bg_flow01_sp.webp) no-repeat center/cover;
  }
  .homeFlow__secTit {
    margin-bottom: 20px;
  }
  .homeFlow-list {
    width: min(100%, 335px);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: min(6vw, 23px) 10%;
  }
  .homeFlow-list__item {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 45%;
    font-size: min(4.6vw, var(--font-size-base));
  }
  .homeFlow-list__item::after {
    width: 17%;
    aspect-ratio: 24/32;
    background-position: right center;
    background-size: auto auto;
    left: 100%;
  }
  .homeFlow-list__item:nth-of-type(even)::after {
    width: 41%;
    aspect-ratio: 62/61;
    background: url(../img/common/ico_arrow03.svg) no-repeat center/contain;
    left: -32%;
    top: auto;
    bottom: -25%;
  }
}

/*------------------------------------------
	.homeCv
------------------------------------------*/
.homeCv {
  overflow-x: clip;
  margin-bottom: 95px;
  padding-block: 95px 115px;
  background: rgba(70, 158, 151, 0.7);
  color: #fff;
  position: relative;
}
.homeCv::after {
  content: "";
  display: block;
  width: calc(50% + 645px);
  height: 100%;
  background: url(../img/home/bg_cv01_pc.webp) no-repeat right center/cover;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.homeCv-inner {
  position: relative;
  z-index: 2;
}
.homeCv__secTit {
  margin-bottom: 13px;
}
.homeCv__catch {
  margin-bottom: 50px;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .homeCv {
    margin-bottom: 60px;
    padding-block: 40px;
  }
  .homeCv::after {
    width: 100%;
    height: 59%;
    background: url(../img/home/bg_cv01_sp.webp) no-repeat center bottom/cover;
  }
  .homeCv__catch {
    margin: 0 calc(var(--inner-padding) * -0.5) 75px;
    font-size: 26px;
  }
}
@media screen and (max-width: 374px) {
  .homeCv__catch {
    font-size: 24px;
  }
}

/*	.homeCv-contact
------------------------------------------*/
.homeCv-contact__tit {
  margin-bottom: 40px;
}
.homeCv-contact__btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .homeCv-contact__tit {
    margin-bottom: 30px;
  }
  .homeCv-contact__btnWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}

/*------------------------------------------
	.homeFaq
------------------------------------------*/
.homeFaq {
  padding-block: 0 100px;
}
.homeFaq__secTit {
  margin-bottom: 60px;
}
.homeFaq-boxWrap {
  width: min(100%, 800px);
  margin-inline: auto;
}
.homeFaq-box + .homeFaq-box {
  margin-top: 40px;
}
.homeFaq-box__tit, .homeFaq-box__txt {
  padding-left: 85px;
  letter-spacing: 0;
}
.homeFaq-box__tit {
  padding-block: 7px 17px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  position: relative;
}
.homeFaq-box__tit::after {
  content: "Q";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-green);
  color: #fff;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  font-family: var(--font-family-en);
  position: absolute;
  top: 0;
  left: 0;
}
.homeFaq-box__txt {
  font-size: 20px;
}
.homeFaq-box__txt + .homeFaq-box__txt {
  margin-top: 1.8em;
}
@media screen and (max-width: 767px) {
  .homeFaq {
    padding-block: 0 30px;
  }
  .homeFaq__secTit {
    margin-bottom: 0;
  }
  .homeFaq-box {
    padding-block: 30px 15px;
    border-bottom: 1px dashed #000;
  }
  .homeFaq-boxWrap {
    width: 100%;
  }
  .homeFaq-box + .homeFaq-box {
    margin-top: 0;
  }
  .homeFaq-box__tit, .homeFaq-box__txt {
    padding-left: 50px;
  }
  .homeFaq-box__tit {
    min-height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 11px;
    padding-block: 0;
    font-size: 20px;
  }
  .homeFaq-box__tit::after {
    width: 40px;
    height: 40px;
    font-size: 30px;
    bottom: 0;
    margin: auto;
  }
  .homeFaq-box__txt {
    font-size: 14px;
  }
}

/*------------------------------------------
	.homeContact
------------------------------------------*/
.homeContact {
  padding-block: 100px;
  background: #F7F7F7;
}
.homeContact__secTit {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .homeContact {
    padding-block: 40px;
  }
  .homeContact__secTit {
    margin-bottom: 30px;
  }
}

/*# sourceMappingURL=style.css.map*/