@charset "UTF-8";
/* mixin
================================================================== */
/* Design parts
---------------------------------------------------------------- */
/* base
================================================================== */
:root {
  --black: #362706;
  --white: #fff;
  --main: #0f993d;
  --d-green: #b6d258;
  --l-green: #e3f0b4;
  --base: #faf5eb;
  --accent: #ffdd21;
  --header-h: 10rem;
  --br-max: 10rem;
  --br-sec: 8rem;
  --br-l: 3rem;
  --br-m: 2rem;
  --br-s: 1.2rem;
  --mg-80: 8rem;
  --mg-60: 6rem;
  --mg-50: 5rem;
  --mg-40: 4rem;
  --mg-30: 3rem;
  --mg-12: 10em;
  --fs-36: 3.6rem;
  --fs-32: 3.2rem;
  --fs-28: 2.8rem;
  --fs-26: 2.6rem;
  --fs-24: 2.4rem;
  --fs-22: 2.2rem;
  --fs-20: 2rem;
  --fs-18: 1.8rem;
  --fs-16: 1.6rem;
  --fs-15: 1.5rem;
  --fs-14: 1.4rem;
  --b-shadow: 0 3px 6px rgb(0 0 0 / 0.1);
}

@media only screen and (max-width: 1024px) {
  :root {
    --mg-12: 8rem;
    --fs-36: 3.2rem;
    --fs-32: 2.8rem;
    --fs-28: 2.6rem;
    --fs-26: 2.4rem;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --header-h: 6rem;
    --br-sec: 3rem;
    --br-l: 2rem;
    --br-m: 1.6rem;
    --br-s: 0.8rem;
    --mg-80: 6rem;
    --mg-60: 5rem;
    --mg-50: 4rem;
    --mg-40: 3rem;
    --mg-30: 2rem;
    --fs-36: 2.6rem;
    --fs-32: 2.6rem;
    --fs-28: 2.2rem;
    --fs-26: 2.4rem;
    --fs-24: 2.1rem;
    --fs-22: 1.8rem;
    --fs-20: 1.8rem;
    --fs-18: 1.5rem;
    --fs-16: 1.5rem;
    --fs-15: 1.4rem;
  }
}
/* common
---------------------------------------------------------------- */
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  font-size: var(--fs-16);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
  word-wrap: break-word;
  color: var(--black);
  width: 100%;
  background: var(--base);
}

main {
  overflow: hidden;
}

a {
  transition: 0.3s ease;
}

a:hover {
  opacity: 0.5;
}

@media (max-width: 767px) {
  body {
    line-height: 1.6;
  }
}
.d-i {
  display: inline;
}

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

.d-b {
  display: block;
}

.w-100 {
  width: 100%;
}

.text-left {
  text-align: left !important;
}

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

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

.text-just {
  text-align: justify;
}

.text-tate {
  writing-mode: vertical-rl;
}

/* PC,SP表示
---------------------------------------------------------------- */
@media only screen and (max-width: 1024px) {
  .d-pc {
    display: none !important;
  }
}
@media only screen and (min-width: 1025px) {
  .d-tb {
    display: none !important;
  }
}
@media only screen and (max-width: 768px), (min-width: 1025px) {
  .d-tb-only {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-tb-sp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .d-pc-tb {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-sp {
    display: none !important;
  }
}
@media only screen and (min-width: 429px) {
  .d-minsp {
    display: none !important;
  }
}
/* layout
--------------------------------------------------------------- */
.inner {
  margin-inline: auto;
  max-width: calc(1000px + 12%);
  padding: 12rem 6%;
  width: 100%;
}
.inner-11 {
  max-width: calc(1100px + 12%);
}
.inner-12 {
  max-width: calc(1200px + 12%);
}
.inner-13 {
  max-width: calc(1300px + 12%);
}
.inner-np {
  padding: 0 6%;
}
@media (max-width: 767px) {
  .inner {
    padding: 8rem 6%;
  }
}

/* flex utilities */
.flex {
  display: flex;
  align-items: flex-start;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.flex-x-center {
  display: flex;
  justify-content: center;
}

.flex-y-center {
  display: flex;
  align-items: center;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

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

/* animation
--------------------------------------------------------------- */
/* base end
================================================================== */
/* parts
================================================================== */
.sec-ttl {
  margin-bottom: var(--mg-60);
  text-align: center;
}
.sec-ttl-en {
  font-family: "Secular One", sans-serif;
  font-weight: 700;
  font-style: normal;
  display: block;
  font-size: var(--fs-28);
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--main);
  margin-bottom: 1rem;
}
.sec-ttl-jp {
  display: block;
  font-size: var(--fs-36);
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.btn {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: var(--fs-18);
  font-weight: bold;
  line-height: 1.2;
  padding: 1.2em 1em;
  width: 100%;
  border-radius: var(--br-max);
  background-color: var(--main);
  color: var(--white);
}
.btn::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.6em;
  height: 0.6em;
  top: 1px;
  bottom: 0;
  right: 1.2em;
  margin: auto;
  vertical-align: middle;
  line-height: 1;
  border: 2.5px solid var(--white);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  transition: 0.3s ease;
}
.btn:hover {
  opacity: 1;
  color: var(--main);
  background-color: var(--accent);
}
.btn:hover::before {
  right: 1em;
  border-color: var(--main);
}

.wave {
  display: block;
  width: 100%;
  height: 4.5rem;
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto 4.5rem;
  background-image: url("../img/renewal/wave.png");
}
@media (max-width: 1024px) {
  .wave {
    height: 3.5rem;
    background-size: auto 3.5rem;
  }
}
@media (max-width: 767px) {
  .wave {
    height: 2rem;
    background-size: auto 2rem;
  }
}

/* header
================================================================== */
.header {
  transition: 0.3s ease;
  position: fixed;
  z-index: 99;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: var(--header-h);
  background: var(--base);
  padding: 0 3rem;
}
@media (max-width: 1280px) {
  .header {
    background: unset;
  }
}
@media (max-width: 1024px) {
  .header {
    padding: 0 2rem;
  }
}
@media (max-width: 767px) {
  .header {
    align-items: flex-end;
    padding: 0 1.5rem 0.5rem;
  }
}
.header-logo {
  display: inline-block;
  height: 4.5rem;
}
.header-logo img {
  width: auto;
  height: 100%;
}
@media (max-width: 767px) {
  .header-logo {
    height: 3.5rem;
  }
}
.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3rem;
}
@media only screen and (max-width: 1399px) {
  .header-nav {
    font-size: 1.5rem;
    gap: 2rem;
  }
}
.header-nav-list {
  display: flex;
  justify-content: flex-end;
  gap: 0 1.5em;
  font-weight: bold;
}
@media (max-width: 1280px) {
  .header-nav-list {
    display: none;
  }
}
.header-nav-list a {
  position: relative;
  padding: 0.8em 0;
}
.header-nav-list a:hover {
  opacity: 1;
  color: var(--main);
}
.header-nav-btn {
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .header-nav-btn {
    display: none;
  }
}
.header-nav-btn .btn {
  width: 15rem;
  height: calc(var(--header-h) * 0.54);
  display: grid;
  align-items: center;
  padding: 0;
}
.header-nav-btn .btn::before {
  display: none;
}
.header-nav-btn .btn:first-of-type {
  background: var(--accent);
  color: var(--main);
}
.header-nav-btn .btn:first-of-type:hover {
  background: var(--main);
  color: var(--white);
}
@media (max-width: 767px) {
  .header-nav-btn .btn {
    width: 13rem;
  }
}
.header.change-color {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: 0.3s ease-in;
}
@media (max-width: 1024px) {
  .header.change-color {
    -webkit-backdrop-filter: unset;
            backdrop-filter: unset;
  }
}

/* hamburger
---------------------------------------------------------------- */
.hamburger-btn {
  display: none;
  position: relative;
  z-index: 999;
  width: calc(var(--header-h) * 0.54);
  height: calc(var(--header-h) * 0.54);
  cursor: pointer;
  background-color: var(--main);
  border-radius: var(--br-max);
}
@media (max-width: 1280px) {
  .hamburger-btn {
    display: block;
  }
}
@media (max-width: 767px) {
  .hamburger-btn {
    width: calc(var(--header-h) * 0.7);
    height: calc(var(--header-h) * 0.7);
  }
}

.bar {
  position: absolute;
  width: 50%;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  transition: 0.4s ease;
}
.bar--top {
  top: 34%;
}
.bar--middle {
  top: 50%;
}
.bar--bottom {
  top: 66%;
}

.js-close .bar--top {
  top: 48%;
  transform: translateX(-50%) rotate(45deg);
}
.js-close .bar--middle {
  opacity: 0;
  transition: 0.1s;
}
.js-close .bar--bottom {
  top: 48%;
  transform: translateX(-50%) rotate(-45deg);
}

/* burger inner
---------------------------------------------------------------- */
.burger-nav {
  position: fixed;
  z-index: 99;
  top: 0;
  right: -40rem;
  width: 38rem;
  height: 100%;
  background-color: var(--base);
  padding: 10rem 2rem 2rem;
  overflow-x: hidden;
  overflow-y: auto;
  transition: 0.5s;
}
@media (max-width: 428px) {
  .burger-nav {
    width: 100vw;
    right: -100vw;
    padding: 5.5rem 2rem;
  }
}
.burger-nav-list {
  margin-bottom: 3rem;
  display: block;
}
.burger-nav-list li a {
  position: relative;
  display: block;
  line-height: 1;
  padding: 1.5em 1em;
  border-bottom: 1.5px solid var(--main);
  font-size: var(--fs-16);
  font-weight: 600;
}
.burger-nav-list li a::before {
  transition: 0.3s ease;
  content: "";
  display: block;
  position: absolute;
  width: 0.6em;
  height: 0.6em;
  top: 1px;
  bottom: 0;
  right: 1.5em;
  margin: auto;
  vertical-align: middle;
  line-height: 1;
  border: 2.5px solid var(--main);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}
.burger-nav-list li a:hover {
  opacity: 1;
  color: var(--l-green);
}
.burger-nav-list li a:hover::before {
  right: 1em;
}
.burger-nav .btn {
  display: block;
  width: 100%;
  height: auto;
  padding: 1em;
}
.burger-nav .btn span {
  font-family: "Secular One", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
}
.burger-nav .btn + .btn {
  margin-top: 1.5rem;
}
.burger-nav.js-active {
  right: 0;
}

.burger-mask {
  transition: 0.3s ease;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background-color: rgba(51, 51, 51, 0.7);
  display: none;
}
.burger-mask.js-active {
  display: block;
}

/* main
================================================================== */
/* mv
---------------------------------------------------------------- */
.mv {
  position: relative;
  z-index: 0;
  width: 100%;
  height: clamp(55rem, 95vh - 10rem, 70rem);
  padding: 0 min(10rem, 6%) 4rem;
  margin-top: var(--header-h);
  background: linear-gradient(0deg, var(--white) 0%, var(--white) 40%, transparent 40%, transparent 100%);
}
@media (max-width: 1280px) {
  .mv {
    padding: 0 min(10rem, 4%) 4rem;
  }
}
@media (max-width: 1024px) {
  .mv {
    height: auto;
    padding: 3rem max(6%, 2rem) 0;
    background: linear-gradient(0deg, var(--white) 0%, var(--white) 70%, transparent 70%, transparent 100%);
  }
}
.mv::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 1900/630;
  width: 120%;
  background: var(--white);
  -webkit-mask-image: url("../img/bg_circle.svg");
          mask-image: url("../img/bg_circle.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .mv::before {
    top: 7rem;
    height: 400px;
    -webkit-mask-size: 100% 100%;
            mask-size: 100% 100%;
  }
}
.mv-inn {
  position: relative;
  width: 100%;
  height: 100%;
  gap: 6vw 5%;
}
@media (max-width: 1024px) {
  .mv-inn {
    flex-direction: column;
  }
}
.mv-img {
  flex: 1;
  width: 100%;
  height: 100%;
  border-radius: 8rem;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .mv-img {
    border-radius: 6rem;
  }
}
@media (max-width: 767px) {
  .mv-img {
    border-radius: 3rem;
  }
}
.mv-img-wrap {
  width: 100%;
  height: 100%;
  /* ズームしながらフェード */
}
.mv-img-wrap .swiper-slide-active img,
.mv-img-wrap .swiper-slide-duplicate-active img,
.mv-img-wrap .swiper-slide-prev img {
  -webkit-animation: zoom 10s linear 0s 1 normal both;
          animation: zoom 10s linear 0s 1 normal both;
}
.mv-img .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.mv-text {
  gap: 1em;
  margin-top: min(5rem, 5vh);
  height: 100%;
}
@media (max-width: 1024px) {
  .mv-text {
    display: block;
    margin-top: 0;
    width: 100%;
    height: auto;
  }
}
.mv-copy {
  display: inline-block;
  height: min(46.3rem, 75%);
}
.mv-copy img {
  width: auto;
  height: 100%;
}
@media (max-width: 1024px) {
  .mv-copy {
    height: auto;
    width: min(45rem, 70%);
  }
  .mv-copy img {
    height: auto;
  }
}
.mv-company {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: var(--main);
}
@media (max-width: 1024px) {
  .mv-company {
    writing-mode: unset;
    margin-top: 1.5rem;
    font-size: min(2.4rem, 4vw);
  }
}
.mv-frame {
  display: block;
  position: absolute;
  z-index: 1;
  bottom: -0.5rem;
  width: min(70rem, 50%);
}
.mv-frame-01 {
  left: 0;
}
.mv-frame-02 {
  right: 0;
}
@media (max-width: 1024px) {
  .mv-frame {
    width: 100%;
  }
}
.mv-deco {
  display: block;
  position: absolute;
  top: 9rem;
  right: 10%;
  width: min(16rem, 20%);
}
@media (max-width: 767px) {
  .mv-deco {
    right: 8%;
  }
}

@-webkit-keyframes zoom {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1.2);
  }
}

@keyframes zoom {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1.2);
  }
}
/* message
---------------------------------------------------------------- */
.mes {
  position: relative;
  background: #329654;
  color: var(--white);
}
.mes::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  bottom: -15rem;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 1900/630;
  width: 120%;
  background: #329654;
  -webkit-mask-image: url("../img/bg_circle.svg");
          mask-image: url("../img/bg_circle.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
@media (max-width: 767px) {
  .mes::before {
    height: 200px;
    -webkit-mask-size: 100% 100%;
            mask-size: 100% 100%;
  }
}
.mes .inner {
  padding-top: 15rem;
  padding-bottom: 8rem;
}
@media (max-width: 767px) {
  .mes .inner {
    padding-top: 10rem;
    padding-bottom: 4rem;
  }
}
.mes .sec-ttl {
  position: relative;
  margin-bottom: var(--mg-40);
}
.mes .sec-ttl-en {
  color: var(--l-green);
}
.mes .sec-ttl-deco {
  display: block;
  position: absolute;
  top: -6rem;
  left: -4rem;
  width: 10rem;
}
@media (max-width: 767px) {
  .mes .sec-ttl-deco {
    width: 7rem;
    top: -4.5rem;
    left: -2rem;
  }
}
.mes-wrap {
  gap: 6rem;
}
@media (max-width: 1280px) {
  .mes-wrap {
    gap: 4rem 3rem;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .mes-wrap {
    flex-direction: column;
    max-width: 100%;
    margin-inline: auto;
    width: 50rem;
  }
}
.mes-content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1280px) {
  .mes-content {
    flex-basis: 52%;
  }
}
@media (max-width: 767px) {
  .mes-content {
    padding: 0 1rem;
  }
}
.mes-text {
  font-size: var(--fs-18);
  font-weight: 500;
  line-height: 2;
}
.mes-text p + p {
  margin-top: 1em;
}
.mes-text-deco {
  width: 18rem;
  margin-top: -1rem;
  margin-left: auto;
  margin-right: 15%;
}
@media (max-width: 1024px) {
  .mes-text-deco {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .mes-text-deco {
    width: max(30%, 13rem);
    margin-left: 5%;
    margin-right: auto;
  }
}
.mes-img {
  position: relative;
  flex: 1;
  width: min(52rem, 100%);
  aspect-ratio: 520/534;
}
.mes-img img {
  display: block;
  position: absolute;
  border-radius: var(--br-l);
}
.mes-img img:nth-of-type(1) {
  top: 0;
  right: 0;
  width: 76.9230769231%;
}
.mes-img img:nth-of-type(2) {
  bottom: 0;
  left: 0;
  width: 65.3846153846%;
}
.mes-img img:nth-of-type(3) {
  border-radius: 0;
  right: 0;
  width: 46.1538461538%;
  bottom: 20.5992509363%;
}

/* place
---------------------------------------------------------------- */
.place {
  padding-bottom: var(--mg-12);
  padding-top: 5rem;
  margin-top: -5rem;
}
.place .inner {
  padding-top: 2rem;
}
@media (max-width: 1024px) {
  .place .inner {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .place .inner {
    padding-top: 4rem;
  }
}
.place-box {
  position: relative;
  width: 100%;
  padding: 4rem 4rem 5rem;
  background-image: url(../img/place/bg_pc.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  margin-bottom: var(--mg-60);
}
@media (max-width: 767px) {
  .place-box {
    background-image: url(../img/place/bg_sp.png);
    padding: 4rem 3rem 5rem;
    margin-bottom: 3rem;
  }
}
.place-box-ttl, .search-bnr-ttl {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--fs-28);
  font-weight: bold;
  padding: 0 0.2em 0.5em;
  margin-bottom: 2.5rem;
  margin-inline: auto;
  background-image: url(../img/dash.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: auto 1rem;
}
@media (max-width: 767px) {
  .place-box-ttl, .search-bnr-ttl {
    padding: 0 0.2em 0.7em;
    background-size: auto 0.8rem;
    margin-bottom: 2rem;
  }
}
.place-box-text {
  font-size: var(--fs-18);
}
@media (max-width: 428px) {
  .place-box-text {
    text-align: justify;
  }
  .place-box-text span {
    display: inline;
  }
}
.place-box-circle img {
  display: block;
  position: absolute;
  width: 1em;
}
@media (max-width: 767px) {
  .place-box-circle img {
    font-size: 1.2rem;
  }
}
.place-box-circle img:nth-of-type(1) {
  top: 1em;
  left: 1em;
}
.place-box-circle img:nth-of-type(2) {
  top: 1em;
  right: 1em;
}
.place-box-circle img:nth-of-type(3) {
  bottom: 1em;
  left: 1em;
}
.place-box-circle img:nth-of-type(4) {
  bottom: 1em;
  right: 1em;
}
.place-card {
  background: var(--white);
  border-radius: var(--br-m);
  padding: 2rem;
  text-align: center;
}
.place-card-img {
  width: 100%;
}
.place-card-ttl {
  font-size: var(--fs-24);
  font-weight: bold;
  line-height: 1.5;
  margin: 1.5rem 0;
}
@media (max-width: 1024px) {
  .place-card-ttl {
    font-size: 2.2rem;
  }
}
@media (max-width: 767px) {
  .place-card-ttl {
    font-size: 2rem;
  }
}
.place-card-label {
  gap: 1rem;
}
.place-card-label p {
  display: block;
  flex: 1;
  font-size: var(--fs-14);
  color: var(--white);
  background: var(--main);
  padding: 0.2em 0.5em;
}
.place-card-label p:last-of-type {
  background: var(--d-green);
}
.place-card-label-02 p:last-of-type {
  flex: unset;
  flex-basis: 30%;
}

/* slider */
.swiper-place-wrap {
  position: relative;
}
.swiper-place-wrap .swiper {
  overflow: unset;
}
.swiper-place-wrap .swiper-slide img {
  height: auto;
  width: 100%;
}
.swiper-place-wrap .slide-pagination-wrapper {
  /* ページネーション、前へ・次へボタンを横並びにする */
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: var(--mg-40);
}
.swiper-place-wrap .swiper-pagination {
  /* デフォルトのabsoluteからstaticへ変更 */
  position: static !important;
  /* bulletsの中にあるbulletの位置を縦中央揃え */
  /* pagenation-bulletの数によって、bulletを包むbulletsの幅が伸縮するようにする */
}
.swiper-place-wrap .swiper-pagination-bullets {
  display: flex;
  align-items: center;
}
.swiper-place-wrap .swiper-pagination .swiper-pagination-bullet {
  width: 2rem;
  height: 2rem;
  margin: 0 5px !important;
  background-color: #cecdaa;
  opacity: 1;
}
@media (max-width: 767px) {
  .swiper-place-wrap .swiper-pagination .swiper-pagination-bullet {
    width: 1.6rem;
    height: 1.6rem;
  }
}
.swiper-place-wrap .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--d-green);
}
.swiper-place-wrap .swiper-pagination.swiper-horizontal > .swiper-place-wrap .swiper-pagination-bullets, .swiper-place-wrap .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-place-wrap .swiper-pagination-custom, .swiper-place-wrap .swiper-pagination-fraction {
  width: auto !important;
}
.swiper-place-wrap .swiper-button {
  /* 反転 */
}
.swiper-place-wrap .swiper-button-prev, .swiper-place-wrap .swiper-button-next {
  /* スライドの前へ・次へボタンの位置をabsoluteからstaticへ変更 */
  position: static !important;
  margin-top: initial !important;
  width: auto !important;
  /* 通常の前へ・次へボタンの画像を非表示に変更 */
}
.swiper-place-wrap .swiper-button-prev::after, .swiper-place-wrap .swiper-button-next::after {
  display: none;
}
.swiper-place-wrap .swiper-button-prev .swiper-arrow, .swiper-place-wrap .swiper-button-next .swiper-arrow {
  position: relative;
  width: 3.5rem;
  aspect-ratio: 1;
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
  background-color: var(--d-green);
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .swiper-place-wrap .swiper-button-prev .swiper-arrow, .swiper-place-wrap .swiper-button-next .swiper-arrow {
    width: 3rem;
  }
}
.swiper-place-wrap .swiper-button-prev .swiper-arrow::before, .swiper-place-wrap .swiper-button-next .swiper-arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 55%;
  width: 0.7em;
  height: 0.7em;
  vertical-align: middle;
  line-height: 1;
  border: 2.5px solid #fff;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translate(50%, -50%) rotate(45deg);
  transition: 0.3s ease;
}
.swiper-place-wrap .swiper-button-prev .swiper-arrow:hover, .swiper-place-wrap .swiper-button-next .swiper-arrow:hover {
  background-color: #0f993d;
}
.swiper-place-wrap .swiper-button-prev .swiper-arrow {
  transform: scale(-1, 1);
}

/* renewal
---------------------------------------------------------------- */
.renewal {
  position: relative;
  background: var(--white);
}
.renewal::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: calc(-1 * var(--mg-12));
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 1900/630;
  width: 120%;
  background: var(--white);
  -webkit-mask-image: url("../img/bg_circle.svg");
          mask-image: url("../img/bg_circle.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
@media (max-width: 767px) {
  .renewal::before {
    height: 200px;
    -webkit-mask-size: 100% 100%;
            mask-size: 100% 100%;
  }
}
.renewal .inner {
  padding-top: 0;
}
@media (max-width: 767px) {
  .renewal .inner {
    padding-bottom: 3rem;
  }
}
.renewal-deco-01 {
  display: block;
  position: absolute;
  top: calc(-1 * var(--mg-12));
  right: calc(50% + 32rem);
  width: min(23rem, 25%);
}
@media (max-width: 1280px) {
  .renewal-deco-01 {
    right: unset;
    left: 4%;
  }
}
@media (max-width: 1024px) {
  .renewal-deco-01 {
    top: -12rem;
  }
}
@media (max-width: 767px) {
  .renewal-deco-01 {
    top: calc(-1 * var(--mg-12));
    width: clamp(13rem, 30%, 18rem);
  }
}
.renewal-deco-02 {
  display: block;
  position: absolute;
  bottom: 8rem;
  left: calc(50% + 32rem);
  width: min(22rem, 25%);
}
@media (max-width: 1280px) {
  .renewal-deco-02 {
    left: unset;
    right: 4%;
  }
}
@media (max-width: 767px) {
  .renewal-deco-02 {
    position: static;
    margin-left: auto;
    margin-top: 3rem;
    width: clamp(13rem, 30%, 18rem);
  }
}
.renewal .sec-ttl {
  margin-bottom: 2rem;
}
.renewal-text {
  font-size: var(--fs-18);
  margin-bottom: var(--mg-60);
}
.renewal-img {
  position: relative;
  transform: rotate(-6deg);
}
@media (max-width: 767px) {
  .renewal-img-wrap {
    display: block;
    max-width: 100%;
    margin-inline: auto;
    width: min(40rem, 90%);
  }
}
.renewal-img:nth-of-type(1) {
  margin-right: -1rem;
}
@media (max-width: 767px) {
  .renewal-img:nth-of-type(1) {
    margin-right: 0;
  }
}
.renewal-img:nth-of-type(2) {
  z-index: 1;
  transform: rotate(6deg);
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .renewal-img:nth-of-type(2) {
    margin-top: 0;
  }
}
.renewal-img:nth-of-type(3) {
  margin-left: -1rem;
}
@media (max-width: 767px) {
  .renewal-img:nth-of-type(3) {
    margin-left: 0;
  }
}
.renewal-img img {
  border-radius: var(--br-l);
}
.renewal-wave {
  transform: translateY(5px);
}

/* environment
---------------------------------------------------------------- */
.env {
  position: relative;
}
.env .inner {
  padding: 10rem 6%;
}
.env-deco {
  display: block;
  position: absolute;
}
.env-deco-01 {
  top: -6rem;
  right: calc(50% + 29rem);
  width: min(12rem, 15%);
}
@media (max-width: 1024px) {
  .env-deco-01 {
    right: unset;
    left: 15%;
  }
}
@media (max-width: 767px) {
  .env-deco-01 {
    top: -2%;
    width: 6rem;
    width: clamp(6rem, 18%, 8rem);
  }
}
.env-deco-02 {
  top: 9rem;
  right: calc(50% + 42rem);
  width: min(18.6rem, 20%);
}
@media (max-width: 1280px) {
  .env-deco-02 {
    right: unset;
    left: 4%;
  }
}
@media (max-width: 767px) {
  .env-deco-02 {
    top: 4rem;
    width: clamp(8rem, 20%, 12rem);
  }
}
.env-wrap {
  gap: 3rem;
}
@media (max-width: 767px) {
  .env-wrap {
    gap: 2rem;
    width: min(40rem, 90%);
    margin-inline: auto;
  }
}
.env-wrap-01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .env-wrap-01 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .env-wrap-01 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.env-wrap-02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3rem;
}
@media (max-width: 1024px) {
  .env-wrap-02 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .env-wrap-02 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .env-wrap-02 {
    margin-top: 2rem;
  }
  .env-wrap-02 .env-item-01 {
    padding-bottom: 4rem;
  }
}
.env-wrap-02 .env-item:last-of-type .env-img {
  width: min(42rem, 100%);
}
.env-item {
  position: relative;
  z-index: 0;
  background: var(--white);
  border-radius: var(--br-l);
  text-align: center;
  padding: 1rem 3rem 3rem;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 3rem;
}
@media (max-width: 767px) {
  .env-item {
    gap: 2rem;
    padding: 1rem 2rem 2rem;
  }
  .env-item-01 {
    gap: 3rem;
  }
}
.env-item::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(23rem, 90%);
  aspect-ratio: 230/66;
  background: url("../img/env/bg.svg") center no-repeat;
  background-size: 100%;
}
@media (max-width: 767px) {
  .env-item::before {
    width: 21rem;
  }
}
.env-item .place-box-circle img {
  width: 1.2rem;
}
.env-ttl {
  font-size: var(--fs-24);
  font-weight: bold;
}
.env-ttl-size {
  font-size: min(2.4rem, 2vw);
}
@media (max-width: 1024px) {
  .env-ttl-size {
    font-size: var(--fs-24);
  }
}
.env-img {
  width: min(24rem, 100%);
  margin-inline: auto;
}
@media (max-width: 767px) {
  .env-img {
    width: 20rem;
  }
}
.env-inn {
  position: relative;
}
.env-text {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-size: var(--fs-20);
  font-weight: 800;
  color: var(--main);
}

/* interview
---------------------------------------------------------------- */
.int {
  position: relative;
  background: var(--l-green);
}
.int .sec-ttl {
  margin-bottom: var(--mg-40);
}
.int-deco-01 {
  display: block;
  position: absolute;
  z-index: 1;
  top: 1rem;
  right: calc(50% + 38rem);
  width: min(22rem, 25%);
}
@media (max-width: 1280px) {
  .int-deco-01 {
    right: unset;
    left: 6%;
  }
}
@media (max-width: 767px) {
  .int-deco-01 {
    top: 0;
    width: clamp(13rem, 30%, 18rem);
  }
}
.int-deco-bubble {
  width: min(22.5rem, 30%);
}
@media (max-width: 1024px) {
  .int-deco-bubble {
    width: 20%;
  }
}
@media (max-width: 767px) {
  .int-deco-bubble {
    display: none !important;
  }
}
.int-deco-02 {
  display: block;
  position: absolute;
  top: 22%;
  left: calc(50% + 41rem);
}
@media (max-width: 1280px) {
  .int-deco-02 {
    left: unset;
    right: 3%;
  }
}
@media (max-width: 1024px) {
  .int-deco-02 {
    top: 15%;
    right: 4%;
  }
}
.int-deco-03 {
  display: block;
  position: absolute;
  bottom: 4%;
  right: calc(50% + 41rem);
}
@media (max-width: 1280px) {
  .int-deco-03 {
    right: unset;
    left: 3%;
  }
}
@media (max-width: 1024px) {
  .int-deco-03 {
    left: 4%;
  }
}
.int-wave {
  transform: scale(1, -1) translateY(5px);
}
.int-card-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .int-card-wrap {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    align-items: stretch;
    max-width: 100%;
    margin-inline: auto;
    width: 75rem;
  }
}
@media (max-width: 767px) {
  .int-card-wrap {
    display: block;
    width: min(40rem, 90%);
  }
}
.int-card-item {
  display: block;
  position: relative;
  z-index: 0;
  text-align: center;
  padding: 0 2.5rem 4rem;
}
.int-card-item::before {
  transition: 0.3s ease;
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  border-radius: var(--br-l);
  background: var(--white);
}
.int-card-item:hover {
  opacity: 1;
}
.int-card-item:hover .int-card-arrow {
  background: var(--main);
}
.int-card-item:nth-of-type(2) {
  margin-top: 6rem;
}
@media (max-width: 1024px) {
  .int-card-item:nth-of-type(1) {
    grid-area: 1/1/2/3;
  }
  .int-card-item:nth-of-type(2) {
    margin-top: 0;
    grid-area: 1/3/2/5;
  }
  .int-card-item:nth-of-type(3) {
    grid-area: 2/2/3/4;
  }
}
@media (max-width: 767px) {
  .int-card-item {
    margin-top: 2rem !important;
  }
}
.int-card-img {
  width: 100%;
  padding: 0 4rem;
}
.int-card-ttl {
  font-size: var(--fs-20);
  font-weight: bold;
  color: var(--main);
  line-height: 1.5;
  margin-top: 1em;
}
.int-card-dot {
  display: block;
  width: 100%;
  height: 0.8rem;
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
  -webkit-mask-position: left bottom;
          mask-position: left bottom;
  -webkit-mask-size: 30.5rem 0.8rem;
          mask-size: 30.5rem 0.8rem;
  -webkit-mask-image: url("../img/int/dot.svg");
          mask-image: url("../img/int/dot.svg");
  background: var(--l-green);
  margin: 2rem 0;
}
.int-card-label {
  font-weight: bold;
}
.int-card-arrow {
  transition: 0.3s ease;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8rem;
  aspect-ratio: 1;
  background: var(--accent);
  border-bottom-right-radius: var(--br-l);
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.int-card-arrow::before {
  content: "";
  display: block;
  position: absolute;
  width: 1rem;
  height: 1rem;
  right: 2.2rem;
  bottom: 2.2rem;
  vertical-align: middle;
  line-height: 1;
  border: 2.5px solid var(--white);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: rotate(45deg);
  transition: 0.3s ease;
}

/* modal
---------------------------------------------------------------- */
.modal-content {
  position: relative;
  text-align: left;
}
.modal-close-top {
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 10px;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .modal-close-top {
    top: 4px;
    right: 4px;
    transform: scale(0.8);
  }
}
.modal-close-top:hover {
  opacity: 0.6;
}
.modal-close-btm {
  width: 100%;
}
.modal-close-btm .btn {
  width: 280px;
  margin-top: var(--mg-40);
}
@media (max-width: 428px) {
  .modal-close-btm .btn {
    width: 100%;
  }
}
.modal-top {
  position: relative;
  background: var(--l-green);
  border-radius: var(--br-m);
  margin-bottom: 4rem;
  padding: 3rem 4rem;
}
@media (max-width: 767px) {
  .modal-top {
    padding: 3rem 2rem 4rem;
    text-align: center;
  }
}
.modal-top-inn {
  gap: 5rem;
}
@media (max-width: 1024px) {
  .modal-top-inn {
    align-items: start;
    gap: 2rem 3rem;
  }
}
@media (max-width: 767px) {
  .modal-top-inn {
    flex-direction: column;
  }
}
.modal-top .int-card-img {
  flex-basis: min(28rem, 30%);
  padding: 0;
}
@media (max-width: 767px) {
  .modal-top .int-card-img {
    width: min(20rem, 80%);
    margin-inline: auto;
  }
}
.modal-top-right {
  flex: 1;
}
.modal-top .int-card-ttl {
  font-size: var(--fs-24);
  margin: 0;
}
@media (max-width: 767px) {
  .modal-top .int-card-ttl {
    font-size: 1.8rem;
  }
}
.modal-top .int-card-dot {
  background: #b6d258;
}
.modal-top .int-card-label {
  font-size: var(--fs-18);
}

.qa-list {
  width: 100%;
}
.qa-list dt {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 2.2em;
}
.qa-list dt:not(:first-of-type) {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .qa-list dt {
    font-size: 1.7rem;
  }
}
.qa-list dt::before {
  font-family: "Secular One", sans-serif;
  font-weight: 700;
  font-style: normal;
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 7px;
  content: "Q";
  font-size: 2rem;
  line-height: 1;
  color: #fff;
}
.qa-list dt::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #0f993d;
  width: 30px;
  height: 30px;
  border-radius: 100px;
}
.qa-list dd {
  font-size: var(--fs-15);
  line-height: 1.7;
  text-align: justify;
  margin-top: 20px;
  padding: 20px 30px;
  background: var(--base);
  border-radius: var(--br-s);
}
@media (max-width: 767px) {
  .qa-list dd {
    padding: 1.5em;
  }
}

/* search
---------------------------------------------------------------- */
.search {
  position: relative;
  z-index: 0;
  background: var(--white);
}
.search::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: min(73rem, 100%);
  aspect-ratio: 730/550;
  background: url("../img/search/bg.png") center no-repeat;
  background-size: 100%;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
}
@media (max-width: 1024px) {
  .search::before {
    width: 50rem;
  }
}
@media (max-width: 767px) {
  .search::before {
    width: 30rem;
  }
}
.search::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -2;
  inset: 0;
  height: 14rem;
  background: var(--l-green);
}
@media (max-width: 767px) {
  .search::after {
    height: 8rem;
  }
}
.search-deco {
  display: block;
  position: absolute;
  top: -4rem;
  left: calc(50% + 36rem);
  width: min(18.6rem, 20%);
}
@media (max-width: 1280px) {
  .search-deco {
    left: unset;
    right: 6%;
  }
}
@media (max-width: 767px) {
  .search-deco {
    top: -5rem;
    width: clamp(9rem, 20%, 12rem);
  }
}
.search .inner {
  padding-top: 8rem;
  padding-bottom: 0;
}
@media (max-width: 1024px) {
  .search .inner {
    padding-top: 6rem;
  }
}
@media (max-width: 767px) {
  .search .inner {
    padding-top: 4rem;
  }
}
.search-ttl {
  position: relative;
  z-index: 0;
  font-size: var(--fs-28);
  font-weight: bold;
  text-align: center;
  margin-bottom: var(--mg-40);
}
.search-ttl span {
  display: inline-block;
  padding: 0 0.5em;
  color: var(--main);
  background: var(--white);
  transform: translateY(-0.1em);
}
.search-ttl::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  inset: 0;
  -webkit-mask-image: url(../img/dash.svg);
          mask-image: url(../img/dash.svg);
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
  -webkit-mask-position: left center;
          mask-position: left center;
  -webkit-mask-size: auto 1rem;
          mask-size: auto 1rem;
  background: #b6d258;
}
.search-ttl:last-of-type {
  margin-top: var(--mg-60);
}
.search-btn-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .search-btn-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .search-btn-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .search-btn-wrap {
    max-width: 100%;
    margin-inline: auto;
    width: 30rem;
    gap: 1.5rem;
  }
}
.search-bnr {
  position: relative;
  background: var(--accent);
  border-radius: var(--br-l);
  padding: 4rem 6rem;
  margin-top: 10rem;
}
@media (max-width: 1024px) {
  .search-bnr {
    padding: 4rem;
  }
}
@media (max-width: 767px) {
  .search-bnr {
    padding: 3rem 0;
    margin: 6rem auto 0;
    background: unset;
    width: min(40rem, 100%);
  }
  .search-bnr::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 88%;
    background: var(--accent);
    border-radius: var(--br-l);
  }
}
.search-bnr-content {
  max-width: 55%;
}
@media (max-width: 767px) {
  .search-bnr-content {
    max-width: unset;
    width: 100%;
    text-align: center;
    padding: 0 3rem;
  }
}
.search-bnr-ttl {
  font-size: 4rem;
  line-height: 1.2;
  margin: unset;
}
@media (max-width: 1024px) {
  .search-bnr-ttl {
    font-size: 3.6rem;
  }
}
@media (max-width: 767px) {
  .search-bnr-ttl {
    font-size: 2.6rem;
    margin: 0 auto;
  }
}
.search-bnr-text {
  font-size: var(--fs-18);
  margin: 2rem 0 2.5rem;
}
.search-bnr .btn {
  width: min(31rem, 100%);
  background: var(--white);
  color: var(--main);
}
.search-bnr .btn::before {
  border-color: var(--main);
}
.search-bnr .btn:hover {
  background: var(--main);
  color: var(--white);
}
.search-bnr .btn:hover::before {
  border-color: var(--white);
}
.search-bnr-img {
  display: block;
  position: absolute;
  top: -3rem;
  right: 2rem;
  width: min(45rem, 46%);
}
@media (max-width: 1024px) {
  .search-bnr-img {
    top: -2rem;
    right: 0;
  }
}
@media (max-width: 767px) {
  .search-bnr-img {
    position: static;
    margin-top: 3rem;
    width: 100%;
  }
}

.btn-place {
  position: relative;
  z-index: 0;
  border-radius: var(--br-m);
  overflow: hidden;
  font-weight: bold;
  text-align: center;
  color: var(--white);
}
.btn-place::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--main);
  opacity: 0.8;
}
.btn-place-inn {
  display: block;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.btn-place-ttl {
  font-size: var(--fs-20);
}
.btn-place-add {
  position: relative;
  display: inline-block;
  padding-left: 1.2em;
}
.btn-place-add::before {
  position: absolute;
  content: "\f3c5";
  left: 0;
  font-family: "Font Awesome 5 Free";
}

.fot-deco {
  align-items: flex-end;
  margin-bottom: -1rem;
  margin-top: -5%;
}
@media (max-width: 1280px) {
  .fot-deco {
    margin-top: 2rem;
  }
}

/* footer
================================================================== */
/* slide btn
---------------------------------------------------------------- */
.slidebtn-wrap {
  display: none;
}
@media (max-width: 767px) {
  .slidebtn-wrap {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: -0.5rem;
    transform: translate(0%, 120%);
    transition: 0.4s ease;
    display: flex;
    width: 100%;
    gap: 0.5rem;
    padding: 0 0.5rem;
  }
}
.slidebtn-wrap.is-show {
  transform: translate(0%, 0%);
}

.slide-btn {
  display: block;
  width: 100%;
  height: auto;
  padding: 0.5em 0.5em 1em;
  flex: 1;
  background: var(--main);
  border: 1.5px solid var(--white);
  border-radius: 8px 8px 0 0;
  border-bottom: unset;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: var(--white);
  text-align: center;
  transform: translateX(0);
}
.slide-btn:first-of-type {
  background: var(--accent);
  color: var(--main);
}

/* pagetop
---------------------------------------------------------------- */
.page-top {
  position: fixed;
  bottom: 3%;
  right: 2%;
  z-index: 10;
  cursor: pointer;
  width: 65px;
  height: 65px;
  background-color: var(--d-green);
  color: var(--white);
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
  transition: 0.3s ease;
}
.page-top p {
  font-family: "Secular One", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  transform: translateY(35%);
}
.page-top::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.6em;
  height: 0.6em;
  top: 25%;
  right: 50%;
  margin: auto;
  vertical-align: middle;
  line-height: 1;
  border: 2.5px solid var(--white);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(50%) rotate(-45deg);
}
.page-top:hover {
  background: var(--accent);
}
.page-top.js-position {
  position: absolute;
  top: -30px; /* 止まって欲しい場所を記入 */
}
@media (max-width: 767px) {
  .page-top {
    bottom: 5rem;
    transform: scale(0.9);
  }
}

/* footer
---------------------------------------------------------------- */
.footer {
  position: relative;
  font-size: var(--fs-16);
  font-weight: 400;
  line-height: 1;
  background: #329654;
  color: var(--white);
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 3rem;
  }
}
@media (max-width: 428px) {
  .footer {
    font-size: 1.4rem;
  }
}
.footer .inner {
  padding: 5rem 3%;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer-nav {
    margin-bottom: 8px;
  }
}
.footer-nav a {
  padding: 0.5em 1em;
}
@media (max-width: 767px) {
  .footer-nav a {
    padding: 0.5em 0.6em;
  }
}
.footer-nav span {
  background-color: var(--white);
  width: 1px;
  height: 1em;
}
@media screen and (max-width: 550px) {
  .footer-nav span:last-of-type {
    display: none;
  }
}
.footer .copyright {
  text-align: center;
  line-height: 1.5;
  padding: 0.5em 1em 0;
}
.footer .copyright span {
  display: inline-block;
}
/*# sourceMappingURL=style.css.map */