@charset "UTF-8";
/* ============================================ */
/* function
/* ============================================ */
/* ===== fontサイズ ===== */
/* ============================================ */
/* mixin
/* ============================================ */
/* ===== mediaquery ===== */
/* ============================================ */
/* header
/* ============================================ */
#header {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  height: 100px;
  padding: 0 230px 20px 45px;
  z-index: 100;
  transition: 0.3s;
}
#header .logo {
  width: 190px;
}
#header.is-scroll {
  height: 70px;
  background: #fff;
  padding-bottom: 10px;
}

@media screen and (max-width: 1400px) {
  #header {
    height: 80px;
    padding: 0 180px 0 45px;
  }
  #header.is-scroll {
    height: 70px;
  }
}
@media screen and (max-width: 1200px) {
  #header {
    align-items: center;
    padding: 0 0 0 30px;
  }
  #header .logo {
    width: 155px;
  }
  #header.is-scroll {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  #header {
    padding: 0 0 0 25px;
  }
}
@media screen and (max-width: 600px) {
  #header {
    padding: 0 0 0 15px;
  }
}
/* ===== g-nav ===== */
#g-nav {
  white-space: nowrap;
}
#g-nav .nav-list > .nav-item {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 0.5em;
  cursor: pointer;
}
#g-nav .nav-list > .nav-item .icon {
  width: 1em;
  fill: none;
  stroke: var(--color-text);
  stroke-linecap: round;
  stroke-width: 2;
}

@media screen and (min-width: 1201px) {
  #g-nav .nav-list {
    position: relative;
    display: flex;
    font-size: 0.9375rem;
    font-weight: 600;
    gap: 1.5em;
  }
  #g-nav .nav-list > .nav-item::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-primary);
    transform-origin: left center;
    transform: scaleX(0);
    transition: 0.3s;
  }
  #g-nav .nav-list > .nav-item.inquiry {
    display: none;
  }
  #g-nav .nav-list > .nav-item.is-open .child-box {
    visibility: visible;
    opacity: 1;
    transform: translate(0, 0);
  }
  #g-nav .nav-list .child-box {
    position: absolute;
    left: -30px;
    top: 100%;
    width: fit-content;
    padding: 2em 0 0;
    font-size: 0.8125rem;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transform: translate(0, -2em);
    transition: 0.3s;
  }
  #g-nav .nav-list .child-box .category-name {
    margin: 0 0 0.3em;
  }
  #g-nav .nav-list .child-box .frame {
    background: #fff;
    border-radius: 15px;
    padding: 1em 30px;
  }
  #g-nav .nav-list .child-box .sub-nav-list {
    line-height: 1.8;
  }
  #g-nav .nav-list .child-box .sub-nav-list .nav-item {
    transition: 0.3s;
  }
}
@media (hover: hover) {
  #g-nav .nav-list > .nav-item:hover::before {
    transform: scaleX(1);
  }
  #g-nav .nav-list .child-box .sub-nav-list .nav-item:hover {
    color: var(--color-primary);
  }
}
@media screen and (min-width: 1401px) {
  #g-nav .nav-list {
    gap: 2em;
  }
}
@media screen and (max-width: 1200px) {
  #g-nav {
    position: fixed;
    left: 0;
    bottom: 60px;
    background: #fff;
    padding: 35px 35px 50px;
    max-width: 260px;
    transform: scale(0, 1);
    transform-origin: left center;
    transition: transform 0.2s ease-out 0.1s;
  }
  #g-nav.is-open {
    transform: scale(1, 1);
    transition: transform 0.3s ease-out;
  }
  #g-nav.is-open::before {
    opacity: 1;
    transition: opacity 0.3s ease 0.5s;
  }
  #g-nav.is-open .nav-list {
    opacity: 1;
    transition: opacity 0.3s ease 0.5s;
  }
  #g-nav::before {
    content: "MENU";
    display: block;
    font-size: 2.5625rem;
    font-family: var(--fontfamily-en);
    font-weight: 700;
    line-height: 1;
    margin: 0 0 0.5em;
    opacity: 0;
    transition: opacity 0.1s ease-out;
  }
  #g-nav .nav-list {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
    margin: 0;
    opacity: 0;
    transition: opacity 0.1s ease;
  }
  #g-nav .nav-list > .nav-item {
    font-size: 0.875rem;
    font-weight: 600;
    flex-wrap: wrap;
  }
  #g-nav .nav-list > .nav-item.inquiry {
    display: none;
  }
  #g-nav .nav-list .child-box {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 0 0 1em;
  }
  #g-nav .nav-list .nav-item.is-open .child-box {
    max-height: 120px;
  }
}
/* ===== toggle-btn ===== */
@media screen and (min-width: 1201px) {
  #toggle-btn {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  #toggle-btn {
    position: fixed;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 180px;
    height: 60px;
    background: #fff;
    z-index: 99;
  }
  #toggle-btn .toggle-icon {
    position: relative;
    display: block;
    width: 35px;
    height: 14px;
  }
  #toggle-btn .toggle-icon .line {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    transform-origin: center;
    transition: 0.3s ease-out;
  }
  #toggle-btn .toggle-icon .line:nth-of-type(1) {
    top: 0;
  }
  #toggle-btn .toggle-icon .line:nth-of-type(2) {
    top: 50%;
    transform: translate(0, -50%);
  }
  #toggle-btn .toggle-icon .line:nth-of-type(3) {
    bottom: 0;
  }
  #toggle-btn .toggle-text {
    font-size: 1rem;
    font-weight: 600;
  }
  #toggle-btn.is-open .toggle-icon .line:nth-of-type(1) {
    top: 50%;
    transform: rotate(25deg) translate(0, -50%);
  }
  #toggle-btn.is-open .toggle-icon .line:nth-of-type(2) {
    opacity: 0;
  }
  #toggle-btn.is-open .toggle-icon .line:nth-of-type(3) {
    bottom: 50%;
    transform: rotate(-25deg) translate(0, 50%);
  }
}
@media screen and (max-width: 600px) {
  #toggle-btn {
    width: 140px;
  }
}
/* ===== inquiry-nav ===== */
.inquiry-nav {
  position: fixed;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2%;
  width: 170px;
  height: 100px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
  transition: 0.3s;
  z-index: 100;
}
.inquiry-nav .icon {
  width: 25px;
}

#header.is-scroll + .inquiry-nav {
  height: 70px;
}

@media (hover: hover) {
  .inquiry-nav:hover {
    background: var(--color-primary);
  }
}
@media screen and (max-width: 1400px) {
  .inquiry-nav {
    width: 140px;
  }
}
@media screen and (max-width: 1200px) {
  .inquiry-nav {
    right: 0;
    top: auto;
    bottom: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: calc(100% - 180px);
    height: 60px;
  }
  #header.is-scroll + .inquiry-nav {
    height: 60px;
  }
}
@media screen and (max-width: 600px) {
  .inquiry-nav {
    width: calc(100% - 140px);
  }
}
/*
@include mixin.mq-max('xl') {

  .inquiry-nav {
    width: 120px;
    font-size: function.rem(14);

    .icon {
      width: 20px;
    }
  }

}

@include mixin.mq-max('sm') {

  .inquiry-nav {
    width: 95px;
    font-size: function.rem(12);
  }

}
*/
/* ============================================ */
/* page-top
/* ============================================ */
#page-top {
  position: fixed;
  right: 30px;
  bottom: -1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 170px;
  aspect-ratio: 2/1;
  font-family: var(--fontfamily-en);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-primary);
  z-index: 98;
  border-radius: 85px 85px 0 0;
  opacity: 0;
  transition: opacity 0.3s;
  cursor: pointer;
}
#page-top::before {
  content: "";
  display: block;
  width: 0.8em;
  aspect-ratio: 1/1;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(-45deg) translate(-0.3em, 0.3em);
  transition: 0.3s;
}
#page-top::after {
  content: "page top";
}
#page-top.is-show {
  opacity: 1;
  pointer-events: auto;
}
#page-top.is-stop {
  position: absolute;
}
#page-top .icon {
  width: 1em;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-width: 2;
  transform: rotate(180deg);
}

@media (hover: hover) {
  #page-top:hover::before {
    transform: rotate(-45deg) translate(0, 0);
  }
}
@media screen and (max-width: 1200px) {
  #page-top {
    bottom: 60px;
  }
  #page-top.is-stop {
    bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  #page-top {
    right: 20px;
    width: 120px;
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 600px) {
  #page-top {
    right: 15px;
    width: 100px;
    font-size: 0.8125rem;
  }
}
/* ============================================ */
/* footer
/* ============================================ */
#footer {
  position: relative;
  color: #fff;
  background: var(--color-bg-black);
  padding: 40px 0;
}
#footer .wrap {
  width: 90%;
  max-width: 1800px;
}
#footer .flex-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#footer .logo {
  width: 230px;
}
#footer .nav .nav-list {
  display: flex;
  align-items: flex-start;
  gap: 1.2em;
  font-size: 0.9375rem;
}
#footer .nav .nav-list a {
  position: relative;
}
#footer .nav .nav-list a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: 0.3s;
}
#footer .nav .nav-list > .nav-item {
  cursor: pointer;
}
#footer .nav .nav-list > .nav-item .icon {
  display: none;
}
#footer .nav .nav-list .child-box {
  font-size: 0.8125rem;
  line-height: 1.8;
}
#footer .nav .nav-list .child-box .sub-nav-list {
  position: absolute;
}
#footer .info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.875rem;
  margin: 100px 0 0;
}
#footer .info .fax,
#footer .info .tel {
  display: flex;
  align-items: center;
  gap: 10px;
}
#footer .info .fax .icon,
#footer .info .tel .icon {
  width: 32px;
  opacity: 0.8;
}
#footer .info .fax .number,
#footer .info .tel .number {
  width: 165px;
}
#footer .info .link {
  position: absolute;
  right: 0;
  top: 0;
}
#footer .info .link a {
  position: relative;
}
#footer .info .link a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: 0.3s;
}
#footer .copyright {
  font-size: 0.8125rem;
  text-align: center;
  margin: 30px 0 0;
}

@media (hover: hover) {
  #footer .nav .nav-list a:hover::before {
    transform: scaleX(1);
  }
  #footer .info .link {
    position: absolute;
    right: 0;
    top: 0;
  }
  #footer .info .link a:hover::before {
    transform: scaleX(1);
  }
}
@media screen and (max-width: 1200px) {
  #footer {
    padding: 40px 0 120px;
  }
  #footer .flex-wrap {
    flex-direction: column;
    align-items: center;
  }
  #footer .nav {
    display: none;
  }
  #footer .info {
    flex-direction: column;
    gap: 5px;
    margin: 20px 0 0;
  }
  #footer .info .link {
    position: relative;
    inset: 0;
  }
}
@media screen and (max-width: 768px) {
  #footer .logo {
    width: 180px;
  }
  #footer .info {
    font-size: 0.8125rem;
  }
  #footer .copyright {
    font-size: 0.75rem;
    margin: 20px 0 0;
  }
}
/* ============================================ */
/* cta
/* ============================================ */
#until {
  position: relative;
  background: var(--color-primary);
  padding: 0 0 70px;
  overflow: hidden;
}
#until .until-title {
  display: flex;
  align-items: last baseline;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
  margin: 0 0 30px;
}
#until .until-title .en {
  font-size: 4.125rem;
  font-weight: 900;
  line-height: 0.6;
}
#until .until-title .ja {
  font-size: 0.9375rem;
  border-left: solid 2px currentColor;
  padding: 0 0 0 1em;
  margin: 0 0 0 1em;
}
#until .step {
  display: flex;
  gap: 60px;
  color: #fff;
  width: fit-content;
  margin-inline: auto;
}
#until .step .step-item {
  position: relative;
  width: 175px;
}
#until .step .step-item + .step-item .title::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 50%;
  display: block;
  width: 25px;
  aspect-ratio: 1/1;
  background: url(../img/common/icon_double-cursor.svg) no-repeat center;
  transform: translate(0, -50%);
}
#until .step .step-item .title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  border: solid 1px currentColor;
  border-radius: 50%;
  width: 100%;
  aspect-ratio: 1/1;
}
#until .step .step-item .title.indent {
  text-indent: 1em;
}
#until .step .step-item .text {
  line-height: 1.5;
  margin: 1em 0 0;
}
#until .btn {
  margin: 60px auto 0;
}

@media screen and (max-width: 1400px) {
  #until .step {
    gap: 45px;
  }
  #until .step .step-item {
    width: 150px;
  }
  #until .step .step-item + .step-item .title::before {
    left: -35px;
  }
}
@media screen and (max-width: 1200px) {
  #until .until-title {
    flex-direction: column;
    align-items: center;
  }
  #until .until-title .en {
    font-size: 3.125rem;
  }
  #until .until-title .ja {
    padding: 0;
    border-left: none;
    margin: 1.5em 0 0;
  }
  #until .step {
    flex-direction: column;
    width: 100%;
    max-width: 460px;
  }
  #until .step .step-item {
    width: 100%;
  }
  #until .step .step-item + .step-item .title::before {
    left: 50%;
    top: -40px;
    transform: translate(-50%, 0) rotate(90deg);
  }
  #until .step .step-item .title {
    width: 100%;
    aspect-ratio: auto;
    padding: 1em;
    border-radius: 15px;
  }
  #until .step .step-item .title.indent {
    text-indent: 0;
  }
}
@media screen and (max-width: 768px) {
  #until .until-title .en {
    font-size: 2.5rem;
  }
  #until .btn {
    margin: 60px auto 0;
  }
}
@media screen and (max-width: 600px) {
  #until .until-title .en {
    font-size: 1.75rem;
  }
}

/*# sourceMappingURL=layout.css.map */
