@charset "UTF-8";
/*--Reset--*/
html,body,h1,h2,h3,p,ul,li{
margin:0;
padding:0;
line-height: 1.0;
font-family: "Hiragino Kaku Gothic ProN",Meiryo,sans-serif;
text-align: center;
}
img{
vertical-align: bottom;
border: none;
/*Fluid Image*/
/* max-width: 100%;
height: auto; */
}
ul{
list-style: none;
}
a{
text-decoration: none;
color: inherit;
}
/*  display: flex；を flexwrap にする？ */

.fvBox{
 display: flex;
}
header{
 width:200px;
 /* height: 100vh; */
  /* text-align: center; */
 position: relative;
}

/* h1 {
 padding-top:calc(50vh - 90px) 
} */

h1 img{
  width: 180px;
  height: auto;
  position: absolute;
  inset:0; 
  margin: auto;
}
/*
【inset:0; 
  margin: auto;】
top:0;
left:0;
bottom:0;
right:0;
*/


/* .coteiner */
.container{
  width: calc(100% - 200px);
  display: flex;
  flex-wrap: wrap;
}

/* 各 box高さ */
.ph {
  height:50vh;
}
/* 上段幅 */
.topL,.topR{
  width: calc(100% / 2);
}
/* 下段幅 */
.btmL,.btmM,.btmR{
  width: calc(100% / 3);
}


.ph.topL{
  background: url(../img/ph_topL.png)no-repeat top/cover;
  /* width: calc(100%/2);
  height: 50vh; */
}
.ph.topR{
  background: url(../img/ph_topR.png)no-repeat top/cover;
  /* width: calc(100%/2);
  height: 50vh; */
  }

.ph.btmL{
  background: url(../img/ph_btmL.png)no-repeat top/cover;
  /* width: calc(100%/3);
  height: 50vh; */
}
.ph.btmM{
  background: url(../img/ph_btmM.png)no-repeat top/cover;
  /* width: calc(100%/3);
  height: 50vh; */
}

.ph.btmR{
  background: url(../img/ph_btmR.png)no-repeat top/cover;
  /* width: calc(100%/3);
  height: 50vh; */
}

/* 縦横比を保ちリサイズする：cover */
/* 小さい方に合わせてリサイズする（余白が表示される）：contain */
  /* 画像軽くするサイト：https://compresspng.com/ */



/*----- fvBox section内テキスト----- */
.caption h2 {
  text-align: center;
  font-size: 200%;
  margin-bottom: 20px;
  }
  .caption p {
  line-height: 1.4;
  width: 80%;
  margin: 0 auto;
  }

  .caption {
  display: block;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  /* 高さ50vh */
  height: 25vh;
  padding-top: 25vh;
  opacity: 0;
  transition: 300ms;
  }

  .caption:hover {
  opacity: 1;
  } 

/* 参考サイト：https://blog.raizzenet.com/mouse-hover-caption-effects-in-css/ */

/*----- content----- */
.contents-box{
  width:1020px;
  margin: 0 auto 100px;

}

/*----- 概要テキスト----- */
.contents-box h2{
  margin-top: 100px;
  padding: 10px;
  color: #fff;
  font-weight: bold;
  border: 1px solid #B31E23;
  background-color: black;
  box-shadow: 3px 3px #B31E23;
  margin-bottom: 50px;
}

.contents-box p{
  line-height: 1.7;
  font-size: 20px;
  text-emphasis: center;
  margin-bottom: 50px;
}

.contents-box p span{
  display: block;
}

/*----- main content----- */
.content{
  display: flex;
  justify-content:space-between ;

}

.content section{
  width: calc(100%/3);
  padding:50px 0;
}
.content section +  section {
  margin-left: 3%;
}

.content section a{
 display: block;
 padding: 20px;
transition: 300ms;
}

.content section a p:first-of-type {
  line-height: 1.5;
  text-align: left;
  height: 2em;
}


.content section i{
  font-size: 60px;
  color:#fff;
  /* border-radius: 50%; */
  padding: 65px;
  background-color: rgb(14, 12, 11);
  /* border-radius: 50%; */
  border: 3px solid #B31E23;
  margin-bottom: 30px;
}

.content section a i:hover{
  color:rgb(14, 12, 11);
  transition: 300ms;
  border: 3px solid rgb(14, 12, 11);
  background-color:#B31E23 ;
  }  

.content section h3{
  font-size: 26px;
  color:#B31E23;
  padding: 30px;
}

.content section p{
  color: black;
  line-height: 1.4;
}
/*----- footer----- */
footer{
  background-color: black;
}

.conainer p{
  color: #B31E23;
  font-weight:bold;
  text-align: center;
  padding: 50px;
}

  @media screen and (max-width:767px){

  }/* max-width:767px */
  