<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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);
}

/*========= ページ読み込み時のフェードアニメーション ===============*/
.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: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

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

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

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

  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

***************************/
.bg-grade-green {
  background: linear-gradient(to bottom, #8EE1CE, #0D9CA8);
}

.bg-grade-orange {
  background: linear-gradient(to bottom, #FDB995, #FE6362);
}

.bg-blue {
  background-color: rgba(223, 239, 237, 0.5);
}

.flexbox {
  display: flex;
}

.flexbox.col2&gt;div {
  width: 50%;
}

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

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

  .flexbox.col2&gt;div:not(:first-of-type) {
    margin-top: 50px;
  }
}

.line1 {
  line-height: 1;
}

.line12 {
  line-height: 1.2;
}

.line2 {
  line-height: 2;
}

.wrap {
  flex-wrap: wrap;
}

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

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

.bold {
  font-weight: bold;
}

.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;
}


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

  .mt90 {
    margin-top: 70px;
  }

  .mt100 {
    margin-top: 70px;
  }

  .mb80 {
    margin-bottom: 60px;
  }

  .mb90 {
    margin-bottom: 70px;
  }

  .mb100 {
    margin-bottom: 70px;
  }
}

.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;
}

.pb5 {
  padding-bottom: 5px;
}

.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;
}

.fz13 {
  font-size: 13px;
}

.fz14 {
  font-size: 14px;
}

.fz15 {
  font-size: 15px;
}

.fz16 {
  font-size: 16px;
}

.fz18 {
  font-size: 18px;
}

.fz20 {
  font-size: 20px;
}

.fz22 {
  font-size: 22px;
}

.fz24 {
  font-size: 24px;
}

.fz26 {
  font-size: 26px;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.line1 {
  line-height: 1;
}

.line2 {
  line-height: 2;
}

.line18 {
  line-height: 1.8;
}

.line26 {
  line-height: 2.6;
}

.w100p {
  width: 100%;
}

.w50p {
  width: 50%;
}

.w250 {
  width: 250px;
}

.d-block {
  display: block;
}

.d-table {
  display: table;
}

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

.t-red {
  color: #FD6A51;
}

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

_common.scss

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

html {
  scroll-behavior: smooth;
}

body {
  color: #1D3A3F;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  line-height: 1.65;
  letter-spacing: 0.04em;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
}

.yugothic {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}

main {
  margin-top: 125px;
  position: relative;
}

@media screen and (max-width: 1280px) {
  main {
    margin-top: 93px;
  }
}

@media screen and (max-width: 550px) {
  main {
    margin-top: 65px;
  }
}

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

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: #1D3A3F;
}

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

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

pre {
  white-space: pre-wrap;
}

@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: 1130px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

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

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

@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;
  }
}

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

.sp-br {
  display: none;
}

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

.c-mt120 {
  margin-top: 120px;
}

@media screen and (max-width: 550px) {
  .c-mt120 {
    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-mb100 {
  margin-bottom: 100px;
}

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

.c-mb125 {
  margin-bottom: 125px;
}

@media screen and (max-width: 550px) {
  .c-mb125 {
    margin-bottom: 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;
  }
}

.color-accent {
  color: #5CBCB0;
}

.color-white {
  color: #fff;
}

.letter006e {
  letter-spacing: 0.06em;
}

.btn-style01 {
  font-size: 21px;
  line-height: 98px;
  width: 100%;
  max-width: 392px;
  text-align: center;
  border-radius: 10px;
  display: block;
  color: #fff;
}

@media screen and (max-width: 550px) {
  .btn-style01 {
    line-height: 65px;
    font-size: 18px;
    max-width: 270px;
    margin-right: auto;
    margin-left: auto;
  }
}

.btn-style01 span {
  font-size: 14px;
  line-height: 21px;
  border-radius: 9px;
  background-color: #fff;
  color: #5CBCB0;
  width: 41px;
  display: inline-block;
  margin-right: 9px;
}

.btn-style02 {
  font-size: 18px;
  font-weight: bold;
  line-height: 91px;
  width: 100%;
  max-width: 364px;
  text-align: center;
  border-radius: 10px;
  display: block;
  color: #fff;
  background-color: #5CBCB0;
  transition: 0.2s;
}

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

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

.btn-style02 input {
  color: #fff;
  border-radius: 10px;
  transition: 0.2s;
}

.btn-style02 input:hover {
  background-color: #1D3A3F;
  opacity: 1;
}

.btn-style03 {
  font-size: 16px;
  font-weight: bold;
  line-height: 70px;
  max-width: 100%;
  width: 364px;
  text-align: center;
  border-radius: 10px;
  display: block;
  color: #5CBCB0;
  background-color: #fff;
  border: 2px solid #5CBCB0;
}

@media screen and (max-width: 550px) {
  .btn-style03 {
    line-height: 60px;
  }

  .top_voice_list p:nth-of-type(2) {
    margin-bottom: 20px;
  }
}

.btn-style03:hover {
  background-color: #5CBCB0;
  color: #fff;
  opacity: 1;
}

.title-style01 {
  font-size: 36px;
  line-height: 2;
  letter-spacing: 0.06em;
  background: linear-gradient(transparent 94%, #1D3A3F 0%);
  display: inline;
  padding-bottom: 12px;
}

@media screen and (max-width: 550px) {
  .title-style01 {
    line-height: 1.7;
    padding-bottom: 8px;
    font-size: 26px;
  }
}

.title-style02 {
  font-size: 36px;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #fff;
}

.title-style02 span {
  background: linear-gradient(transparent 7%, #5CBCB0 0%);
  padding: 4px 25px;
}

@media screen and (max-width: 768px) {
  .title-style02 span {
    background: linear-gradient(transparent 12%, #5CBCB0 0%);
  }
}


@media screen and (max-width: 768px) {
  .title-style02 {
    line-height: 1.7;
    padding-bottom: 8px;
    font-size: 28px;
  }
}

@media screen and (max-width: 550px) {
  .title-style02 {
    font-size: 21px;
    line-height: 1.8;
  }

  .title-style02 span {
    padding: 3px 2px;
  }
}

.title-style03 {
  font-size: 18px;
  line-height: 1.8;
  display: inline;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(transparent 7%, #5CBCB0 0%);
  padding: 4px 9px;
}

@media screen and (max-width: 768px) {
  .title-style03 {
    background: linear-gradient(transparent 12%, #5CBCB0 0%);
    line-height: 1.7;
  }
}

@media screen and (max-width: 550px) {
  .title-style03 {
    padding: 2px;
    background: linear-gradient(transparent 11%, #5CBCB0 0%);
  }
}

.title-style04 {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.06em;
}

.title-style04 span {
  font-size: 28px;
}

@media screen and (max-width: 550px) {
  .title-style04 span {
    font-size: 25px;
  }
}

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

.title-style05 {
  font-size: 21px;
  font-weight: bold;
  position: relative;
  padding: 0 20px;
  line-height: 1.2;
  display: table;
}

.title-style05::before {
  content: "";
  display: block;
  position: absolute;
  height: 22px;
  width: 1px;
  background-color: #1D3A3F;
  transform: rotate(-20deg);
  top: 2px;
  left: 0;
}

.title-style05::after {
  content: "";
  display: block;
  position: absolute;
  height: 22px;
  width: 1px;
  background-color: #1D3A3F;
  transform: rotate(20deg);
  top: 2px;
  right: 0;
}

.title-style06 {
  font-size: 32px;
  font-weight: bold;
  position: relative;
  padding: 0 20px;
  line-height: 1.2;
  display: table;
}

@media screen and (max-width: 768px) {
  .title-style06 {
    font-size: 27px;
  }
}

@media screen and (max-width: 550px) {
  .title-style06 {
    text-align: center;
    font-size: 24px;
  }
}

.title-style06::before {
  content: "";
  display: block;
  position: absolute;
  height: 40px;
  width: 1px;
  background-color: #1D3A3F;
  transform: rotate(-20deg);
  top: 2px;
  left: 0;
}

@media screen and (max-width: 768px) {
  .title-style06::before {
    height: 35px;
  }
}

@media screen and (max-width: 550px) {
  .title-style06.br::before {
    height: 45px;
    top: 9px;
  }
}

.title-style06::after {
  content: "";
  display: block;
  position: absolute;
  height: 40px;
  width: 1px;
  background-color: #1D3A3F;
  transform: rotate(20deg);
  top: 2px;
  right: 0;
}

@media screen and (max-width: 768px) {
  .title-style06::after {
    height: 35px;
  }
}

@media screen and (max-width: 550px) {
  .title-style06.br::after {
    height: 45px;
    top: 9px;
  }
}

.title-style07 {
  font-size: 42px;
  font-weight: bold;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 768px) {
  .title-style07 {
    font-size: 36px;
  }
}

@media screen and (max-width: 550px) {
  .title-style07 {
    font-size: 32px;
  }
}

.title-style07 span {
  font-size: 32px;
}

@media screen and (max-width: 550px) {
  .title-style07 span {
    font-size: 25px;
  }
}

.title-style08 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 550px) {
  .title-style08 {
    font-size: 25px;
  }
}

.title-style08 span {
  vertical-align: middle;
  font-size: 23px;
  color: #5CBCB0;
  padding-right: 4px;
}

.title-style09 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  position: relative;
  display: table;
}

.title-style09:before {
  content: url(../img/common/title-deco.png);
  position: absolute;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  bottom: -28px;
}

@media screen and (max-width: 550px) {
  .title-style09 {
    font-size: 22px;
  }
}

.title-style10 {
  padding-left: 23px;
  position: relative;
  font-size: 21px;
  font-weight: bold;
}

.title-style10::before {
  font-size: 15px;
  content: "■";
  display: block;
  color: #5CBCB0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.c-contactSec {
  background-color: #1D3A3F;
  margin-top: 200px;
  padding: 60px 0;
}

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

.c-contactSec .title {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1.6;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  position: relative;
  display: table;
}

@media screen and (max-width: 768px) {
  .c-contactSec .title {
    font-size: 28px;
  }
}

@media screen and (max-width: 550px) {
  .c-contactSec .title {
    font-size: 25px;
  }
}

.c-contactSec .title::before {
  content: url(../img/common/deco-white.png);
  position: absolute;
  top: -34px;
  left: -21px;
}

@media screen and (max-width: 550px) {
  .c-contactSec .title::before {
    top: -28px;
    left: 13px;
  }
}

.c-contactSec .other_link {
  display: table;
  border-bottom: 1px solid #fff;
}

.contact_link {
  width: 100%;
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}

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

.contact_link li {
  max-width: 392px;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .contact_link li:last-of-type {
    margin-top: 20px;
  }
}

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

_header.scss

***************************/
.header {
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid #eee;
}

@media screen and (max-width: 1280px) {
  .header {
    padding: 0 !important;
  }
}

@media screen and (min-width: 1279px) {
  .header.scroll {
    -webkit-animation: fadeIn 1s forwards;
    animation: fadeIn 1s forwards;
  }
}

@media screen and (min-width: 1281px) {
  .header.default .hd__logo_before {
    opacity: 1;
    display: block;
  }

  .header.default .hd__logo_after {
    display: none;
    opacity: 0;
  }

  .header.default .gnav__item:last-of-type a,
  .header.default .gnav__item:nth-of-type(6) a {
    line-height: 58px;
  }

  .header.default .header_bottom {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.hd__logo_before {
  display: none;
  opacity: 0;
}

.hd__logo_after {
  display: block;
  opacity: 1;
}

.header_head {
  background-color: #eee;
  padding: 4px 0;
  order: 1;
}

.head_list {
  line-height: 1.2;
}

.head_list li:first-of-type {
  padding-right: 13px;
  border-right: 1px solid #aaa;
}

.head_list li:last-of-type {
  padding-left: 13px;
}

.head_list i {
  padding-right: 3px;
}

@media screen and (max-width: 1280px) {
  .header_head_pc {
    display: none;
  }
}

.header_head_sp {
  display: none;
}

@media screen and (max-width: 1280px) {
  .header_head_sp {
    display: block;
    background-color: unset;
    margin-top: 20px;
    padding: 0;
  }

  .header_head_sp&gt;.flexbox {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }

  .header_head_sp .head_list {
    margin-top: 40px;
  }
}

.header_bottom {
  padding-top: 10px;
  padding-bottom: 10px;
}

@media screen and (max-width: 1280px) {
  .header_bottom {
    padding: 0;
    padding-left: 20px;
  }
}

.hd__logo {
  max-width: 243px;
  width: 100%;
}

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

.gnav {
  max-width: 1000px;
  width: 100%;
}

@media screen and (max-width: 1280px) {
  .gnav {
    width: 500px;
    max-width: 100%;
    height: calc(100% - 93px);
    padding: 35px 30px 20px;
    background-color: #fff;
    position: fixed;
    top: 93px;
    right: 0;
    z-index: 998;
    transform: translate(100%);
    transition: all 0.5s;
    overflow-y: scroll;
  }
}

@media screen and (max-width: 550px) {
  .gnav {
    top: 65px;
    height: calc(100% - 65px);
  }
}

.gnav__list {
  display: flex;
  line-height: 1;
  justify-content: flex-end;
}

@media screen and (max-width: 1280px) {
  .gnav__list {
    flex-direction: column;
    align-items: flex-start;
  }
}

.gnav__item {
  font-weight: 700;
  display: block;
  margin-right: 35px;
}

@media screen and (max-width: 1280px) {
  .gnav__item {
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-right: 0;
  }
}

.gnav__item:not(:last-of-type):not(:nth-of-type(6)) a:hover {
  opacity: 1;
  color: #5CBCB0;
}

.gnav__item:last-of-type a,
.gnav__item:nth-of-type(6) a {
  font-size: 16px;
  line-height: 49px;
  width: 182px;
  text-align: center;
  border-radius: 5px;
  display: block;
  color: #fff;
}

.gnav__item:nth-of-type(6) {
  margin-right: 10px;
}

@media screen and (max-width: 1280px) {
  .gnav__item:nth-of-type(6) {
    margin-right: 0;
    padding-top: 30px;
    padding-bottom: 0;
  }
}

.gnav__item:nth-of-type(6) span {
  font-size: 12px;
  line-height: 18px;
  border-radius: 9px;
  background-color: #fff;
  color: #5CBCB0;
  width: 41px;
  display: inline-block;
  margin-right: 5px;
}

.gnav__item:last-of-type {
  margin-right: 0;
}

.gnav__toggle_block {
  display: none;
}

@media screen and (max-width: 1280px) {
  .gnav__toggle_block {
    padding: 0 10px;
    width: 93px;
    height: 93px;
    max-height: 93px;
    display: block;
    cursor: pointer;
    transform: translateX(0);
    transition: transform 0.5s;
    background-color: #5CBCB0;
  }
}

@media screen and (max-width: 550px) {
  .gnav__toggle_block {
    width: 65px;
    height: 65px;
  }
}

.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  opacity: 0;
  transition: opacity 0.5s;
}

.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.gnav__toggle_wrapper {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.gnav__toggle_wrapper span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
}

.gnav__toggle_block.active .gnav__toggle_wrapper span {
  background-color: #fff;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.gnav__toggle_wrapper span:nth-of-type(1),
.gnav__toggle_wrapper span:nth-of-type(3) {
  height: 2px;
  background: #fff;
  width: 75%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

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

  .gnav__toggle_wrapper span:nth-of-type(1),
  .gnav__toggle_wrapper span:nth-of-type(3) {
    width: 80%;
  }
}

.gnav__toggle_wrapper span:nth-of-type(1) {
  top: 28px;
}

@media screen and (max-width: 550px) {
  .gnav__toggle_wrapper span:nth-of-type(1) {
    top: 19px;
  }
}

.gnav__toggle_wrapper span:nth-of-type(2) {
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-size: 1rem;
  text-transform: uppercase;
  color: #fff;
}

@media screen and (max-width: 550px) {
  .gnav__toggle_wrapper span:nth-of-type(2) {
    font-size: 0.7rem;
    top: 25px;
  }
}

.gnav__toggle_wrapper span:nth-of-type(3) {
  top: 59px;
}

@media screen and (max-width: 550px) {
  .gnav__toggle_wrapper span:nth-of-type(3) {
    top: 46px;
  }
}

.gnav__toggle_block.active span:nth-of-type(1) {
  top: 39px;
  left: 13px;
  transform: translateY(6px) rotate(-45deg);
  width: 70%;
}

@media screen and (max-width: 550px) {
  .gnav__toggle_block.active span:nth-of-type(1) {
    top: 26px;
    left: 7px;
  }
}

.gnav__toggle_block.active span:nth-of-type(2) {
  opacity: 0;
}

.gnav__toggle_block.active span:nth-of-type(3) {
  top: 51px;
  left: 13px;
  transform: translateY(-6px) rotate(45deg);
  width: 70%;
}

@media screen and (max-width: 550px) {
  .gnav__toggle_block.active span:nth-of-type(3) {
    top: 38px;
    left: 7px;
  }
}

.gnav.open {
  transform: translateZ(0);
}

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

_under-common.scss

***************************/
.under_mv {
  background-color: #DFEFED;
  padding: 0 28px;
}

.under_mv .wrapper {
  display: flex;
  height: 320px;
  align-items: center;
  width: 1444px;
  padding-left: 175px;
}

.intro_under_mv .wrapper {
  background: url(../img/introduction/under-bg.png) no-repeat;
  background-position: left center;
  background-blend-mode: multiply;
  background-color: #DFEFED;
}

.function_under_mv .wrapper {
  background: url(../img/function/under-bg.png) no-repeat;
  background-position: left center;
  background-blend-mode: multiply;
  background-color: #DFEFED;
}

.voice_under_mv .wrapper {
  background: url(../img/voice/under-bg.png) no-repeat;
  background-position: left center;
  background-blend-mode: multiply;
  background-color: #DFEFED;
}

.faq_under_mv .wrapper {
  background: url(../img/faq/under-bg.png) no-repeat;
  background-position: left center;
  background-blend-mode: multiply;
  background-color: #DFEFED;
}

.column_under_mv .wrapper {
  background: url(../img/column/under-bg.png) no-repeat;
  background-position: left center;
  background-blend-mode: multiply;
  background-color: #DFEFED;
}

.contact_under_mv .wrapper {
  background: url(../img/contact/under-bg.png) no-repeat;
  background-position: left center;
  background-blend-mode: multiply;
  background-color: #DFEFED;
}

.form_under_mv .wrapper {
  background: url(../img/form/under-bg.png) no-repeat;
  background-position: left center;
  background-blend-mode: multiply;
  background-color: #DFEFED;
}

.news_under_mv .wrapper {
  background: url(../img/news/under-bg.png) no-repeat;
  background-position: left center;
  background-blend-mode: multiply;
  background-color: #DFEFED;
}

.privacy_under_mv .wrapper {
  background: url(../img/form/under-bg.png) no-repeat;
  background-position: left center;
  background-blend-mode: multiply;
  background-color: #DFEFED;
}

.under_mv .title {
  font-size: 46px;
  padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .under_mv .title {
    font-size: 38px;
  }
}

@media screen and (max-width: 768px) {
  .other_link_list {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 550px) {
  .under_mv .wrapper {
    padding-left: 0;
    height: 120px;
    background-size: auto 90%;
  }

  .under_mv .title {
    font-size: 37px;
    padding-bottom: 5px;
  }
}

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

_top.scss

***************************/
.top_mv {
  background: linear-gradient(360deg, #fff 0%, #fff 12px, #DFEFED 12px, #DFEFED 100%);
}

.top_mv .inner {
  padding-top: 70px;
  padding-bottom: 110px;
  padding-left: 40px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .top_mv .inner {
    padding-left: 15px;
  }
}

@media screen and (max-width: 550px) {
  .top_mv .inner {
    padding-top: 25px;
    padding-bottom: 60px;
  }
}

.top_mv .content {
  position: relative;
  z-index: 1;
}

.top_mv .mv-figure {
  position: absolute;
  bottom: 0;
  right: -40px;
}

@media screen and (max-width: 1470px) {
  .top_mv .mv-figure {
    right: 0;
    width: 50%;
  }
}

@media screen and (max-width: 550px) {
  .top_mv .mv-figure {
    bottom: unset;
    top: 152px;
    width: 344px;
    max-width: 98%;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 550px) {
  .top_mv .btn-style01.bg-grade-orange {
    margin-top: 10px;
  }
}

.top_mv .title {
  font-size: 56px;
  letter-spacing: 0.06em;
  line-height: 1.45;
}

@media screen and (max-width: 768px) {
  .top_mv .title {
    font-size: 40px;
  }
}

@media screen and (max-width: 550px) {
  .top_mv .title {
    font-size: 28px;
    margin-bottom: 315px;
  }
}

.top_mv .title span {
  color: #fff;
  font-size: 30px;
  background-color: #1D3A3F;
  padding: 0 15px;
  display: table;
  letter-spacing: 0.06em;
  line-height: 1.7;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .top_mv .title span {
    font-size: 25px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 550px) {
  .top_mv .title span {
    font-size: 18px;
  }
}

.top_mv .app_list li:first-of-type {
  padding: 0 20px 0 5px;
}

@media screen and (max-width: 550px) {
  .top_mv .app_list li:first-of-type {
    padding: 0 5px;
  }
}

@media screen and (max-width: 550px) {
  .top_mv .app_list {
    margin-top: 10px;
  }
}

.top_problem {
  margin-top: 115px;
  margin-bottom: 120px;
}

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

.top_problem_list {
  width: 100%;
  max-width: 1050px;
  padding: 75px 15px 50px;
  border: 1px solid #5CBCB0;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

.top_problem_list::before {
  content: "こんなお悩みありませんか？";
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  line-height: 48px;
  background-color: #5CBCB0;
  border-radius: 50px;
  width: 386px;
  max-width: 90%;
  display: block;
  text-align: center;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -24px;
}

@media screen and (max-width: 428px) {
  .top_problem_list::before {
    font-size: 18px;
  }
}

.top_problem_list::after {
  content: url(../img/top/hukidashi-deco.png);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 23px;
}

.top_problem_list li {
  position: relative;
  font-size: 20px;
  width: 600px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 40px;
}

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

.top_problem_list li+li {
  margin-top: 19px;
}

.top_problem_list li::before {
  content: url(../img/top/check-deco.png);
  position: absolute;
  left: 0;
  top: 2px;
}

.top_feature_list li {
  width: calc(1100px + (100% - 1100px) / 2);
  overflow: hidden;
}

@media screen and (max-width: 1280px) {
  .top_feature_list li {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .top_feature_list li {
    flex-direction: column;
  }

  .top_feature_list li:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}

.top_feature_list li+li {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .top_feature_list li+li {
    margin-top: 100px;
  }
}

.top_feature_list li:nth-of-type(odd) {
  margin-right: auto;
}

.top_feature_list li:nth-of-type(odd) .txtbox {
  padding-left: 75px;
}

.top_feature_list li:nth-of-type(odd) .imgbox {
  margin-left: -12px;
}

@media screen and (max-width: 550px) {
  .top_feature_list li:nth-of-type(odd) .imgbox {
    margin-left: -5px;
  }

  .top_feature_list li+li {
    margin-top: 50px;
  }
}

.top_feature_list li:nth-of-type(even) {
  margin-left: auto;
}

.top_feature_list li:nth-of-type(even) .txtbox {
  padding-right: 75px;
}

.top_feature_list li:nth-of-type(even) .imgbox {
  margin-right: -12px;
}

.top_feature_list li .imgbox {
  flex: 1 1 auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  .top_feature_list li .imgbox {
    flex: unset;
  }
}

.top_feature_list li .imgbox img {
  width: 100%;
  height: auto;
}

.top_feature_list li .txtbox {
  flex: 0 0 580px;
  max-width: 50%;
}

@media screen and (max-width: 1280px) {
  .top_feature_list li .txtbox {
    padding: 0 15px !important;
  }
}

@media screen and (max-width: 768px) {
  .top_feature_list li .txtbox {
    flex: unset;
    margin-top: 60px;
    max-width: 100%;
  }
}

.top_feature_list li .txtbox .number {
  color: #5CBCB0;
  letter-spacing: 0.08em;
  line-height: 1.8;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

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

  .top_feature_list li .txtbox {
    margin-top: 30px;
  }

  .top_feature_list li .txtbox .number {
    font-size: 16px;
  }
}

.top_feature_list li .txtbox .title {
  font-size: 28px;
  line-height: 2;
  font-weight: bold;
}

@media screen and (max-width: 550px) {
  .top_feature_list li .txtbox .title {
    font-size: 20px;
    line-height: 1.6;
  }
}

.top_feature_list li .txtbox .title span {
  color: #5CBCB0;
}

@media screen and (max-width: 768px) {
  .top_feature_list li .btn-style02 {
    margin-right: auto;
    margin-left: auto;
  }
}

.top_slide {
  overflow: hidden;
}

.top_swiper {
  overflow: visible;
}

.top_swiper .swiper-slide {
  position: relative;
  width: 100%;
  max-width: 352px;
}

.top_swiper .swiper-slide .title {
  position: absolute;
  line-height: 22px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  border-radius: 2px;
  right: 5px;
  bottom: 5px;
  background-color: #FD6A51;
  padding: 0 6px;
}

.swiper02 {
  transform: translateX(-174px);
}

@media screen and (max-width: 550px) {
  .swiper02 {
    transform: translateX(-148px);
  }
}

.top_swiper .swiper-wrapper {
  transition-timing-function: linear;
}

/* スライド */
.top_swiper .swiper-slide {
  height: 200px !important;
  /* 高さを指定 */
  width: auto !important;
}

@media screen and (max-width: 550px) {
  .top_swiper .swiper-slide {
    height: 120px !important;
  }
}

/* スライド内の画像 */
.top_swiper .swiper-slide img {
  width: auto;
  height: 100%;
}

.top_voice {
  background: url(../img/top/voice-bg.jpg);
}

.top_voice_list {
  padding: 55px 0 60px;
}

/* 230221 */
.top_voice_list::before {
  content: "";
  width: calc((100% - 60px) / 3);
  order: 1;
}

.top_voice_list::after {
  content: "";
  width: calc((100% - 60px) / 3);
}

@media screen and (max-width: 1024px) {
  .top_voice_list {
    width: 100%;
    max-width: 343px;
    margin-right: auto;
    margin-left: auto;
  }
}

.top_voice_list li {
  background-color: #fff;
  border-radius: 9px;
  box-shadow: 0px 0px 15px 3px rgba(159, 202, 176, 0.3);
  padding: 30px 24px;
  text-align: center;
  width: calc((100% - 60px) / 3);
}

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

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

@media screen and (max-width: 550px) {
  .top_voice_list li .title {
    margin-top: 20px;
    line-height: 1.5;
  }

  .top_voice_list li .btn-style03 {
    line-height: 50px;
  }
}

.top_faq {
  margin-top: 130px;
  padding-top: 75px;
  background-color: #DFEFED;
}

@media screen and (max-width: 550px) {
  .top_faq {
    margin-top: 75px;
    padding-top: 45px;
  }

  .top_faq_list {
    margin-top: 25px;
  }
}

.top_faq .wrapperL {
  padding-bottom: 75px;
  background: url(../img/top/faq-deco01.png), url(../img/top/faq-deco02.png);
  background-repeat: no-repeat;
  background-position: left 41px bottom, right 3px bottom;
}

@media screen and (max-width: 550px) {
  .top_faq .wrapperL {
    background-position: left 26% bottom 205px, right 30% bottom 205px;
    background-size: auto 170px;
  }
}

.top_faq_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 50px 38px;
  padding-bottom: 90px;
  width: 100%;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 1280px) {
  .top_faq_list {
    padding-bottom: 130px;
  }
}

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

  .top_faq_list-pc {
    display: none;
  }
}

.top_faq_list li {
  width: 100%;
  max-width: 245px;
  position: relative;
  border-radius: 9px;
  background-color: #fff;
  padding: 20px 21px;
  min-height: 235px;
  margin-right: auto;
  margin-left: auto;
  letter-spacing: 0;
}

@media screen and (max-width: 428px) {
  .top_faq_list li {
    width: 80%;
    max-width: unset;
  }
}

.top_faq_list li::after {
  content: url(../img/top/hukidashi-deco-2.png);
  position: absolute;
  bottom: -36px;
  left: 32px;
}

.top_faq_list dt {
  font-weight: bold;
  padding-left: 25px;
  margin-bottom: 13px;
  padding-bottom: 13px;
  position: relative;
  border-bottom: 1px dotted #1D3A3F;
}

.top_faq_list dt::before {
  content: "Q";
  font-family: "Poppins", sans-serif;
  color: #5CBCB0;
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: -3px;
}

.top_media_list {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1420px;
  justify-content: space-around;
}

@media screen and (max-width: 1470px) {
  .top_media_list {
    max-width: 900px;
  }
}

.top_media_list li {
  margin-top: 35px;
  margin-right: 28px;
}

.top_media_list li:last-of-type {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .top_media_list li {
    width: calc((100% - 36px) / 3);
    margin-right: 10px;
  }
}

.top_sns .title-style07 {
  padding: 38px 15px;
  background-color: #DFEFED;
  position: relative;
}

.top_sns .title-style07::after {
  content: url(../img/top/hukidashi-deco-3.png);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -37px;
}

@media screen and (max-width: 1024px) {
  .top_sns .title-style07::after {
    bottom: -32px;
  }
}

.top_sns_list.col2&gt;div {
  max-width: 500px;
}

@media screen and (max-width: 1024px) {
  .top_sns_list.col2&gt;div {
    margin-right: auto;
    margin-left: auto;
  }
}

.top_sns_list.col2&gt;div .btn-style02 {
  position: relative;
}

.top_sns_list.col2&gt;div .btn-style02.deco::before {
  content: url(../img/top/follow.png);
  position: absolute;
  z-index: 1;
  top: -30px;
  left: -30px;
}

@media screen and (max-width: 550px) {
  .top_sns_list.col2&gt;div .btn-style02.deco::before {
    left: -15px;
  }
}

.top_blog_list li {
  padding: 34px 0;
  border-bottom: 1px solid #ddd;
}

.top_blog_list li:first-of-type {
  padding-top: 0;
}

.top_blog_list li&gt;a {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 428px) {
  .top_blog_list li&gt;a {
    flex-direction: column;
  }

  .top_blog_list li:last-child {
    display: none;
  }
}

.top_blog_list li .imgbox {
  width: 185px;
  padding-right: 23px;
}

.top_blog_list li .imgbox img {
  border-radius: 5px;
}

.top_blog_list li .txtbox {
  width: calc(100% - 183px);
}

@media screen and (max-width: 428px) {
  .top_blog_list li .txtbox {
    width: 100%;
    margin-top: 20px;
  }
}

.top_blog_list li .title {
  font-size: 15px;
}

.top_blog_list li a:hover {
  opacity: 1;
}

.top_blog_list li a:hover .title {
  color: #5CBCB0;
}

.top_blog_list time {
  font-size: 13px;
  color: #aaa;
}

.top_blog_cat {
  font-weight: bold;
  line-height: 24px;
  color: #5CBCB0;
  padding: 0 5px;
  font-size: 12px;
  min-width: 60px;
  text-align: center;
  display: inline-block;
  margin-left: 10px;
  border: 1px solid #5CBCB0;
}

.top_news_list li {
  border-top: 1px solid #ddd;
}

.top_news_list li:last-of-type {
  border-bottom: 1px solid #ddd;
}

.top_news_list li a {
  padding: 30px 0 25px;
}

.top_news_list li a:hover {
  opacity: 1;
}

.top_news_list li a:hover .title {
  color: #5CBCB0;
}

.top_news_list time {
  color: #aaa;
  padding-right: 35px;
  display: block;
  font-size: 13px;
  line-height: 2.8;
}

.top_price .title-style01 {
  background: linear-gradient(transparent 97%, #1D3A3F 0%);
  margin-bottom: 65px;
}

@media screen and (max-width: 550px) {
  .top_price .title-style01 {
    margin-bottom: 35px;
  }
}

.top_price .inner {
  border: 1px solid #eee;
  margin-top: 65px;
}

.top_price .content {
  padding: 45px 15px 50px;
}

@media screen and (max-width: 550px) {
  .top_price .content {
    padding: 25px 15px 30px;
  }
}

.price_feature {
  margin-top: 35px;
  width: 100%;
  max-width: 1002px;
  margin-right: auto;
  margin-left: auto;
}

.price_feature p {
  padding: 11px 19px;
  background-color: #DFEFED;
  border-radius: 9px;
  line-height: 1.45;
}

@media screen and (max-width: 1024px) {
  .price_feature {
    flex-direction: column;
    align-items: center;
  }

  .price_feature p {
    margin-bottom: 15px;
    display: table;
  }
}

.price_feature p .bold {
  font-size: 28px;
  display: block;
}

.top_price .inner .title {
  background-color: #1D393F;
  color: #fff;
  font-weight: bold;
  font-size: 36px;
  padding: 13px 10px;
  letter-spacing: .06em;
}

.top_price .caption {
  color: #1D393F;
  line-height: 1.8;

}

@media screen and (max-width: 550px) {
  .top_price .inner .title {
    font-size: 23px;
  }

  .price_feature .imgbox {
    margin-top: 10px;
    width: 75%;
  }

  .price_feature p .bold {
    font-size: 25px;
  }
}

.top_difference .title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
  display: inline;
  letter-spacing: 0;
  background: linear-gradient(transparent 74%, #DFEFED 0%);
  padding: 4px 9px;
}

@media screen and (max-width: 550px) {
  .top_difference .title {
    font-size: 26px;
  }
}

.top_difference .title .bigger {
  font-size: 48px;
}

@media screen and (max-width: 550px) {
  .top_difference .title .bigger {
    font-size: 38px;
  }
}

.top_difference .title .slanting {
  font-size: 56px;
  transform: rotate(15deg);
  display: inline-block;
  padding-left: 10px;
}

@media screen and (max-width: 550px) {
  .top_difference .title .slanting {
    font-size: 46px;
  }
}

.scroll table {
  width: 100%;
}

.scroll {
  overflow: auto;
  white-space: nowrap;
}

.table-style01 {
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  width: 100%;
  display: block;
  overflow-x: scroll;
  white-space: nowrap;
  padding-top: 93px;
  padding-bottom: 15px;
}

.table-style01 tr:first-of-type td {
  position: relative;
}

.table-style01 tr:first-of-type td::before {
  content: "A社";
  width: 100%;
  height: 104px;
  position: absolute;
  top: -93px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
}

.table-style01 tr:first-of-type td:first-of-type:before {
  content: url(../img/top/logo-for-table.png);
}

.table-style01 tr:first-of-type td:first-of-type {
  position: relative;
}

.table-style01 tr:first-of-type td:first-of-type::after {
  content: "";
  display: block;
  width: 268px;
  height: 629px;
  border-radius: 12px;
  border: 3px solid #FD6A51;
  position: absolute;
  top: -91px;
  left: -4px;
  z-index: 1;
}

.table-style01 tr:first-of-type td:nth-of-type(3):before {
  content: "B社";
}

.table-style01 tr:first-of-type td:nth-of-type(4):before {
  content: "C社";
}

.table-style01 tr:nth-of-type(odd) td {
  background-color: #F9FCFB;
}

.table-style01 tr:nth-of-type(even) td {
  background-color: #DFEFED;
}

.table-style01 tr:nth-of-type(3) td {
  font-size: 14px;
}

.table-style01 tr:nth-of-type(4) td {
  font-size: 14px;
}

.table-style01 th,
.table-style01 td {
  padding: 15px 20px;
}

.table-style01 th {
  background-color: #1D3A3F;
  color: #fff;
  width: 172px;
  border-bottom: 1px solid #C4CFD5;
  height: 75px;
}

.table-style01 td {
  border-left: 5px solid #fff;
  font-size: 14px;
  letter-spacing: 0;
  text-align: center;
  width: 215px;
}

.table-style01 td img {
  padding-top: 8px;
}

.table-style01 td .subfont {
  font-weight: bold;
  font-size: 24px;
}

.table-style01 td .subfont.bigger {
  font-size: 28px;
}

.table-style01 tr:last-child th,
.table-style01 tr:last-child td {
  border-bottom: none;
}

.table-style01 tr:last-child td {
  text-align: left;
}

#sb_instagram .sb_instagram_header a,
.sb_instagram_header a {
  display: none !important;
}

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

_function.scss

***************************/
.function_head_text {
  font-size: 40px;
  line-height: 1.8;
  letter-spacing: 0;
}

.function_list_text {
  font-size: 28px;
  line-height: 1.8;
  letter-spacing: 0;
  padding: 0 15px;
}

.function_list_text span {
  font-size: 36px;
}

.grid_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, 343px);
  gap: 20px 35px;
  justify-content: center;
}

.function_item {
  position: relative;
}

.function_item_link {
  background-color: #1D393F;
  padding: 1.5em;
  border-radius: 8px;
}

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

  .function_list {
    padding-bottom: 0;
  }

  .function_item_link {
    padding: 1.2em;
  }

  .grid_list {
    gap: 15px;
  }
}

.function_item p {
  color: #fff;
  margin-left: 0.5em;
}

.function_item::after {
  position: absolute;
  content: "";
  background-image: url(../img/function/arrow.png);
  width: 10px;
  height: 6px;
  top: 35px;
  right: 25px;
}

.function_item .imgBox img {
  vertical-align: middle;
}

.function_list2 .function_item_link {
  height: 82px;
  align-items: center;
}

.flex-direction-row-reverce {
  flex-direction: row-reverse;
}

.function_feature_list li .txtbox .title {
  line-height: 1.6;
}

.function_feature_list li .txtbox .title span {
  color: #1d3a3f;
  font-size: 20px;
}

.function_note {
  border: 1px solid #1D393F;
  padding: 2em 1.5em 1.5em;
  position: relative;
}

.function_note::before {
  position: absolute;
  content: "だからwagacoが選ばれる！";
  top: -13px;
  left: 22px;
  color: #fff;
  font-size: 15px;
  background-color: #1E3A40;
  height: 26px;
  border-radius: 13px;
  padding: 0 1em;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
}

.function_feature_list li {
  margin-top: 80px;
}

.function_feature_list li:nth-of-type(odd) {
  margin-right: 0;
}

.function_feature_list li:nth-of-type(odd) .txtbox {
  padding-left: 0;
}

.function_feature_list li:nth-of-type(even) {
  margin-left: 0;
}

.function_feature_list li:nth-of-type(even) .txtbox {
  padding-right: 0;
}

.function_feature_list .flex-direction-row-reverce {
  margin-left: auto !important;
}

.function_feature_list .flex-direction-row-reverce .txtbox {
  padding-right: 75px !important;
}

.function_feature_list .flex-direction-row {
  margin-right: auto !important;
}

.function_feature_list .flex-direction-row .txtbox {
  padding-left: 75px !important;
}

.function_text {
  color: #fff;
  font-size: 18px;
  background-color: #5cbcb0;
  width: fit-content;
  margin: 0 auto 15px;
  padding: 0 0.8em;
  line-height: 1.8;
}

.function_feature_list .imgBox {
  position: relative;
}

.play-movie {
  position: absolute;
  bottom: 0;
  right: 60px;
}

@media (max-width: 768px) {
  .function_feature_list li:nth-of-type(even) {
    flex-direction: column;
  }

  .function_feature_list .flex-direction-row-reverce .txtbox {
    padding-right: 15px !important;
  }

  .function_feature_list .flex-direction-row .txtbox {
    padding-left: 15px !important;
  }

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

  .function_head_text {
    font-size: 30px;
  }

  .function_list_text {
    font-size: 22px;
  }

  .function_list_text span {
    font-size: 28px;
  }
}

@media (max-width: 550px) {

  .function_feature_list li {
    margin-top: 50px;
  }

  .function_head_text {
    font-size: 25px;
  }

  .function_text {
    margin-left: 10px;
    margin-right: 10px;
  }

  .function_list_text span {
    font-size: 24px;
  }

  .function_list_text {
    font-size: 20px;
  }

  .grid_list {
    grid-template-columns: repeat(1, 1fr);
  }

  .play-movie {
    right: 20px;
  }
}

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

_introduction.scss

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

_voice.scss

***************************/
.under_voice .top_voice_list {
  padding: 0;
}

.under_voice .top_voice_list li {
  margin-bottom: 45px;
}

.under_voice .top_voice_list li:first-of-type {
  position: relative;
}

.under_voice .top_voice_list li:first-of-type.is-new::before {
  content: url(../img/voice/new.png);
  position: absolute;
  right: 18px;
  top: -30px;
}

.paged-2 .is-new::before {
  content: none !important;
}

.under_voice .top_voice_list li:first-of-type .txtbox .title {
  word-break: break-all;
}

@media screen and (min-width: 1025px) {
  .under_voice .top_voice_list li:first-of-type {
    width: 100%;
    display: flex;
    align-items: center;
  }

  .under_voice .top_voice_list li:first-of-type .txtbox {
    margin-left: 57px;
    display: flex;
    flex-direction: column;
  }

  .under_voice .top_voice_list li:first-of-type .txtbox p {
    text-align: left;
    order: 1;
    font-size: 16px;
    margin-bottom: 0;
  }

  .under_voice .top_voice_list li:first-of-type .txtbox .title {
    order: 2;
    font-size: 18px;
    margin: 20px 0 25px;
    word-break: break-all;
  }

  .under_voice .top_voice_list li:first-of-type .btn-style03 {
    order: 3;
    margin-left: 0;
  }
}

.under_voice_detail_head {
  margin-bottom: 55px;
}

@media screen and (max-width: 768px) {
  .under_voice_detail_head {
    flex-direction: column;
  }
}


.under_voice_detail_head .txtbox {
  word-break: break-all;
  width: 100%;
  max-width: calc(100% - 329px);
}


.under_voice_detail_head .title {
  width: 100%;
  max-width: 674px;
}

.under_voice_detail_head .info_box {
  padding: 30px;
  border: 1px dashed #5CBCB0;
  max-width: 100%;
  width: 376px;
}


@media screen and (max-width: 768px) {
  .under_voice_detail_head .txtbox {
    margin-bottom: 40px;
    max-width: 100%;
  }
}

@media (max-width: 550px) {}

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

_faq.scss

***************************/
.faq__item {
  padding: 30px 25px;
  background-color: #fff;
  border-radius: 9px;
  position: relative;
  border: 1px solid #C2E2DE;
}

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

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

.faq__q::before,
.faq__a::before {
  content: "Q";
  font-family: "Poppins", sans-serif;
  color: #5CBCB0;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -2px;
  font-weight: 600;
}

.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: 30px;
  padding-top: 25px;
  border-top: 1px dotted #1D3A3F;
}

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

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

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

_blog.scss

***************************/
@media screen and (max-width: 768px) {
  .under_blog {
    flex-direction: column;
  }
}

.under_blog_main {
  width: calc(100% - 374px);
}

@media screen and (max-width: 768px) {
  .under_blog_main {
    width: 100%;
  }
}

.under_blog_main .top_blog_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 45px 50px;
  max-width: 624px;
  margin-right: 50px;
}

@media screen and (max-width: 768px) {
  .under_blog_main .top_blog_list {
    margin-right: auto;
    margin-left: auto;
  }
}

.under_blog_main .top_blog_list li {
  padding: 0;
  border-bottom: none;
  max-width: 288px;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .under_blog_main .top_blog_list li {
    margin-right: auto;
    margin-left: auto;
  }
}

.under_blog_main .top_blog_list li&gt;a {
  display: unset;
  align-items: center;
}

.under_blog_main .top_blog_list li .imgbox {
  width: unset;
  padding-right: 0;
  margin-bottom: 24px;
}

.under_blog_main .top_blog_list li .txtbox {
  width: 100%;
}

.under_blog_main .top_blog_list .description {
  color: #CACAD8;
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}

.wp-pagenavi a {
  color: #1D3A3F;
  margin: 0 13px 3px;
  height: 41px;
  line-height: 41px;
  display: block;
  text-decoration: none;
  padding: 0;
  border: 0;
  border-radius: 100%;
}

.wp-pagenavi a.nextpostslink {
  position: relative;
  background: none;
  border: none;
  font-size: 12px;
  margin-left: 20px;
}

.wp-pagenavi a.previouspostslink {
  position: relative;
  background: none;
  border: none;
  font-size: 12px;
  margin-right: 20px;
}

.wp-pagenavi span {
  font-size: 18px;
  color: #1D3A3F;
  width: 41px;
  height: 41px;
  line-height: 41px;
  display: block;
  text-decoration: none;
  padding: 0;
  font-weight: 500;
  border-radius: 100%;
  margin: 0 5px 5px;
}

.wp-pagenavi span.current {
  border: 1px solid #5CBCB0;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .sidebar {
    margin-top: 50px;
    max-width: 374px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.sidebar .top_blog_list {
  width: 374px;
  max-width: 100%;
}

.sidebar .top_blog_list li {
  padding: 17px 0;
}

@media screen and (max-width: 428px) {
  .sidebar .top_blog_list li a {
    flex-direction: row;
  }
}

.sidebar .top_blog_list li .imgbox {
  width: 147px;
  padding-right: 17px;
}

.sidebar .top_blog_list li .txtbox {
  width: calc(100% - 147px);
}

.sidebar .top_blog_list .title {
  font-size: 14px;
}

.blog_cat_list li {
  padding: 15px 5px;
  border-bottom: 1px solid #ddd;
}

.blog_cat_list li a:hover {
  opacity: 1;
  color: #5CBCB0;
}

.under_blog_detail time {
  color: #aaa;
  font-size: 15px;
}

.under_blog_detail .top_blog_cat {
  font-size: 14px;
  margin-left: 50px;
}

.under_blog_detail .main-title {
  font-size: 28px;
  font-weight: bold;
  border-bottom: 1px solid #5CBCB0;
  padding-bottom: 30px;
}

.under_blog_detail .btn-style02 {
  max-width: 287px;
  font-size: 16px;
  line-height: 74px;
}

.detail_main {
  width: calc(100% - 424px);
  max-width: 627px;
  margin-right: 50px;
}

@media screen and (max-width: 768px) {
  .detail_main {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.under_blog_detail_content h1,
.under_blog_detail_content h2,
.under_blog_detail_content h3,
.under_blog_detail_content h4,
.under_blog_detail_content h5,
.under_blog_detail_content h6 {
  padding-left: 23px;
  position: relative;
}

.under_blog_detail_content h1::before,
.under_blog_detail_content h2::before,
.under_blog_detail_content h3::before,
.under_blog_detail_content h4::before,
.under_blog_detail_content h5::before,
.under_blog_detail_content h6::before {
  content: "■";
  display: block;
  color: #5CBCB0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.under_blog_detail_content.title-deco-sq h1,
.under_blog_detail_content.title-deco-sq h2,
.under_blog_detail_content.title-deco-sq h3,
.under_blog_detail_content.title-deco-sq h4,
.under_blog_detail_content.title-deco-sq h5,
.under_blog_detail_content.title-deco-sq h6 {
  padding-left: 0;
}

.under_blog_detail_content.title-deco-sq h1::before,
.under_blog_detail_content.title-deco-sq h2::before,
.under_blog_detail_content.title-deco-sq h3::before,
.under_blog_detail_content.title-deco-sq h4::before,
.under_blog_detail_content.title-deco-sq h5::before,
.under_blog_detail_content.title-deco-sq h6::before {
  content: none;
}

.detail_pagenavi {
  margin-top: 70px;
  position: relative;
  width: 700px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.detail_pagenavi__back {
  display: table;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 1024px) {
  .detail_pagenavi__back {
    margin-top: 140px;
  }
}

.detail_pagenavi .wp-pagenavi .previouspostslink,
.detail_pagenavi .wp-pagenavi .nextpostslink {
  position: absolute;
  left: 0;
  top: 25px;
  font-size: 14px;
  font-weight: normal;
}

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

  .detail_pagenavi .wp-pagenavi .previouspostslink,
  .detail_pagenavi .wp-pagenavi .nextpostslink {
    top: -75px;
  }
}

.detail_pagenavi .wp-pagenavi .previouspostslink i,
.detail_pagenavi .wp-pagenavi .nextpostslink i {
  font-size: 12px;
  padding-right: 7px;
}

.detail_pagenavi .wp-pagenavi .previouspostslink {
  right: 0;
  left: unset;
}

.detail_pagenavi .wp-pagenavi .previouspostslink i {
  padding-left: 7px;
  padding-right: 0;
}

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

_news.scss

***************************/
.news_detail_title .subfont {
  color: #aaa;
  padding-right: 35px;
  display: block;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}

.news_detail_title .title {
  font-size: 28px;
  line-height: 2;
  padding-bottom: 25px;
  border-bottom: 1px solid #5CBCB0;
}

.news_detail_text {
  margin-top: 40px;
}

.news_detail_link {
  line-height: 91px !important;
  border-radius: 10px !important;
  display: block !important;
  color: #fff !important;
  height: auto !important;
  margin: 0 25px 3px !important;
}

.news_detail_pagenavi {
  align-items: center;
}

.news_detail_pagenavi .fa-angle-left {
  margin-right: 8px;
}

.news_detail_pagenavi .fa-angle-right {
  margin-left: 8px;
}

@media (max-width: 768px) {
  .news_detail_link {
    line-height: 75px !important;
    max-width: 240px !important;
    margin: 0 0 3px !important;
  }
}

@media (max-width: 550px) {
  .news_detail_link {
    margin: 7px 0 10px !important;
  }

  .news_detail_pagenavi {
    flex-direction: column;
  }
}

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

_contact.scss

***************************/
.c-contactSec_under {
  margin-top: 0;
}

.under_contact_head {
  width: 835px;
}

.under_contact_head .title-style04 {
  line-height: 1.8;
}

.under_contact_bottom {
  background: url(../img/contact/bg.jpg);
  padding-bottom: 200px;
}

@media screen and (max-width: 768px) {
  .under_contact_bottom {
    padding-bottom: 80px;
  }
}

.under_contact_bottom .inner {
  background-color: #fff;
  padding: 80px 120px;
}

@media screen and (max-width: 1024px) {
  .under_contact_bottom .inner {
    padding: 70px 15px;
  }
}

.contact_form tr {
  display: block;
}

.contact_form tr+tr {
  margin-top: 50px;
}

.contact_form {
  width: 100%;
  text-align: left;
}

.form__th {
  display: block;
  width: 100%;
}

.form__td {
  display: block;
  width: 100%;
}

input,
select,
textarea {
  width: 100%;
}

input::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
  color: #BDCED4;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #BDCED4;
}

.form__td .box {
  padding: 10px 18px;
  border: 1px solid #C2E2DE;
  position: relative;
  margin-top: 15px;
}

.form__td .box.must {
  padding-left: 50px;
}

.form__td .box.must::before {
  content: "*";
  color: #FD6A51;
  display: block;
  position: absolute;
  top: 8px;
  left: 25px;
}

.mwform-radio-field,
.mwform-checkbox-field {
  padding: 10px 18px;
  border: 1px solid #C2E2DE;
  position: relative;
  margin-top: 15px;
  display: block;
}

.type_check input[type=checkbox] {
  display: none;
}

.type_check .mwform-checkbox-field {
  padding-left: 50px;
}

.type_check input[type=checkbox]+span::before {
  left: 16px;
  width: 20px;
  height: 20px;
  margin-top: -12px;
  border: 1px solid #C2E2DE;
  position: absolute;
  content: "";
  top: 60%;
  transition: all 0.2s;
}

.type_check input[type=checkbox]+span::after {
  opacity: 0;
  left: 22px;
  top: 24px;
  width: 8px;
  height: 15px;
  margin-top: -8px;
  border-bottom: 2px solid #1D3A3F;
  border-right: 2px solid #1D3A3F;
  border-radius: 0;
  transform: rotate(45deg);
  position: absolute;
  content: "";
  transition: all 0.2s;
}

.type_check input[type=checkbox]:checked+span::after {
  opacity: 1;
}

tr.zip_search td {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

tr.zip_search td {
  max-width: 607px;
}

.w182 {
  width: 182px;
  max-width: 100%;
  margin-right: 30px;
}

.w182:first-of-type {
  position: relative;
}

.w182:first-of-type::after {
  position: absolute;
  content: "-";
  color: #BDCED4;
  right: -18px;
  top: 7px;
}

@media screen and (max-width: 550px) {
  .w182 {
    width: 100px;
  }
}

.zip-button_wrap {
  font-weight: bold;
  line-height: 46px;
  position: relative;
  width: 100%;
  max-width: 183px;
  border: 2px solid #1D3A3F;
  border-radius: 50px;
  transition: 0.3s;
  background-color: #1D3A3F;
  margin-top: 15px;
  text-align: center;
}

.zip-button_wrap:hover {
  background-color: #fff;
}

.zip-button_wrap:hover button {
  color: #1D3A3F;
  opacity: 1;
}

.zip-button_wrap button {
  color: #fff;
  width: 100%;
}

textarea {
  min-height: 253px;
}

.form_btn_wrap {
  margin-top: 10px;
}

.reservation__privacy__box {
  display: flex;
}

.reservation__privacy__box label {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  cursor: pointer;
}

.reservation__privacy__box input[type=checkbox] {
  display: none;
}

.reservation__privacy__box input[type=checkbox]+span::before {
  left: 0;
  width: 23px;
  height: 23px;
  border: 1px solid #C2E2DE;
  position: absolute;
  content: "";
  top: -17px;
  transition: all 0.2s;
}

.is__reserve__blk input[type=checkbox]+span::before {
  background-color: #fff;
}

.reservation__privacy__box input[type=checkbox]+span::after {
  opacity: 0;
  left: 8px;
  top: -15px;
  width: 8px;
  height: 15px;
  border-bottom: 2px solid #1D3A3F;
  border-right: 2px solid #1D3A3F;
  border-radius: 0;
  transform: rotate(45deg);
  position: absolute;
  content: "";
  transition: all 0.2s;
}

.reservation__privacy__box input[type=checkbox]:checked+span::after {
  opacity: 1;
}

.privacy_content {
  border: 1px solid #C2E2DE;
  padding: 30px 15px;
  overflow-y: scroll;
  height: 186px;
  padding: 30px 50px;
}

.privacy_content.page_privacy_content {
  overflow-y: visible;
  border: none;
  background-color: #fff;
  height: auto;
}

@media screen and (max-width: 768px) {
  .privacy_content {
    padding: 30px 15px;
  }
}

.mw_wp_form .horizontal-item+.horizontal-item {
  margin-left: 0 !important;
}

.reservation__privacy__box .mwform-checkbox-field {
  padding: 0;
  border: none;
  margin-top: 0;
}

.contact_thanks {
  width: 880px;
}

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

_form.scss

***************************/
.under_form_head {
  border: 1px solid #C2E2DE;
  border-radius: 9px;
  margin-left: auto;
  margin-right: auto;
  max-width: 886px;
  width: 100%;
  overflow: hidden;
}

.form_list_title {
  font-size: 18px;
  background-color: #dfefed;
  align-items: center;
  justify-content: center;
}

.form_list_title {
  padding: 1em;
  width: 35.5%;
}

.form_list {
  padding: 2.2em;
  padding-left: 4em;
}

.form_list_item {
  list-style-type: disc;
  list-style-position: inside;
}

.form__td-flex {
  display: flex;
  justify-content: space-between;
}

.form__td-flex .box {
  width: 100%;
}

.form__td-flex .box+.box {
  margin-left: 35px;
}

.select_box {
  width: 48%;
}

.select_box select {
  color: #1D3A3F;
}

.select_box::after {
  content: "";
  position: absolute;
  background-image: url(../img/form/select.png);
  width: 10px;
  height: 6px;
  top: calc(50% - 3px);
  right: 20px;
}

.radio {
  width: auto;
}

.radio_label:nth-child(2) {
  margin-left: 40px;
}

.radio_box {
  padding: 20px 60px 20px 18px !important;
  flex-wrap: wrap;
  justify-content: space-between;
}

.radio_text {
  position: relative;
  cursor: pointer;
  padding-left: 35px;
}

.radio_text::before,
.radio_text::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

.radio_text::before {
  background-color: #fff;
  border: 1px solid #C2E2DE;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  left: 0;
}

.radio_text::after {
  background-color: #1D393F;
  border-radius: 50%;
  opacity: 0;
  width: 12px;
  height: 12px;
  left: 5px
}

input[type="radio"]:checked+.radio_text::after {
  opacity: 1;
}

.radio {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}

.form_date {
  margin-left: 1em;
}

.form_date label {
  cursor: text;
}

.form_date input {
  width: 8.4em;
  margin-left: 1em;
  text-align: right;
  padding-right: .5em;
}

@media (max-width: 768px) {
  .form_date input {
    width: 4em;
  }

  .radio_box {
    padding: 20px 18px 20px 18px !important;
  }
}

@media (max-width: 550px) {
  .under_form_head {
    flex-direction: column;
  }

  .form_list_title {
    width: auto;
  }

  .form_list {
    padding-left: 2.2em;
  }

  .form__td-flex {
    display: block;
  }

  .form__td-flex .box+.box {
    margin-left: 0;
  }

  .select {
    width: auto;
  }

  .radio_box {
    display: block;
  }

  .form_date {
    margin: 0;
  }

  .form_date input {
    width: 3em;
  }
}

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

_footer.scss

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

.pagetop.show {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 99;
  opacity: 1;
  width: 50px;
  line-height: 50px;
  color: #fff;
  background-color: #1D3A3F;
  text-align: center;
  font-size: 15px;
}

.footer_head {
  margin-bottom: 75px;
  margin-top: 67px;
}

@media screen and (max-width: 768px) {
  .footer_head {
    flex-direction: column;
  }
}

@media screen and (max-width: 550px) {
  .footer_head {
    margin-bottom: 35px;
  }
}

.footer_head .txtbox {
  width: 374px;
  max-width: 100%;
  padding-right: 20px;
}

@media screen and (max-width: 768px) {
  .footer_head .txtbox {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 50px;
    text-align: center;
  }
}

@media screen and (max-width: 550px) {
  .footer_head .txtbox .fz14 {
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  .footer_head .app_list {
    justify-content: center;
  }
}

.footer_head .app_list li:first-of-type {
  margin-right: 15px;
}

.footer_bottom {
  color: #aaa;
  background-color: #eee;
}

.footer_bottom .fz13 {
  color: #aaa;
}

.footer_bottom .fz13 {
  line-height: 39px;
}

.footer_gnav {
  width: calc(100% - 374px);
  max-width: 425px;
}

@media screen and (max-width: 1024px) {
  .footer_gnav {
    max-width: 280px;
  }
}

@media screen and (max-width: 768px) {
  .footer_gnav {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }
}

.footer_gnav_list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(115px, 1fr));
  gap: 30px 25px;
  margin-bottom: 35px;
}

@media screen and (max-width: 550px) {
  .footer_gnav_list {
    margin-bottom: 0;
  }
}

.footer_gnav_list li:last-of-type {
  grid-column: 3/4;
}

@media screen and (max-width: 1024px) {
  .footer_gnav_list li:last-of-type {
    grid-column: unset;
  }
}

.footer_gnav .instagram {
  font-size: 21px;
  display: block;
  margin-left: auto;
  color: #fff;
  line-height: 39px;
  width: 39px;
  border-radius: 50%;
  background-color: #5CBCB0;
  text-align: center;
}

.intro_head .question {
  font-size: 32px;
  font-weight: bold;
  display: table;
  background-color: #DFEFED;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 827px;
  padding: 25px 15px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  margin-bottom: 19px;
}

@media screen and (max-width: 768px) {
  .intro_head .question {
    font-size: 25px;
  }
}

.intro_head .question::after {
  position: absolute;
  content: url(../img/introduction/hukidashi.jpg);
  left: 50%;
  transform: translateX(-50%);
  bottom: -32px;
}

@media screen and (max-width: 768px) {
  .intro_head .question::after {
    bottom: -28px;
  }
}

.intro_head .answer {
  font-size: 32px;
  line-height: 1.8;
  letter-spacing: 0;
  padding-top: 50px;
}

@media screen and (max-width: 768px) {
  .intro_head .answer {
    font-size: 25px;
    padding-top: 30px;
  }
}

.intro_head .answer span {
  font-size: 40px;
}

@media screen and (max-width: 768px) {
  .intro_head .answer span {
    font-size: 30px;
  }
}

.intro_head_list {
  max-width: 1000px;
  width: 100%;
}

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

@media screen and (max-width: 1024px) {
  .intro_head_list li {
    margin-top: 60px;
  }
}

.intro_step {
  background: url(../img/top/voice-bg.jpg);
}

.intro_step_list&gt;li {
  background-color: #fff;
  padding: 55px 45px 47px 180px;
  position: relative;
  box-shadow: 0px 6px 13px 2px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1024px) {
  .intro_step_list&gt;li {
    flex-direction: column;
    padding-left: 45px;
  }
}

@media screen and (max-width: 550px) {
  .intro_step_list&gt;li {
    padding: 40px 30px;
  }
}

.intro_step_list&gt;li+li {
  margin-top: 50px;
}

.intro_step_list .light-blue {
  background-color: #F3F9FA;
}

.intro_step_list .app_list li:first-of-type {
  padding: 0 20px 0 5px;
}

.intro_step_list li::after {
  content: url(../img/introduction/dot.png);
  position: absolute;
  top: 143px;
  left: 87px;
}

@media screen and (max-width: 768px) {
  .intro_step_list li::after {
    top: 119px;
    left: 59px;
  }
}

@media screen and (max-width: 550px) {
  .intro_step_list li::after {
    top: 97px;
    left: 49px;
  }
}

.intro_step_list .numbox {
  position: absolute;
  top: 40px;
  left: 45px;
}

@media screen and (max-width: 768px) {
  .intro_step_list .numbox {
    top: 15px;
    left: 15px;
  }
}

@media screen and (max-width: 550px) {
  .intro_step_list .numbox {
    width: 70px;
  }

  .txtbox .underLine {
    font-size: 12px;
  }
}

@media screen and (max-width: 550px) {
  .intro_step_list .imgbox {
    padding-left: 10px;
  }
}

@media screen and (max-width: 428px) {
  .intro_step_list .imgbox {
    padding-left: 70px;
    padding-top: 20px;
  }
}

.intro_step_list .txtbox {
  margin-left: 47px;
  width: 100%;
  max-width: 559px;
}

@media screen and (max-width: 1024px) {
  .intro_step_list .txtbox {
    margin-left: 0;
    margin-top: 40px;
  }
}

.intro_step_list .title {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0;
}

@media screen and (max-width: 550px) {
  .intro_step_list .title {
    font-size: 22px;
  }
}

.intro_support&gt;.title {
  font-size: 40px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 768px) {
  .intro_support&gt;.title {
    font-size: 32px;
  }
}

@media screen and (max-width: 550px) {
  .intro_support&gt;.title {
    font-size: 26px;
  }
}

.intro_support_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px 70px;
}

@media screen and (max-width: 550px) {
  .intro_support_list {
    gap: 70px;
  }
}

@media screen and (max-width: 428px) {
  .intro_support_list {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

.intro_support_list li {
  width: 100%;
  max-width: 509px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 550px) {
  .intro_support_list li {
    margin-top: 0 !important;
  }
}


/* お試し申し込み */

.wpcf7-response-output {
  padding: 10px 20px;
  margin: 0 0 50px;
  margin-top: 0;
  background-color: #fff;
  border: 2px solid #FD6A51;
  color: #FD6A51;
  text-align: center;
  font-weight: bold;
}

.wpcf7-not-valid-tip {
  padding-top: 30px;
  margin-top: 2px;
  background-color: #fff;
  color: #FD6A51;
  font-weight: bold;
}

.entry-content_confirm .field-title {
  font-size: 18px;
  font-weight: bold;
  padding-top: 30px;
  margin-bottom: 10px;
  display: block;
}


.request02 .require_items {
  border: 2px solid #B2B2B2;
  max-width: 960px;
  width: 100%;
  margin: 70px auto;
  padding: 30px 40px;
  background: #fff;
}

.request02 .detail {
  margin-left: 30px;
}

.w180 {
  width: 180px;
  max-width: 100%;
}

.red {
  color: #FD6A51;
}

#sbi_load {
  display: none;
}

#sb_instagram .sb_instagram_header,
.sb_instagram_header {
  display: none !important;
}

@media screen and (max-width: 550px) {
  #sb_instagram.sbi_fixed_height {
    height: 95vw !important;
  }
}

.top_youtube_wrap {
  width: 700px;
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
}


.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*===============================
	reCAPTCHA
=================================*/

.grecaptcha-badge {
	bottom: 65px !important;
}




/* 240927 add */
.mv-bottom-text {
  font-size: 12px;
  color: #9797A6;
  position: relative;
  top: 1em;
  padding: 0 1em;
}

.new-top .top_mv .mv-figure {
  margin-bottom: -2.5em;
}

.new-top .fz24 {
  font-size: 24px;
  text-align: center;
}

.new-top-img01 {
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}

.new-top_service-flex {
  display: flex;
  justify-content: space-between;
  max-width: 850px;
  margin: 0 auto;
  gap: 1em;
}

.poi {
  color: #ffffff;
  font-size: 15px;
  background: #1E3A40;
  border-radius: 50px;
  padding: 3px 22px;
  position: relative;
  top: -15px;
  display: inline;
}

.new-point {
  border: solid 1px #1D393F;
  padding: 21px;
  padding-top: 0;
  margin-bottom: 50px;
}



.mb2em {
  margin-bottom: 2em;
}

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

.c-flex {
  display: flex;
  justify-content: space-around;
  gap: 1em;
  align-items: center;
}

.new-top_price .inner {
  border: none;
}

.new-price_feature p {
  padding: 25px 30px;
  background-color: #DFEFED;
  border-radius: 9px;
  line-height: 1.45;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: .5em;
}

.new-price_feature {
  margin-top: 35px;
    width: 100%;
    max-width: 1002px;
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
    align-items: center;
    gap: 2em;
}

.new-price-02 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
}

.new-price_feature p span {
  font-size: 21px;
  font-weight: 600;
}

.new-support {
  margin-top: 100px;
  padding-top: 75px;
  padding-bottom: 75px;
  background: url(../img/top/voice-bg.jpg);
}

.new-top_faq {
  margin-top: 0;
}

.new-support .c-flex li {
  position: relative;
}

.new-support .c-flex li::after {
  content: url(../img/top/new-arrow-right.png);
  position: absolute;
  top: 48%;
}

.new-support .c-flex li:last-child:after {
  content: none;
}

.fz21 {
  font-size: 21px;
}

.new-top .top_feature_list li .txtbox {
  flex: 0 0 630px;
}

.new-top .top_price .inner {
  margin-top: 5px;
}

.new-top .new-btn01 {
  background: linear-gradient(#8EE1CE, #0D9CA8);
}

.new-grid_list .function_item_link {
  background-color: #EFF7F6;
    color: #1D393F;
    padding: 20px 10px;
    display: flex;
    align-items: center;
    height: 106px;
    gap: .5em;
    font-size: 14px;
    text-align: center;
}

.new-grid_list .function_item p {
  color: #1D393F;
}

.new-grid_list .function_item_link span {
  font-weight: 600;
}

.new-grid_list {
  grid-template-columns: repeat(auto-fit, 245px);
}

.new-grid_list li:nth-child(4) a p {
  margin-left: 3em;
}

.feature-ttl-flex {
  display: flex;
  justify-content: flex-start;
  gap: 2em;
  align-items: center;
}

.feature-ttl-flex-item .title {
  font-size: 28px;
    line-height: 2;
    font-weight: bold;
}

.feature-ttl-flex-item .title span {
  color: #5CBCB0;
}

.new-function_feature_list .txtbox .pink {
  background-color: #FE6865;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  padding: 2px 4px;
}

.new-function_feature_list .txtbox .green {
  background-color: #0D9CA8;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  padding: 2px 4px;
}

.new-function_feature_list li .txtbox {
  flex: 0 0 670px;
}

.mb150 {
  margin-bottom: 150px;
}

.new-sec-btn-list {
  display: flex;
  justify-content: flex-start;
  gap: 3em;
  align-items: center;
  flex-wrap: wrap;
}

.new-sec-btn-list a {
  padding-right: 2em;
  padding-bottom: 15px;
  border-bottom: solid 1px #DBDBEA;
  font-size: 18px;
  color: #1D393F;
}

.new-sec-btn-list li {
  position: relative;
}

.new-sec-btn-list li::after {
  content: url(../img/function/new-black-arrow-down.png);
  position: absolute;
  right: 0;
  top: 6px;
}

.mb55 {
  margin-bottom: 55px;
}

.new-function_feature_list div.txtbox .number {
  color: #1D393F;
    font-weight: 500;
    font-size: 15px;
}

.new-grid_list .function_item::after {
  background-image: url(../img/function/new-arrow-down.png);
  top: 50px;
    right: 15px;
}

.new-function_feature_list,
.feature-ttl-flex,
.new-function_feature_list li {
  padding-top: 100px;
    margin-top: -100px;
}

.bottom-req-btn {
  display: none;
}

.feature-ttl-flex {
  margin-bottom: 90px;
}



@media screen and (max-width: 768px) {
  .new-price_feature,
  .new-price-02,
  .c-flex,
  .new-top_service-flex {
    flex-direction: column;
  }

  .new-support .c-flex li::after {
    left: 49%;
    top: 100%;
    transform: rotate(90deg);
  }

  .new-grid_list {
    margin-bottom: 4em;
  }

  .feature-ttl-flex-item .title {
    font-size: 18px;
  }

  

  

  .feature-ttl-flex {
    margin-bottom: 40px;
    gap: 1em;
  }

  .new-function_feature_list.mb150 {
    margin-bottom: 50px;
  }

  .new-sec-btn-list a {
    font-size: 16px;
    padding-bottom: 8px;
  }

  .new-sec-btn-list {
    gap: 2em;
  }

  .feature-ttl-flex img {
    max-width: 60px;
  }
}

@media screen and (max-width: 550px) {
  .bottom-req-btn {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 22px;
    background: rgba(255, 255, 255, .4);
    z-index: 100;
  }

  .bottom-req-btn .btn-style01 {
    line-height: 100px;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    font-size: 25px;
  }

  .bottom-req-btn .btn-style01 span {
    font-size: 17px;
    width: 60px;
    padding: 2px;
    border-radius: 50px;
  }

  .new-pagetop.show {
    bottom: 155px;
  }

  .new-price_feature p {
    width: 100%;
    justify-content: center;
    font-size: 13px;
    padding: 25px 5px;
  }

  .new-price_feature p span {
    font-size: 18px;
  }

  .new-top .fz24 {
    font-size: 18px;
  }

  .new-top .fz24 br {
    display: none;
  }

  .new-price_feature {
    gap: 1em;
  }

  ul.new-function_feature_list li {
    margin-top: -100px !important;
  }

  .new-function_feature_list li .txtbox {
    flex: 0 0 510px;
  }
}
</pre></body></html>