@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Shippori+Mincho&family=Zen+Maru+Gothic&display=swap");
/**
 * 変数
 */
/**
 * color
 * ---------------------------
 */
/**
 * コンテンツ幅
 * ---------------------------
 */
/**
 * font famiry
 * ---------------------------
 */
/*
common
---------------------------*/
body {
  position: relative;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: #333333;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media (min-width: 769px) {
  body {
    font-size: 18px;
  }
}

.mode__pc,
.mode__pc--900,
.mode__pc--1000,
.mode__pc--until-1000 {
  display: none;
}

.mode__sp {
  display: block;
}

.mode__sp--900,
.mode__sp--until-350,
.mode__sp--until-1000 {
  display: block;
}

.mode__pc-ib {
  display: initial;
}

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

@media (min-width: 350px) {
  .mode__sp--until-350 {
    display: none;
  }
}
@media (min-width: 769px) {
  .mode__sp {
    display: none;
  }
  .mode__sp-ib {
    display: none;
  }
  .mode__pc {
    display: block;
  }
  .mode__pc-ib {
    display: inline-block;
  }
  .mode__pc--until-1000 {
    display: block;
  }
}
@media (min-width: 900px) {
  .mode__pc--900 {
    display: block;
  }
  .mode__sp--900 {
    display: none;
  }
}
@media (min-width: 1000px) {
  .mode__pc--1000 {
    display: block;
  }
  .mode__sp--until-1000,
  .mode__pc--until-1000 {
    display: none;
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

p {
  letter-spacing: 0;
  line-height: 1;
}

span {
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

a,
button {
  display: block;
  color: inherit;
  letter-spacing: 0;
  line-height: 1;
  cursor: pointer;
}

strong {
  font-weight: 600;
}

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

.ib {
  display: inline-block;
  font-weight: inherit;
}

.mover {
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  zoom: 1;
}
.mover:hover {
  opacity: 0.7;
}

.em {
  font-weight: 700;
}

@media (min-width: 769px) {
  .ib__pc {
    display: inline-block;
    font-weight: inherit;
  }
}
.d-none {
  display: none;
}

/*
inner
---------------------------*/
.inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.inner.edit {
  margin-top: 40px;
}

/*
c__ color
---------------------------*/
.c__primary {
  color: #006C3C;
}

.c__green {
  color: #457C32;
}

.c__dark-green {
  color: #006221;
}

/*
b__ border
---------------------------*/
.b__green {
  border: 1px solid #006C3C;
}

/*
float__ float
---------------------------*/
.float__l {
  float: left;
}

.float__r {
  float: right;
}

/*
mt__ margin-top
---------------------------*/
.mt__10 {
  margin-top: 10px;
}

/*
ml__ margin-left
---------------------------*/
.ml__10 {
  margin-left: 10px;
}

.ml__20 {
  margin-left: 20px;
}

/*
underline
---------------------------*/
.underline--1 {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
}
.underline--2 {
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
}
.underline--3 {
  text-decoration: underline;
  text-decoration-thickness: 3px;
}
.underline--4 {
  text-decoration: underline;
  text-decoration-thickness: 4px;
}
.underline--wavy-1 {
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-thickness: 1px;
}

/*
indent
---------------------------*/
.indent--1 {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
}
.indent--1-2 {
  display: inline-block;
  padding-left: 1.2em;
  text-indent: -1.2em;
}
.indent--2 {
  display: inline-block;
  padding-left: 2em;
  text-indent: -2em;
}
.indent--3 {
  display: inline-block;
  padding-left: 3em;
  text-indent: -3em;
}

/*
btn
---------------------------*/
.btn__wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.btn--green a, .btn--green button {
  color: #ffffff;
  background: #006C3C;
}
.btn--green-grad a, .btn--green-grad button {
  color: #ffffff;
  background: -webkit-gradient(linear, left top, right top, from(#006221), to(#004D1A));
  background: linear-gradient(90deg, #006221 0%, #004D1A 100%);
}
.btn--red-grad a, .btn--red-grad button {
  color: #ffffff;
  background: -webkit-gradient(linear, left top, right top, from(#A61E1E), to(#9E2A1F));
  background: linear-gradient(90deg, #A61E1E 0%, #9E2A1F 100%);
}
.btn--gray a, .btn--gray button {
  color: #ffffff;
  background: #ACACAC;
}
.btn--wh-green a, .btn--wh-green button {
  background: #ffffff;
  border: 1px solid #006C3C;
}
.btn--wh-red a, .btn--wh-red button {
  color: #A61E1E;
  background: #ffffff;
  border: 2px solid #A61E1E;
}
.btn--detail a, .btn--detail button {
  position: relative;
  padding: 6px 0 6px 38px;
  font-size: min(4vw, 14px);
  font-weight: 700;
  line-height: 1.3;
}
.btn--detail a::before, .btn--detail button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  background: #006C3C;
  border-radius: 50%;
}
.btn--detail a::after, .btn--detail button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 9px;
  margin: auto;
  width: 7px;
  height: 7px;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (min-width: 769px) {
  .btn--detail a, .btn--detail button {
    padding: 14px 0 14px 62px;
    font-size: min(2vw, 18px);
  }
  .btn--detail a::before, .btn--detail button::before {
    width: 50px;
    height: 50px;
  }
  .btn--detail a::after, .btn--detail button::after {
    left: 16px;
    width: 13px;
    height: 13px;
  }
}
.btn--pdf-green a, .btn--pdf-green button {
  position: relative;
  background: #ffffff;
  border: 1px solid #006221;
  border-radius: 10px;
  -webkit-box-shadow: 10px 10px 0 #E3EFE8;
          box-shadow: 10px 10px 0 #E3EFE8;
}
.btn--pdf-green a::before, .btn--pdf-green button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  margin: auto;
  width: 40px;
  height: 40px;
  background: #006221;
  border-radius: 50%;
}
.btn--pdf-green a::after, .btn--pdf-green button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  margin: auto;
  width: 25px;
  height: 25px;
  background: url("/img/common/icon-pdf-white.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 769px) {
  .btn--pdf-green a::before, .btn--pdf-green button::before {
    left: 30px;
    width: 50px;
    height: 50px;
  }
  .btn--pdf-green a::after, .btn--pdf-green button::after {
    left: 39px;
    width: 30px;
    height: 30px;
  }
}

/*
header
---------------------------*/
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 107px;
  background: #ffffff;
  z-index: 99999;
}
header.open .main .menu button .border {
  background: transparent;
}
header.open .main .menu button .border::before {
  top: 0px;
  left: 2px;
  width: 24px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
header.open .main .menu button .border::after {
  top: 0px;
  left: 2px;
  width: 24px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
header.open .main nav {
  left: 0;
}
header .wrap {
  padding-bottom: 5px;
}
header .sub {
  padding: 5px 8px 4px;
  background: #006C3C;
}
header .sub p {
  font-size: 11px;
  color: #ffffff;
}
header .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px;
  gap: 0 10px;
  border-bottom: 5px solid #006C3C;
}
header .main .logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
header .main .logo a {
  font-size: min(7vw, 26px);
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  line-height: 1.2;
  color: #000000;
}
header .main .logo a .sm {
  font-size: min(6.5vw, 24px);
}
header .main .logo a .c__dark-green {
  letter-spacing: -0.05em;
}
header .main > .menu button {
  width: 50px;
  padding: 8px 0 15px;
  background: #006C3C;
}
header .main > .menu button .text {
  font-size: 11px;
  color: #ffffff;
  text-align: center;
}
header .main > .menu button .border {
  position: relative;
  display: block;
  margin: 10px 10px 0;
  width: 30px;
  height: 3px;
  background: #ffffff;
  border-radius: 20px;
}
header .main > .menu button .border::before, header .main > .menu button .border::after {
  content: "";
  position: absolute;
  left: 0;
  width: 30px;
  height: 3px;
  background: #ffffff;
  border-radius: 20px;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
header .main > .menu button .border::before {
  top: -8px;
}
header .main > .menu button .border::after {
  top: 8px;
}
header .main nav {
  position: fixed;
  top: 107px;
  left: 100vw;
  width: 100%;
  height: calc(100vh - 107px);
  padding: 30px 24px 50px;
  background: #E3EFE8;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: auto;
  z-index: 99999;
}
header .main nav .btn__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px 0;
}
header .main nav .btn__list .btn__wrap {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}
header .main nav .btn__list .btn__wrap a,
header .main nav .btn__list .btn__wrap button {
  position: relative;
  padding: 14px 25px;
  font-size: min(4.5vw, 16px);
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
}
header .main nav .btn__list .btn__wrap a::after,
header .main nav .btn__list .btn__wrap button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 145px;
  right: 0;
  margin: auto;
  width: 7px;
  height: 7px;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
header .main nav .btn__list .btn__wrap a.logout,
header .main nav .btn__list .btn__wrap button.logout {
  width: 100%;
}
header .main nav .link__list {
  width: 100%;
  margin: 30px 0;
}
header .main nav .link__list > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
header .main nav .link__list > ul > li {
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 16px;
  border-bottom: 1px solid #006C3C;
}
header .main nav .link__list > ul > li:last-of-type {
  margin-bottom: 0;
}
header .main nav .link__list > ul > li > a,
header .main nav .link__list > ul > li > p {
  display: block;
  font-size: min(4.5vw, 16px);
  font-weight: 700;
  padding: 8px 0;
  cursor: pointer;
}
header .main nav .link__list > ul > li .menu {
  margin-left: 20px;
}
header .main nav .link__list > ul > li .menu ul li {
  position: relative;
}
header .main nav .link__list > ul > li .menu ul li + li {
  margin-top: 3px;
}
header .main nav .link__list > ul > li .menu ul li a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 0 5px;
  font-size: min(4.3vw, 15px);
  font-weight: 500;
}
@media (min-width: 769px) {
  header {
    height: auto;
  }
  header .wrap {
    padding-bottom: 9px;
  }
  header .sub {
    padding: 8px 10px;
  }
  header .sub p {
    font-size: min(1.6vw, 14px);
  }
  header .main {
    padding: 10px;
    gap: 0 20px;
    border-bottom: 10px solid #006C3C;
  }
  header .main .logo a {
    font-size: min(3.2vw, 36px);
  }
  header .main .logo a .sm {
    font-size: min(3vw, 34px);
  }
  header .main > .menu {
    display: none;
  }
  header .main nav {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    height: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0;
    background: #ffffff;
    overflow: unset;
  }
  header .main nav .btn__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 20px;
  }
  header .main nav .btn__list .btn__wrap {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: initial;
    margin: 0;
  }
  header .main nav .btn__list .btn__wrap a,
  header .main nav .btn__list .btn__wrap button {
    padding: 11px 25px 11px 10px;
    font-size: min(1.7vw, 18px);
  }
  header .main nav .btn__list .btn__wrap a::after,
  header .main nav .btn__list .btn__wrap button::after {
    left: auto;
    right: 10px;
  }
  header .main nav .btn__list .btn__wrap a.logout::after,
  header .main nav .btn__list .btn__wrap button.logout::after {
    right: 38px;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  header .main nav .btn__list .btn__wrap a.logout::after,
  header .main nav .btn__list .btn__wrap button.logout::after {
    right: 10px;
  }
}
@media (min-width: 769px) {
  header .main nav .link__list {
    margin: 10px 0 0;
  }
  header .main nav .link__list > ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
  }
  header .main nav .link__list > ul > li {
    position: relative;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
  header .main nav .link__list > ul > li > a,
  header .main nav .link__list > ul > li > p {
    font-size: min(1.7vw, 18px);
    font-weight: 400;
    padding: 6px 8px;
  }
  header .main nav .link__list > ul > li + li {
    margin-left: 8px;
    padding-left: 8px;
    border-left: 1px solid #006C3C;
  }
  header .main nav .link__list > ul > li:has(.menu) > a,
  header .main nav .link__list > ul > li:has(.menu) > p {
    position: relative;
    padding: 6px 36px 6px 8px;
  }
  header .main nav .link__list > ul > li:has(.menu) > a::after,
  header .main nav .link__list > ul > li:has(.menu) > p::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    width: 8px;
    height: 8px;
    border-right: 3px solid #006C3C;
    border-bottom: 3px solid #006C3C;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header .main nav .link__list > ul > li .menu {
    display: none;
    position: absolute;
    top: 25px;
    left: 8px;
    right: 0;
    margin: 0 auto;
    width: 96%;
    padding-top: 10px;
    padding-left: 0;
    border-left: none;
  }
  header .main nav .link__list > ul > li .menu ul {
    padding: 22px 10px;
    background: #ffffff;
    border: 1px solid #457C32;
    border-radius: 20px;
    z-index: 5;
  }
  header .main nav .link__list > ul > li .menu ul li {
    padding: 0 5px;
  }
  header .main nav .link__list > ul > li .menu ul li::before {
    content: none;
  }
  header .main nav .link__list > ul > li .menu ul li + li {
    padding-top: 6px;
    margin-top: 5px;
    border-top: 1px solid #ACACAC;
  }
  header .main nav .link__list > ul > li .menu ul li a {
    width: 100%;
    padding: 5px;
    font-size: min(1.7vw, 18px);
    font-weight: 400;
  }
}
@media (min-width: 1200px) {
  header .sub {
    padding: 8px 30px;
  }
  header .main {
    padding: 10px 50px 15px 30px;
  }
  header .main nav .btn__list .btn__wrap {
    width: 180px;
  }
  header .main nav .btn__list .btn__wrap a,
  header .main nav .btn__list .btn__wrap button {
    padding: 14px 25px 14px 10px;
  }
  header .main nav .link__list {
    margin-top: 12px;
  }
}

/*
banner
---------------------------*/
#banner .wrap {
  padding: 50px 0;
}
#banner .inner {
  width: 92%;
  max-width: 400px;
}
#banner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px 0;
}
#banner ul li {
  width: 100%;
}
#banner ul li a {
  width: 100%;
  border: 1px solid #006C3C;
  border-radius: 10px;
}
#banner ul li a img {
  display: block;
  width: 73%;
  margin: 0 auto;
  border-radius: 10px;
}
@media (min-width: 769px) {
  #banner .wrap {
    padding: 60px 0;
  }
  #banner .inner {
    width: 95%;
    max-width: 1100px;
  }
  #banner ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 20px;
  }
  #banner ul li {
    width: calc((100% - 60px) / 4);
  }
  #banner ul li a img {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  #banner ul {
    gap: 0 33.5px;
  }
  #banner ul li {
    width: calc((100% - 100.5px) / 4);
  }
}

/*
footer
---------------------------*/
footer .wrap {
  padding: 26px 0 50px;
  background: #E3EFE8;
  border-top: 4px solid #006C3C;
}
footer .column__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
footer .column__wrap .info__wrap {
  width: 100%;
}
footer .column__wrap .info__wrap .logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
footer .column__wrap .info__wrap .logo a {
  font-size: min(6.5vw, 24px);
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  line-height: 1.2;
  color: #000000;
}
footer .column__wrap .info__wrap .logo a .c__dark-green {
  letter-spacing: -0.05em;
}
footer .column__wrap .info__wrap .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 20px;
  margin-top: 20px;
}
footer .column__wrap .info__wrap .sns a {
  width: 30px;
}
footer .column__wrap .info__wrap .contact {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 20px auto 0;
}
footer .column__wrap .info__wrap .contact .name {
  font-size: min(4.5vw, 16px);
  font-weight: 600;
  font-family: "Inter", sans-serif;
  line-height: 1.4;
  color: #1E1E1E;
}
footer .column__wrap .info__wrap .contact .address {
  margin-top: 6px;
  font-size: min(4vw, 14px);
  line-height: 1.6;
  color: #1E1E1E;
}
footer .column__wrap .info__wrap .contact .tel {
  margin-top: 6px;
  font-size: min(4vw, 14px);
  line-height: 1.6;
  color: #1E1E1E;
}
footer .column__wrap .info__wrap .contact .mail {
  margin-top: 6px;
  font-size: min(4vw, 14px);
  line-height: 1.6;
  color: #1E1E1E;
}
footer .copyright {
  padding: 6px 5px 5px;
  background: #006C3C;
}
footer .copyright p {
  font-size: 10px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-align: center;
  color: #ffffff;
}
@media (min-width: 769px) {
  footer .wrap {
    padding: 55px 0 60px;
  }
  footer .inner {
    width: 95%;
    max-width: 1135px;
  }
  footer .column__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  footer .column__wrap .info__wrap {
    width: 43%;
    max-width: 400px;
  }
  footer .column__wrap .info__wrap .logo {
    width: 100%;
    margin: 0;
  }
  footer .column__wrap .info__wrap .logo a {
    font-size: min(3vw, 34px);
  }
  footer .column__wrap .info__wrap .sns {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  footer .column__wrap .info__wrap .contact {
    max-width: initial;
    margin: 20px 0 0;
  }
  footer .column__wrap .info__wrap .contact .name {
    font-size: min(2.2vw, 20px);
  }
  footer .column__wrap .info__wrap .contact .address {
    margin-top: 16px;
    font-size: min(2vw, 18px);
  }
  footer .column__wrap .info__wrap .contact .tel {
    margin-top: 10px;
    font-size: min(2vw, 18px);
  }
  footer .column__wrap .info__wrap .contact .mail {
    margin-top: 13px;
    font-size: min(2vw, 18px);
  }
  footer .column__wrap .nav__wrap {
    width: 50%;
    margin-left: 20px;
  }
  footer .column__wrap .nav__wrap nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  footer .column__wrap .nav__wrap nav ul + ul {
    margin-left: 25px;
  }
  footer .column__wrap .nav__wrap nav ul li + li {
    margin-top: 14px;
  }
  footer .column__wrap .nav__wrap nav ul li a, footer .column__wrap .nav__wrap nav ul li p {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: min(2vw, 18px);
    line-height: 1.4;
  }
  footer .column__wrap .nav__wrap nav ul li .menu {
    margin-top: 14px;
  }
  footer .column__wrap .nav__wrap nav ul li .menu ul {
    padding-bottom: 6px;
  }
  footer .column__wrap .nav__wrap nav ul li .menu ul li {
    margin-left: 19px;
  }
  footer .column__wrap .nav__wrap nav ul li .menu ul li + li {
    margin-top: 17px;
  }
  footer .copyright {
    padding: 8px 5px 6px;
    background: #006C3C;
  }
  footer .copyright p {
    font-size: 12px;
  }
}
@media (min-width: 1200px) {
  footer .column__wrap .nav__wrap nav ul + ul {
    margin-left: 35px;
  }
}

/*
sticky-button (追従）
---------------------------*/
.sticky-button {
  content: "";
  position: fixed;
  z-index: 10;
}
.sticky-button a,
.sticky-button button {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.sticky-button.membership-login {
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}
.sticky-button.membership-login .btn__wrap {
  width: 50%;
}
.sticky-button.membership-login .btn__wrap:nth-of-type(1) {
  background: -webkit-gradient(linear, left top, right top, from(#A61E1E), to(#9E2A1F));
  background: linear-gradient(90deg, #A61E1E 0%, #9E2A1F 100%);
}
.sticky-button.membership-login .btn__wrap:nth-of-type(2) {
  background: -webkit-gradient(linear, left top, right top, from(#006221), to(#004D1A));
  background: linear-gradient(90deg, #006221 0%, #004D1A 100%);
}
.sticky-button.membership-login .btn__wrap a,
.sticky-button.membership-login .btn__wrap button {
  position: relative;
  padding: 14px 21px 14px 5px;
  font-size: min(4.5vw, 16px);
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}
.sticky-button.membership-login .btn__wrap a::after,
.sticky-button.membership-login .btn__wrap button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.sticky-button.membership {
  bottom: 20px;
  right: 20px;
  width: 160px;
  height: auto;
  background: #731811;
  border: 2px solid #ffffff;
  border-radius: 8px;
}
.sticky-button.membership a {
  position: relative;
  padding: 10px 31px 10px 45px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  color: #ffffff;
}
.sticky-button.membership a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  margin: auto;
  width: 30px;
  height: 30px;
  background: url("/img/common/icon-text-white.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.sticky-button.membership a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (min-width: 769px) {
  .sticky-button.membership-login {
    display: none;
  }
}

/*
form-link（入会申込/会員情報変更フォームボタン）
---------------------------*/
.form-link .inner {
  position: relative;
  width: 95.8%;
  max-width: initial;
  margin: 0 0 0 auto;
  padding-bottom: 40px;
}
.form-link .inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 98%;
  height: 220px;
  background: #E3EFE8;
  border-radius: 20px 0 0 20px;
  z-index: -1;
}
.form-link .btn__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px 0;
  width: 95%;
  max-width: 1050px;
}
.form-link .btn__list .btn__wrap {
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
}
.form-link .btn__list .btn__wrap a {
  position: relative;
  width: 100%;
  padding: 22px 17% 22px 13%;
  border-radius: 20px;
}
.form-link .btn__list .btn__wrap a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  margin: auto;
  width: 15px;
  height: 15px;
  border-right: 4px solid #ffffff;
  border-bottom: 4px solid #ffffff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.form-link .btn__list .btn__wrap a .title {
  position: relative;
  padding-bottom: 11px;
  font-size: min(5vw, 18px);
  font-weight: 700;
  text-align: center;
}
.form-link .btn__list .btn__wrap a .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 80px;
  height: 1px;
  background: #ffffff;
}
.form-link .btn__list .btn__wrap a .detail {
  margin-top: 14px;
  font-size: min(4vw, 14px);
  text-align: center;
}
@media (min-width: 769px) {
  .form-link .inner {
    width: 95.8%;
    padding-bottom: 85px;
  }
  .form-link .inner::before {
    width: 100%;
    height: 140px;
  }
  .form-link .btn__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 50px;
    max-width: 1050px;
    margin: 0 auto;
  }
  .form-link .btn__list .btn__wrap {
    width: 46%;
    background: #ffffff;
    border-radius: 20px;
  }
  .form-link .btn__list .btn__wrap a {
    position: relative;
    width: 100%;
    padding: 20px 17% 20px 13%;
    border-radius: 20px;
  }
  .form-link .btn__list .btn__wrap a::after {
    right: 10%;
    width: 17px;
    height: 17px;
  }
  .form-link .btn__list .btn__wrap a .title {
    position: relative;
    padding-bottom: 11px;
    font-size: min(2.5vw, 24px);
  }
  .form-link .btn__list .btn__wrap a .title::after {
    width: 100px;
  }
  .form-link .btn__list .btn__wrap a .detail {
    margin-top: 17px;
    font-size: min(2vw, 18px);
  }
}
@media (min-width: 1200px) {
  .form-link .btn__list {
    gap: 0 79px;
    padding-right: 4.3%;
  }
  .form-link .btn__list .btn__wrap a {
    padding: 20px 105px 20px 69px;
  }
  .form-link .btn__list .btn__wrap a::after {
    right: 16%;
  }
}

/*=============================
下層共通
=============================*/
/*
lower__mainvisual
---------------------------*/
#lower__mainvisual .wrap {
  padding-bottom: 10px;
}
#lower__mainvisual .title {
  position: relative;
  width: 98%;
  max-width: initial;
  margin: 0 0 0 auto;
  padding: 25px 15px 25px 30px;
  background: -webkit-gradient(linear, left top, right top, from(#006C3C), to(#89B86E));
  background: linear-gradient(90deg, #006C3C 0%, #89B86E 100%);
  border-radius: 0 0 0 20px;
}
#lower__mainvisual .title::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 10px;
  width: calc(100% - 10px);
  height: 100%;
  background: #E3EFE8;
  border-radius: 0 0 0 20px;
  z-index: -1;
}
#lower__mainvisual .title h1 {
  font-size: min(6vw, 23px);
  font-weight: 900;
  font-family: "Lato", sans-serif;
  line-height: 1.3;
  letter-spacing: 0;
  color: #ffffff;
}
@media (min-width: 769px) {
  #lower__mainvisual .wrap {
    padding-bottom: 20px;
  }
  #lower__mainvisual .title {
    padding: 60px 70px;
  }
  #lower__mainvisual .title::before {
    bottom: -20px;
    left: 20px;
    width: calc(100% - 20px);
  }
  #lower__mainvisual .title h1 {
    font-size: min(4.5vw, 46px);
  }
}
@media (min-width: 1200px) {
  #lower__mainvisual .title {
    width: calc(100% - 30px);
  }
}

/*
breadcrumb
---------------------------*/
#breadcrumb .wrap {
  padding: 15px 0;
}
#breadcrumb .inner {
  width: 95%;
  max-width: 1100px;
}
#breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  overflow-x: auto;
}
#breadcrumb ul li + li {
  position: relative;
  margin-left: 10px;
  padding-left: 25px;
}
#breadcrumb ul li + li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 3px solid #006221;
  border-bottom: 3px solid #006221;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#breadcrumb ul li p, #breadcrumb ul li a {
  padding: 5px 0;
  font-size: min(3.8vw, 14px);
  line-height: 1.3;
  white-space: nowrap;
}
#breadcrumb ul li p a, #breadcrumb ul li a a {
  color: #006221;
}
@media (min-width: 769px) {
  #breadcrumb .wrap {
    padding: 35px 0;
  }
  #breadcrumb ul li + li {
    margin-left: 8px;
  }
  #breadcrumb ul li + li::before {
    width: 10px;
    height: 10px;
  }
  #breadcrumb ul li p, #breadcrumb ul li a {
    font-size: min(2vw, 16px);
  }
}

/*
lower__title
---------------------------*/
.lower__title {
  position: relative;
}
.lower__title h2 {
  padding-bottom: 10px;
  font-size: min(12vw, 45px);
  font-weight: 900;
  font-family: "Noto Serif", serif;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  color: #F3F3F3;
}
.lower__title p {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  margin: auto;
  font-size: min(6vw, 22px);
  font-weight: 700;
  text-align: center;
  color: #006221;
}
.lower__title p::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100px;
  height: 4px;
  background: url("/img/common/icon-ellipse.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 769px) {
  .lower__title h2 {
    padding-bottom: 11px;
    font-size: min(10vw, 100px);
  }
  .lower__title p {
    bottom: 11px;
    font-size: min(3.3vw, 34px);
  }
}/*# sourceMappingURL=common.css.map */