@charset "UTF-8";
/* Scss Document */
:root {
  --clogreen: #667722;
  --clowhite: #fff;
  --cloblack: #222;
  --cloblack2: #000;
}

html:not(.responsive) {
  width: 100%;
  /* viewport */
}

/*=============================================
 * body
 *=============================================*/
body {
  color: var(--cloblack);
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  line-height: 2.33;
  letter-spacing: 0.15em;
  background-image: url(../img/shared/bgbody.jpg);
  background-position: center top;
  background-repeat: repeat;
  min-width: inherit;
  min-height: inherit;
  max-height: 100%;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 17px;
    line-height: 2.35;
    min-width: 1200px;
  }
}

/*=============================================
 * fonts - DON'T EDIT
 *=============================================*/
.fnt-mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.fnt-meiryo {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴシックPro", "ＭＳ ゴシック", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.fnt-gothic {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/*=============================================
 * .fnt - customs
 *=============================================*/
.fnt-notosans {
  font-family: "Noto Sans JP", sans-serif;
}

.fnt-notoserif {
  font-family: "Noto Serif JP", serif;
}

.fnt-shippori {
  font-family: "Shippori Mincho", serif;
}

[class^=ico-inline] {
  display: inline-block;
  position: relative;
  line-height: 1;
}
[class^=ico-inline] img {
  vertical-align: baseline;
}

.txt-c {
  text-align: center;
}

.txt-j {
  text-align: justify;
}

.txt-r {
  text-align: right;
}

.txt-l {
  text-align: left;
}

.fwb {
  font-weight: bold;
}

.db {
  display: block;
}

.d-flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.d-flex-between {
  justify-content: space-between;
}

.d-flex-j-center {
  justify-content: center;
}

.d-flex-a-center {
  align-items: center;
}

em {
  font-style: normal;
}

strong {
  font-weight: normal;
}

.slick-slider {
  z-index: 0;
}
.slick-slider .slick-dots {
  line-height: 0;
  text-align: center;
}
.slick-slider .slick-dots li {
  display: inline-block;
}
.slick-slider .slick-dots button {
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid #cd321d;
  background: none;
  width: 12px;
  height: 12px;
}
.slick-slider .slick-dots .slick-active button {
  background: #cd321d;
}
.slick-slider .slick-arrow {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 0;
  border: none;
  outline: none;
  border-radius: 50%;
  cursor: pointer;
  background: url("../img/shared/prev.png");
  background-position: center center;
  background-repeat: no-repeat, repeat;
  background-size: cover;
  z-index: 1;
}
.slick-slider .slick-arrow:hover {
  opacity: 0.8;
}
.slick-slider .slick-arrow.slick-prev {
  left: 0;
}
.slick-slider .slick-arrow.slick-next {
  right: 0;
  transform: rotate(180deg);
}

.slider-nav .slick-list, .slider-nav .slick-track {
  transform: translate3d(0, 0, 0) !important;
}
.slider-nav .slick-slide {
  cursor: pointer;
  line-height: 0;
}
.slider-nav .slick-slide:hover {
  opacity: 0.8;
}

.bgsec-parallax {
  position: relative;
  overflow: hidden;
}

.img-parallax {
  clip: rect(0, auto, auto, 0);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.img-parallax img {
  width: 100%;
  height: 100vh;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 0;
  margin: 0;
  object-fit: cover;
  z-index: -1;
  transform: translateZ(0);
}

iframe {
  width: 100%;
  height: 100%;
}

.btn-global {
  display: block;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid var(--clogreen);
  background: var(--clowhite);
  position: relative;
  text-align: center;
  padding: 14.5px 0px;
  line-height: 2;
  cursor: pointer;
}
.btn-global:hover {
  opacity: 0.8;
  text-decoration: none;
}
.btn-global:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 32px;
  background-image: url(../img/shared/arrow_btn.png);
  width: 16px;
  height: 16px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}
.btn-global.btn-popup:after {
  background-image: url(../img/shared/link_btn.png);
  width: 16px;
  height: 16px;
}
@media screen and (min-width: 768px) {
  .btn-global.btn-popup:after {
    right: 42px;
    width: 18px;
    height: 18px;
  }
}

.ttl-border {
  position: relative;
  width: fit-content;
  font-weight: 500;
}
.ttl-border:after {
  content: "";
  position: relative;
  display: block;
  top: 0px;
  left: 0px;
  right: 0px;
  background: var(--clogreen);
  width: 13vw;
  height: 3px;
  margin: 0px auto;
}

.tel-global {
  box-sizing: border-box;
  width: fit-content;
  font-size: 4.4vw;
  line-height: 1.78;
  position: relative;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-style: solid;
  padding: 3vw 5.656vw;
}
.tel-global:before, .tel-global:after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  border-style: solid;
  border-left-width: 1px;
  border-right-width: 1px;
  border-bottom: 0px;
  border-top: 0px;
  height: 4vw;
}
.tel-global:before {
  top: 0px;
}
.tel-global:after {
  bottom: 0px;
}
.tel-global span {
  font-size: 6.66vw;
  letter-spacing: 0.05em;
  line-height: 1.44;
}
.tel-global small {
  font-size: 3.86vw;
}

.btn-web-global {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/shared/bg_green.jpg);
  background-position: center top;
  background-repeat: repeat;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  font-size: 16px;
  line-height: 1.38;
  letter-spacing: 0.1em;
  padding: 17px 0px;
}
.btn-web-global:hover {
  opacity: 0.8;
  text-decoration: none;
}
.btn-web-global i {
  margin-right: 12px;
  width: 22px;
}

.fz18 {
  font-size: 3.73vw;
}

.fz20 {
  font-size: 4vw;
}

.fz25 {
  font-size: 4.66vw;
}

.fz27 {
  font-size: 4.93vw;
}

.fz30 {
  font-size: 5.33vw;
}

.fz37 {
  font-size: 6.18vw;
}

.fz40 {
  font-size: 6.66vw;
}

.fz47 {
  font-size: 7.6vw;
}

.fz57 {
  font-size: 8.93vw;
}

.fz67 {
  font-size: 10.26vw;
}

.fwm {
  font-weight: 500;
}

.img-shadow {
  box-shadow: 0px 13px 17px 0px rgba(0, 0, 0, 0.15);
}

.price-all {
  line-height: 1.23;
  letter-spacing: 0.1em;
}
.price-all * {
  letter-spacing: 0.1em;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .img-parallax img {
    height: auto !important;
  }
}
@media only screen and (min-width: 768px) {
  .nav--opened {
    overflow-y: inherit !important;
  }
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .for-sp {
    display: none;
  }
  .slick-slider .slick-dots button {
    width: 15px;
    height: 15px;
  }
  /*=============================================
  * text vertical
  *=============================================*/
  .txt-vertical-pc {
    cursor: vertical-text;
    writing-mode: vertical-rl;
    -o-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -moz-writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: upright;
    word-wrap: break-word;
  }
  .txt-vertical-pc .txt-dot {
    cursor: vertical-text;
    direction: ltr;
    writing-mode: vertical-lr;
    -o-writing-mode: vertical-lr;
    -ms-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    -moz-writing-mode: vertical-lr;
    -webkit-writing-mode: vertical-lr;
    text-orientation: sideways-right;
    -o-text-orientation: sideways-right;
    -ms-text-orientation: upright;
    -ms-text-orientation: sideways-right;
    -moz-text-orientation: sideways-right;
    -webkit-text-orientation: sideways-right;
    line-height: 1;
  }
  .txt-vertical-pc .int {
    writing-mode: lr-tb;
    -o-writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    -moz-writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
    display: inline-block;
    text-align: center;
    line-height: 1;
  }
  .txt-vertical-pc .txt-normal .int {
    height: 1.1em;
  }
  .txt-vertical-pc .txt-latin {
    cursor: vertical-text;
    direction: rtl;
    writing-mode: vertical-rl;
    -o-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -moz-writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: sideways-right;
    -o-text-orientation: sideways-right;
    -ms-text-orientation: upright;
    -ms-text-orientation: sideways-right;
    -moz-text-orientation: sideways-right;
    -webkit-text-orientation: sideways-right;
  }
  .txt-vertical-pc .txt-latin .int {
    cursor: vertical-text;
    direction: rtl;
    writing-mode: vertical-rl;
    -o-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -moz-writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: sideways-right;
    -o-text-orientation: sideways-right;
    -ms-text-orientation: upright;
    -ms-text-orientation: sideways-right;
    -moz-text-orientation: sideways-right;
    -webkit-text-orientation: sideways-right;
    display: inline;
  }
  .d-flex-pc {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }
  .ttl-border:after {
    width: 100px;
  }
  .tel-global {
    font-size: 18px;
    line-height: 1.38;
    padding: 30px 25px;
  }
  .tel-global:before, .tel-global:after {
    height: 23px;
  }
  .tel-global span {
    font-size: 28px;
    line-height: 1.28;
  }
  .tel-global small {
    font-size: 14px;
  }
  .btn-web-global {
    font-size: 18px;
  }
  .btn-web-global i {
    width: 25px;
  }
  .fz18 {
    font-size: 18px;
  }
  .fz20 {
    font-size: 20px;
  }
  .fz25 {
    font-size: 25px;
  }
  .fz27 {
    font-size: 27px;
  }
  .fz30 {
    font-size: 30px;
  }
  .fz37 {
    font-size: 37px;
  }
  .fz40 {
    font-size: 40px;
  }
  .fz47 {
    font-size: 47px;
  }
  .fz57 {
    font-size: 57px;
  }
  .fz67 {
    font-size: 67px;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .for-pc {
    display: none;
  }
  [class^=txt-vertical] .fz37 {
    font-size: 6.93vw;
  }
  [class^=txt-vertical] .fz47 {
    font-size: 8.26vw;
  }
  [class^=txt-vertical] .fz57 {
    font-size: 9.6vw;
  }
}
.txt-vertical-all {
  cursor: vertical-text;
  writing-mode: vertical-rl;
  -o-writing-mode: vertical-rl;
  -ms-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -moz-writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  text-orientation: upright;
  word-wrap: break-word;
}
.txt-vertical-all .int {
  writing-mode: lr-tb;
  -o-writing-mode: horizontal-tb;
  -ms-writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
  -moz-writing-mode: horizontal-tb;
  -webkit-writing-mode: horizontal-tb;
  display: inline-block;
  text-align: center;
  line-height: 1.5em;
}
.txt-vertical-all .txt-latin {
  cursor: vertical-text;
  direction: rtl;
  writing-mode: vertical-rl;
  -o-writing-mode: vertical-rl;
  -ms-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -moz-writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  text-orientation: sideways-right;
  -o-text-orientation: sideways-right;
  -ms-text-orientation: upright;
  -ms-text-orientation: sideways-right;
  -moz-text-orientation: sideways-right;
  -webkit-text-orientation: sideways-right;
}

/*=============================================
 * <main>
 *=============================================*/
main {
  clear: both;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.wrap {
  width: 1000px;
}

/*=============================================
 * <header>
 *=============================================*/
header {
  position: relative;
}
header h1 {
  position: relative;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  z-index: 1;
}
header .header-left, header .header-right {
  position: absolute;
  z-index: 1;
}
header .nav-main {
  margin-top: 50px;
}
header .nav-main a {
  color: var(--clowhite);
  display: block;
  position: relative;
  width: fit-content;
  line-height: 1;
  font-size: 20px;
  letter-spacing: 0.15em;
  padding-left: 70px;
  box-sizing: border-box;
}
header .nav-main a:hover {
  text-decoration: none;
}
header .nav-main a:after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-bottom: 1px solid var(--clowhite);
  opacity: 0;
}
header .nav-main a:hover:after, header .nav-main .active:after {
  opacity: 1;
}
header .nav-main a + a {
  margin-top: 35px;
}
header .header-right {
  top: 30px;
  right: 50px;
}
header .tel {
  width: 277px;
  color: var(--clowhite);
  font-size: 28px;
  line-height: 1.28;
  letter-spacing: 0.05em;
  border-top: 1px solid;
  border-bottom: 1px solid;
  position: relative;
  padding: 29px 0px;
}
header .tel:before, header .tel:after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  border-left: 1px solid;
  border-right: 1px solid;
  height: 23px;
}
header .tel:before {
  top: 0px;
}
header .tel:after {
  bottom: 0px;
}
header .tel span {
  font-size: 18px;
  display: block;
  letter-spacing: 0.15em;
}
header .tel small {
  font-size: 14px;
  letter-spacing: 0.15em;
}
header .header-btn {
  margin-left: 30px;
  width: 200px;
}
header .header-btn .btn-web-global {
  flex-direction: column;
  height: 120px;
}
header .header-btn .btn-web-global i {
  display: block;
  margin: 0px 0px 12px;
}
@media screen and (max-width: 767px) {
  header .header-left {
    background-image: url(../img/shared/logo_light.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    top: 0px;
    left: 0px;
    right: 0px;
    padding: 6vw 40%;
  }
  header h1 {
    margin: 6vw 6% 0px;
    text-align: center;
    color: rgba(34, 34, 34, 0.7);
  }
}
@media screen and (min-width: 768px) {
  header h1 {
    font-size: 14px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
  }
  header .header-left {
    top: 30px;
  }
  header .logo {
    margin-left: 70px;
  }
}

/*=============================================
 * <footer>
 *=============================================*/
footer {
  background: url(../img/shared/bg_ft.png), #000000;
  background-position: center top;
  background-repeat: repeat-x;
  color: #fff;
}
footer nav {
  margin-top: 72px;
  padding: 23px 0px;
  font-size: 20px;
  line-height: 2.75;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
footer nav a + a {
  margin-left: 50px;
}
footer .btn-copy i {
  display: inline-block;
  position: relative;
  line-height: 1;
  bottom: 2px;
}
footer .ft-info{
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 13vw 0px calc(10vw + 70px);
    background-size: 200% auto;
  }
  footer .logo {
    margin: 0px 40%;
  }
  footer .ft-info {
    text-align: center;
    margin-top: 15vw;
  }
  footer .btn-copy, footer .cookies-link, footer address {
    margin-top: 6vw;
  }
}
@media screen and (min-width: 768px) {
  footer {
    padding: 72px 0px 48px;
  }
  footer .wrap {
    width: auto;
    max-width: 1200px;
  }
  footer .ft-info {
    max-width: 1000px;
    margin: 35px auto 0px;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  footer #socialbuttons {
    margin-right: -3px;
  }
}
footer address {
  color: #9b9b9b;
  font-size: 13px;
  line-height: 1.75;
}
footer .cookies-link, footer .btn-copy {
  color: #9b9b9b;
  font-size: 12px;
  line-height: 1.75;
}
footer .cookies-link a {
  border-bottom: 1px solid;
}
footer .cookies-link a:hover {
  text-decoration: none;
  border-bottom: 0px;
}
footer .btn-copy span {
  margin-left: 9px;
  border-bottom: 1px solid;
}
footer .btn-copy span:hover {
  text-decoration: none;
  border-bottom: 0px;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.animated {
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    -webkit-transition: none !important;
    animation: unset !important;
    transition: none !important;
  }
}
/*--------------------navi + menu-toggle + ft-fixed-------------------*/
.nav-fixed {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 11;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  flex-wrap: wrap;
}
.nav-fixed:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-image: url(../img/shared/bg_white.jpg);
  background-position: center top;
  background-repeat: repeat;
  z-index: -1;
  opacity: 0.83;
}
.nav-fixed.fixed {
  opacity: 1;
  visibility: visible;
}
.nav-fixed .col-right {
  background-image: url(../img/shared/bg_green.jpg);
  background-position: center top;
  background-repeat: repeat;
  color: var(--clowhite);
  margin-left: auto;
}
.nav-fixed .tel-fix {
  width: 220px;
  font-size: 24px;
  line-height: 1.28;
  letter-spacing: 0.05em;
  position: relative;
  padding: 24px 0px;
}
.nav-fixed .tel-fix span {
  font-size: 15px;
  display: block;
  letter-spacing: 0.15em;
}
.nav-fixed .tel-fix small {
  font-size: 12px;
  letter-spacing: 0.15em;
}
.nav-fixed .fix-btn {
  border-left: 1px solid;
  width: 220px;
}
.nav-fixed .fix-btn .btn-web-global {
  font-size: 15px;
  flex-direction: column;
  padding: 25px 0px;
}
.nav-fixed .fix-btn .btn-web-global i {
  display: block;
  margin: 0px 0px 7px;
  width: 22px;
}
.nav-fixed .nav-top {
  padding: 25px 0px 0px 69px;
}
.nav-fixed .nav-top ul {
  line-height: 1;
  letter-spacing: 0.1em;
}
.nav-fixed .nav-top ul li + li {
  padding-left: 15.5px;
}
.nav-fixed .nav-top ul li + li span:before {
  content: "|";
  padding-right: 15.5px;
  display: inline-block;
  text-decoration: none;
  text-decoration-line: none;
  text-decoration-color: transparent;
  color: rgba(102, 119, 34, 0.5);
}
.nav-fixed .nav-top ul + ul {
  margin-top: 19px;
}

.nav-fixed .nav-top .active , a:hover{
  color: var(--clogreen);
  text-decoration: underline;
}


.ipad .nav-fixed .nav-top{
  padding: 20px 25px;
}
.ipad .nav-fixed .tel-fix{
  padding-top: 13px;
  padding-bottom: 11px;
}
.ipad .nav-fixed .fix-btn .btn-web-global{
  padding-top: 12px;
  padding-bottom: 12px;
}

#ft-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: #fff;
  box-sizing: border-box;
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.1em;
}
#ft-fixed:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-top: 1px solid #f3f3f0;
  border-bottom: 1px solid #f3f3f0;
  z-index: 1;
}
#ft-fixed ul {
  position: relative;
  z-index: 0;
}
#ft-fixed ul:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  background-image: url(../img/shared/bg_green.jpg);
  background-position: center top;
  background-repeat: repeat;
  width: 33%;
  z-index: -1;
}
#ft-fixed li {
  width: 33%;
  padding: 14px 0px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
#ft-fixed li i {
  display: block;
  margin-bottom: 8px;
}
#ft-fixed li i img {
  width: auto;
  height: 26px;
}
#ft-fixed li + li:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  border-left: 1px solid #fff;
}
#ft-fixed .sp-tel, #ft-fixed .sp-web {
  color: #fff;
}
#ft-fixed .hamburger:before {
  border-left-color: var(--clogreen);
}
#ft-fixed .hamburger.is-active:before {
  border-left-color: transparent;
}

@media only screen and (max-width: 767px) {
  .nav-fixed {
    visibility: hidden;
    pointer-events: none;
    height: 0;
  }
  .hamburger {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: flex;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    border: 0;
    margin: 0;
    overflow: visible;
  }
  .hamburger:after {
    content: "MENU";
    position: relative;
    display: block;
    line-height: 1;
    text-align: center;
    margin-top: 9px;
  }
  .hamburger .hamburger-box {
    width: 40px;
    height: 21px;
    display: inline-block;
    position: relative;
  }
  .hamburger .hamburger-inner {
    display: block;
  }
  .hamburger .hamburger-inner, .hamburger .hamburger-inner::before, .hamburger .hamburger-inner::after {
    width: 40px;
    height: 1px;
    background-color: var(--clogreen);
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
  }
  .hamburger .hamburger-inner::before,
  .hamburger .hamburger-inner::after {
    content: "";
    display: block;
  }
  .hamburger .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s;
  }
  .hamburger .hamburger-inner::after {
    top: 20px;
  }
  .hamburger.is-active {
    background-image: url(../img/shared/bg_white.jpg);
    background-position: center top;
    background-repeat: repeat;
  }
  .hamburger.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(25deg);
  }
  .hamburger.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0;
  }
  .hamburger.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-50deg);
  }
  .menu-toggle {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    width: 100%;
    top: 0px;
    right: 0;
    bottom: 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10vw 0px calc(15vw + 70px);
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    z-index: 9;
    overflow: auto;
    border-top: 1px solid var(--clogreen);
    background-image: url(../img/shared/bg_white.jpg);
    background-position: center top;
    background-repeat: repeat;
  }
  .menu-toggle .logo {
    margin: 0px 40%;
  }
  .menu-toggle .nav-ham {
    margin-top: 10vw;
  }
  .menu-toggle .nav-ham a {
    display: block;
    font-size: 5.06vw;
    line-height: 2.36;
    letter-spacing: 0.15em;
  }
  .menu-toggle .nav-ham .active {
    color: #fff;
    background-image: url(../img/shared/bg_green.jpg);
    background-position: center top;
    background-repeat: repeat;
  }
  .menu-toggle .nav-ham a + a {
    margin-top: 3vw;
  }
  body.nav--opened, body.nav--opened *, body.nav--opened *:hover, body.nav--opened *:focus, body.nav--opened *:active {
    /*    cursor: none !important;*/
    touch-action: none !important;
    pointer-events: none !important;
  }
  body.nav--opened .hamburger, body.nav--opened #menu-toggle, body.nav--opened #menu-toggle * {
    touch-action: auto !important;
    pointer-events: visible !important;
  }
  .nav--opened {
    overflow: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: none !important;
    pointer-events: none !important;
  }
  .nav--opened #ft-fixed:before {
    border-top: 1px solid var(--clogreen);
    right: 25%;
  }
  .nav--opened .hamburger:after {
    content: "CLOSE";
  }
  .nav--opened #menu-toggle {
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
  }
  .nav--opened #menu-toggle ul li {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
  .nav--opened #pagetop {
    z-index: -1;
  }
  #pagetop {
    right: 5px;
    bottom: 75px;
  }
}
@media only screen and (min-device-width: 375px) and (min-device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
  footer:after {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 36px;
    background-image: url("../img/shared/bg_green.jpg");
    background-position: center top;
    background-repeat: repeat;
    z-index: 8;
  }
  footer{
    padding-bottom: calc(env(safe-area-inset-bottom) + calc(10vw + 70px));
  }
  #ft-fixed {
    bottom: calc(env(safe-area-inset-bottom) - 0px);
  }
  #pagetop {
    bottom: calc(env(safe-area-inset-bottom) + 75px);
  }
}
/* iPhone XR */
@media only screen and (min-device-width: 414px) and (min-device-height: 896px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
  footer:after {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 36px;
    background-image: url("../img/shared/bg_green.jpg");
    background-position: center top;
    background-repeat: repeat;
    z-index: 8;
  }
  footer{
    padding-bottom: calc(env(safe-area-inset-bottom) + calc(10vw + 70px));
  }
  #ft-fixed {
    bottom: calc(env(safe-area-inset-bottom) - 0px);
  }
  #pagetop {
    bottom: calc(env(safe-area-inset-bottom) + 75px);
  }
}
/* iPhone 11 */
@media only screen and (-webkit-min-device-pixel-ratio: 3), only screen and (min--moz-device-pixel-ratio: 3), only screen and (-o-min-device-pixel-ratio: 3/1), only screen and (min-device-pixel-ratio: 3), only screen and (min-resolution: 458dpi), only screen and (min-resolution: 3dppx) {
  footer:after {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 36px;
    background-image: url("../img/shared/bg_green.jpg");
    background-position: center top;
    background-repeat: repeat;
    z-index: 8;
  }
  footer{
    padding-bottom: calc(env(safe-area-inset-bottom) + calc(10vw + 70px));
  }
  #ft-fixed {
    bottom: calc(env(safe-area-inset-bottom) - 0px);
  }
  #pagetop {
    bottom: calc(env(safe-area-inset-bottom) + 75px);
  }
}
@media only screen and (min-width: 768px) {
  footer:after {
    display: none;
  }
}