@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-sans-serif:"DNPShueiGoGinStd-B","Manrope", sans-serif;
  --bs-font-serif: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  --bs-emphasis-color: #333;
  --bs-body-bg: #fff;
  --bs-body-color: #333 !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);
}

/*---------------------------------------------------
リセットCSSここから
----------------------------------------------------*/
header a,
main a,
footer a {
  color: #333 !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;
}

/*---------------------------------------------------
  common
----------------------------------------------------*/
html,
body {
  min-height: 100%;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

footer {
  margin-top: auto;
}

.l-content {
  margin-inline: auto;
}

.l-inner {
  padding-left: 12px;
  padding-right: 12px;
}

.is-w-833 {
  max-width: 833px;
  width: 100%;
}

.is-w-834 {
  max-width: 834px;
  width: 100%;
}

.is-w-965 {
  max-width: 965px;
  width: 100%;
}

.is-w-1042 {
  max-width: 1042px;
  width: 100%;
}

.is-w-1044 {
  max-width: 1044px;
  width: 100%;
}

.is-w-1045 {
  max-width: 1045px;
  width: 100%;
}

.is-w-1150 {
  max-width: 1150px;
  width: 100%;
}

.is-w-1257 {
  max-width: 1257px;
  width: 100%;
}

.is-w-1255 {
  max-width: 1256px;
  width: 100%;
  margin-inline: auto;
}

.is-w-1256 {
  max-width: 1256px;
  width: 100%;
}

.is-w-1360 {
  max-width: 1360px;
  width: 100%;
}

.is-w-full {
  width: 100%;
}

.pc-only {
  display: none;
}

@media screen and (min-width: 992px) {
  .pc-only {
    display: block;
  }
}

.sp-only {
  display: block;
}

@media screen and (min-width: 992px) {
  .sp-only {
    display: none;
  }
}


/*---------------------------------------------------
 header
----------------------------------------------------*/
.header-wrapper{
  height: 72px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  z-index: 9999;
  position: fixed;
  top: 0;
  width: 100%;
}

.header-wrapper::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 245, 245, 0.6);
  backdrop-filter: blur(24px) saturate(120%);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  pointer-events: none;
  z-index: 0;
}

.header-logo{
  max-width: 71px;
  display: block;
  width: 100%;
  height: auto;
}

.header-inner{
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.gap-y-32{
  gap: 0 32px;
}

.px-32{
  padding-left: 32px;
  padding-right: 32px;
}

.ham-box {
  width: 44px;
  height: 44px;
  cursor: pointer;
  background-image: url("../images/common/header-bg-gradient.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 8px;
  position: relative;
  z-index: 9900;
}

.ham-bar,
.ham-bar::before,
.ham-bar::after {
  background-color: #fff;
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  opacity: 1;
}

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

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

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

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

.is-active .ham-bar::before {
  width: 30px;
  transform: translate(-5px, 8px) rotate(45deg);
  transition: 0.4s;
}

.is-active .ham-bar::after {
  width: 30px;
  transform: translate(-5px, -8px) rotate(-45deg);
  transition: 0.4s;
}

.ham-drawer {
  top: 0;
  left: 0;
  width: 100vw;
  opacity: 0;
  pointer-events: none;
  z-index: 9800;
  transition: opacity .4s ease;
  overflow: hidden;
}
.ham-drawer.is-active{
  opacity: 1;
  pointer-events: auto;
}

.ham-drawer-wrapper {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100svh;
  padding-top: 70px;
  padding-bottom: 20px;
  overflow-y: auto;
  scrollbar-gutter: stable;
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 1;
  background-color: #F5F5F5;
}

.ham-drawer.is-active  .ham-drawer-wrapper {
  opacity: 1;
}

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

.is-fixed {
  overflow: hidden;
}

.header-nav-item {
  padding: 30px 24px;
}

.ham-nav-item-service-wrapper{
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 8px;
}

.ham-nav-item-service{
  display: inline-block;
  padding: 16px;
  border-radius: 50rem;
  background-color: #fff;
  color: var(--color-main-orange)!important;
}

.ham-nav-item-cta{
  padding: 16px;
  cursor: pointer;
}

.tel{
  overflow-wrap: anywhere;
}

.tel ruby rt{
  font-size: 10px;
  font-weight: bold;
}

.square-btn-white {
  width: 64px;
  height: auto;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 8.5%;
  position: relative;
}

.square-btn-white::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-35%, -50%);
  height: calc(100% * 15 / 94);
  width: calc(100% * 15 / 94);
  background: var(--color-main-orange);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.square-btn-ham-drawer{
  width: 34px;
}

.gx-12{
  --bs-gutter-x: 12px;
}


@media screen and (min-width: 992px) {
  .header-wrapper{
    height: 88px;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
  }

  .header-wrapper::before{
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
  }

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

  .header-inner{
    padding: 0 40px;
  }

  .header-nav-contact{
    height: 55px;
    cursor: pointer;
    padding-left: 12px;
    padding-right: 18px;
    gap: 0 8px;
  }

  .has-dropdown {
    position: relative;
  }

  .dropdown-panel {
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 212px;
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
            height .3s ease,
            opacity .3s ease;
    background-color: rgba(234, 99, 0, 0.6);
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
  }

  .has-dropdown:hover .dropdown-panel,
  .has-dropdown:focus-within .dropdown-panel,
  .has-dropdown.is-open .dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header-nav-item {
    padding: 30px;
  }

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

  .ham-bar,
  .ham-bar::before,
  .ham-bar::after {
    width: 24px;
  }

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

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

  .is-active .ham-bar::before {
    width: 36px;
    transform: translate(-6px, 10px) rotate(45deg);
  }

  .is-active .ham-bar::after {
    width: 36px;
    transform: translate(-6px, -10px) rotate(-45deg);
  }

  .ham-drawer-wrapper {
    padding-top: 160px;
  }

  .ham-nav-item-service-wrapper{
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 16px 0;
  }

  .ham-nav-item-service{
    padding: unset;
    border-radius: 0;
    background-color: unset;
    display: flex;
    align-items: center;
    gap: 0 5px;
  }

  .ham-nav-item-service::before{
    content: "";
    width: 32px;
    height: 1px;
    background-color: var(--color-main-orange);
  }

  .ham-nav-item-cta{
    padding: 20px 28px;
  }

  .tel ruby rt{
    font-size: 14px;
  }

  .square-btn-ham-drawer{
    width: 45px;
  }

  .ham-nav-item-cta-wrapper{
    max-width: 440px;
  }

}

@media screen and (min-width: 1200px) {
  .gap-y-xl-60{
    gap: 0 60px;
  }
}


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

.footer-bg{
  background-image: url("../images/common/bg-gradient.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 280px;
  padding-bottom: 32px;
}

.footer-copy {
  width: 100%;
  max-width: 320px;
}

.footer-logo{
  max-width: 110px;
}

.footer-nav-wrapper{
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.footer-nav-desc {
  gap: 0 5px;
}

.footer-nav-desc::before{
  content: "";
  width: 32px;
  height: 1px;
  background-color: #fff;
}

.color-white-60 {
  color: rgba(255, 255, 255, 0.6);
}

@media screen and (min-width: 567px) {
  .footer-bg{
    padding-top: 220px;
  }
}

@media screen and (min-width: 992px) {
  .footer-bg {
    padding-top: 256px;
    padding-bottom: 60px;
    border-top-left-radius: 128px;
    border-top-right-radius: 128px;
  }

  .footer-copy {
    max-width: 616px;
  }

  .footer-logo{
    max-width: unset;
  }

  .footer-nav-wrapper{
    border-top: none;
    border-bottom: none;
  }

  .footer-nav-wrapper > .row {
    gap: 0 3rem;
  }
}

/*---------------------------------------------------
 contact-banner
----------------------------------------------------*/

.contact-banner{
  height: 210px;
}

.contact-banner-bg {
  background-image: url(../images/contact-banner/contact-bnr-bg-sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: calc(100% - 24px);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  transition: 0.4s;
}

.contact-banner-bg:hover{
  filter: brightness(0.7);
}

.contact-banner-inner {
  width: 100%;
  padding: 32px 24px;
}

.text-white-60{
  color: rgba(255, 255, 255, 0.6);
}

.fw-ex-bold{
  font-weight: 800;
}

.rounded-32 {
  border-radius: 32px;
}

.square-btn {
  width: 64px;
  aspect-ratio: 1;
  background: var(--color-main-orange);
  border-radius: 8.5%;
  position: relative;
}

.square-btn::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-35%, -50%);
  height: calc(100% * 15 / 94);
  width: calc(100% * 15 / 94);
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.square-btn-contact-bnr{
  width: 64px;
}

.square-btn-news-bnr{
  width: 45px;
}

.square-btn-service-bnr {
  width: 34px;
  height: 34px;
}

.square-btn-sub-service-bnr {
  width: 45px;
  height: 45px;
}

@media screen and (min-width: 576px) {
  .contact-banner-bg {
    width: calc(100% - 48px);
  }
  .contact-banner-inner {
    width: 70%;
  }
}


@media screen and (min-width: 992px) {
  .contact-banner{
    height: 180px;
  }

  .contact-banner-bg {
    background-image: url(../images/contact-banner/contact-bnr-bg-pc.jpg);
    width: calc(100% - 96px);
    max-width: 1044px;
  }

  .contact-banner-inner {
    width: 100%;
    padding: 96px 105px;
  }

  .rounded-lg-20 {
    border-radius: 20px;
  }

  .square-btn-contact-bnr{
    width: 94px;
  }
  .square-btn-news-bnr{
    width: 45px;
  }
}

@media screen and (min-width: 1200px) {
  .contact-banner-bg {
    width: 72.5%;
  }
}


/*---------------------------------------------------
 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) {
}


/*------------------------------
 common-heading
------------------------------*/

.common-heading {
  padding-top: 178px;
  padding-bottom: 75px;
  background-color: #F5F5F5;
}

.common-heading > .container-fluid{
  padding-left: 12px;
}

.common-breadcrumb{
  max-width: 82%;
  min-width: 74%;
  min-height: 50px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 18px 0;
}

.common-breadcrumb::before{
  content: "";
  background-image: url("../images/common/breadcrumb-bg-shape-gr.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: auto;
  height: 100%;
  aspect-ratio: 92 / 93;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(0%);
}

.breadcrumb {
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin-left: 46px;
  margin-right: 12px;
  gap: 12px 0;
}

.breadcrumb::-webkit-scrollbar {
  display: none;
}

.breadcrumb li {
  position: relative;
  padding: 0;
}

.breadcrumb li:first-of-type {
  padding-left: 12px;
}

.breadcrumb li:not(:last-of-type) > * {
  color: var(--color-main-black) !important;
}

.breadcrumb li:last-of-type > * {
  color: var(--color-main-orange) !important;
}

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

.breadcrumb li:not(:first-of-type)::before {
  content: "";
  height: 11.5px;
  width: 11.5px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-45%);
}

.breadcrumb li:not(:first-of-type):not(:last-of-type)::before{
  background: var(--color-main-black);
}

.breadcrumb li:last-of-type::before{
  background: var(--color-main-orange);
}

@media screen and (min-width: 992px) {
  .common-heading {
    padding-top: 210px;
    padding-bottom: 122px;
  }

  .common-heading > .container-fluid{
    padding-left: 90px;
  }

  .common-breadcrumb{
    min-width: 37%;
    height: 93px;
  }

  .common-breadcrumb::before{
    height: 93px;
  }

  .breadcrumb{
    margin-left: 100px;
  }
}

.a-heading {
  color: var(--color-main-orange);
  display: grid;
  gap: 12px;
  letter-spacing: 0.1em;
}

.a-heading-en {
    color: rgba(234, 99, 0, 0.6);
}

/*---------------------------------------------------
 ボタン
----------------------------------------------------*/

.btn-custom-orange {
  background-color: var(--color-main-orange);
  color: var(--color-main-white);
  border: none;
  border-radius: 8px;
  min-height: 55px;
}

.btn-custom-orange:hover {
  background-color: var(--color-main-orange);
  color: var(--color-main-white);
}

.btn-custom-orange .btn-icon-section {
  align-self: stretch;
}

.btn-custom-orange svg {
  display: block;
}

.btn-icon-section {
  padding: 0 22px;
}

.btn-text {
  padding: 20px 36px 20px 37px;
}

.btn-text.btn-news-text {
  padding: 20px 50px;
}

/*---------------------------------------------------
 フェードアニメ
----------------------------------------------------*/
.reveal-item {
  opacity: 0;
  transition-property: opacity, transform, filter, -webkit-filter;
  transition-duration: var(--dur, 0.8s);
  transition-timing-function: var(--ease, ease-out);
  transition-delay: calc(var(--delay, 0.2s) + (var(--stagger, 0.2s) * var(--i, 0)));
  will-change: opacity, transform, filter, -webkit-filter;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.reveal-item.is-in {
  opacity: 1;
  transform: none;
  filter: none;
  -webkit-filter: none;
}

/* スライドアップ+ブラー+フェード */
.reveal-up {
  transform: translateY(var(--up, 1rem));
  filter: blur(var(--blur, 0.2em));
  -webkit-filter: blur(var(--blur, 0.2em));
}

/* フェード単体 */
.reveal-fade {
  transform: none;
}