@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;
}
/*-----------------*/

/*PCよこ並びSP縦並び*/
.contents {
     width: 100%;
     margin: auto;
 }
 .contents img {
     width: 100%;
 }
 .text-center {
     text-align: center;
 }
 .flexbox {
     display: flex;
 }
 .box1 {
     width: 45%;
     margin: auto;
 }
 .box2 {
     width: 55%;
     margin: auto .5rem;
 }
 @media screen and (max-width: 768px) {
     .flexbox {
         display: block;
     }
     .flexbox .box1 {
         width: 100%;
         margin: 0 auto;
     }
     .flexbox .box2 {
         width: 100%;
         margin: 0 auto;
     }
 }
/*-----------------*/

/*画像とテキストを左右互い違い、スマホではテキスト→画像*/
.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% - 56px);
}

@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;
}

/*-----------------*/
/* PC2列SP2列 PCSP区別なし*/
*, *:before, *:after {
  box-sizing: border-box;
}

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

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

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

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

/* 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列SP1列：　768px未満のとき1つ並び*/
@media screen and (max-width: 768px) {
  .col_4>div {
    width: 100%;
    line-height: 1.3;
  }
}

/*PC4列SP2列：480x未満のとき１つ並び*/
/*@media screen and (max-width: 480px) {
	.col_4 > 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;
  }
}

/*CSSだけで実装するカルーセル*/

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,800,700,600);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css);
*, *:before, *:after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

/*body {
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #2c3e50;
}*/

.slider {
  height: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.slider-btn {
  width: 12px;
  height: 12px;
  margin: 32px 12px;
  z-index: 10;
  outline: 6px solid white;
  outline-offset: -6px;
  box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.slider-btn:checked {
  -webkit-animation: check 0.5s linear forwards;
          animation: check 0.5s linear forwards;
}
.slider-btn:checked:nth-of-type(1) ~ .slider-inner {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.slider-btn:checked:nth-of-type(2) ~ .slider-inner {
  -webkit-transform: translateX(-25%);
          transform: translateX(-25%);
}
.slider-btn:checked:nth-of-type(3) ~ .slider-inner {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.slider-btn:checked:nth-of-type(4) ~ .slider-inner {
  -webkit-transform: translateX(-75%);
          transform: translateX(-75%);
}
.slider-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 400%;
  height: 100%;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}
.slider-contents {
  height: 100%;
  padding: 16px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.slider-icon {
  font-size: 68px;
  color: #E87E04;
  text-shadow: 3px 3px 3px black;
}
.slider-caption {
  font-weight: 700;
  margin: 32px 0 16px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
}
.slider-txt {
  color: #999;
  margin-bottom: 48px;
  max-width: 300px;
}
ul {
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0;
}

@-webkit-keyframes check {
  50% {
    outline-color: #E87E04;
    box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
  }
  100% {
    outline-color: #E87E04;
    box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  }
}

@keyframes check {
  50% {
    outline-color: #E87E04;
    box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
  }
  100% {
    outline-color: #E87E04;
    box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  }
}

/*その他の作品のタイトル囲み*/
.col_3 p.itemname {
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 10px;
  margin: 0 auto;
  padding: 0.2em;
  width: 90%;
  border: 1px solid #ccc;
  text-align:center;
}

/*お客様の声セット*/

.block-lp_voice02 {
  padding: 5em 1em;
  background: #f9f0e4;
}

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

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

.block-lp_voice02 .block01 .ttl + p {
  text-align: center;
  font-size: 18px;
  line-height: 1.7em;
}

.block-lp_voice02 .block01 ul {
  list-style: none;
  padding: 0;
  margin: 60px 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .block-lp_voice02 .block01 ul {
    margin-top: 40px;
  }
}

.block-lp_voice02 .block01 ul li {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.block-lp_voice02 .block01 ul li:not(:first-child) {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .block-lp_voice02 .block01 ul li:not(:first-child) {
    margin-top: 40px;
  }
}

.block-lp_voice02 .block01 ul li:before {
  display: block;
  content: "";
  width: 110px;
  height: 175px;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  background-image: url(../img/lp_starterkit/block-lp_voice02-img01.png);
}

.block-lp_voice02 .block01 ul li.illust02:before {
  background-image: url(../img/lp_starterkit/block-lp_voice02-img02.png);
}

.block-lp_voice02 .block01 ul li.illust03:before {
  background-image: url(../img/lp_starterkit/block-lp_voice02-img03.png);
}

.block-lp_voice02 .block01 ul li.illust04:before {
  background-image: url(../img/lp_starterkit/block-lp_voice02-img04.png);
}

.block-lp_voice02 .block01 ul li div {
  max-width: 538px;
  border-radius: 34px;
  padding: 15px 36px;
  background: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.7em;
  position: relative;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .block-lp_voice02 .block01 ul li div {
    max-width: calc(100% - 130px);
    padding: 10px 20px;
    border-radius: 15px;
  }
}

.block-lp_voice02 .block01 ul li div:before {
  width: 0;
  height: 0;
  content: '';
  display: block;
  border-right: 10px solid transparent;
  border-bottom: 30px solid #fff;
  border-left: 10px solid transparent;
  position: absolute;
  left: -20px;
  top: calc(50% - 15px);
  transform: rotate(-90deg);
}

.block-lp_voice02 .block01 ul li div p:last-child {
  text-align: right;
}

.block-lp_voice02 .block01 ul li:nth-of-type(even) {
  flex-direction: row-reverse;
}

.block-lp_voice02 .block01 ul li:nth-of-type(even) div {
  margin-left: 0;
  margin-right: 20px;
}

.block-lp_voice02 .block01 ul li:nth-of-type(even) div:before {
  left: auto;
  right: -20px;
  transform: rotate(90deg);
}

@media screen and (max-width: 768px) {
  .block-lp_voice02 .block01 ul li.vertical:before {
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .block-lp_voice02 .block01 ul li.vertical div {
    max-width: 100%;
    margin: 20px 0 0;
  }
  .block-lp_voice02 .block01 ul li.vertical div:before {
    left: calc(50% - 15px);
    top: -20px;
    transform: rotate(0);
    border-right: 15px solid transparent;
    border-bottom: 20px solid #fff;
    border-left: 15px solid transparent;
  }
}
