/*
* main.css
*
*/
/* ------------------------
  reset
------------------------ */
html,
body {
  height: 100%;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}

pre,
textarea {
  overflow: auto;
}

[hidden],
template {
  display: none;
}

details,
main,
summary {
  display: block;
}

input[type=number] {
  width: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

progress {
  display: inline-block;
}

small {
  font-size: 75%;
}

sub,
sup {
  position: relative;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

textarea {
  resize: vertical;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

audio:not([controls]) {
  display: none;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

img[src$=".svg"] {
  width: 100%;
}

button,
input,
select,
textarea {
  min-height: 1.5em;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

input {
  line-height: normal;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  border-style: none;
  cursor: pointer;
  background-color: transparent;

  -webkit-appearance: button;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace;
}

ol,
ul {
  list-style: none;
}

select {
     -moz-appearance: none;
  -webkit-appearance: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

fieldset {
  border: 0;
}

/* ------------------------
  Base Settings
------------------------ */
html {
  letter-spacing: 0.1em;
  font-size: 16px;
}

html.is-hamburgerOpen {
  overflow: hidden;
}

body {
  background-color: #fff;
  word-wrap: break-word;
  color: #1a1a1a;
  font-family: "Shippori Mincho B1", serif;
  line-height: 1.6875;

  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

.is-hamburgerOpen body {
  overflow: hidden;
}

main {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: #1a1a1a;
}

a:visited {
  color: #1a1a1a;
}

a:hover {
  text-decoration: none;
  color: #1a1a1a;
}

a:active {
  text-decoration: none;
  color: #1a1a1a;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    cursor: text;
    text-decoration: none;
  }
}

a[href^="tel:"]:hover {
  color: #1a1a1a;
}

body {
  opacity: 0;
}

html.is-loaded body {
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.39, 0.575, 0.565, 1);
}

img {
  max-width: 100%;
  height: auto;
}

svg {
  max-width: 100%;
  height: 100%;
}

.br {
  display: block;
  width: 1.9em;
  height: 1.9em;
}

@-webkit-keyframes dotsLineUp {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  51% {
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}

@keyframes dotsLineUp {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  51% {
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}

@-webkit-keyframes dotsLineDown {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  51% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}

@keyframes dotsLineDown {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  51% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}

/* ------------------------
  btn
------------------------ */
.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid #000;
  width: clamp(106px,13.88889vw, 200px);
  height: clamp(28px,3.75vw, 54px);
  transition: background-color 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
  font-size: clamp(7px,0.97223vw, 14px);
}

@media screen and (max-width: 768px) {
  .c-btn {
    width: 53.33333vw;
    height: 14.4vw;
    font-size: 3.73333vw;
  }
}

.c-btn.-var {
  width: clamp(28px,3.75vw, 54px);
  height: clamp(106px,13.88889vw, 200px);

  -webkit-writing-mode: vertical-rl;

      -ms-writing-mode: tb-rl;

          writing-mode: vertical-rl;
}

@media screen and (max-width: 768px) {
  .c-btn.-var {
    width: 53.33333vw;
    height: 14.4vw;
    font-size: 3.73333vw;

    -webkit-writing-mode: horizontal-tb;

        -ms-writing-mode: lr-tb;

            writing-mode: horizontal-tb;
  }
}

.c-btn::before,
.c-btn::after {
  content: "";
  position: absolute;
  margin: auto;
  width: clamp(12px,1.66667vw, 24px);
  height: 1px;
  transition: background-color 0.3s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.3s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform-origin: right;
          transform-origin: right;
  background-color: #000;

  inset: 0 clamp(-9px,-0.625vw, -5px) 0 auto;
}

@media screen and (max-width: 768px) {
  .c-btn::before,
  .c-btn::after {
    width: 6.4vw;

    inset: 0 -2.4vw 0 auto;
  }
}

.c-btn.-var::before,
.c-btn.-var::after {
  width: 1px;
  height: clamp(12px,1.66667vw, 24px);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;

  inset: auto 0 clamp(-9px,-0.625vw, -5px) 0;
}

@media screen and (max-width: 768px) {
  .c-btn.-var::before,
  .c-btn.-var::after {
    width: 6.4vw;
    height: 1px;

    inset: 0 -2.4vw 0 auto;
  }
}

.c-btn.-left::before,
.c-btn.-left::after {
  margin: auto;
  width: clamp(12px,1.66667vw, 24px);
  height: 1px;
  -webkit-transform-origin: left;
          transform-origin: left;

  inset: 0 auto 0 clamp(-9px,-0.625vw, -5px);
}

@media screen and (max-width: 768px) {
  .c-btn.-left::before,
  .c-btn.-left::after {
    width: 6.4vw;

    inset: 0 auto 0 -2.4vw;
  }
}

.c-btn::after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.c-btn.-var::after {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
}

.c-btn.-left::after {
  -webkit-transform-origin: right;
          transform-origin: right;
}

.c-btn:hover {
  transition: background-color 0.3s cubic-bezier(0.39, 0.575, 0.565, 1), color 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  background-color: #0b3126;
  color: #fff;
}

.c-btn:hover::before {
  transition: background-color 0.25s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.25s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  background-color: #fff;
}

.c-btn:hover::after {
  transition: background-color 0.25s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.25s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-delay: 0.25s;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  background-color: #fff;
}

.c-btn.-var:hover::before {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.c-btn.-var:hover::after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.c-btn_arw {
  position: relative;
  border: 1px solid #ced4d2;
  border-radius: 50%;
  width: clamp(30px,3.95834vw, 57px);
  height: clamp(30px,3.95834vw, 57px);
  transition: border-color 0.15s cubic-bezier(0.39, 0.575, 0.565, 1), opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (max-width: 768px) {
  .c-btn_arw {
    width: 13.33333vw;
    height: 13.33333vw;
  }
}

.c-btn_arw.swiper-button-disabled {
  opacity: 0.5;
  transition: opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1);
  pointer-events: none;
}

.c-btn_arw > i {
  display: block;
  position: absolute;
  margin: auto;
  width: clamp(25px,3.33334vw, 48px);
  height: 1px;
  transition: -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  inset: 0;
}

@media screen and (max-width: 768px) {
  .c-btn_arw > i {
    width: 12.53333vw;
  }
}

.c-btn_arw > i::before {
  content: "";
  position: absolute;
  margin: auto;
  width: clamp(5px,0.69445vw, 10px);
  height: 100%;
  transition: background-color 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: left;
          transform-origin: left;
  background-color: #ced4d2;

  inset: 0 auto 0 0;
}

@media screen and (max-width: 768px) {
  .c-btn_arw > i::before {
    width: 2.66667vw;
  }
}

.c-btn_arw > i::after {
  content: "";
  position: absolute;
  margin: auto;
  width: 100%;
  height: 100%;
  transition: background-color 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
  background-color: #ced4d2;

  inset: 0;
}

@media (min-width: 768px) {
  .c-btn_arw:hover {
    border-color: #000;
    transition: border-color 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
  }
}

.c-btn_arw.-right > i {
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

@media (min-width: 768px) {
  .c-btn_arw.-right:hover > i {
    transition: -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transform: translateX(40%);
            transform: translateX(40%);
  }
}

.c-btn_arw.-right:hover > i::before,
.c-btn_arw.-right:hover > i::after {
  transition: background-color 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
  background-color: #000;
}

.c-btn_arw.-left i {
  -webkit-transform: translateX(-50%) rotateY(180deg);
          transform: translateX(-50%) rotateY(180deg);
}

@media (min-width: 768px) {
  .c-btn_arw.-left:hover > i {
    transition: -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transform: translateX(-40%) rotateY(180deg);
            transform: translateX(-40%) rotateY(180deg);
  }
}

.c-btn_arw.-left:hover > i::before,
.c-btn_arw.-left:hover > i::after {
  transition: background-color 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
  background-color: #000;
}

.c-btn_circle {
  position: absolute;
  margin: auto;
  border: 1px solid #fff;
  border-radius: 50%;
  width: clamp(13px,1.80556vw, 26px);
  height: clamp(13px,1.80556vw, 26px);

  inset: 0 clamp(7px,0.97223vw, 14px) 0 auto;
}

@media screen and (max-width: 768px) {
  .c-btn_circle {
    width: 6.93333vw;
    height: 6.93333vw;
  }
}

.c-btn_circle::before,
.c-btn_circle::after {
  content: "";
  position: absolute;
  z-index: 1;
  margin: auto;
  width: clamp(12px,1.66667vw, 24px);
  height: 1px;
  -webkit-transform: translateX(71%);
          transform: translateX(71%);
  background-color: #fff;

  inset: 0 auto 0 0;
}

@media screen and (max-width: 768px) {
  .c-btn_circle::before,
  .c-btn_circle::after {
    width: 6.4vw;
  }
}

.c-btn_circle::before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.c-btn_circle::after {
  -webkit-transform-origin: right;
          transform-origin: right;
}

.c-btn_circle.-left {
  border-color: #d2d7d6;
  width: clamp(18px,2.43056vw, 35px);
  height: clamp(18px,2.43056vw, 35px);

  inset: 0 auto 0 clamp(-21px,-1.45833vw, -12px);
}

@media screen and (max-width: 768px) {
  .c-btn_circle.-left {
    width: 9.33333vw;
    height: 9.33333vw;

    inset: 0 auto 0 -5.6vw;
  }
}

.c-btn_circle.-left::before {
  width: clamp(17px,2.22223vw, 32px);
  -webkit-transform: translateX(-79%) scaleX(0);
          transform: translateX(-79%) scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  background-color: #0b3126;
}

@media screen and (max-width: 768px) {
  .c-btn_circle.-left::before {
    width: 8.53333vw;
  }
}

.c-btn_circle.-left::after {
  width: clamp(17px,2.22223vw, 32px);
  -webkit-transform: translateX(-79%);
          transform: translateX(-79%);
  -webkit-transform-origin: right;
          transform-origin: right;
  background-color: #0b3126;
}

@media screen and (max-width: 768px) {
  .c-btn_circle.-left::after {
    width: 8.53333vw;
  }
}

.c-btn_circle:hover {
  background-color: rgba(206, 212, 210, 0.2);
}

.c-btn_circle:hover::before {
  transition: -webkit-transform 0.15s 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.15s 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.15s 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.15s 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.c-btn_circle:hover::after {
  transition: -webkit-transform 0.15s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: transform 0.15s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: transform 0.15s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.15s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.c-btn_circle:hover.-left::before {
  transition: -webkit-transform 0.15s 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.15s 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.15s 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.15s 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transform: translateX(-79%) scaleX(1);
          transform: translateX(-79%) scaleX(1);
}

.c-btn_circle:hover.-left::after {
  transition: -webkit-transform 0.15s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: transform 0.15s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: transform 0.15s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.15s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transform: translateX(-79%) scaleX(0);
          transform: translateX(-79%) scaleX(0);
}

.c-btn_circle.-black {
  border-color: #d3d9d7;
}

.c-btn_circle.-black::before,
.c-btn_circle.-black::after {
  background-color: #0b3126;
}

/* ------------------------
title
------------------------ */
.c-title {
  display: inline-block;
  position: relative;
  font-size: clamp(21px,2.77778vw, 40px);
  font-weight: 600;

  -webkit-writing-mode: vertical-rl;

      -ms-writing-mode: tb-rl;

          writing-mode: vertical-rl;
}

@media screen and (max-width: 768px) {
  .c-title {
    font-size: 10.66667vw;

    -webkit-writing-mode: horizontal-tb;

        -ms-writing-mode: lr-tb;

            writing-mode: horizontal-tb;
  }
}

.c-title::after {
  content: "";
  position: absolute;
  margin: auto;
  width: 1px;
  height: clamp(29px,3.88889vw, 56px);
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  background-color: #000;

  inset: auto 0 clamp(-74px,-5.13888vw, -40px) 0;
}

@media screen and (max-width: 768px) {
  .c-title::after {
    width: 14.93333vw;
    height: 1px;

    inset: 0 -19.73333vw 0 auto;
  }
}

.is-active .c-title::after {
  transition: -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 1s;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* ------------------------
  utilities Classes
------------------------ */
.u-hidden {
  display: none !important;
  visibility: hidden;
}

.u-hidden-lg {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-hidden-lg {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .u-hidden-sm {
    display: none;
  }
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.u-f-braces {
  margin-left: -0.5em;
}

.u-fs-var {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

.u-fs-ver {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

.u-fs-ver-num {
  -webkit-text-orientation: upright;
          text-orientation: upright;
}

.l-inner {
  margin-right: auto;
  margin-left: auto;
  padding: 0 clamp(53px,6.94445vw, 100px);
  max-width: 1440px;
}

@media screen and (max-width: 768px) {
  .l-inner {
    padding: 0 7.2vw;
    max-width: none;
  }
}

/*
* _header.scss
*
*/
.p-header {
  opacity: 1;
  
}

.p-header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  height: clamp(53px,6.94445vw, 100px);
}

@media screen and (max-width: 768px) {
  .p-header_inner {
    height: 21.33333vw;
  }
}

.p-header_logo {
  margin-left: clamp(5px,0.69445vw, 10px);
  width: clamp(75px,9.86112vw, 142px);
  height: clamp(27px,3.61112vw, 52px);
}

@media screen and (max-width: 768px) {
  .p-header_logo {
    margin-left: 0;
    width: 29.86667vw;
    height: 10.66667vw;
  }
}

.p-header_logo svg {
  fill: #003126;
}

.p-header_hamburger {
  display: none;
}

@media screen and (max-width: 768px) {
  .p-header_hamburger {
    display: block;
    position: relative;
    width: 8.4vw;
    height: 4.8vw;
    position: fixed;
    right: 28px;
    z-index: 10000;
  }
}

.p-header_hamburger > i {
  position: absolute;
  margin: auto;
  width: 100%;
  height: 2px;
  transition: opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.19s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.19s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: transform 0.19s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.19s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-color: #000;
}

.p-header_hamburger > i:nth-of-type(1) {
  inset: 0 0 auto 0;
}

.p-header_hamburger > i:nth-of-type(2) {
  inset: 0 0 0 0;
}

.p-header_hamburger > i:nth-of-type(3) {
  inset: auto 0 0 0;
}

.is-hamburgerOpen .p-header_hamburger > i:nth-of-type(1) {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.is-hamburgerOpen .p-header_hamburger > i:nth-of-type(2) {
  opacity: 0;
}

.is-hamburgerOpen .p-header_hamburger > i:nth-of-type(3) {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.p-header_content {
  display: flex;
}

@media screen and (max-width: 768px) {
  .p-header_content {
    opacity: 0;
    flex-direction: column;
    position: fixed;
    z-index: 100;
    padding: 0 7.2vw;
    transition: opacity 0.3s 0.1s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.29s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: opacity 0.3s 0.1s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.29s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: opacity 0.3s 0.1s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.29s cubic-bezier(0.455, 0.03, 0.515, 0.955), -webkit-transform 0.29s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -webkit-transform: translateX(5%);
            transform: translateX(5%);
    background-color: #fff;
    pointer-events: none;

    inset: 21.33333vw 0 0 0;
  }
}

@media screen and (max-width: 768px) {
  .is-hamburgerOpen .p-header_content {
    opacity: 1;
    transition: opacity 0.16s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.29s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.16s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.29s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.16s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.29s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.29s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transform: translateX(0);
            transform: translateX(0);
    pointer-events: auto;
  }
}

@media screen and (max-width: 768px) {
  .p-header_content::after {
    content: "";
    opacity: 0.05;
    position: absolute;
    top: 53.33333vw;
    left: -24vw;
    width: 90.66667vw;
    height: 98.66667vw;
    background-image: url(/assets/img/common/noren.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
  }
}

.p-header_list {
  display: flex;
}

@media screen and (max-width: 768px) {
  .p-header_list {
    flex-direction: column;
  }
}

.p-header_item {
  opacity: 1;
}

.p-header_item + .p-header_item {
  margin-left: clamp(24px,3.19445vw, 46px);
}

@media screen and (max-width: 768px) {
  .p-header_item + .p-header_item {
    margin-left: 0;
  }
}

.p-header_sns .p-header_item {
  width: clamp(16px,2.08334vw, 30px);
}

@media screen and (max-width: 768px) {
  .p-header_sns .p-header_item {
    width: 10.66667vw;
    height: 10.66667vw;
  }
}

.p-header_sns .p-header_item + .p-header_item {
  margin-left: clamp(8px,1.11112vw, 16px);
}

@media screen and (max-width: 768px) {
  .p-header_sns .p-header_item + .p-header_item {
    margin-left: 5.33333vw;
  }
}

.p-header_link {
  position: relative;
  letter-spacing: 0.02em;
  font-size: clamp(7px,0.97223vw, 14px);
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .p-header_link {
    display: block;
    padding: 5.33333vw 0;
    width: 100%;
    height: 100%;
    font-size: 4.26667vw;
  }
}

@media screen and (max-width: 768px) {
  .p-header_sns .p-header_link {
    padding: 0;
  }
}

.p-header_sns .p-header_link img {
  width: 100%;
}

.p-header_link::before {
  content: "";
  position: absolute;
  margin: auto;
  width: 1px;
  height: clamp(21px,2.77778vw, 40px);
  transition: -webkit-transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transform: translateY(100%) scaleY(0);
          transform: translateY(100%) scaleY(0);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  background-color: #000;

  inset: auto 0 clamp(-7px,-0.48611vw, -4px);
}

.p-header_link::after {
  content: "";
  position: absolute;
  margin: auto;

  inset: clamp(-10px,-0.69444vw, -6px);
}

@media screen and (min-width: 769px) {
  .p-header_link.-current:not(.-sns)::before,
  .p-header_link:hover:not(.-sns)::before {
    transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transform: translateY(100%) scaleY(1);
            transform: translateY(100%) scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}

.p-header_sns {
  display: flex;
  margin-left: clamp(22px,2.91667vw, 42px);
}

@media screen and (max-width: 768px) {
  .p-header_sns {
    margin-top: 8vw;
    margin-left: 0;
  }
}

.p-header_sns a {
  transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (min-width: 769px) {
  .p-header_sns a:hover {
    opacity: 0.6;
    transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
  }
}

/*
* _footer.scss
*
*/
.p-footer {
  margin-top: clamp(58px,7.63889vw, 110px);
}

@media screen and (max-width: 768px) {
  .p-footer {
    margin-top: 29.33333vw;
  }
}

.p-footer_bg {
  position: relative;
  width: 100%;
  height: clamp(266px,34.72223vw, 500px);

  -webkit-clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);

          clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
}

@media screen and (max-width: 768px) {
  .p-footer_bg {
    height: 53.33333vw;

    -webkit-clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);

            clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
  }
}

.p-footer_bg span {
  display: block;
  position: absolute;
  margin: auto;
  background-image: url(../img/common/footer_img.webp);
  background-position: center;
  background-size: cover;

  inset: 0;
}

.p-footer_content {
  padding-bottom: clamp(17px,2.22223vw, 32px);
  background-image: url(../img/common/footer_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .p-footer_content {
    padding-bottom: 8.53333vw;
  }
}

.p-footer_inner {
  display: flex;
  padding: clamp(42px,5.55556vw, 80px) clamp(85px,11.11112vw, 160px);
}

@media screen and (max-width: 768px) {
  .p-footer_inner {
    display: block;
    padding: 16vw 7.2vw 0;
  }
}

.p-footer_data {
  opacity: 1;
}

.p-footer_logo {
  width: clamp(128px,16.66667vw, 240px);
  height: clamp(67px,8.81945vw, 127px);
}

@media screen and (max-width: 768px) {
  .p-footer_logo {
    margin: auto;
    width: 58.66667vw;
    height: 21.33333vw;
  }
}

.p-footer_logo svg {
  fill: #fff;
}

.p-footer_address {
  margin-top: clamp(11px,1.52778vw, 22px);
  color: #fff;
}

@media screen and (max-width: 768px) {
  .p-footer_address {
    margin-top: 5.86667vw;
    padding: 048px;
  }
}

.p-footer_address > p {
  letter-spacing: 0.04em;
  font-size: clamp(8px,1.11112vw, 16px);
}

@media screen and (max-width: 768px) {
  .p-footer_address > p {
    font-size: 4.26667vw;
  }
}

.p-footer_address > address {
  margin-top: clamp(4px,0.55556vw, 8px);
  font-size: clamp(6px,0.83334vw, 12px);
}

@media screen and (max-width: 768px) {
  .p-footer_address > address {
    font-size: 3.2vw;
  }
}

.p-footer_list {
  display: flex;
  margin-top: clamp(10px,1.38889vw, 20px);
  margin-left: auto;
  padding-bottom: clamp(2px,0.34723vw, 5px);
}

@media screen and (max-width: 768px) {
  .p-footer_list {
    padding: 0 4.53333vw;
  }
}

.p-footer_item {
  display: flex;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 768px) {
  .p-footer_item {
    display: none;
    width: 100%;
  }
}

.p-footer_item:last-of-type {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 768px) {
  .p-footer_item:last-of-type {
    display: flex;
  }
}

@media screen and (max-width: 768px) {
  .p-footer_item:last-of-type {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-left: none;
  }
}

@media screen and (max-width: 768px) {
  .p-footer_item a {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}

.p-footer_link {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: clamp(23px,3.05556vw, 44px) 0 clamp(5px,0.69445vw, 10px);
  width: clamp(33px,4.375vw, 63px);
  letter-spacing: 0.06em;
  color: #fff !important;
  font-size: clamp(7px,0.97223vw, 14px);
}

@media screen and (max-width: 768px) {
  .p-footer_link {
    justify-content: center;
    padding: 3.46667vw 6.66667vw;
    width: 100%;
    font-size: 3.73333vw;
  }
}

.p-footer_link::before {
  content: "";
  opacity: 1;
  position: absolute;
  z-index: 1;
  margin: auto;
  width: 1px;
  height: 20px;
  transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  background-color: rgba(255, 255, 255, 0.8);

  inset: 0 0 auto 0;
}

@media screen and (max-width: 768px) {
  .p-footer_link::before {
    display: none;
    opacity: 0.5;
    transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}

.p-footer_link::after {
  content: "";
  opacity: 1;
  position: absolute;
  z-index: -1;
  transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  background-color: rgba(13, 35, 28, 0.8);

  inset: 0;
}

@media screen and (max-width: 768px) {
  .p-footer_link::after {
    opacity: 0.5;
    transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}

.p-footer_link.-current::before,
.p-footer_link.-current::after,
.p-footer_link:hover::before,
.p-footer_link:hover::after {
  opacity: 1;
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.45s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: top;
          transform-origin: top;
}

.p-footer_link.-contact::after {
  background-color: #a73836;
}

.p-footer_contact {
  flex-shrink: 0;
  margin-top: clamp(24px,3.19445vw, 46px);
  margin-left: clamp(32px,4.16667vw, 60px);
  width: clamp(146px,19.02778vw, 274px);
  color: #fff;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .p-footer_contact {
    margin-top: 12.26667vw;
    margin-left: 0;
    padding: 0 4.8vw;
    width: 100%;
  }
}

.p-footer_contact_text {
  font-size: clamp(7px,0.97223vw, 14px);
}

@media screen and (max-width: 768px) {
  .p-footer_contact_text {
    text-align: center;
    font-size: 3.46667vw;
  }
}

.p-footer_contact_item {
  display: flex;
  align-items: center;
  margin-top: clamp(11px,1.45834vw, 21px);
  padding: 0 clamp(9px,1.25vw, 18px) 0 clamp(17px,2.22223vw, 32px);
  border: 1px solid #5c726b;
  height: clamp(29px,3.88889vw, 56px);
  font-size: clamp(11px,1.52778vw, 22px);
}

@media screen and (max-width: 768px) {
  .p-footer_contact_item {
    margin-top: 8vw;
    padding: 6.66667vw;
    font-size: 5.86667vw;
  }
}

.p-footer_contact_item + .p-footer_contact_item {
  margin-top: 0;
  border-top: none;
}

.p-footer_contact_item > span {
  display: block;
}

.p-footer_contact_item > span:nth-of-type(1) {
  position: relative;
  padding-right: clamp(9px,1.25vw, 18px);
  font-size: clamp(8px,1.11112vw, 16px);
}

@media screen and (max-width: 768px) {
  .p-footer_contact_item > span:nth-of-type(1) {
    font-size: 4.26667vw;
  }
}

.p-footer_contact_item > span:nth-of-type(1)::after {
  content: "";
  position: absolute;
  width: 1px;
  background-color: #fff;

  inset: 0 0 0 auto;
}

.p-footer_contact_item > span:nth-of-type(2) {
  flex: 1;
  text-align: center;
  font-size: clamp(9px,1.18056vw, 17px);
}

@media screen and (max-width: 768px) {
  .p-footer_contact_item > span:nth-of-type(2) {
    font-size: 4.53333vw;
    color: #fff;
  }
}

.p-footer_copyright {
  text-align: center;
  color: #fff;
  font-size: clamp(7px,0.97223vw, 14px);
}

@media screen and (max-width: 768px) {
  .p-footer_copyright {
    margin-top: 8.53333vw;
    font-size: 2.93333vw;
  }
}

/*
* _breadcrumb.scss
*
*/
.breadcrumb_list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(9px,1.18056vw, 17px) clamp(30px,4.02778vw, 58px);
}

@media screen and (max-width: 768px) {
  .breadcrumb_list {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 4.53333vw 0;
  }
}

.breadcrumb_item {
  position: relative;
  font-size: clamp(6px,0.90278vw, 13px);
  font-weight: 700;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .breadcrumb_item {
    font-size: 3.46667vw;
    line-height: 1.9;
  }
}

.breadcrumb_item + .breadcrumb_item::before {
  content: ">";
  padding: clamp(5px,0.69445vw, 10px);
}

@media screen and (max-width: 768px) {
  .breadcrumb_item + .breadcrumb_item::before {
    padding: 2.66667vw;
  }
}

.breadcrumb_item a {
  position: relative;
  transition: opacity 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
  color: #003126;
}

.breadcrumb_item a::after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #003126;

  inset: auto 0 clamp(-3px,-0.20833vw, -2px) 0;
}

@media screen and (max-width: 768px) {
  .breadcrumb_item a::after {
    inset: auto 0 -0.8vw 0;
  }
}

.breadcrumb_item a:hover {
  opacity: 0.6;
}

/* ------------------------
  Print Styles
------------------------ */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

.nav-links{
  text-align: center;
  margin-top: 110px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .nav-links {
    margin-top: 20vw;
    font-size: 3.73333vw;
  }
}


.flow-box {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 45px;
}

@media screen and (max-width: 768px) {
  .flow-box {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

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