@charset "utf-8";
/*==================================================
style reset
==================================================*/
html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed,figure, figcaption, footer, header, hgroup,menu, nav, output, ruby, section, summary,time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight:700;
	vertical-align: baseline;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
*{
	font-size: inherit;
	line-height: inherit;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
span{
	line-height: inherit;
	font-size: inherit;
	text-decoration: inherit;
	vertical-align: inherit;
	font-weight: inherit;
}
body{
	-webkit-text-size-adjust: 100%;
}
ol,ul{
	list-style: none;
}
img{
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}
em,strong,em *,strong * {
	font-weight: bold;
	font-style: normal;
}
a{
	text-decoration:none;
	border:none;
	color: inherit;
}
table {
	width:100%;
	table-layout: fixed;
	border-collapse: collapse;
	border-spacing: 0;
	text-align: left;
}
th{
	text-align: left;
}
@media screen and (min-width: 768px) {
	a{
		transition: 0.1s linear; 
	}
	a:hover{
		opacity: 0.8;
	}
	a[href*="tel:"] {
		pointer-events: none;
	}
}
/*==================================================
common structure
==================================================*/
:root {
  --blue: #1c56c7;
  --navy: #003779;
  --orange: #f56121;
  --l-blue: #c8deff;
  --l-blue-bg: #f2f8fc;
  --l-orange: #fff1b3;
  --text: #2e2e2e;
}
/* device
----------------------------------------*/
@media all and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
@media all and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
/* mixin
----------------------------------------*/
@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* structure
----------------------------------------*/
html {
  line-height: 1.6;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 62.5%;
}
body {
  color: var(--text);
}
#wrapper {
  position: relative;
}
section {
  padding: 100px 0;
}
.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.inner02 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}
.fade-up {
  visibility: visible !important;
  animation-name: fade-up;
  animation-duration: 1s;
  animation-fill-mode: both;
}
._white {
  color: #fff;
}
.description {
  text-align: center;
}
#spMenuLayer.is-active {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: var(--text);
  opacity: 0.2;
  z-index: 97;
}
@media all and (max-width: 1130px) {
  .inner,.inner02 {
    padding: 0 15px;
  }
}
@media all and (max-width: 767px) {
  section {
    padding: 50px 0;
  }
  .inner,.inner02 {
    width: 100%;
    padding: 0 5%;
  }
  .description {
    text-align: left;
  }
}
/* l-main
----------------------------------------*/
.l-main {
  overflow: hidden;
  display: block;
  font-size: 1.6rem;
  font-feature-settings: "palt";
  line-height: 1.875;
  padding-top: 106px;
}
@media all and (max-width: 900px) {
  .l-main {
    font-size: 1.4rem;
    padding-top: 71px;
  }
}
/*==================================================
common parts
==================================================*/
/* text
----------------------------------------*/
.m-tc {
  text-align: center;
}
.m-tr {
  text-align: right;
}
.m-tl {
  text-align: left;
}
.m-num {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
}
.m-notice {
  color: var(--orange);
  font-weight: inherit;
}
.m-bold {
  font-weight: 700;
}
sup {
  font-size: 50%;
  vertical-align: super;
  padding-right: 0.3em;
}
/* cta,btn
----------------------------------------*/
.ctaWrap {
  display: flex;
}
.ctaNote {
  margin: 4em 3em 1em;
  background-color: #fff;
  padding: 1.5em;
  border-radius: 5px;
}
.ctaNote li {
  font-size: 90%;
  font-weight: 300;
  list-style: disc;
  line-height: 1.6;
  margin-left: 1.3em;
  margin-top: .5em;
}
.m-btn, .m-btn-04 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: auto;
  margin: 0 auto;
  padding: .7em;
  padding-right: 1em;
  border-radius: 4em;
  background: var(--orange);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
  border: solid 2px var(--orange);
}
.m-btn-03 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 380px;
  height: 70px;
  margin: 0 auto;
  border-radius: 0px;
  background: var(--blue);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
}
.m-btn-04 {
  background: #fff;  
  color: var(--orange);
}
.m-btn:before, .m-btn-04:before {
  content: "";
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  display: block;
  width: 13px;
  height: 21px;
  margin: auto;
  background: url("../img/btn-arrow.svg") no-repeat center;
}
.m-btn-04:before {
  background: url("../img/btn-arrow-02.svg") no-repeat center;
}
.ctaWrap a span {
  display: block;
  text-align: center;
  font-size: 12px;
  margin-top: .8em;
  font-weight: 600;
  line-height: 1.4;
}
@media all and (max-width: 1130px) {
  .ctaNote {
    margin: 3em auto 0;
  }
  .m-btn, .m-btn-04 {
    font-size: 18px;
    width: 48%;
  }
}
@media all and (max-width: 767px) {
  .ctaWrap {
    flex-direction: column;
  }
  .m-btn, .m-btn-04 {
    width: 100%;
    height: auto;
    font-size: 1.8rem;
    padding: 1em;
    padding-right: 1.3em;
  }
  .ctaWrap a + a  {
    margin-top: 25px;
  } 
  .m-btn:before, .m-btn-04:before {
    right: 10px;
    background-size: contain;
    width: 0.7em;
  }
}
/* ttl 
----------------------------------------*/
.l-section__title {
  margin-bottom: 12px;
  font-size: 3.7rem;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}
.l-section__title-sub {
  display: block;
  font-size: 1.8rem;
  line-height: 1.7;
  text-align: center;
}
.l-section__title-sub._txtcolor {
  color: var(--navy);
}
.l-section__title-sub._txtstyle{
  letter-spacing: .15em;
  font-weight: 700;
  color: var(--navy);
}
.l-section__title-sub._sqtxt{
  letter-spacing: .15em;
  font-weight: 700;
  color: var(--navy);
  margin: 75px 0 10px 0;
}
.l-section__title-sub._price{
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.l-section__text {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
}
.secTtl1 {
  font-size: 4.6rem;
  font-weight: 900;
  text-align: center;
  line-height: 1;
}
.secTtl2 {
  font-size: 4.6rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.35;
  font-feature-settings: "palt";
}
@media all and (max-width: 767px) {
  .l-section__title {
    font-size: 2.4rem;
  }
  .l-section__title-sub {
    font-size: 1.4rem;
  }
  .secTtl1 {
    font-size: 2.3rem;
  }
  .secTtl2 {
    font-size: 2.3rem;
  }
}
/*==================================================
 l-header
==================================================*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  align-items: center;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0);
  transition: all 0.5s ease;
  transform: translateX(0%);
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px;
}
.l-header__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  padding: 2.6rem 0;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.l-header__logo {
  margin: 0;
}
.l-header__logo-link {
  display: block;
}
.l-header__cta ul {
  display: flex;
}
.l-header__cta li + li {
  margin-left: 28px;
}
.l-header__cta a, .l-header__cta a span {
  display: block;
  text-align: center;
}
.l-header__cta li a span {
  font-size: 10px;
}
.l-header__cta .m-btn-04, .l-header__cta .m-btn {
  width: auto;
  height: auto;
  line-height: 1.4;
  font-size: 18px;
  padding: .3em 2em;
}
.l-header__cta .m-btn-04::before {
  right: .6em;
  width: 9px;
  height: auto;
  background: url(../img/btn-arrow-02.svg) no-repeat center center / 9px auto;
}
.l-header__cta .m-btn::before {
  right: .6em;
  width: 9px;
  height: auto;
  background: url(../img/btn-arrow.svg) no-repeat center center / 9px auto;
}
@media (max-width: 900px) {
  .l-header__cta {
    display: none;
  }
  .l-header__inner {
    padding: 20px 10px 15px;
  }
  .l-header__logo img {
    height: 36px;
    width: auto;
  }
}
/* hamburger
----------------------------------------- */
.l-hamburger__toggle {
  display: none;
}
.l-hamburger__toggle.is-active .l-hamburger__toggle-wrap span:nth-of-type(1) {
  transform: translateY(12px) rotate(-45deg);
}
.l-hamburger__toggle.is-active .l-hamburger__toggle-wrap span:nth-of-type(2) {
  opacity: 0;
}
.l-hamburger__toggle.is-active .l-hamburger__toggle-wrap span:nth-of-type(3) {
  transform: translateY(-6px) rotate(45deg);
}
.l-hamburger__toggle-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}
.l-hamburger__toggle-wrap span {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 0.2rem;
  background-color: var(--blue);
  transition: all 0.5s ease;
}
.l-hamburger__toggle-wrap span:nth-of-type(1) {
  top: 0;
}
.l-hamburger__toggle-wrap span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s ease;
}
.l-hamburger__toggle-wrap span:nth-of-type(3) {
  bottom: 0;
}
.l-sp__nav-wrap {
  display: none;
}
@media all and (max-width: 900px) {
  .l-hamburger__toggle {
    display: block;
    width: 40px;
    height: 30px;
    padding: 5px;
    cursor: pointer;
    background-color: #fff;
    border-radius: 50%;
    transition: all 0.5s ease;
  }
  .l-sp__nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 98;
    display: block;
    width: 100%;
    height: auto;
    padding: 71px 2rem 50px;
    visibility: hidden;
    background-color: #fff;
    opacity: 0;
    transition: all 0.5s ease;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 5px;
  }
  .l-sp__nav-wrap.is-active {
    visibility: visible;
    opacity: 1;
    animation-name: fade-in;
    animation-duration: 0.5s;
  }
  .l-sp__nav-list {
    padding: 2.6em 0;
  }
  .l-sp__nav-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    font-weight: 500;
  }
 .l-sp__nav-wrap .ctaWrap .c-btn {
    width: 100%;
    font-size: 1.8rem;
  }
}
/*==================================================
 main-visual
==================================================*/
.main-visual {
  padding: 50px 0;
  position: relative;
}
.main-visual .inner {
  max-width: 1240px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-visual__cnt {
  margin-bottom: 10px;
  width: 45%;
}
.main-visual-img{
  width: 52%;
  top: 15px;
  background: var(--blue);
}
.copy {
  background-color: var(--l-blue);
  text-align: center;
  max-width: 88%;
  padding: .3em;
  border-radius: 5em;
  margin: 0 auto 1em;
  font-size: 1.1em;
}
.main-visual-ttl {
  margin-top: 1px;
  margin-bottom: 32px;
  font-size: 3.1rem;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-align: center;
}
.main-catch {
  display: block;
  font-family: "corporate-logo-ver2","Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #5a5a5a;
  margin-bottom: 16px;
}
.main-catch span{
  font-size: 110%;
}
.main-point-three {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.main-point-three > div {
    width: 27.957%;
}
.main-visual-support {
  font-size: 1.4rem;
  font-weight: lighter;
  line-height: 1.4;
  margin: 2em 0 0;
  padding-left: 24px;
}
.main-visual-support + p {
  margin-top: .4em;
  font-size: 80%;
}
@media all and (max-width: 1130px) {
  .main-catch {
    font-size: 2.8vw;
    margin-bottom: 0.3em;
  }
  .copy {
    max-width: 100%;
    font-size: .95em;
    margin: .8em 0;
  }
  .main-visual-ttl {
    font-size: 4vw;
    margin-bottom: 2.2vw;
  }
  .main-visual-support {
    font-size: 1.2vw;
  }
}
@media all and (max-width: 767px) {
  .main-catch {
    font-size: 22px;
    margin-bottom: .8em;
  }
  .main-visual {
    padding: 26px 0;
  }
  .main-visual .inner {
    flex-direction: column;
  }
  .main-visual__cnt {
    width: 100%;
  }
  .main-visual-ttl {
    font-size: 5vw;
    margin: .6em 0 1em;
  }
  .main-visual-subtitle {
    display: flex;
    justify-content: center;
    font-size: 9vw;
    text-align: center;
  }
  .main-point-three {
    justify-content: space-between;
  }
  .main-point-three > div {
    width: 31%;
  }
  .main-visual-support {
    font-size: 1.3rem;
    margin: 1.2em 0 .4em;
    padding-left: 1em;
    text-indent: -1em;
  }
  .main-visual-support + .main-visual-support {
    margin-top: 0;
    font-size: 1.3rem;
  }
  .main-visual-img{
    position: initial;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}
/*==================================================
 #intro
==================================================*/
#intro {
  padding: 100px 0 110px;
  background: var(--l-blue-bg);
  text-align: center;
}
#intro h2 {
  font-size: 28px;
  margin-bottom: 1em;
  line-height: 1.5;
}
#intro h2 span {
  background: linear-gradient( transparent 70%, #ffc100 70%, #ffc100 100%);
}
#intro .imgWrap {
  display: flex;
  align-items: center;  
  margin: 3em 0 3.5em;
}
@media all and (max-width: 767px) {
  #intro {
    padding: 55px 0;
  }
  #intro h2 {
    font-size: 22px;
  }
  #intro h2 span {
    display: inline-block;
  }
  #intro .imgWrap {
    flex-direction: column;
  }
  #intro .imgWrap > div:nth-child(2n) {
    max-width: 70%;
  }
}
/*==================================================
 reason
==================================================*/
#reason {
  background: var(--blue);
}
#reason .l-section__title-wrap {
  color: #fff;
  font-size: 22px;
}
#reason .movie-inner {
  text-align: center
}
#reason .movie-inner .note {
  font-size: .9em;
  font-weight: lighter;
  color: #fff;
  margin: .5em 0 2em;
}
#reason .movie {
  margin: 40px auto 0;
  width: 610px;
  height: 343px;
  border-radius: 2rem;
}
#reason .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 44px;
}
#reason .wrap .item {
  width: 320px;
  max-width: 23%;
  background: #fff;
  text-align: center;
  padding: 44px 10px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}
#reason .wrap .item img {
  display: block;
  margin: 0 auto;
  width: 175px;
}
#reason .wrap .item .txt {
  font-size: 1.8rem;
  line-height: 1.7;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#reason .wrap .item .em {
  color: var(--orange);
}
@media all and (max-width: 1130px) {
  #reason .wrap .item {
    padding: 30px 10px;
  }
  #reason .wrap .item .txt {
    font-size: 1.6vw;
  }
}
@media all and (max-width: 767px) {
  #reason .l-section__title-wrap p {
    font-size: 1.8rem;
  }
  #reason .description {
    text-align: center;
  }
  #reason .movie-inner .note {
    text-align: left;
  }
  #reason .movie {
    width: 100%;
    margin: .5em 0 0;
  }
  #reason .wrap .item {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 20px;
  }
  #reason .wrap .item img {
    min-height: initial;
    max-width: 50%;
  }
  #reason .wrap .item .txt {
    font-size: 1.6rem;
    margin-top: .2em;
  }
}
/*==================================================
 features
==================================================*/
#feature {
  line-height: 1.65;
  padding-bottom: 0;
}
#feature .l-section__title {
  margin-bottom: .8em;
}
#feature .feature-unit {
  position: relative;
}
#feature .feature-unit:nth-child(even) {
  background: var(--l-blue-bg);
}
#feature .feature-unit__inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 0;
}
#feature .feature-unit ol {
  margin: 1.2em 0 0;
}
#feature .feature-unit ol li {
  font-weight: normal;
  font-size: 90%;
}
#feature .flexWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#feature .feature-unit:nth-child(even) .flexWrap {
  flex-direction: row-reverse;
}
#feature .feature-txt {
  padding-top: 1.5em;
  width: 50%;
  letter-spacing: .05em;
}
#feature .feature-ttl {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  font-size: 2.4rem;
  color: var(--navy);
  font-weight: bold;
  line-height: 1.3571428571;
}
#feature .feature-ttl__num {
  display: block;
  margin-left: -25px;
  width: 95px;
}
#feature .feature-ttl__txt {
  padding-left: .3em;
  font-weight: inherit;
}
#feature .feature-txt p {
  font-weight: 400;
  line-height: 1.55;
}
#feature .feature-txt p + p {
  margin-top: 1.3em;
}
#feature .feature-txt p.note {
  margin-top: 1.5em;
  font-size: 80%;
  font-weight: 300;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.5;
}
#feature .feature-txt p.note + .note {
  margin-top: .2em;
}
#feature .feature-imgbtn a {
  margin-top: 2em;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 180px;
  max-width: 100%;
  border-radius: 35px;
  font-size: 1.5rem;
  background: var(--navy);
  color: #fff;
  border: solid 1px var(--navy);
  padding: .6em 3em;
}
#feature .feature-img {
  padding-top: 50px;
  min-width: 45%;
  margin: 0 auto;
  text-align: center;
}
@media all and (max-width: 1130px) {
  #feature .description {
    margin: 0 10px;
  }
  #feature .feature-unit__inner {
    padding: 45px 15px;
  }
  #feature .feature-unit:first-child .feature-unit__inner {
    padding-top: 35px;
  }
  #feature .feature-txt {
    padding-top: 0;
    width: 100%;
    line-height: 1.6;
    font-size: 1.45rem;
  }
  #feature .feature-ttl__num {
    width: 70px;
  }
  #feature .feature-ttl__txt {
    width: calc(100% - 70px);
  }
}
@media all and (max-width: 767px) {
  #feature .feature-unit:nth-child(1n) .flexWrap {
    flex-direction: column;
  }
  #feature .feature-img {
    margin-bottom: 20px;
    padding-top: 0;
  }
  #feature .feature-ttl {
    margin-bottom: 25px;
    font-size: 4.7vw;
  }
  #feature .feature-ttl__num {
    width: 15vw;
    margin-left: initial;
  }
  #feature .feature-ttl__txt {
    width: calc(100% - 15vw);
  }
  #feature .feature-btns-wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #feature .feature-imgbtn {
    max-width: 80%;
    width: 80%;
  }
  #feature .feature-imgbtn a {
    width: 100%;
    font-size: 1.4rem;
  }
}
/*==================================================
 use
==================================================*/
#use {
  padding-bottom: 0;
}
#use .inner.flow {
  padding: 20px 5%;
}
#use .l-section__title-wrap {
  padding-bottom: 10px;
}
#use .use-ttl {
  color: var(--navy);
  display: block;
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: .03em;
  line-height: 1.6;
  margin: 0 0 30px;
  text-align: center;
}
#use .flow__list {
  margin: 0 auto 60px;
  position: relative;
  max-width: 800px;
}
#use .flow__list::before {
  content: "";
  width: 2px;
  height: 87%;
  border-left: 2px solid var(--blue);
  position: absolute;
  left: 50px;
  z-index: 1;
}
#use .flow__item {
  display: flex;
}
#use .flow__item + .flow__item {
  margin-top: 60px;
}
#use .flow__item:last-child {
  position: relative;
}
#use .flow__item:last-child .flow__label {
  background-color: var(--blue);
  color: white;
}
#use .flow__label {
  background: var(--blue);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  height: 100px;
  position: relative;
  width: 100px;
  z-index: 2;
  color: #fff;
}
#use .flow__label .flow__labelText {
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
}
#use .flow__label .flow__labelNumber {
  font-size: 44px;
  font-weight: bold;
  line-height: 1;
}
#use .flow__texts {
  padding-left: 30px;
  width: calc(100% - 100px);
}
#use .flow__texts h3 {
  font-weight: bold;
  font-size: 24px;
  line-height: 140%;
}
#use .flow__texts p {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 180%;
  font-weight: 300;
}
#use .flow .ctaWrap {
  margin: 1.5em 0 2em;
}
#use .flow .ctaWrap a {
  width: 46%;
  font-size: 15px;
  height: auto;
  padding: 1.2em;
}
#use .flow .ctaWrap a:before {
  right: 15px;
}
#use .flow__texts .note li {
  font-weight: 300;
  font-size: 80%;
  padding-top: .5em;
  padding-left: 1em;
  text-indent: -1em;
}
#use .howto {
  padding: 60px 0 110px;
  max-width: 1200px;
  margin: 0 auto;
}
#use .howto .wrap {
  display: flex;
  justify-content: space-between;
  text-align: center;
}
#use .howto .wrap > div {
  width: 32%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#use .howto .wrap h3 {
  margin-bottom: .3em;
  font-size: 1.15em;
  line-height: 1.35;
}
#use .howto a.trg {
  background-color: #eee;
  position: relative;
  display: block;
  height: 260px;
  border-radius: 7px;
}
#use .howto a.trg.sp-only {
  display: none;
}
#use .howto a.trg img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 94%;
}
#use .howto a.trg::after {
  content:"";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: rgba( 255,255,255,0.25 ) url('../img/icon_zoomin.svg') no-repeat center center / 50px 50px;
  z-index: 999;
  transition: .3s;
}
#use .howto a.trg:hover {
  cursor: zoom-in;
}
#use .howto a.trg:hover::after {
  background-size: 62px 62px;
  transition: .3s;
}
@media all and (max-width: 767px) {
  #use .l-section__title {
    margin-bottom: 0;
  }
  #use .use-ttl {
    font-size: 22px;
  }
  #use .flow__list {
    margin-top: 30px;
  }
  #use .flow__list::before {
    left: 30px;
    height: 90%;
  }
  #use .flow__label {
    height: 60px;
    width: 60px;
  }
  #use .flow__label .flow__labelText {
    font-size: 10px;
  }
  #use .flow__label .flow__labelNumber {
    font-size: 28px;
  }
  #use .flow__texts {
    padding-left: 20px;
    width: calc(100% - 60px);
  }
  #use .flow__texts h3 {
    font-size: 19px;
  }
  #use .flow .ctaWrap a {
    width: 100%;
  }
  #use .howto {
    margin-bottom: 0px;
    padding: 0 0 60px;
    width: 90%;
  }
  #use .howto .wrap {
    flex-direction: column;
  }
  #use .howto .wrap > div {
    width: 100%;
  }
  #use .howto .wrap > div + div {
    margin-top: 2.6em;
  }
  #use .howto a.trg {
    height: auto;
    padding: 1em .5em;
  }
  #use .howto a.trg.sp-only {
    display: block;
  }
  #use .howto a.trg.pc-only {
    display: none;
  }
  #use .howto a.trg img {
    position: static;
    top: 0;
    left: 0;
    transform: none;
  }
}
/*==================================================
 solution
==================================================*/
#solution {
  background: #C8DEFF;
}
#solution .inner {
  max-width: 1020px;
}
#solution h2 {
  margin-bottom: 1.8em;
}
#solution .unit + .unit {
  margin-top: 5.5em;
}
#solution .problem, #solution .answer {
  display: flex;
  margin-top: 2.5em;
  position: relative;
  font-size: 1.15em;
}
#solution .answer {
  justify-content: flex-end;
}
#solution .txt {
  width: auto;
  background-color: #fff;
  border-radius: 38% 48% 55% 43%/95% 78% 75% 72%;
  padding: 1.8em 4em;
  line-height: 1.5;
  position: relative;
}
#solution .txt, #solution .txt p {
  font-weight: 400;
}
#solution .img {
  width: 20%;
}
#solution .problem {
  height: 150px;
}
#solution .problem .txt {
  position: absolute;
  top: 1.5em;
  left: 240px;
}
#solution .txt::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 12px solid transparent;
}
#solution .problem .txt::before {
  left: 0;
  transform: translate(-55%, -60%) rotate( 10deg);
  border-right: 40px solid #fff;
}
#solution .answer .txt::before {
  right: 0;
  transform: translate(60%, -30%) rotate( -6deg);
  border-left: 40px solid #fff;
}
#solution .txt p + p {
  margin-top: .6em;
}
#solution .txt .note {
  font-weight: lighter;
  font-size: .7em;
  margin-top: 1em;
  line-height: 1.4;
}
#solution .txt .note + .note {
  margin-top: .2em;
}
#solution .txt em {
  background: linear-gradient(transparent 70%, var(--l-orange) 70%, var(--l-orange) 100%);
}
#solution .unit1 .problem .img {
  background: url(../img/solution_problem1.png) no-repeat right center;
}
#solution .unit2 .problem .img {
  background: url(../img/solution_problem2.png) no-repeat right center;
}
#solution .unit3 .problem .img {
  background: url(../img/solution_problem3.png) no-repeat right center;
}
#solution .answer .img {
  background: url(../img/solution_answer.png) no-repeat right center;
}
@media all and (max-width: 767px) {
  #solution .unit + .unit {
    margin-top: 6.5em;
  }
  #solution .unit {
    font-size: 1.5rem;
  }
  #solution .img {
    width: 30%;
  }
  #solution .txt {
    border-radius: 7px;
    padding: 1em 1.5em;
    font-size: .9em;
  }
  #solution .problem {
    height: auto;
  }
  #solution .answer {
    margin-top: 1em;
  }
  #solution .problem .img {
    position: absolute;
    width: 100px;
    height: 100px;
    top: -65px;
    left: 0;
    background-size: 100%!important;
    background-position: top left!important;
  }
  #solution .unit1 .problem .img, #solution .unit3 .problem .img {
    top: auto;
    bottom: -8px;
    left: -28px;
    background-size: 100%;
    z-index: 1;
  }
  #solution .unit1 .problem .txt, #solution .unit3 .problem .txt {
    padding-left: 4em;
  }
  #solution .problem .txt {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
  }
  #solution .answer .txt {
    width: 100%;
    padding-bottom: 1.5em;
  }
  #solution .answer .img {
    position: absolute;
    bottom: -40px;
    right: -10px;
    width: 84px;
    height: 76px;
    background-size: 120%;
    background-position: top left;
  }
  #solution .txt::before {
    content: none;
  }
}
/*==================================================
 price
==================================================*/
#price {
  padding: 100px 0;
}
#price .inner.cta {
  padding: 5em 0 0;
}
#price .inner.cta .ctaNote {
  margin-top: 2em;
  margin-bottom: 0;
}
.price .priceWrap + .priceWrap {
  margin-top: 40px;
}
.price-ttl {
  padding: 80px 0 12px;
  text-align: center;
  line-height: 1.7;
}
.price-ttl__00 {
  padding: 2.3em 0 1.6em;
  text-align: center;
  line-height: 1.7;
}
.price-ttl__01 {
  display: block;
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: .03em;
  margin-bottom: .25em;
}
.price-ttl__01-label{
  display: inline-block;
  color: var(--orange);
  font-size: 1.4rem;
  border: 1px solid var(--orange);
  border-radius: 13px;
  background-color: #fff;
  width: 160px;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: .2em;
}
.price-ttl__02 {
  font-size: 1.6rem;
  letter-spacing: .03em;
}
.price .priceWrap + .priceWrap .price-ttl__01 {
  font-size: 3.2rem;  
}
.price .priceWrap + .priceWrap .price-ttl__02 {
  font-size: 2rem;  
}
.price-table {
  font-size: 1.6rem;
  line-height: 1.6;
  border-collapse: separate;
}
.price-table .b_radius01 {
  border-radius: 20px 0 0 0;
}
.price-table .b_radius02 {
  border-radius: 0 20px 0 0;
}
.price-table .b_radius03 {
  border-radius: 0 0 0 20px;
}
.price-table .b_radius04 {
  border-radius: 0 0 20px 0;
}
.price-table .b_radius05 {
  border-radius: 20px 20px 0 0;
}
.price-table tr{
  height: 73px;
}
.price-table th, .price-table td {
  vertical-align: middle;
  border: solid 1px #dee5eb;
  font-feature-settings: "palt";
}
.price-table th {
  width: 28%;
  min-width: 260px;
  background: var(--l-blue);
  padding-left: 18px;
}
.price-table td {
  text-align: center;
  padding: 15px 5px 10px;
  background: #fff;
}
.price-table tr:not(.bg) th, .price-table tr:not(.bg) td {
  border: solid 1px #dee5eb;
}
.price-table .num {
  line-height: 1;
  font-size: 5.2rem;
  color: var(--orange);
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  vertical-align: baseline;
}
.price-table .yen {
  position: relative;
  top: -2px;
  font-size: 2rem;
  color: var(--orange);
  vertical-align: baseline;
}
.price-table tr.bg {
  position: relative;
  transform: scale(1.03);
}
.price-table tr.bg th{
  color: #fff;
  border-color: transparent;
  background-color: var(--blue);
  border-width: 0px;
}
.price-table tr.bg td {
  border-color: transparent;
  background: linear-gradient(to right, var(--blue), #5e89df);
  border-width: 0px;
  padding: 24px 5px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.price-table tr.bg td .brandIcon {
  display: flex;
  background-color: #fff;
  border-radius: 7px;
  padding: 10px;
}
.price-table tr.bg td .brandIcon img {
  width: auto;
  height: 100%;
}
.price-table tr.bg td .brandIcon img + img {
    padding-left: 10px;
}
.price-table tr.bg td > div + div {
  margin-top: 12px;
}
.price-table tr.bg td * {
  color: #fff;
}
.price-table tr.bg td .note {
  font-size: 1.2rem;
  font-weight: lighter;
  margin: 1.2em 0 .5em;
}
.price-table tr.bg td .num {
  font-size: 6rem;
}
.price-table tr.bg td .yen {
  font-size: 3rem;
  top: 0;
}
.price-support-list {
  margin-top: 20px;
  font-size: 1.3rem;
  padding-left: 1em;
  text-indent: -1em;
}
.price-support-list li {
  font-weight: normal;
  line-height: 1.55;
  margin-top: .2em;
}
.price-support-list li a {
  color: var(--blue);
  padding: 0 1.4em 0 0;
  font-weight: normal;
  position: relative;
}
.price-support-list li a::after {
  content: "";
  position: absolute;
  display: block;
  width: 1em;
  height: 1em;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../img/icon_external_link_bl.svg) no-repeat center / contain;
  margin-right: .2em;
}
.table-note{
  font-size: 1.4rem;
  margin-top: 15px;
  margin-bottom: 33px;
}
@media all and (max-width: 1130px) {
  .price-table {
    font-size: 1.6rem;
  }
  .price-table th, .price-table td {
    height: auto;
    padding: 15px 5px;
  }
  .price-table .num {
    font-size: 5rem;
  }
}
@media all and (max-width: 767px) {
  #price {
    padding: 55px 0 30px;
  }
  #price .inner.cta {
    padding: 2em 5% 0;
  }
  .price-ttl__00 {
    padding-top: 20px;
  }
  .price-ttl__01 {
    font-size: 2rem!important;
  }
  .price-ttl__01-label {
    display: block;
    margin: 0 auto .5em;
  }
  .price-ttl__02 {
    display: block;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .price-table {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .price-table .num {
    font-size: 8vw;
  }
  .price-table .yen {
    top: 0;
    font-size: 1.6rem;
  }
  .price-table tr.bg td .num {
    font-size: 4.2rem;
  }
  .price-table tr.bg td .yen {
    font-size: 3rem;
  }
  .price-table tr.bg td .note {
    font-size: 1.1rem;
    text-align: left;
  }
  .price-table__support {
    font-size: 1.2rem;
  }
  .price-support-list {
    padding-left: 1.3em;
  }
}
/*==================================================
 support
==================================================*/
.support {
  position: relative;
  padding: 90px 0 75px;
}
.support::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 230px;
  background-color: var(--l-blue-bg);
}
.support-list {
  display: flex;
  justify-content: space-between;
  gap: 0 15px;
  margin-top: 40px;
}
.support-list .txt {
  line-height: 1.5;
}
.support-list li {
  text-align: center;
  font-size: 2rem;
}
.support-list li img {
  margin-bottom: 3px;
}
@media all and (max-width: 1130px) {
  .support {
    padding: 100px 0;
  }
  .support-list {
    gap: 0 10px;
    justify-content: center;
  }
  .support-list li {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 767px) {
  .support {
    padding: 40px 0;
  }
  .support::after {
    height: 100%;
  }
  .support-list {
    flex-wrap: wrap;
    margin-top: 25px;
  }
  .support-list li {
    width: 45%;
    margin-bottom: 20px;
  }
}
/*==================================================
 #case
==================================================*/
.case_note1 {
  font-size: 1.7rem;
  text-align: center;
  margin-top: 4rem;
  line-height: 1.45;
}
@media all and (max-width: 1130px) {
  .case {
    padding-top: 100px;
  }
}
@media all and (max-width: 767px) {
  .case {
    padding: 70px 0 30px;
  }
  .case_note1 {
    margin-top: 2.5rem;
  }
}
.case .flxWrap {
  display: flex;
  flex-wrap: wrap;
}
.case .column {
  display: flex;
  flex-direction: column;
  padding: 1.8em 1.8em 1em;
  background-color: #fff;
  box-shadow: 0px 2px 8px 4px rgba(0,0,0, .1);
  transition: transform .3s;
  position: relative;
  cursor: pointer;
  transition: transform .4s;
}
.case .column:hover {
  opacity: 0.85;
  transform: translateY(-4px);
  transition: transform .4s;
}
.case .column figure {
  position: relative;
}
.case .column figure img {
  object-fit: cover;
  aspect-ratio: 1120/620;
  border-radius: 7px;
}
.case .column figcaption {
  text-align: center;
  font-size: 1em;
  padding: .2em .4em;
  position: absolute;
  left: -.2em;
  bottom: 18%;
  background-color: var(--blue);
  color: #fff;
}
.case .column .tag {
  margin: .6em 0 0;
  text-align: left;
  position: absolute;
  bottom: -2em;
}
.case .column .tag span {
  font-size: 76%;
  padding: .3em .8em;
  background-color: rgba(24,24,24,.8);
  color: #fff;
  border-radius: 6px;
  font-weight: 300;
}
.case .column .txt {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  margin-top: 1.5em;
}
.case .column .txt p {
  text-align: left;
  line-height: 1.7;
  flex-grow: 1;
  font-size: 1.5rem;
  font-weight: 400;
}
.case .column .txt span {
  text-align: center;
  color: var(--blue);
  font-size: .8em;
  margin: 1.8em auto 1em;
  border: 1px solid var(--blue);
  border-radius: 4em;
  width: 10em;
  transition: transform .4s;
}
.case .column:hover .txt span {
  background-color: var(--blue);
  color: #fff;
  transition: .4s;
}
.case .js-slick {
  margin: auto;
  margin-top: 2.5em;
}
.case .js-slick .slick-track {
  display: flex;
}
.case .js-slick .slick-slide {
  height: auto !important;
  margin: 10px 40px; /*pc2件表示時*/
  /* margin: 10px 14px; */ /*pc3件表示時*/
  display: flex;
}
.case .js-slick .slick-prev,
.case .js-slick .slick-next {
  position: absolute;
  display: block;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  width: 30px;
  height: 30%;
  background-color: #bbb;
  border-radius: 3px;
}
.case .js-slick .slick-prev {
  left: -44px;
  background: #eee url(../img/slide_prev.png) no-repeat center center;
  z-index: 95; /*スライドより上に重ねるがheaderよりは下*/
}
.case .js-slick .slick-next {
  right: -44px;
  background: #eee url(../img/slide_next.png) no-repeat center center;
}
.case .js-slick .slick-prev:before,
.case .js-slick .slick-next:before {
  content: "";
}
.case .modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, .7);
  transition:  all 1s ease-in-out;
}
.case .modal-content {
  background: #FFF;
  overflow-y: auto;
  padding: 3em 4.5em;
  width: 70%; 
  max-width: 960px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 80%;
  animation: show 0.6s linear 0s;
  text-align: left;
  line-height: 1.65;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.case .modal-content .title {
  margin-bottom: 2.2em;
}
.case .modal-content .title h3 {
  margin-bottom: .5em;
  font-weight: bold;
  font-size: 1.6em;
  line-height: 1.4;
}
.case .modal-content .title img {
  object-fit: cover;
  aspect-ratio: 1120/470;
  object-position: center top;
  border-radius: 7px;
}
.case .modal-content h4 {
  padding: .2em 0 .3em 1em;
  margin-bottom: 1em;
  border-left: 4px solid var(--blue);
  font-size: 1.3em;
}
.case .modal-content .topic {
  color: var(--blue);
  font-weight: bold;
  margin-bottom: 1em;
  font-size: 1.1em;
}
.case .modal-content .topic::before {
  content: "──";
}
.case .modal-content .img {
  margin: 0 auto 2.7em;
  width: 80%;
  text-align: center;
}
.case .modal-content .interview {
  margin-bottom: 2.8em;
  font-size: 98%;
  line-height: 1.7;
}
.case .modal-content .interview p {
  font-weight: 400;
}
.case .modal-content .interview span {
  font-weight: bold;
}
.case .modal-content .interview p + p {
  margin-top: 1.2em;
}
.case .modal-content .note {
  font-weight: normal;
}
.case .modal-top {
  display: inline-block;
  position: absolute;
  right: 5px;
  top: 5px;
}
.case .modal-close {
  position: absolute;
  top: 10%;
  right: 50%;
  transform: translate(480px,-100%);
  color: #fff;
  text-decoration: none;
  font-size: 5rem;
  line-height: 1;
  padding: 0 8px;
  transition: .3s;
}
.case .modal-close:hover, .modal-close:focus {
  text-decoration: none;
  cursor: pointer;
  opacity: .7;
  transition: .3s;
}
.case .modal-close.btn {
  position: static;
  transform: none;
  font-size: 0.8em;
  text-align: center;
  width: 150px;
  margin: 3em auto 1.5em;
  padding: 0.8em;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 6em;
  transition: .3s;
}
.case .modal-close.btn:hover {
  background-color: var(--blue);
  color: #fff;
  opacity: .9;
  transition: .3s;
}
@keyframes show{
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .case .inner {
    padding: 0;
  }
  .case .flxWrap {
    padding: 0;
    margin-top: 1em;
  }
  .case .column .txt p {
    font-size: 1.4rem;
  }
  .case .column figure img {
    object-position: center top;
    aspect-ratio: 1120/700;
  }
  .case .column figure figcaption, .case .column .txt span {
    font-size: 1em;
  }
  .case .js-slick .slick-slide {
    margin: 10px 14px;
  }
  .case .js-slick .slick-prev,
  .case .js-slick .slick-next {
    width: 15px;
  }
  .case .js-slick .slick-prev {
    left: 10px;
    background: url(../img/slide_prev.png) no-repeat center center / auto 15px;
  }
  .case .js-slick .slick-next {
    right: 10px;
    background: url(../img/slide_next.png) no-repeat center center / auto 15px;
  }
  .case .modal-content {
    width: 94%;
    transform: translate(-50%, -52%);
    padding: 1.5em 2em;
  }
  .case .modal-content h4 {
    font-size: 1.2em;
    padding-left: .6em;
    margin-left: -.2em;
  }
  .case .modal-content .title {
    margin-bottom: 1.5em;
  }
  .case .modal-content .title img {
    aspect-ratio: 1200/600;
  }
  .case .modal-content .img {
    width: 100%;
  }
  .case .modal-close {
    top: 100%;
    transform: translate( 50%, -115% );
  }
  .case .modal-close.btn {
    font-size: 1em;
  }
}
/*==================================================
 faq
==================================================*/
#faq .inner {
  width: 1000px;
}
.faq-sub {
  margin-top: 70px;
  padding: 0 5px 5px 5px;
  border-bottom: solid 3px #0a3e86;
  font-size: 2.4rem;
  font-weight: bold;
}
.l-accordion__wrap:not(:first-of-type) .l-accordion__answer {
  display: none;
}
.l-accordion__wrap:first-of-type .l-accordion__title::before {
  transform: translate(0%, -50%);
}
.l-accordion__wrap:first-of-type .l-accordion__title.close::before {
  transform: translate(0%, -50%) rotateZ(180deg);
}
.l-accordion__wrap {
	transition: .5s;
  border-bottom: 1px solid #ccc;
  padding-left: .5em;
}
.l-accordion__wrap:hover {
	background-color: var(--l-blue-bg);
	transition: .5s;
}
.l-accordion__title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 3rem 6rem 3rem 0;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--navy);
  font-weight: bold;
  cursor: pointer;
}
.l-accordion__title span {
  position: relative;
  display: inline-block;
  min-width: 4.6rem;
  min-height: 4.6rem;
  margin-right: 1.6rem;
  background-color: var(--text);
  border-radius: 50px;
}
.l-accordion__title span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 2.7rem;
  font-weight: normal;
  line-height: 1;
  color: #fff;
  content: "Q";
  transform: translate(-50%, -50%);
}
.l-accordion__title:hover {
  opacity: 1;
}
.l-accordion__title::before {
  position: absolute;
  top: 50%;
  right: 2.4rem;
  width: 1.8rem;
  height: 1.1rem;
  content: "";
  background-image: url(../img/faq_arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: translate(0%, -50%);
  transform: rotateZ(180deg);
  font-family: "Poppins", sans-serif;
  transition: .4s;
}
.l-accordion__title.close::before {
  position: absolute;
  top: 50%;
  right: 2.4rem;
  width: 1.8rem;
  height: 1.1rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: translate(0%, -50%);
  transition: .4s;
}
.l-accordion__answer_inner {
  padding: 0 6rem 2.5em 15px;
  font-size: 1.8rem;
  line-height: 1.67;
}
.l-accordion__answer * {
  font-weight: 400;
}
.l-accordion__answer p + p {
  margin-top: .7em;
}
.l-accordion__answer ul.list {
  margin: 1.2em 0;

}
.l-accordion__answer .note {
  font-size: 1.4rem;
  margin-top: 1.5em;
  padding-left: 1em;
  text-indent: -1em;
}
.l-accordion__answer ul.note li + li {
  margin-top: .4em;
}
.l-accordion__answer {
  padding-left: 6rem;
  position: relative;
}
.l-accordion__answer::before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Poppins", sans-serif;
  font-size: 3.2rem;
  font-weight: normal;
  line-height: 1;
  color: var(--navy);
  content: "A.";
  transform: translate(50%, .1em);
}
@media all and (max-width: 767px) {
  #faq {
    padding: 20px 0 50px;
  }
  #faq .inner {
    width: 100%;
  }
  .faq-sub {
    font-size: 2rem;
    line-height: 1.6;
    margin-top: 2.2em;
  }
  .l-accordion__title {
    padding: 2rem 3.5rem 2rem 0;
    font-size: 1.6rem;
  }
  .l-accordion__title span {
    min-width: 3rem;
    min-height: 3rem;
    margin-right: 1rem;
  }
  .l-accordion__title span::before {
    font-size: 1.8rem;
  }
  .l-accordion__title.close::before {
    right: 0.9rem;
    width: 1.2rem;
    height: 0.733rem;
  }
  .l-accordion__title::before {
    right: 0.9rem;
    width: 1.2rem;
    height: 0.733rem;
  }
  .l-accordion__answer_inner {
    padding: 0 3rem 2.5em 0;
    font-size: 1.5rem;
  }
  .l-accordion__answer ._note {
    padding-left: 6rem;
    font-size: 1.4rem;
  }
  .l-accordion__answer span {
    min-width: 4rem;
    min-height: 4rem;
  }
  .l-accordion__answer span::before {
    font-size: 2.4rem;
  }
  .l-accordion__answer::before {
    transform: translate(20%, .1em);
  }
}
/*==================================================
 footer
==================================================*/
.ctaFt {
  background-color: var(--l-blue-bg);
  padding: 3em 0;
}
.l-footer {
  padding: 2em 0;
  background: var(--navy);
}
.l-footer-copy {
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  font-weight: 300;
}
@media all and (max-width: 767px) {
  .l-footer-copy {
    font-size: 1.1rem;
  }
}