@charset "UTF-8";
:root {
  --color-primary: #a9831a;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.6;
  color: #313131;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.8rem;
  }
}
body > img {
  display: none;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
}

ul,
ol,
p,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd {
  margin-top: 0;
  margin-bottom: 0.75em;
  padding: 0;
}

P:last-child {
  margin-bottom: 0;
}

ul,
ol {
  list-style: none;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}
a img {
  transition: 0.3s;
}
a:hover {
  text-decoration: underline;
}
a:hover img {
  opacity: 0.8;
}

header .logo_center {
  text-align: center;
  padding: 5rem;
}
header .logo_center img {
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .hide_sp {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .hide_pc {
    display: none !important;
  }
}
.flex-break {
  flex-basis: 100%;
  height: 0;
}
@media screen and (max-width: 767px) {
  .flex-break {
    display: none;
  }
}

.container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 1120px;
}

.section {
  padding: 5rem 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .section {
    padding: 10rem 0;
  }
}

.section_title {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .section_title {
    font-size: 2.2rem;
  }
}
.section_title img {
  display: block;
  margin: 0 auto;
  height: 3rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .section_title img {
    height: 2rem;
    margin-bottom: 1rem;
  }
}
.section_title_page {
  color: #b39848;
}

.section_desc {
  text-align: center;
  margin-bottom: 5rem;
}

#site_footer {
  background-color: #e5ce95;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  #site_footer {
    padding-bottom: 10rem;
  }
}
#site_footer .copyright {
  text-align: center;
  color: #452d00;
  font-size: 1.4rem;
}

.footer_wrap {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  align-items: center;
}

.menu_footer {
  color: #313131;
  font-weight: bold;
  font-size: 1.1em;
}
.menu_footer a {
  color: inherit;
}

.text_red {
  color: #d00;
}

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

.mt3 {
  margin-top: 3rem;
}

.mt5 {
  margin-top: 5rem;
}

.btn_back_wrap {
  margin-top: 10rem;
  text-align: center;
}

.btn-default {
  display: inline-block;
  background-color: #cb9f1a;
  border: 0.2rem solid #fff;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 1rem;
  width: 20rem;
  transition: 0.3s;
}
.btn-default:hover {
  text-decoration: none;
  filter: drop-shadow(0 0 1rem #cb9f1a);
}

#back_to_top {
  position: fixed;
  z-index: 999;
  display: none;
}
@media screen and (max-width: 767px) {
  #back_to_top {
    bottom: 2rem;
    right: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  #back_to_top {
    bottom: 3rem;
    right: 3rem;
  }
}
#back_to_top .btt-inn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: #fff;
  width: 5rem;
  height: 5rem;
}
@media screen and (min-width: 768px) {
  #back_to_top .btt-inn {
    width: 7rem;
    height: 7rem;
  }
}
#back_to_top .btt-inn svg path {
  stroke: var(--color-primary);
}

.lbox_center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lbox_center {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .lbox_center {
    margin-top: 8rem;
  }
}

.lbox_btn {
  display: inline-flex;
  align-items: center;
  background-color: #06c152;
  border: 0.3rem solid #fff;
  border-radius: 2rem;
  color: #f0ecea;
  font-weight: bold;
  line-height: 1.4;
  text-decoration: none;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .lbox_btn {
    gap: 2rem;
    padding: 1.2rem 2rem;
  }
}
@media screen and (min-width: 768px) {
  .lbox_btn {
    gap: 2rem;
    padding: 1.8rem 3rem;
  }
}
.lbox_btn:hover {
  text-decoration: none;
  filter: drop-shadow(0 0 1rem #06c152);
}
.lbox_btn span {
  display: block;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .lbox_btn span {
    font-size: 1.8rem;
  }
}
.lbox_btn strong {
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .lbox_btn strong {
    font-size: 2.5rem;
  }
}
.lbox_btn::before, .lbox_btn::after {
  display: block;
  content: "";
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.lbox_btn::before {
  width: 0;
  height: 3.5rem; /* 
background-image: url(../images/btn_line_icon.svg); */
}
.lbox_btn::after {
  width: 3rem;
  height: 3rem;
  background-image: url(../images/btn_line_arrow.svg);
}

.page-content .heading-01 {
  font-size: 1.2em;
  line-height: 1.5;
  margin-bottom: 0.75em;
  color: #f7b792;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(5rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(5rem);
}
.fade-up.is-inview {
  animation: fadeUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.zoom-in {
  transform: scale(0.8);
  opacity: 0;
}
.zoom-in.is-inview {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

.delay-2 {
  animation-delay: 200ms;
}

.delay-4 {
  animation-delay: 400ms;
}

.delay-6 {
  animation-delay: 600ms;
}

.delay-8 {
  animation-delay: 800ms;
}

.delay-10 {
  animation-delay: 1000ms;
}

#breadcrumb {
  padding-bottom: 2rem;
  font-size: 1.6rem;
}
#breadcrumb ul {
  display: flex;
  align-items: center;
}
#breadcrumb ul img {
  height: 2.4rem;
  display: inline-block;
  vertical-align: text-bottom;
}
#breadcrumb ul li:not(:last-child) {
  margin-right: 1rem;
}
#breadcrumb ul li:not(:last-child)::after {
  content: "»";
}

.popup {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
.popup.open {
  opacity: 1;
  visibility: visible;
  z-index: 99999;
  overflow: auto;
}
.popup .popup-layer {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.6);
}
.popup .popup-wrap {
  position: relative;
  max-height: 90vh;
  width: 1100px;
  max-width: 90%;
  box-shadow: 0 10px 40px rgba(0, 74, 113, 0.25);
}
.popup .popup-wrap .close-popup {
  cursor: pointer;
  position: absolute;
  color: transparent;
  overflow: hidden;
  display: block;
  background: none;
  border: none;
  right: 2rem;
  top: 2rem;
  z-index: 9;
  width: 5rem;
  height: 5rem;
  border-radius: 5rem;
  border: 0.5rem solid #fff;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .popup .popup-wrap .close-popup {
    width: 4rem;
    height: 4rem;
    right: 0;
    top: 0;
    transform: translateX(50%) translateY(-50%);
  }
}
.popup .popup-wrap .close-popup:before, .popup .popup-wrap .close-popup:after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: " ";
  height: 2.5rem;
  width: 0.5rem;
  background-color: #fff;
  transform-origin: center;
  transition: 0.3s;
}
.popup .popup-wrap .close-popup:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.popup .popup-wrap .close-popup:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.popup .popup-wrap .close-popup:hover {
  border-color: #232323;
}
.popup .popup-wrap .close-popup:hover:before, .popup .popup-wrap .close-popup:hover:after {
  background-color: #232323;
}
.popup .popup-content {
  max-height: 90vh;
  overflow: auto;
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.popup .popup-content::-webkit-scrollbar {
  width: 2px;
}
.popup .popup-content::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.popup .popup-content::-webkit-scrollbar-thumb {
  background: #888;
}
.popup .popup-content::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.lbox_popup {
  background-color: #31ae36;
  padding: 4rem 8rem;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lbox_popup {
    padding: 4rem 1rem;
    border-bottom-width: 3rem;
  }
}
.lbox_popup .lbox_title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .lbox_popup .lbox_title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }
}
.lbox_popup .lbox_title span {
  display: inline;
  background: linear-gradient(rgba(0, 0, 0, 0) 60%, #ee3a3b 60%, #ee3a3b 95%, rgba(0, 0, 0, 0) 95%);
}
.lbox_popup .lbox_content {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .lbox_popup .lbox_content {
    text-align: left;
  }
}
.lbox_popup .lbox_box {
  --qr-width: 22rem;
  --qr-grap: 4em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .lbox_popup .lbox_box {
    flex-direction: column;
    gap: 5rem;
  }
}
.lbox_popup .lbox_box .detail {
  background-color: #fff;
  border-radius: 3rem;
  padding: 3rem;
  color: #232323;
}
@media screen and (max-width: 767px) {
  .lbox_popup .lbox_box .detail {
    padding: 2rem 1rem;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .lbox_popup .lbox_box .detail {
    width: calc(100% - var(--qr-width) - var(--qr-grap));
  }
}
.lbox_popup .lbox_box .detail .lbox_box_title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  padding: 1rem 5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  background-image: url(../images/line_title_bg.webp);
  background-position: right center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .lbox_popup .lbox_box .detail .lbox_box_title {
    font-size: 1.5rem;
    padding: 1rem 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
  }
}
@media screen and (min-width: 768px) {
  .lbox_popup .lbox_box .detail .lbox_box_title {
    background-size: contain;
  }
}
.lbox_popup .lbox_box .detail .lbox_box_title span {
  display: block;
  color: #ffe600;
}
.lbox_popup .lbox_box .qr_code {
  position: relative;
}
@media screen and (min-width: 768px) {
  .lbox_popup .lbox_box .qr_code {
    width: var(--qr-width);
  }
}
@media screen and (max-width: 767px) {
  .lbox_popup .lbox_box .qr_code {
    width: 16rem;
    margin-bottom: 2rem;
  }
}
.lbox_popup .lbox_box .qr_code .qr_code_box::before, .lbox_popup .lbox_box .qr_code .qr_code_box::after {
  content: "";
  display: block;
  position: absolute;
  width: 4rem;
  height: 4rem;
  border-width: 0.5rem;
  border-style: solid;
}
.lbox_popup .lbox_box .qr_code .qr_code_box_top::before {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-color: #fff transparent transparent #fff;
}
.lbox_popup .lbox_box .qr_code .qr_code_box_top::after {
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  border-color: #fff #fff transparent transparent;
}
.lbox_popup .lbox_box .qr_code .qr_code_box_bot::before {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
  border-color: transparent transparent #fff #fff;
}
.lbox_popup .lbox_box .qr_code .qr_code_box_bot::after {
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
  border-color: transparent #fff #fff transparent;
}
.lbox_popup .lbox_box .qr_code img {
  display: block;
  width: 100%;
}

.btn-line {
  background-color: #0a5f56;
  color: #fff;
  padding: 1rem 3rem 1.25rem;
  border-radius: 1rem;
  margin-top: 2rem;
  border: 0.1rem solid #fff;
  transition: 0.3s;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .btn-line {
    font-size: 2rem;
  }
}
.btn-line:hover {
  text-decoration: none;
  filter: drop-shadow(0 0 1rem #0a5f56);
}