@charset "utf-8";
/* CSS Document */
/*-----フォントの設定-----*/
/* Regular*/
 @font-face {
  font-family: 'GenJyuuGothic'; /* フォント名 */
  /* フォーマットごとにパスを指定 */
  src: url('../fonts/GenJyuuGothic-Regular.ttf') format('truetype');
}
/* bold */
@font-face {
  font-family: 'GenJyuuGothic'; /* フォント名 */
  /* フォーマットごとにパスを指定 */
  src: url('../fonts/GenJyuuGothic-Bold.ttf') format('truetype');
  font-weight: bold;
}
/* medium*/
 @font-face {
  font-family: 'GenJyuuGothic'; /* フォント名 */
  /* フォーマットごとにパスを指定 */
  src: url('../fonts/GenJyuuGothic-Medium.ttf') format('truetype');
  font-weight: medium;
}
/* HelveticaWorld-Bold*/
 @font-face {
  font-family: 'HelveticaWorld-Bold'; /* フォント名 */
  /* フォーマットごとにパスを指定 */
  src: url('../fonts/HelveticaWorld-Bold.ttf') format('truetype');
}
/* 03スマートフォントUI*/
 @font-face {
  font-family: '03スマートフォントUI'; /* フォント名 */
  /* フォーマットごとにパスを指定 */
  src: url('../fonts/03スマートフォントUI.otf') format('truetype');
}
/*-----フォントの設定ここまで-----*/

/*-----共通設定-----*/

html{
	font-size: 62.5%;
    font-family: 'GenJyuuGothic';
}
p{
    font-size: 1.6rem;
}
img{
    max-width: 100%;
    
}

/*.btn {
    display: flex;
    flex-direction: column;
    align-items: center;
}*/
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
/*.pc { display: block !important; }*/
.sp { 
    display: none !important;
}
.br-sp{
    display: none;
}
.br-tb{
    display: none;
}
/*-----共通設定ここまで-----*/



/**/
/**/
/**/
/**/
/**/
/*-----基本的にはここから下のコードを編集します。-----*/
/*-----振り分け番号のアルファベット(TV-)を検索をして下さい(ctrl+F)-----*/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
/*スクロールボタン設定*/
html{
  scroll-behavior: smooth;
}

/* ボタン全体 */
#page_top{
  width: 100px;
  height: 100px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: #f50;
  border-radius: 50%;
  z-index: 1;
  }

  /* Font Awesome */
  #page_top::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f106'; /*アイコン*/
  font-size: 50px;
  color: rgb(255, 255, 255); /*アイコンの色*/
  position: absolute;
  height: 60px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  
  }





/**/
/**/
/**/
/*top-view<!--TV-->*/
/**/
/**/
/**/
#top-view img{
    width: 100%;
}
#top-view{
    position: relative;
    text-align: center;
    width: 100%;
    height: auto;
}
.fvcta {
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: 30%;
    max-width: 40%;
  }
.fvcta>img{
    max-width: 100%;
}
.btnwrap{
    position: relative;
}
.normal{
    position: absolute;
    top: 0;
    left: 0;
}
.hover{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}
.hover:hover{
    opacity: 1;
}
/**/
/**/
/**/
/*<!--TVここまで-->*/
/**/
/**/
/**/





/**/
/**/
/**/
/*targeting<!--TG-->*/
/**/
/**/
/**/
#targeting{
    background: url("../img/targeting-bg.png")no-repeat center center / cover;
    text-align: center;
}
.targeting-tittle{
    background: linear-gradient(#004985,#005a9f);
    padding: 4.0rem 3.0rem;
    position: relative;
}

.targeting-tittle h2 {
    font-size: 5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}
.targeting-tittle::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 35px 0 35px;
    border-color: #005a9f transparent transparent transparent;
    left: 50%;
    transform: translateX(-60%) translateY(100%);
}
/*吹き出し部分*/
.targeting-tittle-box {
  position: relative;
  display: inline-block;
  padding: 0 45px;
}
.targeting-tittle-box:before, .targeting-tittle-box:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 100px;
  height: 2px;
  border: 0;
  border-top: 2px dashed white;
}
.targeting-tittle-box:before {
  left:-20%;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  padding-left: 2.0rem;
}
.targeting-tittle-box:after {
  right: -20%;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
/*吹き出し部分ここまで*/

.targeting-wrapper{
    padding: 4.0rem 1.5rem 12.0rem 1.5rem;
}
.targeting-wrapper p{
    margin:4.5rem 0 3.0rem 0;
    font-size: 1.8rem;
    line-height: 1.8;
    font-weight: bold;
}
.blueline{
    background-color: aqua;
}
.btnwrap-targ {
    position: relative;
    max-width: 34%;
    margin-left:auto;
    margin-right: auto;
  }
/**/
/**/
/**/
/*targeting<!--TGここまで-->*/
/**/
/**/
/**/


/**/
/**/
/**/
/*merit<!--MR-->*/
/**/
/**/
/**/
#merit{
    background: url("../img/merit-bg.png")no-repeat center center / cover;
    text-align: center;
}
.merit-tittle{
    background: linear-gradient(#004985,#005a9f);
    padding: 6.0rem 0 7.0rem 0;
    position: relative;
    margin-top: -1em;
}
.merit-tittle p {
    font-size: 5rem;
    color: #ffffff;
    font-weight: 600;
}
.merit-tittle::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 35px 0 35px;
    border-color: #005a9f transparent transparent transparent;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
}
/*吹き出し部分*/
.merit-tittle-box {
  position: relative;
  display: inline-block;
  padding: 0 45px;
}
.merit-tittle-box:before, .merit-tittle-box:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 100px;
  height: 2px;
  border: 0;
  border-top: 2px dashed white;
}
.merit-tittle-box:before {
  left:-20%;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  padding-left: 2.0rem;
}
.merit-tittle-box:after {
  right: -20%;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
/*吹き出し部分ここまで*/


.merit-wrapper{
    padding: 12.0rem 1.5rem 16.8rem 1.5rem;
}
.merit-wrapper h2{
    font-size: 4.5rem;
    text-shadow: 4px 4px 0 #ffffff;
    font-weight: bold;
    margin-bottom: 2em;
}
.merit-wrapper p{
    font-size: 2.2rem;
    margin: 5.3rem 0 7.6rem 0;
    line-height: 1.7;
}
.merit-area img:nth-of-type(-n+3){
    margin-bottom: 4.5rem;
}
.merit-btn.btn {
    margin-top: 5.0rem;
}
.btnwrap-merit{
    position: relative;
    max-width: 34%;
    margin-left:auto;
    margin-right: auto;
}
/**/
/**/
/**/
/*merit<!--MRここまで-->*/
/**/
/**/
/**/



/**/
/**/
/**/
/*gallery<!--GL+注釈-->*/
/**/
/**/
/**/
#gallery{
    background: url("../img/gallery-bg.jpg")no-repeat center center / cover;
    text-align: center;
    padding-bottom: 10em;
}
.gallery-tittle{
    background: linear-gradient(#004985,#005a9f);
    padding: 6.0rem 0 7.0rem 0;
    position: relative;
}
#gallery .gallery-tittle {
    margin-top: 3em;
}
.gallery-tittle h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.0rem;
    font-weight: 600;
}
.gallery-tittle::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 35px 0 35px;
    border-color: #005a9f transparent transparent transparent;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
}
/*吹き出し部分*/
.gallery-tittle-box {
  position: relative;
  display: inline-block;
  padding: 0 45px;
}
.gallery-tittle-box:before, .gallery-tittle-box:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 100px;
  height: 2px;
  border: 0;
  border-top: 2px dashed white;
}
.gallery-tittle-box:before {
  left:-5%;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  padding-left: 2.0rem;
}
.gallery-tittle-box:after {
  right: -5%;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
/*吹き出し部分ここまで*/
.gardenintro{
    position: relative;
}
.introbg {
    max-width: 80%;
    margin-top: 10em;
    margin-left: auto;
    margin-right: auto;
}
.gardenintro p {
    position: absolute;
    top: calc(50% - 1.5em);
    left: 0;
    right: 0;
    font-size: 2.4rem;
    line-height: 1.7;
}
.gallery-wrapper{
    padding: 7.8rem 1.5rem 4.1rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.gallery-area{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.gallery-box {
    box-sizing: border-box;
    margin: 0;
    padding: 4.8rem 1rem;
    width: 45%;
}
.gallery-box p{
    font-weight: bold;
    line-height: 1.3;
    font-size: 1.8rem;
}
.gallery-box img{
    margin-bottom: 2.2rem;
}
.gallery-wrapper h2{
    font-size: 3.0rem;
    font-weight: bold;
    letter-spacing: -0.04em;
    background-color: #ffff00;
    mix-blend-mode: multiply;/*乗算*/
    padding: 1.9rem 0;
    margin-top: 2.0rem;
}
.gallery-wrapper span{
    color:#e60012;
}
.gallery-btn{
    margin: 2.5rem 0 5.0rem 0;
    position: relative;
}
.btnwrap-gal {
    position: relative;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
.gallery-icon{
    position: absolute;
    top:0;
    right:6%;
}
.gallery-box .cemetname {
    color: #005095;
    font-size: 3.5rem;
}

/**/
/**/
/**/
/*gallery<!--GL注釈ここまで-->*/
/**/
/**/
/**/


/**/
/**/
/**/
/*エントリーフォームFM*/
/**/
/**/
/**/
body{
    margin: 0;
}
#form{
    padding-bottom: 6.5rem;
    text-align: center;
    background-color: #e5f6fa;
    
}
.entry-tittle {
    padding: 9rem 1.5rem 0rem 1.5rem;
    text-align: center;
}
.entry-tittle img{
    max-width: 100%;
}
form{
    max-width: 800px;
    background-color: #ffffff;
    margin: 0 auto;
    text-align: center;
}
.entry-text{
    margin: 4rem 0 6.0rem 0;
    font-size: 2rem;
    text-align: center;
    color: #000000;
    font-weight: bold;
    line-height: 1.7;
    padding: 0 2rem;
}
.entry-text span{
    background-color: #faf038;
}
.form-wrapper{
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 0;
}
th{
    font-size: 2.0rem;
    margin-bottom: 1.8rem;
    color: #562e00;
    text-align: left;
}



/* Table */
    th,
    td {
        padding: 1.5rem 1.25rem 1.5rem 0;
        display: table-cell;
    }
    th {
        width: 30%;
        vertical-align: middle;
    }
    td {
        width: 70%;
        text-align: left;
    }
    span.radio-text {
        font-size: 1.8rem;
        margin-right: 2rem;
    }
.input-text{
    border: 2px solid #562e00;
    background: #fff;
    padding: 1.5rem;
    width: 100%;
    
    }
textarea{
    border: 2px solid #562e00;
    background: #fff;
    padding: 1.5rem;
    width: 100%;
    height: 80px;
    font-size: 15px;
    font-weight: normal;
    } 

.personal-tittle{
    color: #562e00;
    font-size: 1.8rem;
    text-align: left;
    font-weight: bold;
    
}
h2.personal-tittle {
    margin: 2rem 0 1.0rem 0;
}
.personal-text span{
    font-size: 1.8rem;
}
.personal-link {
    margin-bottom: 20px;
}
.personal-link a{
    font-size: 1.6rem;
}
input.btn.btn-primary{
    margin: 0 0 6.5rem 0;
    text-align: center;
}

.btn-primary {
    align-items: center;
	text-decoration: none;
	width: 300px;
	padding: 1.0rem 0rem 1.0rem 0rem;
	font-weight: bold;
	background: #f15a24;
	color: #ffffff;
	position: relative;
	transition: 0.5s;
    font-size: 3.6rem;
    border-radius: 100vh;
    margin-bottom: 3rem;
}

.btn-primary:hover {
	background: #f0e1c5;
	color: #f15a24;
}


.select-01{
    border: 2px solid #562e00;
    background: #fff;
    padding: 1.5rem;
    
}
/* 任意と必須 */
span.text-any {
    font-size: 1.4rem;
    color: rgba(241,90,36,0.5);
}
span.text-Required{
    font-size: 1.4rem;
    color: #f15a24;

}

/* scroll */
.scroll-box{
    overflow:scroll;
    height: 150px;
    width: 100%;
    margin: 0 auto;
    /*background-color: #f3fcff;*/
    margin-bottom: 2.5rem;
    padding: 1rem;
    line-height: 1.5;
}
.scroll-box  p{
    text-align: left;
    font-size: 1.4rem;
}
/* スクロールの幅の設定 */
.scroll-box::-webkit-scrollbar {
 width: 10px;
 height: 10px;
}
 
/* スクロールの背景の設定 */
.scroll-box::-webkit-scrollbar-track {
 border-radius: 5px;
 background: rgba(110, 108, 108, 0.2);
}
 
/* ドラックできるスクロール部の設定 */
.scroll-box::-webkit-scrollbar-thumb {
 border-radius: 5px;
 background: #562e00;
}
/**/
/*ラジオボタン*/
/**/
.radio-btn {
    position: relative;
    margin: 5px 0;
    padding-left: 28px;
    cursor: pointer;
    user-select: none;
    font-size: 1.6rem;
    margin-left: 15px;
  }
 
  /* ラジオボタンは非表示（透明化 requiredを使用したいため） */
 .radio-btn input[type=radio] {
   position: absolute;
   opacity: 0;
   z-index: -1; 
 }
 
  .radio-text {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    border: solid 2px #562e00;
    border-radius: 50%;
    box-sizing: border-box;
  }
  
  .radio-text:after {
    content: "";
    position: absolute;
    background: #562e00;
    border-radius: 50%;
    top: 2px;
    bottom: 2px;
    left: 2px;
    right: 2px;
    opacity: 0;
  }
  
   .radio-btn input:checked + .radio-text:after {
    opacity: 1;
  }
 /**/
 /*チェックボックス*/
 /**/
 .check-btn {
    position: relative;
    margin: 5px 0;
    padding-left: 28px;
    cursor: pointer;
    user-select: none;
    font-size: 1.6rem;
    margin-left: 15px;
  }
 
 
  .check-text {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    border: solid 2px #562e00;
    box-sizing: border-box;
  }
  
  .check-text:after {
      content: "";
      opacity: 0;
      display: block;
      width: 16px;
      height: 10px;
      border-left-width: 2px;
      border-bottom-width: 2px;
      border-color: #562e00;
      transform: rotate(-45deg);
  }
  
   .check-btn input:checked + .check-text:after {
    opacity: 1;
  }
  /* チェックボックスは非表示（透明化 requiredを使用したいため） */
 .check-btn input[type=checkbox] {
   position: absolute;
   opacity: 0;
   z-index: -1; 
 }
/**/
/**/
/**/
/*エントリーフォームFMここまで*/
/**/
/**/
/**/



/**/
/**/
/**/
/*closing<!--CL-->*/
/**/
/**/
/**/
#closing{
    text-align: center;
}
.closing-tittle{
    background: linear-gradient(#004985,#005a9f);
    padding: 4.0rem 0;
    position: relative;
}

.closing-tittle::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 35px 0 35px;
    border-color: #005a9f transparent transparent transparent;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
}
.closing-tittle p{
    color: #ffffff;
    font-size: 5.0rem;
}
.closing-tittle-sb{
    margin-top: 2.6rem;
    border-top: 4px solid #f39800;
    border-bottom: 4px solid #f39800;
    display: inline-block;
    padding: 1.7rem 0;
}
.closing-tittle-sb p{
    font-size: 3.0rem;
    color:#ffffff;
    letter-spacing: 0.1em;
}
.closing-tittle-sb span{
    color:#ffe600;
}
.closing-wrapper {
    background-color: #FFF;
    padding-bottom: 5em;
    position: relative;
    display: flex;
    justify-content: center;
  }
  .model {
    position: absolute;
    bottom: 0;
    right: 13%;
    width: 20%;
  }
.closing-area{
    padding: 5.3rem 1.5rem 0 1.5rem;    
}
.closing-box01, .closing-box02{
    display: flex;
    justify-content: center;
    gap: 10px;
}
.tel-box{
    display: flex;
}
.tel-box img{
    align-self: center;
}
.tel-box .tel{
    font-size: 6.9rem;
    color:#e60012;
    font-family: 'HelveticaWorld-Bold';
    margin-bottom: 1.8rem;
    /* margin-right: 5.3rem; */
}
.closing-box01 .time{
    font-size: 1.8rem;
    text-align: left;
}
#closing iframe {
    float: left;
    margin-top: 4em;
}

.closing-box02-in {
    display: flex;
}
.closing-box02-in img{
    align-self: center;
}
.closing-item02{
    margin-top:5.5em ;
}
.closing-timetext, .closing-daytext, .closing-addresstext{
    position: relative;
    margin-left: 2.0rem;
}
.closing-timetext:before{
    position: absolute;
    content: "";
    width: 0.5rem;
    height: 1.7rem;
    left: -15px;
    top: 4px;
    background-color: #004e91;
}
.closing-daytext:before{
    position: absolute;
    content: "";
    width: 0.5rem;
    height: 1.7rem;
    left: -15px;
    top: 4px;
    background-color: #004e91;
}
.closing-addresstext:before{
    position: absolute;
    content: "";
    width: 0.5rem;
    height: 1.7rem;
    left: -15px;
    top: 4px;
    background-color: #004e91;
}
.closingtext:nth-of-type(-n+2){
    margin-bottom: 4.5rem;
}
.closingtext p{
    text-align: left;
    font-size: 2.0rem;
    margin-bottom: 0.8rem;
}
.closing-logo{
    position: relative;
    background: linear-gradient(#004985,#005a9f);
    padding: 4.0rem 0;
}

.closing-logo p{
    font-size: 1.4rem;
    color:#ffffff;
    font-family: 'sans-serif';
}
.closing-logo img{
    width: 15%;
    margin-bottom: 2em;
}


/**/
/**/
/**/
/*closing<!--CLここまで-->*/
/**/
/**/
/**/



/**/
/**/
/**/
/*image<!--IM-->*/
/**/
/**/
/**/
#image{
    position: relative; 
}
#image img{
    width: 100%;
}
a.btn-image:hover {
    transform: scale(105%);
}
#image .btn-image {
    position: absolute;
    width: 55%;
    height: auto;
    bottom: 10%;
    right: 0;
    left: 0;
    margin: auto;
    transition: all 0.3s ease;
}
.btn-image img{
    max-width: 100%;
}
/**/
/**/
/**/
/*image<!--IMまで-->*/
/**/
/**/
/**/




/**/
/**/
/**/
/*success*/
/**/
/**/
/**/
#success{
    text-align: center;
    background-color: #e5f6fa;
    height: 100vh;
}
.success-tittle{
    padding: 9.0rem 1.5rem 0 1.5rem;
}
.success-warpper{
    max-width: 770px;
    margin: 0 auto;
    padding: 6.2rem 0;
}

.success-warpper h1{
    font-size: 4.0rem;
    color: #562e00;
    font-weight: bold;
    
}
.success-text{
    margin: 4.0rem 0 6.0rem 0;
    font-size: 2.0rem;
    text-align: center;
    color: #562e00;
    font-weight: bold;
    line-height: 1.7;
}
.success-text span{
    background-color: #faf038;
}
.success-warpper a{
    font-size: 2.0rem;
    color: #562e00;

}


a.success-btn {
	display: flex;
    justify-content: space-evenly;
    align-items: center;
	text-align: center;
	text-decoration: none;
	width: 220px;
	margin: auto;
	padding: 1rem 4rem 1rem 3rem;
	font-weight: bold;
	background: #f15a24;
	color: #ffffff;
	border-radius: 100vh;
	position: relative;
	transition: 0.5s;
}
a.success-btn::before {
	content: '';
	width: 7px;
	height: 7px;
	border-top: 2px solid #ffffff;
	border-right: 2px solid #ffffff;
	transform: rotate(230deg);
}
a.success-btn:hover {
	background: #f17724;
	color: #ffffff;
}
/**/
/**/
/**/
/*successここまで*/
/**/
/**/
/**/


/* 600px〜959px：タブレット
------------------------------ */
@media screen and (min-width:640px) and (max-width:959px) {
    .br-tb{
    display: block;
}
    .br-pc{
        display: none;
    }
/*targeting*/
    .targeting-tittle-box::before {
    left: -2%;
}
    .targeting-tittle-box::after {
    right: -2%;
}
    .targeting-wrapper p{
        text-align: left;
    }
    .targeting-wrapper {
    padding: 4rem 1.5rem 6.0rem 1.5rem;
}
/*gallery*/
    .gallery-tittle-box::before {
    left: -2%;
}
    .gallery-tittle-box::after {
    right: -2%;
}
    .gallery-wrapper {
    padding: 5rem 1.5rem 4.1rem 1.5rem;
}
    .gallery-box {
    padding: 4.8rem 1rem;
    
}
    .gallery-icon {
    right: 0;
}
/*step*/
    .step-wrapper {
    padding: 6rem 1.5rem 6rem 1.5rem;
}
/*merit*/
    .merit-tittle-box::before {
    left: -2%;
}
    .merit-tittle-box::after {
    right: -2%;
}
    .merit-wrapper {
    padding: 10rem 1.5rem 8rem 1.5rem;
}
    .merit-wrapper p {
    margin: 3rem 0 4rem 0;
}
/*information*/
    .information-tittle h1::before {
    left: -2%;
}
    .information-tittle h1::after {
    right: -2%;
}
    .information-wrapper {
    padding: 6rem 1.5rem 8rem 1.5rem;
}
    .information-top {
    left: 25%;
}

/*closing*/
    .closing-box01, .closing-box02 {
    display: block;
}
    .tel-box {
    justify-content: center;
}
    .closing-box01 .time {
    text-align: center;
}
    .closing-box02 {
    margin-left: 0px;
}
    .tel-box .tel {
    margin-bottom: 0rem;
    margin-right: 5.3rem;
}
    p.time {
    margin-bottom: 2rem;
}
    iframe {
    margin-bottom: 3.5rem;
}
/*list*/
    .list-tittle-box::before {
    left: -2%;
}
    .list-tittle-box::after {
    right: -2%;
}
    .list-area{
    display: flex;
    margin-bottom: 5.0rem;
} 
    .list-wrapper {
    padding: 7.8rem 5rem;
}
    img.pc.list-area-img {
    max-width: 50%;
    align-self: center;
}
    .list-box-1 p:before {
    height: 23.0rem;
}
    .list-box-2 p:before {
    height: 26.0rem;
}
    .list-box-3 p:before {
    height: 29.0rem;
}
/*voice*/
    .voice-tittle-box::before {
    left: -2%;
}
    .voice-tittle-box::after {
    right: -2%;
}
    .voice-sbtittle {
    margin: 8.7rem 2.0rem 7.9rem 2.0rem;
}
    img.voice-sbtittle {
    max-width: 90%;
}
/*qa*/
    .qa-box {
    max-width: 380px;
}
    .qa-area {
    margin-bottom: 5rem;
}
    .qa-wrapper {
    padding: 5rem 1.5rem 5rem 1.5rem;
}
    .qa-text {
    margin: 3rem 0 4rem 0;
}
/*pr*/
    .pr-wrapper {
    padding: 5rem 1.5rem 5rem 1.5rem;
}
    .pr-area {
    justify-content: space-around;
}
}








.block{
    background-color:gray;
    height: 100vh;
    position: relative;
}
.block h1{
    font-size: 6.0rem;
    text-align: center;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 80%;
    height: 3.2rem;
}