@charset "utf-8";

@import "style.css";
@import "color.css";
@import "font.css";
@import "line-height.css";
@import "margin.css";
@import "padding.css";

:root {
  --bs-font-sans-serif: "Noto Sans JP", sans-serif;
  --bs-font-serif: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  --bs-emphasis-color: #000;
  --bs-body-bg: #fff;
  --bs-body-color: #1c1c1c !important;
  --bs-body-width: 1366px;
}

/* @media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: auto;
  }
} */

/*---------------------------------------------------
font-familyここから
----------------------------------------------------*/
body {
  /*font-family: var(--bs-font-sans-serif);*/
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 500;
}

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

ul {
  padding: 0;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

.ls-none {
  list-style-type: none !important;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  background-color: #fff;
  border: 1px solid #333 !important;
  /* border-radius: 8px !important; */
  -webkit-appearance: none !important;
  appearance: none !important;
  /* height: 56px; */
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder {
  color: #777;
}

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

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

button:focus {
  outline: 0;
}

*:focus {
  outline: none;
}

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

.grecaptcha-badge {
  visibility: hidden;
}

.wm-rl {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.nav-border {
  border-top: 0.031rem solid #fff;
}

.text-policy {
  color: #70aab3 !important;
}

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

[id] {
  scroll-margin-top: 84px;
}

header{
  position: relative;
  z-index: 10000;
}

.header-position-fixed {
  position: fixed;
  top: 0;
  height: 84px;
  background: rgba(255, 255, 255, 0.8);
  padding: 0 30px;
}

.lh-s{
  line-height: 1.2;
}

.header-pc-btn-gap{
  margin-right: 105px;
}

.header-pc-btn{
  width: 133px;
  height: 38px;
}

.ham-box {
  width: 31px;
  height: 27px;
  z-index: 10000;
  cursor: pointer;
}

.ham-bar,
.ham-bar::before,
.ham-bar::after {
  background-color: #000;
  position: absolute;
  width: 31px;
  height: 2px;
  opacity: 1;
}

.ham-bar {
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  transition: 0.5s;
}

.ham-bar::before {
  content: "";
  top: -12.5px;
  transition: 0.4s;
}

.ham-bar::after {
  content: "";
  top: 12.5px;
  transition: 0.4s;
}

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

.is-active .ham-bar::before {
  transform: translateY(12.5px) rotate(45deg);
  transition: 0.4s;
}

.is-active .ham-bar::after {
  transform: translateY(-12.5px) rotate(-45deg);
  transition: 0.4s;
}

.ham-drawer {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  z-index: 9998;
  transition: opacity.4s ease;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.53);
}
.ham-drawer.is-active{
  opacity: 1;
  pointer-events: auto;
}

.ham-drawer-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  background-color: #F7F7F7;
  scrollbar-gutter: stable;
  width: 100%;
  max-width: 402px;
  height: 100%;
  max-height: 700px;
  opacity: 0;
  transform: translateX(110%);
  transition: opacity .4s ease, transform.8s ease;
  /*z-index: 1;*/
}
.ham-drawer.is-active  .ham-drawer-wrapper {
  opacity: 1;
  transform: translateX(0);
}

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

.is-fixed {
  overflow: hidden;
}

.ham-drawer-container{
  width: 60vw;
  margin-left: auto;
  margin-right: auto;
}

.ham-nav-btn{
  width: 180px;
  height: 38px;
}

@media screen and (min-width: 402px) {
  .ham-drawer-container{
    width: unset;
    padding-left: 100px;
    margin-left: unset;
    margin-right: unset;
  }
}

@media screen and (min-width: 992px) {
  .header-position-fixed {
    padding: 0 98px;
  }
}
/*---------------------------------------------------
 footer
----------------------------------------------------*/
footer{
  background-color: #4A4A4A;
}

@media screen and (min-width: 992px) {
}

/*---------------------------------------------------
 order
----------------------------------------------------*/

.os-order-1 {
  order: 1 !important;
}

.os-order-2 {
  order: 2 !important;
}

.os-order-3 {
  order: 3 !important;
}

.os-order-4 {
  order: 4 !important;
}

.os-order-5 {
  order: 5 !important;
}

.os-order-6 {
  order: 6 !important;
}

.os-order-7 {
  order: 7 !important;
}

.os-order-8 {
  order: 8 !important;
}

.os-order-9 {
  order: 9 !important;
}

.os-order-10 {
  order: 10 !important;
}

.os-order-11 {
  order: 11 !important;
}

.os-order-12 {
  order: 12 !important;
}

@media screen and (min-width: 992px) {

  .os-order-lg-1 {
    order: 1 !important;
  }

  .os-order-lg-2 {
    order: 2 !important;
  }

  .os-order-lg-3 {
    order: 3 !important;
  }

  .os-order-lg-4 {
    order: 4 !important;
  }

  .os-order-lg-5 {
    order: 5 !important;
  }

  .os-order-lg-6 {
    order: 6 !important;
  }

  .os-order-lg-7 {
    order: 7 !important;
  }

  .os-order-lg-8 {
    order: 8 !important;
  }

  .os-order-lg-9 {
    order: 9 !important;
  }

  .os-order-lg-10 {
    order: 10 !important;
  }

  .os-order-lg-11 {
    order: 11 !important;
  }

  .os-order-lg-12 {
    order: 12 !important;
  }
}

@media (hover: hover) {
}

/*---------------------------------------------------
 404
----------------------------------------------------*/

@media screen and (min-width: 992px) {
}



/*-------------------------
breadcrumb
-------------------------*/
/*.breadcrumb li {*/
/*  position: relative;*/
/*}*/

/*.breadcrumb li > * {*/
/*  color: #777777 !important;*/
/*}*/

/*.breadcrumb li:not(:first-of-type) {*/
/*  padding-left: 8px;*/
/*}*/

/*.breadcrumb li:not(:first-of-type)::before {*/
/*  position: absolute;*/
/*  content: "";*/
/*  border-right: 0.094em solid #777;*/
/*  border-bottom: 0.094em solid #777;*/
/*  width: 0.45em;*/
/*  height: 0.45em;*/
/*  top: 1em;*/
/*  left: -7px;*/
/*  transform: translateY(-0.5em) rotate(-45deg);*/
/*}*/

/*------------------------------
 breadcrumb
------------------------------*/

.breadcrumb {
  padding: 0 30px;
  margin: 0 0 40px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.breadcrumb::-webkit-scrollbar {
  display: none;
}

.breadcrumb__item a {
  color: #B4B4B4!important;
  text-decoration: none;
}

.breadcrumb__item[aria-current="page"] {
  color: #B4B4B4!important;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: "＞";
  margin: 0 0.3em;
  color: #B4B4B4;
}

@media screen and (min-width: 992px) {
  .breadcrumb {
    padding: 0 98px;
  }
}