@charset "UTF-8";
/*基本の青*/
/*薄いグレー*/
/*薄いグレー*/
/*スマホメニューの色*/
/*スマホメニューの色*/
section {
  padding-top: 80px;
  padding-bottom: 80px;
}

@-webkit-keyframes bg-slide {
  /* 非表示状態からフェードインを開始する */
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1); /* ズームのための指定 */
  }
  /* フェードインを完了し完全表示する */
  15% {
    opacity: 1;
  }
  /* ここまで完全表示を維持したらフェードアウトを開始する */
  33.33% {
    opacity: 1;
  }
  /* フェードアウトを完了し非表示にする */
  50% {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2); /* ズームのための指定 */
  }
  100% {
    opacity: 0;
  }
}

@keyframes bg-slide {
  /* 非表示状態からフェードインを開始する */
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1); /* ズームのための指定 */
  }
  /* フェードインを完了し完全表示する */
  15% {
    opacity: 1;
  }
  /* ここまで完全表示を維持したらフェードアウトを開始する */
  33.33% {
    opacity: 1;
  }
  /* フェードアウトを完了し非表示にする */
  50% {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2); /* ズームのための指定 */
  }
  100% {
    opacity: 0;
  }
}
#section01 {
  position: relative;
  height: 100svh;
}
#section01 .slider {
  width: 100vw;
  overflow: hidden;
}
#section01 .slider .bgslider {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-animation: bg-slide 24s linear infinite;
          animation: bg-slide 24s linear infinite;
}
#section01 .slider .slider01 {
  background: url(../images/top/mainimg.webp) center center no-repeat;
  background-size: cover;
  height: 100svh;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
#section01 .slider .slider02 {
  background: url(../images/top/mainimg02.webp) center center no-repeat;
  background-size: cover;
  height: 100svh;
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}
#section01 .slider .slider03 {
  background: url(../images/top/mainimg03.webp) center center no-repeat;
  background-size: cover;
  height: 100svh;
  -webkit-animation-delay: 18s;
          animation-delay: 18s;
}
#section01 .sectioninner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1100px;
}
#section01 .mainreadbox .mainread {
  color: #fff;
  font-size: 100px;
  line-height: 1;
  position: relative;
}
#section01 .mainreadbox .mainread:after {
  content: "";
  width: 583px;
  height: 5px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  bottom: -10px;
  left: 0;
}
@media only screen and (max-width: 842px) {
  #section01 .mainreadbox .mainread:after {
    width: 70%;
  }
}
#section01 .mainreadbox .mainreadtxt {
  color: #fff;
  font-size: 30px;
  margin-top: 20px;
}

.h2box {
  margin-bottom: 40px;
}
.h2box h2 {
  text-align: center;
  font-family: "Impact", sans-serif;
  font-size: 65px;
}
.h2box p {
  text-align: center;
  margin-top: 20px;
  font-weight: bold;
}

#section02 .contentsbox, #section03 .contentsbox {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0.5fr 30px 1fr;
  grid-template-columns: 0.5fr 1fr;
  background-color: #fff;
  gap: 20px 30px;
  -webkit-box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
}
@media only screen and (max-width: 842px) {
  #section02 .contentsbox, #section03 .contentsbox {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
#section02 .contentsbox .photobox, #section03 .contentsbox .photobox {
  height: 100%;
}
@media only screen and (max-width: 842px) {
  #section02 .contentsbox .photobox, #section03 .contentsbox .photobox {
    height: 300px;
  }
}
#section02 .contentsbox .txtbox, #section03 .contentsbox .txtbox {
  padding: 40px;
}

#section02 .contentsbox .photobox {
  background: url(../images/top/photo01.webp) center center no-repeat;
  background-size: cover;
}

#section03 .contentsbox {
  -ms-grid-columns: 1fr 0.5fr;
  grid-template-columns: 1fr 0.5fr;
}
@media only screen and (max-width: 842px) {
  #section03 .contentsbox {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
#section03 .contentsbox .photobox {
  background: url(../images/top/photo02.webp) center center no-repeat;
  background-size: cover;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media only screen and (max-width: 842px) {
  #section03 .contentsbox .photobox {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
#section03 .contentsbox .txtbox {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media only screen and (max-width: 842px) {
  #section03 .contentsbox .txtbox {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media screen and (max-width: 1100px) {
  #section01 .sectioninner {
    width: 90vw;
  }
}
@media screen and (max-width: 842px) {
  section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .h2box h2 {
    font-size: 40px;
  }
  .h2box p {
    margin-top: 0;
  }
  #section01 .mainreadbox .mainread {
    font-size: 50px;
  }
  #section01 .mainreadbox .mainreadtxt {
    font-size: 24px;
  }
}