@charset "UTF-8";
/*--------------------------------------
font
---------------------------------------*/
body, .tooltip, .popover,
button, input, optgroup, select, textarea,
h1, h2, h3, h4, h5,
.h1, .h2, .h3, .h4, .h5 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 2;
}

/* Noto sansのIE表示用のCSS　*/
@media screen and (min-width: 0\0 ) and (min-resolution: 72dpi) {
  body, .tooltip, .popover,
  button, input, optgroup, select, textarea,
  h1, h2, h3, h4, h5,
  .h1, .h2, .h3, .h4, .h5 {
    font-family: Meiryo, sans-serif;
    font-weight: normal;
  }
}
/*--------------------------------------
base
---------------------------------------*/
ol, ul {
  padding-left: 0;
  list-style: none;
}

img {
  vertical-align: baseline;
  font-size: 0;
  line-height: 0;
}

a {
  color: #202D3B;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
a:focus, a:hover {
  color: black;
  text-decoration: none;
}

.cf:after {
  content: "";
  display: block;
  clear: both;
}

/*bootstrap gridのgutter調整*/
.row-no-gutter {
  margin: 0;
}

.row-no-gutter > * {
  padding: 0;
}

.row-small-gutter {
  margin-left: -6px;
  margin-right: -6px;
}

.row-small-gutter > * {
  padding-left: 6px;
  padding-right: 6px;
}

.row-large-gutter {
  margin-left: -30px;
  margin-right: -30px;
}

.row-large-gutter > * {
  padding-left: 30px;
  padding-right: 30px;
}

/*--------------------------------------
reset
---------------------------------------*/
/* アニメーション ----------*/
.wow {
  visibility: hidden;
}

/*--------------------------------------
body
---------------------------------------*/
html {
  min-height: 100vh;
}
@media all and (max-width: 767px) {
  html {
    min-height: auto;
  }
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #202D3B;
  background-color: #FFFFFF;
  box-sizing: border-box;
}
@media all and (max-width: 767px) {
  body {
    min-height: auto;
  }
}

@media all and (min-width: 769px) {
  a:hover {
    color: #CCCCCC;
  }
}
a:active {
  color: #CCCCCC;
}

#mainContents {
  background-color: #FFFFFF;
}

/*--------------------------------------
header
---------------------------------------*/
#logo {
  width: 248px;
  position: fixed;
  top: 0;
  left: 0;
  line-height: 0;
  z-index: 9999;
}
@media all and (max-width: 1500px) {
  #logo {
    width: 140px;
  }
}
@media all and (max-width: 991px) {
  #logo {
    width: 120px;
  }
}
@media all and (max-width: 767px) {
  #logo {
    width: 100px;
  }
}
#logo a {
  display: block;
}
#logo img {
  width: 100%;
}

#header_inner {
  width: 100%;
  height: 85px;
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  z-index: 99;
}
@media all and (max-width: 1500px) {
  #header_inner {
    height: 70px;
  }
}
@media all and (max-width: 767px) {
  #header_inner {
    height: 50px;
  }
}
#header_inner .entry {
  position: absolute;
  right: 85px;
  height: 100%;
}
@media all and (max-width: 1500px) {
  #header_inner .entry {
    right: 70px;
  }
}
@media all and (max-width: 767px) {
  #header_inner .entry {
    right: 50px;
  }
}
#header_inner .entry a {
  height: 100%;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  background-color: #101055;
  padding: 0 40px;
  display: flex;
  align-items: center;
}
@media all and (max-width: 1500px) {
  #header_inner .entry a {
    font-size: 16px;
  }
}
@media all and (max-width: 767px) {
  #header_inner .entry a {
    font-size: 14px;
    padding: 0 16px;
  }
}

#g-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background: #999;
  transition: all 0.6s;
  background-image: url(../img/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
#g-nav::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(16, 16, 85, 0.7);
  z-index: 9;
  position: absolute;
}
#g-nav.panelactive {
  right: 0;
}
#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#g-nav ul {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
}
@media all and (max-width: 767px) {
  #g-nav ul {
    width: 90%;
  }
}
#g-nav ul li {
  list-style: none;
  text-align: center;
}
#g-nav ul li a {
  color: #FFF;
  text-decoration: none;
  padding: 10px 0;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 36px;
  font-weight: bold;
  transition: ease .3s;
}
@media all and (max-width: 1500px) {
  #g-nav ul li a {
    font-size: 24px;
  }
}
@media all and (max-width: 767px) {
  #g-nav ul li a {
    padding: 6px 0;
    font-size: 20px;
  }
}
#g-nav ul li a:hover {
  color: #93E8F4;
}
#g-nav ul > div {
  margin-top: 100px;
}
@media all and (max-width: 1500px) {
  #g-nav ul > div {
    margin-top: 60px;
  }
}
#g-nav ul > div .txt {
  color: #FFFFFF;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
@media all and (max-width: 1500px) {
  #g-nav ul > div .txt {
    font-size: 18px;
  }
}
#g-nav ul > div .txt span {
  color: #FFF614;
}
@media all and (max-width: 767px) {
  #g-nav ul > div .txt span {
    display: block;
  }
}
#g-nav ul > div .btn_entry {
  margin-top: 20px;
  text-align: center;
}
#g-nav ul > div .btn_entry a {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: bold;
  width: 100%;
  max-width: 676px;
  display: inline-block;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #42CCDE;
}
@media all and (max-width: 1500px) {
  #g-nav ul > div .btn_entry a {
    font-size: 20px;
    max-width: 500px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
#g-nav ul > div .btn_entry a:hover {
  background-color: #23b7ca;
}
#g-nav ul > div .link {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
#g-nav ul > div .link > div:not(:last-of-type) {
  margin-right: 140px;
}
@media all and (max-width: 1500px) {
  #g-nav ul > div .link > div:not(:last-of-type) {
    margin-right: 100px;
  }
}
@media all and (max-width: 767px) {
  #g-nav ul > div .link > div:not(:last-of-type) {
    margin-right: 40px;
  }
}
#g-nav ul > div .link a {
  color: #FFFFFF;
  font-size: 18px;
  transition: ease .3s;
}
@media all and (max-width: 1500px) {
  #g-nav ul > div .link a {
    font-size: 14px;
  }
}
#g-nav ul > div .link a:hover {
  color: #93E8F4;
}

.openbtn {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 85px;
  height: 85px;
}
@media all and (max-width: 1500px) {
  .openbtn {
    width: 70px;
    height: 70px;
  }
}
@media all and (max-width: 767px) {
  .openbtn {
    width: 50px;
    height: 50px;
  }
}
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  border-radius: 2px;
  background-color: #101055;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 30px;
}
@media all and (max-width: 1500px) {
  .openbtn span:nth-of-type(1) {
    top: 22px;
  }
}
@media all and (max-width: 767px) {
  .openbtn span:nth-of-type(1) {
    top: 14px;
  }
}
.openbtn span:nth-of-type(2) {
  top: 41px;
}
@media all and (max-width: 1500px) {
  .openbtn span:nth-of-type(2) {
    top: 33px;
  }
}
@media all and (max-width: 767px) {
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
}
.openbtn span:nth-of-type(3) {
  top: 53px;
}
@media all and (max-width: 1500px) {
  .openbtn span:nth-of-type(3) {
    top: 45px;
  }
}
@media all and (max-width: 767px) {
  .openbtn span:nth-of-type(3) {
    top: 33px;
  }
}
.openbtn.active span {
  background-color: #FFFFFF;
}
.openbtn.active span:nth-of-type(1) {
  top: 47px;
  transform: translateX(-50%) rotate(-45deg);
  width: 30%;
}
@media all and (max-width: 1500px) {
  .openbtn.active span:nth-of-type(1) {
    top: 37px;
  }
}
@media all and (max-width: 767px) {
  .openbtn.active span:nth-of-type(1) {
    top: 27px;
  }
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 47px;
  transform: translateX(-50%) rotate(45deg);
  width: 30%;
}
@media all and (max-width: 1500px) {
  .openbtn.active span:nth-of-type(3) {
    top: 37px;
  }
}
@media all and (max-width: 767px) {
  .openbtn.active span:nth-of-type(3) {
    top: 27px;
  }
}

/*--------------------------------------
footer
---------------------------------------*/
footer {
  color: #FFFFFF;
  text-align: center;
  background-image: url(../img/bg.png);
  background-repeat: no-repeat;
  background-size: 120%;
  background-position: 40% 64%;
  padding-top: 60px;
  padding-bottom: 25px;
  position: relative;
}
@media all and (max-width: 767px) {
  footer {
    background-size: cover;
  }
}
footer::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(16, 16, 85, 0.7);
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}
footer .footer_inner {
  width: 90%;
  margin: auto;
  z-index: 5;
  position: relative;
}
footer .entry {
  margin-bottom: 100px;
}
@media all and (max-width: 767px) {
  footer .entry {
    margin-bottom: 50px;
  }
}
footer .entry .txt {
  font-size: 22px;
  font-weight: bold;
}
@media all and (max-width: 1500px) {
  footer .entry .txt {
    font-size: 18px;
  }
}
footer .entry .txt span {
  color: #FFF614;
}
@media all and (max-width: 767px) {
  footer .entry .txt span {
    display: block;
  }
}
footer .btn_entry {
  margin-top: 40px;
}
@media all and (max-width: 767px) {
  footer .btn_entry {
    margin-top: 30px;
  }
}
footer .btn_entry a {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: bold;
  width: 100%;
  max-width: 676px;
  display: inline-block;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #42CCDE;
}
@media all and (max-width: 1500px) {
  footer .btn_entry a {
    font-size: 20px;
    max-width: 500px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
footer .btn_entry a:hover {
  background-color: #23b7ca;
}
footer ul {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
footer ul li:not(:last-of-type) {
  margin-right: 140px;
}
@media all and (max-width: 1500px) {
  footer ul li:not(:last-of-type) {
    margin-right: 100px;
  }
}
@media all and (max-width: 767px) {
  footer ul li:not(:last-of-type) {
    margin-right: 40px;
  }
}
footer ul li a {
  color: #FFFFFF;
  font-size: 18px;
  transition: ease .3s;
}
@media all and (max-width: 1500px) {
  footer ul li a {
    font-size: 14px;
  }
}
footer ul li a:hover {
  color: #93E8F4;
}
footer .copy {
  font-size: 16px;
}

/*--------------------------------------
hero
---------------------------------------*/
#kv {
  line-height: 0;
}
#kv img {
  width: 100%;
}

/*--------------------------------------
section main
---------------------------------------*/
#main #main_txt {
  color: #FFFFFF;
  text-align: center;
  background-image: url(../img/bg.png);
  background-repeat: no-repeat;
  background-size: 120%;
  background-position: 40% 64%;
  padding-top: 60px;
  padding-bottom: 135px;
  position: relative;
  overflow: hidden;
}
@media all and (max-width: 767px) {
  #main #main_txt {
    background-size: cover;
  }
}
#main #main_txt::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(16, 16, 85, 0.7);
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}
#main #main_txt .bg_left::before {
  content: "";
  width: 1030px;
  height: 90px;
  display: block;
  background-color: rgba(1, 1, 29, 0.35);
  position: absolute;
  top: 374px;
  left: -240px;
  transform: rotateZ(62deg);
  z-index: 5;
}
@media all and (max-width: 767px) {
  #main #main_txt .bg_left::before {
    height: 40px;
    left: -430px;
    transform: rotateZ(80deg);
  }
}
@media all and (max-width: 500px) {
  #main #main_txt .bg_left::before {
    left: -470px;
    transform: rotateZ(83deg);
  }
}
#main #main_txt .bg_left::after {
  content: "";
  width: 1030px;
  height: 90px;
  display: block;
  background-color: rgba(1, 1, 29, 0.35);
  position: absolute;
  top: 374px;
  left: -460px;
  transform: rotateZ(-63deg);
  z-index: 5;
}
@media all and (max-width: 767px) {
  #main #main_txt .bg_left::after {
    height: 40px;
    left: -520px;
    transform: rotateZ(-76deg);
  }
}
#main #main_txt .bg_right::before {
  content: "";
  width: 1030px;
  height: 90px;
  display: block;
  background-color: rgba(1, 1, 29, 0.35);
  position: absolute;
  top: 374px;
  right: -320px;
  transform: rotateZ(-62deg);
  z-index: 5;
}
@media all and (max-width: 767px) {
  #main #main_txt .bg_right::before {
    height: 40px;
    right: -550px;
    transform: rotateZ(-76deg);
  }
}
#main #main_txt .bg_right::after {
  content: "";
  width: 1030px;
  height: 90px;
  display: block;
  background-color: rgba(1, 1, 29, 0.35);
  position: absolute;
  top: 374px;
  right: -160px;
  transform: rotateZ(-62deg);
  z-index: 5;
}
@media all and (max-width: 767px) {
  #main #main_txt .bg_right::after {
    height: 40px;
    right: -490px;
    transform: rotateZ(-76deg);
  }
}
#main #main_txt .bg_right > div::before {
  content: "";
  width: 1030px;
  height: 170px;
  display: block;
  background-color: rgba(1, 1, 29, 0.35);
  position: absolute;
  top: 290px;
  right: 20px;
  transform: rotateZ(62deg);
  z-index: 5;
}
@media all and (max-width: 1500px) {
  #main #main_txt .bg_right > div::before {
    right: -150px;
  }
}
@media all and (max-width: 767px) {
  #main #main_txt .bg_right > div::before {
    height: 70px;
    right: -400px;
    transform: rotateZ(80deg);
  }
}
@media all and (max-width: 500px) {
  #main #main_txt .bg_right > div::before {
    right: -430px;
    transform: rotateZ(83deg);
  }
}
#main #main_txt .txt_inner {
  z-index: 9;
  position: relative;
}
@media all and (max-width: 767px) {
  #main #main_txt .txt_inner {
    width: 90%;
    margin: auto;
  }
}
#main #main_txt .txt_inner h3 {
  color: #FFFFFF;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media all and (max-width: 1500px) {
  #main #main_txt .txt_inner h3 {
    font-size: 28px;
  }
}
@media all and (max-width: 767px) {
  #main #main_txt .txt_inner h3 {
    font-size: 20px;
  }
}
#main #main_txt .txt_inner h3 span {
  color: #FFF614;
}
#main #main_txt .txt_inner h3 br.sp {
  display: none;
}
@media all and (max-width: 767px) {
  #main #main_txt .txt_inner h3 br.sp {
    display: block;
  }
}
#main #main_txt .txt_inner .txt {
  color: #FFFFFF;
  font-size: 19px;
  font-weight: 500;
  line-height: 2.6;
}
@media all and (max-width: 1500px) {
  #main #main_txt .txt_inner .txt {
    font-size: 15px;
    line-height: 2.2;
  }
}
#main #main_txt .txt_inner .txt span {
  color: #FFF614;
  font-weight: 700;
}
#main #main_txt .txt_inner .txt br.sp {
  display: none;
}
@media all and (max-width: 767px) {
  #main #main_txt .txt_inner .txt br.sp {
    display: block;
  }
}
#main #main_photo {
  height: 1000px;
  background-color: #EAEEF2;
}
@media all and (max-width: 1500px) {
  #main #main_photo {
    height: 800px;
  }
}
@media all and (max-width: 767px) {
  #main #main_photo {
    height: 700px;
  }
}
@media all and (max-width: 580px) {
  #main #main_photo {
    height: 560px;
  }
}
@media all and (max-width: 500px) {
  #main #main_photo {
    height: 780px;
  }
}
#main #main_photo .bg {
  width: 100%;
  height: 1000px;
  position: absolute;
  overflow: hidden;
}
@media all and (max-width: 1500px) {
  #main #main_photo .bg {
    height: 800px;
  }
}
@media all and (max-width: 767px) {
  #main #main_photo .bg {
    height: 700px;
  }
}
@media all and (max-width: 580px) {
  #main #main_photo .bg {
    height: 560px;
  }
}
@media all and (max-width: 500px) {
  #main #main_photo .bg {
    height: 780px;
  }
}
#main #main_photo .bg .bg_left::before {
  content: "";
  width: 1280px;
  height: 90px;
  display: block;
  background-color: rgba(16, 16, 85, 0.06);
  position: absolute;
  top: 444px;
  left: 95px;
  transform: rotateZ(60deg);
  z-index: 5;
}
@media all and (max-width: 1500px) {
  #main #main_photo .bg .bg_left::before {
    left: 10px;
  }
}
@media all and (max-width: 767px) {
  #main #main_photo .bg .bg_left::before {
    height: 40px;
    left: -410px;
    transform: rotateZ(80deg);
  }
}
@media all and (max-width: 500px) {
  #main #main_photo .bg .bg_left::before {
    left: -503px;
    transform: rotateZ(83deg);
  }
}
#main #main_photo .bg .bg_right::before {
  content: "";
  width: 1280px;
  height: 90px;
  display: block;
  background-color: rgba(16, 16, 85, 0.06);
  position: absolute;
  top: 444px;
  right: 15px;
  transform: rotateZ(-60deg);
  z-index: 5;
}
@media all and (max-width: 1500px) {
  #main #main_photo .bg .bg_right::before {
    right: -70px;
  }
}
@media all and (max-width: 767px) {
  #main #main_photo .bg .bg_right::before {
    height: 40px;
    right: -470px;
    transform: rotateZ(-76deg);
  }
}
@media all and (max-width: 500px) {
  #main #main_photo .bg .bg_right::before {
    right: -485px;
  }
}
#main #main_photo .bg .bg_right::after {
  content: "";
  width: 1280px;
  height: 90px;
  display: block;
  background-color: rgba(16, 16, 85, 0.06);
  position: absolute;
  top: 444px;
  right: 175px;
  transform: rotateZ(-60deg);
  z-index: 5;
}
@media all and (max-width: 1500px) {
  #main #main_photo .bg .bg_right::after {
    right: 90px;
  }
}
@media all and (max-width: 767px) {
  #main #main_photo .bg .bg_right::after {
    height: 40px;
    right: -410px;
    transform: rotateZ(-76deg);
  }
}
@media all and (max-width: 500px) {
  #main #main_photo .bg .bg_right::after {
    right: -425px;
  }
}
#main #main_photo ul {
  width: 100%;
  max-width: 1080px;
  margin: auto;
  position: relative;
  z-index: 9;
}
#main #main_photo ul li {
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.16);
  line-height: 0;
}
#main #main_photo ul li:nth-of-type(1) {
  width: 520px;
  position: absolute;
  top: -70px;
  left: -150px;
}
@media all and (max-width: 1500px) {
  #main #main_photo ul li:nth-of-type(1) {
    width: 380px;
    left: 90px;
  }
}
@media all and (max-width: 991px) {
  #main #main_photo ul li:nth-of-type(1) {
    width: 320px;
    left: 120px;
  }
}
@media all and (max-width: 767px) {
  #main #main_photo ul li:nth-of-type(1) {
    left: 40px;
  }
}
@media all and (max-width: 580px) {
  #main #main_photo ul li:nth-of-type(1) {
    width: 250px;
    left: 30px;
  }
}
@media all and (max-width: 500px) {
  #main #main_photo ul li:nth-of-type(1) {
    width: 280px;
    margin-top: -60px;
    margin-left: 20px;
    position: initial;
  }
}
#main #main_photo ul li:nth-of-type(2) {
  width: 430px;
  position: absolute;
  top: 50px;
  right: 0;
}
@media all and (max-width: 1500px) {
  #main #main_photo ul li:nth-of-type(2) {
    width: 320px;
    right: 90px;
  }
}
@media all and (max-width: 991px) {
  #main #main_photo ul li:nth-of-type(2) {
    width: 260px;
    right: 90px;
  }
}
@media all and (max-width: 767px) {
  #main #main_photo ul li:nth-of-type(2) {
    right: 40px;
  }
}
@media all and (max-width: 580px) {
  #main #main_photo ul li:nth-of-type(2) {
    width: 220px;
    top: 20px;
    right: 30px;
  }
}
@media all and (max-width: 500px) {
  #main #main_photo ul li:nth-of-type(2) {
    width: 240px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: 20px;
    position: initial;
  }
}
#main #main_photo ul li:nth-of-type(3) {
  width: 430px;
  position: absolute;
  top: 410px;
  left: 140px;
}
@media all and (max-width: 1500px) {
  #main #main_photo ul li:nth-of-type(3) {
    width: 320px;
    top: 290px;
    left: 280px;
  }
}
@media all and (max-width: 991px) {
  #main #main_photo ul li:nth-of-type(3) {
    width: 260px;
    top: 240px;
    left: 260px;
  }
}
@media all and (max-width: 767px) {
  #main #main_photo ul li:nth-of-type(3) {
    left: 140px;
  }
}
@media all and (max-width: 580px) {
  #main #main_photo ul li:nth-of-type(3) {
    width: 220px;
    top: 190px;
    left: 70px;
  }
}
@media all and (max-width: 500px) {
  #main #main_photo ul li:nth-of-type(3) {
    width: 240px;
    margin-top: 20px;
    margin-left: 50px;
    position: initial;
  }
}
#main #main_photo ul li img {
  width: 100%;
}

/*--------------------------------------
section story
---------------------------------------*/
#story {
  margin-top: -100px;
  padding-bottom: 120px;
}
@media all and (max-width: 580px) {
  #story {
    padding-bottom: 80px;
  }
}
@media all and (max-width: 500px) {
  #story {
    margin-top: 0;
  }
}
#story .box {
  position: relative;
  overflow: hidden;
}
@media all and (max-width: 767px) {
  #story .box {
    overflow: visible;
  }
}
#story .box .txt_area {
  width: 490px;
  position: relative;
  overflow: hidden;
  box-sizing: initial;
}
@media all and (max-width: 1500px) {
  #story .box .txt_area {
    width: 440px;
  }
}
@media all and (max-width: 991px) {
  #story .box .txt_area {
    width: 400px;
  }
}
@media all and (max-width: 767px) {
  #story .box .txt_area {
    width: 100%;
    box-sizing: border-box;
  }
}
#story .box .txt_area .inner {
  z-index: 9;
  position: relative;
}
@media all and (max-width: 767px) {
  #story .box .txt_area .inner {
    width: 90%;
    margin: auto;
  }
}
#story .box .txt_area .title {
  color: #FFFFFF;
  background-color: #42CCDE;
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 30px;
  padding: 10px 17px;
  line-height: 1;
}
@media all and (max-width: 1500px) {
  #story .box .txt_area .title {
    font-size: 16px;
  }
}
#story .box .txt_area .title span {
  font-size: 28px;
  margin-left: 6px;
}
@media all and (max-width: 1500px) {
  #story .box .txt_area .title span {
    font-size: 24px;
  }
}
#story .box .txt_area h4 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
}
@media all and (max-width: 1500px) {
  #story .box .txt_area h4 {
    font-size: 24px;
  }
}
#story .box .txt_area .position {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}
@media all and (max-width: 1500px) {
  #story .box .txt_area .position {
    font-size: 15px;
  }
}
#story .box .txt_area .txt {
  font-size: 18px;
  font-weight: 500;
  margin-top: 24px;
  padding-top: 50px;
}
@media all and (max-width: 1500px) {
  #story .box .txt_area .txt {
    font-size: 15px;
  }
}
@media all and (max-width: 580px) {
  #story .box .txt_area .txt {
    padding-top: 30px;
  }
}
#story .box:first-of-type {
  margin-bottom: 80px;
}
@media all and (max-width: 767px) {
  #story .box:first-of-type {
    margin-bottom: 60px;
  }
}
#story .box:first-of-type h4 {
  color: #93E8F4;
}
#story .box:first-of-type .txt_area {
  color: #FFFFFF;
  background-color: #101055;
  margin-left: 0;
  margin-right: auto;
  padding: 0 350px 80px 420px;
}
@media all and (max-width: 1500px) {
  #story .box:first-of-type .txt_area {
    padding: 0 180px 80px 220px;
  }
}
@media all and (max-width: 991px) {
  #story .box:first-of-type .txt_area {
    padding: 0 100px 80px 140px;
  }
}
@media all and (max-width: 767px) {
  #story .box:first-of-type .txt_area {
    padding: 0 0 280px;
  }
}
#story .box:first-of-type .txt_area::before {
  content: "";
  width: 1030px;
  height: 90px;
  display: block;
  background-color: rgba(1, 1, 29, 0.35);
  position: absolute;
  top: 374px;
  left: -240px;
  transform: rotateZ(62deg);
  z-index: 5;
}
@media all and (max-width: 1500px) {
  #story .box:first-of-type .txt_area::before {
    left: -300px;
    transform: rotateZ(68deg);
  }
}
@media all and (max-width: 991px) {
  #story .box:first-of-type .txt_area::before {
    left: -440px;
  }
}
#story .box:first-of-type .txt {
  border-top: 2px solid #FFFFFF;
}
#story .box:first-of-type .img {
  position: absolute;
  top: 180px;
  left: 970px;
}
@media all and (max-width: 1500px) {
  #story .box:first-of-type .img {
    top: 260px;
    left: 710px;
  }
}
@media all and (max-width: 991px) {
  #story .box:first-of-type .img {
    left: 570px;
  }
}
@media all and (max-width: 767px) {
  #story .box:first-of-type .img {
    position: relative;
    width: 80%;
    margin: -240px auto auto;
    top: auto;
    left: auto;
  }
}
#story .box:nth-of-type(2) h4 {
  color: #1EBED3;
}
#story .box:nth-of-type(2) .txt_area {
  color: #101055;
  background-color: #EAEEF2;
  margin-left: auto;
  margin-right: 0;
  padding: 0 420px 80px 350px;
}
@media all and (max-width: 1500px) {
  #story .box:nth-of-type(2) .txt_area {
    padding: 0 220px 80px 180px;
  }
}
@media all and (max-width: 991px) {
  #story .box:nth-of-type(2) .txt_area {
    padding: 0 140px 80px 100px;
  }
}
@media all and (max-width: 767px) {
  #story .box:nth-of-type(2) .txt_area {
    padding: 0 0 280px;
  }
}
#story .box:nth-of-type(2) .txt_area::before {
  content: "";
  width: 990px;
  height: 90px;
  display: block;
  background-color: rgba(16, 16, 85, 0.06);
  position: absolute;
  top: 354px;
  right: -130px;
  transform: rotateZ(-60deg);
  z-index: 5;
}
@media all and (max-width: 1500px) {
  #story .box:nth-of-type(2) .txt_area::before {
    top: 345px;
    right: -230px;
    transform: rotateZ(-66deg);
  }
}
@media all and (max-width: 991px) {
  #story .box:nth-of-type(2) .txt_area::before {
    right: -390px;
  }
}
#story .box:nth-of-type(2) .txt {
  border-top: 2px solid #101055;
}
#story .box:nth-of-type(2) .img {
  position: absolute;
  top: 150px;
  right: 970px;
}
@media all and (max-width: 1500px) {
  #story .box:nth-of-type(2) .img {
    top: 260px;
    right: 710px;
  }
}
@media all and (max-width: 991px) {
  #story .box:nth-of-type(2) .img {
    right: 570px;
  }
}
@media all and (max-width: 767px) {
  #story .box:nth-of-type(2) .img {
    position: relative;
    width: 80%;
    margin: -240px auto auto;
    top: auto;
    right: auto;
  }
}
#story .box .img {
  width: 526px;
  z-index: 10;
}
@media all and (max-width: 1500px) {
  #story .box .img {
    width: 340px;
  }
}
@media all and (max-width: 767px) {
  #story .box .img {
    max-width: 280px;
  }
}
#story .box .img img {
  width: 100%;
}

/*--------------------------------------
section about
---------------------------------------*/
#about {
  background-image: url(http://demo.tokoncreative.com/shintei.co.jp/lp/img/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 40% 64%;
  position: relative;
  padding-top: 80px;
  padding-bottom: 150px;
}
@media all and (max-width: 991px) {
  #about {
    padding-bottom: 80px;
  }
}
#about::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(16, 16, 85, 0.7);
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}
#about .about_inner {
  width: 100%;
  max-width: 1080px;
  margin: auto;
  z-index: 5;
  position: relative;
}
@media all and (max-width: 1500px) {
  #about .about_inner {
    max-width: 980px;
  }
}
@media all and (max-width: 767px) {
  #about .about_inner {
    width: 90%;
  }
}
#about .about_inner h3 {
  color: #FFFFFF;
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}
@media all and (max-width: 1500px) {
  #about .about_inner h3 {
    font-size: 32px;
  }
}
@media all and (max-width: 580px) {
  #about .about_inner h3 {
    font-size: 26px;
  }
}
#about .about_inner .contents {
  display: flex;
  justify-content: space-around;
}
@media all and (max-width: 767px) {
  #about .about_inner .contents {
    display: block;
  }
}
#about .about_inner .box {
  width: calc((100% - 120px) / 3);
}
@media all and (max-width: 767px) {
  #about .about_inner .box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media all and (max-width: 580px) {
  #about .about_inner .box {
    display: block;
  }
}
@media all and (max-width: 767px) {
  #about .about_inner .box:not(:last-of-type) {
    margin-bottom: 40px;
  }
}
#about .about_inner .box .img {
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.35);
  margin-bottom: 40px;
  line-height: 1;
}
@media all and (max-width: 1500px) {
  #about .about_inner .box .img {
    margin-bottom: 30px;
  }
}
@media all and (max-width: 767px) {
  #about .about_inner .box .img {
    width: 26%;
    margin-bottom: 0;
  }
}
@media all and (max-width: 580px) {
  #about .about_inner .box .img {
    width: 280px;
    margin: 0 auto 30px;
  }
}
#about .about_inner .box .img img {
  width: 100%;
}
@media all and (max-width: 767px) {
  #about .about_inner .box .txt {
    width: 70%;
  }
}
@media all and (max-width: 580px) {
  #about .about_inner .box .txt {
    width: 100%;
    margin: auto;
  }
}
#about .about_inner .box .txt h4 {
  color: #FFF614;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
}
@media all and (max-width: 1500px) {
  #about .about_inner .box .txt h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
@media all and (max-width: 580px) {
  #about .about_inner .box .txt h4 {
    font-size: 22px;
    text-align: center;
  }
}
#about .about_inner .box .txt p {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
@media all and (max-width: 1500px) {
  #about .about_inner .box .txt p {
    font-size: 15px;
  }
}

/*--------------------------------------
section merit
---------------------------------------*/
#merit {
  background-color: #EAEEF2;
  padding-top: 140px;
  padding-bottom: 140px;
}
@media all and (max-width: 767px) {
  #merit {
    padding-top: 80px;
    padding-bottom: 70px;
  }
}
#merit .merit_inner {
  width: 100%;
  max-width: 1080px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
@media all and (max-width: 991px) {
  #merit .merit_inner {
    width: 90%;
    display: block;
  }
}
#merit .merit_inner .box {
  background-color: #FFFFFF;
  margin-bottom: 40px;
  padding: 60px 35px 30px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
}
@media all and (max-width: 1500px) {
  #merit .merit_inner .box {
    padding: 50px 35px 30px;
  }
}
#merit .merit_inner .box:nth-child(n+1):nth-child(-n+3) {
  width: calc((100% - 100px) / 3);
}
@media all and (max-width: 991px) {
  #merit .merit_inner .box:nth-child(n+1):nth-child(-n+3) {
    width: 100%;
  }
}
#merit .merit_inner .box:nth-child(n+4):nth-child(-n+5) {
  width: calc((100% - 50px) / 2);
}
@media all and (max-width: 991px) {
  #merit .merit_inner .box:nth-child(n+4):nth-child(-n+5) {
    width: 100%;
  }
}
#merit .merit_inner .box .title {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  background-color: #42CCDE;
  display: inline-block;
  padding: 10px 28px;
  line-height: 1;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}
@media all and (max-width: 1500px) {
  #merit .merit_inner .box .title {
    font-size: 16px;
  }
}
#merit .merit_inner .box .title span {
  font-size: 28px;
  margin-left: 6px;
}
@media all and (max-width: 1500px) {
  #merit .merit_inner .box .title span {
    font-size: 24px;
  }
}
#merit .merit_inner .box h4 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
#merit .merit_inner .box .img {
  text-align: center;
  margin-bottom: 20px;
}
#merit .merit_inner .box .img img {
  width: auto;
  height: 90px;
}
@media all and (max-width: 1500px) {
  #merit .merit_inner .box .img img {
    height: 70px;
  }
}
#merit .merit_inner .box .txt {
  font-size: 18px;
  font-weight: 500;
}
@media all and (max-width: 1500px) {
  #merit .merit_inner .box .txt {
    font-size: 15px;
  }
}
