@charset "UTF-8";
/* --------------------------------------------------
 Base
-------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;700;900&display=swap');
body, ol, ul, dl, li, dt, dd, table, th, td, input, textarea, select, h1, h2, h3, h4, h5, h6 {
    color: #333333;
    font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    line-height: 2;
    font-size: 100%;
    word-break: break-all;
    position: relative;
    overflow-x: hidden;
    animation: pageLoad 2s;
}

@keyframes pageLoad {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media screen and (max-width: 767px) {
    body {
        line-height: 1.8;
    }
}

img {
    max-width: 100%;
    vertical-align: middle;
}

input {
    padding: 5px 8px;
}

textarea {
    padding: 3px;
}

ul {
    list-style: none;
}

ol {
    margin: 0px 0px 0px 21px;
}

ol>li {
    list-style: decimal outside;
    margin: 0px 0px 3%;
}

a {
    color: #333333;
    text-decoration: underline;
    outline: 0;
}

a:hover, a:active {
    color: #333333;
    text-decoration: none;
}

@media screen and (min-width: 768px) {
    a[href^="tel"] {
        pointer-events: none;
    }
}

em {
    font-style: normal;
    font-weight: bold;
}

strong {
    font-style: normal;
    font-weight: bold;
}

/* --------------------------------------------------
 Wrapper
-------------------------------------------------- */

#wrapper {
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

#header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  width: 100vw;
  z-index: 999;
  padding: 20px 2%;
  box-sizing: border-box;
}

#header #logo > a {
  display: flex;
  align-items: flex-end;
}

#header #logo > a > .txt {
  margin-left: 8px;
}

#header #menu {
  position: relative;
}

#header #menu > .menu-list {
  display: flex;
  justify-content: flex-end;
}

#header #menu > .menu-list > li {
  position: relative;
}

#header #menu > .menu-list > li > a {
  position: relative;
  text-decoration: none;
  font-size: 120%;
  font-weight: 400;
  padding-left: 12px;
  margin-left: 10px;
  transition: 300ms all ease-in-out;
}

#header #menu > .menu-list > li > a:hover {
  opacity: .7;
}

#header #menu > .menu-list > li::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: '';
  display: block;
  width: 8px;
  height: 100%;
  background-image: url('../img/about/header-arrow.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.scroll-tranform {
  transition: all 300ms linear;
}

#contents .scene::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 170px;
  content: '';
  background-image: url('../img/about/bg.jpg');
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 100% 170px;
  z-index: -1;
}

.horizontal-scroll-section__content-section:not(#box01) {
  position: relative;
}

/*  ------------------*/
.box-scene > .list {
  position: relative;
}

.box-scene > .list:nth-last-child(1) {
  -webkit-transform: translateX(-85%);
  -moz-transform: translateX(-85%);
  -ms-transform: translateX(-85%);
  -o-transform: translateX(-85%);
  transform: translateX(-85%);
}

#box01 {
  background-color: #fff;
}

#box01,
#box02,
#box03,
#box04,
#box05 {
  align-items: flex-start;
}

#box01 {
  z-index: 98;
}

#box02,
#box03,
#box04 {
  -webkit-transform: translateX(-25%);
  -moz-transform: translateX(-25%);
  -ms-transform: translateX(-25%);
  -o-transform: translateX(-25%);
  transform: translateX(-25%);
}

#box02 {
  z-index: 99;
}

#box03 {
  z-index: 97;
}

#box04 {
  z-index: 96;
}

#box05 {
  z-index: 95;
  -webkit-transform: translateX(-30%);
  -moz-transform: translateX(-30%);
  -ms-transform: translateX(-30%);
  -o-transform: translateX(-30%);
  transform: translateX(-30%);
}

@media screen and (max-width: 1500px) {
  #box05 {
    -webkit-transform: translateX(-0%);
    -moz-transform: translateX(-0%);
    -ms-transform: translateX(-0%);
    -o-transform: translateX(-0%);
    transform: translateX(-0%);
  }
}

#box06 {
  z-index: 94;
  -webkit-transform: translateX(-80%);
  -moz-transform: translateX(-80%);
  -ms-transform: translateX(-80%);
  -o-transform: translateX(-80%);
  transform: translateX(-80%);
}

#box-end {
  -webkit-transform: translateX(-90%);
  -moz-transform: translateX(-90%);
  -ms-transform: translateX(-90%);
  -o-transform: translateX(-90%);
  transform: translateX(-90%);
}

#box-end > .inner {
  position: relative;
  display: block;
  width: 100vw;
  height: 100vh;
  
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}

#box-end > .inner > .box {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

#box-end > .inner.fixed > .box {
  position: fixed;
  top: 0;
  left: 0;
}

#box99 {
  -webkit-transform: translateX(-90%);
  -moz-transform: translateX(-90%);
  -ms-transform: translateX(-90%);
  -o-transform: translateX(-90%);
  transform: translateX(-90%);
  min-width: 500px;
  max-width: 500px;
}

.box-left,
.box-right {
  width: 50%;
  height: 100%;
  box-sizing: border-box;
}

.box-left {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 1;
}

#box02 > .box-left,
#box05 > .box-left {
  padding: 2%;
}

.box-right {
  position: relative;
  z-index: 0;
}

#box01 > .box-left > .txt-blc,
#box01 > .box-right > .img-blc {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
}

#box01 > .box-left > .txt-blc {
  padding: 40px 0 40px 15vw;
}

#box01 > .box-left > .txt-blc > .ttl {
  width: calc(100% + 15vw);
  margin-bottom: 30px;
}

#box01 > .box-left > .txt-blc > .txt {
  font-size: 110%;
  padding-right: 5px;
}

#box02 > .box-right,
#box05 > .box-right {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 1;
}

#box03 .box-left,
#box03 .box-right {
  position: relative;
}

#box03 .box-left,
#box04 .box-left,
#box06 .box-left {
  z-index: 0;
}

#box03 .box-right,
#box04 .box-right,
#box06 .box-right {
  z-index: 1;
}


@media screen and (max-width: 767px) {
  #box01 > .box-left > .txt-blc {
    padding: 40px 0 40px 4%;
  }
  #box01 > .box-left > .txt-blc > .txt {
    font-size: 110%;
  }
}

.img-box.style-01 > .img-blc {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.img-box.style-02 > .img-blc {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.txt-box.style-01 .txt-blc {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 80px 80px;
  box-sizing: border-box;
}

.txt-box.style-01 .txt-blc.align-center {
  justify-content: center;
}

.txt-box.style-01 .txt-blc > .sub-ttl {
  font-size: 140%;
  font-weight: 600;
  margin-bottom: 10px;
}

.txt-box.style-01 .txt-blc > .txt {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.txt-box.style-01 .txt-blc > .txt > .inner {
  max-width: 450px;
  font-size: 110%;
}

.txt-box.style-01 .txt-blc > .ttl {
  display: block;
  width: 100%;
}

.txt-box.style-01 .txt-blc > .ttl > img.img-size {
  height: 5vw;
  object-fit: none;
}

.list-blc {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 15px;
  margin-bottom: 40px;
  box-sizing: border-box;
}

.list-blc > .list {
  max-width: 250px;
  width: calc(50% - 10px);
  margin-bottom: 20px;
  margin-right: 20px;
}


.list-blc > .list:nth-child(2n+2) {
  margin-right: 0;
}

.list-blc > .list > a {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  text-decoration: none;
  padding: 4px 40px 4px 20px;
  box-sizing: border-box;
}

.list-blc > .list > a::after {
  position: absolute;
  bottom: 0;
  left: 0 ;
  display: block;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #68a23f;
  background: linear-gradient(to left, #68a23f, #68a23f 10%, #e7a526 90%);
}

.list-blc > .list > a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  display: block;
  content: '';
  width: 25px;
  height: 100%;
  background-image: url('../img/about/arrow.png');
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 300ms ease-in-out;
}

.list-blc > .list > a:hover {
  opacity: .7;
}

.list-blc > .list > a:hover::before {
  right: 0px;
}

/* Hide --------------- */

.hidden {
  opacity: 0;
}

.hide {
  opacity: 0;
}

.visible {
  opacity: 1;
}

.disnon {
  display: none;
}

#box-end > .inner > .box {
  flex-direction: column;
}

#box-end > .inner > .box > .list-blc {
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  margin: 20px 0 0;
}

#box-end > .inner > .box > .list-blc > .list {
  width: 100%;
  margin-right: 0;
  margin-bottom: 10px;
}

@media screen and (min-width: 1001px) {
  .img-scale {
    transform: none !important;
    overflow: hidden;
  }
}
@media screen and (max-width: 1000px) {
  #header {
    position: relative;
  }
  #contents .scene::after {
    display: none;
  }
  #horizontal-animate {
    transform: none !important;
    margin-left: 0 !important;
  }
  .horizontal-scroll-section__content-section:not(#box01) {
    padding-left: 4%;
    padding-right: 4%;
  }
  .img-scale {
    transform: scale(1) !important;
  }
  .scene .list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: auto !important;
  }
  .scroll-transform {
    transform: none !important;
  }
  #box01,
  #box02,
  #box03,
  #box04,
  #box05,
  #box06 {
    position: relative;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
    transform: none !important;
    margin-bottom: 7%;
  }
  #box03,
  #box02,
  #box04,
  #box05,
  #box06 {
    display: block;
  }
  #box01 {
    flex-direction: column;
  }
  #box01 .txt-box {
    order: 2;
  }
  #box01 .img-box {
    order: 1;
  }
  #box01 .txt-box.style-01,
  #box03 .txt-box.style-01,
  #box04 .txt-box.style-01,
  #box06 .txt-box.style-01,
  #box02 .img-box.style-01,
  #box03 .img-box.style-01,
  #box04 .img-box.style-01,
  #box06 .img-box.style-01 {
    position: relative;
    width: 100%;
  }
  #box01 .txt-box.style-01,
  #box02 .txt-box.style-01,
  #box03 .txt-box.style-01,
  #box04 .txt-box.style-01,
  #box06 .txt-box.style-01 {
    transform: translateY(-20px);
  }
  #box02 .txt-box.style-01 .txt-blc {
    width: auto;
    margin: 0 auto;
  }
  #box01 .txt-box.style-01 .txt-blc > .ttl,
  #box02 .txt-box.style-01 .txt-blc > .ttl,
  #box03 .txt-box.style-01 .txt-blc > .ttl,
  #box04 .txt-box.style-01 .txt-blc > .ttl,
  #box06 .txt-box.style-01 .txt-blc > .ttl {
    top: -3vw;
    left: 0;
    margin-bottom: 20px;
    order: 1;
  }
  #box01 .txt-box.style-01 .txt-blc > .sub-ttl,
  #box02 .txt-box.style-01 .txt-blc > .sub-ttl,
  #box03 .txt-box.style-01 .txt-blc > .sub-ttl,
  #box04 .txt-box.style-01 .txt-blc > .sub-ttl,
  #box06 .txt-box.style-01 .txt-blc > .sub-ttl {
    order: 2;
  }
  #box01 .txt-box.style-01 .txt-blc > .txt,
  #box02 .txt-box.style-01 .txt-blc > .txt,
  #box03 .txt-box.style-01 .txt-blc > .txt,
  #box04 .txt-box.style-01 .txt-blc > .txt,
  #box06 .txt-box.style-01 .txt-blc > .txt {
    order: 3;
  }
  #box01 .txt-box.style-01 .txt-blc > .list-blc,
  #box02 .txt-box.style-01 .txt-blc > .list-blc,
  #box03 .txt-box.style-01 .txt-blc > .list-blc,
  #box04 .txt-box.style-01 .txt-blc > .list-blc,
  #box06 .txt-box.style-01 .txt-blc > .list-blc {
    order: 4;
  }
  #box01 .img-box.style-01 .img-blc,
  #box03 .img-box.style-01 .img-blc,
  #box04 .img-box.style-01 .img-blc,
  #box06 .img-box.style-01 .img-blc {
    padding-bottom: 85vw;
  }
  #box02 > .box-left, 
  #box05 > .box-left {
    text-align: center;
    width: 100%;
    padding: 0;
  }
  #box05 {
    justify-content: center;
  }
  .scene .list .box-left,
  .scene .list .box-right {
    width: 100%;
  }
  .img-box.style-02 > .img-blc {
    align-items: flex-start;
  }
  .txt-box {
    font-size: 90%;
    padding-bottom: 0;
  }
  #box01 > .box-left > .txt-blc {
    padding: 0 4%;
  }
  .txt-box.style-01 .txt-blc {
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
  }
  .txt-box.style-01 .txt-blc > .ttl > img.img-size {
    width: auto !important;
    min-width: 0 !important;
    height: 6vw;
    object-fit: contain;
  }
  .txt-blc > .list-blc {
    justify-content: center;
    margin-bottom: 0;
  }
  .txt-blc > .list-blc > .list {
    max-width: 200px;
    width: 100%;
  }
  .hide-sp {
    opacity: 0 !important;
  }
  .visible-sp {
    opacity: 1 !important;
  }
}
@media screen and (max-width: 540px) {
  .txt-blc > .list-blc > .list {
    max-width: none;
    margin-right: 0;
  }
  .txt-blc > .list-blc > .list a {
    max-width: 250px;
    width: 100%;
    margin: 0 auto;
  }
}