@charset "UTF-8";
@media screen and (hover: hover) and (pointer: fine) {
  .hov {
    transition: opacity 0.3s;
  }
  @supports (filter: brightness(100%)) {
    .hov {
      transition-property: filter;
    }
  }
  .hov:hover {
    opacity: 0.8;
  }
  @supports (filter: brightness(100%)) {
    .hov:hover {
      filter: brightness(110%);
      opacity: 1;
    }
  }
}

* {
  -webkit-tap-highlight-color: transparent;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
table,
tr,
th,
td,
form,
figure {
  font-size: inherit;
  margin: 0;
  padding: 0;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

summary {
  display: block;
}

table {
  border-collapse: collapse;
  empty-cells: show;
}

th,
td {
  text-align: left;
  vertical-align: top;
}

li {
  list-style: none;
}

img,
video {
  vertical-align: top;
  height: auto;
}

input,
textarea,
select {
  color: inherit;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}

button {
  color: inherit;
  font-family: inherit;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

select::-ms-expand {
  display: none;
}

[disabled] {
  cursor: not-allowed;
}

input[type=button]:not([disabled]), input[type=submit]:not([disabled]), input[type=reset]:not([disabled]),
button[type=button]:not([disabled]),
button[type=submit]:not([disabled]),
button[type=reset]:not([disabled]) {
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}
img,
video {
  max-width: none;
  height: auto;
  width: 100%;
}

:root {
  font-size: 50px;
}
@media screen and (min-width: 1441px) {
  :root {
    font-size: 66.6667px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1440px) {
  :root {
    font-size: 4.62963vw;
  }
}
@media screen and (max-width: 750px) {
  :root {
    font-size: 13.3333333333vw;
  }
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background: #fff;
  color: #333333;
  overflow: hidden;
  overflow-y: auto;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", serif;
  font-size: 0.32rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  body {
    font-size: 0.28rem;
    font-weight: 400;
    line-height: 2;
  }
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

i,
em {
  font-style: normal;
}

.wrap {
  width: auto;
  padding-right: 0.4rem;
  padding-left: 0.4rem;
}

@media screen and (min-width: 751px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 751px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.blurIn {
  opacity: 0;
  filter: blur(15px);
  transition: 1.6s;
  transition-property: opacity, filter;
}
.blurIn.scrollIn {
  opacity: 1;
  filter: blur(0);
}

.fadeUp {
  opacity: 0;
  transform: translate3d(0, 0.2rem, 0);
  transition: 1.2s;
  transition-property: opacity, transform;
}
.fadeUp.scrollIn {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.fadeIn {
  opacity: 0;
  transition: opacity 1s ease;
}
.fadeIn.scrollIn {
  opacity: 1;
}

.delay01 {
  transition-delay: 0.1s !important;
}

.delay02 {
  transition-delay: 0.2s !important;
}

.delay03 {
  transition-delay: 0.3s !important;
}

.delay04 {
  transition-delay: 0.4s !important;
}

.delay05 {
  transition-delay: 0.5s !important;
}

.delay06 {
  transition-delay: 0.6s !important;
}

.delay07 {
  transition-delay: 0.7s !important;
}

.delay08 {
  transition-delay: 0.8s !important;
}

.delay09 {
  transition-delay: 0.9s !important;
}

.delay10 {
  transition-delay: 1s !important;
}

.gHeader {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 2rem;
}
@media screen and (max-width: 750px) {
  .gHeader {
    height: 1.2rem;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0.35rem;
  }
  .gHeader::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(0.5rem);
    -webkit-backdrop-filter: blur(0.5rem);
    transition: 0.3s;
    pointer-events: none;
  }
}
.gHeader-inner {
  transition: all 0.3s ease;
}
@media screen and (min-width: 751px) {
  .gHeader-inner {
    width: 100%;
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
  }
}
.gHeader .siteTitle {
  position: relative;
  z-index: 10;
}
.gHeader .siteTitle a {
  display: flex;
  align-items: center;
  gap: 0.16rem;
}
.gHeader .siteTitle a .logo_text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  gap: 0.02rem;
  font-size: 0.24rem;
}
@media screen and (min-width: 751px) {
  .gHeader .siteTitle a .logo_text {
    font-size: 0.3rem;
  }
}
body.openmenu .gHeader .siteTitle {
  opacity: 1;
  visibility: visible;
}
.gHeader .gNav {
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  background: #F5F4E2;
  position: fixed;
  top: 0;
  left: 0;
  padding: 2rem 0.6rem 1.6rem;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 751px) {
  .gHeader .gNav {
    opacity: 1;
    visibility: visible;
    width: 4.5rem;
    height: auto;
    left: auto;
    top: 3rem;
    right: 1.2rem;
    padding: 0.7rem 0.5rem 0.7rem 0.7rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0.1rem;
    backdrop-filter: blur(0.1rem);
    -webkit-backdrop-filter: blur(0.1rem);
  }
}
.gHeader .gNav nav {
  letter-spacing: 0.01rem;
  display: grid;
  gap: 0;
}
body.openmenu .gHeader .gNav {
  opacity: 1;
  visibility: visible;
}
.gHeader .gNav .btn_wrap {
  margin-top: 1rem;
}
@media screen and (min-width: 751px) {
  .gHeader .gNav .btn_wrap {
    display: none;
  }
}
.gHeader .gNav .leaf {
  position: absolute;
  top: -0.7rem;
  right: -0.7rem;
  width: 2.5rem;
}

.h_nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: end;
  gap: 0.12rem 0.3rem;
}
@media screen and (min-width: 751px) {
  .h_nav {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}
.h_nav a {
  display: grid;
  letter-spacing: 0.1em;
  padding: 0.24rem 0.1rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}
@media screen and (min-width: 751px) {
  .h_nav a {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    border: none;
    padding: 0;
  }
}
.h_nav a .en {
  font-family: "Forum", serif;
  font-size: 0.44rem;
  position: relative;
}
@media screen and (min-width: 751px) {
  .h_nav a .en {
    font-size: 0.28rem;
  }
}
.h_nav a .small {
  font-size: 0.33rem;
  line-height: 1.5;
}
.h_nav a .jp {
  opacity: 0.7;
  font-size: 0.2rem;
  letter-spacing: 0;
}
@media screen and (min-width: 751px) {
  .h_nav a .jp {
    font-size: 0.16rem;
  }
}
.h_nav a.active {
  border-color: #B1AC51;
}
.h_nav a.active .en:after {
  content: "";
  display: inline-block;
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 50%;
  background: #B1AC51;
  margin-left: 0.12rem;
  vertical-align: 0.04rem;
}
@media screen and (min-width: 751px) {
  .h_nav a.active .en:after {
    position: absolute;
    top: 0.21rem;
    left: -0.3rem;
    margin: 0;
  }
}
@media screen and (min-width: 751px) {
  .h_nav li:has(a[href*=quality]) a {
    display: block;
    line-height: 1;
  }
}

.h_menu {
  position: absolute;
  top: 0.44rem;
  right: 0.4rem;
  width: 0.8rem;
  height: 0.4rem;
  z-index: 10;
  cursor: pointer;
}
@media screen and (min-width: 751px) {
  .h_menu {
    display: none;
  }
}
.h_menu img {
  display: block;
  position: absolute;
  right: 0;
  transition: all 0.3s ease;
}
.h_menu .open_bar {
  position: relative;
}
.h_menu .open_bar span {
  width: 0.8rem;
  height: 1px;
  background: #333333;
  display: block;
  position: absolute;
  transition: all 0.3s ease;
}
.h_menu .open_bar span:nth-child(1) {
  top: 0;
}
.h_menu .open_bar span:nth-child(2) {
  top: 0.15rem;
}
.h_menu .open_bar span:nth-child(3) {
  top: 0.3rem;
}
.h_menu .open {
  width: 0.5rem;
}
@media screen and (min-width: 751px) {
  .h_menu .open.sp {
    display: none !important;
  }
}
.h_menu .close {
  opacity: 0;
}
@media screen and (min-width: 751px) {
  .h_menu .close.sp {
    display: none !important;
  }
}
body.open .h_menu .open_bar span:nth-child(1) {
  transform: rotate(20deg);
  top: 0.2rem;
}
body.open .h_menu .open_bar span:nth-child(2) {
  display: none;
}
body.open .h_menu .open_bar span:nth-child(3) {
  transform: rotate(-20deg);
  top: 0.2rem;
}
body.open .h_menu .open {
  opacity: 0;
}
body.open .h_menu .close {
  opacity: 1;
}

.fixed_bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: grid;
  grid-template-columns: auto auto 4.3rem;
  border-top: 1px solid rgba(51, 51, 51, 0.2);
}
@media screen and (min-width: 751px) {
  .fixed_bottom {
    display: none;
  }
}
.fixed_bottom a {
  font-size: 0.24rem;
  padding: 0.2rem 0 0.05rem;
  display: flex;
  align-items: end;
  justify-content: center;
  width: 100%;
  height: 1.2rem;
  color: #fff;
}
.fixed_bottom a.map {
  background-image: url(../../assets/imgs/ico_map.png);
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 50% 25%;
  background-size: 0.35rem;
  color: #333333;
  font-family: "Forum", serif;
}
.fixed_bottom a.tel {
  background-image: url(../../assets/imgs/ico_tel.png);
  background-color: #333333;
  background-repeat: no-repeat;
  background-position: 50% 25%;
  background-size: 0.36rem;
  font-family: "Forum", serif;
}
.fixed_bottom a.request {
  background-image: url(../../assets/imgs/ico_request.png);
  background-color: #70927c;
  background-repeat: no-repeat;
  background-position: 50% 25%;
  background-size: 0.36rem;
}

.scrolldown {
  position: fixed;
  bottom: 1rem;
  right: 0.5rem;
  writing-mode: vertical-rl;
  color: #fff;
  font-family: "Forum", serif;
  font-size: 0.24rem;
  z-index: 999;
}
.scrolldown:before {
  animation: scroll 2s infinite;
  background-color: #fff;
  top: 0;
  content: "";
  height: 2rem;
  left: 0;
  position: absolute;
  width: 1px;
}
@media screen and (max-width: 750px) {
  .scrolldown {
    display: none;
  }
}

/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/* ========================================
   PC
======================================== */
.first_mv {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.8s ease;
}
.first_mv.is-hidden {
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  .first_mv {
    display: none;
  }
}

.first_mv_bg {
  position: fixed;
  inset: 0;
  background: url("../imgs/fv.png") center center/cover no-repeat;
}

.first_mv_inner .siteTitle {
  width: 100%;
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
}
.first_mv_inner .siteTitle a {
  display: flex;
  align-items: center;
  gap: 0.16rem;
}
.first_mv_inner .siteTitle a .logo_text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  gap: 0.02rem;
  font-size: 0.24rem;
}
@media screen and (min-width: 751px) {
  .first_mv_inner .siteTitle a .logo_text {
    font-size: 0.3rem;
  }
}
.first_mv_inner .cont {
  position: absolute;
  top: 2rem;
  left: 1rem;
  width: 4.2rem;
}
.first_mv_inner .cont .jp {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  white-space: nowrap;
}
.first_mv_inner .cont .en {
  font-size: 0.2rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-family: "Forum", serif;
  opacity: 0.6;
  margin-left: 0.1rem;
  margin-top: 0.2rem;
}
@media screen and (max-width: 750px) {
  .first_mv_inner {
    display: none;
  }
}

/* ----------------------------------------
   コンテンツ
---------------------------------------- */
.scroll_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1s ease, visibility 0s linear 1s;
}
.scroll_content.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.8s ease, visibility 0s;
}
@media screen and (max-width: 750px) {
  .scroll_content {
    position: relative;
    top: auto;
    left: auto;
    min-height: auto;
    opacity: 1;
    visibility: visible;
    transition: none;
  }
}
.scroll_content .scroll_content_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  z-index: -1;
  background: url("../imgs/fv.png") center center/cover no-repeat;
}
.scroll_content .scroll_content_bg:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.1);
}
@media screen and (max-width: 750px) {
  .scroll_content .scroll_content_bg {
    display: none;
  }
}
.scroll_content .scroll_content_text {
  position: fixed;
  top: 2rem;
  left: 1rem;
  width: 4.2rem;
}
.scroll_content .scroll_content_text .jp {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  white-space: nowrap;
}
.scroll_content .scroll_content_text .en {
  font-size: 0.2rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-family: "Inter", sans-serif;
  opacity: 0.6;
  margin-left: 0.1rem;
  margin-top: 0.2rem;
}
@media screen and (max-width: 750px) {
  .scroll_content .scroll_content_text {
    display: none;
  }
}
.scroll_content .scroll_content_request {
  position: fixed;
  bottom: 3.3rem;
  left: 0.5rem;
  width: 5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 0.1rem;
  backdrop-filter: blur(0.1rem);
  -webkit-backdrop-filter: blur(0.1rem);
  padding: 0.4rem;
}
.scroll_content .scroll_content_request .ttl {
  font-size: 0.27rem;
  text-align: center;
  letter-spacing: 0.1em;
}
.scroll_content .scroll_content_request .btn_wrap {
  margin-top: 0.3rem;
}
.scroll_content .scroll_content_request .btn_wrap .btn_request {
  font-size: 0.2rem;
  width: 100%;
  height: 0.7rem;
}
@media screen and (max-width: 750px) {
  .scroll_content .scroll_content_request {
    display: none;
  }
}
.scroll_content .scroll_content_contact {
  position: fixed;
  bottom: 0.5rem;
  left: 0.5rem;
  width: 5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 0.1rem;
  backdrop-filter: blur(0.1rem);
  -webkit-backdrop-filter: blur(0.1rem);
  padding: 0.4rem;
  text-align: center;
}
.scroll_content .scroll_content_contact .ttl {
  font-size: 0.18rem;
  line-height: 1.5;
}
.scroll_content .scroll_content_contact .ttl em {
  display: block;
  font-size: 0.22rem;
}
.scroll_content .scroll_content_contact .tel {
  margin-top: 0.1rem;
  font-family: "Forum", serif;
  font-size: 0.3rem;
  line-height: 1;
}
.scroll_content .scroll_content_contact .tel em {
  font-size: 0.5rem;
}
.scroll_content .scroll_content_contact .text {
  margin-top: 0.1rem;
  font-size: 0.16rem;
}
@media screen and (max-width: 750px) {
  .scroll_content .scroll_content_contact {
    display: none;
  }
}

/* ----------------------------------------
   コンテンツ本体
---------------------------------------- */
.scroll_content_inner {
  position: relative;
  z-index: 1;
  width: 7.5rem;
  margin: 0 auto;
  padding-top: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.15s, transform 0.8s ease 0.15s;
}
.scroll_content.is-visible .scroll_content_inner {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 750px) {
  .scroll_content_inner {
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    padding: 0;
    background: #fff;
    opacity: 1;
    transform: none;
    overflow: visible;
    transition: none;
  }
}

/* ----------------------------------------
   2画面目に到達
---------------------------------------- 
@include pc {
	body.is-top {
		.scroll_content {
			opacity: 0;
			transition: opacity 1s ease;
		}

		.scroll_content.is-active {
			opacity: 1;
		}

	}

}*/
.btn_request {
  position: relative;
  width: 5rem;
  height: 1rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #70927c;
  color: #fff;
  transition: background-color 0.3s ease;
}
.btn_request .btn_request_arrow {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0.3rem;
  bottom: 0;
  width: 0.4rem;
  height: 0.32rem;
  margin: auto 0;
}
.btn_request .item {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 0.4rem;
  height: 1px;
  background: #fff;
  transform: translateY(-50%);
}
.btn_request .item:before {
  content: "";
  position: absolute;
  right: 0;
  width: 7px;
  height: 1px;
  background: #fff;
  transform-origin: right center;
  transform: rotate(20deg);
}
.btn_request .item:nth-child(2) {
  transform: translateX(-100%) translateY(-50%);
}
.btn_request .item:nth-child(1) {
  animation: arrowOut 3.8s ease infinite;
}
.btn_request .item:nth-child(2) {
  animation: arrowIn 3.8s ease infinite;
}
.btn_request:hover {
  background-color: #B1AC51;
}

.main .yk-open {
  margin-left: -0.38em;
}
.main .yk-close {
  margin-right: -0.38em;
}
.main .en {
  font-family: "Forum", serif;
}
.main .text {
  line-height: 2;
}
.main .text p + p {
  margin-top: 0.2rem;
}
.main .indent p {
  text-indent: -1em;
  padding-left: 1em;
}
.main .btn_viwemore {
  position: relative;
  border-bottom: 1px solid rgba(51, 51, 51, 0.5);
  font-family: "Forum", serif;
  padding-right: 0.7rem;
  padding-bottom: 0.05rem;
}
.main .btn_viwemore .btn_viwemore_arrow {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.45rem;
  height: 0.32rem;
  margin: auto 0;
}
.main .btn_viwemore .item {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 0.45rem;
  height: 1px;
  background: rgba(51, 51, 51, 0.5);
  transform: translateY(-50%);
}
.main .btn_viwemore .item:before {
  content: "";
  position: absolute;
  right: 0;
  width: 7px;
  height: 1px;
  background: rgba(51, 51, 51, 0.5);
  transform-origin: right center;
  transform: rotate(20deg);
}
.main .btn_viwemore .item:nth-child(2) {
  transform: translateX(-100%) translateY(-50%);
}
.main .btn_viwemore .item:nth-child(1) {
  animation: arrowOut 3.8s ease infinite;
}
.main .btn_viwemore .item:nth-child(2) {
  animation: arrowIn 3.8s ease infinite;
}
@keyframes arrowOut {
  0% {
    transform: translateX(0) translateY(-50%);
  }
  15.8% {
    transform: translateX(100%) translateY(-50%);
  }
  100% {
    transform: translateX(100%) translateY(-50%);
  }
}
@keyframes arrowIn {
  0% {
    transform: translateX(-100%) translateY(-50%);
  }
  5.3% {
    transform: translateX(-100%) translateY(-50%);
  }
  21.1% {
    transform: translateX(0) translateY(-50%);
  }
  100% {
    transform: translateX(0) translateY(-50%);
  }
}
.main .bg_shadow {
  background: url(../imgs/bg.jpg) center top/cover no-repeat;
}
.main .image {
  position: relative;
}
.main .image figcaption {
  width: 100%;
  position: absolute;
  bottom: -0.4rem;
  right: 0.1rem;
  font-size: 0.24rem;
  text-align: right;
  letter-spacing: 0;
  line-height: 1.5;
  z-index: 10;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
}
@media screen and (max-width: 750px) {
  .main .image figcaption {
    font-size: 0.2rem;
  }
}
.main .image figcaption.white {
  color: #fff;
}
.main .image figcaption.left {
  right: auto;
  left: 0.1rem;
  text-align: left;
}
.main .image figcaption.shadow {
  color: #fff;
  bottom: 0.1rem;
  text-shadow: 0 0 5px #333333, 0 0 5px #333333, 0 0 5px #333333, 0 0 5px #333333, 0 0 5px #333333;
}
.main .page_mv {
  padding-top: 2.3rem;
}
.main .page_mv .mv_ttl {
  text-align: center;
}
.main .page_mv .mv_ttl .en {
  font-size: 0.7rem;
  line-height: 1.3;
  font-family: "Forum", serif;
}
.main .page_mv .mv_ttl .jp {
  font-size: 0.24rem;
}
.main .page_mv .image {
  margin-top: 0.5rem;
}
.main .page_mv .image .leaf {
  position: absolute;
  top: -2rem;
  right: -0.1rem;
  width: 2.2rem;
}
.main .page_mv_noimg {
  padding-top: 2.3rem;
  position: relative;
}
.main .page_mv_noimg .mv_ttl {
  text-align: center;
}
.main .page_mv_noimg .mv_ttl .en {
  font-size: 0.7rem;
  line-height: 1.3;
  font-family: "Forum", serif;
}
.main .page_mv_noimg .mv_ttl .jp {
  font-size: 0.24rem;
}
.main .page_mv_noimg .leaf {
  position: absolute;
  top: 2.2rem;
  right: -0.1rem;
  width: 2.2rem;
}
.main .ttl_wrap {
  text-align: center;
}
.main .ttl_wrap .en_ttl {
  font-family: "Forum", serif;
  font-size: 0.24rem;
  color: #70927c;
  letter-spacing: 0.2em;
}
.main .ttl_wrap .jp_ttl {
  margin-top: 0.3rem;
  font-size: 0.4rem;
  line-height: 2;
}
.main .ttl_wrap .text {
  margin-top: 0.5rem;
  text-align: left;
}

.fnote {
  background: #fff;
  padding: 1rem 0 0.4rem;
  font-size: 0.2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  letter-spacing: 0;
  line-height: 1.5;
}

.pager {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.pager a {
  background: #333333;
  color: #fff;
  font-family: "Forum", serif;
  font-size: 0.28rem;
  padding: 0.3rem;
  position: relative;
}
.pager a .pager_arrow {
  position: absolute;
  top: 50%;
  right: 0.4rem;
  display: block;
  width: 0.45rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%);
}
.pager a .pager_arrow:before {
  content: "";
  position: absolute;
  right: 0;
  width: 7px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transform-origin: right center;
  transform: rotate(20deg);
}
.pager a.next {
  text-align: right;
  padding-right: 1.1rem;
}
.pager a.prev {
  padding-left: 1.1rem;
}
.pager a.prev .pager_arrow {
  right: auto;
  left: 0.4rem;
}
.pager a.prev .pager_arrow:before {
  right: auto;
  left: 0;
  transform: rotate(-20deg);
  transform-origin: left center;
}
.pager a.prev:after {
  content: "";
  position: absolute;
  top: 0.35rem;
  right: 0;
  width: 1px;
  height: 0.4rem;
  background: rgba(255, 255, 255, 0.5);
}

.footer {
  background: #fff;
  position: relative;
  z-index: 10;
  margin-bottom: 1.2rem;
}
.footer .footer_bg {
  background: url("../imgs/footer_bg.png") center center/cover no-repeat;
  padding: 1.2rem 0;
}
.footer .footer_bg .tel {
  text-align: center;
}
.footer .footer_bg .tel .tel_text01 em {
  font-size: 0.34rem;
  display: block;
}
.footer .footer_bg .tel a {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-family: "Forum", serif;
  font-size: 0.5rem;
}
.footer .footer_bg .tel a em {
  font-size: 0.8rem;
}
.footer .footer_bg .tel .tel_text02 {
  font-size: 0.2rem;
}
.footer .footer_bg .btn_wrap {
  margin-top: 0.5rem;
}
.footer .footer_bottom {
  padding: 0.7rem 0 0.5rem;
  text-align: center;
}
.footer .footer_bottom .logo {
  width: 2.8rem;
  margin: 0 auto;
}
.footer .footer_bottom .copy {
  font-family: "Forum", serif;
  font-size: 0.18rem;
}

@media print {
  body {
    zoom: 0.5;
  }
  body .gHeader {
    position: absolute;
  }
}
