@charset "UTF-8";
body {
  overflow-x: hidden;
  background: #fff;
}

.wrapper.guide,
.guide main.main {
  overflow: visible;
}
@media (max-width: 768px) {
  .wrapper.guide,
.guide main.main {
    overflow: hidden;
  }
}

body.inview {
  background: #fff;
}

@supports (-webkit-touch-callout: none) {
  html {
    height: -webkit-fill-available;
  }
}
h2,
h3,
h4,
span,
p,
a {
  color: #000;
  font-weight: 500;
  font-style: normal;
  font-family: "A1ゴシック M", "A1 Gothic M";
  line-height: 1.8;
}

p, span, a {
  font-size: 17px;
}
@media (max-width: 768px) {
  p, span, a {
    font-size: 15px;
  }
}

.text-color-orange {
  color: #ffa326;
}

.text-color-green {
  color: #46cfb8;
}

.text-color-pink {
  color: #ea7eac;
}

.link-btn-more {
  display: block;
  margin: 30px auto;
  padding: 4px;
  padding: 8px 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
  background: #3c3c3c;
  color: #fff;
  font-size: 16px;
}
@media (max-width: 768px) {
  .link-btn-more {
    border-radius: 32px;
  }
}

.guide {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  background: #fff;
  color: #fff;
}
.guide .main {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: none;
}
@media (max-width: 768px) {
  .guide .main {
    margin: 0;
  }
}
.guide .sec__heading {
  margin: 0 auto;
  text-align: center;
}
.guide .top-first-view {
  position: relative;
  margin: 0 auto;
  margin-bottom: 90px;
  max-width: 1100px;
  width: 80%;
}
@media (max-width: 768px) {
  .guide .top-first-view {
    margin-bottom: 40px;
    width: 100%;
  }
}
.guide .heading__img__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  max-height: 550px;
  background-position: center;
  background-size: cover;
  pointer-events: none;
}
@media (max-width: 768px) {
  .guide .heading__img__wrapper {
    margin-top: 0;
    margin-bottom: 40px;
    padding: 0;
    height: auto;
  }
}
@media (min-width: 1400px) {
  .guide .heading__img__wrapper {
    max-height: none;
  }
}
.guide .heading__img__wrapper .heading__img {
  margin-top: 0;
  min-width: 1400px;
}
@media (max-width: 768px) {
  .guide .heading__img__wrapper .heading__img {
    margin-top: 0;
    min-width: 420px;
  }
}
@media (min-width: 1400px) {
  .guide .heading__img__wrapper .heading__img {
    max-width: none !important;
    width: 100vw !important;
  }
}
.guide .heading__img__wrapper img {
  position: relative;
  left: 50%;
  min-width: 1600px;
  width: 100%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .guide .heading__img__wrapper img {
    margin-top: 0;
    height: auto;
  }
}
.guide .fixed__wrapper {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  display: block;
  margin: 0 auto;
  width: auto;
  height: 100%;
  text-align: right;
}
.guide .fixed__wrapper .first-view-text {
  position: absolute;
  top: 100px;
  right: 0;
}
@media (max-width: 768px) {
  .guide .fixed__wrapper .first-view-text {
    top: 120px;
  }
}
.guide .fixed__wrapper .first-view-text .first-view-text-bg {
  display: block;
  color: #fff;
  font-size: 44px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .guide .fixed__wrapper .first-view-text .first-view-text-bg {
    font-size: 36px;
  }
}
.guide .grand-open--img {
  position: absolute;
  bottom: -74px;
  left: 0;
  width: 180px;
}
@media (max-width: 768px) {
  .guide .grand-open--img {
    bottom: -36px;
    left: 8px;
    width: 130px;
  }
}
.guide .scroll__wrapper {
  position: absolute;
  right: 0;
  bottom: 40px;
}
.guide .scroll__wrapper span {
  position: relative;
  color: #fff;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 14px;
}
.guide .scroll__wrapper span::after {
  position: absolute;
  bottom: -128px;
  left: calc(50% - 1px);
  display: block;
  width: 1px;
  height: 120px;
  background: #4d7d37;
  content: "";
  transform-origin: top;
  -webkit-animation: flow 2.5s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: flow 2.5s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
  mix-blend-mode: exclusion;
}
.guide .scroll__wrapper span::before {
  position: absolute;
  bottom: -8px;
  left: calc(50% - 1px);
  display: none;
  width: 8px;
  height: 8px;
  background: #e1dcc2;
  content: "";
  transform-origin: top;
  -webkit-animation: flowtranslate 2.5s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: flowtranslate 2.5s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 100% 0%);
  clip-path: polygon(0% 0%, 0% 100%, 100% 0%);
}
@-webkit-keyframes flow {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes flow {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes flowtranslate {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(80px);
  }
}
@keyframes flowtranslate {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(80px);
  }
}
.guide section {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 140px 0;
  padding-top: 140px;
  padding-bottom: 140px;
  background: #fff;
}
@media (max-width: 768px) {
  .guide section {
    margin-top: 0;
    margin-bottom: 0px;
    padding: 140px 0;
    padding-top: 100px;
    padding-bottom: 100px;
    width: 100%;
  }
}
.guide section .sec-heading {
  text-align: center;
  font-size: 32px;
  line-height: 1;
}
@media (max-width: 768px) {
  .guide section .sec-heading {
    font-size: 28px;
  }
}
.guide section .sec-heading-desc {
  display: block;
  text-align: center;
  font-size: 14px;
}
@media (max-width: 768px) {
  .guide section .sec-heading-desc {
    margin-bottom: 16px;
  }
}
.guide section .heading-mask01,
.guide section .heading-mask02 {
  position: absolute;
  top: -16px;
  left: calc(50% - 22px);
  z-index: -1;
  max-width: 70px;
  width: 8%;
  height: 70px;
  background-color: #6cba5a;
  background-position: -100% -150%, 100% -150%;
  background-size: 150%;
  background-repeat: repeat-x;
  transform: translate(-50%, 0%);
  -webkit-mask-image: url(../img/common/heading-bg-mask01.png);
  mask-image: url(../img/common/heading-bg-mask01.png);
  -webkit-mask-position-y: center;
  mask-position-y: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: 100%;
}
@media (max-width: 768px) {
  .guide section .heading-mask01,
.guide section .heading-mask02 {
    width: 14%;
  }
}
.guide section .heading-mask02 {
  top: -10px;
  left: calc(50% + 22px);
  z-index: -2;
  background-color: #fccf00;
  -webkit-mask-image: url(../img/common/heading-bg-mask02.png);
  mask-image: url(../img/common/heading-bg-mask02.png);
}
.guide .sec01 {
  padding: 40px 0;
}
.guide .sec01 .fixed__wrapper {
  max-width: 1000px;
  width: 80%;
}
@media (max-width: 768px) {
  .guide .sec01 .fixed__wrapper {
    width: 100%;
  }
}
.guide .sec01 .heading__wrapper {
  position: relative;
  margin-bottom: 140px;
}
@media (max-width: 768px) {
  .guide .sec01 .heading__wrapper {
    margin-bottom: 50px;
  }
}
.guide .sec01 .heading__wrapper .sec-heading {
  color: #4d7d37;
  text-align: left;
  font-size: 32px;
  font-family: "A1ゴシック B", "A1 Gothic B";
}
@media (max-width: 768px) {
  .guide .sec01 .heading__wrapper .sec-heading {
    margin: 0 auto;
    text-align: center;
    font-size: 26px;
  }
}
.guide .sec01 .heading__wrapper .heading--bg {
  position: absolute;
  top: -90px;
  left: -48px;
  color: #4d7d37;
  font-weight: 800;
  font-style: normal;
  font-size: 72px;
  font-family: "avenir-lt-pro", sans-serif;
  opacity: 0.15;
}
@media (max-width: 768px) {
  .guide .sec01 .heading__wrapper .heading--bg {
    top: -42px;
    /* position: relative; */
    left: 50%;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 40px;
    line-height: 1.4;
    transform: translateX(-50%);
  }
}
.guide .flex--content {
  justify-content: space-between;
  align-items: flex-start;
  box-sizing: border-box;
  padding: 0 16px;
}
.guide .fixed__wrapper .flex--content {
  align-items: stretch;
}
@media (max-width: 768px) {
  .guide .fixed__wrapper .flex--content {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .guide .fixed__wrapper .flex--content {
    display: block;
  }
}
.guide .fixed__wrapper .flex--content .sticky__nav {
  margin-bottom: 90px;
  max-width: 280px;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .guide .fixed__wrapper .flex--content .sticky__nav {
    display: none;
  }
}
.guide .fixed__wrapper .flex--content .sticky__nav .links {
  position: -webkit-sticky;
  position: sticky;
  top: 160px;
  margin-bottom: 230px;
}
.guide .fixed__wrapper .flex--content .sticky__nav a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  padding: 4px 16px;
  border-bottom: solid #4d7d37 0.7px;
}
.guide .fixed__wrapper .flex--content .sticky__nav a:hover .icon {
  transform: translateX(16px);
}
.guide .fixed__wrapper .flex--content .sticky__nav a .floor {
  margin-right: 12px;
  width: 50px;
}
.guide .fixed__wrapper .flex--content .sticky__nav a span {
  font-size: 15px;
  font-family: "A1ゴシック B", "A1 Gothic B";
}
.guide .fixed__wrapper .flex--content .sticky__nav a .icon {
  position: absolute;
  right: 16px;
  width: 44px;
  transition: 0.2s;
}
.guide .fixed__wrapper .flex--content .sections {
  max-width: 800px;
  width: calc(100% - 320px);
  text-align: left;
}
@media (max-width: 768px) {
  .guide .fixed__wrapper .flex--content .sections {
    width: 100%;
  }
}
.guide .sec02 .fixed__wrapper,
.guide .sec03 .fixed__wrapper,
.guide .sec04 .fixed__wrapper {
  text-align: left;
}
@media (max-width: 768px) {
  .guide .sec02 .fixed__wrapper,
.guide .sec03 .fixed__wrapper,
.guide .sec04 .fixed__wrapper {
    padding: 0;
  }
}
.guide .sec02 .flex01,
.guide .sec03 .flex01,
.guide .sec04 .flex01 {
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .guide .sec02 .flex01,
.guide .sec03 .flex01,
.guide .sec04 .flex01 {
    display: block;
    margin-bottom: 28px;
  }
}
.guide .sec02 .flex01 .heading__wrapper,
.guide .sec03 .flex01 .heading__wrapper,
.guide .sec04 .flex01 .heading__wrapper {
  margin-right: 20px;
  max-width: 110px;
}
@media (max-width: 768px) {
  .guide .sec02 .flex01 .heading__wrapper,
.guide .sec03 .flex01 .heading__wrapper,
.guide .sec04 .flex01 .heading__wrapper {
    margin: 0 auto;
    margin-bottom: 20px;
    max-width: 230px;
  }
}
.guide .sec02 .flex01 .heading__wrapper img,
.guide .sec03 .flex01 .heading__wrapper img,
.guide .sec04 .flex01 .heading__wrapper img {
  width: 100px;
  vertical-align: middle;
}
.guide .sec02 .flex01 .heading__wrapper .spView,
.guide .sec03 .flex01 .heading__wrapper .spView,
.guide .sec04 .flex01 .heading__wrapper .spView {
  margin: 0 auto;
  padding: 5px 16px;
  max-width: 150px;
  border-radius: 32px;
  background: #4d7d37;
  background-color: #edb817;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-family: "A1ゴシック B", "A1 Gothic B";
}
.guide .sec02 .flex01 .box:last-child img,
.guide .sec03 .flex01 .box:last-child img,
.guide .sec04 .flex01 .box:last-child img {
  display: block;
  margin: 0 auto;
  margin-bottom: 12px;
  max-width: 56px;
  width: 60%;
}
@media (max-width: 768px) {
  .guide .sec02 .flex01 .box:last-child img,
.guide .sec03 .flex01 .box:last-child img,
.guide .sec04 .flex01 .box:last-child img {
    margin-bottom: 16px;
    max-width: 130px;
  }
}
.guide .sec02 .flex01 .box:last-child h2,
.guide .sec03 .flex01 .box:last-child h2,
.guide .sec04 .flex01 .box:last-child h2 {
  color: #4d4d4d;
  font-size: 32px;
  font-family: "A1ゴシック B", "A1 Gothic B";
}
@media (max-width: 768px) {
  .guide .sec02 .flex01 .box:last-child h2,
.guide .sec03 .flex01 .box:last-child h2,
.guide .sec04 .flex01 .box:last-child h2 {
    font-size: 26px;
  }
}
.guide .sec02 .img__wrapper,
.guide .sec03 .img__wrapper,
.guide .sec04 .img__wrapper {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .guide .sec02 .img__wrapper,
.guide .sec03 .img__wrapper,
.guide .sec04 .img__wrapper {
    margin-bottom: 30px;
    padding-bottom: 0px;
  }
}
.guide .sec02 .img__wrapper::before,
.guide .sec03 .img__wrapper::before,
.guide .sec04 .img__wrapper::before {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 40%;
  height: 50%;
  background: url(../img/top/sec02-img--bg.jpg);
  background-size: cover;
  content: "";
  opacity: 0.4;
}
@media (max-width: 768px) {
  .guide .sec02 .img__wrapper::before,
.guide .sec03 .img__wrapper::before,
.guide .sec04 .img__wrapper::before {
    display: none;
  }
}
.guide .sec02 .img__wrapper img,
.guide .sec03 .img__wrapper img,
.guide .sec04 .img__wrapper img {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 0 0 auto;
  width: 85%;
}
@media (max-width: 768px) {
  .guide .sec02 .img__wrapper img,
.guide .sec03 .img__wrapper img,
.guide .sec04 .img__wrapper img {
    width: 100%;
  }
}
.guide .sec02 .description__wrapper,
.guide .sec03 .description__wrapper,
.guide .sec04 .description__wrapper {
  margin: 0 auto;
  margin-bottom: 40px;
  max-width: 800px;
}
.guide .sec02 .description__wrapper h3,
.guide .sec03 .description__wrapper h3,
.guide .sec04 .description__wrapper h3 {
  margin-bottom: 30px;
  color: #4d7d37;
  font-size: 28px;
  font-family: "A1ゴシック B", "A1 Gothic B";
}
@media (max-width: 768px) {
  .guide .sec02 .description__wrapper h3,
.guide .sec03 .description__wrapper h3,
.guide .sec04 .description__wrapper h3 {
    margin-bottom: 26px;
    font-size: 17px;
    line-height: 1.7;
  }
}
.guide .sec02 .description__wrapper p,
.guide .sec03 .description__wrapper p,
.guide .sec04 .description__wrapper p {
  line-height: 2.2;
}
@media (max-width: 768px) {
  .guide .sec02 .description__wrapper p,
.guide .sec03 .description__wrapper p,
.guide .sec04 .description__wrapper p {
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.8;
  }
}
.guide .sec02 .info__wrapper,
.guide .sec03 .info__wrapper,
.guide .sec04 .info__wrapper {
  margin-bottom: 90px;
}
.guide .sec02 .info__wrapper .flex,
.guide .sec03 .info__wrapper .flex,
.guide .sec04 .info__wrapper .flex {
  align-items: stretch;
  box-sizing: border-box;
  border: solid #c9c9c9 1px;
}
@media (max-width: 768px) {
  .guide .sec02 .info__wrapper .flex,
.guide .sec03 .info__wrapper .flex,
.guide .sec04 .info__wrapper .flex {
    align-items: stretch;
  }
}
.guide .sec02 .info__wrapper .flex p,
.guide .sec03 .info__wrapper .flex p,
.guide .sec04 .info__wrapper .flex p {
  margin: 0;
  padding: 10px 0;
  color: #000;
}
@media (max-width: 768px) {
  .guide .sec02 .info__wrapper .flex p,
.guide .sec03 .info__wrapper .flex p,
.guide .sec04 .info__wrapper .flex p {
    font-size: 14px;
  }
}
.guide .sec02 .info__wrapper .flex .bg--yellow,
.guide .sec03 .info__wrapper .flex .bg--yellow,
.guide .sec04 .info__wrapper .flex .bg--yellow {
  align-content: center;
  width: 20%;
  background: #edf5c3;
  text-align: center;
}
@media (max-width: 768px) {
  .guide .sec02 .info__wrapper .flex .bg--yellow,
.guide .sec03 .info__wrapper .flex .bg--yellow,
.guide .sec04 .info__wrapper .flex .bg--yellow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38%;
  }
}
.guide .sec02 .info__wrapper .flex .bg--white,
.guide .sec03 .info__wrapper .flex .bg--white,
.guide .sec04 .info__wrapper .flex .bg--white {
  padding-right: 1em;
  padding-left: 2em;
  width: 80%;
  background: #fff;
  text-align: left;
}
@media (max-width: 768px) {
  .guide .sec02 .info__wrapper .flex .bg--white,
.guide .sec03 .info__wrapper .flex .bg--white,
.guide .sec04 .info__wrapper .flex .bg--white {
    padding-left: 1em;
    width: 62%;
  }
}
.guide .sec02 .map__wrapper .bg--green,
.guide .sec03 .map__wrapper .bg--green,
.guide .sec04 .map__wrapper .bg--green {
  display: block;
  margin: 0 auto;
  margin-bottom: 30px;
  padding: 12px 0;
  max-width: 250px;
  width: 100%;
  border-radius: 32px;
  background: #72975f;
  color: #fff;
  text-align: center;
  font-size: 18px;
}
@media (max-width: 768px) {
  .guide .sec02 .map__wrapper .bg--green,
.guide .sec03 .map__wrapper .bg--green,
.guide .sec04 .map__wrapper .bg--green {
    margin: 0 auto;
    margin-bottom: 30px;
    padding: 5px 16px;
    max-width: 150px;
    background: #4d7d37;
  }
}
.guide .sec02 .map__wrapper .btn,
.guide .sec03 .map__wrapper .btn,
.guide .sec04 .map__wrapper .btn {
  display: block;
  margin: 0 auto;
  margin-bottom: 30px;
  padding: 4px 0;
  width: calc(25% - 10px);
  border-radius: 32px;
  background-color: #808080;
  color: #fff;
  /* max-width: 250px; */
  text-align: center;
  cursor: pointer;
}
@media (max-width: 768px) {
  .guide .sec02 .map__wrapper .btn,
.guide .sec03 .map__wrapper .btn,
.guide .sec04 .map__wrapper .btn {
    padding: 0px 0;
    width: calc(25% - 6px);
  }
}
.guide .sec02 .map__wrapper .btn.active,
.guide .sec03 .map__wrapper .btn.active,
.guide .sec04 .map__wrapper .btn.active {
  background-color: #72975f;
}
.guide .sec02 .map__wrapper .btn p,
.guide .sec03 .map__wrapper .btn p,
.guide .sec04 .map__wrapper .btn p {
  margin: 0;
  color: #fff;
  font-family: "A1ゴシック B", "A1 Gothic B";
}
.guide .sec02 .map__wrapper .map,
.guide .sec03 .map__wrapper .map,
.guide .sec04 .map__wrapper .map {
  display: none;
  margin: 0 auto;
  max-width: 600px;
}
.guide .sec02 .map__wrapper .map.active,
.guide .sec03 .map__wrapper .map.active,
.guide .sec04 .map__wrapper .map.active {
  display: block;
}
.guide .sec02 {
  padding-top: 0;
  padding-bottom: 0;
}
.guide .sec02 .flex01 .box:last-child img {
  max-width: 56px;
}
@media (max-width: 768px) {
  .guide .sec02 .flex01 .box:last-child img {
    margin-bottom: 6px;
    max-width: 44px;
  }
}
@media (max-width: 768px) {
  .guide .sec03 {
    padding-bottom: 0px;
  }
}
.guide .sec03 .flex01 .box:last-child img {
  max-width: 200px;
  width: 200%;
}
@media (max-width: 768px) {
  .guide .sec03 .flex01 .box:last-child img {
    margin-bottom: 6px;
    max-width: 180px;
  }
}
.guide .sec03 .map__wrapper .guide--btn {
  justify-content: center;
}
.guide .sec03 .map__wrapper .guide--btn .btn {
  margin: 0 20px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .guide .sec04 {
    padding-bottom: 20px;
  }
}
.guide .sec04 .flex01 .box:last-child img {
  max-width: 180px;
  width: 180%;
}
@media (max-width: 768px) {
  .guide .sec04 .flex01 .box:last-child img {
    margin-bottom: 6px;
    max-width: 150px;
  }
}
.guide .sec05 {
  padding: 70px 0;
  background: url(../img/guide/sec05--bg.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
}
@media (max-width: 768px) {
  .guide .sec05 {
    box-sizing: border-box;
    margin: 0 16px;
    padding: 32px 0;
    width: calc(100% - 32px);
    border-radius: 20px;
  }
}
.guide .sec05 p.bg--brown {
  margin: 0 auto;
  margin-bottom: 40px;
  padding: 4px 0;
  max-width: 220px;
  border-radius: 32px;
  background: #e1dcc2;
  color: #6f6052;
}
@media (max-width: 768px) {
  .guide .sec05 p.bg--brown {
    margin-bottom: 30px;
  }
}
.guide .sec05 .logo {
  max-width: 420px;
}
@media (max-width: 768px) {
  .guide .sec05 .logo {
    max-width: 300px;
  }
}
.guide .sec05 h3 {
  margin-bottom: 60px;
  color: #fff;
  font-size: 24px;
  font-family: "A1ゴシック B", "A1 Gothic B";
}
@media (max-width: 768px) {
  .guide .sec05 h3 {
    margin-bottom: 30px;
    font-size: 20px;
  }
}
.guide .sec05 .link-btn {
  display: block;
  margin: 0 auto;
  padding: 12px 0;
  max-width: 220px;
  border-radius: 32px;
  background: #fff;
  color: #666666;
  transition: 0.2s;
}
.guide .sec05 .link-btn:hover {
  background: #666666;
  color: #fff;
  opacity: 1 !important;
}
.guide .sec06 .fixed__wrapper {
  max-width: 1000px;
  width: 80%;
}
@media (max-width: 768px) {
  .guide .sec06 .fixed__wrapper {
    width: 100%;
  }
}
.guide .sec06 .box--img {
  display: block;
  padding: 90px 0;
  background: url(../img/top/sec09--bg.jpg);
  background-position: center;
  background-size: cover;
}
@media (max-width: 768px) {
  .guide .sec06 .box--img {
    padding: 40px 0;
  }
}
.guide .sec06 .box--img h2 {
  color: #fff;
}
@media (max-width: 768px) {
  .guide .sec06 .box--img h2 {
    font-size: 22px;
    font-family: "A1ゴシック B", "A1 Gothic B";
  }
}

.wrapper {
  position: relative;
}
.wrapper .bg__wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  margin: 0 auto;
  max-width: 1100px;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media (max-width: 768px) {
  .wrapper .bg__wrapper {
    display: none;
  }
}
.wrapper .bg__wrapper .bg {
  position: absolute;
  z-index: -1;
}
.wrapper .bg__wrapper .bg__wrapper__left {
  position: absolute;
  width: 100%;
  height: 100%;
}
.wrapper .bg__wrapper .bg__wrapper__left .bg01 {
  top: 1260px;
  left: -200px;
  width: 170px;
}
@media (max-width: 768px) {
  .wrapper .bg__wrapper .bg__wrapper__left .bg01 {
    top: 550px;
    left: -80px;
    width: 180px;
  }
}
.wrapper .bg__wrapper .bg__wrapper__left .bg02 {
  top: 2260px;
  left: 170px;
  width: 120px;
}
@media (max-width: 768px) {
  .wrapper .bg__wrapper .bg__wrapper__left .bg02 {
    top: 860px;
    left: -70px;
    width: 150px;
  }
}
.wrapper .bg__wrapper .bg__wrapper__left .bg03 {
  top: 3100px;
  left: -90px;
  width: 80px;
}
@media (max-width: 768px) {
  .wrapper .bg__wrapper .bg__wrapper__left .bg03 {
    top: 1250px;
    left: -50px;
    width: 120px;
  }
}
.wrapper .bg__wrapper .bg__wrapper__left .bg04 {
  top: 4680px;
  left: -80px;
  width: 240px;
}
@media (max-width: 768px) {
  .wrapper .bg__wrapper .bg__wrapper__left .bg04 {
    top: 1700px;
    left: -90px;
    width: 170px;
  }
}
.wrapper .bg__wrapper .bg__wrapper__left .bg05 {
  top: 5400px;
  left: -110px;
  width: 170px;
}
@media (max-width: 768px) {
  .wrapper .bg__wrapper .bg__wrapper__left .bg05 {
    top: 2400px;
    left: -70px;
    width: 130px;
  }
}
.wrapper .bg__wrapper .bg__wrapper__left .bg06 {
  top: 5100px;
  left: -240px;
  width: 180px;
}
@media (max-width: 768px) {
  .wrapper .bg__wrapper .bg__wrapper__left .bg06 {
    top: 2900px;
    left: -80px;
    width: 160px;
  }
}
.wrapper .bg__wrapper .bg__wrapper__left .bg07 {
  top: 6400px;
  left: -140px;
  width: 140px;
}
.wrapper .bg__wrapper .bg__wrapper__left .bg08 {
  top: 8000px;
  left: -260px;
  width: 160px;
}
.wrapper .bg__wrapper .bg__wrapper__left .bg09 {
  top: 10600px;
  left: -60px;
  width: 160px;
}
.wrapper .bg__wrapper .bg__wrapper__right {
  position: absolute;
  width: 100%;
  height: 100%;
}
.wrapper .bg__wrapper .bg__wrapper__right .bg01 {
  top: 650px;
  right: -300px;
  width: 240px;
}
@media (max-width: 768px) {
  .wrapper .bg__wrapper .bg__wrapper__right .bg01 {
    top: 680px;
    right: -50px;
    width: 120px;
  }
}
.wrapper .bg__wrapper .bg__wrapper__right .bg02 {
  top: 850px;
  right: -220px;
  width: 140px;
}
@media (max-width: 768px) {
  .wrapper .bg__wrapper .bg__wrapper__right .bg02 {
    top: 1050px;
    right: -70px;
    width: 130px;
  }
}
.wrapper .bg__wrapper .bg__wrapper__right .bg03 {
  top: 1880px;
  right: -160px;
  width: 160px;
}
@media (max-width: 768px) {
  .wrapper .bg__wrapper .bg__wrapper__right .bg03 {
    top: 1550px;
    right: -60px;
    width: 160px;
  }
}
.wrapper .bg__wrapper .bg__wrapper__right .bg04 {
  top: 3400px;
  right: -240px;
  width: 150px;
}
@media (max-width: 768px) {
  .wrapper .bg__wrapper .bg__wrapper__right .bg04 {
    top: 2300px;
    right: -60px;
    width: 140px;
  }
}
.wrapper .bg__wrapper .bg__wrapper__right .bg05 {
  top: 4200px;
  right: -150px;
  width: 120px;
}
@media (max-width: 768px) {
  .wrapper .bg__wrapper .bg__wrapper__right .bg05 {
    top: 2650px;
    right: -60px;
    width: 190px;
  }
}
.wrapper .bg__wrapper .bg__wrapper__right .bg06 {
  top: 7100px;
  right: -40px;
  width: 120px;
}
.wrapper .bg__wrapper .bg__wrapper__right .bg07 {
  top: 8000px;
  right: -120px;
  width: 60px;
}
.wrapper .bg__wrapper .bg__wrapper__right .bg08 {
  top: 9000px;
  right: -180px;
  width: 100px;
}