@charset "utf-8";

@import "style.css";
@import "color.css";
@import "font.css";
@import "line-height.css";
@import "margin.css";
@import "padding.css?20250727#1755_0.0.1";

:root {
  --bs-font-sans-serif: "Zen Kaku Gothic New", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  --bs-font-serif: "游明朝体", "Yu Mincho", YuMincho, serif;
  --bs-emphasis-color: #000;
  --bs-body-bg: #fff;
  --bs-body-width: 1366px;
  --bs-color-dark: #3a3a3a;
}

/*---------------------------------------------------
font-familyここから
----------------------------------------------------*/
main {
  font-family: var(--bs-font-sans-serif);
}
.zen-kaku-gothic-new {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}
.roboto {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

/*---------------------------------------------------
リセットCSSここから
----------------------------------------------------*/
main a,
footer a {
  color: #333 !important;
}

ul {
  padding: 0;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

input[type="text"]:focus {
  outline: 0;
}

button:focus {
  outline: 0;
}

*:focus {
  outline: none;
}

.width-fit-content {
  width: fit-content;
}

.scroll-control-none {
  -ms-overflow-style: none;
  scrollbar-width: none; /*Firefox対応のスクロールバー非表示コード*/
}

.scroll-control-none::-webkit-scrollbar {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  background-color: #fff;
  -webkit-appearance: none !important;
  appearance: none !important;
}

input[type="text"]:focus {
  outline: 0;
}

input[type="submit"] {
  -webkit-appearance: none;
  appearance: none;
}

textarea {
  resize: none;
}

.wpcf7-spinner {
  display: none !important;
}

/*---------------------------------------------------
 header
----------------------------------------------------*/

.header-position-fixed {
  position: fixed;
  top: 0;
}

.z-index_999 {
  z-index: 999 !important;
}

.header-container {
  width: calc(100% - 20px);
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 30px;
  z-index: 77;
  background-color: rgba(255, 255, 255, 0.9);
}

.header-height {
  height: 64px;
}

.header-logo {
  max-width: 128px;
  height: auto;
}

.gap-20 {
  gap: 20px;
}

.header-btn-width {
  width: 146px;
}

.ham-box {
  width: 25px;
  height: 25px;
  z-index: 99;
}

.ham-bar,
.ham-bar::before,
.ham-bar::after {
  background-color: var(--color-blue);
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 1.5px;
  opacity: 1;
}

.ham-bar {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.ham-bar::before {
  content: "";
  top: -11px;
  transition: 0.3s;
}

.ham-bar::after {
  content: "";
  top: 11px;
  transition: 0.3s;
}

.is-active .ham-bar {
  background-color: transparent !important;
}

.is-active .ham-bar::before {
  transform: translateY(11px) rotate(-45deg);
  background-color: white;
  transition: 0.3s;
}

.is-active .ham-bar::after {
  transform: translateY(-11px) rotate(45deg);
  background-color: white;
  transition: 0.3s;
}

.ham-drawer-overflow {
  overflow-y: auto;
}

@media screen and (min-width: 1200px) {
  .ham-drawer-overflow {
    overflow-y: hidden;
  }
}

.no-scrollbar {
  /* Firefox */
  scrollbar-width: none;
  /* IE / 旧 Edge */
  -ms-overflow-style: none;
}
.no-scrollbar::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.ham-drawer {
  top: 0;
  left: 0;
  width: 100vw;
  transition: 0.4s;
  opacity: 0;
  pointer-events: none;
  z-index: 88;
}

.ham-drawer-wrapper {
  background-color: var(--color-blue);
  width: calc(100vw - 24px);
  margin-left: 12px;
  margin-right: 12px;
  margin-top: 30px;
  height: auto;
  max-height: calc(100svh - 60px);
  border-radius: 34px;
  scrollbar-gutter: stable;
}

@media screen and (min-width: 992px) {
  .ham-drawer-wrapper {
    width: calc(100vw - 160px);
    margin-left: 80px;
    margin-right: 80px;
    margin-top: 15px;
    max-height: calc(100svh - 50px);
  }
}

.ham-drawer-nav-item {
  display: flex;
  align-items: center;
  gap: 0 10px;
}

.ham-drawer-nav-item::before {
  content: "";
  display: block;
  background-image: url(../image/general/icon-plus-white.svg);
  width: 8px;
  height: 8px;
  background-size: contain;
}

.ham-drawer-btn span:last-child {
  display: inline-block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  flex-shrink: 0;
  transition: 0.3s;
  -webkit-mask-image: url("../image/general/icon-plus-white.svg"); /* Safari対応 */
  mask-image: url("../image/general/icon-plus-white.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

.ham-drawer-btn-white span:last-child {
  background-color: #fff;
}

.ham-drawer-btn-blue span:last-child {
  background-color: var(--color-blue);
}

.ham-drawer-btn-white:hover span:last-child {
  background-color: var(--color-blue);
  transform: rotate(360deg);
}

.ham-drawer-btn-blue:hover span:last-child {
  background-color: var(--color-light-green);
  transform: rotate(360deg);
}

.ham-drawer-btn-width {
  padding: 20px;
}

@media screen and (min-width: 1200px) {
  .ham-drawer-btn {
    width: 254px !important;
  }
}

.link-icon-white {
  display: inline-flex;
  align-items: center;
  gap: 0 10px;
}

.link-icon-white::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(../image/general/icon-link-white.svg);
}

.ham-drawer.is-active {
  padding-right: unset !important;
}

.ham-drawer.is-active {
  opacity: 1;
  pointer-events: auto;
}

.is-fixed {
  overflow: hidden;
}

.fixed-bottom-btn {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  opacity: 1;
  visibility: visible;
  z-index: 85;
}

.fixed-bottom-btn.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media screen and (min-width: 992px) {
  .header-container {
    width: calc(100% - 160px);
    margin-left: 80px;
    margin-right: 80px;
  }

  .header-logo {
    max-width: 198px;
  }

  .ham-box {
    width: 40px;
    height: 40px;
  }

  .ham-bar,
  .ham-bar::before,
  .ham-bar::after {
    height: 5px;
    border-radius: 2.5px;
  }

  .ham-bar::before {
    top: -14px;
  }

  .ham-bar::after {
    top: 14px;
  }

  .is-active .ham-bar::before {
    transform: translateY(14px) rotate(-45deg);
  }

  .is-active .ham-bar::after {
    transform: translateY(-14px) rotate(45deg);
  }

  .c-mb-lg-6 {
    margin-bottom: 6px !important;
  }
}

.header-observation-btn {
  width: 90%;
  bottom: 30px;
}

@media (min-height: 370px) {
  .header-observation-btn {
    max-width: 334px;
    bottom: 50px;
  }
}

/*---------------------------------------------------
 footer
----------------------------------------------------*/

.footer-logo {
  width: 100%;
  height: auto;
}

.gap-x-24 {
  gap: 1.5rem 0;
}

.footer-nav-item {
  display: flex;
  align-items: center;
  gap: 0 5px;
}

.footer-nav-item::before {
  content: "";
  display: block;
  background-image: url(../image/general/icon-plus-blue.svg);
  width: 8px;
  height: 8px;
  background-size: contain;
}

.footer-btn span:last-child {
  display: inline-block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  flex-shrink: 0;
  background-color: #fff;
  -webkit-mask-image: url("../image/general/icon-plus-white.svg"); /* Safari対応 */
  mask-image: url("../image/general/icon-plus-white.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.footer-btn:hover span:last-child {
  background-color: var(--color-light-green);
  transform: rotate(360deg);
}

.link-icon {
  display: inline-flex;
  align-items: center;
  gap: 0 10px;
}

.link-icon::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(../image/general/icon-link.svg);
}

@media screen and (min-width: 992px) {
  .footer-logo {
    max-width: 276px;
  }

  .footer-button {
    max-width: 254px;
  }
}
