@charset "UTF-8";

.text {
  line-height: 1.6em;
  text-align: center;
}

@media (max-width:768px) {
  .text {
    font-size: 1.8rem; /*スマホも文字サイズ*/
  }
}

h3 {
  font-size: 1.5em;
  text-align: center;
  margin-block-start: 0em;
  margin-block-end: 1em;
  color: #8c0c0c;
  line-height: 1.4;
}

/*-----------------*/
.block-lp_header {
  padding: 0;
}

.block-lp_header .block01 {
  max-width: 892px;
  margin: 0 auto;
}

/*-----------------*/
.block-lp_cont {
  padding: 5em 1em;
  /*background: #f5f5f5;*/
}

@media screen and (max-width: 768px) {
  .block-lp_cont {
    padding: 3em 1em;
  }
}

.block-lp_cont .block01 {
  max-width: 892px;
  margin: 0 auto;
}

.block-lp_cont .block01 .block {
  display: flex;
  flex-wrap: wrap;
  /*flex-direction: row;*/
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2em;
}

/*-----------------*/
/*画像とテキストを左右互い違い、スマホではテキスト→画像*/
.pict {
  width: 30%;
  margin-left: 3%;
}

.pict img {
  width: 100%;
  height: auto;
}

.block:nth-child(even) {
  flex-direction: row-reverse;
}

.block:nth-child(even) .text {
  text-align: left;
}

.block:nth-child(even) .pict {
  margin-left: 0;
  margin-right: 3%;
}

@media (max-width:768px) {
  .block {
    flex-direction: column;
  }

  .block:nth-child(even) {
    flex-direction: column;
  }

  .block:nth-child(even) .text {
    text-align: center;
  }

  .image {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .block:nth-child(even) .image {
    margin-left: 0;
    margin-right: 0%;
  }

  .image img {
    width: 100%;
    height: auto;
  }
}

.block-lp_cont .block01 .block .image {
  width: calc(50% - 55px);
}

@media screen and (max-width: 768px) {
  .block-lp_cont .block01 .block .image {
    width: 100%;
    text-align: center;
  }
}

.block-lp_cont .block01 .block .text {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .block-lp_cont .block01 .block .text {
    width: 100%;
    text-align: left;
    margin-bottom: 1em;
  }
}

.block-lp_cont .block01 .block .text p {
  margin: 0;
}

/*-----------------*/
/* PC3列SP2列 */
*, *:before, *:after {
  box-sizing: border-box;
}

.col_3 {
  width: 100%;
  display: flex;
  display: -ms-flexbox;
  /* IE10 */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  /* IE10 */
}

.col_3>div {
  width: 33.33333%;
  padding: 10px;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 1em;
}

.col_3>div img {
  margin-bottom: 10px;
}

.col_3>div:last-child {
  margin-bottom: 3em;
}


/*PC3列SP2列：　768px未満のとき2つ並び*/
@media screen and (max-width: 768px) {
  .col_3>div {
    width: 50%;
    line-height: 1.3;
    margin-bottom: 0;
  }
}

/*PC3列SP2列：480x未満のとき１つ並び*/
/*@media screen and (max-width: 480px) {
	.col_3 > div{
		width: 100%;
    line-height: 1.6;
	}
}*/
/* PC4列SP3列 */
*, *:before, *:after {
  box-sizing: border-box;
}

.col_4 {
  width: 100%;
  display: flex;
  display: -ms-flexbox;
  /* IE10 */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  /* IE10 */
}

.col_4>div {
  width: 25%;
  padding: 10px;
  text-align: center;
  line-height: 1.6;
}

.col_4>div img {
  margin-bottom: 10px;
}

/*PC4列SP3列：　768px未満のとき2つ並び*/
@media screen and (max-width: 768px) {
  .col_4>div {
    width: 33.333%;
    line-height: 1.3;
  }
}

/*PC3列SP2列：480x未満のとき１つ並び*/
/*@media screen and (max-width: 480px) {
	.col_3 > div{
		width: 100%;
    line-height: 1.6;
	}
}*/

/* PC3列SP1列 */
*, *:before, *:after {
  box-sizing: border-box;
}

.col_3-1 {
  width: 100%;
  display: flex;
  display: -ms-flexbox;
  /* IE10 */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  /* IE10 */
}

.col_3-1>div {
  width: 33.33333%;
  padding: 10px;
  text-align: center;
  line-height: 1.6;
}

.col_3-1>div img {
  margin-bottom: 10px;
}

/*PC3列SP1列：　768px未満のとき1つ並び*/
@media screen and (max-width: 768px) {
  .col_3-1>div {
    width: 100%;
    line-height: 1.3;
  }
  .col_3-1 div.text b {
    font-size: 1.35em; /*SPの時だけ文字大きめ*/
  }
}

/*-----------------*/
/*角丸ボタン*/
.btn {
  /* font-family: 'Noto Sans JP', sans-serif; */
  background: #666666;
  font-size: 1.2em;
  padding: 16px 20px;
  text-decoration: none;
  border-radius: 30px;
  transition-property: opacity;
  -webkit-transition-property: opacity;
  transition-duration: .5s;
  -webkit-transition-duration: .4s;
}

.btn:hover {
  opacity: .7;
}

/*-------もっと読むボタンで開閉----------*/
.readmore{
    position: relative;
    box-sizing: border-box;
    /*以下お好み*/
    /* ボーダーを付ける場合
    padding: 10px;
    border: 1px solid #CCC; */
}

.readmore-content{
    position: relative;
    overflow: hidden;
    /*以下お好み*/
    /*高さの初期値*/
    height: 550px;
}
.readmore-content::before {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    content: "";
    /*以下お好み グラデーションの色と高さ 高さはreadmoreのheight以下にすること*/
    height: 80px;
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.8) 50%, #fff 100%);
    background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.8) 50%, #fff 100%);
}

/* 続きを読むボタン */
.readmore-label{
    display: table;
    bottom: 5px;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    margin: 0 auto;
    z-index: 2;
    padding: 0 10px;
    background-color: #E60046;
    border-radius: 10px;
    color: #FFF;
}
.readmore-label:before{
    content: 'もっと見る';
}

.readmore-check{
    display: none;
}
/*チェック時にボタンを非表示*/
.readmore-check:checked ~ .readmore-label{
    position: static;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    /* 「続きを読む」を押した後、元に戻す必要がない場合は、上のオプションを消してこの1行だけにする */
    /* display: none; */
}
.readmore-check:checked ~ .readmore-label:before{
    content: '閉じる';
}
/*チェック時に高さを自動に戻す*/
.readmore-check:checked ~ .readmore-content{
    height: auto;
}
/*チェック時グラデーション等を削除*/
.readmore-check:checked ~ .readmore-content::before {
    display: none;
}

/*-----------------*/

/*　FAQの開閉　*/

.block-lp_faq {
  padding: 125px 20px;
  background: #f5f5f5;
}

@media screen and (max-width: 768px) {
  .block-lp_faq {
    padding: 75px 20px;
  }
}

.block-lp_faq .block01 {
  max-width: 892px;
  margin: 0 auto;
}

.block-lp_faq .block01 dl {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.7em;
}

.block-lp_faq .block01 dl:not(:first-child) {
  margin-top: 20px;
}

.block-lp_faq .block01 dl dt {
  margin: 0;
  padding: 0;
  position: relative;
  cursor: pointer;
}

.block-lp_faq .block01 dl dt.active {
  background: #6ab69d;
  color: #fff;
}

.block-lp_faq .block01 dl dt.active:before {
  color: #fff;
}

.block-lp_faq .block01 dl dt:before {
  content: "Q";
  font-size: 24px;
  line-height: 24px;
  display: block;
  width: 40px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 10px;
  color: #6ab69d;
  font-weight: 500;
}

.block-lp_faq .block01 dl dt span {
  display: block;
  padding: 10px 50px 10px 40px;
  position: relative;
}

.block-lp_faq .block01 dl dt span:before {
  content: "";
  width: 2px;
  height: 20px;
  display: block;
  background: #6ab69d;
  position: absolute;
  top: calc(50% - 10px);
  right: 20px;
}

.block-lp_faq .block01 dl dt span:after {
  content: "";
  width: 2px;
  height: 20px;
  display: block;
  background: #6ab69d;
  position: absolute;
  top: calc(50% - 10px);
  right: 20px;
  transform: rotate(90deg);
}

.block-lp_faq .block01 dl dd {
  margin: 0;
  padding: 20px 20px 20px 50px;
  display: none;
}

@media screen and (max-width: 768px) {
  .block-lp_faq .block01 dl dd {
    padding-left: 40px;
  }
}

/*PCの時、電話をかけない*/
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*-----------------*/

/*SPの時、電話番号に色*/
@media (max-width: 768px) {
  a[href^="tel:"] {
    color: blue;
    text-decoration: underline dotted blue;
  }
}
