@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700&family=Zen+Old+Mincho:wght@500&display=swap');


:root {
  --main-color: #600D18;
  --sub-color: #4A90A4;
  --accent-color: #F5A800;
  --accent-color2: #FFBB00;
  --bg-color: #F5F3EF;
  --red-color: #B8000E;
}

body{
  background: var(--bg-color);
  color: #000;
}
.l-wrapper{
  background: var(--bg-color);
  overflow-x: hidden;
}
.pc_none{
  display: none;
}
.l-header-logo{
  display: block;
  margin-bottom: 32px;
}

@media(max-width:1000px){
  .l-header-logo{
    margin-bottom: 10px;
  }
}

@media(max-width:768px){
  .pc_none{
    display: block;
  }
  .sp_none{
    display: none;
  }
}

/* --------------------------------------------------------------------------
foundation
-------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
layout
-------------------------------------------------------------------------- */
/* .l-breadcrumb */
.l-breadcrumb-list{
  display: flex;
  justify-content: flex-start;
  width: 1380px;
  max-width: 100%;
  padding: 12px 20px 29px;
  margin: 0 auto;
}
.l-breadcrumb-list__item{
  font-size: 1.4rem;
}
.l-breadcrumb-list__item::after{
  content: '>';
  display: inline-block;
  padding: 0 4px 0 2px;
}
.l-breadcrumb-list__item:last-of-type:after{
  display: none;
}
.l-breadcrumb-list__item-link{
  text-decoration: none;
  transition: .3s;
}

.l-breadcrumb-list__item-link:hover{
  color: var(--main-color);
  text-decoration: underline; 
}

/* .l-section-inner */
.l-section-inner{
  width: 1140px;
  max-width: 100%;
  padding: 80px 20px;
  margin: 0 auto;
}
.l-section-inner--wide{
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

@media(max-width:768px){
  /* .l-breadcrumb */
  .l-breadcrumb{
    background: #fff;
  }
  .l-breadcrumb-list{
    padding: 10px 20px;
  }
  .l-breadcrumb-list__item{
    font-size: 1.1rem;
  }

  /* .l-section-inner */
  .l-section-inner{
    padding: 60px 20px;
  }
}


/* --------------------------------------------------------------------------
component
-------------------------------------------------------------------------- */

/* .c-section-title */
.c-section-title{
  display: block;
  padding-bottom: 40px;
  text-align: center;
  /*line-height: 1;*/
  line-height: 1.25;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 6rem;
  font-weight: bold;
  color: var(--main-color);
  position: relative;
  margin: 0 auto 70px;
}
.c-section-title--mb-none{
  margin-bottom: 0;
}
.c-section-title:before{
  content:'';
  display: block;
  width: 100px;
  height: 6px;
  border-radius: 10px;
  background: var(--main-color);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}
.c-section-title__medium{
  font-size: 5rem;
}
.c-section-title__sub{
  display: inline-block;
  line-height: 1.4;
  font-size: 3.8rem;
  font-weight: bold;
  color: #1D1D1D;
  /*margin-bottom: 20px;*/
  margin-bottom: 10px;
}
.c-section-title__ribbon{
  display: inline-block;
  padding:6px 35px 8px;
  background: var(--sub-color);
  font-size: 3.6rem;
  color: #fff;
  position: relative;
  margin-bottom: 42px;
}
.c-section-title__ribbon::before{
  content: '';
  display: block;
  width: 51px;
  height: 42px;
  background: url(../img/common/ribbon-left.svg)no-repeat center center / contain;
  position: absolute;
  top:28px;
  left: -37px;
}
.c-section-title__ribbon::after{
  content: '';
  display: block;
  width: 51px;
  height: 42px;
  background: url(../img/common/ribbon-right.svg)no-repeat center center / contain;
  position: absolute;
  top:28px;
  right: -37px;
}


/* .c-button */
.c-button-link{
  display: inline-block;
  padding: 26px 20px 27px;
  border-radius: 10px;
  background: var(--sub-color);
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 0 0 #134D5D;
  transition: .3s;
}
.c-button-link--orange{
  background: #ED8432;
  box-shadow: 0 10px 0 0 #B25D1B;
}
.c-button-link--brown{
  background: #600D18;
  box-shadow: 0 10px 0 0 #3B0008;
}
.c-button-text{
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1;
  font-size: 3.6rem;
  font-weight: bold;
  color: #fff;
}

@media (min-width:769px) {
  .c-button-link:hover{
    opacity: .8;
    box-shadow: 0 0 0 0 #000;
    transform: translateY(10px);
  }
}

@media(max-width:1000px){
  /* .c-button */
  .c-button-text{
    font-size: 2.8rem;
  }
}

@media(max-width:820px){
  /* .c-button */
  .c-button-text{
    font-size: 2.4rem;
  }
}

@media(max-width:768px){

  /* .c-section-title */
  .c-section-title{
    padding-bottom: 30px;
    line-height: 1.2;
    font-size: 4.2rem;
    margin: 0 auto 40px;
  }
  .c-section-title--mb-none{
    margin-bottom: 0;
  }
  .c-section-title:before{
    width: 100px;
    height: 4px;
  }
  .c-section-title__medium{
    font-size: 3.5rem;
  }
  .c-section-title__sub{
    font-size: 2.2rem;
  }
  .c-section-title__ribbon{
    padding:4px 20px;
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  .c-section-title__ribbon::before{
    width: 40px;
    height: 30px;
    top:22px;
    left: -29px;
  }
  .c-section-title__ribbon::after{
    width: 40px;
    height: 30px;
    top:22px;
    right: -29px;
  }
  
  /* .c-button */
  .c-button-link{
    padding:15px 20px;
    box-shadow: 0 6px 0 0 #134D5D;
  }
  .c-button-link--orange{
    box-shadow: 0 6px 0 0 #B25D1B;
  }
  .c-button-link--brown{
    box-shadow: 0 6px 0 0 #3B0008;
  }
  .c-button-text{
    font-size: 2rem;
  }
}

@media(max-width:380px){
  /* .c-section-title */
  .c-section-title{
    font-size: 4rem;
  }
}


/* --------------------------------------------------------------------------
project
-------------------------------------------------------------------------- */

/* .p-tel-banner */
.p-tel-banner{
  padding: 0 20px;
  margin-bottom: 100px;
}
.p-tel-banner--mb-none{
  margin-bottom: 0;
}
.p-tel-banner__link{
  display: block;
  width: 1100px;
  max-width: 100%;
  border-radius: 10px;
  border:solid 10px var(--main-color);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  margin: 0 auto 40px;
  pointer-events: none;
}
.p-tel-banner__head{
  display: block;
  padding:6px 15px 18px;
  background: var(--main-color);
  line-height: 1;
  font-size: 4rem;
  color: #fff;
}
.p-tel-banner__head span{
  font-size: 3.4rem;
}
.p-tel-banner__main{
  padding: 17px 380px 64px 20px;
  background: #fff;
  text-align: center;
  position: relative;
}
.p-tel-banner__main::before{
  content: '';
  display: block;
  width: 380px;
  height: 330px;
  background: url(../img/common/contact-woman.png)no-repeat right bottom / contain;
  position: absolute;
  right: 0;
  bottom: 0;
}
.p-tel-banner__main-text{
  display: block;
  padding-left: 131px;
  background: url(../img/common/text-tel.svg)no-repeat center left / 121px;
}
.p-tel-banner__main-number{
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 7.5rem;
  color: var(--main-color);
}
.p-tel-banner__main-info{
  line-height: 1.2;
  font-size: 2.6rem;
  color: var(--main-color);
}
.p-tel-banner__main-info--number{
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.6rem;
  color: var(--accent-color);
}
.p-tel-banner__bottom{
  display: block;
  width: 1050px;
  max-width:calc(100% - 40px);
  padding: 14px 30px;
  border-radius: 100px;
  text-align: center;
  background: var(--main-color);
  letter-spacing: -1px;
  line-height: 1.2;
  font-size: 3rem;
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  margin: 0 auto;
}

/* .p-regist-banner */
.p-regist-banner{
  padding: 0 20px;
}
.p-regist-banner--mb-100{
  margin-bottom: 100px;
}
.p-regist-banner__link{
  display: block;
  width: 770px;
  max-width: 100%;
  padding: 10px 10px 12px 315px;
  border-radius: 10px;
  background: var(--sub-color);
  color: #fff;
  text-decoration: none;
  position: relative;
  margin: 0 auto;
  transition: .3s;
}
.p-regist-banner__link::before{
  content: '';
  display: block;
  width: 288px;
  max-width: 100%;
  height: 203px;
  background: url(../img/common/members-card-s.png)no-repeat center center / contain;
  position: absolute;
  left: 10px;
  bottom: 10px;
}
.p-regist-banner__head{
  display: block;
  line-height: 1;
  font-size: 2.6rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}
.p-regist-banner__head span{
  line-height: 1;
  font-size: 3.3rem;
  color: var(--accent-color2);
}
.p-regist-banner__main{
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  padding: 0 10px 2px;
  background: #fff;
  line-height: 1.2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  color: var(--sub-color);
}
.p-regist-banner__main--small{
  font-size: 3rem;
}
.p-regist-banner__main--medium{
  font-size: 6.1rem;
}
.p-regist-banner__main--large{
    font-size: 7.1rem;
}
.p-regist-banner__main--number{
  display: inline-block;
  padding-bottom: 5px;
  line-height: 1;
  font-size: 8.3rem;
  color: var(--accent-color);
}
.p-regist-banner__main--01{
  line-height: 1.1;
}
.p-regist-banner__main--02{
  font-family: "Noto Sans JP", sans-serif;
}
.p-regist-banner__bottom{
  display: block;
  padding-right: 36px;
  background: url(../img/common/arrow-right-white.svg)no-repeat center right 20px /  42px;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.6rem;
  font-weight: bold;
  color: #fff;
  margin-top: 8px;
}

/* .p-tel-number */
.p-tel-number{
  text-align: center;
  position: relative;
}
.p-tel-number__link{
  text-decoration: none;
  color: var(--main-color);
}
.p-tel-number__text{
  line-height: 1.2;
  font-weight: bold;
  font-size: 2.7rem;
  color: var(--main-color);
}
.p-tel-number__box{
  display: block;
  padding-left:75px;
  background: url(../img/common/text-tel.svg)no-repeat center left / 75px;
}
.p-tel-number__number{
  display: inline-block;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size:5.3rem;
  font-weight: 500;
  color: var(--main-color);
  margin-bottom: 5px;
}
.p-tel-number__info{
  line-height: 1.2;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--main-color);
}
.p-tel-number__info--number{
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  color: var(--accent-color);
}

@media(min-width:769px){
  .p-regist-banner__link:hover{
    opacity: .7;
  }
}

@media(max-width:1170px){
  /* .p-tel-banner */
  .p-tel-banner__head{
    font-size: 3vw;
  }
  .p-tel-banner__head span{
    font-size: 2.5vw;
  }
  .p-tel-banner__main{
    padding-right: 35vw;
  }
  .p-tel-banner__main::before{
    width: 35vw;
  }
  .p-tel-banner__main-text{
    padding-left: 10vw;
    background: url(../img/common/text-tel.svg)no-repeat center left / contain;
  }
  .p-tel-banner__main-number{
    font-size:6vw;
  }
  .p-tel-banner__main-info{
    font-size: 2vw;
  }
  .p-tel-banner__main-info--number{
    font-size: 2.4vw;
  }
  .p-tel-banner__bottom{
    font-size: 2.4vw;
  }
}

@media (max-width:1120px) {
  /* .p-tel-number */
  .p-tel-number__text{
    font-size: 2.4vw;
  }
  .p-tel-number__box{
  }
  .p-tel-number__number{
    font-size:4.8vw;
  }
  .p-tel-number__info{
    font-size: 1.6vw;
  }
  .p-tel-number__info--number{
    font-size: 2.2vw;
  } 
}

@media(max-width:1000px){
  /* .p-tel-banner */
  .p-tel-banner__main{
    padding: 17px 30vw 50px 20px;
  }
  .p-tel-banner__main::before{
    width: 30vw;
  }
  .p-tel-banner__main-number{
    font-size:6vw;
  }
  .p-tel-banner__main-info{
    font-size: 2.2vw;
  }
  .p-tel-banner__main-info--number{
    font-size: 2.4vw;
  }
  .p-tel-banner__bottom{
    font-size: 2.2vw;
  }
}

@media (max-width:920px) {
  /* .p-tel-number */
  .p-tel-number__text{
    font-size: 2.4vw;
  }
  .p-tel-number__box{
    padding-left: 7.5vw;
    background: url(../img/common/text-tel.svg)no-repeat center left / 7vw;
  }
  .p-tel-number__number{
    font-size:4.5vw;
  }
  .p-tel-number__info{
    font-size: 1.6vw;
  }
  .p-tel-number__info--number{
    font-size: 2.2vw;
  } 
}

@media(max-width:860px){
  /* .p-regist-banner */
  .p-regist-banner__link{
    padding: 10px 10px 12px 37vw;
  }
  .p-regist-banner__link::before{
    width: 34vw;
    height: 203px;
    background: url(../img/common/members-card-s.png)no-repeat center center / contain;
  }
  .p-regist-banner__head{
    font-size: 2.9vw;
  }
  .p-regist-banner__head span{
    font-size: 3.3vw;
  }
  .p-regist-banner__main--small{
    font-size: 3.3vw;
  }
  .p-regist-banner__main--medium{
    font-size: 6.5vw;
  }
  .p-regist-banner__main--large{
      font-size: 7.8vw;
  }
  .p-regist-banner__main--number{
    font-size: 9vw;
  }
  .p-regist-banner__bottom{
    padding-right: 5vw;
    background: url(../img/common/arrow-right-white.svg)no-repeat center right 10px /  4vw;
    font-size: 2.8vw;
  }
}

@media(max-width:820px){
  /* .p-regist-banner */
  .p-regist-banner__head{
    font-size: 2.9vw;
  }
  .p-regist-banner__head span{
    font-size: 3.3vw;
  }
  .p-regist-banner__main--small{
    font-size: 3.3vw;
  }
  .p-regist-banner__main--medium{
    font-size: 6.5vw;
  }
  .p-regist-banner__main--large{
      font-size: 7.8vw;
  }
  .p-regist-banner__main--number{
    font-size: 9vw;
  }
  .p-regist-banner__bottom{
    padding-right: 5vw;
    background: url(../img/common/arrow-right-white.svg)no-repeat center right 10px /  4vw;
    font-size: 2.7vw;
  }
}

@media(max-width:860px){
  /* .p-tel-number */
  .p-tel-number__number{
    font-size:4.4vw;
  }
}

@media(max-width:768px){

  /* .p-tel-banner */
  .p-tel-banner{
    padding: 0;
    margin-bottom: 50px;
  }
  .p-tel-banner__link{
    display: block;
    width: 100%;
    max-width: 350px;
    border: solid 4px var(--main-color);
    margin: 0 auto 40px;
    pointer-events: inherit;
  }
  .p-tel-banner--mb-none {
    margin-bottom: 20px;
  }
  .p-tel-banner--mb-none .p-tel-banner__link{
    margin-bottom: 20px;
  }
  .p-tel-banner__head{
    padding:9px 10px 11px;
    text-align: center;
    line-height: 1.1;
    font-size: 2.8rem;
  }
  .p-tel-banner__head span{
    font-size: 2.3rem;
  }
  .p-tel-banner__main{
    padding: 10px 10px 40px;
    text-align: left;
  }
  .p-tel-banner__main::before{
    display: none;
  }
  .p-tel-banner__main-text{
    display: block;
    padding-left: 68px;
    background: url(../img/common/text-tel.svg)no-repeat center left / 60px;
  }
  .p-tel-banner__main-text br{
    display: none;
  }
  .p-tel-banner__main-number{
    display: block;
    font-size:3.5rem;
    margin-bottom: -1px;
  }
  .p-tel-banner__main-info{
    line-height: 1;
    font-size: 1.4rem;
  }
  .p-tel-banner__main-info--number{
    font-size: 1.8rem;
  }
  .p-tel-banner__bottom{
    width:calc(100% + 16px);
    max-width:calc(100% + 16px);
    height: 50px;
    padding: 7px 14px 7px 20px;
    letter-spacing: -1px;
    text-align: left;
    line-height: 1.3;
    font-size: 1.4rem;
    left: -8px;
    right: -8px;
    bottom: -16px;
    margin: 0 auto;
  }
  .p-tel-banner__bottom span{
    display: block;
    padding-right: 87px;
    position: relative;
  }
  .p-tel-banner__bottom span:before{
    content: '';
    display: block;
    width: 87px;
    height: 85px;
    background: url(../img/common/contact-woman.png)no-repeat center bottom / contain;
    position: absolute;
    right: 0;
    bottom: -7px;
  }

  /* .p-regist-banner */
  .p-regist-banner{
    max-width: 350px;
    padding: 0 ;
    margin-left: auto;
    margin-right: auto;
  }
  .p-regist-banner--mb-100{
    margin-bottom: 40px;
  }
  .p-regist-banner__link{
    display: block;
    padding: 10px 10px 17px;
    border-radius: 10px;
    background: var(--sub-color);
    color: #fff;
    text-decoration: none;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 4px 6px 0 rgba(0,0,0,0.35);
  }
  .p-regist-banner__link::before{
    display: none;
  }
  .p-regist-banner__head{
    line-height: 1.2;
    font-size: 2.8rem;
    position: relative;
    margin-bottom: 7px;
  }
  .p-regist-banner__head::before{
    display: none;
    content: '';
    display: block;
    width: 130px;
    max-width: 40%;
    height: 90px;
    background: url(../img/common/members-card-rev.png)no-repeat center center / contain;
    position: absolute;
    right: 0;
    bottom: 10px;
    z-index: 1;
  }
  .p-regist-banner__head p{
    position: relative;
    z-index: 2;
  }
  .p-regist-banner__head span{
    font-size: 3.5rem;
  }
  .p-regist-banner__main{
    padding: 0 6px 2px;
    line-height: 1.2;
  }
  .p-regist-banner__main--small{
    font-size: 2.3rem;
  }
  .p-regist-banner__main--medium{
    font-size: 4.3rem;
  }
  .p-regist-banner__main--large{
      font-size: 5rem;
  }
  .p-regist-banner__main--number{
    padding-bottom: 5px;
    font-size: 5.7rem;
  }
  .p-regist-banner__bottom{
    padding-right: 36px;
    background: url(../img/common/arrow-right-white.svg)no-repeat center right 10px /  30px;
    line-height: 1;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.95rem;
    margin-top: 8px;
  }

  /* .p-tel-number */
  .p-tel-number__text{
    font-size: 1.8rem;
  }
  .p-tel-number__box{
    padding-left:60px;
    background: url(../img/common/text-tel.svg)no-repeat center left / 60px;
  }
  .p-tel-number__number{
    font-size:3.5rem;
    margin-bottom: 1px;
  }
  .p-tel-number__info{
    font-size: 1.4rem;
  }
  .p-tel-number__info--number{
    font-size:1.8rem;
  }
}

@media(max-width:380px){

  /* .p-tel-banner */
  .p-tel-banner__head{
    font-size: 2.4rem;
  }
  .p-tel-banner__head span{
    font-size: 1.9rem;
  }
  .p-tel-banner__main-number{
    font-size:3.2rem;
  }

  /* .p-regist-banner */
  .p-regist-banner__head{
    font-size: 2.4rem;
  }
  .p-regist-banner__head span{
    font-size: 3.1rem;
  }
  .p-regist-banner__bottom{
    font-size: 1.8rem;
  }

  /* .p-tel-number__number */
  .p-tel-number__number{
    font-size: 3.2rem;
  }
}


/* --------------------------------------------------------------------------
utility
-------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------
pages
-------------------------------------------------------------------------- */

/* .pg-lp-mv */
.pg-lp-mv{
  padding: 0 20px;
  margin-bottom: 40px;
}
.pg-lp-mv__inner{
  display: flex;
  width: 1340px;
  max-width: 100%;
  margin: 0 auto 10px;
}
.pg-lp-mv__inner-box{
  width: 50%;
  padding:58px 14px 14px;
  background: var(--main-color);
  color: #fff;
}
.pg-lp-mv__title{
  max-width:calc(100% - 32px);
  margin: 0 auto;
}
.pg-lp-mv__title-catch{
  display: block;
  padding:9px 4px 11px;
  background:#FFFFFF;
  border-radius: 4px;
  text-align: center;
  line-height: 1.2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  /*font-size: 3.8rem;*/
  font-size: 32px;
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 44px;
}
.pg-lp-mv__title-catch--kitakyushu{
  font-size: 30px;
}
.pg-lp-mv__title-catch span{
  /*font-size: 32px;*/
  font-size: 24px;
}
.pg-lp-mv__title-main{
  display: block;
  margin-bottom: 35px;
}
.pg-lp-mv__batch-list{
  display: flex;
  justify-content: center;
  gap:20px;
  max-width:565px;
  margin:0 auto 27px;
}
.pg-lp-mv__batch-list-item{
  width: 174px;
  max-width: calc(100% / 3);
}
.pg-lp-mv__inner-image{
  width: 50%;
  position: relative;
}
.pg-lp-mv__inner-image::before{
  content: '';
  display: block;
  width: 265px;
  height: 441px;
  background: url(../img/page/mv-woman.png)no-repeat right bottom / contain;
  position: absolute;
  right: -33px;
  bottom: 0;
}
.pg-lp-mv__inner-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pg-lp-mv__note{
  display: block;
  text-align: right;
  line-height: 1.4;
  font-size: 1.5rem;
  margin: 0 auto;
}

/* .pg-lp-contact */
.pg-lp-contact .l-section-inner{
  padding-bottom: 40px;
}

/* .pg-lp-hall */
.pg-lp-hall__map{
  position: relative;
  margin: 0 auto 50px;
}
.pg-lp-hall__map:before{
  content: '';
  display: block;
  width: 100%;
  height: 70px;
  background: var(--bg-color);
  position: absolute;
  top:0;
  left: 0;
  z-index: 2;
}
.pg-lp-hall__map-content{
  width: 100% !important;
  height: 640px !important;
  position: relative;
  z-index: 1;
}
.pg-lp-hall__anker{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap:24px;
  margin: 0 auto 80px;
}
.pg-lp-hall__anker-item{
  width: calc(100% / 3 - 16px);
}
.pg-lp-hall__anker-item a{
  display: block;
  width: 100%;
  height: 100%;
  padding: 16px 52px;
  border-radius: 10px;
  background: var(--main-color);
  box-shadow: 0 10px 0 0 #3B0008;
  text-align: center;
  line-height: 1.2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.6rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: .3s;
}
.pg-lp-hall__anker-item a:before{
  content: '';
  display: block;
  width: 20px;
  height: 100%;
  background: url(../img/common/arrow-bottom-white.svg)no-repeat center center / contain;
  position: absolute;
  top:2px;
  right: 27px;
}
.pg-lp-hall__list-item{
  background: #fff;
  border-radius: 15px;
  border: solid 1px var(--main-color);
  overflow: hidden;
  margin: 0 auto 35px;
}
.pg-lp-hall__list-item-title{
  padding: 17px 45px;
  background: var(--main-color);
  line-height: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
}
.pg-lp-hall__list-item-info{
  display: flex;
  padding: 20px 45px 0;
}
.pg-lp-hall__list-item-image{
  width: 340px;
  height: 205px;
  max-height: 100%;
  margin-right: 30px;
}
.pg-lp-hall__list-item-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pg-lp-hall__list-item-table {
  border-collapse: separate;
  border-spacing:0 15px;
  margin-top: -15px;
}
.pg-lp-hall__list-item-table th{
  width: 160px;
  padding: 12px 17px;
  background: #F5F3EF;
  border-radius: 5px;
  text-align: center;
  line-height: 1;
  color: var(--main-color);
  font-size: 2.2rem;
  font-weight: bold;
}
.pg-lp-hall__list-item-table td{
  padding: 15px;
  line-height: 1.6;
  font-size: 2rem;
  font-weight:500;
}
.pg-lp-hall__list-item-point{
  padding:0 45px;
}
.pg-lp-hall__list-item-point-list{
  display: flex;
  gap:25px;
}
.pg-lp-hall__list-item-point-list-item{
  display: block;
  width: calc(20% - 20px);
  padding: 10px 10px 12px;
  border-radius: 5px;
  border: solid 1px  var(--main-color);
  text-align: center;
  line-height: 1;
  color: var(--main-color);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.pg-lp-hall__list-item-point-list-item span{
  display: inline-block;
  padding-bottom: 1px;
  position:relative;
}
.pg-lp-hall__list-item-point-list-item--parking span{
  padding-left: 25px;
}
.pg-lp-hall__list-item-point-list-item--parking span::before{
  content: '';
  display: block;
  width: 19px;
  height: 100%;
  background: url(../img/common/icon-parking.svg)no-repeat center center / contain;
  position: absolute;
  top:0;
  left: 0;
}
.pg-lp-hall__list-item-point-list-item--waiting span{
    padding-left: 49px;
}
.pg-lp-hall__list-item-point-list-item--waiting span:before{
  content: '';
  display: block;
  width: 43px;
  height: 100%;
  background: url(../img/common/icon-waiting.svg)no-repeat center center / contain;
  position: absolute;
  top:0;
  left: 0;
}
.pg-lp-hall__list-item-point-list-item--mortuary span{
  padding-left: 29px;
}
.pg-lp-hall__list-item-point-list-item--mortuary span:before{
  content: '';
  display: block;
  width: 26px;
  height: 100%;
  background: url(../img/common/icon-mortuary.svg)no-repeat center center / contain;
  position: absolute;
  top:0;
  left: 0;
}
.pg-lp-hall__list-item-point-list-item--wheelchair span{
  padding-left: 23px;
}
.pg-lp-hall__list-item-point-list-item--wheelchair span:before{
  content: '';
  display: block;
  width: 22px;
  height: 100%;
  background: url(../img/common/icon-wheelchair.svg)no-repeat center center / contain;
  position: absolute;
  top:0;
  left: 0;
}
.pg-lp-hall__list-item-point-list-item--consultation span{
  padding-left: 30px;
}
.pg-lp-hall__list-item-point-list-item--consultation span:before{
  content: '';
  display: block;
  width: 27px;
  height: 100%;
  background: url(../img/common/icon-consultation.svg)no-repeat center center / contain;
  position: absolute;
  top:0;
  left: 0;
}
.pg-lp-hall__list-item-contacts{
  display: flex;
  align-content: center;
  align-items: center;
  padding: 0 45px 35px;
}
.pg-lp-hall__list-item-contacts .c-button{
  width: 52%;
}
.pg-lp-hall__list-item-contacts .c-button-link{
  width: 100%;
}
.pg-lp-hall__list-item-contacts .p-tel-number{
  width: 48%;
  padding-left: 35px;
}

/* .pg-lp-plan */
.pg-lp-plan .l-section-inner {
  padding-top: 0;
  padding-bottom: 120px;
}
.pg-lp-plan__list{
  display: flex;
  gap:33px;
  margin-bottom: 100px;
}
.pg-lp-plan__list-item{
  display: block;
  width: calc(100% - 22px);
  border: solid 4px var(--sub-color);
  border-radius: 10px;
}
.pg-lp-plan__list-item-title{
  padding: 6px 12px 15px;
  background: var(--sub-color);
  text-align: center;
  line-height: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3.7rem;
  font-weight: bold;
  color: var(--bg-color);
}
.pg-lp-plan__list-item-title span{
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4.6rem;
}
.pg-lp-plan__list-item-image{
  margin-bottom: 20px;
}
.pg-lp-plan__list-item-flow{
  display: flex;
  justify-content: flex-start;
  width: calc(100% - 40px);
  gap:8px;
  margin: 0 auto 18px;
}
.pg-lp-plan__list-item-flow-item{
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: calc(25% - 6px);
  padding: 6px;
  border-radius: 5px;
  background: var(--sub-color);
  text-align: center;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
  position: relative;
}
.pg-lp-plan__list-item-flow-item:before{
  content: '';
  display: block;
  width: 20px;
  height: 100%;
  background: url(../img/page/plan-arrow01.svg)no-repeat center center / contain;
  position: absolute;
  top:0;
  right: -18px;
  z-index: 2;
}
.pg-lp-plan__list-item-flow-item:last-of-type:before{
  display: none;
}
.pg-lp-plan__list-item-price{
  width: calc(100% - 40px);
  text-align: right;
  line-height: 1;
  margin: 0 auto 16px;
}
.pg-lp-plan__list-item-price span{
  display: inline-block;
  line-height: 1;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--sub-color);
  margin-top: 3px;
}
.pg-lp-plan__list-item .c-button{
  width: calc(100% - 40px);
  margin: 0 auto 35px;
}
.pg-lp-plan__list-item .c-button-link{
  width: 100%;
  padding:17px 15px 15px;
  border-radius: 100px;
}
.pg-lp-plan__list-item .c-button-text{
  font-size: 2.4rem;
}

.pg-lp-plan__list-item--orange{
  border: solid 4px #ED8432;
}
.pg-lp-plan__list-item--orange .pg-lp-plan__list-item-title{
  background: #ED8432;
}
.pg-lp-plan__list-item--orange .pg-lp-plan__list-item-flow-item{
    background: #ED8432;
}
.pg-lp-plan__list-item--orange .pg-lp-plan__list-item-flow-item:before{
  background: url(../img/page/plan-arrow02.svg)no-repeat center center / contain;
}
.pg-lp-plan__list-item--orange .pg-lp-plan__list-item-price span{
  color: #ED8432;
}

.pg-lp-plan__list-item--brown{
  border: solid 4px #600D18;
}
.pg-lp-plan__list-item--brown .pg-lp-plan__list-item-title{
  background: #600D18;
}
.pg-lp-plan__list-item--brown .pg-lp-plan__list-item-flow-item{
    background: #600D18;
}
.pg-lp-plan__list-item--brown .pg-lp-plan__list-item-flow-item:before{
  background: url(../img/page/plan-arrow03.svg)no-repeat center center / contain;
}
.pg-lp-plan__list-item--brown .pg-lp-plan__list-item-price span{
  color: #600D18;
}
.pg-lp-plan__others{
  display: block;
  width: 650px;
  max-width: 100%;
  padding: 32px;
  border: solid 2px var(--main-color);
  border-radius: 10px;
  text-align: center;
  margin: 0 auto 110px;
}
.pg-lp-plan__others-text{
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--main-color);
}
.pg-lp-plan__monk{
  display: block;
  width: 650px;
  max-width: 100%;
  padding: 55px 150px 30px 45px;
  border: solid 2px var(--sub-color);
  border-radius: 10px;
  background: #fff;
  text-align: center;
  position: relative;
  margin: 0 auto;
}
.pg-lp-plan__monk::before{
  content: '';
  display: block;
  width: 178px;
  height: 248px;
  background: url(../img/page/illust-monk.svg)no-repeat center center / contain;
  position: absolute;
  top:-45px;
  right: 0;
}
.pg-lp-plan__monk-head{
  display: inline-block;
  border-radius: 5px;
  background: var(--sub-color);
  line-height: 1.2;
  font-size: 2.6rem;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top:-25px;
  left: 0px;
}
.pg-lp-plan__monk-head-inner{
  display: block;
  width: 100%;
  padding: 8px 20px 11px 105px;
  position: relative;
}
.pg-lp-plan__monk-head-batch{
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100px;
  height: 100px;
  padding: 12px;
  border-radius: 300px;
  background: var(--accent-color2);
  text-align: center;
  line-height: 1.3;
  letter-spacing: -1px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--main-color);
  position: absolute;
  top:-25px;
  left: -10px;
}
.pg-lp-plan__monk-head-batch--large{
  display: block;
  font-size: 2rem;
  font-weight: bold;
}
.pg-lp-plan__monk-text{
  text-align: left;
  line-height: 1.4;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  color: var(--main-color);
}
.pg-lp-plan__monk-text span{
  font-size: 2.4rem;
}

/* .pg-lp-estimate */
.pg-lp-estimate{
  background: #fff;
}
.pg-lp-estimate__box{
  display: flex;
  margin-bottom: 65px;
}
.pg-lp-estimate__contents{
  display: flex;
  justify-content: flex-end;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: calc(50% + 120px);
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.9);
  text-align: left;
  position: relative;
  margin-top: 60px;
  margin-right: -120px;
  z-index: 2;
}
.pg-lp-estimate__contents > *{
  width: 660px;
  max-width: 100%;
}
.pg-lp-estimate__contents-text{
  line-height: 1.8;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 25px;
}
.pg-lp-estimate__contents-title{
  line-height: 1.6;
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 15px;
}
.pg-lp-estimate__contents-list{
  margin-bottom: 25px;
}
.pg-lp-estimate__contents-list-item{
  display: inline-block;
  padding-left: 18px;
  font-size: 1.8rem;
  position: relative;
}
.pg-lp-estimate__contents-list-item::before{
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 20px;
  background: var(--main-color);
  position: absolute;
  top:13px;
  left: 0;
}
.pg-lp-estimate__contents-list-item span{
  font-weight: bold;
  color: var(--main-color);
}
.pg-lp-estimate__contents-image{
  width: 50%;
  position: relative;
  z-index: 1;
}

/* .pg-lp-note */
.pg-lp-note__head{
  padding: 25px 50px;
  background: var(--red-color);
  border-radius: 10px 10px 0 0;
  text-align: center;
  line-height: 1.2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4.1rem;
  font-weight: bold;
  color: #fff;
}
.pg-lp-note__head span{
  display: inline-block;
  padding-left: 74px;
  background: url(../img/common/icon-exclamation.svg)no-repeat center left / contain;
  position: relative;
}
.pg-lp-note__box{
  padding: 55px 70px 37px;
  background: #fff;
  text-align: center;
  font-size: 2rem;
}
.pg-lp-note__text{
  margin-bottom: 40px;
}
.pg-lp-note__text span{
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--red-color);
}
.pg-lp-note__catch{
  line-height: 1.4;
  font-size: 3.6rem;
  font-weight: bold;
  color: var(--red-color);
  margin-bottom: 18px;
}
.pg-lp-note__images{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 100px;
}
.pg-lp-note__images-item{
  display: flex;
  align-items: flex-end;
  height: 212px;
  position: relative;
}
.pg-lp-note__images-item--left {
  margin-right: 32px;
}
.pg-lp-note__images-item--left img{
  width: 120px;
  position: relative;
  z-index: 2;
}
.pg-lp-note__images-item--right img{
  width: 172px;
  position: relative;
  z-index: 2;
}
.pg-lp-note__images-item-text{
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 315px;
  height: 171px;
  padding: 50px 23px;
  background: url(../img/page/note-bg.svg)no-repeat center center / contain;
  text-align: center;
  line-height: 1.4;
  font-size: 2rem;
  font-weight: bold;
  position: absolute;
  top:0;
  z-index: 1;
}
.pg-lp-note__images-item-text--left{
  padding-right: 38px;
  left: auto;
  right: 75px;
}
.pg-lp-note__images-item-text--right{
  padding-left: 84px;
  padding-right: 58px;
  left: 59px;
}
.pg-lp-note__title{
  display: block;
  width: calc(100% - 140px);
  padding: 20px;
  background: var(--bg-color);
  line-height: 1.4;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3.2rem;
  font-weight: bold;
  position: relative;
  margin: 0 auto 38px;
}
.pg-lp-note__title::before{
  content: '';
  display: block;
  width: 213px;
  height: 197px;
  background: url(../img/page/note-illust03.svg)no-repeat left bottom / contain;
  position: absolute;
  left: -70px;
  bottom: 0;
}
.pg-lp-note__title::after{
  content: '';
  display: block;
  width: 198px;
  height: 154px;
  background: url(../img/page/note-illust04.svg)no-repeat right bottom / contain;
  position: absolute;
  right: -70px;
  bottom: 0;
}
.pg-lp-note__title-red{
  font-size: 3.8rem;
  color: var(--red-color);
}

/* .pg-lp-point */
.pg-lp-point .l-section-inner{
  padding-top: 40px;
}
.pg-lp-point__list{
  display: flex;
  gap:33px;
  margin: 0 auto 110px;
}
.pg-lp-point__list-item{
  width: calc(100% / 3 - 22px);
  position: relative;
}
.pg-lp-point__list-item::before{
  content: '';
  display: block;
  width: 55px;
  height: 55px;
  background: url(../img/common/icon-check-square.svg)no-repeat center center / contain;
  position: absolute;
  top:-12px;
  left: -10px;
}
.pg-lp-point__list-item-image{
  margin-bottom: 20px;
}
.pg-lp-point__list-item-title{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.6rem;
  font-weight: bold;
  color: var(--main-color);
  line-height: 1.4;
  margin-bottom: 15px;
}
.pg-lp-point__list-item-text{
  font-size: 1.7rem;
}

.pg-lp-point__alone{
  padding: 125px 80px 60px;
  border-radius: 10px 10px 0 0;
  background: #fff;
  text-align: center;
  position: relative;
}
.pg-lp-point__alone::before{
  content: '';
  display: block;
  width: 230px;
  height: 70px;
  background: url(../img/common/arrow-bottom-red.svg)no-repeat top -10px center / contain;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -70px;
  margin: 0 auto;
}
.pg-lp-point__alone-title{
  display: inline-block;
  width: auto;
  max-width: 750px;
  padding: 12px 20px 13px;
  border-radius: 10px;
  background: var(--main-color);
  line-height: 1.2;
  font-size: 4.8rem;
  font-weight: bold;
  color: var(--bg-color);
  position: absolute;
  top:-29px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.pg-lp-point__alone-catch{
  padding-left: 241px;
  text-align:left;
  line-height: 1.6;
  font-size: 2.6rem;
  font-weight: bold;
  position: relative;
  margin: 0 auto 60px;
}
.pg-lp-point__alone-catch::before{
  content: '';
  display:block;
  width: 199px;
  height: 205px;
  background: url(../img/page/anxiety-illust01.svg)no-repeat center center / contain;
  position: absolute;
  top:-37px;
  left: 0;
}
.pg-lp-point__alone-catch span{
  display: inline-block;
  line-height: 1.6;
  font-size: 3.2rem;
  font-weight: bold;
  color: var(--main-color);
  margin-top: 10px;
}
.pg-lp-point__alone-sub-title{
  width: 600px;
  max-width: 100%;
  padding: 13px 15px 15px;
  border-radius: 50px;
  background: var(--sub-color);
  line-height: 1.2;
  font-size: 3.2rem;
  font-weight: bold;
  color: #fff;
  position: relative;
  margin: 0 auto 54px;
}
.pg-lp-point__alone-sub-title:before{
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 21px solid transparent;
  border-right: 21px solid transparent;
  border-top: 21px solid var(--sub-color);
  position: absolute;
  left: 0;
  right: 0;
  bottom: -21px;
  margin: 0 auto;
}
.pg-lp-point__alone-list{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap:30px;
  margin: 0 auto 70px;
}
.pg-lp-point__alone-list-item{
  width: calc(100% / 3 - 20px);
}
.pg-lp-point__alone-list-item-image{
  margin-bottom: 15px;
}
.pg-lp-point__alone-list-item-text{
  max-width: 276px;
  padding: 8px 15px 8px 35px;
  background: var(--bg-color);
  text-align: left;
  line-height: 1.2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--main-color);
  margin-left: 24px;
  position: relative;
}
.pg-lp-point__alone-list-item-text:before{
  content:'';
  display: block;
  width: 45px;
  height: 45px;
  background: url(../img/common/icon-check-cyrcle.svg)no-repeat center center / contain;
  position: absolute;
  top:14px;
  left: -24px;
}
.pg-lp-point__alone-result{
  padding: 35px 350px 35px 35px;
  border: solid 2px #CCD8DB;
  border-radius: 10px;
  text-align: left;
  position: relative;
  margin: 0 auto 55px;
}
.pg-lp-point__alone-result::before{
  content: '';
  display: block;
  width: 296px;
  height: 194px;
  background: url(../img/page/anxiety-illust02.svg)no-repeat center center / contain;
  position: absolute;
  top:64px;
  right: 35px;
}
.pg-lp-point__alone-result-title{
  line-height: 1.4;
  font-size: 2.9rem;
  color: #1D1D1D;
  margin-bottom: 25px;
}
.pg-lp-point__alone-result-list-item{
  padding-left: 18px;
  font-size: 1.7rem;
  font-weight: 500;
  position: relative;
  margin-bottom: 18px;
}
.pg-lp-point__alone-result-list-item:last-of-type{
  margin-bottom: 0;
}
.pg-lp-point__alone-result-list-item span{
  color: var(--main-color);
}
.pg-lp-point__alone-result-list-item::before{
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 20px;
  background: var(--main-color);
  position: absolute;
  top:13px;
  left: 0;
}
.pg-lp-point__alone-answer-title{
  line-height: 1.4;
  font-size: 3rem;
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 40px;
}
.pg-lp-point__alone-answer-text{
  padding-right: 340px;
  background: url(../img/page/anxiety-illust03.svg)no-repeat center right / contain;
  text-align:left;
  font-size: 1.7rem;
}
.pg-lp-point__alone-answer-text--red{
  font-weight: bold;
  color: var(--main-color);
}
.pg-lp-point__alone-answer-text--large{
  font-size: 1.9rem;
}
.pg-lp-point-contact__title{
  display: block;
  text-align: center;
  line-height: 1.4;
  font-size: 3.4rem;
  font-weight: bold;
  color: var(--main-color);
  position: relative;
  margin: 0 auto 35px;
}
.pg-lp-point-contact__title-inner{
  display: inline-block;
  position: relative;
}
.pg-lp-point-contact__title-inner::before{
  content: '';
  display: block;
  width: 100%;
  height: 26px;
  background:#FDE67C;
  position: absolute;
  left: 0;
  bottom: -8px;
  z-index: 1;
}
.pg-lp-point-contact__title-inner span{
  position: relative;
  z-index: 2;
}
.pg-lp-point-contact__text{
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 30px;
}

/* .pg-lp-review */
.pg-lp-review{
  background: #fff;
  overflow: hidden;
}
.pg-lp-review .l-section-inner{
  padding-bottom: 120px;
}
.pg-lp-review__slide .swiper-slide{
  height: auto;
  padding: 30px 35px;
  box-sizing: border-box;
  background: var(--bg-color);
  border-radius: 10px;
  margin-bottom: 10px;
}
.pg-lp-review__slide-title{
  line-height: 1.4;
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 14px;
}
.pg-lp-review__slide-star{
  display: flex;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.pg-lp-review__slide-star-item{
  width: 37px;
  margin-right: 8px;
}
.pg-lp-review .swiper-pagination{
  position: relative;
}
.pg-lp-review .swiper-pagination-bullet{
  width: 16px;
  height: 16px;
  background: #D6D6D6;
  margin: 0 4px;
}
.pg-lp-review .swiper-pagination-bullet-active{
  background: var(--main-color);
}

/* .pg-lp-qa */
.pg-lp-qa .l-section-inner{
  padding-bottom: 0;
}
.pg-lp-qa__list-item{
  padding: 35px;
  border-radius: 10px;
  background: #fff;
  color: var(--main-color);
  position: relative;
  margin-bottom: 40px;
}
.pg-lp-qa__list-item-question{
  line-height: 1.2;
  font-size: 2rem;
  font-weight: 500;
  cursor: pointer;
  transition: .3s;
}
.pg-lp-qa__list-item-question:before{
  content: 'Q.';
  display: inline-block;
  font-size: 2.4rem;
  font-weight: bold;
  margin-right: 14px;
}
.pg-lp-qa__list-item-question:after{
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  background: url(../img/common/icon-toggle-on.svg)no-repeat center center / contain;
  position: absolute;
  top:35px;
  right: 35px;
}
.pg-lp-qa__list-item-question.selected:after{
  background: url(../img/common/icon-toggle-off.svg)no-repeat center center / contain;
}
.pg-lp-qa__list-item-answer{
  font-size: 2rem;
  color: #1D1D1D;
  margin-top: 30px;
}

/* .pg-lp-public */
.pg-lp-public__list{
  display: flex;
  flex-wrap: wrap;
  gap:33px;
  margin: 0 auto 120px;
}
.pg-lp-public__list-item{
  width: calc(100% / 3 - 22px);
  padding-bottom: 22px;
  border-radius: 10px;
  border:solid 2px var(--main-color);
  background: #fff;
  text-align: center;
}
.pg-lp-public__list-item-title{
  padding: 15px 20px;
  background: var(--main-color);
  border-radius: 5px 5px 0 0;
  text-align: left;
  line-height: 1.2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.6rem;
  font-weight: bold;
  color: #fff;
}
.pg-lp-public__list-item-image{
  margin-bottom: 18px;
}
.pg-lp-public__list-item-table {
  width: calc(100% - 40px);
  margin: 0 auto;
}
.pg-lp-public__list-item-table th{
  width: 60px;
  padding:10px 5px;
  background: #F5F3EF;
  border-radius: 5px;
  text-align: center;
  line-height: 1;
  color: var(--main-color);
  font-size: 2rem;
  font-weight: bold;
}
.pg-lp-public__list-item-table td{
  padding: 5px 0 5px 7px;
  text-align: left;
  line-height: 1.6;
  font-size: 1.8rem;
  font-weight:500;
}
.pg-lp-public__list-item .c-button-link{
  width: calc(100% - 40px);
  padding: 12px;
  margin: 0 auto;
}
.pg-lp-public__list-item .c-button-text{
  font-size: 2rem;
}

/* .pg-lp-member */
.pg-lp-member{
  background: #fff;
}
.pg-lp-member__intro{
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.pg-lp-member__intro-image{
  width: 390px;
  height: 265px;
  margin-right: 50px;
}
.pg-lp-member__intro-text{
  padding-bottom: 10px;
  line-height: 1.7;
  font-size: 3rem;
  font-weight: bold;
  color: #1D1D1D;
}
.pg-lp-member__intro-text span{
  font-size: 3.8rem;
  color: var(--main-color);
}
.pg-lp-member__benefits-title{
  display: block;
  text-align: center;
  margin: 0 auto 55px;
}
.pg-lp-member__benefits-title img{
  display: block;
  width: 286px;
  margin: 0 auto;
}
.pg-lp-member__benefits-title span{
  padding: 10px 57px;
  background: var(--main-color);
  border-radius: 50px;
  line-height: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3.2rem;
  font-weight: bold;
  color: #fff;
  position: relative;
}
.pg-lp-member__benefits-title span:before{
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 21px solid transparent;
  border-right: 21px solid transparent;
  border-top: 21px solid var(--main-color);
  position: absolute;
  left: 0;
  right: 0;
  bottom: -21px;
  margin: 0 auto;
}
.pg-lp-member__benefits-lits{
  display: flex;
  justify-content: center;
  gap:60px;
  margin: 0 auto 55px;
}
.pg-lp-member__benefits-lits-item-text{
  text-align: center;
  line-height: 1.4;
  font-size: 2.8rem;
  font-weight: bold;
  text-shadow: 2px 2px 3px #fff;
  margin-top: -34px;
}
.pg-lp-member__benefits-lits-item-text span{
  font-size: 3.5rem;
  color: var(--red-color);
}
.pg-lp-member__benefits-text{
  text-align: center;
  font-size: 2.2rem;
  margin: 0 auto 35px;
}

/* .pg-lp-visit */
.pg-lp-visit{
  padding-bottom: 20px;
}
.pg-lp-visit__box{
  display: flex;
  margin-bottom: 65px;
}
.pg-lp-visit__content{
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: calc(50% + 120px);
  padding: 50px 40px 60px;
  background: rgba(255, 255, 255, 0.9);
  text-align: left;
  position: relative;
  margin-top: 105px;
  margin-left: -120px;
  z-index: 2;
}
.pg-lp-visit__content > *{
  width: 660px;
  max-width: 100%;
}
.pg-lp-visit__content-list{
  margin-bottom: 7px;
}
.pg-lp-visit__content-list-item{
  padding-left: 32px;
  background: url(../img/common/icon-check-square.svg)no-repeat top 5px left / 22px;
  line-height: 1.4;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 25px;
}
.pg-lp-visit__text{
  line-height: 1.8;
  font-size: 1.8rem;
  font-weight: 400;
}
.pg-lp-visit__image{
  width: 50%;
  position: relative;
  z-index: 1;
}
.pg-lp-visit .c-button{
  text-align: center;
}
.pg-lp-visit .c-button-link{
  width: 300px;
  max-width: 100%;
  padding: 20px 20px 18px;
}
.pg-lp-visit .c-button-text{
  font-size: 2rem;
}

@media (min-width:769px){
  /* .pg-lp-hall */
  .pg-lp-hall__anker-item a:hover{
    opacity: .8;
    box-shadow: 0 0 0 0 #000;
    transform: translateY(10px);
  }

  /* .pg-lp-qa */
  .pg-lp-qa__list-item-question:hover{
    opacity: .6;
  }
}

@media(max-width:1330px){
  /* .pg-lp-mv */
  .pg-lp-mv__title-catch{
    /*font-size: 2.7vw;*/
    font-size: 2.2vw;
  }
  .pg-lp-mv__title-catch--kitakyushu{
    font-size: 2.1vw;
  }
  .pg-lp-mv__title-catch span{
    /*font-size: 2.1vw;*/
    font-size: 1.5vw;
  }
  .pg-lp-mv__inner-image::before{
    max-width: 50%;
    max-height: 70%;
  }
}

@media(max-width:1220px){
  /* .pg-lp-mv */
  .pg-lp-mv__note{
    font-size: 1.1vw;
  }
}

@media(max-width:1150px){
  /* .pg-lp-note */
  .pg-lp-note__head{
    font-size: 3.3vw;
  }
}

@media(max-width:1120px){
  /* .pg-lp-note__title */
  .pg-lp-note__title{
    font-size: 3vw;
  }
  .pg-lp-note__title::before{
    width: 22%;
    height: 197px;
  }
  .pg-lp-note__title::after{
    width: 20%;
    height: 154px;
  }
  .pg-lp-note__title-red{
    font-size: 3.2vw;
  }
}

@media(max-width:1100px){
  /* .p-lp-hall */
  .pg-lp-hall__list-item-point-list-item{
    font-size: 1.4vw;
  }
  .pg-lp-hall__list-item-contacts .c-button{
    width: 45%;
  }
  .pg-lp-hall__list-item-contacts .p-tel-number{
    width: 52%;
  }
}

@media(max-width:1050px){
  /* .pg-lp-plan */
  .pg-lp-plan__list-item-flow{
    width: calc(100% - 20px);
  }
  .pg-lp-plan__list-item-flow-item{
    font-size: 1.3vw;
  }
  .pg-lp-plan__list-item .c-button-text{
    font-size: 2rem;
  }

  /* .pg-lp-point */
  .pg-lp-point__list-item-title{
    font-size: 2.2vw;
  }
  .pg-lp-point__alone::before{
    width: 20%;
    height: 70px;
  }
  .pg-lp-point__alone-title{
    font-size: 3.6vw;
  }
  .pg-lp-point__alone-catch{
    padding-left: 24%;
    font-size: 2.2vw;
  }
  .pg-lp-point__alone-catch::before{
    width: 20%;
    height: 205px;
  }
  .pg-lp-point__alone-catch span{
    display: inline-block;
    line-height: 1.6;
    font-size: 2.6vw;
  }
  .pg-lp-point__alone-sub-title{
    font-size: 2.8vw;
  }
  .pg-lp-point__alone-list{
    gap:18px;
  }
  .pg-lp-point__alone-list-item{
    width: calc(100% / 3 - 12px);
  }
  .pg-lp-point__alone-list-item-text{
    font-size: 1.8vw;
  }
  .pg-lp-point__alone-list-item-text:before{
    top:6px;
    left: -24px;
  }
  .pg-lp-point__alone-result{
    padding: 35px 40% 35px 35px;
  }
  .pg-lp-point__alone-result::before{
    width: 30%;
    right: 5%;
  }
  .pg-lp-point__alone-result-title{
    font-size: 2.2vw;
  }
  .pg-lp-point__alone-result-list-item{
    font-size: 1.6vw;
  }
  .pg-lp-point__alone-result-list-item::before{
    top:10px;
  }
  .pg-lp-point__alone-answer-title{
    font-size: 2.8vw;
  }
  .pg-lp-point__alone-answer-text{
    padding-right: 25%;
    font-size: 1.6vw;
    background: url(../img/page/anxiety-illust03.svg)no-repeat center right / 24%;
  }
  .pg-lp-point__alone-answer-text--red{
    font-weight: bold;
    color: var(--main-color);
  }
  .pg-lp-point__alone-answer-text--large{
    font-size: 1.8vw;
  }

  /* pg-lp-public */
  .pg-lp-public__list-item-title{
    font-size: 2.4vw;
  }
  .pg-lp-public__list-item-table th{
    font-size: 1.8vw;
  }
  .pg-lp-public__list-item-table td{
    font-size: 1.6vw;
  }
  .pg-lp-public__list-item .c-button-text{
    font-size: 1.8vw;
  }
}

@media(max-width:1000px){
  /* .pg-lp-mv */
  .pg-lp-mv__title-catch{
    /*font-size: 2.5vw;*/
    font-size: 2.0vw;
  }
  .pg-lp-mv__title-catch--kitakyushu{
    font-size: 1.9vw;
  }
  .pg-lp-mv__title-catch span{
    /*font-size: 1.9vw;*/
    font-size: 1.5vw;
  }

  /* .p-lp-hall */
  .pg-lp-hall__list-item-point-list{
    gap:15px;
  }  
  .pg-lp-hall__list-item-point-list-item{
    width: calc(20% - 12px);
    font-size: 1.3vw;
  }
}

@media(max-width:950px){
  
  /* .pg-lp-member */
  .pg-lp-member__intro-image{
    width: 40%;
  }
  .pg-lp-member__intro-text{
    font-size: 2.8vw;
  }
  .pg-lp-member__intro-text span{
    font-size: 3vw;
  }
  .pg-lp-member__benefits-lits-item-text{
    font-size: 2.4vw;
  }
  .pg-lp-member__benefits-lits-item-text span{
    font-size: 3vw;
  }
}

@media(max-width:900px){
  /* .pg-lp-note */
  .pg-lp-note__head{
    font-size: 3vw;
  }

  /* .pg-lp-note__images */
  .pg-lp-note__images{
    display: block;
    width: 480px;
    max-width: 100%;
    margin: 0 auto 60px;
  }
  .pg-lp-note__images-item{
    height: 212px;
  }
  .pg-lp-note__images-item--left {
    margin-right: -10px;
  }
  .pg-lp-note__images-item--right {
    margin-left: -10px;
  }
  .pg-lp-note__images-item--left img{
    width: 70px;
    margin-left: auto;
  }
  .pg-lp-note__images-item--right img{
    width: 102px;
  }
  .pg-lp-note__images-item-text{
    width: 100%;
    max-width: 310px;
    height: 200px;
    padding: 20px;
    font-size: 2rem;
  }
  .pg-lp-note__images-item-text--left{
    padding-right: 40px;
    right: 20px;
  }
  .pg-lp-note__images-item-text--right{
    padding-left: 84px;
    padding-right: 58px;
    left: 20px;
  }
  .pg-lp-note__title{
    width: 100%;
    max-width: 420px;
    padding: 20px 10px 120px;
    font-size: 2rem;
    margin: 0 auto 20px;
  }
  .pg-lp-note__title::before{
    width: 120px;
    height: 120px;
    left: 15px;
    bottom: 0;
  }
  .pg-lp-note__title::after{
    width: 120px;
    height: 120px;
    right: 30px;
    bottom: 0;
  }
  .pg-lp-note__title-red{
    font-size: 2.6rem;
  }
}

@media(max-width:850px){
  /* .pg-lp-plan */
  .pg-lp-plan__list-item-title{
    font-size: 3.2rem;
  }
  .pg-lp-plan__list-item-title span{
    font-size: 4rem;
  }
  .pg-lp-plan__list-item-flow-item{
    padding: 6px 2px;
    font-size: 1.2vw;
  }
  .pg-lp-plan__list-item .c-button-text{
    font-size: 1.6rem;
  }
}

@media(max-width:768px){
  /* .pg-lp-mv */
  .pg-lp-mv{
    padding: 0px;
    margin-bottom: 0;
  }
  .pg-lp-mv__inner{
    display: block;
  }
  .pg-lp-mv__inner-box{
    width: 100%;
    padding: 25px 18px 8px;
  }
  .pg-lp-mv__title{
    max-width: 100%;
  }
  .pg-lp-mv__title-catch{
    padding: 4px;
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  .pg-lp-mv__title-catch span{
    font-size: 1.8rem;
  }
  .pg-lp-mv__title-main{
    margin-bottom: 20px;
  }
  .pg-lp-mv__batch-list{
    gap:12px;
    margin-bottom: 7px;
  }
  .pg-lp-mv__batch-list-item{
    width: calc(100% / 3 - 8px);
  }
  .pg-lp-mv__inner-image{
    width: 100%;
  }
  .pg-lp-mv__inner-image::before{
      width: 38vw;
      height: 64vw;
      max-width: 155px;
      max-height: 258px;
    right: 12px;
  }
  .pg-lp-mv__note{
    text-align: left;
    font-size: 1rem;
  }

  /* .pg-lp-hall */
  .pg-lp-hall__map{
    margin: 0 auto 40px;
  }
  .pg-lp-hall__map:before{
    height: 0;
  }
  .pg-lp-hall__map-content{
    height:300px !important;
    margin-top: 40px;
  }
  .pg-lp-hall__anker{
    gap:10px;
    margin: 0 auto 60px;
  }
  .pg-lp-hall__anker-item{
    width: calc(100% / 2 - 5px);
  }
  .pg-lp-hall__anker-item a{
    padding: 15px;
    box-shadow: 0 6px 0 0 #3B0008;
    text-align: left;
    font-size: 1.6rem;
  }
  .pg-lp-hall__anker-item a:before{
    width: 15px;
    background: url(../img/common/arrow-bottom-white.svg)no-repeat center center / contain;
    top:2px;
    right: 27px;
  }
  .pg-lp-hall__list-item{
    margin: 0 auto 40px;
  }
  .pg-lp-hall__list-item:last-of-type{
    margin-bottom: 0;
  }
  .pg-lp-hall__list-item-title{
    padding: 10px 20px 12px;
    font-size: 2.2rem;
    font-weight: bold;
    color: #fff;
  }
  .pg-lp-hall__list-item-info{
    display: block;
    padding: 20px 20px 0;
  }
  .pg-lp-hall__list-item-image{
    width: 100%;
    height: auto;
    margin: 0 auto 15px;
  }
  .pg-lp-hall__list-item-table {
    border-spacing:0 10px;
    margin-top: -10px;
  }
  .pg-lp-hall__list-item-table th{
    width: 80px;
    padding: 10px;
    font-size: 1.4rem;
  }
  .pg-lp-hall__list-item-table td{
    padding: 10px 0 10px 10px;
    font-size: 1.4rem;
  }
  .pg-lp-hall__list-item-point{
    padding:0 20px;
  }
  .pg-lp-hall__list-item-point-list{
    flex-wrap: wrap;
    gap:9px;
    margin-bottom: 15px;
  }
  .pg-lp-hall__list-item-point-list-item{
    width: calc(100% / 3 - 6px);
    padding: 5px 2px 5px 5px;
    border-radius: 5px;
    letter-spacing: -.5px;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0;
  }
  .pg-lp-hall__list-item-point-list-item span{
    display: inline-block;
    padding-bottom: 1px;
    position:relative;
  }
  .pg-lp-hall__list-item-point-list-item--parking span{
    padding-left: 15px;
  }
  .pg-lp-hall__list-item-point-list-item--parking span::before{
    width: 10px;
    height: 100%;
  }
  .pg-lp-hall__list-item-point-list-item--waiting span{
      padding-left: 29px;
  }
  .pg-lp-hall__list-item-point-list-item--waiting span:before{
    width: 23px;
  }
  .pg-lp-hall__list-item-point-list-item--mortuary span{
    padding-left: 17px;
  }
  .pg-lp-hall__list-item-point-list-item--mortuary span:before{
    width: 12px;
  }
  .pg-lp-hall__list-item-point-list-item--wheelchair span{
    padding-left: 14px;
  }
  .pg-lp-hall__list-item-point-list-item--wheelchair span:before{
    width: 12px;
  }
  .pg-lp-hall__list-item-point-list-item--consultation span{
    padding-left: 25px;
  }
  .pg-lp-hall__list-item-point-list-item--consultation span:before{
    width: 20px;
  }

  .pg-lp-hall__list-item-contacts{
    flex-direction: column-reverse;
    flex-wrap: wrap;
    padding: 0 20px 20px;
  }
  .pg-lp-hall__list-item-contacts .p-tel-number{
    width:100%;
    max-width: 300px;
    padding-left: 0;
    margin-bottom: 15px;
  }
  .pg-lp-hall__list-item-contacts .c-button{
    width: 100%;
  }
  .pg-lp-plan__list{
    flex-wrap: wrap;
    gap:20px;
    margin-bottom: 80px;
  }
  .pg-lp-plan__list-item{
    width: 100%;
  }
  .pg-lp-plan__list-item-flow-item{
    font-size: 1.6rem;
  }
  .pg-lp-plan__list-item .c-button-text{
    font-size: 2rem;
  }
  .pg-lp-plan__others{
    width: calc(100% - 40px);
    padding: 20px;
    margin: 0 auto 60px;
  }
  .pg-lp-plan__others-text{
    font-size: 2rem;
  }
  .pg-lp-plan__monk{
    width: 340px;
    max-width: 100%;
    padding: 50px 20px 20px;
  }
  .pg-lp-plan__monk::before{
    width: 80px;
    height: 150px;
    top:auto;
    bottom: -40px;
  }
  .pg-lp-plan__monk-head{
    text-align: left;
    font-size: 1.8rem;
    top:-25px;
    left: 0px;
  }
  .pg-lp-plan__monk-head-inner{
    padding: 8px 20px 11px 85px;
    position: relative;
  }
  .pg-lp-plan__monk-head-batch{
    width: 90px;
    height: 90px;
    padding: 12px;
    font-size: 1.4rem;
    top:-15px;
    left: -15px;
  }
  .pg-lp-plan__monk-head-batch--large{
    font-size: 1.6rem;
  }
  .pg-lp-plan__monk-text{
    font-size: 2rem;
  }
  .pg-lp-plan__monk-text span{
    font-size: 1.7rem;
  }

  /* .pg-lp-estimate */
  .pg-lp-estimate__box{
    flex-wrap: wrap;
    flex-direction: column-reverse;
    margin-bottom: 20px;
  }
  .pg-lp-estimate__contents{
    width: calc(100% + 20px);
    padding: 20px;
    margin-top: -20px;
    margin-right:0;
    transform: translateX(-20px);
    z-index: 2;
  }
  .pg-lp-estimate__contents > *{
    width:100%;
    max-width: 100%;
  }
  .pg-lp-estimate__contents-text{
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .pg-lp-estimate__contents-title{
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .pg-lp-estimate__contents-list{
    margin-bottom: 15px;
  }
  .pg-lp-estimate__contents-list-item{
    padding-left: 14px;
    font-size: 1.6rem;
  }
  .pg-lp-estimate__contents-list-item::before{
    width: 6px;
    height: 6px;
    top:12px;
  }
  .pg-lp-estimate__contents-list-item span{
    font-weight: bold;
    color: var(--main-color);
  }
  .pg-lp-estimate__contents-image{
    width: calc(100% + 20px);
  }

  /* .pg-lp-note */
  .pg-lp-note__head{
    padding: 20px 20px 20px 10px;
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
  }
  .pg-lp-note__head span{
    padding-left: 50px;
    text-align: left;
  }
  .pg-lp-note__box{
    padding: 20px;
    font-size: 1.6rem;
  }
  .pg-lp-note__text{
    margin-bottom: 20px;
  }
  .pg-lp-note__text span{
    font-size: 1.8rem;
  }
  .pg-lp-note__catch{
    font-size: 2.4rem;
    margin-bottom: 18px;
  }
  .pg-lp-note__images{
    display: block;
    margin-bottom: 60px;
  }
  .pg-lp-note__images-item{
    height: 212px;
  }
  .pg-lp-note__images-item--left {
    margin-right: -10px;
  }
  .pg-lp-note__images-item--right {
    margin-left: -10px;
  }
  .pg-lp-note__images-item--left img{
    width: 70px;
    margin-left: auto;
  }
  .pg-lp-note__images-item--right img{
    width: 102px;
  }
  .pg-lp-note__images-item-text{
    width: 100%;
    max-width: 310px;
    height: 200px;
    padding: 20px;
    font-size: 2rem;
  }
  .pg-lp-note__images-item-text--left{
    padding-right: 40px;
    right: 20px;
  }
  .pg-lp-note__images-item-text--right{
    padding-left: 84px;
    padding-right: 58px;
    left: 20px;
  }

  /* .pg-lp-point */
  .pg-lp-point .l-section-inner{
    padding-top: 0;
  }
  .pg-lp-point__list{
    display: block;
    margin: 0 auto 100px
  }
  .pg-lp-point__list-item{
    width: 100%;
    margin-bottom: 40px;
  }
  .pg-lp-point__list-item::before{
    width: 40px;
    height: 40px;
    background: url(../img/common/icon-check-square.svg)no-repeat center center / contain;
    top:-12px;
    left: -10px;
  }
  .pg-lp-point__list-item-image{
    margin-bottom: 15px;
  }
  .pg-lp-point__list-item-title{
    font-size: 2rem;
    margin-bottom: 5px;
  }
  .pg-lp-point__list-item-text{
    font-size: 1.6rem;
  }

  .pg-lp-point__alone{
    padding:40px 20px;
  }
  .pg-lp-point__alone::before{
    width: 115px;
    height: 35px;
    bottom: -35px;
  }
  .pg-lp-point__alone-title{
    max-width:calc(100% - 20px);
    padding: 10px 20px;
    font-size: 2.2rem;
    top:-29px;
  }
  .pg-lp-point__alone-catch{
    padding:0 0 60px;
    font-size: 1.7rem;
    margin: 0 auto 40px;
  }
  .pg-lp-point__alone-catch::before{
    width: 85px;
    height: 85px;
    top:auto;
    left: auto;
    right: -10px;
    bottom: 0;
  }
  .pg-lp-point__alone-catch span{
    font-size: 1.9rem;
    margin-top: 10px;
  }
  .pg-lp-point__alone-sub-title{
    padding: 15px 5px 16px;
    font-size: 1.8rem;
    margin: 0 auto 40px;
  }
  .pg-lp-point__alone-sub-title:before{
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid var(--sub-color);
    bottom: -14px;
  }
  .pg-lp-point__alone-list{
    gap:10px;
    margin: 0 auto 80px;
  }
  .pg-lp-point__alone-list-item{
    width: calc(50% - 5px);
  }
  .pg-lp-point__alone-list-item-image{
    margin-bottom: 10px;
  }
  .pg-lp-point__alone-list-item-text{
    max-width:100%;
    padding: 10px 5px 10px 20px;
    font-size: 1.5rem;
    letter-spacing: -.5px;
    margin-left: 0;
  }
  .pg-lp-point__alone-list-item-text br{
    display: none;
  }
  .pg-lp-point__alone-list-item-text:before{
    width: 25px;
    height: 25px;
    top:14px;
    left: -10px;
  }
  .pg-lp-point__alone-result{
    padding: 20px;
    margin: 0 auto 40px;
  }
  .pg-lp-point__alone-result::before{
    width: 120px;
    height: 80px;
    top:-60px;
    right: 20px;
  }
  .pg-lp-point__alone-result-title{
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .pg-lp-point__alone-result-list-item{
    padding-left: 12px;
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  .pg-lp-point__alone-result-list-item:last-of-type{
    margin-bottom: 0;
  }
  .pg-lp-point__alone-result-list-item::before{
    width: 6px;
    height: 6px;
    top:12px;
  }
  .pg-lp-point__alone-answer-title{
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  .pg-lp-point__alone-answer-text{
    padding-right: 0;
    padding-bottom: 170px;
    background: url(../img/page/anxiety-illust03.svg)no-repeat center bottom / 200px;
    font-size: 1.6rem;
  }
  .pg-lp-point__alone-answer-text--large{
    font-size: 1.8rem;
  }
  .pg-lp-point-contact__title{
    text-align: center;
    font-size: 2.4rem;
    margin: 0 auto 30px;
  }
  .pg-lp-point-contact__title-inner{
    display: inline;
    padding: 0 1px 0;
    background: linear-gradient(transparent 40%, #FDE67C 60%);
    position: relative;
  }
  .pg-lp-point-contact__title-inner::before{
    display: none;
  }
  .pg-lp-point-contact__text{
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  /* .pg-lp-review */
  .pg-lp-review .l-section-inner{
    padding-bottom: 75px;
  }
  .pg-lp-review__slide .swiper-slide{
    padding: 20px;
    margin-bottom: 15px;
  }
  .pg-lp-review__slide-title{
    font-size: 2rem;
    margin-bottom: 5px;
  }
  .pg-lp-review__slide-star{
    margin-bottom: 10px;
  }
  .pg-lp-review__slide-star-item{
    width: 20px;
    margin-right: 4px;
  }
  .pg-lp-review .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    margin: 0 2px;
  }

  /* .pg-lp-qa */
  .pg-lp-qa__list-item{
    padding: 20px;
    margin-bottom: 20px;
  }
  .pg-lp-qa__list-item-question{
    padding: 0 24px 0 24px;
    font-size: 1.8rem;
    position: relative;
  }
  .pg-lp-qa__list-item-question:before{
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    position: absolute;
    top:-2px;
    left: 0;
  }
  .pg-lp-qa__list-item-question:after{
    width: 20px;
    height: 20px;
    top:2px;
    right: 0;
  }
  .pg-lp-qa__list-item-answer{
    font-size: 1.8rem;
    margin-top: 20px;
  }

  /* .pg-lp-public */
  .pg-lp-public__list{
    flex-wrap: wrap;
    gap:20px;
    margin: 0 auto 60px;
  }
  .pg-lp-public__list-item{
    width: calc(50% - 10px);
    padding-bottom: 22px;
    border-radius: 10px;
    border:solid 2px var(--main-color);
    background: #fff;
    text-align: center;
  }
  .pg-lp-public__list-item-title{
    padding: 10px 5px;
    background: var(--main-color);
    text-align: left;
    line-height: 1.2;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
  }
  .pg-lp-public__list-item-image{
    margin-bottom: 18px;
  }
  .pg-lp-public__list-item-table {
    display: block;
    width: calc(100% - 20px);
    margin: 0 auto;
  }
  .pg-lp-public__list-item-table th{
    display: block;
    width: 100%;
    padding:10px 5px;
    background: #F5F3EF;
    border-radius: 5px;
    text-align: center;
    line-height: 1;
    color: var(--main-color);
    font-size: 1.3rem;
    font-weight: bold;
  }
  .pg-lp-public__list-item-table td{
    display: block;
    width: 100%;
    padding: 5px 0 5px 7px;
    text-align: left;
    line-height: 1.6;
    font-size: 1.4rem;
    font-weight:500;
  }
  .pg-lp-public__list-item .c-button-link{
    width: calc(100% - 40px);
    padding: 12px;
    margin: 0 auto;
  }
  .pg-lp-public__list-item .c-button-text{
    font-size: 2rem;
  }

  /* .pg-lp-member */
  .pg-lp-member{
    background: #fff;
  }
  .pg-lp-member__intro{
    display: block;
    margin-bottom: 30px;
  }
  .pg-lp-member__intro-image{
    width: 390px;
    max-width: 80%;
    height: auto;
    margin: 0 auto 20px;
    margin-right: 50px;
  }
  .pg-lp-member__intro-text{
    padding-bottom: 0;
    font-size: 2.3rem;
  }
  .pg-lp-member__intro-text span{
    font-size: 2.7rem;
  }
  .pg-lp-member__benefits-title{
    display: block;
    text-align: center;
    margin: 0 auto 55px;
  }
  .pg-lp-member__benefits-title img{
    width: 200px;
  }
  .pg-lp-member__benefits-title span{
    padding: 10px 40px;
    font-size: 2.4rem;
  }
  .pg-lp-member__benefits-title span:before{
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid var(--main-color);
    bottom: -15px;
  }
  .pg-lp-member__benefits-lits{
    display: block;
    gap:0;
    margin: 0 auto;
  }
  .pg-lp-member__benefits-lits-item{
    margin: 0 auto 40px;
  }
  .pg-lp-member__benefits-lits-item-image{
    max-width: 250px;
    margin: 0 auto;
  }
  .pg-lp-member__benefits-lits-item-text{
    font-size: 2.8rem;
    margin-top: -36px;
  }
  .pg-lp-member__benefits-lits-item-text span{
    font-size: 3.3rem;
  }
  .pg-lp-member__benefits-text{
    text-align: center;
    font-size: 2rem;
    margin: 0 auto 60px;
  }
  .pg-lp-member__benefits-text{
    font-size: 1.6rem;
  }

  /* .pg-lp-visit */
  .pg-lp-visit__box{
    display: block;
    margin-bottom: 60px;
  }
  .pg-lp-visit__content{
    display: block;
    width: calc(100% + 20px);
    padding:40px 20px;
    margin-top: -20px;
    margin-left: 0;
  }
  .pg-lp-visit__content-list{
    margin-bottom: 5px;
  }
  .pg-lp-visit__content-list-item{
    padding-left: 25px;
    background: url(../img/common/icon-check-square.svg)no-repeat top 3px left / 17px;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .pg-lp-visit__text{
    font-size: 1.7rem;
  }
  .pg-lp-visit__image{
    width: calc(100% + 20px);
    transform: translateX(-20px);
  }
}

@media(max-width:380px){
  /* .pg-lp-hall */
  .pg-lp-hall__list-item-title{
    font-size: 2rem;
  }
  .pg-lp-hall__list-item-point-list-item{
    font-size: 1.1rem;
  }
  
  /* .pg-lp-note */
  .pg-lp-note__head{
    font-size: 1.6rem;
  }
  .pg-lp-note__images-item-text{
    font-size: 1.8rem;
  }
  .pg-lp-point__alone-sub-title{
    padding: 15px 10px 16px;
    font-size: 1.7rem;
  }
  .pg-lp-point__alone-answer-title{
    font-size: 2.2rem;
  }
}