@charset "UTF-8";

/*------------------------------
Reset
------------------------------*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
h5,
h6,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol,
li {
  list-style: none;
}


/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  border: none;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/*------------------------------
base
------------------------------*/
/* @font-face {
  font-family: 'ShipporiMincho';
  src: url('../fonts/ShipporiMincho-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'ShipporiMincho';
  src: url('../fonts/ShipporiMincho-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'GenJyuuGothicX-Heavy';
  src: url('../fonts/GenJyuuGothicX-Heavy.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'G_e12Daydream';
  src: url("../fonts/G_e12Daydream-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AzukiB';
  src: url("../fonts/azukiB.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
} */

html {
  font-size: 100%;
  overflow-y: scroll;
  min-height: 100vh;
  min-height: 100dvh;
}

body {
  width: 100%;
  font-family: 'ShipporiMincho';
  font-weight: 400;
  font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #FFF8F2;
  color: #47230A;
  line-height: 1.8;
  letter-spacing: 0.015em;
}


/*------------------------------
広告
------------------------------*/
.advertisement {
  display: grid;
  place-items: center;
  margin-top: min(20vw, 80px);
}


/*------------------------------
utility
------------------------------*/
.OnlySp {
  display: none;
}

.OnlyMob {
  display: none;
}

.OnlyPc {
  display: block;
}

@media (width < 768px) {
  .OnlySp {
    display: block;
  }

  .OnlyMob {
    display: block;
  }

  .OnlyPc {
    display: none;
  }
}

@media (width <= 480px) {
  .OnlySp {
    display: block;
  }

  .OnlyMob {
    display: none;
  }

  .OnlyPc {
    display: none;
  }
}

.is-swell {
  animation-name: swell;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-delay: 2s;
  animation-fill-mode: forwards;
}

@keyframes swell {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.is-swing {
  animation-name: swing;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-delay: 0.3s;
  transform-origin: center -20px 0;
}

@keyframes swing {
  0% {
    transform: rotate(0deg);
  }
  12.5% {
    transform: rotate(5deg);
  }
  25% {
    transform: rotate(0deg);
  }
  37.5% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(0deg);
  }
  62.5% {
    transform: rotate(5deg);
  }
  75% {
    transform: rotate(0deg);
  }
  87.5% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.Link {
  text-decoration: none;
  color: currentColor;
  transition: opacity .3s;
}

.Link:hover {
  opacity: .8;
}

a[href^="tel:"] {
    pointer-events:none;
}
@media (width <= 480px) {
  a[href^="tel:"] {
      pointer-events:auto;
  }
}


/*------------------------------
header
------------------------------*/
.header {
  position: sticky;
  z-index: 15;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: min(15vw, 80px);
  /* background-color: #FFDF33; */
  background-image: linear-gradient(45deg, #FFFF00, #FFDF33);
}
@media (width < 768px) {
  .header-top {
    position: fixed;
  }
}

.header-column {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: min(100%, 1024px);
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 10px;
  padding-left: 10px;
}

.header-column-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'GenJyuuGothicX-Heavy';
  font-weight: 900;
}


/*------------------------------
ロゴ
------------------------------*/
.logo {
  width: min(40%, 230px);
}

.logo-link-image {
  width: 100%;
  aspect-ratio: 500 / 60;
  object-fit: cover;
}


/*------------------------------
グローバルナビ
------------------------------*/
.globalNavigation {
  display: block;
  position: relative;
  top: auto;
  left: auto;
  height: auto;
  background-color: transparent;
  visibility: visible;
  overflow-y: visible;
  overscroll-behavior: auto;
}

@media (width < 768px) {
  .globalNavigation {
    position: absolute;
    z-index: 15;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    text-align: center;
    visibility: hidden;
    transition: left .5s, visibility .5s;
    overflow-y: auto;
    overscroll-behavior: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

.globalNavigation::-webkit-scrollbar {
  display: none;
}

.globalNavigation.is-active {
  left: 0;
  visibility: visible;
}

.globalNavigation-mask {
  top: auto;
  left: auto;
  height: auto;
  background-color: transparent;
  visibility: visible;
  cursor: auto;
}
@media (width < 768px) {
  .globalNavigation-mask {
    position: relative;
    top: 0;
    left: -100%;
    z-index: 20;
    width: 100%;
    height: calc(100% + 1px);
    background-color: #FFDF33;
    transition: left .5s;
    cursor: pointer;
  }
}

.globalNavigation-mask.is-active {
  left: 0;
}

.globalNavigation-mask-inner {
  position: relative;
  top: auto;
  left: auto;
  width: auto;
  height: auto;
  padding: 0;
}
@media (width < 768px) {
  .globalNavigation-mask-inner {
    position: absolute;
    z-index: 25;
    top: 0;
    left: -100%;
    width: min(80%, 220px);
    padding-top: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    background-color: transparent;
    transition: left .5s;
    cursor: auto;
  }
}

.globalNavigation-mask-inner.is-active {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


/*------------------------------
メニューリスト
------------------------------*/
.menuList {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
@media (width < 768px) {
  .menuList {
    display: block;
  }
}

.menuList > * + * {
  margin-left: min(1.5vw, 30px);
}
@media (width < 768px) {
  .menuList > * + * {
    margin-top: 30px;
    margin-left: 0;
  }
}

.menuList-item-link {
  position: relative;
}

.menuList-item-link:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.menuList-item-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (width < 768px) {
  .menuList-item-link::before {
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
  }
}

.menuList-item-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 2px;
  background-color: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
@media (width < 768px) {
  .menuList-item-link::after {
    left: -110%;
    width: 220%;
  }
}


/*------------------------------
電話番号
------------------------------*/
.tel {
  margin-left: min(1.5vw, 50px);
}
@media (width < 768px) {
  .tel {
    display: none;
  }
}

.tel-link {
  text-decoration: none;
  color: #47230A;
}

.tel-link::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  mask-image: url(../images/icon-phone.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: rgba(50, 205, 50);
  vertical-align: middle;
}


/*------------------------------
ハンバーガーメニュー
------------------------------*/
.hamburger {
  display: none;
}
@media (width < 768px) {
  .hamburger {
    display: inline-block;
    position: relative;
    z-index: 30;
    width: min(9vw, 36px);
    height: min(9vw, 36px);
    aspect-ratio: 1 / 1;
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
  }
}

.hamburger::before {
  position: absolute;
  top: -25%;
  left: -25%;
  width: 150%;
  height: 150%;
  content: "";
}

.hamburger-line {
  display: block;
  position: absolute;
  z-index: 30;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background-color: #47230A;
  transition: background-color .5s;
}

.hamburger-line::before,
.hamburger-line::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 30;
  width: 100%;
  height: 3px;
  background-color: #47230A;
  transition: transform .5s;
}

.hamburger-line::before {
  top: -8px;
}

.hamburger-line::after {
  top: 8px;
}

.hamburger.is-active .hamburger-line {
  background-color: transparent;
}

.hamburger.is-active .hamburger-line::before {
  top: 0;
  background-color: #47230A;
  transform: rotate(-315deg);
}

.hamburger.is-active .hamburger-line::after {
  top: 0;
  background-color: #47230A;
  transform: rotate(315deg);
}

.hamburger-text {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  width: 140%;
  font-family: 'GenJyuuGothicX-Heavy';
  font-weight: 900;
  font-size: clamp(0.625rem, 0.534rem + 0.45vw, 0.875rem);
  text-align: center;
  color: #47230A;
}

.hamburger-text::after {
  content: 'メニュー';
}

.hamburger.is-active .hamburger-text::after {
  content: '閉じる';
}


/*------------------------------
section
------------------------------*/
.section {
  padding-top: min(70vw, 100px);
  padding-bottom: min(70vw, 100px);
}

.section-bottom {
  padding-top: 0;
}


/*------------------------------
container
------------------------------*/
.container {
  width: min(100%, 1024px);
  margin-right: auto;
  margin-left: auto;
  padding-right: 10px;
  padding-left: 10px;
}

.containerTight {
  width: min(100%, 768px);
}


/*------------------------------
heading
------------------------------*/
.heading-en {
  font-family: 'G_e12Daydream';
  font-weight: normal;
  font-size: clamp(3rem, 2.273rem + 3.64vw, 5rem);
  line-height: 1.5;
  letter-spacing: 0.001em;
  color: rgba(50, 205, 50, .7);
}

.heading-ja {
  color: rgba(50, 205, 50, .7);
}

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


/*------------------------------
footer
------------------------------*/
.footer {
  position: sticky;
  top: 100vh;
  top: 100dvh;
  padding-top: min(30vw, 50px);
  padding-bottom: min(30vw, 50px);
  background-color: #D79D65;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: min(10vw, 60px);
  font-family: 'ShipporiMincho';
  font-weight: 400;
}
@media (width < 768px) {
  .footer-inner {
    display: none;
  }
}

.footer-inner .menuList-item-link::after {
  background-color: transparent;
}

.footer-copyright {
  margin-top: min(30vw, 50px);
  text-align: center;
}
@media (width < 768px) {
  .footer-copyright {
    margin-top: 0;
  }
}


/*------------------------------
ボタン
------------------------------*/
.button {
  position: relative;
  display: block;
  width: min(100%, 260px);
  margin-top: min(20vw, 30px);
  margin-right: auto;
  margin-left: auto;
  padding-top: 1em;
  padding-right: 1em;
  padding-bottom: 1em;
  padding-left: 1em;
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  color: #FFF;
  transition: box-shadow .15s ease-in-out;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-image: linear-gradient(45deg, #47230A, #D79D65);
  transition: .5s;
}

.button:hover {
  box-shadow: 0 0 3px #ccc;
}

.button:hover::before {
  background-image: linear-gradient(360deg, #47230A, #D79D65);
}

.button-inner {
  position: relative;
}

.button-navigation {
  margin-top: 0;
  color: #47230A;
  line-height: 1.2;
}

.button-navigation::before {
  background-image: linear-gradient(45deg, #FFDF33, #FFFF00);
}

.button-navigation:hover::before {
  background-image: linear-gradient(45deg, #FFFF00, #FFDF33);
}


/*------------------------------
トップへ戻る
------------------------------*/
.backToTop-observationPoint {
  position: absolute;
  top: 480px;
  left: 0;
  width: 1px;
  height: 1px;
  background-color: transparent;
}

.backToTop {
  position: fixed;
  z-index: 10;
  right: 10px;
  bottom: 10%;
  width: min(15%, 54px);
  height: min(15%, 54px);
  aspect-ratio: 1/1;
  border: 1px solid #FFF;
  border-radius: 50%;
  background-color: #FFDF33;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.backToTop:hover {
  transform: scale(1.1, 1.1);
}

.backToTop::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: min(30%, 20px);
  height: min(30%, 20px);
  aspect-ratio: 1/1;
  clip-path: polygon(50% 50%, 0% 100%, 100% 100%);
  background-color: #47230A;
}

.backToTop::after {
  content: 'Top';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
}

.backToTop.is-hide {
  opacity: 0;
  visibility: hidden;
}

.backToTop.is-active {
  opacity: 1;
  visibility: visible;
}

.backToTop-inner {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(1px, 1px, 1px, 1px);
}


/*------------------------------
スティッキーボタン
------------------------------*/
.sticky-contact {
  display: none;
}
@media (width < 768px) {
  .sticky-contact {
    display: flex;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 5;
  }
}

.sticky-contact-item {
  width: min(50%, 400px);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.sticky-contact-item-tel {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 2px solid #fff;
  border-bottom: none;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background-image: linear-gradient(45deg, #FFDF33, #FFFF00);
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  font-weight: 700;
  text-decoration: none;
  color: #47230A;
}

.sticky-contact-item-access {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 2px solid #fff;
  border-bottom: none;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background-image: linear-gradient(45deg, rgba(0, 128, 0), rgba(50, 205, 50));
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  font-weight: 700;
  text-decoration: none;
  color: #FFF;
}



/*------------------------------
アコーディオン
------------------------------*/
.faq-item {
  position: relative;
  z-index: 1;
}

summary {
  display: block;
}

summary::-webkit-details-marker {
  display: none;
}

.question {
  margin-top: 2em;
}

.question-item {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: min(4vw, 16px);
  padding-right: min(6vw, 24px);
  padding-bottom: min(4vw, 16px);
  padding-left: min(6vw, 24px);
  border-bottom: 1px solid #47230A;
  font-weight: bold;
  color: #47230A;
}

.faq-icon {
  position: relative;
  display: block;
  width: 1em;
  height: 0.8em;
  margin-top: 0.5em;
  /* margin-right: 1em; */
  flex-shrink: 0;
  transition: transform 0.4s;
}

details.is-opened .faq-icon {
  transform: rotate(180deg);
}

.faq-icon::before {
  content: '';
  position: absolute;
  display: block;
  width: min(100%, 1em);
  height: min(100%, 0.8em);
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
  background-color: #47230A;
}

.answer {
  overflow: hidden;
  /* background-color: rgba(255, 223, 51, 0.3); */
}

.answer-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: min(6vw, 24px);
  padding-right: min(3vw, 12px);
  padding-bottom: min(6vw, 24px);
  padding-left: min(3vw, 12px);
}

.answer-list-item {
  padding-left: 1em;
  text-indent: -1em;
}


/*------------------------------
チェックマーク
------------------------------*/
.checkmark {
	padding-left: 1.5em;
  padding-right: 0.5em;
	position:relative;
}

.checkmark:before,
.checkmark:after {
	content: '';
	position: absolute;
	display: block;
}

.checkmark:before {
  top: 0;
	left: 0;
	width: 1.5em;
	height: 1.5em;
	border-radius: 3px;
	border: 1px solid #47230A;
}

.checkmark:after {
	top: 0.25vw;
	left: calc(1em / 3);
	width: 1.5em;
	height: calc(1em / 2);
	border-left: 5px solid rgba(50, 205, 50);
	border-bottom: 3px solid rgba(50, 205, 50);
	transform: rotate(-45deg);
}


/*------------------------------
ページバナー
------------------------------*/
.page-banner {
  position: relative;
  width: 100%;
  height: 30vh;
  height: 30svh;
}

.page-banner-image {
  width: 100%;
  height: 30vh;
  height: 30svh;
  aspect-ratio: 1920 / 834;
  object-fit: cover;
}

.page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(65%, 800px);
  padding-top: min(3vw, 24px);
  padding-right: min(3vw, 30px);
  padding-bottom: min(3vw, 24px);
  padding-left: min(3vw, 30px);
  background-color: rgba(255, 255, 255, .8);
  color: rgba(50, 205, 50, .7);
  line-height: 1.2;
}

.page-title-en {
  font-family: 'G_e12Daydream';
  font-weight: normal;
  font-size: clamp(1.5rem, 0.591rem + 4.55vw, 4rem);
  text-align: center;
}

.page-title-ja {
  font-size: clamp(1rem, 0.682rem + 1.59vw, 1.875rem);
  text-align: center;
}


/*------------------------------
パンくずリスト
------------------------------*/
.breadcrumb {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
  margin-bottom: 1em;
}

.breadcrumb > * + * {
  padding-left: 1em;
}

.breadcrumb-item {
  font-family: 'GenJyuuGothicX-Heavy';
  font-weight: 900;
}

.breadcrumb-item.current {
  position: relative;
  color: rgba(76, 59, 48);
}

.breadcrumb-item.current::before {
  content: '\03e';
  position: absolute;
  left: 0.2em;
}

.breadcrumb-item-link {
  text-decoration: none;
}


/*------------------------------
ページ内ナビ
------------------------------*/
.page-navigation-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  justify-content: center;
  gap: 20px;
  width: min(100%, 800px);
  margin: min(8vw, 50px) auto;
}


/*------------------------------
ページネーション
------------------------------*/
.pagination {
  display: flex;
  gap: 10px;
}

.page-numbers {
  position: relative;
  display: block;
  padding: 0.375rem 0.75rem;
  color: rgba(50, 205, 50, .7);
  text-decoration: none;
  background-color: #fff;
  border: 1px solid rgba(50, 205, 50, .7);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.page-numbers.current,
.page-numbers:hover {
  background-color: rgba(50, 205, 50, .7);
  color: #fff;
}


/*------------------------------
サイドバー
------------------------------*/
.sidebar {
  position: sticky;
  top: min(20vw, 100px);
  width: min(33%, 300px);
}
@media (width < 768px) {
  .sidebar {
    width: 100%;
    margin-top: min(70vw, 100px);
  }
}

.widget {
  padding: min(3vw, 30px) min(2vw, 20px);
  background-color: rgba(50, 205, 50, .7);
}

.widget-title {
  font-size: clamp(1.5rem, 1.227rem + 1.36vw, 2.25rem);
  color: #FFF;
}

.widget-list a {
  display: block;
  padding: 0.75em 1.5em;
  padding-right: 2.5rem;
  border-bottom: 1px solid #FFF;
  color: #FFF;
  text-decoration: none;
  transition: color .3s;
}

.widget-list a:hover {
  color: #47230A;
}