@charset "UTF-8";
@import url("https://fonts.googleapis.com/earlyaccess/notosansjapanese.css");
@import url("https://use.typekit.net/uxs6usz.css");
html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article, header, footer, aside, figure, figcaption, nav, section {
  display: block;
}

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

* {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

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

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/*==================================
フォント
==================================*/
html {
  font-size: 62.5%; /* 16px x 0.625 = 10px(=1rem) */
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans Japanese", sans-serif;
}

/*==================================
ローディング
==================================*/
.l-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(#444, #111);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  opacity: 0;
  visibility: hidden;
  z-index: 50;
  overflow: hidden;
  transition: 0.5s;
}
.l-loading.js-active {
  opacity: 1;
  visibility: visible;
}

.l-loading__tryangle {
  width: 50vmin;
  height: 50vmin;
  max-width: 150px;
  max-height: 150px;
  background: cyan;
  background-image: radial-gradient(rgba(0, 255, 255, 0), rgba(0, 255, 255, 0.5));
  animation: load 1.25s ease-in-out infinite both;
}

@keyframes load {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
  }
  25% {
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    background-color: #00aaff;
  }
  50% {
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 0);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
  }
  75% {
    -webkit-clip-path: polygon(100% 0, 0 100%, 0 0);
    clip-path: polygon(100% 0, 0 100%, 0 0);
    background-color: #00aaff;
  }
  100% {
    -webkit-clip-path: polygon(100% 100%, 0 100%, 0 0);
    clip-path: polygon(100% 100%, 0 100%, 0 0);
  }
}
/*==================================
グローバルメニュー
==================================*/
header {
  width: 100%;
  padding: 2.7777777778% 2.6041666667% 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  mix-blend-mode: difference;
  overflow: hidden;
  position: fixed;
  z-index: 15;
}

.l-globalmenu {
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 15;
}
.l-globalmenu__logo {
  width: 14.375%;
  min-width: 180px;
}
.l-globalmenu__list {
  display: flex;
  align-items: center;
  list-style: none;
  opacity: 1;
  visibility: visible;
}
.l-globalmenu__list li {
  margin-right: 1%;
}
.l-globalmenu__list li a {
  color: #fff;
  font-size: clamp(15px, 1.04vw, 20px);
  font-family: "quasimoda", sans-serif;
  font-style: normal;
  font-weight: 500;
  text-decoration: none;
}

.l-globalbtn {
  padding-left: 0.5%;
  z-index: 15;
}

.l-globalopenbtn {
  opacity: 0;
  visibility: hidden;
}

.l-sp-globalmenu {
  opacity: 0;
  visibility: hidden;
  display: none;
}

/* 画面サイズ 750px 未満 SP */
@media screen and (max-width: 750px) {
  header {
    width: 100%;
    padding: 1.3888888889% 0 0;
    justify-content: center;
  }
  header .l-globalmenu {
    justify-content: center;
    width: 7.8125%;
    padding-top: 10px;
    margin: 0 auto;
  }
  header .l-globalmenu__logo {
    width: 100%;
    min-width: 150px;
  }
  .l-globalmenu__list,
  .l-globalbtn {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  .l-globalopenbtn {
    opacity: 1;
    visibility: visible;
    position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: #fff;
    z-index: 15;
  }
  /*ボタン内側*/
  .l-globalopenbtn span {
    display: inline-block;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    left: 13px;
    height: 2px;
    background-color: #666;
  }
  .l-globalopenbtn span:nth-of-type(1) {
    top: 20px;
    width: 50%;
  }
  .l-globalopenbtn span:nth-of-type(2) {
    top: 30px;
    width: 50%;
  }
  /*js-activeクラスが付与されると線が回転して×に*/
  .l-globalopenbtn.js-active span:nth-of-type(1) {
    top: 20px;
    left: 16px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
  }
  .l-globalopenbtn.js-active span:nth-of-type(2) {
    top: 32px;
    left: 16px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
  }
  /* SPグローバルメニュー */
  .l-sp-globalmenu {
    width: 100%;
    height: 100vh;
    margin: 0;
    position: fixed;
    display: flex;
    top: -100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #000;
    z-index: 14;
  }
  .l-sp-globalmenu__list {
    text-align: center;
    margin-bottom: 3%;
  }
  .l-sp-globalmenu__list .c-bdlink {
    margin: 15px 0;
  }
}
/*==================================
フッター
==================================*/
footer {
  position: relative;
  width: 100%;
  background-color: #000;
  padding: 100px 0 40px;
  z-index: 1;
}

.l-footermenu {
  display: flex;
  align-items: flex-start;
  margin-bottom: 65px;
}
.l-footermenu__logo {
  width: 38%;
}
.l-footermenu__list {
  display: flex;
  align-items: flex-start;
}

.l-footer__unitwrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 120px;
}

.l-footer__info {
  width: 38%;
  font-size: clamp(13px, 0.89vw, 17px);
  color: #fff;
}
.l-footer__info p {
  margin-bottom: 35px;
}

.l-footer__action {
  display: flex;
  align-items: flex-end;
}
.l-footer__action div {
  margin-right: 2%;
}

.l-footer__bottom {
  color: #fff;
  font-size: clamp(13px, 0.89vw, 17px);
  font-family: "quasimoda", sans-serif;
  font-style: normal;
  font-weight: 200;
  display: flex;
  align-items: center;
}
.l-footer__bottom a {
  color: #fff;
  margin-right: 4%;
}

/* 画面サイズ 750px 未満 SP */
@media screen and (max-width: 750px) {
  .l-footermenu {
    flex-direction: column-reverse;
  }
  .l-footermenu__logo {
    width: 45%;
    margin-top: 10%;
  }
  .l-footermenu__list {
    flex-direction: column;
  }
  .l-footermenu__list div {
    margin-bottom: 1.5em;
  }
  .l-footer__info {
    width: 100%;
  }
  .l-footer__unitwrap {
    flex-direction: column;
    margin-bottom: 100px;
  }
  .l-footer__action {
    margin-top: 10%;
  }
  .l-footer__action div:last-child {
    margin-right: 0%;
  }
  .l-footer__bottom {
    flex-direction: column;
  }
}
/*==================================
レイアウト
==================================*/
@media screen and (min-width: 1280px) {
  .l-pagewrap {
    background-image: url(../images/common/bg_white_closs.jpg);
    background-repeat: repeat;
    z-index: -1;
  }
  .l-swrap {
    width: 46.875%;
    margin: 0 auto;
  }
  .l-mwrap {
    width: 62.5%;
    margin: 0 auto;
  }
  .l-secondtop {
    padding-top: 10.4166666667%;
  }
  .l_wide2_wrap {
    display: flex;
    align-items: center;
  }
  .l_wide2_wrap .l-wide2_textbox--left {
    flex-basis: 35%;
    margin-left: 16.6666666667%;
  }
  .l_wide2_wrap .l-wide2_textbox--right {
    flex-basis: 35%;
    margin-right: 16.6666666667%;
    margin-left: auto;
  }
  .l_wide2_wrap .l-wide2_imgbox--right {
    width: 60%;
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .l_wide2_wrap .l-wide2_imgbox--right .l-imgbox_img {
    width: 60%;
    position: absolute;
    margin-right: 16.6666666667%;
    margin-left: auto;
    z-index: 3;
  }
  .l_wide2_wrap .l-wide2_imgbox--right .l-imgbox_img img {
    width: 100%;
  }
  .l_wide2_wrap .l-wide2_imgbox--right .l-imgbox_bg {
    width: 80%;
  }
  .l_wide2_wrap .l-wide2_imgbox--right .l-imgbox_bg img {
    width: 100%;
  }
  .l_wide2_wrap .l-wide2_imgbox--left {
    width: 60%;
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
  }
  .l_wide2_wrap .l-wide2_imgbox--left .l-imgbox_img {
    width: 60%;
    position: absolute;
    margin-left: 16.6666666667%;
    z-index: 3;
  }
  .l_wide2_wrap .l-wide2_imgbox--left .l-imgbox_img img {
    width: 100%;
  }
  .l_wide2_wrap .l-wide2_imgbox--left .l-imgbox_bg,
  .l_wide2_wrap .l-wide2_imgbox--left .l-imgbox_bg--short {
    width: 80%;
  }
  .l_wide2_wrap .l-wide2_imgbox--left .l-imgbox_bg img,
  .l_wide2_wrap .l-wide2_imgbox--left .l-imgbox_bg--short img {
    width: 100%;
  }
}
@media screen and (min-width: 751px) and (max-width: 1279px) {
  .l-pagewrap {
    background-image: url(../images/common/bg_white_closs.jpg);
    background-repeat: repeat;
    z-index: -1;
  }
  .l-swrap {
    width: 66.6666666667%;
    margin: 0 auto;
  }
  .l-mwrap {
    width: 83.3333333333%;
    margin: 0 auto;
  }
  .l-secondtop {
    padding-top: 16.6666666667%;
  }
  .l_wide2_wrap {
    display: flex;
    align-items: center;
  }
  .l_wide2_wrap .l-wide2_textbox--left {
    flex-basis: 45%;
    margin-left: 8.3333333333%;
    z-index: 5;
  }
  .l_wide2_wrap .l-wide2_textbox--right {
    flex-basis: 45%;
    margin-right: 8.3333333333%;
    margin-left: auto;
    z-index: 5;
  }
  .l_wide2_wrap .l-wide2_imgbox--right {
    width: 60%;
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .l_wide2_wrap .l-wide2_imgbox--right .l-imgbox_img {
    width: 60%;
    position: absolute;
    margin-right: 8.3333333333%;
    margin-left: auto;
    z-index: 3;
  }
  .l_wide2_wrap .l-wide2_imgbox--right .l-imgbox_img img {
    width: 100%;
  }
  .l_wide2_wrap .l-wide2_imgbox--right .l-imgbox_bg,
  .l_wide2_wrap .l-wide2_imgbox--right .l-imgbox_bg--long {
    width: 90%;
  }
  .l_wide2_wrap .l-wide2_imgbox--right .l-imgbox_bg img,
  .l_wide2_wrap .l-wide2_imgbox--right .l-imgbox_bg--long img {
    width: 100%;
  }
  .l_wide2_wrap .l-wide2_imgbox--left {
    width: 60%;
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
  }
  .l_wide2_wrap .l-wide2_imgbox--left .l-imgbox_img {
    width: 60%;
    position: absolute;
    margin-left: 8.3333333333%;
    z-index: 3;
  }
  .l_wide2_wrap .l-wide2_imgbox--left .l-imgbox_img img {
    width: 100%;
  }
  .l_wide2_wrap .l-wide2_imgbox--left .l-imgbox_bg,
  .l_wide2_wrap .l-wide2_imgbox--left .l-imgbox_bg--short {
    width: 90%;
  }
  .l_wide2_wrap .l-wide2_imgbox--left .l-imgbox_bg img,
  .l_wide2_wrap .l-wide2_imgbox--left .l-imgbox_bg--short img {
    width: 100%;
  }
}
/* 画面サイズ 750px 未満 SP */
@media screen and (max-width: 750px) {
  .l-pagewrap {
    background-image: url(../images/common/bg_white_closs.jpg);
    background-repeat: repeat;
    z-index: -1;
  }
  .l-swrap {
    width: 92.3076923077%;
    margin: 0 auto;
  }
  .l-mwrap {
    width: 92.3076923077%;
    margin: 0 auto;
  }
  .l-secondtop {
    padding-top: 23.0769230769%;
  }
  .l_wide2_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .l_wide2_wrap .l-wide2_textbox--left {
    margin: 3.8461538462%;
    z-index: 5;
  }
  .l_wide2_wrap .l-wide2_textbox--right {
    margin: 3.8461538462%;
    z-index: 5;
  }
  .l_wide2_wrap .l-wide2_imgbox--right {
    position: relative;
    right: 0;
    top: -20em;
    margin-bottom: -20em;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }
  .l_wide2_wrap .l-wide2_imgbox--right .l-imgbox_img {
    width: 60%;
    position: absolute;
    margin-right: 15.3846153846%;
    margin-left: auto;
    z-index: 3;
    padding-bottom: 1em;
  }
  .l_wide2_wrap .l-wide2_imgbox--right .l-imgbox_img img {
    width: 100%;
  }
  .l_wide2_wrap .l-wide2_imgbox--right .l-imgbox_bg,
  .l_wide2_wrap .l-wide2_imgbox--right .l-imgbox_bg--long {
    height: 50vh;
  }
  .l_wide2_wrap .l-wide2_imgbox--right .l-imgbox_bg img,
  .l_wide2_wrap .l-wide2_imgbox--right .l-imgbox_bg--long img {
    height: 100%;
    object-fit: cover;
  }
  .l_wide2_wrap .l-wide2_imgbox--left {
    position: relative;
    top: -17em;
    margin-bottom: -17em;
    left: 0;
    display: flex;
    align-items: flex-end;
  }
  .l_wide2_wrap .l-wide2_imgbox--left .l-imgbox_img {
    width: 60%;
    position: absolute;
    margin-left: 15.3846153846%;
    z-index: 3;
    padding-bottom: 1em;
  }
  .l_wide2_wrap .l-wide2_imgbox--left .l-imgbox_img img {
    width: 100%;
  }
  .l_wide2_wrap .l-wide2_imgbox--left .l-imgbox_bg,
  .l_wide2_wrap .l-wide2_imgbox--left .l-imgbox_bg--short {
    height: 43vh;
  }
  .l_wide2_wrap .l-wide2_imgbox--left .l-imgbox_bg img,
  .l_wide2_wrap .l-wide2_imgbox--left .l-imgbox_bg--short img {
    height: 100%;
    object-fit: cover;
  }
  .l_wide2_wrap .l-wide2_imgbox--left .l-imgbox_bg--short {
    height: 40vh;
  }
}
@media screen and (max-width: 411px) {
  .l_wide2_wrap .l-wide2_imgbox--right .l-imgbox_bg {
    height: 58vh;
  }
  .l_wide2_wrap .l-wide2_imgbox--right .l-imgbox_bg--long {
    height: 62vh;
  }
  .l_wide2_wrap .l-wide2_imgbox--left .l-imgbox_bg {
    height: 52vh;
  }
  .l_wide2_wrap .l-wide2_imgbox--left .l-imgbox_bg--short {
    height: 42vh;
  }
}
@media screen and (max-width: 375px) {
  .l_wide2_wrap .l-wide2_imgbox--right .l-imgbox_bg {
    height: 58vh;
  }
  .l_wide2_wrap .l-wide2_imgbox--right .l-imgbox_bg--long {
    height: 62vh;
  }
  .l_wide2_wrap .l-wide2_imgbox--left .l-imgbox_bg {
    height: 57vh;
  }
  .l_wide2_wrap .l-wide2_imgbox--left .l-imgbox_bg--short {
    height: 50vh;
  }
}
/* iphone14 pro max */
@media only screen and (-webkit-min-device-pixel-ratio: 3) {
  .l_wide2_wrap .l-wide2_imgbox--right .l-imgbox_bg {
    height: 52vh;
  }
  .l_wide2_wrap .l-wide2_imgbox--right .l-imgbox_bg--long {
    height: 62vh;
  }
  .l_wide2_wrap .l-wide2_imgbox--left .l-imgbox_bg {
    height: 52vh;
  }
  .l_wide2_wrap .l-wide2_imgbox--left .l-imgbox_bg--short {
    height: 50vh;
  }
}