@charset "UTF-8";
img {
  width: 100%;
}

.test1 {
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  -webkit-transition: all 0.4s ease-out 0.01s;
  transition: all 0.4s ease-out 0.01s;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transform: scale(1);
  transform: rotate(-45deg);
  border-radius: 50%;
  animation: Flash1 1s infinite;
  animation: beyooon_a 1s forwards;
  animation: beyooon_b 1s forwards;
  font-family: "Noto Serif JP", serif;
  background: linear-gradient(90deg, rgb(0, 72, 110) 0%, rgb(0, 120, 155) 100%);
}

@keyframes Flash1 {
  50% {
    opacity: 0;
  }
}
@keyframes beyooon_a {
  0% {
    transform: translate(-50%, 0%) scale(0.5);
  }
  16% {
    opacity: 1;
    transform: translate(-50%, 0%) scale(1.22);
  }
  28% {
    transform: translate(-50%, 0%) scale(1);
  }
  88% {
    transform: translate(-50%, 0%) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0%) scale(1);
  }
}
@keyframes beyooon_b {
  0% {
    transform: scale(0.5);
  }
  16% {
    transform: scale(1.32);
  }
  28% {
    transform: scale(0.87);
  }
  44% {
    transform: scale(1.05);
  }
  59% {
    transform: scale(0.98);
  }
  73% {
    transform: scale(1.01);
  }
  88% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.test {
  content: "\f105";
  font-family: FontAwesome;
}

.shadow {
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.4), 1px 3px 3px rgba(0, 0, 0, 0.4), 1px 2px 3px rgba(0, 0, 0, 0.4);
}

/**scss共通ここまで***/
body {
  overflow: hidden;
}

#section_first {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 755px;
}
@media screen and (max-width:800px) {
  #section_first {
    height: 500px;
  }
}
#section_first .base {
  position: relative;
}
#section_first .introbox {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /*
  background: url(../images/intro_back.jpg)no-repeat center;
  background-size: cover;
  */
  background-color: #fff;
  z-index: 99;
  transition: all 1s ease-out 0.01s;
  opacity: 1;
}
#section_first .introbox.active {
  opacity: 0;
  pointer-events: none;
}
#section_first .introbox .logoin {
  width: 16.1%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.75s ease-out 0.01s;
  opacity: 0;
}
@media screen and (max-width:800px) {
  #section_first .introbox .logoin {
    width: 50%;
  }
}
#section_first .introbox .logoin.active1 {
  opacity: 1;
  pointer-events: none;
}
#section_first .introbox .logoin.active2 {
  opacity: 0;
  pointer-events: none;
}
#section_first .maintext {
  position: absolute;
  z-index: 5;
  width: 38.4%;
  left: 2%;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (max-width:800px) {
  #section_first .maintext {
    width: 65%;
    left: 5%;
    top: auto;
    bottom: 7.5%;
    transform: translate(0, 0%);
  }
}
#section_first video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
#section_first .slideboxs {
  width: 6976px;
  height: 755px;
  position: absolute;
  top: 0;
  left: 0px;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: all 0.8s ease-out 0.01s;
}
@media screen and (max-width:800px) {
  #section_first .slideboxs {
    width: 4620px;
    height: 500px;
  }
}
#section_first .slideboxs.active {
  animation: roops 70s linear infinite;
  opacity: 1 !important;
}
@media screen and (max-width:800px) {
  #section_first .slideboxs.active {
    animation: roops_sp 70s linear infinite;
  }
}
@keyframes roops {
  0% {
    left: 0px;
  }
  100% {
    left: -3488px;
  }
}
@keyframes roops_sp {
  0% {
    left: 0px;
  }
  100% {
    left: -2310px;
  }
}
#section_first .slideboxs .items {
  width: 3488px;
  position: relative;
}
@media screen and (max-width:800px) {
  #section_first .slideboxs .items {
    width: 2310px;
  }
}
#section_first .moviebox01 {
  position: absolute;
  width: 5.25%;
  height: 23%;
  top: 50.9%;
  left: 22.3%;
  z-index: 5;
}
#section_first .moviebox02 {
  position: absolute;
  width: 10.75%;
  height: 23.2%;
  top: 1.4%;
  left: 38.95%;
  z-index: 5;
}
#section_first .moviebox03 {
  position: absolute;
  width: 16.35%;
  height: 48%;
  top: 50.7%;
  left: 83.3%;
  z-index: 5;
}
#section_first .moviebox04 {
  position: absolute;
  width: 10.85%;
  height: 23%;
  top: 50.9%;
  left: 72.2%;
  z-index: 5;
}

main {
  background: url(../images/main_back.jpg) no-repeat center top;
  background-size: cover;
}

#section02 {
  width: 100%;
  position: relative;
  padding-top: 110px;
}
@media screen and (max-width:800px) {
  #section02 {
    padding-top: 50px;
  }
}
#section02 .section__in {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width:800px) {
  #section02 .section__in {
    width: 75%;
  }
}
#section02 .section__in .eng {
  width: 7%;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(0, -4%);
  opacity: 0;
}
@media screen and (max-width:800px) {
  #section02 .section__in .eng {
    width: 14%;
    transform: translate(0, 0%);
  }
}
#section02 .section__in .tatewabe {
  width: 100%;
  font-weight: 700;
  color: #4cad48;
  position: absolute;
  top: 0;
  left: 100%;
  letter-spacing: 0.025em;
  transform: rotate(90deg) translate(-2.5%, -25%);
  transform-origin: top left;
}
#section02 h2 {
  font-weight: 700;
  line-height: 150%;
  color: #5a5a5a;
}
#section02 .clumbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 3em;
}
@media screen and (max-width:800px) {
  #section02 .clumbox {
    margin-top: 0vw;
  }
}
#section02 .clumbox .text {
  width: 36.69%;
  color: #5a5a5a;
  line-height: 204%;
}
@media screen and (max-width:800px) {
  #section02 .clumbox .text {
    width: 75%;
    order: 2;
  }
}
#section02 .clumbox .photo {
  width: 50%;
  position: relative;
  margin-top: 1em;
}
@media screen and (max-width:800px) {
  #section02 .clumbox .photo {
    width: 100%;
    order: 1;
    margin-bottom: 5vw;
  }
}
#section02 .clumbox .photo .base {
  position: relative;
  opacity: 0;
}
#section02 .clumbox .photo .base1 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
#section02 .clumbox .photo .base2 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
#section02 .clumbox .photo .base3 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
#section02 .clumbox .photo .base4 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
#section02 .clumbox .photo .base5 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

#section03 {
  width: 100%;
  position: relative;
  z-index: 5;
  padding-top: 160px;
}
@media screen and (max-width:800px) {
  #section03 {
    padding-top: 80px;
  }
}
#section03 .section__in {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}
#section03 .whitebox {
  width: 100%;
  border-radius: 30px;
  padding: 16px 4.25%;
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
}
#section03 .whitebox .tateimg {
  width: 42.58%;
  position: absolute;
  top: -6%;
  left: 3%;
}
@media screen and (max-width:800px) {
  #section03 .whitebox .tateimg {
    width: 70%;
    top: -2%;
    left: 0%;
  }
}
#section03 .whitebox .photo {
  width: 66.9%;
}
@media screen and (max-width:800px) {
  #section03 .whitebox .photo {
    width: 100%;
    margin-bottom: 5vw;
  }
}
#section03 .whitebox .text {
  width: 27.8%;
  text-align: center;
  display: flex;
  align-items: center;
}
@media screen and (max-width:800px) {
  #section03 .whitebox .text {
    width: 100%;
  }
}
#section03 .whitebox .text .textbox .ttl {
  margin-bottom: 1em;
  line-height: 100%;
}
#section03 .whitebox .text .textbox .names {
  width: 87.5%;
  margin: 0 auto 2.5em auto;
}
@media screen and (max-width:800px) {
  #section03 .whitebox .text .textbox .names {
    width: 50%;
    margin-bottom: 5vw;
  }
}
#section03 .whitebox .text .textbox a {
  display: inline-block;
  width: 100%;
  padding: 0.45em 0 0.45em 0;
  background-color: #4cad48;
  color: #fff;
  text-align: center;
  border-radius: 50px;
}
@media screen and (max-width:800px) {
  #section03 .whitebox .text .textbox a {
    width: 70%;
    display: block;
    margin: 0 auto;
    margin-bottom: 5vw;
  }
}

#section04 {
  width: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding-top: 120px;
}
@media screen and (max-width:800px) {
  #section04 {
    padding-top: 15vw;
  }
}
#section04 .section__in {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}
#section04 .clumbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
}
@media screen and (max-width:800px) {
  #section04 .clumbox {
    align-items: flex-start;
  }
}
#section04 .clumbox .titles {
  width: 23.3%;
}
@media screen and (max-width:800px) {
  #section04 .clumbox .titles {
    width: 100%;
  }
}
#section04 .clumbox .titles h2 {
  width: 75%;
  margin-bottom: 40px;
  margin-left: 5%;
}
@media screen and (max-width:800px) {
  #section04 .clumbox .titles h2 {
    width: 30%;
    margin-bottom: 0px;
    margin-left: 5%;
  }
}
#section04 .clumbox .titles a {
  display: inline-block;
  width: 100%;
  padding: 0.45em 0 0.45em 0;
  background-color: #4cad48;
  color: #fff;
  text-align: center;
  border-radius: 50px;
}
@media screen and (max-width:800px) {
  #section04 .clumbox .titles a {
    display: none;
  }
}
#section04 .clumbox .list {
  width: 68.4%;
}
@media screen and (max-width:800px) {
  #section04 .clumbox .list {
    width: 85%;
    margin-top: 5vw;
    margin: 5vw 0 0 auto;
  }
}
#section04 .clumbox .list dl {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 0.35em;
  margin-top: 0.75em;
  position: relative;
}
@media screen and (max-width:800px) {
  #section04 .clumbox .list dl {
    flex-wrap: wrap;
  }
}
#section04 .clumbox .list dl::after {
  content: "";
  width: 100vw;
  height: 1px;
  background-color: #4cad48;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width:800px) {
  #section04 .clumbox .list dl::after {
    width: 100vw;
  }
}
#section04 .clumbox .list dl dt {
  width: 10em;
}
@media screen and (max-width:800px) {
  #section04 .clumbox .list dl dt {
    width: 100%;
  }
}
#section04 .clumbox .list dl dd {
  width: calc(100% - 10em);
}
@media screen and (max-width:800px) {
  #section04 .clumbox .list dl dd {
    width: 100%;
  }
}
#section04 a.link01sp {
  display: inline-block;
  width: 100%;
  padding: 0.45em 0 0.45em 0;
  background-color: #4cad48;
  color: #fff;
  text-align: center;
  border-radius: 50px;
  display: none;
}
@media screen and (max-width:800px) {
  #section04 a.link01sp {
    display: block;
    width: 60%;
    margin: 10vw auto 0 auto;
  }
}

#section05 {
  width: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding-top: 120px;
}
@media screen and (max-width:800px) {
  #section05 {
    padding-top: 15vw;
  }
}
#section05 .section__in {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}
#section05 .whitebox {
  width: 100%;
  /*background-color: #fff;*/
  padding: 35px 8% 70px 8%;
}
@media screen and (max-width:800px) {
  #section05 .whitebox {
    padding: 10vw 5% 12.5vw 5%;
  }
}
#section05 .whitebox h2 {
  width: 21%;
  margin: 0 auto;
}
@media screen and (max-width:800px) {
  #section05 .whitebox h2 {
    width: 36%;
  }
}
#section05 .whitebox .subttl {
  text-align: center;
  margin-top: 1em;
  margin-bottom: 0.5em;
  color: #5a5a5a;
}
#section05 .whitebox .clumbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#section05 .whitebox .clumbox .items {
  width: 100%;
  max-width: 705px;
  margin: 0 auto;
  /*
  background: url(../images/backcolor.jpg)no-repeat center;
  background-size: cover;
  */
  background-color: #4cad48;
  border-radius: 15px;
  padding: 3em 0 3em 0;
  text-align: center;
}
@media screen and (max-width:800px) {
  #section05 .whitebox .clumbox .items {
    width: 100%;
  }
}
#section05 .whitebox .clumbox .items .base_text {
  text-align: center;
  line-height: 160%;
  margin-bottom: 1em;
  color: #fff;
  font-weight: 500;
}
#section05 .whitebox .clumbox .items a {
  width: 12em;
  text-align: center;
  display: inline-block;
  border: 1px solid #fff;
  padding: 0.45em 0 0.45em 0;
  color: #fff;
  text-align: center;
  border-radius: 50px;
}

#section06 {
  width: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding-top: 120px;
}
@media screen and (max-width:800px) {
  #section06 {
    padding-top: 5vw;
  }
}
#section06 .section__in {
  width: 90%;
  max-width: 505px;
  margin: 0 auto;
}
#section06 .whitebox {
  width: 100%;
  /*
  background-color: #fff;
  */
  padding: 0%;
  position: relative;
}
@media screen and (max-width:800px) {
  #section06 .whitebox {
    width: 90%;
    margin: 0 auto;
    padding: 0%;
  }
}
#section06 .whitebox h2 {
  width: 45%;
  margin: 0 auto;
}
@media screen and (max-width:800px) {
  #section06 .whitebox h2 {
    width: 41%;
  }
}
#section06 .whitebox .subttl {
  text-align: center;
  margin-top: 1em;
  margin-bottom: 1.5em;
  color: #5a5a5a;
}
#section06 .whitebox .youtubebox {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}
#section06 .whitebox .youtube {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-top: 56.25%; /* 16:9 = 9 / 16 * 100 */
}
#section06 .whitebox .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#section06b {
  width: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding-top: 120px;
}
@media screen and (max-width:800px) {
  #section06b {
    padding-top: 5vw;
  }
}
#section06b .section__in {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}
#section06b .whitebox {
  width: 100%;
  /*
  background-color: #fff;
  */
  padding: 35px 8% 70px 8%;
  position: relative;
}
@media screen and (max-width:800px) {
  #section06b .whitebox {
    padding: 10vw 5% 12.5vw 5%;
  }
}
#section06b .whitebox h2 {
  width: 29%;
  margin: 0 auto 1.5em auto;
}
@media screen and (max-width:800px) {
  #section06b .whitebox h2 {
    width: 52.5%;
  }
}
#section06b .whitebox .subttl {
  text-align: center;
  margin-top: 1em;
  margin-bottom: 0.5em;
  color: #5a5a5a;
}
#section06b .whitebox .comingbox {
  width: 100%;
  max-width: 705px;
  margin: 0 auto;
}
#section06b .whitebox .youtube {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-top: 56.25%; /* 16:9 = 9 / 16 * 100 */
}
#section06b .whitebox .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#section06c {
  width: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding-top: 120px;
}
@media screen and (max-width:800px) {
  #section06c {
    padding-top: 5vw;
  }
}
#section06c .section__in {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}
#section06c .whitebox {
  width: 100%;
  /*
  background-color: #fff;
  */
  padding: 35px 8% 70px 8%;
  position: relative;
}
@media screen and (max-width:800px) {
  #section06c .whitebox {
    padding: 10vw 5% 12.5vw 5%;
  }
}
#section06c .whitebox h2 {
  width: 50%;
  margin: 0 auto 1.5em auto;
}
@media screen and (max-width:800px) {
  #section06c .whitebox h2 {
    width: 100%;
  }
}
#section06c .whitebox .subttl {
  text-align: center;
  margin-top: 1em;
  margin-bottom: 0.5em;
  color: #5a5a5a;
}
#section06c .whitebox .youtubebox {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}
#section06c .whitebox .comingbox {
  width: 100%;
  max-width: 705px;
  margin: 0 auto;
}
#section06c .whitebox .youtube {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-top: 56.25%; /* 16:9 = 9 / 16 * 100 */
}
#section06c .whitebox .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#section07 {
  width: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding-top: 120px;
}
@media screen and (max-width:800px) {
  #section07 {
    padding-top: 5vw;
  }
}
#section07 .section__in {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}
#section07 .whitebox {
  width: 100%;
  background-color: #fff;
  padding: 40px 12% 30px 4.6%;
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#section07 .whitebox::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(165, 165, 165, 0.85);
  z-index: 5;
}
#section07 .whitebox::after {
  content: "Coming soon…";
  font-size: 50px;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  color: #fff;
  z-index: 10;
}
@media screen and (max-width:800px) {
  #section07 .whitebox::after {
    font-size: 7vw;
  }
}
#section07 .whitebox .yoko2 {
  width: 6.724%;
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (max-width:800px) {
  #section07 .whitebox .yoko2 {
    width: 11%;
    top: calc(40px + 12vw);
    transform: translate(0, 0);
  }
}
#section07 .whitebox .text {
  width: 47%;
}
@media screen and (max-width:800px) {
  #section07 .whitebox .text {
    width: 85%;
  }
}
#section07 .whitebox .text h3 {
  margin-top: 0.5em;
  margin-bottom: 0.2em;
  color: #4cad48;
  width: 60%;
}
#section07 .whitebox .text a {
  display: inline-block;
  padding: 0.35em 2em 0.45em 2em;
  background-color: #4cad48;
  color: #fff;
  text-align: center;
  border-radius: 50px;
}
#section07 .whitebox .text .base_text {
  line-height: 200%;
  margin-top: 1em;
  color: #98a2ab;
}
#section07 .whitebox .photo {
  width: 47.5%;
}
@media screen and (max-width:800px) {
  #section07 .whitebox .photo {
    width: 92.5%;
    margin: 5vw 0 0 auto;
  }
}

#section08 {
  width: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding-top: 180px;
}
@media screen and (max-width:800px) {
  #section08 {
    padding-top: 120px;
  }
}
#section08 .titles {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}
#section08 .titles h2 {
  width: 44.2%;
  margin-left: 1.5%;
  margin-bottom: 10px;
}
@media screen and (max-width:800px) {
  #section08 .titles h2 {
    width: 70%;
  }
}
#section08 .slidewaku01 {
  width: 100%;
  height: 203px;
  position: relative;
  margin-bottom: 15px;
}
@media screen and (max-width:800px) {
  #section08 .slidewaku01 {
    height: 143px;
  }
}
#section08 .slidewaku02 {
  width: 100%;
  height: 203px;
  position: relative;
}
@media screen and (max-width:800px) {
  #section08 .slidewaku02 {
    height: 143px;
  }
}
#section08 ul.slide01 {
  display: flex;
  justify-content: flex-start;
  position: absolute;
  top: 0;
  left: 0;
  animation: roop01 20s linear infinite;
}
@media screen and (max-width:800px) {
  #section08 ul.slide01 {
    animation: roop01_sp 20s linear infinite;
  }
}
@keyframes roop01 {
  0% {
    left: -1517px;
  }
  100% {
    left: 0;
  }
}
@keyframes roop01_sp {
  0% {
    left: -1084px;
  }
  100% {
    left: 0;
  }
}
#section08 ul.slide01 li {
  width: 324px;
  display: inline-block;
  margin-right: 5px;
}
@media screen and (max-width:800px) {
  #section08 ul.slide01 li {
    width: 230px;
  }
}
#section08 ul.slide01 li.mini {
  width: 196px;
}
@media screen and (max-width:800px) {
  #section08 ul.slide01 li.mini {
    width: 139px;
  }
}
#section08 ul.slide02 {
  display: flex;
  justify-content: flex-start;
  position: absolute;
  top: 0;
  left: 0;
  animation: roop02 20s linear infinite;
}
@media screen and (max-width:800px) {
  #section08 ul.slide02 {
    animation: roop02_sp 20s linear infinite;
  }
}
@keyframes roop02 {
  0% {
    left: 0px;
  }
  100% {
    left: -1316px;
  }
}
@keyframes roop02_sp {
  0% {
    left: 0px;
  }
  100% {
    left: -940px;
  }
}
#section08 ul.slide02 li {
  width: 324px;
  display: inline-block;
  margin-right: 5px;
}
@media screen and (max-width:800px) {
  #section08 ul.slide02 li {
    width: 230px;
  }
}
#section08 .comingbox {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
}
#section08 .comingbox::after {
  content: "Coming soon…";
  font-size: 50px;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  color: #fff;
  z-index: 10;
}
@media screen and (max-width:800px) {
  #section08 .comingbox::after {
    font-size: 7vw;
  }
}

#section09 {
  width: 100%;
  position: relative;
  z-index: 5;
  padding: 100px 0 75px 0;
}
#section09 .section__in {
  width: 90%;
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width:800px) {
  #section09 .section__in {
    width: 100%;
  }
}
#section09 .section__in .base {
  position: relative;
  width: 100%;
}
@media screen and (max-width:800px) {
  #section09 .section__in .base {
    width: 140%;
    margin-left: -20%;
  }
}
#section09 h2 {
  width: 47.5%;
  margin: 0 auto 1em auto;
}
@media screen and (max-width:800px) {
  #section09 h2 {
    width: 48.5%;
  }
}
#section09 .inbox {
  width: 58.5%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
}
@media screen and (max-width:800px) {
  #section09 .inbox {
    width: 72.5%;
    transform: translate(-50%, -56.5%);
  }
}
#section09 .tate06 {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 2em;
}
@media screen and (max-width:800px) {
  #section09 .tate06 {
    width: 40%;
  }
}
#section09 .logo130 {
  width: 65%;
  margin: 0 auto 0 auto;
}
@media screen and (max-width:800px) {
  #section09 .logo130 {
    width: 65%;
  }
}
#section09 .base_text {
  font-weight: 600;
  line-height: 180%;
  margin-top: 3em;
  margin-bottom: 0em;
}
@media screen and (max-width:800px) {
  #section09 .base_text {
    margin-top: 1.75em;
    margin-bottom: 0em;
    line-height: 150%;
  }
}
#section09 .clumbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#section09 .clumbox figure {
  width: 47.5%;
}

/************************************/
/* 1文字ずつ表示するアニメーション設定
---------------------------*/
.eachTextAnime {
  display: flex; /* 子要素（文字）を横並びに */
  justify-content: flex-start; /* 中央配置 */
}

.eachTextAnime span {
  opacity: 0; /* 初期状態は非表示 */
}

.eachTextAnime.appeartext span {
  animation: text_anime_on 0.75s ease-in-out forwards; /* appeartext クラスが付いたらアニメーションを実行 */
}
@media screen and (max-width:800px) {
  .eachTextAnime.appeartext span {
    animation: text_anime_on_sp 0.75s ease-in-out forwards; /* appeartext クラスが付いたらアニメーションを実行 */
  }
}

/* アニメーションの動き定義
---------------------------*/
@keyframes text_anime_on {
  0% {
    opacity: 0; /* 完全に非表示 */
    transform: translate3d(0, 0, 0); /* 位置はそのまま */
  }
  50% {
    opacity: 0.5; /* 少し表示しながら */
    transform: translate3d(0, -20px, 0); /* 上にふわっと移動 */
  }
  100% {
    opacity: 1; /* 完全表示 */
    transform: translate3d(0, 0, 0); /* 元の位置に戻す */
  }
}
@keyframes text_anime_on_sp {
  0% {
    opacity: 0; /* 完全に非表示 */
    transform: translate3d(0, 0, 0); /* 位置はそのまま */
  }
  50% {
    opacity: 0.5; /* 少し表示しながら */
    transform: translate3d(0, -10px, 0); /* 上にふわっと移動 */
  }
  100% {
    opacity: 1; /* 完全表示 */
    transform: translate3d(0, 0, 0); /* 元の位置に戻す */
  }
}/*# sourceMappingURL=top.css.map */