/*---------------------------------------------------------
function
---------------------------------------------------------*/
/*---------------------------------------------------------
font
---------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oxanium:wght@700&display=swap");
/*---------------------------------------------------------
Reset
---------------------------------------------------------*/
html,
body,
div,
article,
section,
main,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
input,
textarea,
address,
nav,
table,
th,
td,
a,
p,
img,
figure,
picture,
span,
em,
small,
dialog {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
html:before, html:after,
body:before,
body:after,
div:before,
div:after,
article:before,
article:after,
section:before,
section:after,
main:before,
main:after,
h1:before,
h1:after,
h2:before,
h2:after,
h3:before,
h3:after,
h4:before,
h4:after,
h5:before,
h5:after,
h6:before,
h6:after,
dl:before,
dl:after,
dt:before,
dt:after,
dd:before,
dd:after,
ul:before,
ul:after,
ol:before,
ol:after,
li:before,
li:after,
pre:before,
pre:after,
form:before,
form:after,
input:before,
input:after,
textarea:before,
textarea:after,
address:before,
address:after,
nav:before,
nav:after,
table:before,
table:after,
th:before,
th:after,
td:before,
td:after,
a:before,
a:after,
p:before,
p:after,
img:before,
img:after,
figure:before,
figure:after,
picture:before,
picture:after,
span:before,
span:after,
em:before,
em:after,
small:before,
small:after,
dialog:before,
dialog:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

main {
  display: block;
}

ul,
li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
}

picture {
  display: block;
}

img {
  border: none;
}

a {
  text-decoration: none;
}

a,
button {
  outline: none;
}
a:focus,
button:focus {
  outline: none;
}

sup,
sub {
  height: 0;
  line-height: 1;
  vertical-align: baseline;
  _vertical-align: bottom;
  position: relative;
}

sup {
  bottom: 0.5ex;
}

sub {
  top: 0.5ex;
}

code {
  font-family: inherit;
}

dialog {
  height: auto;
  border: none;
}

/*---------------------------------------------------------
base
---------------------------------------------------------*/
html {
  font-size: 1.3333333333vw;
}
@media print, screen and (min-width: 1024px) {
  html {
    font-size: 6.6666666667px;
  }
}
html.hidden {
  overflow: hidden;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-size: 3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1;
  color: #000;
  min-width: 320px;
  min-height: 100dvh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
}

img {
  width: 100%;
  vertical-align: bottom;
}

a,
button {
  color: inherit;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input,
textarea,
button,
select {
  font-family: "Noto Sans JP", sans-serif;
}

button {
  border: none;
  cursor: pointer;
}

.res-pc {
  display: inline !important;
}
@media only screen and (max-width: 1023px) {
  .res-pc {
    display: none !important;
  }
}

.res-sp {
  display: none !important;
}
@media only screen and (max-width: 1023px) {
  .res-sp {
    display: inline !important;
  }
}

.res-pc-block {
  display: block !important;
}
@media only screen and (max-width: 1023px) {
  .res-pc-block {
    display: none !important;
  }
}

.res-sp-block {
  display: none !important;
}
@media only screen and (max-width: 1023px) {
  .res-sp-block {
    display: block !important;
  }
}

.inline-block {
  display: inline-block;
}

.inner {
  padding: 0 3.3rem;
}

/*---------------------------------------------------------
modal
---------------------------------------------------------*/
.modal-item {
  display: none;
}

#modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  width: 100%;
  background-color: rgba(21, 74, 51, 0.9);
  z-index: 9999;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
  pointer-events: none;
}
#modal.modal-open {
  opacity: 1;
  pointer-events: auto;
}
#modal .modal-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
}
#modal .modal-flex .modal-container {
  overflow: auto;
  width: 100%;
  padding: 10rem 0;
}
#modal .modal-flex .modal-inner {
  padding: 0 7rem;
}
#modal #modal-close {
  position: absolute;
  z-index: 9;
  top: 4rem;
  right: 4rem;
  width: 4.7rem;
  height: 4.7rem;
  background: url("../img/common/btn-close.svg") no-repeat center center/100% 100%;
  cursor: pointer;
}

/*---------------------------------------------------------
lower
---------------------------------------------------------*/
.lower {
  overflow: hidden;
}
.lower .inner {
  padding: 0 3.3rem;
}
@media print, screen and (min-width: 1024px) {
  .lower .inner {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.lower .sp-frame {
  background-color: #0c7c4c;
}
.lower .mv-lower {
  position: relative;
}
.lower .mv-lower .lower-logo {
  position: absolute;
  top: 3rem;
  left: 50%;
  translate: -50% 0;
  width: 25.4rem;
}
.lower #contents {
  position: relative;
  z-index: 1;
  padding: 0 0 7.4rem;
  margin-top: -15.4rem;
  font-size: 2.6rem;
  line-height: 1.6923076923;
}
.lower .lower-frame {
  position: relative;
  z-index: 1;
  background-color: #fff;
  border: 0.8rem solid #305454;
  padding: 5rem;
}
.lower .lower-frame:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0.8rem solid #e1c990;
  z-index: -1;
}
.lower .lower-head {
  text-align: center;
  color: #1e5c41;
  margin-bottom: 5rem;
}
.lower .lower-head span {
  display: block;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.06em;
  letter-spacing: 0.07em;
}
.lower .lower-head strong {
  display: block;
  font-size: 5.5rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.06em;
  margin-top: 5rem;
}
.lower .box-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1e5c41;
  min-height: 7rem;
  padding: 0.4em 0;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 3.5rem;
}
.lower .box-title span {
  translate: 0 -0.1em;
  text-align: center;
}
.lower .box-title span ruby rt {
  text-align: center;
}
.lower .box:nth-of-type(n + 2) {
  margin-top: 6.5rem;
}
.lower .box > * + * {
  margin-top: 1em;
}
.lower .box a {
  border-bottom: 1px solid #1e5c41;
}
.lower .box p + p {
  margin-top: 2em;
}
.lower .box strong {
  display: inline-block;
  background-color: rgba(30, 92, 65, 0.1);
  padding: 0 0.5em;
  font-size: 3rem;
  margin: 0.5em 0 0;
}
.lower .box big {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  margin: 0.5em 0 0.5em;
}
.lower .box b {
  display: block;
  margin-top: 0.5em;
}
.lower .box b + b {
  margin-top: 0;
}
.lower .box dl dt {
  font-size: 2.8rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 0.5em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.06em;
}
.lower .box dl dt span {
  border-bottom: 1px solid #1e5c41;
}
.lower .box dl dd > * + * {
  margin-top: 1em;
}
.lower .box dl + dl {
  margin-top: 2em;
}
.lower .box ul > li {
  text-indent: -1em;
  padding-left: 1em;
}
.lower .box ol {
  padding-left: 1.5em;
}
.lower .box ol li span {
  display: block;
  float: left;
  margin-left: -1.5em;
}
.lower .box ul li * {
  text-indent: 0;
}
.lower .box ul li ul li {
  text-indent: -1em;
}
.lower .note-list {
  font-size: 2rem;
  line-height: 1.6;
}

.sp-frame {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  overflow: hidden;
}
@media print, screen and (min-width: 1024px) {
  .sp-frame {
    width: 500px;
    margin: 0 auto;
    padding-top: 0;
    -webkit-box-shadow: 0 0 80px rgba(8, 107, 49, 0.26);
            box-shadow: 0 0 80px rgba(8, 107, 49, 0.26);
  }
}

.pc-frame {
  display: none;
}
@media print, screen and (min-width: 1024px) {
  .pc-frame {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: url(../img/common/pc-bg.webp) no-repeat center center/cover;
    font-size: 16px;
    line-height: 1.4;
  }
}
.pc-frame .pc-left-box,
.pc-frame .pc-right-box {
  position: relative;
  z-index: 1;
  height: 100%;
  width: calc((100% - 500px) / 2);
}
.pc-frame .pc-left-box:before, .pc-frame .pc-left-box:after,
.pc-frame .pc-right-box:before,
.pc-frame .pc-right-box:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  background: no-repeat left top/min(calc( 470 / 1440 * 100vw), 470px) auto;
  z-index: -1;
}
.pc-frame .pc-left-box.pc-left-box:before,
.pc-frame .pc-right-box.pc-left-box:before {
  top: 0;
  left: 0;
  background-image: url(../img/common/pc-bg-img-lt.webp);
  background-position: left top;
}
.pc-frame .pc-left-box.pc-left-box:after,
.pc-frame .pc-right-box.pc-left-box:after {
  bottom: 0;
  left: 0;
  background-image: url(../img/common/pc-bg-img-lb.webp);
  background-position: left bottom;
}
.pc-frame .pc-left-box.pc-right-box:before,
.pc-frame .pc-right-box.pc-right-box:before {
  top: 0;
  right: 0;
  background-image: url(../img/common/pc-bg-img-rt.webp);
  background-position: right top;
}
.pc-frame .pc-left-box.pc-right-box:after,
.pc-frame .pc-right-box.pc-right-box:after {
  bottom: 0;
  right: 0;
  background-image: url(../img/common/pc-bg-img-rb.webp);
  background-position: right bottom;
}

.pc-left-box {
  position: relative;
}

.pc-right-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bg {
  position: relative;
  z-index: 1;
  background: url(../img/common/bg-pattern.svg) repeat center center/10.8rem auto, url(../img/common/bg-paper.webp) repeat center center/75rem auto;
  padding: 5rem 0 7rem;
  overflow: hidden;
}
.bg:after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0c8050;
  mix-blend-mode: multiply;
}
.btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.4rem;
  font-weight: 900;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.06em;
  width: 54.3rem;
  height: 9rem;
  border-radius: 100vw;
  background-color: #fff;
  overflow: hidden;
  text-decoration: none !important;
  margin: 0 auto;
}
.btn:after {
  position: absolute;
  display: block;
  content: " ";
  background: url(../img/common/arrow-white.svg) no-repeat center center/contain;
  width: 4rem;
  height: 4rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 3rem;
}
.btn.btn-line {
  width: 60.8rem;
  height: 11.1rem;
  background: -webkit-gradient(linear, left top, right top, from(#00c85c), to(#00a74d));
  background: linear-gradient(to right, #00c85c, #00a74d);
  font-size: 3.3rem;
  line-height: 1.2121212121;
  text-align: center;
  color: #fff;
}
.btn.btn-line:before {
  position: absolute;
  display: block;
  content: " ";
  background: url(../img/common/icon-line-white.png) no-repeat center center/contain;
  width: 5.8rem;
  height: 5.6rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 3.5rem;
}
.btn.btn-blown {
  background-color: #e1c990;
  border: 0.3rem solid #ebdec0;
  width: 61.2rem;
  font-size: 3.4rem;
  font-weight: bold;
}
.btn.btn-blown:after {
  background: url(../img/common/arrow.svg) no-repeat center center/cover;
}
.btn.btn-blown.btn-s {
  width: 38rem;
  height: 8rem;
  font-size: 2.6rem;
}
.btn.btn-blown.btn-s:after {
  width: 3.5rem;
  height: 3.5rem;
  right: 1.8rem;
}

#copyright {
  display: block;
  margin-top: 15.5rem;
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
}

/*---------------------------------------------------------
header
---------------------------------------------------------*/
.footer {
  text-align: center;
}
.footer #f-contact {
  background-color: #fff;
  padding: 6rem 0 7rem;
}
.footer #f-contact #f-contact-title {
  display: inline-block;
  font-size: 2.6rem;
  font-weight: bold;
  border-bottom: 1px solid #000;
  padding: 0 0.5em 0.5em;
}
.footer #f-contact #f-contact-txt {
  font-size: 2.6rem;
  margin-top: 3.5rem;
  line-height: 1;
}
.footer #f-contact #f-contact-link {
  position: relative;
  display: inline-block;
  padding-left: 1.3846153846em;
  font-size: 2.6rem;
  margin-top: 2rem;
}
.footer #f-contact #f-contact-link:before {
  position: absolute;
  display: block;
  content: " ";
  background: url(../img/common/arrow.svg) no-repeat center center/contain;
  width: 1em;
  height: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.footer #f-contact #f-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 5rem;
}
.footer #f-contact #f-sns li {
  width: 7.5rem;
}
.footer #f-contact #f-sns li:nth-child(n+2) {
  margin-left: 4.5rem;
}
.footer #f_btm {
  background-color: #000;
  padding: 9rem 0 6rem;
}
.footer #f_btm #f_btm-btn {
  width: 68.3rem;
  height: 9.9rem;
  margin: 0 auto;
  font-size: 2.8rem;
  font-weight: 700;
}
.footer #f_btm #f_btm-btn:after {
  background-image: url(../img/common/arrow.svg);
  width: 4rem;
  height: 4rem;
}
.footer #f_btm #f_nav {
  margin-top: 4rem;
}
.footer #f_btm #f_nav li {
  line-height: 1;
}
.footer #f_btm #f_nav li:nth-child(n+2) {
  margin-top: 0.5em;
}
.footer #f_btm #f_nav li a {
  position: relative;
  font-size: 2.2rem;
  color: #fff;
  line-height: 1.4;
  padding-right: 1.375em;
}
.footer #f_btm #f_nav li a:before {
  position: absolute;
  display: block;
  content: " ";
  background: url(../img/common/icon-blank.svg) no-repeat center center/contain;
  width: 0.6818181818em;
  height: 0.6818181818em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}
.footer #f_btm #f_btm-copyright {
  display: block;
  color: #fff;
  font-size: 2.2rem;
  margin-top: 6rem;
}

#pagetop {
  position: relative;
  z-index: 999;
  top: 8.5rem;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
#pagetop.is-active {
  opacity: 1;
  pointer-events: auto;
}
#pagetop a {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  margin-left: 25.3rem;
  display: block;
  width: 9rem;
}
#pagetop.is-fixed a {
  position: fixed;
}