/* 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: 20px;
}
@media (min-width: 992px) {
  .l-header__inner {
    padding: 30px;
  }
}
.l-header__logo__img {
  max-width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .l-header__logo__img {
    max-width: 146px;
  }
}
.l-header__logo__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.l-header__menu {
  margin-left: auto;
  padding: 12px 16px 12px 45px;
  background-color: white;
}
@media (min-width: 992px) {
  .l-header__menu {
    border-radius: 50px;
  }
}
.l-header__menu__list {
  display: flex;
  align-items: center;
  flex-direction: row;
}
@media (min-width: 576px) {
  .l-header__menu__list {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .l-header__menu__list {
    flex-direction: column;
    padding: 0;
    margin: 0;
    gap: 45px;
    flex: 1 0 auto;
    min-height: 100%;
  }
}
.l-header__menu__link {
  color: white;
  font-size: 1rem;
}
@media (min-width: 576px) {
  .l-header__menu__link {
    font-size: 1.2rem;
  }
}
@media (min-width: 992px) {
  .l-header__menu__link {
    color: var(--base-color);
    font-size: 1rem;
  }
}
.l-header__menu__link:hover {
  color: var(--blue01);
}
.l-header__menu .contact-btn {
  background: linear-gradient(180deg, #0497e6 0%, #004688 100%);
  border-radius: 40px;
  margin-top: 50px;
  padding: 10px 16px 10px 20px;
}
@media (min-width: 576px) {
  .l-header__menu .contact-btn {
    padding: 14px 16px 14px 24px;
  }
}
@media (min-width: 992px) {
  .l-header__menu .contact-btn {
    margin-top: 0;
  }
}
.l-header__menu .contact-btn a {
  z-index: 1;
  color: white;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1rem;
}
@media (min-width: 576px) {
  .l-header__menu .contact-btn a {
    font-size: 1.2rem;
  }
}
.l-header__menu .contact-btn a > span {
  padding: 12px 10px;
  background-color: white;
  border-radius: 40px;
  margin-left: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
}
.l-header__menu .contact-btn a > span > img {
  width: 13px;
  height: 9px;
  transition: all 0.3s ease;
}
.l-header__menu .contact-btn a:hover > span > img {
  transform: translateX(4px);
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .global-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    transition: all 0.5s ease;
    overflow-y: auto;
    width: 500px;
    min-height: 100vh;
    max-height: 100vh;
    height: auto;
    background-color: rgba(0, 7, 35, 0.804);
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 150px 0 !important;
    transform: translateX(100%);
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .global-nav {
    width: 100%;
    max-height: 324px;
  }
}

.menu-btn {
  position: fixed;
  z-index: 999;
  top: 32px;
  right: 20px;
  display: block;
}
@media (min-width: 992px) {
  .menu-btn {
    top: 20px;
    display: none;
  }
}

.hamburger_menu {
  width: 50px;
  height: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  background-color: transparent;
  border: none;
}
@media (max-width: 834px) {
  .hamburger_menu {
    width: 35px;
    height: 22px;
  }
}
.hamburger_menu > span {
  background-color: #76c0e8;
  display: block;
  width: 100%;
  height: 1.75px;
  border-radius: 5px;
  transition: all 0.3s;
}
.hamburger_menu > span:nth-of-type(1) {
  -webkit-animation: menu-bar01 0.75s forwards;
  animation: menu-bar01 0.75s forwards;
}
.hamburger_menu > span:nth-of-type(3) {
  -webkit-animation: menu-bar02 0.75s forwards;
  animation: menu-bar02 0.75s forwards;
}
@-webkit-keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(12px) rotate(0);
  }
  100% {
    transform: translateY(12px) rotate(45deg);
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(12px) rotate(0);
  }
  100% {
    transform: translateY(12px) rotate(45deg);
  }
}
@-webkit-keyframes active-menu-bar02 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-12px) rotate(0);
  }
  100% {
    transform: translateY(-12px) rotate(-45deg);
  }
}
@keyframes active-menu-bar02 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-12px) rotate(0);
  }
  100% {
    transform: translateY(-12px) rotate(-45deg);
  }
}
@-webkit-keyframes menu-bar01 {
  0% {
    transform: translateY(12px) rotate(45deg);
  }
  50% {
    transform: translateY(12px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(12px) rotate(45deg);
  }
  50% {
    transform: translateY(12px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes menu-bar02 {
  0% {
    transform: translateY(-12px) rotate(-45deg);
  }
  50% {
    transform: translateY(-12px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-12px) rotate(-45deg);
  }
  50% {
    transform: translateY(-12px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@media (max-width: 834px) {
  @-webkit-keyframes active-menu-bar01 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(9px) rotate(0);
    }
    100% {
      transform: translateY(11px) rotate(45deg);
    }
  }
  @keyframes active-menu-bar01 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(9px) rotate(0);
    }
    100% {
      transform: translateY(11px) rotate(45deg);
    }
  }
  @-webkit-keyframes active-menu-bar02 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-10px) rotate(0);
    }
    100% {
      transform: translateY(-9px) rotate(-45deg);
    }
  }
  @keyframes active-menu-bar02 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-10px) rotate(0);
    }
    100% {
      transform: translateY(-9px) rotate(-45deg);
    }
  }
  @-webkit-keyframes menu-bar01 {
    0% {
      transform: translateY(10px) rotate(45deg);
    }
    50% {
      transform: translateY(10px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu-bar01 {
    0% {
      transform: translateY(10px) rotate(45deg);
    }
    50% {
      transform: translateY(10px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  @-webkit-keyframes menu-bar02 {
    0% {
      transform: translateY(-10px) rotate(-45deg);
    }
    50% {
      transform: translateY(-10px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu-bar02 {
    0% {
      transform: translateY(-10px) rotate(-45deg);
    }
    50% {
      transform: translateY(-10px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
}

.js_action_nav .hamburger_menu > span {
  transition: all 0.3s;
}
.js_action_nav .hamburger_menu > span:nth-of-type(1) {
  -webkit-animation: active-menu-bar01 0.75s forwards;
  animation: active-menu-bar01 0.75s forwards;
}
.js_action_nav .hamburger_menu > span:nth-of-type(2) {
  opacity: 0;
}
.js_action_nav .hamburger_menu > span:nth-of-type(3) {
  -webkit-animation: active-menu-bar02 0.75s forwards;
  animation: active-menu-bar02 0.75s forwards;
}
.js_action_nav .global__nav {
  transform: translateX(0);
  visibility: visible;
}
.js_action_nav .global__nav .l-header__nav__link {
  visibility: visible;
}
.js_action_nav .back-shadow {
  visibility: visible;
  opacity: 1;
}

.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;
}

.contact-link-area {
  position: relative;
  z-index: 1;
  margin: 50px 0 80px;
  background: url(../images/common/top-contact-bg.jpg) center/cover no-repeat;
}
@media (min-width: 768px) {
  .contact-link-area {
    margin: 50px 0 100px;
  }
}
.contact-link-area::after {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  inset: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #ffffff 95.19%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7));
}
.contact-link-area__inner {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .contact-link-area__inner {
    padding: 100px 0;
  }
}
.contact-link-area__top,
.contact-link-area__main {
  font-weight: bold;
}
.contact-link-area__top {
  font-size: 1rem;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .contact-link-area__top {
    font-size: 1.25rem;
  }
}
.contact-link-area__main {
  font-family: var(--kinto);
  font-size: 1.375rem;
  color: var(--blue01);
  margin-bottom: 30px;
  line-height: 1.5;
}
@media (min-width: 576px) {
  .contact-link-area__main {
    letter-spacing: 2.6px;
    font-size: 1.7rem;
  }
}
@media (min-width: 768px) {
  .contact-link-area__main {
    font-size: 2.1875rem;
  }
}
@media (min-width: 992px) {
  .contact-link-area__main {
    font-size: 3.125rem;
  }
}
.contact-link-area .contents-text {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .contact-link-area .contents-text {
    margin-bottom: 60px;
  }
}
.contact-link-area .btn-wrap__link {
  margin: 0 auto;
}
@media (min-width: 576px) {
  .contact-link-area .btn-wrap__link {
    margin-right: auto;
    margin-left: 0;
  }
}

.l-footer {
  background-color: #fafafa;
  padding: 80px 0 100px;
}
@media (min-width: 768px) {
  .l-footer {
    padding: 80px 0 120px;
  }
}
.l-footer__inner {
  display: flex;
  gap: 80px;
  flex-direction: column-reverse;
}
@media (min-width: 576px) {
  .l-footer__inner {
    gap: 100px;
  }
}
@media (min-width: 992px) {
  .l-footer__inner {
    gap: 115px;
    flex-direction: row;
  }
}
.l-footer__left {
  width: 100%;
}
@media (min-width: 992px) {
  .l-footer__left {
    width: 310px;
  }
}
.l-footer__logo {
  max-width: 200px;
  width: 50%;
  margin: 0 auto 34px;
}
@media (min-width: 992px) {
  .l-footer__logo {
    max-width: 307px;
    width: 100%;
    margin-left: 0;
    margin-right: auto;
  }
}
.l-footer__right {
  flex: 1;
}
.l-footer__right__text {
  font-family: var(--kinto);
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: var(--blue02);
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .l-footer__right__text {
    font-size: 1.8rem;
  }
}
@media (min-width: 992px) {
  .l-footer__right__text {
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .l-footer__right__text {
    font-size: 2.25rem;
  }
}
.l-footer__nav {
  max-width: 455px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .l-footer__nav {
    margin-left: 0;
    margin-right: auto;
  }
}
.l-footer__nav > ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  -moz-column-gap: 35px;
  column-gap: 35px;
  row-gap: 15px;
  justify-content: center;
}
@media (min-width: 576px) {
  .l-footer__nav > ul {
    flex-direction: row;
    align-items: flex-start;
  }
}
@media (min-width: 768px) {
  .l-footer__nav > ul {
    row-gap: 23px;
  }
}
@media (min-width: 992px) {
  .l-footer__nav > ul {
    justify-content: flex-start;
  }
}
.l-footer__nav > ul > li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-footer__nav > ul > li > a {
  transition: all 0.3s ease;
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  .l-footer__nav > ul > li > a {
    font-size: 1rem;
  }
}
.l-footer__nav > ul > li > a:hover {
  color: var(--blue01);
  transition: all 0.3s ease;
}
.l-footer .copy-right {
  text-align: center;
  font-size: 0.8rem;
}
@media (min-width: 576px) {
  .l-footer .copy-right {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .l-footer .copy-right {
    text-align: left;
  }
}

.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;
  }
}
