/* Universal box-sizing reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

/* Set default styles for html */
html {
  box-sizing: border-box;
  font-size: 100%;
}

/* Reset margin for common block-level elements */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  font-weight: normal;
}

/* Remove list styles on ul, ol elements with a list role */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: sans-serif; /* Set a base font family */
}

/* Reset default link styles */
a {
  text-decoration: none; /* Remove underlines from all links */
  color: inherit; /* Make sure the link color inherits the surrounding text color */
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

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

/* Reset styles for form elements */
input,
button,
textarea,
select {
  font: inherit;
  border: none; /* Remove borders on form elements */
  background: transparent; /* Make background transparent */
}

/* Remove animations and transitions for users with reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --notosans: "Noto Sans jP", sans-serif;
  --zengothic: "Zen Kaku Gothic New", sans-serif;
  --bizgothic: "BIZ UDGothic", sans-serif;
  --notoserif: "Noto Serif JP", serif;
  --zenold: "Zen Old Mincho", serif;
  --sawarabi: "Sawarabi Mincho", serif;
  --sippori: "Shippori Mincho", serif;
  --kiwi: "Kiwi Maru", "Zen Maru Gothic", "Kosugi Maru", serif;
  --zenmaru: "Zen Maru Gothic", serif;
  --kosugimaru: "Kosugi Maru", serif;
  --sree: "Sree Krushnadevaraya", serif;
  --zenantique: "Zen Antique", serif;
}

* {
  margin: 0;
  padding: 0;
  zoom: 1;
}

*,
*:before,
*:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: none;
  scroll-behavior: smooth;
}

body {
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  body {
    font-size: 0.875rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

img {
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

i,
strong {
  font-style: normal;
}

a {
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
a:hover {
  transition: all 0.3s ease;
}

li {
  list-style-type: none;
}

.clear {
  clear: both;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="submit"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

.fadeIn.is-show {
  opacity: 1;
}

.js__upSider > li {
  transform: translateY(100%);
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  transition: all 0.1s ease-in-out !important;
}
@-webkit-keyframes fadeUpAnime {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeUpAnime {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.blur_event {
  opacity: 0;
  filter: blur(40px);
}

.js_blur {
  opacity: 1 !important;
  filter: blur(0) !important;
  transition: all 1s ease-in-out !important;
}

.slide_appear {
  overflow: hidden;
  position: relative;
}
.slide_appear::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #f1f0ec;
  transform: translateX(0);
}

.js_slide_appear::before {
  -webkit-animation-name: bgLRextendAnime;
  animation-name: bgLRextendAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(1, 0, 0, 1);
  animation-timing-function: cubic-bezier(1, 0, 0, 1);
}

@-webkit-keyframes bgLRextendAnime {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(105%);
  }
}

@keyframes bgLRextendAnime {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(105%);
  }
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 997;
  width: 100%;
  transition: all 0.3s ease;
  background-color: transparent;
}
.l-header__inner {
  display: flex;
  align-items: center;
  padding: 15px;
}
@media (min-width: 576px) {
  .l-header__inner {
    padding: 24px 30px;
  }
}
.l-header__logo__img {
  max-width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 576px) {
  .l-header__logo__img {
    max-width: 158px;
  }
}
.l-header__logo__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.l-header .l-header__menu {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.l-header .l-header__menu__list {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  gap: 0.9375rem;
  flex: 1 0 auto;
  padding: 8.75rem 0;
  min-height: 100%;
}
@media (min-width: 576px) {
  .l-header .l-header__menu__list {
    gap: 30px;
  }
}
.l-header .l-header__menu__item {
  position: relative;
  min-height: 2.75rem;
}
.l-header .l-header__menu__item::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background: white;
  bottom: -1px;
  border-radius: 5px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.l-header .l-header__menu__item:hover::after {
  transform: scale(1, 1);
}
.l-header .l-header__menu__item .l-header__menu__link.mark-btn {
  margin-left: -23px;
}
@media (min-width: 576px) {
  .l-header .l-header__menu__item .l-header__menu__link.mark-btn {
    margin-left: -30px;
  }
}
.l-header .l-header__menu__link {
  display: flex;
  align-items: baseline;
  font-family: var(--headline);
  font-size: 1.75rem;
  line-height: 1.2;
  letter-spacing: 0px;
  color: white;
}
.l-header .l-header__menu__link:visited,
.l-header .l-header__menu__link:link {
  color: white;
}
@media (min-width: 576px) {
  .l-header .l-header__menu__link {
    font-size: 2.25rem;
  }
}
.l-header .l-header__menu__link::after {
  content: attr(data-subtitle);
  color: white;
  font-family: var(--sippori);
  font-size: 0.75rem;
  margin-left: 5px;
  transform: translateY(-2px);
}
@media (min-width: 576px) {
  .l-header .l-header__menu__link::after {
    font-size: 1rem;
  }
}
.l-header__btn__wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}
.l-header .mark-btn {
  display: flex;
  align-items: center;
  gap: 3px;
  line-height: 1.2;
}
.l-header .mark-btn::before {
  content: "";
  display: block;
  background: url(../images/common/title-logo-red.png) center/contain no-repeat;
  width: 20px;
  height: 20px;
  transition: transform 0.8s ease;
}
@media (min-width: 576px) {
  .l-header .mark-btn::before {
    width: 27px;
    height: 27px;
  }
}
.l-header .mark-btn:hover::before {
  transform: rotate(360deg);
}
.l-header .global_nav {
  position: fixed;
  top: 0;
  right: 0;
  transition: all 0.5s ease 0s;
  z-index: 999;
  width: 100%;
  height: auto;
  max-height: 100vh;
  visibility: hidden;
  background-color: var(--base-color);
  transform: translateX(100%);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
@media (min-width: 576px) {
  .l-header .global_nav {
    width: 500px;
  }
}

.l-header.is-scrolled {
  background-color: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.hamburger_menu {
  cursor: pointer;
  text-decoration: none;
  z-index: 999;
  background-color: transparent;
  border: none;
}

.drawer_background {
  display: block;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.3s;
  opacity: 0;
  z-index: 998;
}

.js_action_nav .global_nav {
  transform: translateX(0);
  visibility: visible;
}
.js_action_nav .global_nav .nav_link {
  visibility: visible;
}
.js_action_nav .drawer_background {
  display: block;
  visibility: visible;
  transition: all 0.3s;
  opacity: 1;
}

.l-footer {
  height: 100svh;
  display: flex;
}
.l-footer__wrap {
  margin-top: auto;
  margin-left: 0;
  margin-right: auto;
}
@media (min-width: 576px) {
  .l-footer__wrap {
    margin-left: 8vw;
  }
}
@media (min-width: 992px) {
  .l-footer__wrap {
    margin-left: auto;
  }
}
.l-footer__inner {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  .l-footer__inner {
    padding-top: 60px;
    padding-bottom: 100px;
  }
}
.l-footer__logo__img {
  max-width: 300px;
  margin-bottom: 25px;
}
@media (min-width: 576px) {
  .l-footer__logo__img {
    max-width: 482px;
  }
}
.l-footer__logo__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 992px) {
  .l-footer__wrapper {
    gap: 50px;
  }
}
.l-footer__address > h2 {
  font-size: 1.5rem;
}
.l-footer__map__link {
  border: solid 1px white;
  transition: all 0.3s ease;
}
.l-footer__map__link:hover {
  transition: all 0.3s ease;
  background-color: white;
}
.l-footer__map__link:hover:visited,
.l-footer__map__link:hover:link {
  color: var(--base-color);
}
.l-footer .l-footer__menu__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.l-footer .l-footer__menu__item {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 992px) {
  .l-footer .l-footer__menu__item {
    width: 100%;
  }
}
.l-footer .l-footer__menu__item::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: white;
  bottom: -1px;
  border-radius: 5px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.l-footer .l-footer__menu__item:hover::after {
  transform: scale(1, 1);
}
@media (min-width: 576px) {
  .l-footer .l-footer__menu__item .l-footer__menu__link.mark-btn {
    margin-left: -30px;
  }
}
@media (min-width: 992px) {
  .l-footer .l-footer__menu__item .l-footer__menu__link.mark-btn {
    margin-left: 0;
  }
}
.l-footer .l-footer__menu__link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-family: var(--headline);
  font-size: 1.625rem;
  line-height: 1.2;
  letter-spacing: 0px;
  color: white;
}
.l-footer .l-footer__menu__link:visited,
.l-footer .l-footer__menu__link:link {
  color: white;
}
@media (min-width: 576px) {
  .l-footer .l-footer__menu__link {
    font-size: 2rem;
  }
}
.l-footer .l-footer__menu__link::after {
  content: attr(data-subtitle);
  color: white;
  font-family: var(--sippori);
  font-size: 0.75rem;
  transform: translateY(-2px);
}
@media (min-width: 576px) {
  .l-footer .l-footer__menu__link::after {
    font-size: 1rem;
  }
}
.l-footer__btn__wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}
.l-footer .mark-btn {
  display: flex;
  align-items: center;
  gap: 3px;
  line-height: 1.2;
}
.l-footer .mark-btn::before {
  content: "";
  display: block;
  background: url(../images/common/title-logo-red.png) center/contain no-repeat;
  width: 20px;
  height: 20px;
  transition: transform 0.8s ease;
}
@media (min-width: 576px) {
  .l-footer .mark-btn::before {
    width: 27px;
    height: 27px;
  }
}
.l-footer .mark-btn:hover::before {
  transform: rotate(360deg);
}

.copy-right {
  padding: 20px 0;
  text-align: center;
}

.inner_full {
  margin: 0 calc(50% - 50vw);
}

.left__full {
  margin-left: calc(50% - 50vw);
}

.right__full {
  margin-right: calc(50% - 50vw);
}

.pc_only {
  display: block;
}
@media (max-width: 640px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media (max-width: 640px) {
  .sp_only {
    display: block;
  }
}

.c-btn {
  transition: all 0.5s linear;
  display: inline-block;
  position: relative;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  padding: 1em 2em;
}
.c-btn:hover {
  text-decoration: none;
}

.c-btn--block {
  display: block;
}

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

.js-tab_panel {
  display: none;
  opacity: 0;
}

.js-tab_panel.is-show {
  display: block;
  -webkit-animation: panel-show 0.6s ease forwards;
  animation: panel-show 0.6s ease forwards;
}

@-webkit-keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
