@charset "UTF-8";

/***************************

_mixin.scss

***************************/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.zoomImg {
  overflow: hidden;
  display: block;
  transition: 0.75s;
}

.zoomImg img {
  transform: scale(1);
  transition: 1.5s;
}

.zoomImg:hover {
  opacity: 1;
}

.zoomImg:hover img {
  transform: scale(1.2);
}

/*========= スクロールで流れるテキスト ===============*/
/*全共通*/
/*========= 流れるテキスト ここまで ===============*/
/*========= スクロールで流れる背景画像 myScrollEffect ===============*/
/*========= 流れる背景画像 ここまで ===============*/
/*========= スクロールで要素flip myScrollEffect ===============*/
/*========= 流れる背景画像 ここまで ===============*/
/*========= ページ読み込み時のフェードアニメーション ===============*/
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0.1;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0.1;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
  animation-name: fadeLeftAnime;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
  animation-name: fadeRightAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0.1;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0.1;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeDown {
  -webkit-animation-name: fadeDownAnime;
  animation-name: fadeDownAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0.1;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0.1;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time01 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.delay-time02 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.delay-time03 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.delay-time04 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.delay-time05 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay-time06 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.delay-time07 {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

/*========= ページ読み込み時のフェードアニメーション ===============*/
/***************************

_variables.scss

***************************/
.flexbox {
  display: flex;
}

.flexbox.col2>div {
  width: 50%;
}

@media screen and (max-width: 1024px) {
  .flexbox.col2 {
    flex-direction: column;
  }

  .flexbox.col2>div {
    flex: unset !important;
    width: 100% !important;
  }

  .flexbox.col2>div:not(:first-of-type) {
    margin-top: 30px;
  }
}

.line1 {
  line-height: 1;
}

.wrap {
  flex-wrap: wrap;
}

.spacebet {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

.mt05e {
  margin-top: 0.5em;
}

.mt1e {
  margin-top: 1em;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb100 {
  margin-bottom: 100px;
}

.pt10 {
  padding-top: 10px;
}

.pt20 {
  padding-top: 20px;
}

.pt30 {
  padding-top: 30px;
}

.pt40 {
  padding-top: 40px;
}

.pt50 {
  padding-top: 50px;
}

.pt60 {
  padding-top: 60px;
}

.pt70 {
  padding-top: 70px;
}

.pt80 {
  padding-top: 80px;
}

.pt90 {
  padding-top: 90px;
}

.pt100 {
  padding-top: 100px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb50 {
  padding-bottom: 50px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb70 {
  padding-bottom: 70px;
}

.pb80 {
  padding-bottom: 80px;
}

.pb90 {
  padding-bottom: 90px;
}

.pb100 {
  padding-bottom: 100px;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.t-left {
  text-align: left;
}

.margin-auto {
  margin-right: auto;
  margin-left: auto;
}

.margin-r-auto {
  margin-right: auto;
}

.margin-l-auto {
  margin-left: auto;
}

.fz12 {
  font-size: 12px;
}

.fz14 {
  font-size: 14px;
}

.fz15 {
  font-size: 15px;
}

.fz18 {
  font-size: 18px;
}

@media screen and (max-width: 550px) {
  .fz18 {
    font-size: 17px;
  }
}

.fz20 {
  font-size: 20px;
}

.fz22 {
  font-size: 22px;
}

.fz24 {
  font-size: 24px;
}

.fz26 {
  font-size: 26px;
}

.fw600 {
  font-weight: 600;
}

.line1 {
  line-height: 1;
}

.line2 {
  line-height: 2;
}

.line18 {
  line-height: 1.8;
}

.line26 {
  line-height: 2.6;
}

.letter006e {
  letter-spacing: 0.06em;
}

.letter008e {
  letter-spacing: 0.08em;
}

.w100p {
  width: 100%;
}

.w50p {
  width: 50%;
}

.w250 {
  width: 250px;
}

.d-block {
  display: block;
}

.d-table {
  display: table;
}

.underLine {
  border-bottom: 1px solid #001222;
}

.t-red {
  color: #FE5252;
}

.t-white {
  color: #fff;
}

.t-accent {
  color: #16AE67;
}

.hidden {
  overflow: hidden;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.bg-green {
  background-color: #CAE8DB;
}

/***************************

_common.scss

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

html {
  scroll-behavior: smooth;
}

body {
  color: #001222;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  background: #F7F7F7 url(../img/top/mv-bg.jpg) no-repeat;
  background-size: 100% auto;
  background-position: center top;
}

@media screen and (max-width: 550px) {
  body {
    background-size: 430% auto;
    background-position: left -160px top;
  }
}

.subfont {
  font-family: "Roboto", sans-serif;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: #001222;
}

a:hover,
button:hover {
  opacity: 0.5;
  transition: 0.2s;
}

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

@media screen and (max-width: 1024px) {
  .pc-img {
    display: none;
  }
}

.n-pc-img {
  display: none;
}

@media screen and (max-width: 1024px) {
  .n-pc-img {
    display: block;
  }
}

.tab-img {
  display: none;
}

@media screen and (max-width: 768px) {
  .tab-img {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .n-tab-img {
    display: none;
  }
}

.mid-img {
  display: none;
}

@media screen and (max-width: 550px) {
  .mid-img {
    display: block;
  }
}

@media screen and (max-width: 550px) {
  .n-mid-img {
    display: none;
  }
}

.sp-img {
  display: none;
}

@media screen and (max-width: 428px) {
  .sp-img {
    display: block;
  }
}

@media screen and (max-width: 428px) {
  .n-sp-img {
    display: none;
  }
}

.wrapper {
  width: 1280px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.wrapperS {
  width: 1130px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.wrapperL {
  width: 1370px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.wrapper1500 {
  width: 1500px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1024px) {
  .pc-br {
    display: none;
  }
}

.n-pc-br {
  display: none;
}

@media screen and (max-width: 1024px) {
  .n-pc-br {
    display: inline-block;
  }
}

.tab-br {
  display: none;
}

@media screen and (max-width: 768px) {
  .tab-br {
    display: inline-block;
  }
}

.mid-br {
  display: none;
}

@media screen and (max-width: 550px) {
  .mid-br {
    display: inline-block;
  }
}

.sp-br {
  display: none;
}

@media screen and (max-width: 428px) {
  .sp-br {
    display: inline-block;
  }
}

.c-mt125 {
  margin-top: 125px;
}

@media screen and (max-width: 550px) {
  .c-mt125 {
    margin-top: 80px;
  }
}

.c-mt145 {
  margin-top: 145px;
}

@media screen and (max-width: 550px) {
  .c-mt145 {
    margin-top: 80px;
  }
}

.c-mt100 {
  margin-top: 100px;
}

@media screen and (max-width: 550px) {
  .c-mt100 {
    margin-top: 80px;
  }
}

.c-mb130 {
  margin-bottom: 130px;
}

@media screen and (max-width: 550px) {
  .c-mb130 {
    margin-top: 80px;
  }
}

.c-pt100 {
  padding-top: 100px;
}

@media screen and (max-width: 550px) {
  .c-pt100 {
    padding-top: 80px;
  }
}

.c-pb100 {
  padding-bottom: 100px;
}

@media screen and (max-width: 550px) {
  .c-pb100 {
    padding-bottom: 80px;
  }
}

.c-pb150 {
  padding-bottom: 150px;
}

@media screen and (max-width: 550px) {
  .c-pb150 {
    padding-bottom: 80px;
  }
}

.bg-gray {
  background: #f6f6f6;
}

.c-pt100 {
  padding-top: 100px;
}

@media screen and (max-width: 550px) {
  .c-pt100 {
    padding-top: 80px;
  }
}

.c-pb100 {
  padding-bottom: 100px;
}

@media screen and (max-width: 550px) {
  .c-pb100 {
    padding-bottom: 80px;
  }
}

.c-pb150 {
  padding-bottom: 150px;
}

@media screen and (max-width: 550px) {
  .c-pb150 {
    padding-bottom: 80px;
  }
}

.color-accent {
  color: #16AE67;
}

.color-white {
  color: #fff;
}

.letter006e {
  letter-spacing: 0.06em;
}

.btn-style01 {
  color: #fff;
  font-weight: bold;
  background-color: #001222;
  line-height: 74px;
  border-radius: 70px;
  text-align: center;
  display: block;
  max-width: 100%;
  width: 207px;
}

.btn-style01:hover {
  background-color: #16AE67;
  opacity: 1;
}

@media screen and (max-width: 550px) {
  .btn-style01 {
    line-height: 55px;
    font-size: 14px;
    width: 125px;
  }
}

.btn-style02 {
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  background-color: #001222;
  line-height: 115px;
  border-radius: 70px;
  text-align: center;
  display: block;
  max-width: 100%;
  width: 573px;
}

.btn-style02:hover {
  background-color: #16AE67;
  opacity: 1;
}

@media screen and (max-width: 550px) {
  .btn-style02 {
    font-size: 20px;
    line-height: 75px;
  }
}

.ttl-style01 {
  color: #16AE67;
  font-weight: bold;
  font-size: 28px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 1024px) {
  .ttl-style01 {
    max-width: 80%;
    text-align: center;
    line-height: 1.5;
    font: 25px;
  }
}

@media screen and (max-width: 550px) {
  .ttl-style01 {
    font-size: 20px;
  }
}

.ttl-style01::before {
  content: "";
  display: block;
  position: absolute;
  width: 100px;
  height: 7px;
  background: url(../img/top/ttl-deco.png) repeat-x;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  left: -120px;
}

@media screen and (max-width: 1024px) {
  .ttl-style01::before {
    width: 35px;
    left: -40px;
    height: 5px;
    background-size: auto 100%;
  }
}

.ttl-style01::after {
  content: "";
  display: block;
  position: absolute;
  width: 100px;
  height: 7px;
  background: url(../img/top/ttl-deco.png) repeat-x;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  right: -120px;
}

@media screen and (max-width: 1024px) {
  .ttl-style01::after {
    width: 35px;
    right: -40px;
    height: 5px;
    background-size: auto 100%;
  }
}

.ttl-style02 {
  color: #fff;
  background-color: #001222;
  font-weight: bold;
  border-radius: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 37px;
  line-height: 44px;
  position: relative;
  margin-right: auto;
  margin-left: auto;
}

.ttl-style02::after {
  content: url(../img/top/hukidashi.png);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -24px;
}

.ttl-style03 {
  font-weight: bold;
  font-size: 36px;
}

.ttl-style03.white {
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .ttl-style03 {
    font-size: 30px;
  }
}

@media screen and (max-width: 550px) {
  .ttl-style03 {
    font-size: 24px;
  }
}

.ttl-style03 img {
  vertical-align: text-bottom;
  padding-right: 5px;
}

@media screen and (max-width: 550px) {
  .ttl-style03 img {
    height: 47px;
    width: auto;
  }
}

.ttl-style03 .slanting {
  transform: rotate(20deg);
  display: inline-block;
}

.ttl-style04 {
  font-weight: bold;
  font-size: 42px;
  line-height: 1.3;
}

.ttl-style04.white {
  color: #fff;
}

@media screen and (max-width: 550px) {
  .ttl-style04 {
    font-size: 27px;
  }
}

.ttl-style04 .big {
  font-size: 56px;
}

@media screen and (max-width: 550px) {
  .ttl-style04 .big {
    font-size: 35px;
  }
}

.ttl-style04 img {
  vertical-align: text-bottom;
  padding-right: 6px;
}

@media screen and (max-width: 550px) {
  .ttl-style04 img {
    height: 50px;
    width: auto;
  }
}

.ttl-style04 .slanting {
  transform: rotate(20deg);
  display: inline-block;
  font-size: 48px;
}

@media screen and (max-width: 550px) {
  .ttl-style04 .slanting {
    font-size: 37px;
  }
}

.box-style01 {
  background-color: #fff;
  border-radius: 25px;
}

.list-style01 dt,
.list-style01 dd {
  padding: 27px 15px;
}

@media screen and (max-width: 768px) {

  .list-style01 dt,
  .list-style01 dd {
    padding: 40px 15px;
  }
}

.list-style01 dt {
  font-size: 18px;
  background-color: #CAE8DB;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  width: 280px;
}

@media screen and (max-width: 768px) {
  .list-style01 dt {
    width: 140px;
  }
}

.list-style01 dd {
  background-color: #fff;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  width: calc(100% - 280px);
}

@media screen and (max-width: 768px) {
  .list-style01 dd {
    width: calc(100% - 140px);
  }
}

/***************************

_header.scss

***************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 15px 35px 5px;
}

@media screen and (max-width: 550px) {
  .header {
    padding: 15px 15px 5px;
  }
}

.hd__logo {
  max-width: 268px;
  width: 100%;
  line-height: 1;
}

@media screen and (max-width: 1024px) {
  .hd__logo {
    margin-right: 15px;
    position: relative;
    z-index: 9999;
  }
}

@media screen and (max-width: 550px) {
  .hd__logo {
    max-width: 50%;
  }
}

.hd__logo .pc-copy {
  font-size: 13px;
  color: #202020;
  display: block;
}

@media screen and (max-width: 550px) {
  .hd__logo .pc-copy {
    display: none;
  }
}

/***************************

_under-common.scss

***************************/
/***************************

_top.scss

***************************/
.mv_sec {
  background: url(../img/top/mv.png) no-repeat;
  background-position: right 43px top;
  background-size: 48% auto;
  margin-top: 150px;
  padding-bottom: 95px;
}

@media screen and (max-width: 1280px) {
  .mv_sec {
    background-position: right top;
    background-size: 43% auto;
  }
}

@media screen and (max-width: 1024px) {
  .mv_sec {
    background: none;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 550px) {
  .mv_sec {
    margin-top: 130px;
  }
}

.mv_sec .content-box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 1024px) {
  .mv_sec .content-box {
    width: 485px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (max-width: 550px) {
  .mv_sec .content-box {
    width: 332px;
  }
}

.mv_sec .copy {
  font-size: 24px;
}

@media screen and (max-width: 1280px) {
  .mv_sec .copy {
    padding-top: 0;
    font-size: 20px;
  }
}

@media screen and (max-width: 550px) {
  .mv_sec .copy {
    font-size: 17px;
  }
}

.mv_sec .ttl {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 550px) {
  .mv_sec .ttl {
    font-size: 20px;
  }
}

.mv_sec .ttl::before {
  content: "";
  display: block;
  width: 132px;
  height: 132px;
  background: url(../img/top/mv-copy_2x.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: -19px;
  top: -52px;
}

@media screen and (max-width: 1280px) {
  .mv_sec .ttl::before {
    right: -40px;
    top: -60px;
  }
}

@media screen and (max-width: 1024px) {
  .mv_sec .ttl::before {
    width: 110px;
    height: 110px;
    right: -10px;
    top: -40px;
  }
}

@media screen and (max-width: 550px) {
  .mv_sec .ttl::before {
    right: -24px;
    top: -100px;
  }
}

.mv_sec .ttl .strong {
  font-weight: bold;
  font-size: 48px;
}

@media screen and (max-width: 1280px) {
  .mv_sec .ttl .strong {
    font-size: 40px;
  }
}

@media screen and (max-width: 550px) {
  .mv_sec .ttl .strong {
    font-size: 32px;
  }
}

@media screen and (max-width: 1024px) {
  .mv_sec .n-pc-img {
    width: 450px;
    max-width: 90%;
    margin-top: 30px;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }
}

.problem_Sec {
  background: #fff url(../img/top/problem-bg.jpg) no-repeat;
  background-position: center bottom;
  padding-bottom: 135px;
}

@media screen and (max-width: 550px) {
  .problem_Sec {
    padding-bottom: 90px;
  }
}

.problem_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px 35px;
}

@media screen and (max-width: 550px) {
  .problem_list img {
    height: 200px;
    width: auto;
  }
}

.solution_list li {
  background-color: #00855F;
  width: calc(100% - 100px);
}

@media screen and (max-width: 1024px) {
  .solution_list li {
    width: 97%;
  }
}

@media screen and (max-width: 550px) {
  .solution_list li {
    width: 95%;
    margin-right: auto;
    margin-left: auto;
    border-radius: 20px !important;
  }
}

.solution_list .wrapper1500 {
  height: 458px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1024px) {
  .solution_list .wrapper1500 {
    height: unset;
    padding-top: 40px;
    padding-bottom: 36vw;
  }
}

@media screen and (max-width: 550px) {
  .solution_list .wrapper1500 {
    padding-bottom: 55vw;
  }
}

.solution_list .content-box {
  max-width: 47%;
  width: 550px;
}

@media screen and (max-width: 1024px) {
  .solution_list .content-box {
    margin-right: auto !important;
    margin-left: auto !important;
    max-width: 93%;
    width: 560px;
  }
}

@media screen and (max-width: 550px) {
  .solution_list .content-box {
    padding: 0 !important;
  }
}

.solution_list li:nth-of-type(odd) {
  margin-right: auto;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.solution_list li:nth-of-type(odd) .wrapper1500 {
  background-image: url(../img/top/service01.png);
  background-position: left 10px bottom;
  background-size: 47% auto;
}

@media screen and (max-width: 1024px) {
  .solution_list li:nth-of-type(odd) .wrapper1500 {
    background-position: center bottom !important;
    background-size: 60% auto;
  }
}

@media screen and (max-width: 550px) {
  .solution_list li:nth-of-type(odd) .wrapper1500 {
    background-size: 80% auto;
  }
}

.solution_list li:nth-of-type(odd) .content-box {
  margin-left: auto;
  margin-right: 110px;
}

@media screen and (max-width: 1420px) {
  .solution_list li:nth-of-type(odd) .content-box {
    margin-right: 30px;
  }
}

@media screen and (max-width: 1024px) {
  .solution_list li:nth-of-type(odd) .content-box {
    padding-left: 3%;
  }
}

.solution_list li:nth-of-type(even) {
  margin-left: auto;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.solution_list li:nth-of-type(even) .wrapper1500 {
  background-image: url(../img/top/service02.png);
  background-position: right 10vw bottom;
  background-size: auto;
}

@media screen and (max-width: 1420px) {
  .solution_list li:nth-of-type(even) .wrapper1500 {
    background-size: 39% auto;
  }
}

@media screen and (max-width: 1280px) {
  .solution_list li:nth-of-type(even) .wrapper1500 {
    background-position: right 1vw bottom;
  }
}

@media screen and (max-width: 1024px) {
  .solution_list li:nth-of-type(even) .wrapper1500 {
    background-position: center bottom !important;
    background-size: 37% auto;
  }
}

@media screen and (max-width: 550px) {
  .solution_list li:nth-of-type(even) .wrapper1500 {
    background-size: 60% auto;
    padding-bottom: 60vw;
  }
}

.solution_list li:nth-of-type(even) .content-box {
  margin-right: auto;
  margin-left: 110px;
}

@media screen and (max-width: 1420px) {
  .solution_list li:nth-of-type(even) .content-box {
    margin-left: 30px;
  }
}

.solution_list li:nth-of-type(3) .wrapper1500 {
  background-image: url(../img/top/service03.png);
  background-position: left 6vw bottom;
  background-size: auto;
}

@media screen and (max-width: 1420px) {
  .solution_list li:nth-of-type(3) .wrapper1500 {
    background-size: 41% auto;
  }
}

@media screen and (max-width: 1280px) {
  .solution_list li:nth-of-type(3) .wrapper1500 {
    background-position: left 1vw bottom;
  }
}

@media screen and (max-width: 1024px) {
  .solution_list li:nth-of-type(3) .wrapper1500 {
    background-size: 40% auto;
  }
}

@media screen and (max-width: 550px) {
  .solution_list li:nth-of-type(3) .wrapper1500 {
    background-size: 70% auto;
    padding-bottom: 62vw;
  }
}

.solution_list li+li {
  margin-top: 90px;
}

@media screen and (max-width: 550px) {
  .solution_list li+li {
    margin-top: 40px;
  }
}

.solution_list .number {
  color: #00FFBE;
  letter-spacing: 0.14em;
  font-weight: bold;
  font-size: 15px;
}

.solution_list .number .strong {
  font-size: 24px;
  letter-spacing: 0.08em;
  padding-left: 4px;
}

.solution_list .ttl {
  font-size: 28px;
}

@media screen and (max-width: 550px) {
  .solution_list .ttl {
    font-size: 23px;
  }
}

.other_service_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 50px 80px;
}

@media screen and (max-width: 1024px) {
  .other_service_list {
    gap: 40px 30px;
  }
}

.bg-green .box-style01 {
  padding: 70px 15px;
}

@media screen and (max-width: 550px) {
  .bg-green .box-style01 {
    padding: 40px 15px;
  }
}

@media screen and (max-width: 550px) {
  .bg-green .box-style01 .wrapperS {
    padding: 0;
  }
}

@media screen and (max-width: 1024px) {
  .bg-green .box-style01:first-of-type .fig_list {
    flex-direction: column;
  }
}

.bg-green .box-style01:first-of-type .fig_list li+li {
  margin-left: 55px;
}

@media screen and (max-width: 1024px) {
  .bg-green .box-style01:first-of-type .fig_list li+li {
    margin-left: auto;
    margin-top: 70px;
  }
}

.bg-green .box-style01:first-of-type .fig_list li:first-of-type {
  max-width: 50%;
  width: 539px;
}

@media screen and (max-width: 1024px) {
  .bg-green .box-style01:first-of-type .fig_list li:first-of-type {
    max-width: 100%;
  }
}

.bg-green .box-style01:first-of-type .fig_list li:last-of-type {
  max-width: 45%;
  width: 431px;
}

@media screen and (max-width: 1024px) {
  .bg-green .box-style01:first-of-type .fig_list li:last-of-type {
    max-width: 100%;
  }
}

@media screen and (max-width: 550px) {
  .bg-green .box-style01:first-of-type .fig_list li:last-of-type img {
    height: 320px;
    width: auto;
  }
}

@media screen and (max-width: 1024px) {
  .bg-green .box-style01:last-of-type .fig_list {
    flex-direction: column;
  }
}

@media screen and (max-width: 1024px) {
  .bg-green .box-style01:last-of-type .fig_list li:last-of-type {
    margin-top: 60px;
  }
}

.bg-green_copy {
  background-image: url(../img/top/copy-deco01.png), url(../img/top/copy-deco02.png);
  background-repeat: no-repeat;
  background-position: left top, right top;
  background-size: contain;
  padding-top: 20px;
  padding-bottom: 40px;
}

@media screen and (max-width: 1280px) {
  .bg-green_copy {
    padding-bottom: 150px;
    background-size: 18vw auto;
    background-position: left bottom, right bottom;
    padding-top: 0;
  }
}

@media screen and (max-width: 1024px) {
  .bg-green_copy {
    background-size: 22vw auto;
    padding-bottom: 170px;
  }
}

@media screen and (max-width: 550px) {
  .bg-green_copy {
    background-size: 35vw auto;
    padding-bottom: 210px;
    background-position: left 7vw bottom, right 7vw bottom;
  }
}

.fee_sec {
  padding-bottom: 322px;
  background: url(../img/top/price-deco.png) no-repeat;
  background-position: center bottom;
  background-size: contain;
}

@media screen and (max-width: 1280px) {
  .fee_sec {
    padding-bottom: 30vw;
  }
}

@media screen and (max-width: 550px) {
  .fee_sec {
    padding-bottom: 35vw;
  }
}

@media screen and (max-width: 550px) {
  .fee_sec .ttl-logo {
    height: 60px;
    width: auto;
  }
}

.fee_sec .list-style01 {
  position: relative;
}

.fee_sec .list-style01::before {
  content: "";
  width: 120px;
  height: 120px;
  display: block;
  position: absolute;
  left: -60px;
  top: -5px;
  background: url(../img/top/campaign_2x.png) no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .fee_sec .list-style01::before {
    width: 100px;
    height: 100px;
    left: unset;
    right: -10px;
    top: -60px;
  }
}

@media screen and (max-width: 1024px) {
  .fee_sec .list-style01 {
    max-width: 85% !important;
  }
}

@media screen and (max-width: 768px) {
  .fee_sec .list-style01 {
    max-width: 100% !important;
  }
}

.fee_sec .list-style01 dt {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fee_sec .list-style01 dd:last-of-type {
  position: relative;
}

.fee_sec .list-style01 dd:last-of-type::before {
  content: "";
  width: 44px;
  height: 44px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -37px;
  background: url(../img/top/plus.png) no-repeat;
  background-size: contain;
}

.fee_sec .list-style01 .fz56 {
  font-size: 56px;
  padding-right: 3px;
  line-height: 1.1;
}

@media screen and (max-width: 1024px) {
  .fee_sec .list-style01 .fz56 {
    font-size: 40px;
  }
}

@media screen and (max-width: 550px) {
  .fee_sec .list-style01 .fz56 {
    font-size: 30px;
  }
}

.fee_sec .list-style01 .subfont {
  letter-spacing: 0.08em;
}

.contact_copy {
  position: relative;
  padding: 3px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.contact_copy::before {
  content: "";
  display: block;
  height: 25px;
  width: 1px;
  background-color: #001222;
  left: -8px;
  top: 6px;
  position: absolute;
  transform: rotate(-28deg);
}

@media screen and (max-width: 550px) {
  .contact_copy::before {
    top: 20px;
    height: 35px;
    left: -13px;
  }
}

.contact_copy::after {
  content: "";
  display: block;
  height: 25px;
  width: 1px;
  background-color: #001222;
  right: -8px;
  top: 6px;
  position: absolute;
  transform: rotate(28deg);
}

@media screen and (max-width: 550px) {
  .contact_copy::after {
    top: 20px;
    height: 35px;
    right: -13px;
  }
}

.faq_sec {
  background-color: #00855F;
}

.faq__item {
  padding: 24px;
  background-color: #fff;
  border-radius: 9px;
  position: relative;
}

@media screen and (max-width: 550px) {
  .faq__item {
    padding: 24px 15px;
  }
}

.faq__item+li {
  margin-top: 30px;
}

.faq__q,
.faq__a {
  padding-left: 100px;
  padding-right: 21px;
  position: relative;
}

@media screen and (max-width: 768px) {

  .faq__q,
  .faq__a {
    padding-left: 60px;
  }
}

@media screen and (max-width: 550px) {

  .faq__q,
  .faq__a {
    padding-left: 39px;
  }
}

.faq__q::before,
.faq__a::before {
  content: "Q";
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  position: absolute;
  left: -24px;
  top: -2px;
  font-weight: 600;
  padding: 0 25px;
  border-right: 1px dotted #001222;
  line-height: 1.6;
}

@media screen and (max-width: 550px) {

  .faq__q::before,
  .faq__a::before {
    font-size: 22px;
    padding: 0 10px;
    left: -14px;
  }
}

.faq__q__under {
  width: 100%;
  font-weight: bold;
}

.faq__q__under::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  content: "\f078";
  right: 3px;
  top: 6px;
  font-size: 10px;
}

.faq__q__under:hover {
  cursor: pointer;
}

.faq__a {
  display: none;
  margin-top: 0px;
  padding-top: 25px;
}

.faq__a::before {
  content: "A";
  left: -24px;
  top: 22px;
}

@media screen and (max-width: 550px) {
  .faq__a::before {
    left: -14px;
  }
}

.faq__q__under.open::after {
  content: "\f077";
}

/***************************

_footer.scss

***************************/
.pagetop {
  opacity: 0;
  transition: 0.3s;
}

.pagetop.show {
  position: fixed;
  right: 25px;
  bottom: 30px;
  z-index: 99;
  opacity: 1;
}

.footer {
  margin-top: 45px;
}

.footer_content {
  margin-bottom: 80px;
}

.footer_copy {
  padding: 10px 15px;
  color: #999999;
  letter-spacing: 0.08em;
}