@charset "utf-8";

/*-----------------------------------------------------
大見出し
-------------------------------------------------------*/

/* 中見出し
------------------------------------------------*/

/* 小見出し/コメント */

/* 1400px以下 */
@media only screen and (max-width: 1399px) {
}

/* 1200px以下 */
@media only screen and (max-width: 1199px) {
}

/* タブレット以下 */
@media only screen and (max-width: 991px) {
}

/* スマホ */
@media only screen and (max-width: 767px) {
}

/*-----------------------------------------------------
共通
-------------------------------------------------------*/
section {
  padding: 8rem 0;
}
a {
  text-decoration-line: none;
}

@media only screen and (max-width: 767px){
section {
  padding: 5rem 0;
}}

/*-----------------------------------------------------
フォント
-------------------------------------------------------*/
.text-bold{
  font-weight: bold;
}
.text-bold02{
  font-weight: 900;
}
.text-blue{
  color: #006f6e;
}
.text-white{
  color: #fff;
}
.text-red{
  color: #ff000c;
}
.text-orange{
  color: #ff6c00;
}
.text-yellow{
  color: #ffcc00;
}
/*-----------------------------------------------------
タイトル
-------------------------------------------------------*/
.ttl_box{
  margin-bottom: 9rem;
}
.ttl_text{
  color: #333;
  font-size: 1.5rem;
  font-weight: 900;
  position: absolute;
  z-index: 1000;
  left: 50%;
  transform: translate(-50%);
  margin-bottom: 0;
}
.ttl_bg_01{
  color: #95ece1;
  font-size: 10rem;
  font-weight: 900;
  position: absolute;
  z-index: 0;
  left: 50%;
  transform: translate(-50%);
  top: -7rem;
}
.ttl_bg_02{
  color: #95ece1;
  font-size: 10rem;
  font-weight: 900;
  position: absolute;
  z-index: 0;
  left: 50%;
  transform: translate(-50%);
  top: -7rem;
}

@media only screen and (max-width: 991px){
.ttl_text {
    font-size: 1.45rem;
}
.ttl_bg_01 {
    font-size: 9rem;
}}
@media only screen and (max-width: 767px){
.ttl_box{
  margin-bottom: 6rem;
}
.ttl_text{
  font-size: 1.2rem;
  width: 20rem;
}
.ttl_bg_01{
  font-size: 4.45rem;
  top: -2.5rem;
}
.ttl_bg_02{
  font-size: 4.5rem;
  top: -3.5rem;
}}

/*-----------------------------------------------------
CTA
-------------------------------------------------------*/
.cta{
  background-image: url(../images/cta_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 4rem 0;
}
.cta_ttl {
    display: flex;
    justify-content: center;
    position: relative;
    width: 35rem;
    margin-bottom: 15px;
    padding: 1.2rem 1rem;
    border-radius: 50vw;
    background-color: #ff6c00;
    color: #ffffff;
}
.cta_ttl::before {
    position: absolute;
    bottom: -15px;
    width: 30px;
    height: 15px;
    background-color: #ff6c00;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}
.cta_ttl h3{
  font-size: 2rem;
}
.cta-btn-ttl{
  font-size: 2.5rem;
  color: #fff;
}
.cta-btn-small{
  font-size: 2rem;
}
.cta_img{
  position: absolute;
  bottom: 0;
  right: 17%;
}
.cta_left{
  position: relative;
  left: -20%;
}
@media only screen and (max-width: 1399px){
.cta_img{
  right: 9%;
}}
@media only screen and (max-width: 1199px){
.cta{
  padding: 2rem 0;
}
.cta_img{
  width: 16rem;
  right: 12%;
}}
@media only screen and (max-width: 991px){
.cta{
  padding: 2rem 0;
}
.cta_ttl {
    width: 25rem;
}
.cta_img{
  right: 9%;
  width: 16rem;
}}

@media only screen and (max-width: 767px){
.cta{
  padding: 1rem 0;
}
.cta_ttl {
    width: 12rem;
    margin-bottom: 0;
    padding: 1.2rem 1rem;
}
.cta_ttl h3{
  font-size: 1.25rem;
}
.cta-btn-ttl{
  font-size: 1.5rem;
}
.cta-btn-small{
  font-size: 1.15rem;
}
  .cta_img{
  position: absolute;
  bottom: 0;
  right: 2%;
  width: 8rem;
}}

/*------------CTAボタン-------------*/
.cta .btn,
a.btn,
button.btn {
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
}

a.btn-flat {
  overflow: hidden;
  padding: 2rem 10rem;
  border-radius: 0;
  background: #00c0ac;
  margin-top: 2rem;
}

a.btn-flat span {
  position: relative;
}

a.btn-flat:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  content: '';
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: translateX(-80%) translateY(-50px);
  transform: translateX(-80%) translateY(-50px);
  border-radius: 50%;
  background: #ffb505;
}

a.btn-flat:hover:before {
  width: 1500px;
  height: 1500px;
  -webkit-transform: translateX(-1%) translateY(-50%);
  transform: translateX(-1%) translateY(-50%);
}

@media only screen and (max-width: 1199px){
  a.btn-flat {
  padding: 2rem 6rem;
}}
@media only screen and (max-width: 991px){
  a.btn-flat {
  padding: 1rem 4rem;
}}
@media only screen and (max-width: 767px){
.cta .btn,
a.btn,
button.btn {
  padding: 1rem 1.5rem;
}
  a.btn-flat {
  padding: 0.8rem 0.25rem;
  width: 100%;
}}


/*-----------------------------------------------------
header
-------------------------------------------------------*/
#Header{
  background-color: #00dca6;
}
#Header p{
  margin-bottom: 0;
}
.h-logo{
  max-width: 20rem;
  padding-left: 3em;
}

@media only screen and (max-width: 1199px) {
.h-logo{
  max-width: 15rem;
  padding-left: 1em;
  padding-right: 1em;
}}

@media only screen and (max-width: 991px) {
.h-logo{
  max-width: 10rem;
  padding-left: 0.5em;
}}
@media only screen and (max-width: 767px) {
.h-logo_sp{
  max-width: 8rem; 
  padding: 0.5em;
  margin: 0 auto;
}}

/*-----------------------------------------------------
FV
-------------------------------------------------------*/
.fv{
  position: relative;
  margin: 0 auto;
  height: 800px;
  background: linear-gradient(170deg, #00c0ac 40%, #fff 40%);
  padding: 2rem 0;
  display: flex;
  align-items: center;
}
.fv_woman{
  position: absolute;
  bottom: 0;
  left: -35%;
  width: 100%;
  height: 735px;
  background: url(../images/fv_woman.png) no-repeat 50% 0;
}
.fv_inner{
  position: relative;
  z-index: 9999;
}
.fv_text{
  position: relative;
  z-index: 200;
  left: 50%;
}
.fv_text_bg{
  background-color: #ff6c00;
  border-radius: 50vw;
  padding: 0.5rem 2rem;
  font-size: 1.5rem;
  width: 40rem;
  margin: 0 auto;
}
.fv_text_pic{
  width: 35rem;
}
.fv_ttl{
  font-size: 2.5rem;
  -webkit-text-stroke: 6px #00c0ac;
  paint-order: stroke fill;
}
@media only screen and (max-width: 1599px){
 .fv_text{
  left: 35%;
}}
@media only screen and (max-width: 1399px){
 .fv_text{
  left: 14%;
}}
@media only screen and (max-width: 991px){
 .fv_woman{
  left: -27%;
}}
@media only screen and (max-width: 767px){
  .fv{
  background-image: none;
  padding: 0;
  height: auto;
}}

/*------------slider-------------*/
.fv_loop {
  width: 40%;
  height: 690px;
  padding: 21px 0 0 23px;
  background-color: #fff;
  border-radius: 20px 0 0 20px;
  overflow: hidden; /* 枠内に制限 */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 60%;
  z-index: 100;
  border: 1rem solid #d0d0d0; /* 枠線 */
}

.fv_loop_inner {
  display: flex;
  position: absolute; /* スライド用 */
  top: 0;
  left: 0;
  height: 685px;
}

.fv_loop_inner img {
  height: 100%;
  flex-shrink: 0;
}



/*------------CTAボタン-------------*/
.btn,
a.btn,
button.btn {
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
}

a.fv_btn {
  overflow: hidden;
  padding: 1rem 8rem;
  border-radius: 50vw;
  background: #006f6e;
  margin-top: 2rem;
}

a.fv_btn span {
  position: relative;
}

a.fv_btn:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  content: '';
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: translateX(-80%) translateY(-50px);
  transform: translateX(-80%) translateY(-50px);
  border-radius: 50%;
  background: #ff6c00;
}

a.fv_btn:hover:before {
  width: 1500px;
  height: 1500px;
  -webkit-transform: translateX(-1%) translateY(-50%);
  transform: translateX(-1%) translateY(-50%);
}

@media only screen and (max-width: 1199px){
  a.fv_btn {
  padding: 1rem 6rem;
}}
@media only screen and (max-width: 991px){
  a.fv_btn {
  padding: 1rem 4rem;
}}
@media only screen and (max-width: 767px){
  a.fv_btn {
  padding: 0.8rem 0.25rem;
  width: 100%;
}}


/*-----------------------------------------------------
こんなお悩みありませんか？
-------------------------------------------------------*/
.nayami{
  background-image: url(../images/nayami_bg.png);
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 1.5rem 0;
}
.nayami_ttl {
    display: flex;
    justify-content: center;
    position: relative;
    max-width: 35rem;
    margin-bottom: 15px;
    padding: .8em 1.2em;
    border-radius: 50vw;
    background-color: #006f6e;
    color: #ffffff;
    margin-bottom: 3rem;
}
.nayami_ttl::before {
    position: absolute;
    bottom: -15px;
    width: 30px;
    height: 15px;
    background-color: #006f6e;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}
.nayami_box{
  position: relative;
  left: -15%;
}
.nayami_ul{
  display: flex;
  justify-content: center;
}
.circle:nth-of-type(even) {
  margin-top: 11%;
}
.circle {
  width: 205px;               /* 円の直径 */
  height: 205px;
  border-radius: 50%;         /* 正円にする */
  background: #fff;        /* 背景色 */
  border: 5px solid #00c0ac;  /* 外枠 */
  display: flex;              /* 中央寄せ用 */
  align-items: center;        /* 垂直中央 */
  justify-content: center;    /* 水平中央 */
  text-align: center;         /* 複数行を中央揃え */
  padding: 1rem;              /* 余白 */
  box-sizing: border-box;     /* paddingを含めても崩れない */
  margin-right: -2rem;
}
@media only screen and (max-width: 991px){
.nayami_box {
    left: 0;
}
.circle {
  width: 190px;               /* 円の直径 */
  height: 190px;
  padding: 0.5rem;              /* 余白 */
  margin-right: -1rem;
}  
}
@media only screen and (max-width: 767px){
.nayami_ttl {
    margin-bottom: 2rem;
}
.nayami_box{
  position: relative;
  left: 0;
}
.nayami_ul{
  flex-wrap: wrap;
}
  .circle {
  width: 100%;               /* 円の直径 */
  height: auto;
  border-radius: 20px;         /* 正円にする */
  margin: 0.5rem 0;
}
.circle:nth-of-type(even) {
  margin-top: 0;
}}

/*-----------------------------------------------------
解決
-------------------------------------------------------*/
.kaiketsu{
  background-image: url(../images/kaiketsu_bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 1.5rem 0 5rem;
}
.kaiketsu_triangle {
    position: relative;
    padding-top: 8vw !important;
}
.kaiketsu_triangle::after {
    content: '';
    position: absolute;
    top: 2.5vw;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    width: 18vw;
    height: 5vw;
    background: #b7ece6;
}
.kaiketsu_big{
  font-size: 5.5rem;
}
.kaiketsu_text{
  font-size: 2.8rem;
}
.kaiketsu_big02{
  font-size: 4rem;
}

@media only screen and (max-width: 767px){
.kaiketsu{
  padding: 1.5rem 0 3rem;
}
.kaiketsu_triangle {
    padding-top: 20vw !important;
}
.kaiketsu_triangle::after {
    top: 7.45vw;
    width: 50vw;
    height: 15vw;
}
.kaiketsu_big{
  font-size: 2.8rem;
}
.kaiketsu_text{
  font-size: 1.5rem;
}
.kaiketsu_big02{
  font-size: 2rem;
}}

/*-----------------------------------------------------
購買行動を後押し
-------------------------------------------------------*/
.action{
  background-color: #c0fff8;
}
.action_triangle {
    position: relative;
    padding-top: 13vw !important;
}
.action_triangle::after {
    content: '';
    position: absolute;
    top: 2.5vw;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    width: 18vw;
    height: 5vw;
    background: #00c0ac;
}
.action_ttl{
  padding-bottom: 2rem;
}
.action_txt_bg{
  background-color: #00c0ac;
  padding: 0.25rem 1rem;
  border-radius: 25px;
}
.action_txt_big{
  font-size: 3rem;
}

.action_list{
  width: 50%;
  margin: 0 auto;
}
.action_li{
  padding: 0.5rem 1rem;
  border-radius: 20px;
  position: relative;
  padding: 10px;
  text-align: center; /* 中央に寄せる例 */
  margin-bottom: 3.5rem; /* li の間隔 */
}
.action_li:last-child{
  margin-bottom: 0;
}

.action_li:first-of-type,
.action_li:last-of-type {
  background-color: #fff;
}
.action_li:not(:first-of-type):not(:last-of-type) {
  background-color: #fff2be;
}
.action_li_big{
  font-size: 2rem;
}

/* 各 li の後ろに逆三角形を追加 */
.action_li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2.8rem; /* li の下に配置 */
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 3rem solid transparent;
  border-right: 3rem solid transparent;
  border-top: 2rem solid #006f6e; /* ▼の色 */
}
/* 最後の li だけは矢印を消す */
.action_li:last-child::after {
  content: none;
}

.action_li:nth-of-type(2)::before {
  content: "";
  position: absolute;
  left: -5rem; /* liの左に配置する距離を調整 */
  top: 50%;
  transform: translateY(-50%);
  width: 12rem;  /* 画像サイズ */
  height: 12rem;
  background: url(../images/action_point.png) no-repeat center center / contain;
}

@media only screen and (max-width: 1199px){
.action_li:nth-of-type(2)::before {
  left: -6rem; /* liの左に配置する距離を調整 */
}}  
@media only screen and (max-width: 991px){
 .action_list {
    width: 85%;
}
.action_li:nth-of-type(2)::before {
  left: -4rem; /* liの左に配置する距離を調整 */
}
.action_txt_big {
    font-size: 2.8rem;
}}

@media only screen and (max-width: 767px){
.action_triangle {
    padding-top: 20vw !important;
}
.action_triangle::after {
    top: 7.45vw;
    width: 50vw;
    height: 15vw;
}
.action_txt{
  line-height: 1.55em;
}
.action_txt_big{
  font-size: 2.5rem;
}
 .action_list{
  width: 100%;
}
.action_li_big{
  font-size: 1.5rem;
}
.action_li:nth-of-type(2)::before {
  left: -0.9rem; /* liの左に配置する距離を調整 */
  width: 8rem;  /* 画像サイズ */
  height: 8rem;
}}

/*-----------------------------------------------------
メリット
-------------------------------------------------------*/
.merit_num{
  font-size: 12rem;
  color: #91c1ba;
  background-color: #008b7d;
  padding: 0.5rem 3rem;
  height: 15rem;
  width: 45%;
}
.merit_content{
  background-color: #00c0ac;
  height: 15rem;
  padding: 1rem 1.5rem;
  width: 65%;
}
.merit_ttl{
  font-size: 2.25rem;
  color: #fff;
}
.merit_text{
  font-size: 1.25rem;
}
@media only screen and (max-width: 991px){
.merit_num{
  font-size: 7rem;
  padding: 0.5rem 1.5rem;
  height: 12rem;
  width: 25%;
}
.merit_content{
  background-color: #00c0ac;
  height: 12rem;
  padding: 1rem 1.5rem;
  width: 75%;
}
.merit_ttl{
  font-size: 2rem;
} }
@media only screen and (max-width: 767px){
  .merit_box{
    flex-direction: column;
  }
  .merit_num{
  font-size: 3rem;
  padding: 0;
  height: 4rem;
  width: 100%;
  justify-content: center !important;
}
.merit_content{
  height: auto;
  padding: 1rem 1.5rem;
  width: 100%;
}
.merit_ttl{
  font-size: 1.2rem;
}
.merit_text{
  font-size: 0.8rem;
}}

/*-----------------------------------------------------
メリット02
-------------------------------------------------------*/
.merit02{
  padding: 0 0 2rem;
}
.merit02_ttl{
  font-size: 3rem;
}
.merit02_bg{
  background-color: #00c0ac;
  padding: 0.5rem;
  display: inline-block;
}
@media only screen and (max-width: 991px){
.merit02_ttl{
  font-size: 2.5rem;
  padding-bottom: 1rem;
}}

@media only screen and (max-width: 767px){
.merit02{
  padding: 0;
}
.merit_pic{
  width: 70%;
}
 .merit02_ttl{
  font-size: 1.8rem;
}
.merit02 h4{
  font-size: 1.2rem;
}
.merit02_bg{
  padding: 0.5rem;
  display: block;
  width: 90%;
}}



/*-----------------------------------------------------
選ばれる理由
-------------------------------------------------------*/
.reason {
  padding-bottom: 12rem;
}
.reason li{
  width: 25%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.reason_list{
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  padding: 0;
}
.reason_list li img{
  display: block;
  width: 100%;
}
@media only screen and (max-width: 767px){
.reason {
  padding-bottom: 3rem;
}
.reason li{
  width: 50%;
}}

/*-----------------------------------------------------
実績
-------------------------------------------------------*/
.case_pic{
  width: 70%;
}
@media only screen and (max-width: 991px){
.case_pic {
    width: 100%;
}}
@media only screen and (max-width: 767px){
 .case_pic{
  width: 100%;
}}

/*-----------------------------------------------------
料金
-------------------------------------------------------*/
.price{
  background-color: #00c0ac;
  padding-bottom: 12rem;
}
.price_pic{
  position: absolute;
  top: -3rem;
  left: 15%;
}
.price table {
  width: 80%;
}
.price th{
  font-size: 1.8rem;
  padding: 1.5rem 1rem;
  width: 50%;
}
.price_th_bg01{
  background-color: #0b819e;
  border: 2px solid #fff;
  font-size: 1.5rem;
}
.price_th_bg02{
  background-color: #387ab8;
  border: 2px solid #fff;
}
.price_td_bg{
  background-color: #fff;
  border: 2px solid #fff;
  padding: 1rem;
}
.price_txt_big{
  font-size: 5rem;
}
.price_txt_small{
  font-size: 2rem;
}
.price_txt_black{
  padding-right: 1rem;
  font-size: 2rem;
}
.price_txt{
  text-align: left !important;
  padding-left: 1em;
  text-indent: -1em;
}
.price_ranking_box{
  display: flex;
  justify-content: center;
  align-items: center;
}
.price_txt_big02{
  font-size: 3rem;
}
.price_txt_small02{
  font-size: 2rem;
}
@media only screen and (max-width: 1199px){
.price_pic{
  left: 5%;
}}

@media only screen and (max-width: 991px){
.price_pic{
  left: -6%;
}
.price table {
    width: 100%;
}
.price_txt_big {
    font-size: 3.2rem;
}
.price_th_bg01{
  font-size: 1.2rem;
}
.price_txt_big02{
  font-size: 2.5rem;
}
.price_txt_small02{
  font-size: 1.8rem;
}}

@media only screen and (max-width: 767px){
.price{
  padding-bottom: 5rem;
}
.price_pic{
  width: 40%;
  top: -1.5rem;
  left: 0;
}
.price table {
  width: 100%;
}
.price th{
  font-size: 1.5rem;
  padding: 1.25rem 1rem 1.25rem;
  text-align: right !important;
}
.price_txt_big{
  font-size: 3rem;
}
.price_txt_small{
  font-size: 1.5rem;
}
.price_txt_black{
  font-size: 1.2rem;
}
.price_txt{
  padding-right: 0;
  font-size: 0.8rem;
}
.price_ranking{
  display: block;
}
.price_th_bg01{
  display: block;
  font-size: 1.25rem;
  padding: 0.5rem 0;
}
.price_ranking_box {
  flex-direction: column;
}
.price_txt_big02{
  font-size: 2rem;
}
.price_txt_small02{
  font-size: 1.5rem;
}}

/*-----------------------------------------------------
フロー
-------------------------------------------------------*/
.step_box{
  border-radius: 20px;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75%;
  height: 11rem;
}
.step_box_bg01{
  background-color: #00c0ac;
}
.step_box_bg02{
  background-color: #00bec0;
}
.step_box_ttl{
  position: absolute;
  font-weight: 900;
  font-size: 2.25rem;
  top: -1.75rem;
}
.step_txt_box{
  width: 35rem;
}
.step_ttl{
  color: #fff;
  font-weight: 900;
  font-size: 2rem;
  padding-bottom: 0.5rem;
}
.step_text{
  color: #fff;
  font-weight: bold;
  padding-right: 1rem;
  font-size: 1.25rem;
}
.step_pic01{
  width: 10rem;
}
.step_pic{
  width: 13rem;
}

@media only screen and (max-width: 991px){
 .step_box {
    width: 100%;
}}

@media only screen and (max-width: 767px){
.step_box{
  width: 100%;
  height: 9rem;
}
.step_box_ttl{
  font-size: 1.8rem;
  top: -1.5rem;
}
.step_ttl{
  font-size: 1.3rem;
}
.step_text{
  font-size: 0.8rem;
}
.step_pic01{
  width: 18rem;
}
.step_pic{
  width: 24rem;
}}


/*-----------------------------------------------------
よくある質問
-------------------------------------------------------*/
.question{
  background-color: #c0fff8;
}
.qa-box{
  background-color: #fff;
  padding: 2em;
}
.q-color{
  font-size: 2rem;
  font-weight: bold;
  color: #008f80;
  margin-right: 0.5em;
}
.a-color{
  font-size: 1.8rem;
  font-weight: bold;
  color: #008f80;
  margin-right: 0.5em;
}
.q_text{
  color: #333;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0;
}
.a_text{
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}
.bullet-text01 {
    padding-left: 1em;
    text-indent: -2.5em;
    display: block;
}
.bullet-text02 {
    padding-left: 1.5em;
    text-indent: -1.65em;
    display: block;
}
.accordion-button{
  background-color: #fff !important;
  border-radius: 0 !important;
  border-bottom: 2px solid #828282;
  padding-bottom: 0.5em;
  margin-bottom: 1.5em;
}
.accordion {
  --bs-accordion-border-color: none;
  --bs-accordion-btn-focus-border-color: none;
  --bs-accordion-btn-focus-box-shadow:none;
  --bs-accordion-active-bg: none;
  --bs-accordion-btn-padding-y: 1.5rem;
}
.accordion-body {
    padding-bottom: 1.5rem;
    background-color: #eeeeee;
}
.accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
    border-radius: 20px;
}
.accordion-flush .accordion-item {
    border-radius: 20px;
}
.accordion-button::after{
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23008f80'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button:not(.collapsed)::after{
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23008f80'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
@media only screen and (max-width: 991px){
.q-color{
  font-size: 1.8rem;
}
.a-color{
  font-size: 1.3rem;
}
.q_text{
  font-size: 0.9rem;
}
.a_text{
  font-size: 0.9rem;
  color: #333;
}
.accordion-header {
    padding-left: 0.5em;
}
.accordion {
--bs-accordion-body-padding-x: 1.8rem;
}}


/*-----------------------------------------------------
form
-------------------------------------------------------*/
.form{
  background-color: #00c0ac;
  padding: 5rem 0;
}
.form_ttl {
    display: flex;
    justify-content: center;
    position: relative;
    max-width: 45rem;
    margin-bottom: 15px;
    padding: .8em 1.2em;
    border-radius: 50vw;
    background-color: #182739;
    color: #ffffff;
    margin-bottom: 3rem;
}

.form_ttl::before {
    position: absolute;
    bottom: -15px;
    width: 30px;
    height: 15px;
    background-color: #182739;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}
.bg_white{
  background-color: #fff;
  padding: 50px 0 50px 0;
}
.p-privacy__list {
    list-style-type: none;
}
.badge {
  border-radius: 0px !important;
}
@media only screen and (max-width: 991px) {
  .bg_white{
  padding: 2em;
  }
}
@media only screen and (max-width: 767px) {
  .bg_white{
  padding: 50px 10px 50px 10px;
  width: 90%;
}
.form_ttl {
    max-width: 20rem;
}
.form_ttl h2{
  font-size: 1.25rem;
}
.form-text {
    margin-bottom: 0.5rem;
}}

.text-bg-danger{
  background-color: #182739 !important;
  border: 2px solid #182739 !important;
  font-size: 0.8rem;
}
.text-bg-light{
  background-color: #fff !important;
  color: #182739 !important;
  border: 2px solid #182739 !important;
  font-size: 0.8rem;
}
.btn-primary{
  background-color: #182739 !important;
  border: #182739;
}

.btn-lg{
   padding-left: 5rem;
   padding-right: 5rem;
   border-radius: 15px;
}
.form-check-input{
  border: var(--bs-border-width) solid #444;
}




/*-----------------------------------------------------
footer
-------------------------------------------------------*/
#Footer{
  color: #fff;
  background-color: #00c0ac;
  padding: 3em 2em 7em;
}


/*-----------------------------------------------------
 追従 
-------------------------------------------------------*/
.fix-navi{
  position: fixed;
  z-index: 9999;
  top: 5rem;
  right: 0;
  width: 5rem;
  transition: opacity 0.3s ease; /
  }

.fix-navi:hover {
  opacity: 0.6; /* 半透明 */
}
@media only screen and (max-width: 767px){
  .scroll-up{
    bottom: 125px;
}
.fix-navi_sp{
  position: fixed;
  z-index: 9999;
  background-color: #006f6e;
  padding: 0.5rem 0;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.3s ease; /
}
.fix-navi_sp:hover {
  opacity: 0.6; /* 半透明 */
}
.fix_text{
  font-size: 2rem;
}}

/*-----------------------------------------------------
サンクスページ
-------------------------------------------------------*/
#thks{
  background-color: #ececec;
  margin: 0;
}
.thanks-box{
  background-color: #fff;
  width: 80%;
  margin: 0 auto;
  padding: 1em;
  border-radius: 20px;
}
.thanks-ttl{
  text-align: center;
}
.thanks-text{
  text-align: center;
  font-size: 0.85rem;
}
.thanks-download{
padding-bottom: 2em;
}

a.btn_02 {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border-radius: 20px;
  width: 50%;
  margin: auto;
  padding: 1rem 0.5rem;
  font-weight: bold;
  border: 2px solid #27acd9;
  background: #27acd9;
  color: #fff;
  transition: 0.5s;
}
a.btn_02:hover {
  color: #27acd9;
  background: #fff;
}
.thanks-btn{
  text-align: center;
}
.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
    border-radius: 20px;
    margin: 0 auto;
}