@charset "utf-8";
/* CSS Document */
/*-----フォントの設定-----*/
/*-----フォントの設定ここまで-----*/

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

body{
	font-family: "Noto Sans JP", sans-serif;
    }

html {
    font-size: 62.5%;
    
}
p {
    font-size: 1.6rem;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
img{
    max-width: 100%;
}
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
/*.pc { display: block !important; }*/
.sp { 
    display: none !important;
}
.br-sp{
    display: none;
}
/*-----共通設定ここまで-----*/



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

/* ボタン全体 */
#page_top{
  width: 100px;
  height: 100px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: #DF6162;
  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;
  /*width: 30px;*/
  height: 60px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}


/*header*/
/******* ヘッダーのスタイル ********/
header {
    position: fixed; /*** ← fixedで固定 ***/
    width: 100%; 
    height: 80px; 
    background: #ffffff; 
    padding: 20px 30px 20px 0; 
    box-sizing: border-box;
    top: 0; 
    left: 0; 
    display: flex; 
    align-items: center; 
	z-index: 1;
    justify-content:flex-end;
}
header .nav .menu li a{
   color: #DF6162;
   font-weight:bold;
   text-decoration: none;
   font-size: 2.4rem;
}
/*はじめは非表示*/
.content {
  opacity: 0;
}
.content.inview {
  animation-name: fade-in;
  animation-duration: .5s;
  animation-timing-function: ease-in-out;
  animation-delay: .4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes fade-in {
  0% {
    transform: translateY(-40px);/*上から*/
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

/*header項目追加*/
ul.menu {
    display: flex;
}

.header-tel:before{
	content: '';/*何も入れない*/
  display: inline-block;
  width: 30px;/*画像の幅*/
  height: 30px;/*画像の高さ*/
  background-image: url("../img/ico-tel.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: top;
  margin-right: 5px;
}
.header-form:before{
	content: '';/*何も入れない*/
  display: inline-block;
  width: 30px;/*画像の幅*/
  height: 30px;/*画像の高さ*/
  background-image: url("../img/ico-mail.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: top;
  margin-right: 5px;
}
.header-tel,.header-form, .header-top{
	height: 80px;
	display: flex;
    align-items: center;
    justify-content: center;
}
.header-tel,.header-form{
	border-right: 1px solid #ffffff
}
li.header-form {
    padding: 0 20px;
    background-color: #DF6162;
}
a.contactbtn {
    color: #FFF !important;
}

li.header-tel {
    padding-right: 20px;
}
li.header-top {
    padding-left: 20px;
}



/**/
/**/
/**/
/*first-view<!--FV-->*/
/**/
/**/
/**/
#first-view{
  position: relative;
}
#first-view .pc{
    max-width: 100%;
}
#first-view .btn-first-view {
  position: absolute;
  width: 35%;
  height: auto;
  bottom: 14%;
  left: 17%;
}
.btn-first-view img{
    max-width: 100%;
}

/**/
/**/
/**/
/*<!--FVここまで-->*/
/**/
/**/
/**/


/**/
/**/
/**/
/*apologyここから*/
/**/
/**/
/**/
#apology {
    background-color: #dafef7;
    padding: 5rem 0;
}
.apology-wrapper {
    max-width: 1000px;
    margin: 3em auto;
    text-align: center;
    padding: 6.0rem 1.5rem;
    box-shadow: 5px 5px 5px #c1c1c175;
    background-color: #FFF;
}
.apology-wrapper img {
    max-width: 60%;
}
#apology h2 {
    font-size: 2.2rem;
    font-family:serif;
    font-weight: 600;
    color: #004643;
    margin-bottom: 1.5rem;
}
#apology p {
    line-height: 2.5;
    font-family: serif;
    margin-top: 2.0rem;
}

/**/
/**/
/**/
/*apologyここまで*/
/**/
/**/
/**/





/**/
/**/
/**/
/*targeting<!--TG-->*/
/**/
/**/
/**/
#targeting01{
    background: url("../img/targeting-bg01.jpg")no-repeat center center / cover;
    padding: 7.0rem 1.5rem 0;
    text-align: center;
}
#targeting01 img{
    max-width: 100%;
    padding-top: 4.7rem;
}
#targeting01 h1{
    max-width: 790px;
    font-size: 5.5rem;
    margin: 0 auto;
    font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
    font-weight:bolder;
    border-bottom: 4px solid #004643;
    color: #004643;
}
#targeting02{
    background: url("../img/targeting-bg02.png")no-repeat center center / cover;
}
.targeting-wrapper{
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 4.3rem 1.5rem 9.5rem 1.5rem;
}
.targeting-area h4{
    font-size: 3.4rem;
    font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
    font-weight: bold;
    margin-top: 9.0rem;
    color:#004643;
}
.targeting-box{
    display: flex;
    max-width: 965px;
    
    margin: 0 auto;
    justify-content: space-between;
    background-color: #ffffff;
    border: 4px solid #004643;
    margin-bottom: 2.8rem;
    padding: 3.0rem 3.6rem 3.0rem 8.3rem;
}
.targeting-box h3{
    font-size: 3.4rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight:bolder;
    color: #004643;
    align-self: center;
    text-align: left;
    line-height: 1.5;
    letter-spacing: 0.08em;
    
}
.targeting-box h3 span{
    background: linear-gradient(transparent 50%, rgba(66, 181, 0, 0.4) 0%);
    display: inline-block;
}
.targeting-box p{
    max-width: 385px;
    text-align: left;
    color: #2D2A2A;
    align-self: center;
    line-height: 2;
}
/**/
/**/
/**/
/*targeting<!--TGここまで-->*/
/**/
/**/
/**/




/**/
/**/
/**/
/*merit<!--MR-->*/
/**/
/**/
/**/
#merit{
    background: url("../img/merit-bg.png")no-repeat center center / cover;
}
.merit-wrapper{
    padding: 17.8rem 1.5rem;
}
.merit-area{
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 4.5rem 8.9rem;
}
.merit-tittle {
    text-align: center;
    margin-bottom: 4.4rem;
}
.merit-box{
    background-color: #E6E6E6;
    margin-bottom: 3.0rem;
}
.merit-box:nth-of-type(4){
    margin-bottom: 4.9rem;
}
.merit-box h3{
    font-size: 3.5rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight:bolder;
    background-color: #ABD1C6;
    padding: 2.1rem 0;
    text-align: center;
    color: #004643;
}.merit-box p{
    padding: 1.0rem 9.3rem;
    color: #004643;
    line-height: 1.7;
}
.merit-box-img {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
/**/
/**/
/**/
/*merit<!--MRここまで-->*/
/**/
/**/
/**/




/**/
/**/
/**/
/*step<!--ST-->*/
/**/
/**/
/**/
#step{
    background-color: #ABD1C6;
}
.step-wrapper{
    max-width: 1000px;
    margin: 0 auto;
    padding: 8.7rem 1.5rem;
    text-align: center;
}
.step-tittle{
    margin-bottom: 3.0rem;
}

.step-tittle h1{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 4.6rem;
    font-weight: bold;
    text-align: center;
    
}
.step-tittle span{
    color:#E16162;
}
.step-box{
    max-width: 961px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 3.4px solid #004643;
}
.step-item-1{
    display: flex;
    background-color: #004643;
    padding: 1.4rem 0 1.4rem 2.7rem;
    
}
.step-item-1 p{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 3.8rem;
    font-weight: bold;
    background-color: #ffffff;
    padding: 1.0rem 1.3rem;
    color:#004643;
   
}
.step-item-1 h2{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 3.6rem;
    font-weight: bold;
    color:#ffffff;
    margin-left: 6.6rem;
    align-self: center;
    letter-spacing: 0.02em;
}

.step-item-2 p{
    font-family: "Noto Sans JP", sans-serif;
     padding: 1.8rem 0 1.8rem 3.7rem;
    font-weight: bold;
    line-height: 1.4;
    text-align: left;
    color:#004643;
}
.step-img{
    margin: 2.4rem 0 ;
}
.step-btn{
    margin-top: 11.5rem;
}
/**/
/**/
/**/
/*step<!--STここまで-->*/
/**/
/**/
/**/




/**/
/**/
/**/
/*voice<!--VO-->*/
/**/
/**/
/**/

.voice-wrapper{
    padding: 8.5rem 1.5rem 17.0rem 1.5rem;
    text-align: center;
}
.voice-tittle {
    margin-bottom: 1.5rem;
}
.voice-area{
    max-width: 970px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 8.2rem 2.9rem 4.8rem 2.9rem;
    background: url("../img/voice-bg.png")no-repeat center center / cover;
    position: relative;
}

.voice-box:nth-of-type(-n+2){
    margin-bottom: 4.9rem;
}

/**/
/**/
/**/
/*voice<!--VOここまで-->*/
/**/
/**/
/**/


/**/
/**/
/**/
/*Q&A<!--QA-->*/
/**/
/**/
/**/
#qa{
    background-color: #BADFD8;
    text-align: center;
}
.qa-wrapper{
    max-width: 970px;
    margin: 0 auto;
    padding: 8.4rem 1.5rem 10.4rem 1.5rem;
}
.qa-area{
    margin: 8.6rem 0 9.2rem 0;
}
.qa-box p{
    font-size: 2.4rem;
    text-align: left;
    line-height: 1.8;
    color:#2d2a2a;
    
}

.qa-item{
    display: flex;
    border-bottom: 3px solid #004643;
    border-image-slice: 1;
    margin-bottom: 3.3rem;
    margin-top: 7.3rem;
    background-color: rgba(255,255,255,0.4);
}

.qa-q{
    background: #004643;
    width: 153px;
    height: 65px;
    clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
    color: #ffffff!important;
    font-size: 3.6rem!important;
    padding: 0 0 0 2.5rem;
    font-family: 'メイリオ', Meiryo,'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
    
}
.qa-item h4{
    font-size: 2.4rem;
    font-weight: bold;
    align-self: center;
    color: #2d2a2a;
    letter-spacing: -0.05em;
    margin-left: 1.1rem;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
.qa-btn{
    padding-top: 9.0rem;
    position: relative;
}
.qa-btn a{
    position: absolute;
    width: 35%;
    height: auto;
    bottom: 15%;
    right: 8%;
}
/**/
/**/
/**/
/*Q&A<!--QAここまで-->*/
/**/
/**/
/**/


/**/
/**/
/**/
/*image<!--IM-->*/
/**/
/**/
/**/
#image{
    position: relative;
}
.image-btn{
    position: absolute;
    width: 35%;
    height: auto;
    bottom: 5%;
    left: 40%;
}
/**/
/**/
/**/
/*image<!--IMまで-->*/
/**/
/**/
/**/


/**/
/**/
/**/
/*エントリーフォームFM*/
/**/
/**/
/**/
body{
    margin: 0;
}
#form{
    padding-bottom: 6.5rem;
    text-align: center;
    background-color: #ffffff;
    
}
.entry-tittle {
    padding: 9rem 1.5rem 0 1.5rem;
    text-align: center;
}
.entry-tittle img{
    max-width: 100%;
}
form{
    max-width: 800px;
    background-color: #a9cfc4;
    margin: 0 auto;
    text-align: center;
}
.entry-text{
    margin: 4rem 0 6.0rem 0;
    font-size: 2rem;
    text-align: center;
    color: #004643;
    font-weight: bold;
    line-height: 1.7;
    padding: 0 2rem;
    font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
}
.entry-text span{
    background-color: rgba(255,244,44,0.7);
}
.form-wrapper{
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 0;
}
.form-table th{
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
    color: #004643;
    text-align: left;
}

/* Table */
    .form-table th,
    .form-table td {
        padding: 1.5rem 1.25rem 1.5rem 0;
        display: table-cell;
    }
    .form-table th {
        width: 30%;
        vertical-align: middle;
        font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
    }
    .form-table td {
        width: 70%;
        text-align: left;
    }
    span.radio-text {
        font-size: 1.8rem;
        margin-right: 2rem;
    }
.input-text{
    border: 2px solid #004643;
    background: #fff;
    padding: 1.5rem;
    width: 100%;
    
    }
textarea{
    border: 2px solid #004643;
    background: #fff;
    padding: 1.5rem;
    width: 100%;
    height: 80px;
    } 

.personal-tittle{
    color: #004643;
    font-size: 1.8rem;
    text-align: left;
    font-weight: bold;
    
}
h2.personal-tittle {
    margin: 2rem 0 1.0rem 0;
    font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
}
.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: #004643;
	color: #ffffff;
	position: relative;
	transition: 0.5s;
    font-size: 3.6rem;
    border-radius: 100vh;
    margin-bottom: 3rem;
    font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
}

.btn-primary:hover {
	background: #ffffff;
	color: #004643;
}


.select-01{
    border: 2px solid #004643;
    background: #fff;
    padding: 1.5rem;
    
}
/* 任意と必須 */
span.text-any {
    font-size: 1.4rem;
    color: rgba(0,70,67,0.5);
}
span.text-Required{
    font-size: 1.4rem;
    color: #004643;
    font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
}

/* scroll */
.scroll-box{
    overflow:scroll;
    height: 150px;
    width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
    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: #004643;
}
/**/
/*ラジオボタン*/
/**/
.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 #004643;
    border-radius: 50%;
    box-sizing: border-box;
  }
  
  .radio-text:after {
    content: "";
    position: absolute;
    background: #004643;
    border-radius: 50%;
    top: 2px;
    bottom: 2px;
    left: 2px;
    right: 2px;
    opacity: 0;
  }
  
   .radio-btn input:checked + .radio-text:after {
    opacity: 1;
  }
 /**/
 /*チェックボックス*/
 /**/
 label.check-btn {
    display: block;
}
label.personal-text.check-btn {
    display: inline;
}
 .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 #004643;
    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: #004643;
      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ここまで*/
/**/
/**/
/**/



/**/
/**/
/**/
/*success*/
/**/
/**/
/**/
#success{
    text-align: center;
}
.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: #004643;
    font-weight: bold;
    
}
.success-text{
    margin: 4.0rem 0 6.0rem 0;
    font-size: 2.0rem;
    text-align: center;
    color: #004643;
    font-weight: bold;
    line-height: 1.7;
}
.success-text span{
    background-color: rgba(255,244,44,0.7);
}
.success-warpper a{
    font-size: 2.0rem;
    color: #004643;

}


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: #004643;
	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: #006d56;
	color: #ffffff;
}

/**/
/**/
/**/
/*successここまで*/
/**/
/**/
/**/



/**/
/**/
/**/
/*information<!--IN-->*/
/**/
/**/
/**/
#information{
    background: url("../img/info-bg.png")no-repeat center center / cover;
    text-align: center;
}
.information-wrapper{
    padding: 8.2rem 1.5rem 9.0rem 1.5rem;
    max-width: 970px;
    margin: 0 auto;
}
.information-table{
    max-width: 970px;
    border-collapse: collapse;
    margin: 11.5rem auto 7.0rem auto;
}
.information-table td{
    font-size: 2.3rem;
    font-family: "Noto Sans JP", sans-serif;
}
.information-table{
    table-layout: fixed;
}
.information-table th, .information-table td {
    border: solid 2px #004643;
}
.table-tittle{
    background-color: #004643;
    padding: 4.0rem 0 4.0rem 3.0rem;
    width: 290px;
    color:#ffffff;
    text-align: left;
}
.table-tittle:nth-of-type(-n+5){
    border-bottom: 2px solid #ffffff;
}
.table-text{
    color: #2d2a2a;
    width: 680px;
    text-align: left;
    padding-left: 3.3rem;
    line-height: 4.5;
    background-color: #ffffff;
}
td.table-text {
    line-height: 1.8;
    vertical-align: middle;
}
.information-btn{
    padding-top: 7rem;
    position: relative;
}
.information-btn a{
    position: absolute;
    width: 35%;
    height: auto;
    bottom: 15%;
    right: 8%;
}
.information-box-map p{
    font-family:"Noto Sans JP", sans-serif;
    font-size: 4.6rem;
    font-weight: bold;
    margin-bottom: 1.0rem;
    color: #2d2a2a;
}
iframe{
    box-shadow: 10px 10px 25px 0px rgba(0, 0, 0, .5);
    width: 100%;
    aspect-ratio: 16/7;

}

/**/
/**/
/**/
/*information<!--INここまで-->*/
/**/
/**/
/**/



/**/
/**/
/**/
/*closing<!--CL-->*/
/**/
/**/
/**/
#closing{
    background: url("../img/closing-bg.png")no-repeat center top / cover;
    text-align: center;
    display: flex;
    flex-direction: column;
}
#closing h2{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 5.0rem;
    font-weight: bold;
    margin: 19.0rem 0 4.5rem 0;
    line-height: 1.7;
    color: #004643;
}
.closing-wrapper{
    padding: 0 1.5rem;
    margin: 0 auto;
    position: relative;
}
.closing-btn{
    position: absolute;
    bottom:12%;
    right: 10%;
    width: 35%;
}
.closing-wrapper img{
    margin-bottom: -5.0rem;
    max-width: 100%;
}

.closing-area-1{
    background: #004643;
    height: 380px;
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.closing-area-2{
    background: #004643;
}
.closing-area-2 p {
    font-family: "Noto Sans JP", sans-serif;
    color: white;
    margin-bottom: 2.6rem;
    margin-top: 2.6rem;
}

.logo{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 5.2rem;
    font-weight: bold;
    color:white;
    margin-top: 10rem;
}
/**/
/**/
/**/
/*closing<!--CLここまで-->*/
/**/
/**/
/**/


 
/* 600px〜959px：タブレット
------------------------------ */
@media screen and (min-width:640px) and (max-width:959px) {
    #targeting01 img {
        max-width: 70%;
}
    .targeting-box h3 span {
        display: inline;
}
    .merit-box-img img{
        max-width: 30%;
}
    .gallery-item-2 {
        margin: 0 1rem 5rem 1rem;
}
    .gallery-box {
        justify-content: center;
}
    .table-text {
        padding-left: 1rem;
}
}

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