@charset "utf-8";
/* CSS Document */

@keyframes zoom {
   0% {
      transform: scale(1.2);
   }
   100% {
      transform: scale(1);
   }
}



@media screen and (min-width:768px), print{
/*----------------------------------------------------------------------
PC Style
----------------------------------------------------------------------*/

header {
  background-color: rgba(5,77,11,0.95);
}

/**********************************************************/
/* メインビュー */
/**********************************************************/

.main_img {
  height: 400px;
  position: relative;
  overflow: hidden;
}
.main_img::before {
  content: '';
  display: block;
  width: 100%;
  height: 400px;
  -webkit-animation: zoom 5s 1;
  animation: zoom 5s 1;
  animation-fill-mode: forwards;
}
.main_img hgroup {
  text-shadow: #111 2px 2px 5px, #111 -2px -2px 5px;
  width: 1200px;
  color: #FFF;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.main_img h1 {
  font-size: 6.4rem;
  font-weight: 500;
  line-height: 1.5;
  padding-left: 50px;
}
.main_img h1 span {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  display: block;
}


/**********************************************************/
/* メインエリア */
/**********************************************************/

main {
}

section .inner {
  width: 80%;
  min-width: 1040px;
  padding: 100px 0 140px;
  margin: 0 auto;
  background: #FFF;
}
section .inner .txt_box,
section .inner .title_box {
  width: 900px;
  margin: 0 auto;
}
section .inner .title_box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}
section .title_box h2 {
  color: var(--sky);
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 400;
}
section .title_box h2 span {
  font-size: 4rem;
  font-weight: 200;
  display: block;
}
section .title_box p {
  width: 450px;
}
section .inner .flex {
  width: 900px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  position: relative;
}
section .inner .flex .title_box,
section .inner .flex .txt_box {
  width: 450px;
  flex-direction: column;
}
section .inner .flex .txt_box h3 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 15px;
}
section .inner .flex .txt_box p.description {
  font-weight: 300;
}
section .inner .flex .txt_box p.description:not(:last-of-type) {
  margin-bottom: 35px;
}


/* リード文エリア */

.lead_area {
  width: 1040px;
  margin: 0 auto;
  letter-spacing: 0.05em;
}
.lead_area h2 {
  font-size: 3.6rem;
  font-weight: 600;
  text-align: center;
  border-bottom: solid 1px #ccc;
  padding-bottom: 0px;
  margin-bottom: 30px;
}
.lead_area p {
  padding: 0 50px;
}


}




@media screen and (max-width:767px){
/*----------------------------------------------------------------------
SP Style
----------------------------------------------------------------------*/

/**********************************************************/
/* メインビュー */
/**********************************************************/

.main_img {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
}
.main_img::before {
  content: '';
  display: block;
  width: 100%;
  height: 400px;
  -webkit-animation: zoom 5s 1;
  animation: zoom 5s 1;
  animation-fill-mode: forwards;
}
hgroup {
  width: 84%;
  color: #FFF;
  text-shadow: #111 2px 2px 5px, #111 -2px -2px 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}


/**********************************************************/
/* メインエリア */
/**********************************************************/

main {
}

.content_menu .box_right {
  bottom: 0;
  top: unset;
}
.content_menu.separator {
  height: auto;
}

section .inner {
  width: 90%;
  padding: 60px 0;
  margin: 0 auto;
  background: #FFF;
}
section .inner .txt_box {
  width: 84%;
  margin: 0 auto;
  padding: 0;
}
section .inner .title_box {
  padding: 0 30px;
  margin-bottom: 60px;
}
section .title_box h2 {
  color: var(--sky);
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 30px;
}
section .title_box h2 span {
  font-size: 3.4rem;
  font-weight: 200;
  display: block;
}
section .title_box p {
}
section .inner .flex .txt_box h3 {
  line-height: 1.75;
  margin-bottom: 10px;
}
section .inner .flex .txt_box p.description {
  font-weight: 300;
  margin-bottom: 35px;
}


/* リード文エリア */

.lead_area {
  width: 100%;
  margin: 0 auto;
  letter-spacing: 0.05em;
}
.lead_area h2 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  border-bottom: solid 1px #ccc;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.lead_area p {
  padding: 0 5%;
}


}