@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Montserrat:ital,wght@0,600;1,600&family=Noto+Sans+JP:wght@100..900&display=swap");
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, main, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article, aside, details, figcaption, figure, footer, header, hgroup, nav, main, section, summary {
  display: block;
}

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

html {
  font-size: 62.5%;
  overflow-y: scroll;
  /*background: url(images/bg.png);*/
}

body {
  line-height: 1.7;
  font-size: 3.5vw;
  letter-spacing: -.01rem;
  color: #373632;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-optical-sizing: auto;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

@media only screen and (min-width: 768px) {
  body {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

ul {
  list-style: none;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  font-size: 100%;
  color: #000000;
  background: transparent;
  -webkit-tap-highlight-color: rgba(112, 16, 51, 0.6);
  text-decoration: none;
}

a:focus {
  outline: none;
}

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

img {
  vertical-align: top;
  -ms-interpolation-mode: bicubic;
}

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

hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #999999;
}

::-moz-selection {
  color: #FFFFFF;
  background: #86133d;
}

::selection {
  color: #FFFFFF;
  background: #86133d;
}

input::-moz-selection,
textarea::-moz-selection {
  color: #000000;
}

input::selection,
textarea::selection {
  color: #000000;
}

textarea {
  resize: vertical;
}

:placeholder-shown {
  color: rgba(0, 0, 0, 0.4);
}

::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

:-moz-placeholder {
  opacity: 1;
  color: rgba(0, 0, 0, 0.4);
}

::-moz-placeholder {
  opacity: 1;
  color: rgba(0, 0, 0, 0.4);
}

:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.row {
  width: 90%;
  margin: auto;
}

@media only screen and (min-width: 1025px) {
  .row {
    max-width: 1200px;
  }
}

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

body {
  overflow: hidden;
  background: #f1f3f4;
  background: url("images/blue.jpg") center top/cover no-repeat;
}

#container {
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.6s ease;
  /* ← loading と同じ時間 */
}

#container.loaded {
  opacity: 1;
  overflow: auto;
}

/* loading の初期スタイル */
#loading {
  position: fixed;
  inset: 0;
  /* top:0; right:0; bottom:0; left:0; の短縮 */
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  /* 背景指定（正しい shorthand） */
  background: url("images/blue.jpg") center top/cover no-repeat;
  /* トランジションはここで一回だけ定義する（上書きしない） */
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 1s ease;
  transform: translateX(0);
  /* パフォーマンスヒント */
  will-change: transform, opacity;
}

#loading .loadimg {
  position: relative;
  z-index: 10;
  width: 300px;
}

@media only screen and (min-width: 768px) {
  #loading .loadimg {
    width: 25vw;
  }
}

/* 左へスライドして消す */
#loading.fade-out {
  pointer-events: none;
  transform: translateX(-100%);
  opacity: 0;
  /* transition はここに再定義しない（上で一回だけ定義） */
}

#loading .loadimg img {
  width: 150px;
  height: auto;
  opacity: 0;
  transform: scale(1.05);
  animation: loadingFadeZoom .4s ease-out forwards;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 768px) {
  #loading .loadimg img {
    width: 100%;
    max-width: 30vw;
  }
}

.light {
  width: 100%;
  margin-top: 5px;
}

@media only screen and (min-width: 768px) {
  .light {
    margin-top: 20px;
  }
}

.light img {
  width: 100% !important;
  max-width: 100% !important;
}

#loading .light {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

#loading .light.show {
  opacity: 1;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes loadingFadeZoom {
  from {
    opacity: 0;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* loadimg（div）をフェードアウト可能に */
#loading .loadimg {
  opacity: 1;
  transition: opacity 1s ease;
}

/* light をフェードイン */
#loading .light {
  opacity: 0;
  transition: opacity 1s ease;
}

/* light 表示 */
#loading .light.show {
  opacity: 1;
}

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

header {
  transition: .2s;
  height: 85px;
}

.l-header {
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
  left: 0;
  padding: 30px 20px 0;
  display: flex;
  justify-content: space-between;
}

@media only screen and (min-width: 768px) {
  .l-header {
    padding: 1.5vw 2vw;
  }
}

.l-header h1 {
  width: 20vw;
}

@media only screen and (min-width: 768px) {
  .l-header h1 {
    width: 10vw;
  }
}

.l-header ul {
  display: none;
}

@media only screen and (min-width: 768px) {
  .l-header ul {
    display: flex;
  }
}

.l-header ul a {
  color: #FFFFFF;
}

.l-header ul li {
  margin-right: 4vw;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.l-header ul li a {
  position: relative;
  font-size: clamp(1rem, 1.3vw, 2.2rem);
}

.l-header ul li a::after {
  position: absolute;
  bottom: 0px;
  left: 50%;
  content: '';
  width: 0%;
  height: 1px;
  background-color: #FFFFFF;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.l-header ul li a:hover::after {
  width: 100%;
}

.l-header.fixed {
  /*background: url("images/blue.jpg") center top / cover no-repeat;*/
  height: 85px;
  z-index: 30;
  transition: .2s;
  background: #19274b;
}

@media only screen and (min-width: 768px) {
  .l-header.fixed {
    height: 11svh;
  }
}

#mv {
  height: calc((var(--vh, 1vh) * 100));
  width: 100%;
  position: relative;
}

#mv .swiper-slide {
  position: relative;
}

#mv .swiper-slide .mv-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#mv .swiper-slide .mv-inner img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#mv .swiper-slide .catch {
  width: 85vw;
  position: absolute;
  top: 80px;
  left: 5vw;
}

@media only screen and (min-width: 768px) {
  #mv .swiper-slide .catch {
    width: 58vw;
    position: absolute;
    top: clamp(0px, 7vw, 150px);
    left: 5vw;
  }
}

#mv .swiper-slide .catch img {
  width: 100%;
}

#mv .swiper-slide .catch-txt {
  position: absolute;
  color: #FFFFFF;
  top: 170px;
  left: 15vw;
  font-size: clamp(1rem, 1vw, 2rem);
  line-height: 2;
  font-weight: 700;
}

@media only screen and (min-width: 768px) {
  #mv .swiper-slide .catch-txt {
    top: clamp(0px, 9vw, 230px);
    right: 5vw;
    left: inherit;
  }
}

#mv .swiper-slide .mv-cate {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5vw;
  width: 90vw !important;
  margin-top: -5vw;
}

@media only screen and (min-width: 768px) {
  #mv .swiper-slide .mv-cate {
    bottom: 14vw;
    left: 13vw;
    width: 40vw !important;
    top: unset;
    transform: unset;
    margin-top: 0;
  }
}

#mv .swiper-slide .mv-cate img {
  width: 100%;
}

#mv .swiper-slide .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50vw;
  margin-top: 30vw;
  left: 5vw;
}

@media only screen and (min-width: 768px) {
  #mv .swiper-slide .icon {
    right: 10vw;
    bottom: 8vw;
    width: 31vw;
    top: unset;
    transform: unset;
    left: unset;
    margin-top: 0;
  }
}

#mv .swiper-slide .icon img {
  width: 100%;
}

#mv .swiper-slide.slide02 .mv-cate {
  width: 65vw !important;
}

@media only screen and (min-width: 768px) {
  #mv .swiper-slide.slide02 .mv-cate {
    width: 29vw !important;
  }
}

#mv .swiper-slide.slide03 .mv-inner img {
  -o-object-fit: cover;
  object-fit: cover;
  object-position: center bottom;
}

#mv .swiper-slide.slide03 .mv-cate {
  width: 58vw !important;
}

@media only screen and (min-width: 768px) {
  #mv .swiper-slide.slide03 .mv-cate {
    width: 27vw !important;
  }
}

#mv .logo-end {
  position: absolute;
  width: 50%;
  left: 50%;
  transform: translateX(-50%);
  top: 300px;
}

@media only screen and (min-width: 768px) {
  #mv .logo-end {
    top: 50%;
    transform: translateY(-50%);
    left: 50%;
    transform: translateX(-50%);
    margin-top: -10vw;
    width: 100%;
  }
}

@media only screen and (min-width: 768px) {
  #mv .logo-end img {
    width: 100%;
  }
}

.base-column {
  width: 90%;
  margin: 0 auto 60px;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .base-column {
    display: flex;
    justify-content: space-between;
    flex-flow: row-reverse;
    width: 80%;
    margin: 0 auto 90px;
  }
}

.base-column .base-l {
  z-index: 10;
  position: relative;
  transition: opacity .3s;
}

@media only screen and (min-width: 768px) {
  .base-column .base-l {
    width: 35%;
  }
}

.base-column .base-l .en {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(4rem, 4vw, 6rem);
  line-height: 1;
  margin-bottom: 50px;
  padding-top: 10px;
}

@media only screen and (min-width: 768px) {
  .base-column .base-l .en {
    margin-bottom: 30px;
    padding-top: 0;
  }
}

.base-column .base-l .btn-base {
  display: block;
  position: relative;
  transition: .3s;
  left: 0;
  display: flex;
  justify-content: flex-end;
}

@media only screen and (min-width: 768px) {
  .base-column .base-l .btn-base {
    justify-content: flex-start;
    margin-top: 30px;
  }
}

.base-column .base-l .btn-base img {
  width: 40px;
}

@media only screen and (min-width: 768px) {
  .base-column .base-l .btn-base img {
    width: 70px;
  }
}

.base-column .base-r {
  display: none;
}

@media only screen and (min-width: 768px) {
  .base-column .base-r {
    width: 60%;
    display: inherit;
  }
}

.base-column .base-r img {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .base-column:nth-child(even) {
    flex-flow: row;
  }
}

.base-column .pic-sp {
  margin-bottom: 20px;
  display: block;
}

@media only screen and (min-width: 768px) {
  .base-column .pic-sp {
    display: none;
  }
}

.base-column .damy {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 20;
  height: 100%;
  width: 100%;
  display: flex;
  flex-flow: row-reverse;
  justify-content: space-between;
  opacity: .8;
  display: none;
}

@media only screen and (min-width: 768px) {
  .base-column .damy {
    display: inherit;
  }
}

.base-column .damy img {
  width: 100%;
}

.base-column .damy .damy-l {
  width: 35%;
  position: relative;
  background: transparent;
  display: block;
}

.base-column .damy .damy-r {
  width: 60%;
}

.base-column .damy02 {
  flex-flow: row;
}

.pc-br {
  display: none;
}

@media only screen and (min-width: 1280px) {
  .pc-br {
    display: inherit;
  }
}

.content {
  padding-top: 80px;
  position: relative;
  padding-bottom: 100px;
  overflow: hidden;
  background: #f1f3f4;
}

.content .line-en01 {
  position: absolute;
  top: 13vw;
  right: 0;
  width: 83vw;
  mix-blend-mode: overlay;
  opacity: .9;
  display: none;
}

@media only screen and (min-width: 768px) {
  .content .line-en01 {
    display: inherit;
  }
}

.content .line-en01 img {
  width: 100%;
}

.content .line-en02 {
  position: absolute;
  top: 42vw;
  right: 0;
  width: 100vw;
  mix-blend-mode: overlay;
  opacity: .9;
  display: none;
}

@media only screen and (min-width: 768px) {
  .content .line-en02 {
    display: inherit;
  }
}

.content .line-en02 img {
  width: 100%;
}

.content .line-en03 {
  position: absolute;
  bottom: 0vw;
  left: 0;
  width: 94vw;
  mix-blend-mode: overlay;
  opacity: .9;
  display: none;
}

@media only screen and (min-width: 768px) {
  .content .line-en03 {
    display: inherit;
  }
}

.content .line-en03 img {
  width: 100%;
}

.line-sp {
  position: absolute;
  top: 0;
  left: 5vw;
  width: 90vw;
}

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

.bnr-column {
  position: relative;
  top: -50px;
  z-index: 10;
}

.bnr-column ul {
  max-width: 1200px;
  margin: auto;
  width: 90%;
}

@media only screen and (min-width: 768px) {
  .bnr-column ul {
    display: flex;
    justify-content: center;
  }
}

.bnr-column ul li {
  margin: 0 20px;
}

@media only screen and (min-width: 768px) {
  .bnr-column ul li {
    width: 40%;
  }
}

.bnr-column ul li img {
  width: 100%;
}

.bnr-column ul li a {
  transition: .5s;
}

.bnr-column ul li a:hover {
  opacity: .8;
}

.sns ul {
  display: flex;
  justify-content: center;
}

.sns ul li {
  font-size: 2.5rem;
  margin: 0 20px;
  transition: .3s;
}

.sns ul li:hover {
  opacity: .7;
}

.sns-nav {
  margin-top: 50px;
}

.sns-nav ul {
  display: flex;
}

.sns-nav ul li {
  margin-right: 30px;
}

.l-footer {
  text-align: center;
  background: #f1f3f4;
}

.l-footer .copy {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 10px;
}

.damy:hover ~ .base-l .btn-base {
  left: 10px;
  transition: .3s;
}

.base-l {
  transition: opacity .2s;
}

/*========= ハンバーガーメニュー ===============*/
.openbtn {
  position: fixed;
  z-index: 99999;
  /*ボタンを最前面に*/
  top: 20px;
  right: 10px;
  cursor: pointer;
  width: 70px;
  height: 65px;
  transition: .2s;
}

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

.openbtn.active {
  position: fixed;
}

.openbtn.fixed {
  top: 18px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .3s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #FFFFFF;
  width: 50%;
}

.openbtn span::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #FFFFFF;
  position: absolute;
  border-radius: 10px;
  top: -2px;
  right: 0;
}

.openbtn span::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #FFFFFF;
  position: absolute;
  border-radius: 10px;
  top: -2px;
  left: 0;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 28px;
}

.openbtn span:nth-of-type(3) {
  top: 41px;
}

.openbtn.active span:nth-of-type(1) {
  /*top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-35deg);
    width: 60%;
        background-color: $black;*/
  display: inline-block;
  transition: all .3s;
  position: absolute;
  left: 15px;
  height: 2px;
  border-radius: 2px;
  background-color: #FFFFFF;
  width: 50%;
  transform: translateY(6px) rotate(-45deg);
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  /*top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(35deg);
    width: 60%;
    background-color: $black;*/
  display: inline-block;
  transition: all .3s;
  position: absolute;
  left: 15px;
  height: 2px;
  border-radius: 2px;
  background-color: #FFFFFF;
  width: 50%;
  transform: translateY(-18px) rotate(45deg);
  top: 39px;
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 9999;
  /*ナビのスタート位置と形状*/
  top: 0;
  transform: translate(100vw, 0);
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background: url("images/blue_sp.png") center top/cover no-repeat;
  transition: all 0.5s cubic-bezier(0.2, 0, 0.2, 1);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: .5;
  padding: 100px 30px 30px;
}

@media only screen and (min-width: 768px) {
  #g-nav {
    background: url("images/blue.jpg") center top/cover no-repeat;
  }
}

#g-nav a {
  transition: .5s;
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  display: block;
  margin-bottom: 20px;
  font-size: 5vw;
}

#g-nav:hover {
  opacity: .5;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  transform: translate(0px, 0);
  opacity: 1;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 0;
}

.scroll {
  position: absolute;
  color: #FFFFFF;
  z-index: 1;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  left: 55%;
  transform: translateX(-55%);
  bottom: 2%;
}

@media only screen and (min-width: 1025px) {
  .scroll {
    bottom: 2%;
    display: block;
  }
}

.scroll span {
  display: block;
  transform: rotate(90deg);
  position: relative;
  top: -15px;
  left: -10px;
}

.scroll::after {
  content: "";
  display: block;
  position: absolute;
  left: 0%;
  bottom: 10px;
  width: 1px;
  background: #FFFFFF;
  -webkit-animation: cline 2s cubic-bezier(0.66, 0.06, 0.42, 0.9) infinite;
  animation: cline 2s cubic-bezier(0.66, 0.06, 0.42, 0.9) infinite;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes cline {
  0% {
    bottom: 60px;
    height: 0;
    opacity: 0;
  }
  50% {
    bottom: 0;
    height: 60px;
    opacity: 1;
  }
  51% {
    bottom: 0;
    height: 60px;
  }
  100% {
    height: 0;
    bottom: 0;
  }
}

/* ローディングの基本スタイル（最初は見える状態） */
#loading {
  position: fixed;
  display: flex;
}

/* 2回目以降、または終了時にこのクラスをつけて消す */
#loading.is-done {
  display: none !important;
}

/* 戻った瞬間、すべての遷移アニメーションを無効にする */
.no-transition, .no-transition * {
  transition: none !important;
}

/* containerの初期状態：Swiperの準備ができるまで隠す */
#container {
  opacity: 0;
  visibility: hidden;
  /* 完全に隠す */
  overflow: hidden;
  transition: opacity 0.6s ease;
}

/* 準備完了後にこのクラスを付けて表示 */
#container.loaded {
  opacity: 1;
  visibility: visible;
  overflow: auto;
  background: #f1f3f4;
}

/* loadingの基本（初回訪問・リロード時のみ使用） */
#loading {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("images/blue.jpg") center top/cover no-repeat;
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 1s ease;
}

#loading.is-done {
  display: none !important;
}

#loading.fade-out {
  pointer-events: none;
  transform: translateX(-100%);
  opacity: 0;
}
