@charset "UTF-8";
@import "reset.css";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
:root {
  /* デザイン原稿が390pxの場合の計算用変数 */
  --design-width: 780;
}

html {
  font-size: 16px;
  height: 100%;
  overflow: hidden;
  /* ここを基準にする */
}

@media (max-width: 780px) {
  html {
    /* 画面幅(100vw)に対して、デザイン上の16pxがどの割合かを計算 */
    /* 16 / 390 * 100 = 約4.1vw */
    font-size: calc(26 / var(--design-width) * 100vw);
  }
}
body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #fff;
  color: #000;
}

sup {
  font-size: 1.1rem;
  height: 0;
  line-height: 1;
  vertical-align: baseline;
  _vertical-align: bottom;
  position: relative;
  bottom: 1ex;
}

b {
  font-weight: bold;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.br-pc {
  display: block;
}

.br-sp {
  display: none;
}

@media (max-width: 780px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
}
.btn {
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.btn a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  z-index: 2;
  cursor: pointer;
}

.btn a:hover {
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
  zoom: 1;
  transition: all 0.9s;
}

#wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  background-color: #1E7252;
}
#wrapper .container {
  display: flex;
  height: 100vh;
}
#wrapper .container .side-panel {
  flex: 1;
  overflow: hidden;
  /* サイドはスクロールさせない */
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1100px) {
  #wrapper .container .side-panel > * {
    display: none !important;
  }
}
#wrapper .container .left-side ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  margin: 0 auto;
}
#wrapper .container .left-side ul .logo {
  max-width: 268px;
  width: 100%;
  height: auto;
}
#wrapper .container .left-side ul .logo img {
  max-width: 100%;
}
#wrapper .container .left-side ul .ttl {
  max-width: 440px;
  width: 100%;
  height: auto;
}
#wrapper .container .left-side ul .ttl img {
  max-width: 100%;
}
#wrapper .container .left-side ul .icon {
  max-width: 264px;
  width: 100%;
  height: auto;
}
#wrapper .container .left-side ul .icon img {
  max-width: 100%;
  margin-bottom: -2px;
}
#wrapper .container .right-side .right_flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-width: 348px;
  height: 100vh;
  width: 100%;
  margin: 0 auto;
}
#wrapper .container .right-side .right_flex .space {
  height: 78px;
}
#wrapper .container .right-side .right_flex .nav_bx .nav-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  max-width: 348px;
  width: 100%;
  margin: 0 auto;
}
#wrapper .container .right-side .right_flex .nav_bx .nav-list li {
  flex-basis: 50%;
  margin-bottom: 18px;
}
#wrapper .container .right-side .right_flex .nav_bx .nav-list li a img {
  min-height: 47px;
}
#wrapper .container .right-side .right_flex .nav_bx .line_entry {
  margin: 30px auto 0;
  max-width: 327px;
}
#wrapper .container .right-side .right_flex .nav_bx .line_entry a img {
  width: 100%;
}
#wrapper .container .right-side .right_flex .icon {
  max-width: 266px;
  margin: 0 auto;
}
#wrapper .container .right-side .right_flex .icon img {
  max-width: 100%;
  margin-bottom: -3px;
}
#wrapper .container .hamburger-btn {
  display: none;
  /* 基本は非表示 */
}
@media (max-width: 1099px) {
  #wrapper .container .hamburger-btn {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    background: none;
    border: none;
    cursor: pointer;
    width: 172px;
    height: 150px;
    padding: 0;
  }
  #wrapper .container .hamburger-btn img {
    width: 100%;
    height: auto;
  }
  #wrapper .container .hamburger-btn .icon-close {
    display: none;
  }
  #wrapper .container .hamburger-btn.is-open .icon-open {
    display: none;
  }
  #wrapper .container .hamburger-btn.is-open .icon-close {
    display: block;
  }
}
#wrapper .container .nav-menu {
  display: none;
}
@media (max-width: 1099px) {
  #wrapper .container .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(30, 117, 93, 0.97);
    z-index: 999;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #wrapper .container .nav-menu.is-active {
    display: flex;
  }
  #wrapper .container .nav-menu .right_flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 348px;
    width: 100%;
    margin: 0 auto;
    height: auto;
    min-height: auto;
    gap: 30px;
  }
  #wrapper .container .nav-menu .right_flex .space {
    display: none;
  }
  #wrapper .container .nav-menu .right_flex .nav_bx .nav-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    max-width: 348px;
    width: 100%;
    margin: 0 auto;
  }
  #wrapper .container .nav-menu .right_flex .nav_bx .nav-list li {
    flex-basis: 50%;
    margin-bottom: 18px;
  }
  #wrapper .container .nav-menu .right_flex .nav_bx .nav-list li a img {
    min-height: 47px;
  }
  #wrapper .container .nav-menu .right_flex .nav_bx .line_entry {
    margin: 30px auto 0;
    max-width: 327px;
  }
  #wrapper .container .nav-menu .right_flex .nav_bx .line_entry a img {
    width: 100%;
  }
  #wrapper .container .nav-menu .right_flex .icon {
    max-width: 266px;
    margin: 0 auto;
  }
  #wrapper .container .nav-menu .right_flex .icon img {
    max-width: 100%;
    margin-bottom: -3px;
  }
}
#wrapper .container .main-content {
  width: 390px;
  min-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-image: url(../img/bg.png);
  background-repeat: repeat-y;
  background-size: 100% auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#wrapper .container .main-content::-webkit-scrollbar {
  display: none;
}
#wrapper .container .main-content .kv {
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 620px;
  position: relative;
}
#wrapper .container .main-content .kv .line_btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
}
#wrapper .container .main-content .kv .line_btn img {
  max-width: 100%;
  height: auto;
}
#wrapper .container .main-content .albis {
  background-image: url(../albis/img/kv.png);
}
#wrapper .container .main-content .sendo {
  background-image: url(../sendo/img/kv.png);
}
#wrapper .container .main-content .shizutetsu {
  background-image: url(../shizutetsustore/img/kv.png);
}
#wrapper .container .main-content .tobustore {
  background-image: url(../tobustore/img/kv.png);
}
#wrapper .container .main-content .ujie {
  background-image: url(../ujiesuper/img/kv.png);
}
#wrapper .container .main-content .s1 {
  width: 100%;
  padding: 60px 0 0;
}
#wrapper .container .main-content .s1 .ttl {
  width: 100%;
  margin: 0 auto 15px;
}
#wrapper .container .main-content .s1 .ttl img {
  max-width: 100%;
}
#wrapper .container .main-content .s1 .wbase01 {
  width: 352px;
  height: 267px;
  position: relative;
  margin: 0 auto 25px;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 20px;
  border: 2px solid #fdd000;
  text-align: center;
}
#wrapper .container .main-content .s1 .wbase01 .wbase_ttl {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 244px;
  height: auto;
}
#wrapper .container .main-content .s1 .wbase01 .wbase_ttl img {
  max-width: 100%;
}
#wrapper .container .main-content .s1 .wbase01 .icon {
  position: absolute;
  top: 3px;
  right: -10px;
  width: 80px;
  height: auto;
}
#wrapper .container .main-content .s1 .wbase01 .icon img {
  max-width: 100%;
}
#wrapper .container .main-content .s1 .wbase01 .prize_img {
  width: 171px;
  margin: 53px auto 10px;
}
#wrapper .container .main-content .s1 .wbase01 .prize_img img {
  max-width: 100%;
  height: auto;
}
#wrapper .container .main-content .s1 .wbase01 h6 {
  font-size: 1.34rem;
  font-weight: 700;
  color: #5A4F4A;
  text-align: center;
  margin-bottom: 0;
}
#wrapper .container .main-content .s1 .wbase01 h6 span {
  font-size: 0.875rem;
}
#wrapper .container .main-content .s1 .wbase01 h5 {
  font-size: 3rem;
  font-weight: 900;
  color: #006934;
  text-align: center;
  margin: 0 auto 10px;
  position: relative;
  display: inline-block;
}
#wrapper .container .main-content .s1 .wbase01 h5 .price {
  font-size: 1.62rem;
  font-weight: 700;
}
#wrapper .container .main-content .s1 .wbase01 h5:after {
  content: "";
  background-color: #FDD000;
  width: 100%;
  height: 7px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
#wrapper .container .main-content .s1 .wbase02 {
  width: 352px;
  height: 296px;
  position: relative;
  margin: 0 auto 25px;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 20px;
  border: 2px solid #D591B6;
  text-align: center;
}
#wrapper .container .main-content .s1 .wbase02 .wbase_ttl {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 244px;
  height: auto;
}
#wrapper .container .main-content .s1 .wbase02 .wbase_ttl img {
  max-width: 100%;
}
#wrapper .container .main-content .s1 .wbase02 .icon {
  position: absolute;
  top: 3px;
  right: -10px;
  width: 80px;
  height: auto;
}
#wrapper .container .main-content .s1 .wbase02 .icon img {
  max-width: 100%;
}
#wrapper .container .main-content .s1 .wbase02 .prize_img {
  width: 281px;
  margin: 53px 0 10px 49px;
}
#wrapper .container .main-content .s1 .wbase02 .prize_img img {
  max-width: 100%;
  height: auto;
}
#wrapper .container .main-content .s1 .wbase02 h6 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #5A4F4A;
  text-align: center;
  margin-bottom: 10px;
}
#wrapper .container .main-content .s1 .wbase02 h6 span {
  font-size: 0.9rem;
}
#wrapper .container .main-content .s1 .wbase02 p {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #5A4F4A;
  text-align: left;
  margin-bottom: 0;
  width: 320px;
  margin: 0 auto;
}
#wrapper .container .main-content .s1 .wbase03 {
  width: 352px;
  height: 263px;
  position: relative;
  margin: 0 auto 25px;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 20px;
  border: 2px solid #2BB0B5;
  text-align: center;
}
#wrapper .container .main-content .s1 .wbase03 .wbase_ttl {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 244px;
  height: auto;
}
#wrapper .container .main-content .s1 .wbase03 .wbase_ttl img {
  max-width: 100%;
}
#wrapper .container .main-content .s1 .wbase03 .icon {
  position: absolute;
  top: 3px;
  right: -10px;
  width: 80px;
  height: auto;
}
#wrapper .container .main-content .s1 .wbase03 .icon img {
  max-width: 100%;
}
#wrapper .container .main-content .s1 .wbase03 .prize_img {
  width: 184px;
  margin: 53px auto 20px;
}
#wrapper .container .main-content .s1 .wbase03 .prize_img img {
  max-width: 100%;
  height: auto;
}
#wrapper .container .main-content .s1 .wbase03 h6 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #5A4F4A;
  text-align: center;
  margin-bottom: 10px;
}
#wrapper .container .main-content .s1 .wbase03 p {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #5A4F4A;
  text-align: left;
  margin-bottom: 0;
  width: 310px;
  margin: 0 auto;
}
#wrapper .container .main-content .s2 {
  width: 100%;
  padding: 100px 0 0;
}
#wrapper .container .main-content .s2 .wbase01 {
  width: 352px;
  height: 220px;
  position: relative;
  margin: 0 auto 25px;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 20px;
  border: 2px solid #1E7553;
  text-align: center;
}
#wrapper .container .main-content .s2 .wbase01 .ttl {
  position: absolute;
  top: -78px;
  left: -20px;
  right: -20px;
  margin: 0 auto 15px;
}
#wrapper .container .main-content .s2 .wbase01 .ttl img {
  width: 100%;
}
#wrapper .container .main-content .s2 .wbase01 .s2_logo {
  padding-top: 40px;
  margin: 0 auto;
}
#wrapper .container .main-content .s2 .wbase01 .s2_logo img {
  max-width: 100%;
}
#wrapper .container .main-content .s2 .wbase01 .albis_logo {
  max-width: 131px;
  margin: 0 auto;
}
#wrapper .container .main-content .s2 .wbase01 .sendo_logo {
  max-width: 194px;
  margin: 0 auto;
}
#wrapper .container .main-content .s2 .wbase01 .shizutetu_logo {
  max-width: 233px;
  margin: 0 auto;
}
#wrapper .container .main-content .s2 .wbase01 .tobu_logo {
  max-width: 170px;
  margin: 0 auto;
}
#wrapper .container .main-content .s2 .wbase01 .ujie_logo {
  max-width: 176px;
  margin: 0 auto;
}
#wrapper .container .main-content .s2 .wbase01 p {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #5A4F4A;
  text-align: center;
  margin: 30px auto 0;
}
#wrapper .container .main-content .s3 {
  width: 100%;
  padding: 100px 0 0;
}
#wrapper .container .main-content .s3 .wbase01 {
  width: 352px;
  height: 358px;
  position: relative;
  margin: 0 auto 25px;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 20px;
  border: 2px solid #1E7553;
  text-align: center;
}
#wrapper .container .main-content .s3 .wbase01 .ttl {
  position: absolute;
  top: -78px;
  left: -20px;
  right: -20px;
  margin: 0 auto 15px;
}
#wrapper .container .main-content .s3 .wbase01 .ttl img {
  max-width: 100%;
}
#wrapper .container .main-content .s3 .wbase01 .s3_pro_ttl {
  padding-top: 30px;
  margin: 0 auto 15px;
}
#wrapper .container .main-content .s3 .wbase01 .s3_pro_ttl img {
  max-width: 278px;
}
#wrapper .container .main-content .s3 .wbase01 .s3_pro_img {
  margin: 0 auto 25px;
}
#wrapper .container .main-content .s3 .wbase01 .s3_pro_img img {
  max-width: 312px;
}
#wrapper .container .main-content .s3 .wbase01 p {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #5A4F4A;
  text-align: center;
  margin: 0 auto 25px;
}
#wrapper .container .main-content .s3 .wbase01 .pro_btn {
  margin: 0 auto;
  width: 312px;
  height: 45px;
  border-radius: 50px;
  background-color: #fff;
  border: 2px solid #006934;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
#wrapper .container .main-content .s3 .wbase01 .pro_btn p {
  font-size: 0.875rem;
  font-weight: 700;
  color: #006934;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  text-decoration: none;
  margin: 0;
}
#wrapper .container .main-content .s4 {
  width: 100%;
  padding: 100px 0 0;
}
#wrapper .container .main-content .s4 .wbase01 {
  width: 352px;
  height: auto;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 20px;
  border: 2px solid #1E7553;
  text-align: center;
  padding-bottom: 20px;
}
#wrapper .container .main-content .s4 .wbase01 .ttl {
  margin: -77px -19px 0;
}
#wrapper .container .main-content .s4 .wbase01 .ttl img {
  max-width: 100%;
}
#wrapper .container .main-content .s4 .wbase01 .step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 20px -12px;
  width: 334px;
}
#wrapper .container .main-content .s4 .wbase01 .step .icon {
  flex-basis: 70px;
}
#wrapper .container .main-content .s4 .wbase01 .step .icon img {
  max-width: 100%;
}
#wrapper .container .main-content .s4 .wbase01 .step .summary {
  flex-basis: 221px;
  text-align: left;
  padding-left: 20px;
}
#wrapper .container .main-content .s4 .wbase01 .step .summary h5 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #5A4F4A;
  text-align: left;
  line-height: 1.5;
  text-decoration: none;
  margin: 0;
}
#wrapper .container .main-content .s4 .wbase01 .step .img {
  flex-basis: 43px;
}
#wrapper .container .main-content .s4 .wbase01 .step .img img {
  max-width: 100%;
}
#wrapper .container .main-content .s4 .wbase01 p {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.8;
  color: #5A4F4A;
  text-align: left;
  margin: 0 auto;
  width: 310px;
  line-height: 0.1;
  display: inline-block;
}
#wrapper .container .main-content .s4 .wbase01 p .under {
  display: inline;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.8;
  color: #1E7553;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-image: linear-gradient(to bottom, transparent 0%, transparent calc(100% - 4px), #FDD000 calc(100% - 4px), #FDD000 100%);
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 100% 4px;
}
#wrapper .container .main-content .s4 .wbase01 p .under .big {
  font-size: 1.5rem;
}
#wrapper .container .main-content .s4 .wbase {
  width: 352px;
  height: auto;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 20px;
  border: 2px solid #1E7553;
  text-align: center;
  padding: 25px 0 20px;
}
#wrapper .container .main-content .s4 .wbase .step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 20px -12px;
  width: 334px;
}
#wrapper .container .main-content .s4 .wbase .step .icon {
  flex-basis: 70px;
}
#wrapper .container .main-content .s4 .wbase .step .icon img {
  max-width: 100%;
}
#wrapper .container .main-content .s4 .wbase .step .summary {
  flex-basis: 221px;
  text-align: left;
  padding-left: 20px;
}
#wrapper .container .main-content .s4 .wbase .step .summary h5 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #5A4F4A;
  text-align: left;
  line-height: 1.5;
  text-decoration: none;
  margin: 0;
}
#wrapper .container .main-content .s4 .wbase .step .img {
  flex-basis: 43px;
}
#wrapper .container .main-content .s4 .wbase .step .img img {
  max-width: 100%;
}
#wrapper .container .main-content .s4 .wbase p {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.8;
  color: #5A4F4A;
  text-align: left;
  margin: 0 auto;
  width: 310px;
  line-height: 1.8;
  display: inline-block;
}
#wrapper .container .main-content .s4 .wbase p .under {
  display: inline;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.8;
  color: #1E7553;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-image: linear-gradient(to bottom, transparent 0%, transparent calc(100% - 4px), #FDD000 calc(100% - 4px), #FDD000 100%);
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 100% 4px;
}
#wrapper .container .main-content .s4 .gbase {
  width: 352px;
  height: 150px;
  margin: 30px auto 25px;
  background-color: #1E7553;
  border: 2px solid #1E7553;
  border-radius: 20px;
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}
#wrapper .container .main-content .s4 .gbase .ttl {
  position: absolute;
  top: -10px;
  left: -19px;
  right: -19px;
}
#wrapper .container .main-content .s4 .gbase .ttl img {
  max-width: 100%;
}
#wrapper .container .main-content .s4 .gbase h6 {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin: 90px auto 15px;
}
#wrapper .container .main-content .s4 .gbase h6 span {
  font-size: 1.56rem;
  font-weight: 700;
  color: #FDD000;
  line-height: 1;
  margin: 0;
}
#wrapper .container .main-content .s4 .gbase p {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
  margin: 0 auto;
}
#wrapper .container .main-content .s4 .arrow {
  text-align: center;
  margin: 10px auto;
}
#wrapper .container .main-content .s4 .arrow img {
  max-width: 22px;
}
#wrapper .container .main-content .s4 details {
  /* アコーディオンが開いた時のスタイル */
}
#wrapper .container .main-content .s4 details .icon {
  background-image: url(../img/ac_open.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 40px;
}
#wrapper .container .main-content .s4 details[open] .icon {
  background-image: url(../img/ac_close.svg);
}
#wrapper .container .main-content .s4 summary {
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 6px;
  align-items: center;
  border-radius: 50px;
  background-color: #fff;
  border: 2px solid #006934;
  cursor: pointer;
  width: 312px;
  height: 48px;
  margin: 10px auto;
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
}
#wrapper .container .main-content .s4 summary .attention {
  font-size: 0.875rem;
  font-weight: 700;
  color: #006934;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  margin: 0;
}
#wrapper .container .main-content .s4 summary::-webkit-details-marker {
  display: none;
}
#wrapper .container .main-content .s4 .receipt {
  text-align: center;
  margin: 10px auto;
}
#wrapper .container .main-content .s4 .receipt img {
  max-width: 300px;
}
#wrapper .container .main-content .s5 {
  width: 100%;
  padding: 100px 0 0;
}
#wrapper .container .main-content .s5 .wbase01 {
  width: 352px;
  height: 235px;
  position: relative;
  margin: 0 auto 25px;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 20px;
  border: 2px solid #1E7553;
  text-align: center;
}
#wrapper .container .main-content .s5 .wbase01 .ttl {
  position: absolute;
  top: -78px;
  left: -20px;
  right: -20px;
  margin: 0 auto 15px;
}
#wrapper .container .main-content .s5 .wbase01 .ttl img {
  max-width: 100%;
}
#wrapper .container .main-content .s5 .wbase01 .kiyaku_wrap {
  margin: 30px auto 0;
  width: 301px;
  height: 190px;
  text-align: left;
  overflow-y: scroll;
}
#wrapper .container .main-content .s5 .wbase01 .kiyaku_wrap .kiyaku_inner {
  padding-right: 10px;
}
#wrapper .container .main-content .s5 .wbase01 .kiyaku_wrap .kiyaku_inner h6 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #5A4F4A;
  text-align: left;
  line-height: 1;
  margin: 0;
  margin-bottom: 10px;
}
#wrapper .container .main-content .s5 .wbase01 .kiyaku_wrap .kiyaku_inner p {
  font-size: 0.875rem;
  font-weight: 400;
  color: #5A4F4A;
  text-align: left;
  line-height: 1.8;
  margin: 0;
  margin-bottom: 30px;
  word-break: break-all;
}
#wrapper .container .main-content .s5 .wbase01 .kiyaku_wrap .kiyaku_inner p a {
  text-decoration: underline;
  color: #5A4F4A;
}
#wrapper .container .main-content .s5 .line_btn {
  margin: 30px auto 0;
  width: 350px;
}
#wrapper .container .main-content .s5 .line_btn img {
  max-width: 100%;
  height: auto;
}
#wrapper .container .main-content .s6 {
  width: 100%;
  padding: 40px 0 0;
}
#wrapper .container .main-content .s6 .ttl {
  margin: 0 auto 30px;
}
#wrapper .container .main-content .s6 .ttl img {
  max-width: 100%;
}
#wrapper .container .main-content .s6 .cp_actab {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 351px;
  margin: 0 auto 20px;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 20px;
  padding: 15px 0;
}
#wrapper .container .main-content .s6 .cp_actab input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
#wrapper .container .main-content .s6 .cp_actab label {
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  margin: 0;
}
#wrapper .container .main-content .s6 .cp_actab label .icon {
  flex-basis: 39px;
  text-align: center;
}
#wrapper .container .main-content .s6 .cp_actab label .icon img {
  max-width: 27px;
}
#wrapper .container .main-content .s6 .cp_actab label h5 {
  text-align: left;
  color: #1E7553;
  line-height: 1.6;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
  padding: 0 40px 0 5px;
  box-sizing: border-box;
  flex-basis: calc(100% - 12px);
}
#wrapper .container .main-content .s6 .cp_actab .cp_actab-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s;
  color: #fff;
}
#wrapper .container .main-content .s6 .cp_actab .cp_actab-content__inner {
  padding: 10px 0;
}
#wrapper .container .main-content .s6 .cp_actab .cp_actab-content__inner ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 351px;
  width: 100%;
  margin: 0 auto;
}
#wrapper .container .main-content .s6 .cp_actab .cp_actab-content__inner ul .ico {
  flex-basis: 39px;
  text-align: center;
}
#wrapper .container .main-content .s6 .cp_actab .cp_actab-content__inner ul .ico img {
  max-width: 27px;
}
#wrapper .container .main-content .s6 .cp_actab .cp_actab-content__inner ul .summary {
  flex-basis: calc(100% - 39px);
  text-align: left;
  color: #5A4F4A;
  line-height: 1.8;
  font-size: 13px;
  font-weight: 400;
  margin-top: 2px;
  padding: 0 20px 0 5px;
}
#wrapper .container .main-content .s6 .cp_actab .cp_actab-content__inner ul .summary a {
  text-decoration: underline;
  color: #5A4F4A;
}
#wrapper .container .main-content .s6 .cp_actab input:checked ~ .cp_actab-content {
  max-height: 20000px;
}
#wrapper .container .main-content .s6 .cp_actab label::after {
  line-height: 3;
  position: absolute;
  top: 6px;
  right: 20px;
  display: block;
  width: 12px;
  height: 12px;
  /* -webkit-transition: all 0.35s;
  transition: all 0.35s; */
  text-align: center;
}
#wrapper .container .main-content .s6 .cp_actab input[type=checkbox] + label::after {
  content: "";
  background-image: url(../img/ac_open.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#wrapper .container .main-content .s6 .cp_actab input[type=checkbox]:checked + label::after {
  content: "";
  background-image: url(../img/ac_close.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 6px;
  right: 20px;
  display: block;
  width: 12px;
  height: 12px;
}
#wrapper .container .main-content .s7 {
  width: 100%;
  padding: 60px 0 0;
}
#wrapper .container .main-content .s7 .wbase {
  width: 352px;
  height: auto;
  position: relative;
  margin: 0 auto 25px;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 20px;
  border: 2px solid #1E7553;
  text-align: center;
}
#wrapper .container .main-content .s7 .wbase h3 {
  border-radius: 18px 18px 0 0;
  background-color: #1E7553;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  margin: 0;
  padding: 20px 0;
}
#wrapper .container .main-content .s7 .wbase .inner {
  padding: 20px;
  text-align: left;
}
#wrapper .container .main-content .s7 .wbase .inner h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #5A4F4A;
  text-align: left;
  line-height: 1;
  margin: 0 0 10px;
}
#wrapper .container .main-content .s7 .wbase .inner h5 {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #5A4F4A;
  text-align: left;
  line-height: 1;
  margin: 0 0 10px;
}
#wrapper .container .main-content .s7 .wbase .inner h5 a {
  text-decoration: underline;
  color: #5A4F4A;
}
#wrapper .container .main-content .s7 .wbase .inner h6 {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #5A4F4A;
  text-align: left;
  line-height: 1;
  margin: 0 0 5px;
}
#wrapper .container .main-content .s7 .wbase .inner p {
  font-size: 0.75rem;
  font-weight: 400;
  color: #5A4F4A;
  text-align: left;
  line-height: 1.8;
  margin: 0;
}
#wrapper .container .main-content .s7 .copyright {
  margin: 20px auto;
  text-align: center;
}
#wrapper .container .main-content .s7 .copyright p {
  font-size: 0.6875rem;
  font-weight: 400;
  color: #5A4F4A;
  text-align: center;
  line-height: 1.9;
}
#wrapper .container .main-content .bottom_illust {
  margin: 0 auto;
  text-align: center;
  width: 100%;
  height: 110px;
  overflow: hidden;
}
#wrapper .container .main-content .bottom_illust img {
  max-width: 260px;
  margin-top: 10px;
}

@media (max-width: 780px) {
  #wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    background-color: #1E7252;
  }
  #wrapper .container .side-panel {
    display: none;
  }
  #wrapper .container .main-content {
    width: 100%;
  }
  #wrapper .container .main-content .kv {
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 158.9743589744vw;
    position: relative;
  }
  #wrapper .container .main-content .kv .line_btn {
    position: absolute;
    bottom: 5vw;
    left: 50%;
    transform: translateX(-50%);
    width: 92vw;
  }
  #wrapper .container .main-content .kv .line_btn img {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  #wrapper .container .main-content .s1 {
    width: 100%;
    padding: 12vw 0 0;
  }
  #wrapper .container .main-content .s1 .ttl {
    width: 100%;
    margin: 0 auto 2vw;
  }
  #wrapper .container .main-content .s1 .ttl img {
    max-width: 100%;
  }
  #wrapper .container .main-content .s1 .wbase01 {
    width: 90vw;
    height: 68.33vw;
    position: relative;
    margin: 0 auto 7vw;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 20px;
    border: 0.5128205128vw solid #fdd000;
    text-align: center;
  }
  #wrapper .container .main-content .s1 .wbase01 .wbase_ttl {
    position: absolute;
    top: -5.4vw;
    left: 50%;
    transform: translateX(-50%);
    width: 64vw;
    height: auto;
  }
  #wrapper .container .main-content .s1 .wbase01 .wbase_ttl img {
    max-width: 100%;
  }
  #wrapper .container .main-content .s1 .wbase01 .icon {
    position: absolute;
    top: 1vw;
    right: -2.5vw;
    width: 20vw;
    height: auto;
  }
  #wrapper .container .main-content .s1 .wbase01 .icon img {
    max-width: 100%;
  }
  #wrapper .container .main-content .s1 .wbase01 .prize_img {
    width: 50vw;
    margin: 11vw auto 2vw;
  }
  #wrapper .container .main-content .s1 .wbase01 .prize_img img {
    max-width: 100%;
    height: auto;
  }
  #wrapper .container .main-content .s1 .wbase01 h6 {
    font-size: 5.5128205128vw;
    font-weight: 700;
    color: #5A4F4A;
    text-align: center;
    margin-bottom: 0;
  }
  #wrapper .container .main-content .s1 .wbase01 h6 span {
    font-size: 3.5897435897vw;
  }
  #wrapper .container .main-content .s1 .wbase01 h5 {
    font-size: 12.3076923077vw;
    font-weight: 900;
    color: #006934;
    text-align: center;
    margin: 0 auto 1vw;
    position: relative;
    display: inline-block;
  }
  #wrapper .container .main-content .s1 .wbase01 h5 .price {
    font-size: 6.6666666667vw;
    font-weight: 700;
  }
  #wrapper .container .main-content .s1 .wbase01 h5:after {
    content: "";
    background-color: #FDD000;
    width: 100%;
    height: 7px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  #wrapper .container .main-content .s1 .wbase02 {
    width: 90vw;
    height: 76.025vw;
    position: relative;
    margin: 0 auto 7vw;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 20px;
    border: 0.5128205128vw solid #D591B6;
    text-align: center;
  }
  #wrapper .container .main-content .s1 .wbase02 .wbase_ttl {
    position: absolute;
    top: -5.4vw;
    left: 50%;
    transform: translateX(-50%);
    width: 64vw;
    height: auto;
  }
  #wrapper .container .main-content .s1 .wbase02 .wbase_ttl img {
    max-width: 100%;
  }
  #wrapper .container .main-content .s1 .wbase02 .icon {
    position: absolute;
    top: 1vw;
    right: -2.5vw;
    width: 20vw;
    height: auto;
  }
  #wrapper .container .main-content .s1 .wbase02 .icon img {
    max-width: 100%;
  }
  #wrapper .container .main-content .s1 .wbase02 .prize_img {
    width: 72vw;
    margin: 14vw 0 2vw 12vw;
  }
  #wrapper .container .main-content .s1 .wbase02 .prize_img img {
    max-width: 100%;
    height: auto;
  }
  #wrapper .container .main-content .s1 .wbase02 h6 {
    font-size: 4.8717948718vw;
    font-weight: 700;
    color: #5A4F4A;
    text-align: center;
    margin-bottom: 2vw;
  }
  #wrapper .container .main-content .s1 .wbase02 h6 span {
    font-size: 3.5897435897vw;
  }
  #wrapper .container .main-content .s1 .wbase02 p {
    font-size: 3.0769230769vw;
    font-weight: 400;
    line-height: 1.8;
    color: #5A4F4A;
    text-align: left;
    margin-bottom: 0;
    width: 80vw;
    margin: 0 auto;
  }
  #wrapper .container .main-content .s1 .wbase03 {
    width: 90vw;
    height: 67.307vw;
    position: relative;
    margin: 0 auto 7vw;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 20px;
    border: 0.5128205128vw solid #2BB0B5;
    text-align: center;
  }
  #wrapper .container .main-content .s1 .wbase03 .wbase_ttl {
    position: absolute;
    top: -5.4vw;
    left: 50%;
    transform: translateX(-50%);
    width: 64vw;
    height: auto;
  }
  #wrapper .container .main-content .s1 .wbase03 .wbase_ttl img {
    max-width: 100%;
  }
  #wrapper .container .main-content .s1 .wbase03 .icon {
    position: absolute;
    top: 1vw;
    right: -2.5vw;
    width: 20vw;
    height: auto;
  }
  #wrapper .container .main-content .s1 .wbase03 .icon img {
    max-width: 100%;
  }
  #wrapper .container .main-content .s1 .wbase03 .prize_img {
    width: 48vw;
    margin: 14vw auto 4vw;
  }
  #wrapper .container .main-content .s1 .wbase03 .prize_img img {
    max-width: 100%;
    height: auto;
  }
  #wrapper .container .main-content .s1 .wbase03 h6 {
    font-size: 4.8717948718vw;
    font-weight: 700;
    color: #5A4F4A;
    text-align: center;
    margin-bottom: 2vw;
  }
  #wrapper .container .main-content .s1 .wbase03 p {
    font-size: 3.0769230769vw;
    font-weight: 400;
    line-height: 1.8;
    color: #5A4F4A;
    text-align: left;
    margin-bottom: 0;
    width: 80vw;
    margin: 0 auto;
    word-break: break-all;
  }
  #wrapper .container .main-content .s2 {
    width: 100%;
    padding: 24vw 0 0;
  }
  #wrapper .container .main-content .s2 .wbase01 {
    width: 90vw;
    height: 56.41vw;
    position: relative;
    margin: 0 auto 7vw;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 20px;
    border: 0.5128205128vw solid #1E7553;
    text-align: center;
  }
  #wrapper .container .main-content .s2 .wbase01 .ttl {
    position: absolute;
    top: -20vw;
    left: -5vw;
    right: -5vw;
    transform: none;
    margin: 0 auto 15px;
    width: 100vw;
  }
  #wrapper .container .main-content .s2 .wbase01 .ttl img {
    width: 100%;
  }
  #wrapper .container .main-content .s2 .wbase01 .s2_logo {
    padding-top: 13vw;
    margin: 0 auto;
  }
  #wrapper .container .main-content .s2 .wbase01 .s2_logo img {
    max-width: 100%;
  }
  #wrapper .container .main-content .s2 .wbase01 .albis_logo {
    max-width: 34vw;
    margin: 0 auto;
  }
  #wrapper .container .main-content .s2 .wbase01 .sendo_logo {
    max-width: 46vw;
    margin: 0 auto;
  }
  #wrapper .container .main-content .s2 .wbase01 .shizutetu_logo {
    max-width: 55vw;
    margin: 0 auto;
  }
  #wrapper .container .main-content .s2 .wbase01 .tobu_logo {
    max-width: 40vw;
    margin: 0 auto;
  }
  #wrapper .container .main-content .s2 .wbase01 .ujie_logo {
    max-width: 41.5vw;
    margin: 0 auto;
  }
  #wrapper .container .main-content .s2 .wbase01 p {
    font-size: 3.0769230769vw;
    font-weight: 400;
    line-height: 1.8;
    color: #5A4F4A;
    text-align: center;
    margin: 8vw auto 0;
  }
  #wrapper .container .main-content .s3 {
    width: 100%;
    padding: 24vw 0 0;
  }
  #wrapper .container .main-content .s3 .wbase01 {
    width: 90vw;
    height: 91.79vw;
    position: relative;
    margin: 0 auto 7vw;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 20px;
    border: 0.5128205128vw solid #1E7553;
    text-align: center;
  }
  #wrapper .container .main-content .s3 .wbase01 .ttl {
    position: absolute;
    top: -20vw;
    left: -5vw;
    right: -5vw;
    transform: none;
    margin: 0 auto 15px;
    width: 100vw;
  }
  #wrapper .container .main-content .s3 .wbase01 .ttl img {
    width: 100%;
  }
  #wrapper .container .main-content .s3 .wbase01 .s3_pro_ttl {
    padding-top: 10vw;
    margin: 0 auto 2vw;
  }
  #wrapper .container .main-content .s3 .wbase01 .s3_pro_ttl img {
    max-width: 72vw;
  }
  #wrapper .container .main-content .s3 .wbase01 .s3_pro_img {
    margin: 0 auto 2vw;
  }
  #wrapper .container .main-content .s3 .wbase01 .s3_pro_img img {
    max-width: 80vw;
  }
  #wrapper .container .main-content .s3 .wbase01 p {
    font-size: 3.0769230769vw;
    font-weight: 400;
    line-height: 1.8;
    color: #5A4F4A;
    text-align: center;
    margin: 0 auto 5vw;
  }
  #wrapper .container .main-content .s3 .wbase01 .pro_btn {
    margin: 0 auto;
    width: 80vw;
    height: 12.4vw;
    border-radius: 50px;
    background-color: #fff;
    border: 0.3846153846vw solid #006934;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #wrapper .container .main-content .s3 .wbase01 .pro_btn p {
    font-size: 3.5897435897vw;
    font-weight: 700;
    color: #006934;
    text-decoration: none;
    text-align: center;
    line-height: 1;
    text-decoration: none;
    margin: 0;
  }
  #wrapper .container .main-content .s4 {
    width: 100%;
    padding: 24vw 0 0;
  }
  #wrapper .container .main-content .s4 .wbase01 {
    width: 90vw;
    height: auto;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 20px;
    border: 0.5128205128vw solid #1E7553;
    text-align: center;
    padding-bottom: 20px;
  }
  #wrapper .container .main-content .s4 .wbase01 .ttl {
    margin: -21vw -5vw 0;
  }
  #wrapper .container .main-content .s4 .wbase01 .ttl img {
    max-width: 100%;
  }
  #wrapper .container .main-content .s4 .wbase01 .step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 4vw -3vw;
    width: 85vw;
  }
  #wrapper .container .main-content .s4 .wbase01 .step .icon {
    flex-basis: 18vw;
  }
  #wrapper .container .main-content .s4 .wbase01 .step .icon img {
    max-width: 100%;
  }
  #wrapper .container .main-content .s4 .wbase01 .step .summary {
    flex-basis: 54vw;
    text-align: left;
    padding-left: 5vw;
  }
  #wrapper .container .main-content .s4 .wbase01 .step .summary h5 {
    font-size: 4.6153846154vw;
    font-weight: 700;
    color: #5A4F4A;
    text-align: left;
    line-height: 1.5;
    text-decoration: none;
    margin: 0;
  }
  #wrapper .container .main-content .s4 .wbase01 .step .img {
    flex-basis: 13vw;
  }
  #wrapper .container .main-content .s4 .wbase01 .step .img img {
    max-width: 100%;
  }
  #wrapper .container .main-content .s4 .wbase01 p {
    font-size: 3.3333333333vw;
    font-weight: 500;
    line-height: 1.8;
    color: #5A4F4A;
    text-align: left;
    margin: 0 auto;
    width: 80vw;
    line-height: 0.1;
    display: inline-block;
  }
  #wrapper .container .main-content .s4 .wbase01 p .under {
    display: inline;
    font-size: 3.3333333333vw;
    font-weight: 900;
    line-height: 1.8;
    color: #1E7553;
  }
  #wrapper .container .main-content .s4 .wbase01 p .under .big {
    font-size: 6.0256410256vw;
  }
  #wrapper .container .main-content .s4 .wbase {
    width: 90vw;
    height: auto;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 20px;
    border: 0.5128205128vw solid #1E7553;
    text-align: center;
    padding: 5vw 0 5vw;
  }
  #wrapper .container .main-content .s4 .wbase .step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 4vw -3vw;
    width: 85vw;
  }
  #wrapper .container .main-content .s4 .wbase .step .icon {
    flex-basis: 18vw;
  }
  #wrapper .container .main-content .s4 .wbase .step .icon img {
    max-width: 100%;
  }
  #wrapper .container .main-content .s4 .wbase .step .summary {
    flex-basis: 54vw;
    text-align: left;
    padding-left: 5vw;
  }
  #wrapper .container .main-content .s4 .wbase .step .summary h5 {
    font-size: 4.6153846154vw;
    font-weight: 700;
    color: #5A4F4A;
    text-align: left;
    line-height: 1.5;
    text-decoration: none;
    margin: 0;
  }
  #wrapper .container .main-content .s4 .wbase .step .img {
    flex-basis: 13vw;
  }
  #wrapper .container .main-content .s4 .wbase .step .img img {
    max-width: 100%;
  }
  #wrapper .container .main-content .s4 .wbase p {
    font-size: 3.3333333333vw;
    font-weight: 500;
    line-height: 1.8;
    color: #5A4F4A;
    text-align: left;
    margin: 0 auto;
    width: 80vw;
    line-height: 2;
    display: inline-block;
  }
  #wrapper .container .main-content .s4 .wbase p .under {
    display: inline;
    font-size: 3.3333333333vw;
    font-weight: 900;
    line-height: 1.8;
    color: #1E7553;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    background-image: linear-gradient(to bottom, transparent 0%, transparent calc(100% - 4px), #FDD000 calc(100% - 4px), #FDD000 100%);
    background-repeat: repeat-x;
    background-position: bottom;
    background-size: 100% 4px;
  }
  #wrapper .container .main-content .s4 .gbase {
    width: 90vw;
    height: 42.461vw;
    margin: 5vw auto 7vw;
    background-color: #1E7553;
    border: 0.3846153846vw solid #1E7553;
    border-radius: 20px;
    text-align: center;
    padding-bottom: 0;
    position: relative;
  }
  #wrapper .container .main-content .s4 .gbase .ttl {
    position: absolute;
    top: -4vw;
    left: -5vw;
    right: -5vw;
  }
  #wrapper .container .main-content .s4 .gbase .ttl img {
    width: 100vw;
  }
  #wrapper .container .main-content .s4 .gbase h6 {
    text-align: center;
    font-size: 4.1025641026vw;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin: 23vw auto 4vw;
  }
  #wrapper .container .main-content .s4 .gbase h6 span {
    font-size: 6.4102564103vw;
    font-weight: 700;
    color: #FDD000;
    line-height: 1;
    margin: 0;
  }
  #wrapper .container .main-content .s4 .gbase p {
    font-size: 3.3333333333vw;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    text-align: center;
    margin: 0 auto;
  }
  #wrapper .container .main-content .s4 .arrow {
    text-align: center;
    margin: 2vw auto;
  }
  #wrapper .container .main-content .s4 .arrow img {
    max-width: 4.8vw;
  }
  #wrapper .container .main-content .s4 details {
    /* アコーディオンが開いた時のスタイル */
  }
  #wrapper .container .main-content .s4 details .icon {
    background-image: url(../img/ac_open.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 3vw;
    height: 3vw;
    position: absolute;
    right: 10vw;
  }
  #wrapper .container .main-content .s4 details[open] .icon {
    background-image: url(../img/ac_close.svg);
  }
  #wrapper .container .main-content .s4 summary {
    display: grid;
    grid-template-columns: 1fr 24px;
    gap: 6px;
    align-items: center;
    border-radius: 50px;
    background-color: #fff;
    border: 0.3846153846vw solid #006934;
    cursor: pointer;
    width: 80vw;
    height: 12.4vw;
    margin: 1vw auto;
    /* Safariで表示されるデフォルトの三角形アイコンを消します */
  }
  #wrapper .container .main-content .s4 summary .attention {
    font-size: 3.5897435897vw;
    font-weight: 700;
    color: #006934;
    text-decoration: none;
    text-align: center;
    line-height: 1;
    margin: 0;
  }
  #wrapper .container .main-content .s4 summary::-webkit-details-marker {
    display: none;
  }
  #wrapper .container .main-content .s4 .receipt {
    text-align: center;
    margin: 1.5vw auto;
  }
  #wrapper .container .main-content .s4 .receipt img {
    max-width: 80vw;
  }
  #wrapper .container .main-content .s5 {
    width: 100%;
    padding: 24vw 0 0;
  }
  #wrapper .container .main-content .s5 .wbase01 {
    width: 90vw;
    height: 40vh;
    position: relative;
    margin: 0 auto 25px;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 20px;
    border: 0.5128205128vw solid #1E7553;
    text-align: center;
  }
  #wrapper .container .main-content .s5 .wbase01 .ttl {
    position: absolute;
    top: -21vw;
    left: -5vw;
    right: -5vw;
  }
  #wrapper .container .main-content .s5 .wbase01 .ttl img {
    max-width: 100%;
  }
  #wrapper .container .main-content .s5 .wbase01 .kiyaku_wrap {
    margin: 5vw auto 0;
    width: 85vw;
    height: 35vh;
    text-align: left;
    overflow-y: scroll;
  }
  #wrapper .container .main-content .s5 .wbase01 .kiyaku_wrap .kiyaku_inner {
    padding-right: 3vw;
  }
  #wrapper .container .main-content .s5 .wbase01 .kiyaku_wrap .kiyaku_inner h6 {
    font-size: 3.3333333333vw;
    font-weight: 700;
    color: #5A4F4A;
    text-align: left;
    line-height: 1;
    margin: 0;
    margin-bottom: 2vw;
  }
  #wrapper .container .main-content .s5 .wbase01 .kiyaku_wrap .kiyaku_inner p {
    font-size: 3.3333333333vw;
    font-weight: 400;
    color: #5A4F4A;
    text-align: left;
    line-height: 1.8;
    margin: 0;
    margin-bottom: 6vw;
    word-break: break-all;
  }
  #wrapper .container .main-content .s5 .wbase01 .kiyaku_wrap .kiyaku_inner p a {
    text-decoration: underline;
    color: #5A4F4A;
  }
  #wrapper .container .main-content .s5 .line_btn {
    margin: 10vw auto 0;
    width: 94vw;
    text-align: center;
  }
  #wrapper .container .main-content .s5 .line_btn img {
    width: 100%;
    height: auto;
  }
  #wrapper .container .main-content .s6 {
    width: 100%;
    padding: 12vw 0 12vw;
  }
  #wrapper .container .main-content .s6 .ttl {
    margin: 0 auto 30px;
  }
  #wrapper .container .main-content .s6 .ttl img {
    max-width: 100%;
  }
  #wrapper .container .main-content .s6 .cp_actab {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 90vw;
    margin: 0 auto 4vw;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 20px;
    padding: 3vw 0;
  }
  #wrapper .container .main-content .s6 .cp_actab input {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }
  #wrapper .container .main-content .s6 .cp_actab label {
    font-weight: bold;
    position: relative;
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    margin: 0;
  }
  #wrapper .container .main-content .s6 .cp_actab label .icon {
    flex-basis: 10vw;
    text-align: center;
  }
  #wrapper .container .main-content .s6 .cp_actab label .icon img {
    max-width: 7vw;
  }
  #wrapper .container .main-content .s6 .cp_actab label h5 {
    text-align: left;
    color: #1E7553;
    line-height: 1.6;
    font-size: 3.5897435897vw;
    font-weight: 700;
    margin-top: 0.5vw;
    padding: 0 10vw 0 2vw;
    box-sizing: border-box;
    flex-basis: calc(100% - 10vw);
  }
  #wrapper .container .main-content .s6 .cp_actab .cp_actab-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s;
    color: #fff;
  }
  #wrapper .container .main-content .s6 .cp_actab .cp_actab-content__inner {
    padding: 10px 0;
  }
  #wrapper .container .main-content .s6 .cp_actab .cp_actab-content__inner ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 90vw;
    width: 100%;
    margin: 0 auto;
  }
  #wrapper .container .main-content .s6 .cp_actab .cp_actab-content__inner ul .ico {
    flex-basis: 10vw;
    text-align: center;
  }
  #wrapper .container .main-content .s6 .cp_actab .cp_actab-content__inner ul .ico img {
    max-width: 7vw;
  }
  #wrapper .container .main-content .s6 .cp_actab .cp_actab-content__inner ul .summary {
    flex-basis: calc(100% - 20vw);
    text-align: left;
    color: #5A4F4A;
    line-height: 1.8;
    font-size: 3.3333333333vw;
    font-weight: 400;
    margin-top: 0.5vw;
    padding: 0 8vw 0 2vw;
  }
  #wrapper .container .main-content .s6 .cp_actab .cp_actab-content__inner ul .summary a {
    text-decoration: underline;
    color: #5A4F4A;
  }
  #wrapper .container .main-content .s6 .cp_actab input:checked ~ .cp_actab-content {
    max-height: 20000px;
  }
  #wrapper .container .main-content .s6 .cp_actab label::after {
    line-height: 3;
    position: absolute;
    top: 2vw;
    right: 5vw;
    display: block;
    width: 3vw;
    height: 3vw;
    /* -webkit-transition: all 0.35s;
    transition: all 0.35s; */
    text-align: center;
  }
  #wrapper .container .main-content .s6 .cp_actab input[type=checkbox] + label::after {
    content: "";
    background-image: url(../img/ac_open.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  #wrapper .container .main-content .s6 .cp_actab input[type=checkbox]:checked + label::after {
    content: "";
    background-image: url(../img/ac_close.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 2vw;
    right: 5vw;
    display: block;
    width: 3vw;
    height: 3vw;
  }
  #wrapper .container .main-content .s7 {
    width: 100%;
    padding: 0;
  }
  #wrapper .container .main-content .s7 .wbase {
    width: 90vw;
    height: auto;
    position: relative;
    margin: 0 auto 5vw;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 20px;
    border: 0.5128205128vw solid #1E7553;
    text-align: center;
  }
  #wrapper .container .main-content .s7 .wbase h3 {
    border-radius: 18px 18px 0 0;
    background-color: #1E7553;
    color: #fff;
    font-size: 3.8461538462vw;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    margin: 0;
    padding: 3vw 0;
  }
  #wrapper .container .main-content .s7 .wbase .inner {
    padding: 5vw;
    text-align: left;
  }
  #wrapper .container .main-content .s7 .wbase .inner h4 {
    font-size: 3.8461538462vw;
    font-weight: 700;
    color: #5A4F4A;
    text-align: left;
    line-height: 1;
    margin: 0 0 3.5vw;
  }
  #wrapper .container .main-content .s7 .wbase .inner h5 {
    font-size: 3.3333333333vw;
    font-weight: 500;
    color: #5A4F4A;
    text-align: left;
    line-height: 1;
    margin: 0 0 3.5vw;
  }
  #wrapper .container .main-content .s7 .wbase .inner h5 a {
    text-decoration: underline;
    color: #5A4F4A;
  }
  #wrapper .container .main-content .s7 .wbase .inner h6 {
    font-size: 3.3333333333vw;
    font-weight: 400;
    color: #5A4F4A;
    text-align: left;
    line-height: 1;
    margin: 0 0 1vw;
  }
  #wrapper .container .main-content .s7 .wbase .inner p {
    font-size: 3.3333333333vw;
    font-weight: 400;
    color: #5A4F4A;
    text-align: left;
    line-height: 1.8;
    margin: 0;
  }
  #wrapper .container .main-content .s7 .copyright {
    margin: 8vw auto;
    text-align: center;
  }
  #wrapper .container .main-content .s7 .copyright p {
    font-size: 2.8205128205vw;
    font-weight: 400;
    color: #5A4F4A;
    text-align: center;
    line-height: 1.9;
  }
  #wrapper .container .main-content .bottom_illust {
    margin: 0 auto;
    text-align: center;
    width: 100%;
    height: 110px;
    overflow: hidden;
  }
  #wrapper .container .main-content .bottom_illust img {
    max-width: 260px;
    margin-top: 10px;
  }
  #wrapper .container .hamburger-btn {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    background: none;
    border: none;
    cursor: pointer;
    width: 22.0512820513vw;
    height: 19.2307692308vw;
    /* 画像のサイズに合わせて調整 */
    /* 初期は閉じるボタンを隠す */
  }
  #wrapper .container .hamburger-btn img {
    width: 100%;
    height: auto;
  }
  #wrapper .container .hamburger-btn .icon-close {
    display: none;
  }
  #wrapper .container .hamburger-btn.is-open .icon-open {
    display: none;
  }
  #wrapper .container .hamburger-btn.is-open .icon-close {
    display: block;
  }
  #wrapper .container .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(30, 117, 93, 0.97);
    z-index: 999;
    display: none;
    /* 初期は非表示 */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
  }
  #wrapper .container .nav-menu .right_flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 348px;
    width: 100%;
    margin: 0 auto;
    height: auto;
    min-height: auto;
    gap: 30px;
  }
  #wrapper .container .nav-menu .right_flex .space {
    display: none;
  }
  #wrapper .container .nav-menu .right_flex .nav_bx .nav-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    max-width: 50vw;
    width: 100%;
    margin: 30vw auto 0;
  }
  #wrapper .container .nav-menu .right_flex .nav_bx .nav-list li {
    flex-basis: 100%;
    margin-bottom: 5vw;
  }
  #wrapper .container .nav-menu .right_flex .nav_bx .nav-list li a img {
    height: 7vw;
    max-width: 100%;
  }
  #wrapper .container .nav-menu .right_flex .nav_bx .line_entry {
    margin: 5vw auto 0;
    max-width: 90vw;
  }
  #wrapper .container .nav-menu .right_flex .nav_bx .line_entry a img {
    width: 100%;
  }
  #wrapper .container .nav-menu .right_flex .icon {
    max-width: 62vw;
    margin: 0 auto 5vw;
  }
  #wrapper .container .nav-menu .right_flex .icon img {
    max-width: 100%;
    margin-bottom: 0;
  }
  #wrapper .container .nav-menu.is-active {
    display: flex;
  }
}/*# sourceMappingURL=common.css.map */