@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=LINE+Seed+JP:wght@400;700;800&display=swap');

:root {
  --color-blue: #027ED6;
  --color-dark-blue: #053391;
  --color-blue-w: #1D2087;
  --color-red: #EB322D;
  --color-yellow: #FFDA1B;
  --bg-light-blue:#ECF6FF;
}

html {
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 62.5%;
  background-color: #fff;
  color: #1a1a1a;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased !important;
}

.tx-red{
	color:var(--color-red);
}


a {
  color: #004ea2;
  text-decoration: underline;
  transition: 0.4s ease all;
  -webkit-transition: 0.4s ease all;
  -moz-transition: 0.4s ease all;
}
a:focus,
a:active,
a:hover {
  color: #004ea2;
  text-decoration: none;
}


/*-----------------------------------------------------------
  =/lp/flets-hikari/
-----------------------------------------------------------*/

body{
  width: 100%;
  font-size: 1.8rem;
  font-feature-settings: 'palt';
  letter-spacing:.02em;
  line-height: 1.8;
}
@media only screen and ( max-width:960px) {
  body{
    font-size: 1.5rem;
  }
}

/* Frame Format
---------------------------------*/
#wrapper {
  width: 100%;
  position: relative;
  padding-top:10rem;
}
.inner {
  max-width: 112rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.inner-w {
  max-width: 112rem;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and ( max-width:768px) {
  #wrapper {
    padding-top: 0;
  }
}


/* header
---------------------------------*/
#header{
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 10rem;
  padding: 0 3.2rem;
  width: 100%;
  z-index: 9;
}
#header .header-left_company{
  color:#666;
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: 0;
}
#header .header-left-logo{
  align-items: center;
  display: flex;
  gap: 1.6rem;
  margin-top:.5rem;
}
#header .header-left-logo .logo{
  height: auto;
  width: 18rem;
}
#header .header-left-logo .info .name{
  font-size:1.8rem;
  font-weight: 700;
  line-height: 1.2;
  display: block;
}
#header .header-left-logo .info .area{
  border:.1rem solid var(--color-blue-w);
  border-radius: .4rem;
  color: var(--color-blue-w);
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.22;
  padding: .3rem .8rem .2rem .8rem;
}
#header .header-right{
  align-items: center;
  display: flex;
  gap: 1.6rem;
  justify-content: center;
}
#header .header-right__tel{
  position: relative;
  padding-left:6.8rem;
}

#header .header-right__tel::after{
  background: url(../../../img/lp/flets-west-new04/header-tel-icon.svg) 0 0 no-repeat;
  background-size: 100%;
  content: '';
  display: block;
  height: 6.4rem;
  left: 0;
  position: absolute;
  top: calc(50% - 3.2rem);
  width: 6.4rem;
}
#header .header-right__tel .ttl {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
#header .header-right__tel .num{
  font-size:3.2rem;
  font-weight: 800;
  line-height: 1;
  margin:.4rem 0 .4rem;
}
#header .header-right__tel .time{
  font-size:1.1rem;
  line-height: 1;
}
#header .header-right__contact{
  background-image: linear-gradient(#0f87dd, #0f87dd 50%, #0077CB 50% 100%);
  border:.2rem solid #0365AB;
  border-radius: 1.6rem;
  color: #fff;
  display: flex;
  padding: 2rem;
  align-items: center;
  gap: .8rem;
  height: 8rem;
  transition: 0.4s ease all;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
#header .header-right__contact:hover{
  filter: brightness(1.2);
}
#header .header-right__contact .txt{
  position: relative;
  padding-top:3rem;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0px 3px 0px rgba(0, 0, 0, 0.1);
}
#header .header-right__contact .txt::before {
  background: url(../../../img/lp/flets-west-new04/hedaer-btn-time-bl.svg) 0 0 no-repeat;
  background-size: 100%;
  content: '';
  display: block;
  height: 2.6rem;
  left: calc(50% - 4.8rem);
  position: absolute;
  top: 0;
  width: 9.6rem;
}

@media screen and (min-width: 769px) {
  #header{
    position: fixed;
    top: 0px;
    left: 0px;
  }
}
@media screen and (max-width: 768px) {
  #header{
    height: 8.4rem;
    padding: 0 1rem;
  }
  #header .header-left_company{
    font-size: 1rem;
  }
  /* #header .header-left_company span{
    display: block;
  } */
  #header .header-left-logo{
    /* justify-content: center; */
    gap: 1rem;
    margin-top: .6rem;
  }
  #header .header-left-logo .logo{
    height: auto;
    width: 13rem;
  }
  #header .header-left-logo .info .name{
    font-size:1.4rem;
  }
  #header .header-left-logo .info .area{
    font-size: 1.1rem;
    padding: .2rem .8rem .3rem .8rem;
  }
  #header .header-right{
    display: none;
  }
}


/* Mv
---------------------------------*/
#mv{
  background-image: url(../../../img/lp/flets-west-new04/mv-bg_pc.webp);
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
  height: 60rem;
  text-align: center;
}
#mv .mv-object_pc{
  max-width: 77rem;
  margin:0 auto;
  position: relative;
  top:-13rem;
  margin-bottom:-13rem;
}
#mv .mv-object_sp{
  display: none;
}
@media screen and (max-width: 768px) {
  #mv{
    background: none;
    height: auto;
  }
  #mv .mv-object_pc{
    display: none;
  }
  #mv .mv-object_sp{
    display: block;
  }
}



/* Offer
---------------------------------*/
.offer-btn-list.grid-col-2{
  column-gap: 2.4rem;
  row-gap: 2.8rem;
  align-items: center;
  max-width: 98rem;
  margin:0 auto;
}
.offer-btn-list .item{
  position: relative;
  z-index: 1;
}
.offer-btn-list .item a{
  color:#fff;
  transition: 0.3s ease all;
  position: relative;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
  border: 4px solid #FFFFFF;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap:.6rem;
  border-radius: 10rem;
  height: 11rem;
  overflow: hidden;
  text-decoration: none;
}

.offer-btn-list .item .txt{
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0px 3px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-left:3.6rem;
}
.offer-btn-list .item .txt .free {
	font-size: 1.8rem;
}
.offer-btn-list .item .bubble-txt{
  display: block;
  background-color: #fff;
  padding: .4rem 1.6rem;
  font-weight: 700;
  text-align: center;
  font-size: 1.4rem;
  border-radius: 100px;
  white-space: nowrap;
  position: absolute;
  z-index: 1;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
}

.offer-btn-list .item.contact a{
  background-image: linear-gradient(#0f87dd, #0f87dd 50%, #0077CB 50% 100%);
}
.offer-btn-list .item.contact a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 1.6rem;
  width: 2.8rem;
  height: 2.8rem;
  -webkit-mask-image: url(../../../img/lp/flets-west-new04/btn-arrow.svg);
  mask-image: url(../../../img/lp/flets-west-new04/btn-arrow.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transform: translateY(-50%);
  background-color: #fff;
}
.offer-btn-list .item.contact .txt::after {
  background-image: url(../../../img/lp/flets-west-new04/btn-contact-icon.svg) ;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100%;
  content: '';
  display: block;
  height: 3rem;
  left: 0;
  position: absolute;
  top: calc(50% - 1.5rem);
  width: 3rem;
}
.offer-btn-list .item.contact .bubble-txt{
  color:var(--color-blue);
  border:.1rem solid var(--color-blue);
}
.offer-btn-list .item.tel a{
  background-image: linear-gradient(#eb322d, #eb322d 50%, #D61A15 50% 100%);
}
.offer-btn-list .item.tel .tel-num{
  position: relative;
  padding-top:1.2rem;
  max-width:36rem ;
  margin:0 auto;
}
.offer-btn-list .item.tel .bubble-txt{
  color:var(--color-red);
  border:.1rem solid var(--color-red);
}
.mv-offer .offer-btn-list{
  position: relative;
  top:-7.2rem;
  margin-bottom:-7.2rem;
}
.offer-block{
  background-color: #002672;
  padding:3.2rem 0 4rem;
  overflow: hidden;
}
.offer-block .offer-heading{
  color:#fff;
  font-size:3rem;
  font-weight: 800;
  line-height: 1.44;
  margin-bottom:2.4rem;
  text-align: center;
}
.offer-block .offer-heading span{
  font-size:2.2rem;
  padding-right:1rem;
}
.offer-block .inner {
  position: relative;
}

@media screen and (min-width: 769px) {
  .offer-block .inner::after {
    background: url(../../../img/lp/flets-west-new04/offer-operetor.webp) 0 0 no-repeat;
    background-size: 100%;
    content: '';
    display: block;
    height: 24rem;
    left: -8rem;
    position: absolute;
    bottom: -4.1rem;
    width: 18rem;
  }
}

@media screen and (max-width: 768px) {
  .offer-btn-list .item a{
    border: 4px solid #FFFFFF;
    border-radius: 10rem;
    height: 8.8rem;
  }
  .offer-btn-list .item .txt{
    font-size: 2rem;
    padding-left:3rem;
  }
  .offer-btn-list .item .txt .free {
    font-size: 1.4rem;
  }
  .offer-btn-list .item .bubble-txt{
    padding: .2rem 1.2rem;
    font-size: 1.2rem;
    top: -1rem;
  }
  .offer-btn-list .item.contact .txt::after {
    height: 2.4rem;
    top: calc(50% - 1.2rem);
    width: 2.4rem;
  }
  .offer-btn-list .item.tel .tel-num{
    position: relative;
    padding-top:1rem;
    max-width:26rem ;
    margin:0 auto;
  }
  .offer-btn-list .item.tel a::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 1rem;
    width: 1.6rem;
    height: 1.6rem;
    -webkit-mask-image: url(../../../img/lp/flets-west-new04/btn-arrow.svg);
    mask-image: url(../../../img/lp/flets-west-new04/btn-arrow.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    transform: translateY(-50%);
    background-color: #fff;
  }
  .offer-btn-list .item.contact a::after {
    right: 1rem;
    width: 1.6rem;
    height: 1.6rem;
  }
  .offer-block{
    padding:2.4rem 0;
  }
  .offer-block .offer-heading{
    font-size:2rem;
    margin-bottom:2.4rem;
  }
  .offer-block .offer-heading span{
    display: block;
    font-size:1.6rem;
    padding:0;
  }
  .mv-offer .offer-btn-list{
    position: relative;
    top:-3rem;
    margin-bottom:-3rem;
  }
}

@media (hover: hover){
  .offer-btn-list .item a:hover{
    transform: translateY(3px);
    box-shadow: none;
    filter: brightness(1.2);
  }
}
@media (hover: none) {
  .offer-btn-list .item a:active{
    transform: scale(.95);
  }
}

.shine-btn::before {
	animation: 2s 0s shine linear infinite;
	background: linear-gradient(to right, rgba(255,255,255,0) 25%, rgba(255,255,255,.6) 50%, rgba(255, 255, 255, 0) 75%);
	content: '';
	height: 100%;
	left: -100%;
	position: absolute;
	top: 0;
	transform: skewX(-15deg);
	width: 100%;
}
@keyframes shine {
	20% {
		left: 100%;
	}
	100% {
		left: 100%;
	}
}


/* Intro
---------------------------------*/
#intro{
  padding:6.4rem 0 9.6rem;
  text-align: center;
}
#intro .intro-object{
  max-width: 90.6rem;
  margin:0 auto 2.4rem;
}

#intro .intro-point{
  background-color: var(--bg-light-blue);
  border-radius: 2.4rem;
  padding:3.2rem 4rem 4rem;
  margin-top:4.8rem;
}
#intro .intro-point .heading{
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom:2rem;
}
#intro .intro-point-list.grid-col-3{
  column-gap: 3.2rem;
  row-gap: 3.2rem;
}
#intro .intro-point-list .item .img{
  border-radius: 1.6rem;
  overflow: hidden;
}
#intro .intro-point-list .item .sub-heading{
  font-size:2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin:1.6rem 0 .8rem;
}
#intro .intro-point-list .item .txt{
  text-align: left;
  font-size: 1.6rem;
  line-height:1.6 ;
}
#intro .intro-point-list .item .tx-caption{
  text-align: left;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  #intro{
    padding:4rem 0 4.8rem;
  }
  #intro .intro-object{
    width: 88%;
    margin:0 auto 1.6rem;
  }
  #intro .intro-point{
    border-radius: 1rem;
    padding:2rem 2rem 2rem;
    margin-top:3.2rem;
  }
  #intro .intro-point .heading{
    font-size: 2.4rem;
    margin-bottom:1.6rem;
  }
  #intro .intro-point-list.grid-col-3{
    column-gap: 3.2rem;
    row-gap: 3.2rem;
  }
  #intro .intro-point-list .item .img{
    border-radius: 1rem;
  }
  #intro .intro-point-list .item .sub-heading{
    font-size:2rem;
    margin:1.6rem 0 .8rem;
  }
  #intro .intro-point-list .item .txt{
    font-size: 1.5rem;
  }
}



/* Reason
---------------------------------*/
#reason{
  background-color: var(--bg-light-blue);
  padding:8rem 0 9.6rem;
}
#reason .reason-heading{
  max-width: 63.6rem;
  margin:0 auto 4rem;
}
#reason .reason-list .item{
  position: relative;
  background-color: #fff;
  border-radius: 2.4rem;
  padding: 4rem;
  text-align: left;
}
#reason .reason-list .item:not(:first-child) {
  margin-top: 4rem;
}
#reason .reason-list .num {
  width: 8rem;
  height: 8rem;
  background: var(--color-blue-w);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 800;
  border-radius: 100%;
  position: absolute;
  left: -2rem;
  top: -2rem;
}
#reason .reason-list .item-row {
  display: grid;
  gap: 3.6rem;
  grid-template-columns: 40rem auto;
  /* align-items: center; */
}
#reason .reason-list .item-row .pic-row img{
  border-radius: 1.6rem;
  overflow: hidden;
}

#reason .reason-list .item-row .ttl{
  color:var(--color-blue-w);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom:1.6rem;
}
#reason .reason-list .reason-tool.grid-col-4{
  column-gap: 2.4rem;
  row-gap: 2.4rem;
  margin-top:3.2rem;
}
#reason .reason-list .reason-tool .tool-item img{
  border-radius: 1.6rem;
  overflow: hidden;
}
#reason .reason-list .reason-tool .tool-item .txt-item-ttl{
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin:1.6rem 0 .8rem;
  text-align: center;
}
#reason .reason-list .reason-tool .tool-item .txt-item-txt {
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  #reason{
    padding:4rem 0 4.8rem;
  }
  #reason .reason-heading{
    margin:0 auto 3.2rem;
  }
  #reason .reason-list .item{
    border-radius: 1rem;
    padding: 1rem 1rem 2rem;
  }
  #reason .reason-list .item:not(:first-child) {
    margin-top: 3.2rem;
}
  #reason .reason-list .num {
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
    left: -1.6rem;
    top: -1.6rem;
  }
  #reason .reason-list .item-row {
    grid-template-columns: 1fr;
    gap:2rem;
  }
  #reason .reason-list .item-row .pic-row{
    aspect-ratio: 16 / 9;
  }
  #reason .reason-list .item-row .pic-row img{
    border-radius: .8rem;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  #reason .reason-list .item-row .txt-row{
    padding:0 1rem;
  }
  #reason .reason-list .item-row .ttl{
    font-size: 2.2rem;
    margin-bottom:1rem;
    text-align: center;
  }
  #reason .reason-list .reason-tool.grid-col-4{
    margin-top: 2.4rem;;
    padding:0 1rem;
    gap:1.6rem;
  }
  #reason .reason-list .reason-tool .tool-item img{
    border-radius: .8rem;
  }
  #reason .reason-list .reason-tool .tool-item .txt-item-ttl{
    font-size: 1.5rem;
    margin:1rem 0 .8rem;
  }
  #reason .reason-list .reason-tool .tool-item .txt-item-txt {
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.6;
  }
}



/* Flow
---------------------------------*/
#flow{
  padding:8rem 0 9.6rem;
}
#flow .flow-heading{
  max-width: 74.6rem;
  margin:0 auto 4rem;
}
#flow .flow-list .item{
  background-color: var(--bg-light-blue);
  border-radius: 2.4rem;
  padding:1rem 4rem 1rem 1rem;
  display: grid;
  gap: 3.6rem;
  grid-template-columns: 28rem auto;
  align-items: center;
  position: relative;
}
#flow .flow-list .item:not(:first-child) {
  margin-top: 3.2rem;
}
#flow .flow-list .item:not(:first-child)::before{
  content: "";
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  left: 50%;
  top: -32px;
  transform: translateX(-50%);
  width: 21px;
  height: 32px;
  background-image: url(../../../img/lp/flets-west-new04/flow-arrow.svg);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
#flow .flow-list .item .pic-item-row img{
  border-radius: 1.6rem;
  overflow: hidden;
}
#flow .flow-list .item .num{
  color:var(--color-red);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom:.8rem;
}
#flow .flow-list .item .ttl{
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom:1rem;
}
#flow .flow-list .item .txt{
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  #flow{
    padding:4rem 0 4.8rem;
  }
  #flow .flow-heading{
    margin:0 auto 2.4rem;
  }
  #flow .flow-list .item{
    border-radius: 1rem;
    padding:2rem;
    grid-template-columns: 1fr;
    gap:2rem;
  }
  #flow .flow-list .item:not(:first-child) {
    margin-top: 3.2rem;
  }
  #flow .flow-list .item .pic-item-row {
    width: 60%;
    margin:0 auto;
  }
  #flow .flow-list .item .pic-item-row img{
    border-radius: 1rem;
  }
  #flow .flow-list .item .num{
    font-size: 1.2rem;
    text-align: center;
  }
  #flow .flow-list .item .ttl{
    font-size: 2rem;
    text-align: center;
  }

}


.flow-point{
  margin-top:8rem;
}
.flow-point_heading{
  max-width: 33.8rem;
  margin:0 auto 2.6rem;
}
.flow-point-list.grid-col-3{
  column-gap: 2.4rem;
  row-gap: 1.6rem;
}
.flow-point-list .item{
  border:.2rem solid var(--bg-light-blue);
  border-radius: 1.6rem;
  padding:1.2rem 2.4rem 2.4rem;
  text-align: center;
}
.flow-point-list .item .sub-ttl{
  border: .1rem solid var(--color-dark-blue);
  color: var(--color-dark-blue);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.22;
  padding: .2rem .8rem;
  display: inline-block;
  border-radius: .4rem;
}
.flow-point-list .item .ttl{
  color:var(--color-dark-blue);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin:.4rem 0 .8rem
}
.flow-point-list .item .txt{
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .flow-point{
    margin-top:6.4rem;
  }
  .flow-point_heading{
    margin:0 auto 1.6rem;
  }
  .flow-point-list.grid-col-3{
    grid-template-columns: repeat(1, 1fr);
  }
  .flow-point-list .item{
    border-radius: 1rem;
    padding:1.2rem 2rem 2.4rem;
    text-align: center;
  }
  .flow-point-list .item .sub-ttl{
    font-size: 1.2rem;
    padding: .2rem .4rem;
  }
  .flow-point-list .item .ttl{
    font-size: 1.8rem;
    margin:.4rem 0 .8rem
  }
  .flow-point-list .item .txt{
    font-size: 1.4rem;
    line-height: 1.6;
    text-align: left;
  }
}



/* Plan
---------------------------------*/
#plan {
  background-color: var(--bg-light-blue);
  padding:8rem 0 9.6rem;
  overflow: hidden;
}
#plan .inner{
  display: grid;
  gap: 12rem;
  grid-template-columns: 31.6rem auto;
  align-items: center;
  position: relative;
}
#plan .heading{
  max-width: 31.6rem;
}
#plan .inner .price-box{
  background-color: #fff;
  border-radius: 1.6rem;
  color:var(--color-dark-blue);
  padding:3.2rem 2.4rem;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}
#plan .inner .price-box .ttl {
  font-weight: 700;
  line-height: 1.22;
}
#plan .inner .price-box .num {
  font-size: 5.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
}
#plan .inner .price-box .num span {
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  #plan {
    padding:4rem 0 4.8rem;
  }
  #plan .inner{
    gap: 2.4rem;
    grid-template-columns: 1fr;
  }
  #plan .inner .price-box{
    border-radius: 1rem;;
    padding:2.4rem;
    gap: 1.2rem;
  }
  #plan .inner .price-box .ttl {
    font-weight: 700;
    line-height: 1.22;
  }
  #plan .inner .price-box .num {
    font-size: 3.8rem;
  }
  #plan .inner .price-box .num span {
    font-size: 1.8rem;
  }
}



/* Faq
---------------------------------*/
#faq {
  padding:8rem 0 9.6rem;
}
#faq .faq-heading{
  max-width: 42.6rem;
  margin:0 auto 3.6rem;
}
.faq_contents {
  text-align: left;
  background-color: var(--bg-light-blue);
  transition: .3s;
  padding: 1.4rem 2.4rem;
  border-radius: 2.4rem;
}
.faq_contents:not(:first-of-type) {
  margin-top: 2.4rem;
}
.faq-head {
  position: relative;
  cursor: pointer;
  padding:1rem 4rem 1rem 0;
}
.faq-head .ttl {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  padding-left: 2.8rem;
}
.faq-head .ttl:before {
  content: "Q";
  position: absolute;
  left: 0;
  top: .2rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-red);
  line-height: 1;
}
.toggle_icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  background-color:  var(--color-dark-blue);
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 50%;
}
.toggle_icon:before,
.toggle_icon:after {
  display: block;
  content: '';
  background-color: #fff;
  position: absolute;
  width: 11px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.toggle_icon:before {
  width: 2px;
  height: 11px;
}
.faq-head.selected .toggle_icon:before {
  content: normal;
}
.faq_contents dd.accordion-body {
  display: none;
  padding-bottom:1.4rem;
}
.faq-body {
  background-color: #fff;
  border-radius: 1.6rem;
  margin-top: .6rem;
  line-height: 1.66;
  padding: 2.4rem;
}
@media screen and (max-width: 768px) {
  #faq{
    padding:4rem 0 4.8rem;
  }
  .faq_contents {
    padding:.8rem 1rem;
    border-radius: 1rem;
  }
  .faq_contents:not(:first-of-type) {
    margin-top: 1.6rem;
  }
  .faq-head .ttl {
    font-size: 1.6rem;
    padding-left: 2.2rem;
  }
  .faq-head .ttl:before {
    font-size: 2rem;
    top:.2rem
  }
  .toggle_icon {
    width: 22px;
    height: 22px;
    padding: 2px;
  }
  .toggle_icon:before,
  .toggle_icon:after {
    width: 9px;
    height: 2px;
  }
  .toggle_icon:before {
    width: 2px;
    height: 9px;
  }
  .faq-body {
    border-radius: 1rem;
    padding: 1.6rem;
  }
  .faq_contents dd.accordion-body {
    display: none;
    padding-bottom:.6rem;
  }
}


/* page-bottom-caption
---------------------------------*/
.page-bottom-caption{
  background-color: #fff;
  padding-top:6.4rem;
  position: relative;
}
.page-bottom-caption .caption-list{
  margin-top:0;
}
@media screen and (max-width: 768px) {
  .page-bottom-caption{
    padding-top:3.2rem;
  }
}


.footer{
  background-color: #fff;
  padding:4rem 0;
}
.footer-company{
  margin:0 0 4rem;
  padding:2.4rem 0;
  text-align: center;
  position: relative;
}
.footer-company:before{
  position: absolute;
  top: 0;
  content: "";
  display: block;
  height: 1px;
  width: 100%;
   left: 0;
  background: #ddd;
}
.footer-company:after{
  position: absolute;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  left: 0;
  background: #ddd;
}
.footer-company p{
  font-size: 1.4rem;
  line-height: 1.4;
}
.footer-utility{
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: 1.6rem;
}
.footer-utility li {
  position: relative;
  margin-right: 2.4rem;
}
.footer-utility li:last-child {
  margin-right: 0;
}
.footer-utility li a {
  display: block;
  text-decoration: none;
  color: #111;
  transition: .2s ease-in-out;
  position: relative;
  overflow: hidden;
  line-height: 1.4;
}
.footer-utility li a:hover{
  color:var(--color-blue);
}
.footer-utility li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  background: var(--color-blue);
  transition: .4s ease-in-out;
  transform: scale(0, 1);
  transform-origin: left top;
}
.footer-utility li a:hover::before {
  transform: scale(1, 1);
}
.copyright {
  font-size: 1.3rem;
  text-align: center;
  margin-top:4rem;
}

@media screen and (max-width: 768px) {
  .footer{
    margin-bottom:0;
    padding:2.4rem 0 14rem;
  }
  .footer-company{
    margin:0 0 2.4rem;
    padding:1.6rem 0;
  }
  .footer-company p{
    font-size: 1.3rem;
  }
  .footer-utility{
    font-size: 1.3rem;
  }
  .copyright {
    margin-top:2.4rem;
  }
}

.floating-close-bnr {
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  border:.2rem solid #111;
  border-radius: 1.6rem;
  display: block;
  position: fixed;
  bottom: 2rem;
  right: 1rem;
  width:28rem;
  z-index: 9999;
  padding:1.6rem;
  text-align: center;
}
.floating-close-bnr .ttl{
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.6rem;
}
.floating-close-bnr .bnr_close{
  font-size:1.5rem;
  font-weight: 800;
  position: absolute;
  top: -8px;
  right: -8px;
  z-index: 999;
  width: 3rem;
  height:3rem;
  line-height:3rem;
  border: none;
  color:#fff;
  background-color: #111;
  border-radius: 50%;
  cursor: pointer;
}
.floating-close-bnr .bnr_close:hover{
  background-color: #666;
}
.floating-close-bnr .btn a {
  color:#fff;
  transition: 0.3s ease all;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 3px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: .6rem;
  border-radius: 10rem;
  padding: 1rem 1rem ;
  overflow: hidden;
  border:.2rem solid #0365AB;
  background-image: linear-gradient(#0f87dd, #0f87dd 50%, #0077CB 50% 100%);
  text-decoration: none;
}
.floating-close-bnr .btn a::before{
  position: absolute;
  content: "";
  top: 50%;
  right: 1rem;
  width: 1.8rem;
  height: 1.8rem;
  -webkit-mask-image: url(../../../img/lp/flets-west-new04/btn-arrow.svg);
  mask-image: url(../../../img/lp/flets-west-new04/btn-arrow.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transform: translateY(-50%);
  background-color: #fff;
}
.floating-close-bnr .btn .sub-txt {
  padding: .2rem 1rem .2rem;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 6rem;
  line-height: 1.4;
  max-width: 200px;
  margin: auto;
  background-color: #fff;
  color: var(--color-blue);
  white-space: nowrap;
}
.floating-close-bnr .btn .sub-txt .num {
  font-size: 1.2rem;
  font-weight: 700;
}
.floating-close-bnr .btn .txt {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.2);
}
.floating-close-bnr .tap{
  display: none;
}

@media screen and (max-width: 768px) {
  .floating-close-bnr{
    bottom: 0px;
    right: 0px;
    width: 100%;
    border-radius: 0px;
    border: none;
    background-color: #002672;
  }
  .floating-close-bnr .bnr_close{
    font-size: 12px;
    top: -10px;
    right: 10px;
    color:var(--color-dark-blue);
    background-color: #fff;
    border:.1rem solid var(--color-dark-blue);
    display: none;
  }
  .floating-close-bnr .btn a {
    border-radius: 10rem;
    padding: 1.1rem 1rem ;
    border:.2rem solid #fff;
    width: 90%;
    margin:0 auto;
  }
  .floating-close-bnr .btn .txt {
    font-size: 1.8rem;
    position: relative;
    padding-left:2.8rem;
  }
  .floating-close-bnr .btn .txt::after {
    background-image: url(../../../img/lp/flets-west-new04/btn-contact-icon.svg) ;
    background-repeat: no-repeat;
    background-position: 0 0;;
    background-size: 100%;
    content: '';
    display: block;
    height: 2rem;
    left: 0;
    position: absolute;
    top: calc(50% - 1rem);
    width: 2rem;
  }
  .floating-close-bnr .ttl {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom:1rem;
    display: none;
  }
  .floating-close-bnr .btn{
    position: relative;
  }
  /* .floating-close-bnr .btn .sub-txt{
    display: none;
  } */
  .floating-close-bnr .btn .tap{
    display: block;
    width: 5.2rem;
    height: auto;
    position: absolute;
    bottom:-2rem;
    right: 2.4rem;
    animation: anime-tap 0.5s ease 0s infinite alternate;
    transform-origin:center;
  }
  @keyframes anime-tap {
    from {
      transform: scale(0.8,0.8);
    }
    to {
      transform: scale(1,1);
    }
  }
}

@media (hover: hover){
  .floating-close-bnr .bnr_close:hover{
    background-color: #111;
    color:#fff;
  }
  .floating-close-bnr .btn a:hover{
    background-color: #fff;
    box-shadow: unset;
    transform: translateY(3px);
    filter: brightness(1.2);
  }
  .floating-close-bnr .btn a:hover .txt::before {
    background-color: var(--color-red);
  }
}
@media (hover: none) {
  .floating-close-bnr .bnr_close:active{
    background-color: #111;
    color:#fff;
  }
  .floating-close-bnr .btn a:active{
    transform: scale(.95);
  }
}
