@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/*==============================
ページ共通
==============================*/

body {
  color: #231F20;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}
body.hidden{
  overflow: hidden;
}

@media (max-width: 767px) {
  body {
    line-height: 1.5;
    font-size: 14px;
  }
}
.inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .inner {
    width: 100%;
  }
}
.caption{
  font-size: 12px;
  font-weight: 400;
}
img {
  width: 100%;
  vertical-align: top;
}

.section__heading {
  text-align: center;
  font-size: 40px;
  margin-bottom: 40px;
  font-weight: 700;
  color: #4D433E;
}
.section__heading span{
  font-size: 20px;
  display: block;
  color: #F47E50;
}

.mT10{ margin-top: 10px;}
.mT20{ margin-top: 20px;}
.mT30{ margin-top: 30px;}
.mT40{ margin-top: 40px;}
.mT50{ margin-top: 50px;}
.mT60{ margin-top: 60px;}

.f12{ font-size: 12px;}
.f14{ font-size: 14px;}
.f16{ font-size: 16px;}
.f18{ font-size: 18px;}

.left{ text-align: left;}
.center{ text-align: center;}
.right{ text-align: right;}

.fw500{ font-weight: 500;}

.column{ display: flex;}
.ac{ align-items: center;}

.link__btn a{
  max-width: 900px;
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  border: solid 1px #F47E50;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 #F7D3BE;
  overflow: hidden;
  background-color: #fff;
  font-size: 18px;
  font-weight: 700;
  color: #4D433E;
  text-align: center;
}
a{
  transition: 0.3s;
}
a:hover{
  opacity: 0.7;
}
.link__btn a .icon{
  background: #EEF9FA;
  padding: 20px 30px;
  border-radius: 10px 0 0 10px;
}
.link__btn a .icon img{
  width: 50px;
}
.link__btn a .text{
  flex: 1;
  position: relative;
  padding-right: 110px;
}
.link__btn a .text::after{
  content: "";
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(/lp/img/icon_link.svg) center no-repeat;
  background-size: 100%;
}

@media (min-width: 767px) {
  .sp { display: none !important;}
}

@media (max-width: 767px) {
  .pc { display: none !important;}

  .section__heading{
    font-size: 18px;
    margin-bottom: 20px;
  }
  .section__heading span{
    font-size: 12px;
    letter-spacing: -0.12px;
  }
  .column{ flex-flow: column;}

  .mT20{ margin-top: 10px;}

  .link__btn a{
    font-size: 14px;
    align-items: normal;
  }
  .link__btn a .icon{
    padding: 10px;
    display: flex;
    align-items: center;
  }
  .link__btn a .text{
    padding: 20px 50px 20px 10px;
    text-align: left;
    display: flex;
    align-items: center;
  }
  .link__btn a .text::after{
    right: 20px;
  }
}

/*==============================
header
==============================*/
.header {
  padding: 10px 0;
  /*background: #fff;*/
  /*box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);*/
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header.active{
  background: #fff;
}
.header__inner {
  margin: 0 auto;
  padding: 0 20px;
}
.header__content {
  display: flex;
  align-items: center;

}


.header__logo {
  width: 200px;
  max-width: 18%;
}

.header__nav{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.header__navIn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: clamp(10px,2vw,40px);
}
.header__nav-link {
  font-weight: 700;
  text-decoration: none;
  font-size: clamp(13px,1vw,16px);
}
.header__nav-link span {
  font-weight: 700;
}
.header__btn{
  display: none;
}

@media (min-width: 1000px) {
  .header__nav{
    display: flex !important;
  }
}
@media (max-width: 1000px) {
  
  .header{
    padding: 10px 20px;
    z-index: 20;

  }
  .header__content{
    justify-content: space-between;
  }
  .header__logo{
    max-width: none;
    z-index: 20;
    position: relative;
    width: 185px;
  }
  .header__nav{
    display: none;
    position: fixed;
    background: #fff;
    /*height: 100vh;*/
    width: 100%;
    top: 0;
    left: 0;
    padding: 80px 0 20px;
    z-index: 10;
    overflow-y: scroll;
  }
  .header__navIn{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0;
  }
  .header__navIn::after{
    content: "";
    display: block;
    width: 50%;
    height: 0;
    border-top: solid 1px #FFF5E8;
  }
  .header__nav a{
    width: 50%;
    font-size: 14px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    padding: 20px 10px 20px 20px;
    border-top: solid 1px #FFF5E8;
  }
  .header__nav a:nth-child(2n){
    border-left: solid 1px #FFF5E8;
  }
  .header__nav a::after{
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url(/lp/img/icon_arw.svg) center no-repeat;
    background-size: contain;
    transform: rotate(180deg);
  }
  .header__nav a:last-child{
    border-bottom: solid 1px #FFF5E8;
    border-right: solid 1px #FFF5E8;
  }
  
  .header__nav-link {
    font-size: 14px;
  }
  .header__btn{
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #F47E50;
    background: #FFF;
    box-shadow: 0 0 10px 0 #F7D3BE;
    z-index: 20;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    gap: 6px;
    cursor: pointer;
  }
  .header__btn span:nth-child(1),
  .header__btn span:nth-child(2),
  .header__btn span:nth-child(3){
    display: block;
    width: 27px;
    height: 2px;
    background: #F47E50;
    border-radius: 10px;
    transition: 0.3s;
  }
  .header__btn.open{
    box-shadow: none;
    border: none;
  }
  .header__btn.open span:nth-child(1){
    position: absolute;
    transform: rotate(45deg);
  }
  .header__btn.open span:nth-child(2){
    display: none;
  }
  .header__btn.open span:nth-child(3){
    position: absolute;
    transform: rotate(-45deg);
  }
}


@media (max-width: 767px){

  .header__inner {
    max-width: 100%;
    padding: 0;
  }

}


/*==============================
footer
==============================*/
.footer{
  text-align: center;
  font-size: 14px;
  background-color: #A4E2E9;
  color: #27A1AE;
  padding: 20px 10px;
}

@media (max-width: 767px){
  .footer{
    padding-bottom: 70px;
  }
}



/*==============================
追従バナー
==============================*/
.fixed_nav{
  position: fixed;
  right: 0;
  bottom: 90px;
  z-index: 10;
}
.fixed_nav .mail,
.fixed_nav .line{
  box-shadow: 0 0 20px 0 #F7D3BE;
  border: solid 1px #fff;
  border-right: none;
  border-radius: 30px 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  gap: 4px;
  color: #fff;
  width: 130px;
  height: 130px;
  text-align: center;
  line-height: 1.3;
  margin: 20px 0;
  font-weight: 700;
}
.fixed_nav .mail{
  background: #E2544C;
}
.fixed_nav .line{
  background: #06C755;
}
.fixed_nav .mail img,
.fixed_nav .line img{
  width: 30px;
}
@media (max-width: 767px){
  .fixed_nav{
    display: flex;
    width: 100%;
    bottom: 0;
    box-shadow: 0 0 20px 0 #A4E2E9;
  }
  .fixed_nav .mail,
  .fixed_nav .line{
    width: 50%;
    height: auto;
    border-radius: 0;
    border-bottom: none;
    border-left: none;
    border-right: none;
    padding: 20px 0;
    margin: 0;
    flex-flow: row;
    line-height: 1.3;
    box-shadow: none;
  }
  .fixed_nav .mail{
    border-left: 0;
  }
  .fixed_nav .line{
    border-right: 0;
    gap: 8px;
  }
  .fixed_nav .mail img,
  .fixed_nav .line img{
    width: 20px;
  }
}

/*==============================
ページトップボタン
==============================*/
.page_top{
  position: fixed;
  right: 20px;
  bottom: 80px;
  width: 40px;
  height: 40px;
  background: #27A1AE;
  box-shadow: 0 0 10px 0 #A4E2E9;
  border-radius: 20px;
  display: none;
}
@media (max-width: 767px){
  .page_top{
    display: flex;
    align-items: center;
    justify-content: center;
  }
}


/*==============================
mv
==============================*/
.mv {
  position: relative;
  /*padding: 85px 0 200px;*/
  max-height: 743px;
  height: 46vw;
  display: flex;
  background: url(/lp/img/mv_bg.jpg) center no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .mv {
    padding-top: 30px;
    max-height: none;
    height: auto;
    background-image: url(/lp/img/mv_bg_sp.jpg);
  }
}

.mv__logo {
  width: 200px;
}
.mv__content{
  max-width: 1200px;
  width: 80%;
  margin: auto;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .mv__content{
    padding: 0;
    width: 100%;
  }
  .mv__main {
    width: 100%;
  }
}

/*==============================
about
==============================*/
.about{
  background: url(/lp/img/about_bg.jpg) center no-repeat;
  background-size: cover;
  padding: 80px 0;
}

.about__logo{
  max-width: 350px;
  margin: auto;
}
.about__content{
  border-radius: 30px;
  padding: 30px;
  background: #ffffffdb;
}
.about .text{
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 180%;
}
.about__period,
.about .caption{
  max-width: 730px;
  margin-left: auto;
  margin-right: auto;
}
.about__period{
  display: flex;
  /*align-items: center;*/
  border: solid 1px #F47E50;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.about__period-title{
  background: #F47E50;
  line-height: 50px;
  padding: 4px 30px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
}
.about__period-data{
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex: 1;
  gap: 10px;
}
.about__period-data p{
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}
.about__period-data p span{
  font-size: 32px;
  font-weight: 700;
}

@media (max-width: 1000px){
  .about__period-data p span{
    font-size: 28px;
  }
  .about__period-data p{
    font-size: 16px;
  }
}
@media (max-width: 767px){
  .about{
    background: #EEF9FA;
    padding: 30px 0;
  }
  .about__logo{
    width: 80%;
    margin-top: 30px;
  }
  .about__content{
    padding: 20px;
    margin-top: 10px;
  }
  .about .text{
    font-size: 14px;
    text-align: left;
  }
  .about__period{
    flex-flow: column;
  }
  .about__period-title{
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 14px;
    padding: 4px 20px;
    line-height: 1.6;
  }
  .about__period-data{
    display: block;
    width: 100%;
    padding: 8px 20px;
    font-size: 16px;
  }
  .about__period-data p{
    display: inline-block;
    font-size: 18px;
  }
  .about__period-data p span{
    font-size: 18px;
  }
}
/*==============================
example
==============================*/
.example{
  padding-top: 80px;
  background: #F7D3BE;
}
.example__inner{
  max-width: 1000px;
}
.example .heading{
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  background-color: #F47E50;
  border-radius: 60px;
  text-align: center;
  color: #fff;
  padding: 10px 30px;
}

@media (max-width: 767px){
  .example{
    padding: 30px 20px 0;
  }
  .example .heading{
    font-size: 16px;
    padding: 8px 20px;
  }  
  .example__content{
    margin-top: 20px;
  }
}

/*==============================
osusume
==============================*/
.osusume{
  background: url(/lp/img/osusume_bg.jpg) center no-repeat;
  background-size: cover;
  padding: 80px 0;
}
.osusume .column{
  gap: 30px;
}
.osusume .column > div{
  width: 33%;
  padding: 30px;
  display: flex;
  align-items: center;
  flex-flow: column;
  background: #ffffffE6;
  border-radius: 20px;
}
.osusume__logo{
  width: 128px;
}
.osusume__list{
  width: 100%;
}
.osusume__list p{
  background: #3EB148;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  padding: 10px;
  line-height: 110%;
  margin-bottom: 20px;
}
.column-02 .osusume__list p{
  background-color: #4C68B1;
}
.column-03 .osusume__list p{
  background-color: #E95051;
}
.osusume__list ul{
  list-style: disc;
  padding-left: 1.5em;
  font-weight: 700;
}
.osusume__list ul li::marker{
  color: #3EB148;
}
.column-02 .osusume__list ul li::marker{
  color: #4C68B1;
}
.column-03 .osusume__list ul li::marker{
  color: #E95051;
}
@media (max-width: 767px){
  .osusume{
    padding: 30px 0;
  }
  .osusume .column{
    gap: 20px;
  }
  .osusume .column > div{
    width: 100%;
    flex-flow: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
  }
  .osusume__logo{
    width: 30%;
    min-width: 84px;
  }
  .osusume__price{
    width: 65%;
  }
  .osusume__list p{
    font-size: 16px;
    padding: 8px;
    margin-bottom: 10px;
  }
  .osusume__list ul li{
    line-height: 1.8;
  }
  .osusume .caption{
    margin-top: 10px;
  }

}

/*==============================
label
==============================*/
.label{
  font-size: 32px;
  font-weight: 700;
  padding: 28px;
  margin-bottom: 40px;
  text-align: center;
  line-height: 180%;
  background-color: #F47E50;
  color: #fff;
  position: relative;
}
.label::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%,100%);
  border-top: solid 40px #F47E50;
  border-left: solid 80px transparent;
  border-right: solid 80px transparent;
}
.label.label-02{
  background-color: #27A1AE;
  color: #fff;
  margin-bottom: 0;
}
.label.label-02::after{
  border-top: solid 40px #27A1AE;
  border-left: solid 80px transparent;
  border-right: solid 80px transparent;
}


@media (max-width: 767px){
  .label{
    font-size: 18px;
    line-height: 1.5;
    padding: 20px;
    margin-bottom: 30px;
  }
  .label::after,
  .label.label-02::after{
    border-top-width: 30px;
    border-left-width: 58px;
    border-right-width: 58px;
  }
}

/*==============================
subsidy
==============================*/

.subsidy{
  padding: 80px 0;
}
.subsidy__title{
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #3EB148;
}
.subsidy__lead{
  display: flex;
  background: url(/lp/img/subsidy01_bg.png) right no-repeat;
  background-size: cover;
  border-radius: 20px 20px 0 0;
}
.subsidy__lead-icon{
  padding: 20px;
  margin-right: 20px;
  background: #FCFFF0;
  border-radius: 20px 0 0 0;
  position: relative;
  display: flex;
  align-items: center;
}
.subsidy__lead-icon::after{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(100%,-50%);
  border-top: solid 16px transparent;
  border-bottom: solid 16px transparent;
  border-left: solid 20px #FCFFF0;
}
.subsidy__lead-icon img{
  width: 80px;
}
.subsidy__lead-text{
  color: #fff;
  padding: 20px 30px;
  font-size: 18px;
  font-weight: 700;
}
.subsidy .target{
  display: flex;
  align-items: center;
}
.subsidy .target__title{
  background: #3EB148;
  color: #fff;
  border-radius: 10px 0 0 10px;
  font-weight: 700;
  padding: 10px 20px;
}
.subsidy .target__text{
  background: #fff;
  padding: 10px 20px;
  border-radius: 0 10px 10px 0;
  flex: 1;
  font-weight: 700;
}

.subsidy .accordion{
  background: #F1F4C0;
  border: solid 5px #F1F4C0;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
}
.subsidy .accordion .accordion_btn{
  background: #FCFFF0;
  padding: 20px;
  text-align: center;
  color: #3EB148;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.subsidy-01 .accordion .accordion_btn::after{
  filter: brightness(0) saturate(100%) invert(63%) sepia(9%) saturate(3479%) hue-rotate(74deg) brightness(92%) contrast(80%);
}
.subsidy-02 .accordion .accordion_btn::after{
  filter: brightness(0) saturate(100%) invert(37%) sepia(70%) saturate(428%) hue-rotate(186deg) brightness(94%) contrast(95%);
}
.subsidy .accordion .accordion_btn::after{
  content: "";
  width: 20px;
  height: 20px;
  background: url(/lp/img/icon_arw.svg) center no-repeat;
  right: 30px;
  transform: rotate(-90deg);
  transition: 0.3s;
}
.subsidy .accordion .accordion_btn.active::after{
  transform: rotate(90deg);
}
.subsidy .accordion .accordion_contents{
  padding: 40px;
}
.subsidy__table > p:not(.caption){
  font-size: 14px;
}
.subsidy__table .bold{
  font-weight: 700;
}
.subsidy .title__sub{
  border-left: solid 5px #3EB148;
  line-height: 1;
  font-weight: 700;
  padding-left: 15px;
  margin-top: 30px;
  font-size: 16px;
  color: #4D433E;
}
.subsidy__table{
  margin-top: 20px;
  padding-left: 20px;
}
.subsidy__table .text{
  font-size: 14px;
}
.subsidy__table table{
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  margin: 20px auto;
  width: 100%;
}
.subsidy__table table thead tr th{
  background: #3EB148;
  color: #fff;
  padding: 10px 30px;
  font-weight: 700;
  vertical-align: middle;
}
.subsidy__table table tbody tr td{
  border-top: solid 1px #3EB148;
  border-right: solid 1px #3EB148;
  background: #fff;
  padding: 20px 30px 30px;
  font-size: 14px;
  font-weight: 500;
}
.subsidy__table table tbody tr td:last-child{
  border-right: none;
}
.subsidy__table table tbody tr td .bold{
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #3EB148;
  margin-bottom: 20px;
}
.subsidy-01 .subsidy__table table tbody tr td .column{
  gap: 10px;
}
.subsidy-01 .subsidy__table table tbody tr td .column .w55{
  min-width: 55%;
}
.subsidy__table table tbody tr td ul{
  list-style: disc;
  padding-left: 1.5em;
}
.subsidy__table table tbody tr td ul li{
  font-size: 14px;
  font-weight: 500;
}
.subsidy__table table tbody tr td .column ul:first-child{
  min-width: 50%;
}
.subsidy__table table tbody tr td img{
  margin-top: 20px;
  display: block;
}
.subsidy__table table tbody tr td img.w200px{
  max-width: 200px;
  margin: 20px auto 0;
}


.subsidy__table table.table02 thead tr th + th,
.subsidy__table table.table02 tbody tr th + td,
.subsidy__table table.table02 tbody tr td + td{
  border-left: solid 1px #F1F4C0;
  border-right: none;
}
.subsidy__table table.table02 tbody tr th,
.subsidy__table table.table02 tbody tr td{
  font-size: 14px;
  font-weight: 500;
  padding: 20px 30px;
}
.subsidy__table table.table02 tbody tr th{
  background: #FCFFF0;
  border-top: solid 1px #3EB148;
}
.subsidy__table table.table02 tbody tr td{
  text-align: center;
}
.subsidy__table table.table02 tbody tr td .red{
  color: #E2544C;
  font-weight: 700;
}

.subsidy-01,
.subsidy-02,
.subsidy-03{
  margin-bottom: 80px;
}
.subsidy-02 .subsidy__title{
  color: #4C68B1;
}
.subsidy-02 .target__title{
  background-color: #4C68B1;
}
.subsidy-02 .title__sub{
  border-left-color: #4C68B1;
}
.subsidy-02 .subsidy__lead{
  background-image: url(/lp/img/subsidy02_bg.png);
}
.subsidy-02 .subsidy__lead-icon{
  background-color: #F6F9FF;
}

.subsidy-02 .subsidy__lead-icon::after{
  border-left-color: #F6F9FF;
}
.subsidy-02 .accordion{
  background-color: #EBEFF9;
  border-color: #EBEFF9;
}
.subsidy-02 .accordion .accordion_btn{
  background-color: #F6F9FF;
  color: #4C68B1;
}
.subsidy-02 .subsidy__table table thead tr th{
  background-color: #4C68B1;
}
.subsidy-02 .subsidy__table table tbody tr td .bold{
  color: #4C68B1;
}
.subsidy-02 .subsidy__table table tbody tr td{
  border-color: #4C68B1;
}
.subsidy-02 .subsidy__table table tbody tr td .column > img{
  max-width: 150px;
  margin: auto 20px 0 0;
}
.subsidy-02 .subsidy__table table tbody tr td .column .column-item{
  width: 50%;
}
.subsidy-02 .subsidy__table table tbody tr td .column .column-item + .column-item{
  padding-left: 30px;
  margin-left: 30px;
  border-left: solid 1px #4C68B1;
  width: calc(50% + 30px);
}
.subsidy-02 .subsidy__table table tbody tr td .column .column-item .column-item-title{
  background: #EBEFF9;
  padding: 10px 0;
  margin-bottom: 10px;
  text-align: center;
}
.subsidy-02 .subsidy__table table.table02 tbody tr:first-child th,
.subsidy-02 .subsidy__table table.table02 tbody tr:first-child td{
  border-top: none;
}
.subsidy-02 .subsidy__table table.table02 tbody tr th,
.subsidy-02 .subsidy__table table.table02 tbody tr td{
  vertical-align: middle;
}
.subsidy-02 .subsidy__table table.table02 tbody tr th{
  border-color: #4C68B1;
  background-color: #F6F9FF;
  font-weight: 700;
}
.subsidy-02 .subsidy__table table.table02 tbody tr th.bg{
  background-color: #4C68B1;
  color: #fff;
  border-top: solid 1px #4C68B1;
  border-bottom: solid 1px #EBEFF9;
}
.subsidy-02 .subsidy__table table.table02 tbody tr td{
  border-left-color: #4C68B1;
  border-top-color: #EBEFF9;
  text-align: left;
}



.subsidy-03 .subsidy__title{
  color: #E95051;
}
.subsidy-03 .target__title{
  background-color: #E95051;
}
.subsidy-03 .title__sub{
  border-left-color: #E95051;
}
.subsidy-03 .subsidy__lead{
  background-image: url(/lp/img/subsidy03_bg.png);
}
.subsidy-03 .subsidy__lead-icon{
  background-color: #FFFAF9;
}
.subsidy-03 .subsidy__lead-icon::after{
  border-left-color: #FFFAF9;
}
.subsidy-03 .accordion{
  background-color: #FDEEE9;
  border-color: #FDEEE9;
}
.subsidy-03 .accordion .accordion_btn{
  background-color: #FFFAF9;
  color: #E95051;
}
.subsidy-03 .subsidy__table table.table02 thead tr th{
  background-color: #E95051;
}
.subsidy-03 .subsidy__table table.table02 thead tr th + th{
  border-color: #FFFAF9;
}
.subsidy-03 .subsidy__table table.table02 tbody tr th,
.subsidy-03 .subsidy__table table.table02 tbody tr td{
  border-color: #E95051;
  border-left-color: #FDEEE9;
  vertical-align: middle;
}
.subsidy-03 .subsidy__table table.table02 tbody tr th{
  background-color: #FFFAF9;
}
.subsidy-03 .subsidy__table table.table02 tbody tr th .bold{
  color: #E95051;
  font-size: 18px;
  font-weight: 700;
}
.subsidy-03 .subsidy__table table.table02 tbody tr td.left{
  text-align: left;
}


@media (max-width: 767px){
  .subsidy{
    padding: 30px 0;
  }
  .subsidy__title{
    font-size: 18px;
  }
  .subsidy__lead{
    align-items: normal;
  }
  .subsidy__lead-icon{
    display: flex;
    align-items: center;
    width: 75px;
    min-width: 75px;
    padding: 8px;
    margin-right: 0;
  }
  .subsidy__lead-icon::after{
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 12px;
  }
  .subsidy-03 .subsidy__lead-icon::after{
    border-left-color: #FFFAF9;
  }
  .subsidy-02 .subsidy__lead-icon::after{
    border-left-color: #F6F9FF;
  }
  .subsidy__lead-icon img{
    width: 100%;
  }
  .subsidy__lead-text{
    padding: 20px;
    font-size: 12px;
  }
  .subsidy-01, .subsidy-02, .subsidy-03{
    margin-bottom: 30px;
  }
  .subsidy .accordion{
    border-width: 3px;
    border-radius: 0 0 20px 20px;
  }
  .subsidy .accordion .accordion_contents{
    padding: 17px;
  }
  .subsidy .target{
    display: block;
  }
  .subsidy .target__title{
    border-radius: 10px 10px 0 0;
    text-align: center;
    padding: 10px;
  }
  .subsidy .target__text{
    border-radius: 0 0 10px 10px;
    padding: 10px;
  }
  .subsidy .title__sub{
    margin-top: 20px;
    font-size: 14px;
    padding-left: 5px;
  }
  .subsidy__table{
    margin-top: 10px;
    padding-left: 0;
  }
  .subsidy__table table{
    margin: 10px auto;
  }
  .subsidy__table table:not(.table02) thead tr,
  .subsidy__table table:not(.table02) thead tr th,
  .subsidy__table table:not(.table02) thead tr td,
  .subsidy__table table:not(.table02) tbody tr,
  .subsidy__table table:not(.table02) tbody tr th,
  .subsidy__table table:not(.table02) tbody tr td{
    display: block;
    border-right: none;
  }
  .subsidy__table table:not(.table02) col{
    width: 100%;
  }
  .subsidy__table table thead tr th{
    line-height: 1.8;
    padding: 8px;
  }
  .subsidy__table table tbody tr td{
    padding: 10px 20px 20px;
  }
  .subsidy__table table tbody tr td .column-sp{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-flow: row;
  }
  .subsidy__table table tbody tr td .column-sp img{
    min-width: 115px;
    width: 35%;
    margin-top: 0;
  }
  .subsidy-01 .subsidy__table table tbody tr td .column-sp-text{
    gap: 0;
    margin-top: 0;
    width: 65%;
  }
  .subsidy__table table tbody tr td ul li{
    font-size: 12px;
    line-height: 1.8;
  }
  .subsidy__table table tbody tr td .bold{
    font-size: 14px;
    margin-bottom: 8px;
  }
  .subsidy__table table tbody tr td img{
    width: 50%;
    margin: 5px auto 0;
    min-width: 130px;
  }
  .subsidy__table table tbody tr td .column.column-sp{
    align-items: flex-start;
  }
  .subsidy__table table tbody tr td .column-sp > ul,
  .subsidy__table table tbody tr td .column-sp > ul:first-child{
    width: fit-content;
    min-width: auto;
  }
  .subsidy-01 .subsidy__table table.table02 thead tr th{
    width: 33.33%;
  }
  .subsidy__table table.table02 thead tr th,
  .subsidy__table table.table02 tbody tr th,
  .subsidy__table table.table02 tbody tr td{
    padding: 10px;
    vertical-align: middle;
  }

  .js-scrollable{
    margin: 10px auto;
  }
  .js-scrollable table{
    width: 600px;
    margin: 0;
  }
  .js-scrollable table thead tr th{
    font-size: 12px;
  }
  .subsidy-03 .subsidy__table table.table02 thead tr th{
    line-height: 1.6;
  }
  .subsidy-03 .subsidy__table table.table02 thead tr th:first-child{
    width: 35%;
  }
  .subsidy-03 .subsidy__table table.table02 tbody tr th,
  .subsidy-03 .subsidy__table table.table02 tbody tr td{
    font-size: 12px;
  }
  .subsidy-03 .subsidy__table table.table02 tbody tr th .bold{
    font-size: 14px;
  }
  .subsidy-02 .subsidy__lead-icon{

  }
  .subsidy-02 .subsidy__table table:not(.table02),
  .subsidy-02 .subsidy__table table:not(.table02) thead,
  .subsidy-02 .subsidy__table table:not(.table02) tbody{
    display: block;
  }
  .subsidy-02 .subsidy__table table:not(.table02) tbody tr:first-child{
    display: flex;
  }
  .subsidy-02 .subsidy__table table tbody tr td .column .column-item{
    width: 50%;
    padding: 10px;
  }
  .subsidy-02 .subsidy__table table:not(.table02) tbody tr:first-child td:nth-child(1){
    width: 50%;
  }
  .subsidy-02 .subsidy__table table:not(.table02) tbody tr:first-child td:nth-child(2){
    width: 50%;
    border-left: solid 1px #4C68B1;
  }
  .subsidy-02 .subsidy__table table:not(.table02) tbody tr:first-child td .column > img{
    min-width: 120px;
    margin: 10px auto;
  }
  .subsidy-02 .subsidy__table table:not(.table02) tbody tr:not(:first-child) td .column{
    flex-flow: row;
  }
  .subsidy-02 .subsidy__table table:not(.table02) tbody tr:not(:first-child) td{
    padding: 10px 10px 0;
  }
  .subsidy-02 .subsidy__table table:not(.table02) tbody tr:last-child td:last-child{
    padding-bottom: 20px;
  }
  .subsidy-02 .subsidy__table table:not(.table02) tbody tr td{
    font-size: 12px;
    padding: 10px;
  }
  .subsidy-02 .subsidy__table table tbody tr td .column .column-item{
    width: calc(50% - 10px);
    padding: 0 0 10px;
  }
  .subsidy-02 .subsidy__table table tbody tr td .column .column-item + .column-item{
    width: calc(50% + 10px);
    margin-left: 10px;
    padding-left: 10px;
  }
  .subsidy-02 .subsidy__table table tbody tr td .column .column-item .column-item-title{
    font-size: 12px;
    line-height: 1.8;
    padding: 8px 0;
  }
  .subsidy-02 .subsidy__table table.table02 col:nth-child(1),
  .subsidy-02 .subsidy__table table.table02 col:nth-child(2){
    width: 30%;
  }
  .subsidy-02 .subsidy__table table.table02 tbody tr th,
  .subsidy-02 .subsidy__table table.table02 tbody tr td{
    font-size: 12px;
  }
}


/*==============================
flow
==============================*/
.flow{
  background: #FFF5E8;
  padding: 80px 0;
}
.flow__box{
  display: flex;
  gap: 17px;
}
.flow__item{
  width: 16%;
  background: #fff;
  border-radius: 10px;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 0 10px 10px;
  position: relative;
  box-shadow: 0 0 20px 0 #F7D3BE;
}
.flow__item:not(:last-child)::after{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 17px;
  height: 6px;
  background: #27A1AE;
  transform: translate(100%,-50%);
}
.flow__item p{
  flex: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  text-align: center;
  margin-top: 10px;
}
.flow__step{
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  background: #F47E50;
  border-radius: 0 0 10px 10px;
  color: #F7D3BE;
  text-align: center;
  max-width: 100px;
  width: 80%;
  padding: 10px;
  margin: auto;
  line-height: 1;
}
.flow__step span{
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-left: 4px;
}
.flow_img{
  max-width: 900px;
  margin: 40px auto 0;
}

@media (max-width: 767px){
  .flow{
    padding: 30px 0;
  }
  .flow__box{
    flex-flow: column;
    margin-top: 20px;
  }
  .flow__item{
    width: 100%;
    flex-flow: row;
    align-items: normal;
    padding: 0 14px 0 0;
    border-radius: 8px;
  }
  .flow__item:not(:last-child)::after{
    top: auto;
    bottom: 0;
    right: auto;
    left: 50%;
    transform: translate(-50%,100%);
    width: 6px;
    height: 17px;
  }
  .flow__step{
    width: 55px;
    margin: 0;
    border-radius: 8px 0 0 8px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
  .flow__step span{
    display: block;
    margin: 4px 0 0;
  }
  .flow__item p{
    margin-top: 0;
    padding-left: 10px;
    text-align: left;
  }
  .flow__item .flow__icon{
    width: 50px;
    display: flex;
    align-items: center;
  }
  .flow_img{
    margin-top: 20px;
  }
}

/*==============================
achievements
==============================*/

.achievements{
  position: relative;
}
.achievements::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  border-top: solid 40px #A8948D;
  border-left: solid 80px transparent;
  border-right: solid 80px transparent;
}
.achievements_top{
  /*height: 220px;*/
  aspect-ratio: 96/11;
  background: url(/lp/img/achievements_top.png) bottom center no-repeat;
  background-size: cover;
  background-color: #FFF5E8;
  margin-bottom: 80px;
}

.achievements .title__sub{
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #4D433E;
  background: #FFF5E8;
  text-align: center;
  padding: 10px;
  margin-top: 40px;
}
.achievements .title__sub span{
  font-size: 40px;
  color: #F47E50;
}

.strengths__point > div {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: solid 1px #F7D3BE;
  padding: 20px;
  font-weight: 500;
}
.strengths__point .num{
  font-family: "Roboto", sans-serif;
  font-size: 70px;
  font-weight: 800;
  line-height: 0.9;
  color: #F47E50;
  padding: 10px;
}
.strengths__point .title{
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: #27A1AE;
  margin-bottom: 10px;
}

.achievements_img{
  margin-top: 80px;
  background: url(/lp/img/achievements_img_bg.png) center bottom no-repeat;
  background-size: 100%;
  background-color: #fff;
  padding-bottom: 80px;
}
.achievements_img img{
  max-width: 1000px;
  display: block;
  margin: auto;
}
@media (max-width: 767px){
  .achievements_top{
    background: none;
    height: auto;
    margin-bottom: 0;
  }
  .achievements .title__sub{
    padding: 8px;
    margin-top: 20px;
    font-size: 18px;
  }
  .achievements .title__sub span{
    font-size: 20px;
  }
  .strengths__point > div{
    flex-flow: column;
    align-items: center;
    padding: 20px 0;
    gap: 0;
  }
  .strengths__point .num{
    padding: 0;
    font-size: 30px;
  }
  .strengths__point .title{
    text-align: center;
    font-size: 18px;
    line-height: 1.2;
  }
  .strengths__point .text p:not(.title){
    line-height: 1.8;
  }
  .achievements_img{
    background: #A4E2E9;
    padding-bottom: 0;
    margin-top: 30px;
  }
}


/*==============================
contact
==============================*/

.contact{
  padding: 120px 0 80px;
  background: #A4E2E9;
}
.contact__inner{
  max-width: 1120px;
}
.contact-02,
.contact-03{
  padding-top: 80px;
}
.contact__lead{
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
  color: #4D433E;
}
.contect__tel{
  display: flex;
  /*align-items: end;*/
  justify-content: center;
  gap: 40px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 4px 20px 0 #EEF9FA;
  padding: 20px 20px 0;
  margin-top: 30px;
}
.contect__tel > div{
  display: flex;
  align-items: center;
  gap: 20px;
}
.contect__tel > div p{
  color: #27A1AE;
  font-size: 24px;
  font-weight: 700;
}
.contect__tel > div .num{
  font-family: "Roboto", sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #4D433E;
}
.contect__tel > img{
  max-width: 170px;
}

.contact__btn{
  display: flex;
  gap: 20px;
  margin-top: 30px;
}
.contact__btn a{
  font-size: 24px;
  font-weight: 700;
  width: 50%;
  border: solid 1px ;
  display: flex;
  padding: 30px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  border: 2px solid #fff;
  color: #fff;
  box-shadow: 0 0 20px 0 #27A1AE;
}
.contact__btn a.mail{
  background: #E2544C;
}
.contact__btn a.line{
  background: #06C755;
}
.contact__btn a img{
  width: 30px;
}

.contact-03 .contect__tel{
  padding: 20px;
  border-radius: 10px;
}
.contact-03 .contect__tel .num{
  line-height: 1;
}

@media (max-width: 1000px){
  .contect__tel > div .num{
    font-size: 5vw;
  }
  .contect__tel > div p{
    font-size: 2vw;
  }
  .contect__tel > img{
    width: 20%;
  }
}
@media (max-width: 767px){
  .contact{
    padding: 60px 0 30px;
  }
  .contact-02{
    padding-top: 40px;
  }
   .contact-03{
    padding-top: 30px;
   }
  .contact__lead{
    font-size: 14px;
  }
  .contect__tel{
    margin-top: 20px;
    border-radius: 8px;
    padding: 20px 20px 0;
    align-items: flex-end;
    gap: 20px;
  }
  
  .contact__btn a{
    font-size: 2vw;
    line-height: 1.3;
  }
  .contect__tel > div{
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding-bottom: 20px;
    max-width: 200px;
  }
  .contect__tel > div .num{
    line-height: 1;
    font-size: 20px;
  }
  .contect__tel > div .icon{
    width: 20px;
  }
  .contect__tel > div p{
    font-size: 16px;
    width: 100%;
    line-height: 1;
  }
  .contect__tel > img{
    max-width: 90px;
    width: auto;
  }
  .contact__btn{
    flex-flow: column;
    gap: 10px;
  }
  .contact__btn a{
    width: 100%;
    padding: 20px;
    font-size: 18px;
    border-width: 2px;
    line-height: 1.6;
  }
  .contact__btn a img{
    width: 20px;
  }
  .contact-03 .contect__tel{
    margin-top: 0;
    padding: 10px;
    border-radius: 8px;
    align-items: center;

    flex-flow: row;
  }
  .contact-03 .contect__tel > div{
    flex-flow: wrap;
    text-align: center;
    justify-content: center;
    padding-bottom: 0;
  }
  .contact-03 .contect__tel > div p{
    width: 100%;
  }
}

/*==============================
voice
==============================*/

.voice{
  padding: 80px 0;
  background: #EEF9FA;
}
.voice__inner{
  max-width: 1300px;
}
.voice__list{
  position: relative;
}
.voice__list-item{
  width: calc(100% - 120px);
}
.voice__list-item .swiper-slide {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  height: auto;
}
.voice__list-item .swiper-slide-item{
  height: 100%;
}

.voice .swiper-button-prev,
.voice .swiper-button-next{
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 0 20px 0 #A4E2E9;
}
.voice .swiper-button-prev::after,
.voice .swiper-button-next::after{
  font-size: 12px;
  font-weight: bold;
  color: #F47E50;
}


.voice__card-head{
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: solid 1px #F47E50;
}
.voice__profile{
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.voice__profile .icon{
  width: 80px;
}
.voice__title{
  font-size: 14px;
  font-weight: 700;
}
.voice__title .tag{
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  padding: 4px 10px;
  margin-bottom: 4px;
  border-radius: 4px;
  background: #F47E50;
  color: #fff;
  width: fit-content;
}
.voice__card-body .title{
  font-weight: 700;
  margin-bottom: 10px;
  color: #4D433E;
}
.voice__card-body .text{
  font-size: 14px;
}
@media (max-width: 767px){
  .voice{
    padding: 30px 0;
  }
  .voice__list-item{
    width: calc(100% - 50px);
  }
  .voice .swiper-button-prev{
    left: 0;
  }
  .voice .swiper-button-next{
    right: 0;
  }
  .voice .swiper-button-prev::after,
  .voice .swiper-button-next::after{
    font-size: 10px;
  }
  .voice__list-item .swiper-slide{
    padding: 20px;
  }
  .voice__title{
    font-size: 12px;
    margin-bottom: 1em;
  }
  .voice__title .tag{
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 2px;
  }
  .voice__profile{
    font-size: 12px;
  }
  .voice__profile .icon{
    margin-bottom: 4px;
  }
  .voice__card-head{
    margin-bottom: 10px;
  }
  .voice__card-body .title{
    margin-bottom: 8px;
  }
  .voice__card-body .text{
    font-size: 12px;
  }
}


/*==============================
case
==============================*/
.case{
  padding: 80px 0;
  background: url(/lp/img/case_bg.png) center repeat;
}
.case__content{
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  margin-top: 40px;
}
.case__content-head{
  display: flex;
}

.case__content-head .num{
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #F7D3BE;
  background: #F47E50;
  width: 140px;
  padding: 10px 20px;
  text-align: center;
}
.case__content-head .num span{
  font-size: 32px;
  vertical-align: sub;
  margin-left: 4px;
  line-height: 1;
  color: #fff;
}
.case__content-head .name{
  font-size: 20px;
  font-weight: 700;
  background: #F7D3BE;
  flex: 1;
  padding: 10px 20px;
}

.case__content-body{
  display: flex;
  justify-content: center;
  padding: 20px;
  gap: 100px;
}
.case__content-body .before,
.case__content-body .after{
  width: 40%;
}
.case__content-body .before{
  max-width: 400px;
  position: relative;
}
.case__content-body .before::after{
  content: "";
  position: absolute;
  width: 58px;
  height: 44px;
  background: url(/lp/img/case_arw.svg) center no-repeat;
  background-size: contain;
  right: -50px;
  top: 180px;
  transform: translateX(50%);
}
.case__content-body .before{
  max-width: 430px;
}
.case__content-body .tab{
  font-size: 20px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 10px 10px 0 0;
  background: #27A1AE;
  color: #fff;
  width: fit-content;
}
.case__content-body .img,
.case__content-body .swiper{
  border-top: solid 4px #27A1AE;
}

.case__subsidy{
  display: flex;
  align-items: center;
  padding: 20px;
  border: solid 1px #F47E50;
  border-radius: 10px;
  margin-top: 10px;
  gap: 10px;
  font-weight: 500;
}
.case__subsidy img{
  max-width: 50%;
}
.case__content-body .amount{
  padding: 10px;
  margin-top: 10px;
  border-bottom: solid 1px #F7D3BE;
}
.case__content-body .point{
  padding: 20px 10px;
  border-bottom: solid 1px #F7D3BE;
}
.case__content-body .point .title{
  font-size: 18px;
  font-weight: 700;
}
.case__content-body .point .text{
  margin-top: 20px;
  font-size: 14px;
}
.case__content-body .point ul{
  padding-left: 1.5em;
  margin-top: 20px;
}
.case__content-body .point ul li{
  font-size: 14px;
  list-style: disc;
}
.case__content-body .js-swiper-main .swiper-slide{
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  background: #EEF9FA;
}

.case__content-body .js-swiper-thumbs{
  margin-top: 10px;
}
.case__content-body .swiper-slide-thumb-active{
  border: solid 4px #27A1AE;
}
.case__content-body .js-swiper-thumbs .swiper-slide{
  aspect-ratio: 3/4;
  max-width: 16.66%;
  display: flex;
  align-items: center;
  background: #EEF9FA;
}
@media (max-width: 767px){
  .case{
    padding: 30px 0;
  }
  .case__content{
    margin-top: 20px;
    border-radius: 20px;
  }
  .case__content-head .num{
    width: 55px;
    padding: 10px;
  }
  .case__content-head .name{
    font-size: 16px;
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
  }
  .case__content-head .num span{
    display: block;
    margin-left: 0;
    font-size: 18px;
  }
  .case__content-body{
    flex-flow: column;
    gap: 40px;
  }
  .case__content-body .before::after{
    width: 33px;
    height: 44px;
    right: auto;
    left: 50%;
    top: auto;
    bottom: -10px;
    transform: translate(-50%,100%) rotate(90deg);
  }
  .case__content-body .before,
  .case__content-body .after{
    width: 100%;
    max-width: none;
  }
  .case__content-body .before{
    display: flex;
    flex-flow: column-reverse;
    gap: 8px;
  }
  .case__subsidy{
    margin-top: 0;
    padding: 10px;
    border-radius: 8px;
    gap: 8px;
  }
  .case__subsidy img{
    width: 48%;
    max-width: 140px;
  }
  .case__content-body .point{
    padding: 10px 8px;
  }
  .case__content-body .point .title{
    font-size: 14px;
  }
  .case__content-body .point .text{
    font-size: 12px;
    margin-top: 10px;
  }
  .case__content-body .point ul{
    margin-top: 8px;
  }
  .case__content-body .tab{
    font-size: 16px;
    padding: 4px 10px;
    border-radius: 8px 8px 0 0;
  }
  .case__content-body .js-swiper-thumbs .swiper-slide{
    max-width: 25%;
  }
  
}



/*==============================
faq
==============================*/
.faq{
  padding: 80px 0;
}
.faq .accordion{
  max-width: 1000px;
  margin: auto;
}
.faq_btn{
  display: flex;
  align-items: center;
  background: #FFF5E8;
  border: solid 1px #F47E50;
  border-radius: 10px;
  padding: 20px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}
.faq_btn::after{
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: url(/lp/img/icon_arw.svg) center no-repeat;
  right: 30px;
  transform: rotate(-90deg);
  transition: 0.3s;
}
.faq_btn.active::after{
  transform: rotate(90deg);
}
.faq_btn .icon,
.faq_contents .icon{
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  border-radius: 40px;
  width: 40px;
  min-width: 40px;
  height: 40px;
  line-height: 40px;
  margin-right: 10px;
}
.faq_btn .icon{
  background: #F47E50;
  color: #fff;
}
.faq_contents .icon{
  background: #EEF9FA;
  color: #27A1AE;
}
.faq_contents{
  display: flex;
  align-items: center;
  padding: 20px;
}
.faq .accordion > div + div{
  margin-top: 20px;
}

@media (max-width: 767px){
  .faq{
    padding: 30px 0;
  }
  .faq .accordion{
    margin-top: 20px;
    font-size: 12px;
  }
  .faq_btn .icon,
  .faq_contents .icon{
    font-size: 16px;
    width: 30px;
    min-width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .faq_btn,
  .faq_contents{
    padding: 10px;
  }
  .faq_contents{
    margin-top: 4px;
    line-height: 1.8;
  }
  .faq_btn{
    padding-right: 40px;
  }
  .faq_btn::after{
    right: 10px;
  }
}

/*==============================
event
==============================*/
.event{
  background: url(/lp/img/event_bg.png) center repeat;
  padding: 80px 0 100px;
  position: relative;
}
.event::before,
.event::after{
  content: "";
  position: absolute;
  top: 0;
  width: 25%;
  aspect-ratio: 192/71;
}
.event::before{
  background: url(/lp/img/event_decoration_01.png) center no-repeat;
  background-size: contain;
  left: 0;
}

.event::after{
  background: url(/lp/img/event_decoration_02.png) center no-repeat;
  background-size: contain;
  right: 0;
}
.event__check{
  background: #fff;
  padding: 0 20px;
  margin: 30px auto 0;
  position: relative;
  border-radius: 10px;
  max-width: 1050px;
}
.event__check .title{
  font-weight: 700;
  color: #fff;
  background: #F47E50;
  padding: 10px 40px;
  margin: auto;
  border-radius: 0 0 10px 10px;
  text-align: center;
  width: fit-content;
}
.event__check .event_img{
  width: 280px;
  max-width: 30%;
}
.event__check .event_img img{
  width: 200px;
}

.event__check .column{
  justify-content: space-around;
  align-items: flex-end;
}
.event__check .column ul{
  margin: 0 auto 30px;
  font-size: 14px;
}
.event__check .column ul li + li{
  margin-top: 10px;
}
.event__check .column ul li::before{
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(/lp/img/icon_check.svg) center no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 4px;
}
.event_sns{
  text-align: center;
  transform: translate(30px, -25px);
  width: 280px;
  max-width: 30%;
}

.event_sns-title{
  line-height: 1.4;
  color: #27A1AE;
  font-weight: 700;
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  font-size: clamp(12px,1.3vw,16px);
}
.event_sns-title::before,
.event_sns-title::after{
  content: "";
  width: 2px;
  height: 3em;
  background: #27A1AE;
  border-radius: 48px;
}
.event_sns-title::before{
  transform: rotate(156deg);
}
.event_sns-title::after{
  transform: rotate(24deg);
}
.event_sns-btn{
  margin-top: 15px;
  display: flex;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.20));
}
.event__check .instagram,
.event__check .facebook{
  width: 140px;
  max-width: 50%;
  aspect-ratio: 1/1;
  display: flex;
  gap: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: clamp(14px,1.4vw,18px);
  font-weight: 700;
  line-height: 1.1;
}
.event__check .instagram{
  /*position: absolute;
  right: -50px;
  top: 10px;
  transform: translateY(-50%);*/
  background: url(/lp/img/instagram_bg.png) center no-repeat;
  background-size: contain;
}
.event__check .facebook{
  /*position: absolute;
  right: -50px;
  top: 10px;
  transform: translateY(-50%);*/
  background: url(/lp/img/facebook_bg.png) center no-repeat;
  background-size: contain;
  transform: translateY(40px);
}
.event__check .event_sns-btn .name{

}
.event__check .instagram img,
.event__check .facebook img{
  width: 40px;
  max-width: 3vw;
}
.event .section__heading{
  margin-bottom: 30px;
}
.event .caption{
  font-size: 14px;
}
.event .link__btn a{
  border: 1px solid #27A1AE;
  box-shadow: 0 0 20px 0 #A4E2E9;
}
.event .link__btn a .text::after{
  filter: brightness(0) saturate(100%) invert(78%) sepia(41%) saturate(274%) hue-rotate(151deg) brightness(108%) contrast(83%);
}
.event .link__btn .icon{
  background: #FFF7D3;
}
.event .link__btn.line a{
  background-color: #06C755;
  border-color: #fff;
  color: #fff;
  justify-content: center;
  gap: 10px;
  padding: 30px;
  box-shadow: 0 0 20px 0 #27A1AE;
}
.event .link__btn.line a img{
  width: 30px;
}

@media (max-width: 767px){
  .event{
    padding: 30px 0;
  }
  .event::before,
  .event::after{
    display: none;
  }
  .event__check{
    max-width: none;
    padding: 0;
    margin-bottom: 20px;
    position: relative;
  }
  .event__check .column{
    align-items: center;
    padding-top: 20px;
  }
  .event__check .title{
    width: 100%;
    border-radius: 8px 8px 0 0;
    padding: 8px 10px;
  }
  .event__check .column ul{
    font-size: 12px;
    order: 1;
  }
  .event__check .column ul li::before{
    width: 10px;
    height: 10px;
  }
  .event__check .event_img{
    width: 50%;
    max-width: none;
    margin: 0 auto;
    order: 3;
  }
  .event__check .event_img img{
    width: 100%;
  }
  .event_sns{
    order: 2;
    max-width: none;
    width: 100%;
    max-width: 255px;
    transform: none;
  }
  .event_sns-btn{
    gap: 20px;
  }
  .event_sns-title{
    font-size: 14px;
  }
  .event__check .instagram, 
  .event__check .facebook{
    width: 50%;
    font-size: 10px;
    padding-top: 10px;
    transform: none;
  }
  .event__check .instagram img,
  .event__check .facebook img{
    width: 30px;
    max-width: none;
  }
  .event__check .instagram .name,
  .event__check .facebook .name{
    font-size: 14px;
    line-height: 1.1;
    margin-bottom: 8px;
  }
  .event .caption{
    font-size: 12px;
  }
  .event .link__btn.line a{
    padding: 20px;
    font-size: 16px;
    text-align: left;
  }
  .event .link__btn .icon img{
    width: 66px;
  }
}

/*==============================
access
==============================*/
.access{
  background: #FFF5E8;
  padding: 80px 0 0;
  overflow: hidden;
}

.access__info{
  width: 35%;
  min-width: 350px;
}
.access__info .bubble{
  background-color: #F47E50;
  border-radius: 30px;
  width: fit-content;
  padding: 10px 20px;
  color: #fff;
  font-size: 14px;
  position: relative;
}
.access .column{
  gap: 30px;
  justify-content: center;
}
.access__info .bubble::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-top: solid 9px #F47E50;
  border-left: solid 12.5px transparent;
  border-right: solid 12.5px transparent;
  transform: translate(-50%,100%);
}
.access__card{
  background: #fff;
  padding: 40px 30px;
  margin: 13px 0 20px;
  border-radius: 10px;
}
.access__card .name{
  padding-left: 20px;
  border-left: solid 5px #27A1AE;
  font-weight: 700;
  line-height: 1.4;
  color: #4D433E;
}
.access__card dl{
  display: flex;
  padding: 10px 0;
  margin-left: 20px;
  border-bottom: solid 1px #F7D3BE;
}
.access__card dl dt{
  border-right: solid 1px #FFF5E8;
  padding-right: 10px;
  margin-right: 10px;
  min-width: 4em;
}
.access__card dl dt,
.access__card dl dd{
  font-size: 14px;
}
.access__img{
  width: 55%;
}
.map .tab{
  width: fit-content;
  font-size: 20px;
  font-weight: 700;
  line-height: 0.9;
  color: #fff;
  background: #F47E50;
  border-radius: 10px 10px 0 0;
  padding: 10px 20px;
}
.map-box{
  position: relative;
  width: 100%;
  aspect-ratio: 24/7;
}
.map-box::before{
  content: "";
  position: absolute;
  width: 100vw;
  height: 50%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #A4E2E9;
}
.map-box iframe{
  position: absolute;
  left: 0;
  top: 0;
  width: 100% !important;
  height: 100% !important;
}


@media (max-width: 767px){
  .access{
    padding-top: 30px;
  }
  .access__info,
  .access__img{
    width: 100%;
    min-width: auto;
  }
  .access__info .bubble{
    width: 85%;
    padding: 8px 10px;
    margin: auto;
    text-align: center;
    font-size: 12px;
  }
  .access .column{
    gap: 20px;
  }
  .access__card{
    padding: 20px;
    margin-bottom: 0;
    border-radius: 8px;
  }
  .access__card .name{
    padding-left: 5px;
    margin-bottom: 4px;
  }
  .access__card dl{
    padding: 8px 0;
    margin-left: 0;
  }
  .access__card dl dt,
  .access__card dl dd{
    font-size: 12px;
    line-height: 1.6;
  }
  .access__card dl dt{
    min-width: 4em;
  }

  .map{
    margin-top: 20px;
  }
  .map .tab{
    padding: 8px 10px;
    font-size: 16px;
    border-radius: 8px 8px 0 0;
  }
  .map-box{
    aspect-ratio: 67/54;
  }
  .map-box::before{
    height: 30%;
  }
}