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

.test1 {
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
  -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, #00486e 0%, #00789b 100%);
}

@keyframes Flash1 {
  50% {
    opacity: 0;
  }
}

.boyon_anime {
  opacity: 0;
}

.boyon_anime.active {
  animation: beyooon_a 3s forwards;
}

.boyon_anime2 {
  opacity: 0;
}

.boyon_anime2.active {
  animation: beyooon_a 3s 0.3s forwards;
}

.boyon_anime3 {
  opacity: 0;
}

.boyon_anime3.active {
  animation: beyooon_a 3s 0.6s forwards;
}

@keyframes beyooon_a {
  0% {
    opacity: 0;
    transform: translate(0%, 0%) scale(0.75);
  }
  16% {
    opacity: 1;
    transform: translate(0%, 0%) scale(1.1);
  }
  28% {
    transform: translate(0%, 0%) scale(1);
  }
  88% {
    transform: translate(0%, 0%) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 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);
  }
}

.anipon1 {
  animation: updown1 7s infinite;
}

.anipon2 {
  animation: updown2 8s infinite;
}

.anipon3 {
  animation: updown3 9s infinite;
}

@keyframes updown1 {
  0% {
    transform: translate(0%, 30%);
  }
  50% {
    transform: translate(0%, 0%);
  }
  100% {
    transform: translate(0%, 30%);
  }
}

@keyframes updown2 {
  0% {
    transform: translate(0%, -40%);
  }
  50% {
    transform: translate(0%, 0%);
  }
  100% {
    transform: translate(0%, -40%);
  }
}

@keyframes updown3 {
  0% {
    transform: translate(0%, 35%);
  }
  50% {
    transform: translate(0%, 0%);
  }
  100% {
    transform: translate(0%, 35%);
  }
}

.anipon4 {
  animation: updown4 6s infinite;
}

.anipon5 {
  animation: updown5 7s infinite;
}

.anipon6 {
  animation: updown6 8s infinite;
}

@keyframes updown4 {
  0% {
    transform: translate(0%, 0%);
  }
  50% {
    transform: translate(0%, 30%);
  }
  100% {
    transform: translate(0%, 0%);
  }
}

@keyframes updown5 {
  0% {
    transform: translate(0%, 0%);
  }
  50% {
    transform: translate(0%, -40%);
  }
  100% {
    transform: translate(0%, 0%);
  }
}

@keyframes updown6 {
  0% {
    transform: translate(0%, 0%);
  }
  50% {
    transform: translate(0%, 35%);
  }
  100% {
    transform: translate(0%, 0%);
  }
}

.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共通ここまで***/
#section01 {
  padding: 30px 0 0px 0;
  overflow: hidden;
}

#section01 .section__in {
  width: 90%;
  max-width: 1050px;
  margin: 0 auto;
  padding-bottom: 70px;
  position: relative;
}

@media (max-width: 800px) {
  #section01 .section__in {
    padding-bottom: 10vw;
  }
}

#section01 .section__in .scroll {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 9px;
  height: 190px;
  z-index: 10;
}

@media (max-width: 800px) {
  #section01 .section__in .scroll {
    height: 100px;
    width: 8px;
    bottom: -30px;
  }
}

#section01 .section__in .scroll .inline_bar {
  width: 1px;
  height: 130px;
  bottom: 0px;
  position: absolute;
  left: 4px;
  background-color: #000;
}

@media (max-width: 800px) {
  #section01 .section__in .scroll .inline_bar {
    left: 3px;
    height: 50px;
  }
}

#section01 .main_box {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 800px) {
  #section01 .main_box {
    flex-wrap: wrap;
  }
}

#section01 .main_box .text {
  width: 36.2%;
}

@media (max-width: 800px) {
  #section01 .main_box .text {
    width: 75%;
    margin-left: 0%;
    margin-top: -5vw;
    order: 2;
    z-index: 3;
  }
}

#section01 .main_box .text h2 {
  margin-top: 25%;
}

@media (max-width: 800px) {
  #section01 .main_box .text h2 {
    margin-top: 0%;
  }
}

#section01 .main_box .photo {
  width: 56.2%;
  position: relative;
}

@media (max-width: 800px) {
  #section01 .main_box .photo {
    width: 85%;
    margin-left: 15%;
    order: 1;
  }
}

#section01 .main_box .photo figure {
  width: 100%;
  position: relative;
}

#section01 .main_box .photo .copy {
  position: absolute;
  z-index: 10;
  width: 100%;
  text-align: center;
  bottom: 15%;
  left: 0;
  font-weight: 900;
  font-size: 75px;
  opacity: 0;
  transition: all .8s ease-out;
  color: #000;
}

#section01 .main_box .photo .copy.color2 {
  color: #93BD4B;
}

#section01 .main_box .photo .copy.color3 {
  color: #E5583F;
}

#section01 .main_box .photo .copy.active {
  opacity: 1;
}

@media (max-width: 1200px) {
  #section01 .main_box .photo .copy {
    font-size: 6vw;
  }
}

@media (max-width: 800px) {
  #section01 .main_box .photo .copy {
    display: none;
  }
}

#section01 .main_box .photo .base {
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: all 1.2s ease-out;
}

#section01 .main_box .photo .base.active {
  opacity: 1;
}

#section01 .main_box .photo .base2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: all 1.2s ease-out;
}

#section01 .main_box .photo .base2.active {
  opacity: 1;
}

#section01 .main_box .photo .base3 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  opacity: 0;
  transition: all 1.2s ease-out;
}

#section01 .main_box .photo .base3.active {
  opacity: 1;
}

#section01 .copy_sp {
  position: absolute;
  bottom: 11vw;
  right: 5vw;
  font-weight: 900;
  font-size: 8vw;
  z-index: 10;
  display: none;
  opacity: 0;
  transition: all .8s ease-out;
  color: #000;
}

#section01 .copy_sp.color2 {
  color: #93BD4B;
}

#section01 .copy_sp.color3 {
  color: #E5583F;
}

#section01 .copy_sp.active {
  opacity: 1;
}

@media (max-width: 800px) {
  #section01 .copy_sp {
    display: block;
  }
}

#section01 .undersp {
  width: 100%;
  height: 30px;
  background-color: #EDEAE3;
  display: none;
}

@media (max-width: 800px) {
  #section01 .undersp {
    display: block;
  }
}

#section02 {
  background-color: #EDEAE3;
  overflow: hidden;
  width: 100%;
  padding: 170px 0 200px 0;
}

@media (max-width: 800px) {
  #section02 {
    padding: 40px 0 40px 0;
  }
}

#section02 .section__in {
  width: 90%;
  max-width: 990px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 800px) {
  #section02 .section__in {
    flex-wrap: wrap;
  }
}

#section02 .section__in .photo {
  width: 48.3%;
  position: relative;
}

@media (max-width: 800px) {
  #section02 .section__in .photo {
    width: 70%;
    margin-left: 30%;
    order: 2;
    margin-top: -35px;
  }
}

#section02 .section__in .photo figure {
  position: relative;
  margin-bottom: 160px;
}

@media (max-width: 800px) {
  #section02 .section__in .photo figure {
    margin-bottom: 30vw;
  }
}

#section02 .section__in .photo figure .base_on {
  transform: translate(-50%, 50%);
  width: 65%;
  position: absolute;
  bottom: 0%;
  left: 0;
}

#section02 .section__in .text {
  width: 40.4%;
  position: relative;
}

@media (max-width: 800px) {
  #section02 .section__in .text {
    width: 100%;
    order: 1;
    z-index: 10;
  }
}

#section02 .section__in .text .subicon {
  width: 52px;
  line-height: 100%;
  margin-bottom: 28px;
}

@media (max-width: 800px) {
  #section02 .section__in .text .subicon {
    margin-bottom: 15px;
  }
}

#section02 .section__in .text h2 {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 90px;
}

@media (max-width: 800px) {
  #section02 .section__in .text h2 {
    margin-bottom: 40px;
  }
}

#section02 .section__in .text h2 span.big {
  display: inline-block;
  margin-right: 35px;
  font-size: 60px;
  font-weight: 900;
  color: #93BD4B;
}

@media (max-width: 800px) {
  #section02 .section__in .text h2 span.big {
    font-size: 11vw;
    margin-right: 3vw;
  }
}

#section02 .section__in .text h2 span.small {
  display: inline-block;
  padding-top: 5px;
}

#section02 .section__in .text .text01 {
  font-weight: 600;
  line-height: 210%;
  margin-bottom: 70px;
}

@media (max-width: 800px) {
  #section02 .section__in .text .text01 {
    margin-bottom: 40px;
  }
}

#section02 .section__in .text .text01_s {
  line-height: 210%;
}

#section03 {
  background-color: #EDEAE3;
  overflow: hidden;
  width: 100%;
  padding: 25px 0 100px 0;
}

@media (max-width: 800px) {
  #section03 {
    padding: 25px 0 40px 0;
  }
}

#section03 .section__in {
  width: 90%;
  max-width: 990px;
  margin: 0 auto;
}

#section03 .subicon {
  width: 52px;
  line-height: 100%;
  margin-bottom: 28px;
}

@media (max-width: 800px) {
  #section03 .subicon {
    margin-bottom: 15px;
  }
}

#section03 h2 {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 90px;
}

@media (max-width: 800px) {
  #section03 h2 {
    margin-bottom: 40px;
  }
}

#section03 h2 span.big {
  display: inline-block;
  margin-right: 35px;
  font-size: 60px;
  font-weight: 900;
  color: #E5583F;
}

@media (max-width: 800px) {
  #section03 h2 span.big {
    font-size: 11vw;
    margin-right: 3vw;
  }
}

#section03 h2 span.small {
  display: inline-block;
  padding-top: 5px;
}

#section03 .box_flex {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  margin-bottom: 150px;
}

@media (max-width: 800px) {
  #section03 .box_flex {
    margin-bottom: 10vw;
  }
}

#section03 .box_flex h3 {
  width: 14.14%;
  margin-right: 6%;
  position: relative;
}

@media (max-width: 800px) {
  #section03 .box_flex h3 {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 25px;
  }
}

#section03 .box_flex p {
  line-height: 260%;
  font-weight: 500;
  position: relative;
  z-index: 10;
}

#section03 .box_flex figure {
  position: absolute;
  width: 65%;
  right: -18%;
  top: 50%;
  transform: translate(0%, -50%);
}

@media (max-width: 800px) {
  #section03 .box_flex figure {
    position: relative;
    width: 75%;
    right: auto;
    top: auto;
    margin-top: 25px;
    transform: translate(0%, 0%);
  }
}

#section03 ul.list_nom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#section03 ul.list_nom li {
  width: 21.15%;
}

@media (max-width: 800px) {
  #section03 ul.list_nom li {
    width: 48%;
    margin-bottom: 40px;
  }
}

#section03 ul.list_nom li .nom {
  text-align: center;
  font-weight: 900;
}

#section03 ul.list_nom li .subis {
  width: 30px;
  margin: 20px auto;
  line-height: 100%;
}

@media (max-width: 800px) {
  #section03 ul.list_nom li .subis {
    margin: 10px auto;
  }
}

#section03 ul.list_nom li h4 {
  text-align: center;
  color: #E5583F;
}

#section03 ul.list_nom li h4 span.ue {
  font-weight: 700;
  display: block;
  padding-bottom: 8px;
}

@media (max-width: 800px) {
  #section03 ul.list_nom li h4 span.ue {
    padding-bottom: 0px;
  }
}

#section03 ul.list_nom li h4 span.sita {
  font-weight: 700;
  display: block;
}

#section03 ul.list_nom li figure.icon {
  margin: 15px auto;
}

#section03 ul.list_nom li p.text {
  text-align: center;
  line-height: 150%;
}

#section03 ul.list_nom li p.text .sns_link {
  width: 78px;
  display: flex;
  justify-content: space-between;
  margin: 8px auto 0 auto;
}

#section03 ul.list_nom li p.text .sns_link span {
  display: block;
  width: 28px;
}

#section03 .list_nom2 {
  width: 90%;
  max-width: 440px;
  margin: 90px auto 0 auto;
  position: relative;
}

@media (max-width: 800px) {
  #section03 .list_nom2 {
    margin: 0px auto 0 auto;
  }
}

#section03 .list_nom2 .nom {
  text-align: center;
  font-weight: 900;
}

#section03 .list_nom2 .subis {
  width: 30px;
  margin: 20px auto;
  line-height: 100%;
}

@media (max-width: 800px) {
  #section03 .list_nom2 .subis {
    margin: 10px auto;
  }
}

#section03 .list_nom2 h4 {
  text-align: center;
  color: #E5583F;
}

#section03 .list_nom2 h4 span.ue {
  font-weight: 700;
  display: block;
  padding-bottom: 8px;
}

@media (max-width: 800px) {
  #section03 .list_nom2 h4 span.ue {
    padding-bottom: 0px;
  }
}

#section03 .list_nom2 h4 span.sita {
  font-weight: 700;
  display: block;
}

#section03 .list_nom2 .minitext {
  text-align: center;
  padding: 5px 0 12px 0;
}

#section03 .list_nom2 figure.icon {
  width: 100%;
  max-width: 212px;
  margin: 15px auto;
}

@media (max-width: 800px) {
  #section03 .list_nom2 figure.icon {
    width: 48%;
    max-width: 800px;
  }
}

#section03 .list_nom2 p.text {
  text-align: center;
  line-height: 150%;
}

@media (max-width: 800px) {
  #section03 .list_nom2 p.text {
    text-align: left;
  }
}

#section04 {
  width: 100%;
  background-color: #fff;
}

#section04 .section__in {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 0 100px 0;
  position: relative;
}

@media (max-width: 800px) {
  #section04 .section__in {
    padding: 40px 0 40px 0;
  }
}

#section04 h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 25px;
  font-size: 60px;
  font-weight: 900;
  color: #000;
}

@media (max-width: 800px) {
  #section04 h2 {
    font-size: 11vw;
  }
}

#section04 .subtext {
  text-align: center;
}

#section04 .brand_box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 90px;
}

#section04 .brand_box .photo {
  width: 47.9%;
  position: relative;
}

@media (max-width: 800px) {
  #section04 .brand_box .photo {
    width: 80%;
    margin: 0 auto 30px auto;
    order: 1;
  }
}

#section04 .brand_box .photo figure {
  position: relative;
}

#section04 .brand_box .photo figure .iconbox {
  position: absolute;
  width: 115px;
  height: 115px;
  background-color: #fff;
  border-radius: 50%;
  top: -10px;
  left: -10px;
  display: flex;
  align-items: center;
}

@media (max-width: 800px) {
  #section04 .brand_box .photo figure .iconbox {
    width: 80px;
    height: 80px;
  }
}

#section04 .brand_box .photo figure .iconbox span {
  width: 100%;
  display: block;
  text-align: center;
  font-size: 34px;
  font-weight: 900;
  padding-top: 15px;
}

@media (max-width: 800px) {
  #section04 .brand_box .photo figure .iconbox span {
    font-size: 22px;
    font-weight: 900;
    padding-top: 11px;
  }
}

#section04 .brand_box .photo figure .iconbox div.iconimg {
  width: 40%;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0%);
}

@media (max-width: 800px) {
  #section04 .brand_box .photo figure .iconbox div.iconimg {
    top: 10px;
  }
}

#section04 .brand_box .text {
  width: 43.75%;
}

@media (max-width: 800px) {
  #section04 .brand_box .text {
    width: 100%;
    margin: 0 auto 0px auto;
    order: 2;
  }
}

#section04 .brand_box .text .logo_a {
  width: 60%;
  max-width: 235px;
}

@media (max-width: 800px) {
  #section04 .brand_box .text .logo_a {
    margin: 0 auto 0px auto;
    max-width: 800px;
  }
}

#section04 .brand_box .text .logo_b {
  width: 75%;
  max-width: 290px;
}

@media (max-width: 800px) {
  #section04 .brand_box .text .logo_b {
    margin: 0 auto 0px auto;
    max-width: 800px;
  }
}

#section04 .brand_box .text h5 {
  color: #E49642;
  font-weight: 600;
  margin: 40px auto 40px 0;
}

@media (max-width: 800px) {
  #section04 .brand_box .text h5 {
    margin: 20px 0;
  }
}

#section04 .brand_box .text p.text01 {
  line-height: 180%;
  margin-bottom: 25px;
  color: #646464;
}

#section04 .brand_box .text ul.mri {
  width: 100%;
  margin-bottom: 40px;
}

@media (max-width: 800px) {
  #section04 .brand_box .text ul.mri {
    margin-bottom: 20px;
  }
}

#section04 .brand_box .text ul.mri li {
  width: 100%;
  font-weight: 600;
  padding-bottom: 5px;
  line-height: 125%;
}

#section05 {
  background-color: #DDD7C9;
  overflow: hidden;
  width: 100%;
  padding: 100px 0 100px 0;
}

@media (max-width: 800px) {
  #section05 {
    padding: 40px 0 40px 0;
  }
}

#section05 .section__in {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

#section05 .subicon {
  width: 52px;
  line-height: 100%;
  margin-bottom: 28px;
}

@media (max-width: 800px) {
  #section05 .subicon {
    margin-bottom: 15px;
  }
}

#section05 h2 {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 90px;
}

@media (max-width: 800px) {
  #section05 h2 {
    margin-bottom: 40px;
    justify-content: flex-start;
  }
}

#section05 h2 span.big {
  display: inline-block;
  margin-right: 35px;
  font-size: 60px;
  font-weight: 900;
  color: #E5583F;
}

@media (max-width: 800px) {
  #section05 h2 span.big {
    font-size: 11vw;
    margin-right: 3vw;
  }
}

#section05 h2 span.small {
  display: inline-block;
  padding-top: 5px;
}

#section05 .qa_box {
  width: 100%;
  max-width: 735px;
  position: relative;
}

#section05 .qa_box .text_q {
  width: 100%;
  margin-bottom: 25px;
  display: flex;
  justify-content: flex-start;
  color: #646464;
}

@media (max-width: 800px) {
  #section05 .qa_box .text_q {
    margin-bottom: 15px;
  }
}

#section05 .qa_box .text_q .mid {
  width: 70px;
  line-height: 160%;
  color: #E5583F;
  font-weight: 900;
}

@media (max-width: 800px) {
  #section05 .qa_box .text_q .mid {
    width: 10vw;
  }
}

#section05 .qa_box .text_q .textin {
  line-height: 180%;
  width: calc(100% - 70px);
  font-weight: 600;
}

@media (max-width: 800px) {
  #section05 .qa_box .text_q .textin {
    width: calc(100% - 10vw);
    line-height: 150%;
  }
}

#section05 .qa_box .text_a {
  width: 100%;
  margin-bottom: 90px;
  display: flex;
  justify-content: flex-start;
  color: #646464;
}

@media (max-width: 800px) {
  #section05 .qa_box .text_a {
    margin-bottom: 40px;
  }
}

#section05 .qa_box .text_a .mid {
  width: 70px;
  line-height: 160%;
  color: #E5583F;
  font-weight: 900;
}

@media (max-width: 800px) {
  #section05 .qa_box .text_a .mid {
    width: 10vw;
  }
}

#section05 .qa_box .text_a .textin {
  line-height: 180%;
  width: calc(100% - 70px);
}

@media (max-width: 800px) {
  #section05 .qa_box .text_a .textin {
    width: calc(100% - 10vw);
  }
}

#section06 {
  background-color: #EDEAE3;
  width: 100%;
}

#section06 .section__in {
  width: 90%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 100px 0 100px 0;
  position: relative;
}

@media (max-width: 800px) {
  #section06 .section__in {
    padding: 40px 0 40px 0;
  }
}

#section06 .subicon {
  width: 52px;
  line-height: 100%;
  margin: 0 auto 28px auto;
}

@media (max-width: 800px) {
  #section06 .subicon {
    margin: 0 auto 15px 0;
  }
}

#section06 h2 {
  width: 100%;
  margin-bottom: 90px;
}

@media (max-width: 800px) {
  #section06 h2 {
    margin-bottom: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}

#section06 h2 span.big {
  display: block;
  font-size: 60px;
  font-weight: 900;
  color: #E49642;
  text-align: center;
  padding-bottom: 10px;
}

@media (max-width: 800px) {
  #section06 h2 span.big {
    font-size: 11vw;
    margin-right: 3vw;
    padding-bottom: 0px;
  }
}

#section06 h2 span.small {
  display: block;
  padding-top: 35px;
  text-align: center;
}

@media (max-width: 800px) {
  #section06 h2 span.small {
    padding-top: 8px;
  }
}

#section06 .mes_box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

#section06 .mes_box .photo {
  width: 45.7%;
}

@media (max-width: 800px) {
  #section06 .mes_box .photo {
    width: 80%;
    margin: 0 auto 20px auto;
  }
}

#section06 .mes_box .photo figure {
  width: 115%;
  margin-left: -15%;
}

@media (max-width: 800px) {
  #section06 .mes_box .photo figure {
    width: 100%;
    margin-left: 0%;
  }
}

#section06 .mes_box .text {
  width: 45%;
}

@media (max-width: 800px) {
  #section06 .mes_box .text {
    width: 100%;
  }
}

#section06 .mes_box .text .text01 {
  color: #646464;
  line-height: 210%;
  margin-bottom: 30px;
}

#section07 {
  background-color: #fff;
  overflow: hidden;
  width: 100%;
}

#section07 .section__in {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 0 350px 0;
}

@media (max-width: 800px) {
  #section07 .section__in {
    padding: 50px 0 30vw;
  }
}

#section07 .subicon {
  width: 52px;
  line-height: 100%;
  margin-bottom: 28px;
}

@media (max-width: 800px) {
  #section07 .subicon {
    margin-bottom: 15px;
  }
}

#section07 h2 {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 90px;
}

@media (max-width: 800px) {
  #section07 h2 {
    margin-bottom: 40px;
    justify-content: flex-start;
  }
}

#section07 h2 span.big {
  display: inline-block;
  margin-right: 35px;
  font-size: 60px;
  font-weight: 900;
  color: #93BD4B;
}

@media (max-width: 800px) {
  #section07 h2 span.big {
    font-size: 11vw;
    margin-right: 3vw;
  }
}

#section07 h2 span.small {
  display: inline-block;
  padding-top: 5px;
  position: relative;
}

#section07 h2 span.small::after {
  content: "";
  position: absolute;
  top: 60%;
  height: 1px;
  width: 100vw;
  background-color: #646464;
  left: 120%;
}

@media (max-width: 800px) {
  #section07 h2 span.small::after {
    content: none;
  }
}

#section07 .in_contena {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  color: #646464;
}

#section07 .in_contena dl {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

@media (max-width: 800px) {
  #section07 .in_contena dl {
    margin-bottom: 40px;
  }
}

#section07 .in_contena dl dt {
  width: 170px;
  padding-bottom: 15px;
}

@media (max-width: 800px) {
  #section07 .in_contena dl dt {
    width: 22.5vw;
  }
}

#section07 .in_contena dl dd {
  width: calc(100% - 170px);
  padding-bottom: 15px;
}

@media (max-width: 800px) {
  #section07 .in_contena dl dd {
    width: calc(100% - 22.5vw);
  }
}

#section07 .in_contena dl dd a {
  color: #646464;
}

#section07 .googlemap_contean {
  width: 100%;
  height: 300px;
  position: relative;
}

#section07 .googlemap_contean iframe {
  width: 100%;
  height: 300px;
  position: relative;
  z-index: 10;
}

#section07_under {
  width: 100%;
  height: 0px;
  position: relative;
}

#section07_under .section__in {
  width: 90%;
  max-width: 1100px;
  position: relative;
  margin: 0 auto;
}

#section07_under .section__in .item01 {
  position: absolute;
  left: 0;
  top: 0;
  width: 31%;
  transform: translate(0%, -50%);
}

#section07_under .section__in .item02 {
  position: absolute;
  left: 50%;
  top: 0;
  width: 31%;
  transform: translate(-50%, -50%);
}

#section07_under .section__in .item03 {
  position: absolute;
  right: 0;
  top: 0;
  width: 31%;
  transform: translate(0%, -50%);
}

#section08 {
  width: 100%;
  padding: 300px 0 100px;
  background-color: #DDD7C9;
}

@media (max-width: 800px) {
  #section08 {
    padding: 30vw 0 50px;
  }
}

#section08 .section__in {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

#section08 .subicon {
  width: 52px;
  line-height: 100%;
  margin: 0 auto 28px auto;
}

@media (max-width: 800px) {
  #section08 .subicon {
    margin: 0 auto 15px 0;
  }
}

#section08 h2 {
  width: 100%;
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  #section08 h2 {
    margin-bottom: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}

#section08 h2 span.big {
  display: block;
  font-size: 60px;
  font-weight: 900;
  color: #E49642;
  text-align: center;
  padding-bottom: 10px;
}

@media (max-width: 800px) {
  #section08 h2 span.big {
    font-size: 11vw;
    margin-right: 3vw;
    padding-bottom: 0px;
  }
}

#section08 h2 span.small {
  display: block;
  padding-top: 35px;
  text-align: center;
}

@media (max-width: 800px) {
  #section08 h2 span.small {
    padding-top: 8px;
  }
}

#section08 .in_contena {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  color: #646464;
}

#section08 dl {
  color: #000;
}

#section08 dl dt {
  margin-bottom: 12px;
}

#section08 dl dd {
  margin-bottom: 20px;
}

#section08 .indispensable {
  background-color: #f00;
  color: #fff;
  display: inline-block;
  padding: 2px 5px 3px 5px;
  margin-left: 5px;
  line-height: 100%;
  font-size: 10px;
  vertical-align: 2px;
}

#section08 .longred {
  display: inline-block;
  width: 1.5em;
  height: 0.8em;
  background-color: #f00;
  margin-right: 5px;
}

#section08 .error {
  color: #f00;
}


#section10 {
  width: 100%;
  background-color: #fff;
}

#section10 .section__in {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 0 100px 0;
  position: relative;
}

@media (max-width: 800px) {
  #section10 .section__in {
    padding: 40px 0 40px 0;
  }
}

#section10 h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 25px;
  font-size: 60px;
  font-weight: 900;
  color: #000;
}

@media (max-width: 800px) {
  #section10 h2 {
    font-size: 11vw;
  }
}

#section10 .subtext {
  text-align: center;
}

#section10 .link_flex {
    width: 90%;
    max-width: 1100px;
    margin: 30px auto 0 auto;
    display: flex;
    flex-wrap: wrap;
}

#section10 .link_flex li {
    width: 24%;
    margin-bottom: 15px;
    margin-right: 1.33%;
    border: 1px solid #ccc;
}

@media (max-width: 800px) {
    #section10 .link_flex li {
        width: 47.5%;
        margin-bottom: 3vw;
    }
}

#section10 .link_flex li:nth-child(4n) {
    margin-right: 0%;
}

@media (max-width: 800px) {
    #section10 .link_flex li:nth-child(2n) {
        margin-right: 0;
    }
}

#botan_waku01 {
  width: 230px;
}

@media (max-width: 800px) {
  #botan_waku01 {
    width: 70%;
    margin: 0 auto;
  }
}

#botan_waku01 .linkbotan {
  width: 100%;
  display: inline-block;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 40px;
  color: #fff;
  padding: 18px 0 20px 0;
  position: relative;
  line-height: 100%;
  text-align: center;
  transition: all .4s ease-out;
  position: relative;
}

#botan_waku01 .linkbotan:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}

#botan_waku01 .linkbotan::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 13px;
  height: 15px;
  background-image: url(../images/icon_yaji.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translate(0%, -50%);
}

#botan_waku01 .linkbotan:hover::after {
  background-image: url(../images/icon_yaji2.png);
}

.error_text {
  text-align: center;
  margin: 30px 0 20px 0;
  color: #000;
}

.error_text span {
  color: #f00;
}

#botans {
  text-align: center;
  width: 100%;
  margin: 0 auto 0 auto;
}

.ponsbox01 {
  width: 76.3%;
  margin-left: auto;
  margin-top: 80px;
}

@media (max-width: 800px) {
  .ponsbox01 {
    width: 60%;
    margin-left: -8vw;
    margin-top: 10vw;
  }
}

.ponsbox02 {
  width: 100px;
  position: absolute;
  top: 130px;
  left: -150px;
}

@media (max-width: 800px) {
  .ponsbox02 {
    display: none;
  }
}

.ponsbox03 {
  width: 120px;
  position: absolute;
  top: 0px;
  right: 10px;
}

@media (max-width: 800px) {
  .ponsbox03 {
    width: 20%;
    position: absolute;
    top: 20%;
    left: -20vw;
  }
}

.ponsbox04 {
  width: 90px;
  position: absolute;
  top: 98%;
  left: 100%;
}

@media (max-width: 800px) {
  .ponsbox04 {
    width: 33%;
    position: absolute;
    top: 105%;
    left: 75%;
  }
}

.ponsbox05 {
  width: 100px;
  position: absolute;
  top: 50px;
  left: -150px;
}

@media (max-width: 800px) {
  .ponsbox05 {
    display: none;
  }
}

.ponsbox06 {
  width: 170px;
  position: absolute;
  top: 105%;
  left: 100%;
}

@media (max-width: 800px) {
  .ponsbox06 {
    display: none;
  }
}

.ponsbox07 {
  width: 58%;
  position: absolute;
  top: 13%;
  left: 86%;
  display: none;
}

@media (max-width: 800px) {
  .ponsbox07 {
    display: block;
  }
}

.ponsbox08 {
  width: 62%;
  position: absolute;
  top: 5%;
  right: 135%;
}

@media (max-width: 800px) {
  .ponsbox08 {
    width: 30%;
    position: absolute;
    top: 55%;
    right: -15%;
  }
}

.ponsbox09 {
  width: 168px;
  position: absolute;
  bottom: 0%;
  left: 0%;
  transform: translate(-50%, 50%);
}

@media (max-width: 800px) {
  .ponsbox09 {
    display: none;
  }
}

.ponsbox10 {
  width: 290px;
  position: absolute;
  top: 50%;
  left: 110%;
  /*transform: translate(-50%, 50%);*/
}

@media (max-width: 800px) {
  .ponsbox10 {
    display: none;
  }
}

.ponsbox11 {
  width: 175px;
  position: absolute;
  top: 100%;
  right: 100%;
  transform: translate(0%, -50%);
}

@media (max-width: 800px) {
  .ponsbox11 {
    display: none;
  }
}

.ponsbox12 {
  width: 300px;
  position: absolute;
  top: 100%;
  left: 90%;
  transform: translate(0%, -30%);
}

@media (max-width: 800px) {
  .ponsbox12 {
    width: 35%;
    left: 75%;
    transform: translate(0%, -40%);
  }
}

.pons {
  width: 100%;
  position: relative;
}

.pons .pon1 {
  position: relative;
}

.pons .pon2 {
  position: absolute;
  top: 0;
  left: 0;
}

.pons .pon3 {
  position: absolute;
  top: 0;
  left: 0;
}
