@charset "utf-8";
/*
@import url("https://fonts.googleapis.com/css?family=Oswald");
@import url("https://fonts.googleapis.com/css?family=Open+Sans");
*/
@import url('https://fonts.googleapis.com/css?family=Teko');
@import url('https://fonts.googleapis.com/css?family=Teko');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@700&display=swap');

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

html {
  font-size: 62.5%;
  height: 100%;
}

body {
  font-size: 1.6rem;
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo',
    'HG丸ｺﾞｼｯｸM-PRO', 'HGMaruGothicMPRO', 'verdana', sans-serif;
  color: #333333;
  height: 100%;
}

a {
  color: #333333;
  cursor: pointer;
  text-decoration: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.p100 {
  width: 100%;
}

img {
  width: 100%;
}

/* 追尾 */
.floatbtn {
  width: 12%;
  position: fixed;
  bottom: 3%;
  right: 3%;
  z-index: 10;
  transform: scale(1);
  transition: 0.5s;
}
.floatbtn:hover {
  transform: scale(1.1);
}

/* フェードイン */
.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1000ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/* ハンバーガー */
.header {
  position: relative;
}
.hamburger-menu {
  width: 50px;
  height: 50px;
  position: fixed;
  border: none;
  background: transparent;
  appearance: none;
  padding: 0;
  cursor: pointer;
  top: 30px;
  right: 30px;
  z-index: 20;
}
.hamburger-menu__bar {
  display: inline-block;
  width: 40px;
  height: 4px;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s;
}
.hamburger-menu--open.hamburger-menu__bar {
  background: #fff;
}
.hamburger-menu__bar_blue {
  background: #006298;
}
.hamburger-menu__bar:first-child {
  top: 0;
  margin: 8px 0;
  display: inline-block;
}
.hamburger-menu__bar:nth-child(2) {
  top: 14px;
  margin: 8px 0;
  display: inline-block;
}
.hamburger-menu__bar:last-child {
  top: 28px;
  margin: 8px 0;
  display: inline-block;
}
.hamburger-menu--open .hamburger-menu__bar {
  top: 50%;
}
.hamburger-menu--open .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger-menu--open .hamburger-menu__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
  display: none;
}
.navigation_fixed {
  overflow: auto;
}
.navigation.active {
  right: 0%;
  display: block;
}
.navigation {
  /* display: none; */
  background: #006298;
  position: fixed;
  width: 50%;
  z-index: 15;
  height: 100%;
  right: -120%;
  top: 0%;
  transition: all 0.5s;
}
.navigation__list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 100px auto 0;
  width: 80%;
}
.navigation__link {
  color: #fff;
  font-weight: 500;
  font-family: 'Noto Sans JP';
  text-decoration: none;
  display: block;
  padding: 24px 0;
  transition: 0.5s;
  font-size: 24px;
}
.navigation__list-item a:hover {
  opacity: 0.5;
}
.navigation__list-item a span {
  position: relative;
}
.navigation__list-item a span::before {
  /* 背景の表示設定 */
  content: '';
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: -40px;
  width: 23px; /* 横幅 */
  height: 23px; /* 高さ */
  border-radius: 50%; /* 角の丸み */
  border: 2px solid #fff;
}
.navigation__list-item a span::after {
  /* くの字の表示設定 */
  content: '';
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: -29px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

/* MV */
.mv {
  width: 100%;
  height: auto;
  position: relative;
  background-image: url(../img/mv.webp);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.mv::before {
  content: '';
  background-color: rgba(0, 110, 174, 0.8);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
}
.mv img {
  width: 100%;
}
.mv_wrap {
  max-width: 1560px;
  margin: 0 auto;
  z-index: 5;
  position: relative;
}

/* 共通 */
.page_wrap {
  background-image: url(../img/bg_01.webp), url(../img/bg_02.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 3%, center 100%;
  padding: 0 0 100px;
}
.contents {
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
}
.sec {
  margin: 40px auto;
}

/* lead */
.lead {
  width: 100%;
  margin: 0 auto;
}
.lead h1 {
  width: 50%;
}
.lead p {
  padding: 20px 0;
  width: 100%;
  font-size: 18px;
  line-height: 30px;
}

/* anc */
.anc {
  width: 100%;
  margin: 0 auto;
}
.anc ul {
  display: flex;
  justify-content: center;
}
.anc ul li {
  width: 100%;
  padding: 20px 20px 0;
  max-width: 200px;
}
.anc li img {
  filter: drop-shadow(10px 10px 10px #ccc);
}
.anc ul li a img {
  transform: scale(1);
  transition: 0.5s;
}
.anc ul li a img:hover {
  transform: scale(1.1);
}

/* items */
.items {
  font-family: 'Noto Sans JP', sans-serif, 'Oswald', sans-serif;
  margin: -40px 0 0;
  padding: 100px 0 0;
}
.items h2 {
  display: flex;
  align-items: center;
  position: relative;
}
.number {
  display: block;
  font-size: 120px;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 2px #006298;
  font-style: italic;
  font-family: 'Oswald', sans-serif;
  margin-left: 0;
}
.sub_ttl {
  display: block;
  font-size: 40px;
  color: #006298;
  text-shadow: 2px 2px 0 #f8f8f8, -2px -2px 0 #f8f8f8, -2px 2px 0 #f8f8f8, 2px -2px 0 #f8f8f8,
    0px 2px 0 #f8f8f8, 0 -2px 0 #f8f8f8, -2px 0 0 #f8f8f8, 2px 0 0 #f8f8f8;
  margin: -10px;
}
.item_detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.item_detail._03 {
  margin: -60px 0 0;
}
.item_detail p {
  font-size: 18px;
  line-height: 30px;
}
.item_txt {
  width: 30%;
  position: relative;
}
.item_detail div:nth-of-type(2) {
  width: 68%;
}
.txt_wrap {
  margin: -20% 0;
}
.btn {
  display: block;
  text-align: center;
  width: 90%;
  margin: 40px auto;
  max-width: 310px;
  position: relative;
}
.btn a {
  display: block;
  text-decoration: none;
  background: #006298;
  padding: 20px 0;
  line-height: 1em;
  position: relative;
  border-radius: 85px;
  margin: 20px auto 0;
  color: #fff;
  text-align: center;
  transform: scale(1);
  transition: 0.5s;
}
.btn a:hover {
  transform: scale(1.1);
}
.btn::after {
  /* 疑似要素で同じ大きさのboxを作り、position: absoluteで背面に表示 */
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* ①疑似要素のボックスを影色で塗りつぶし */
  background-color: rgba(179, 179, 179, 0.3);
  /* ②ブラーフィルターでぼかす */
  filter: blur(15px);
  /* ③位置やサイズを調整 */
  transform: translateY(10px) scale(1.05);
  /* ④乗算で重ねる */
  mix-blend-mode: multiply;
}
.btn._top {
  margin: 100px auto 0;
}
.btn._top a {
  display: block;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.6);
  padding: 20px 0;
  line-height: 1em;
  position: relative;
  border-radius: 85px;
  border: 2px solid #006298;
  margin: 20px auto 0;
  color: #006298;
  text-align: center;
  transform: scale(1);
  transition: 0.5s;
}

/* 下層 */
.mv._under {
  background-image: url(../img/mv_01_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.mv.under::before {
  content: '';
  background-color: rgba(0, 110, 174, 0.8);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
}
.page_wrap._under {
  background-size: 42%, 100%, contain;
  background-repeat: no-repeat;
  background-position: top right, center 20%, center 100%;
}
.page_wrap._under._01 {
  background-image: url(../img/underbg_01.webp), url(../img/bg_01.webp), url(../img/bg_02.webp);
}
.page_wrap._under._02 {
  background-image: url(../img/underbg_02.webp), url(../img/bg_01.webp), url(../img/bg_02.webp);
}
.page_wrap._under._03 {
  background-image: url(../img/underbg_03.webp), url(../img/bg_01.webp), url(../img/bg_02.webp);
}
.page_wrap._under._04 {
  background-image: url(../img/underbg_04.webp), url(../img/bg_01.webp), url(../img/bg_02.webp);
}
.page_wrap._under._05 {
  background-image: url(../img/underbg_05.webp), url(../img/bg_01.webp), url(../img/bg_02.webp);
}
.sec._under {
  margin: 0;
  padding: 100px 0 40px;
}
.lead._under p {
  text-align: center;
  padding: 0;
}
.under_item_detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.under_item_detail._03 {
  margin: -60px 0 0;
}
.item_slider {
  width: 56%;
  position: relative;
}
.main_image {
  position: relative;
}
.item_explanation {
  width: 38%;
}
.main_item {
  transition: all 1s;
  opacity: 0;
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
}
.current-img {
  opacity: 1;
  z-index: 7;
}
.panorama {
  position: absolute;
  bottom: 0%;
  right: 0%;
  width: 24%;
  z-index: 10;
}
.panorama img {
  transform: scale(1);
  transition: 0.5s;
}
.panorama a img:hover {
  transform: scale(1.1);
}
.item_explanation p:first-child {
  position: relative;
  font-size: 24px;
  font-weight: 600;
  font-family: 'Noto Sans JP', sans-serif, 'Oswald', sans-serif;
  padding: 0 0 20px;
}
.item_explanation p:first-child::before {
  content: '';
  width: 100%;
  height: 2px;
  display: block;
  background-color: #d4d9dd;
  position: absolute;
  bottom: 0;
  left: 0%;
}
.item_explanation p:first-child::after {
  content: '';
  width: 32px;
  height: 2px;
  display: block;
  background-color: #008fdb;
  position: absolute;
  bottom: 0;
  left: 0;
}
.item_explanation_note {
  font-family: 'Noto Sans JP', sans-serif, 'Oswald', sans-serif;
  margin: 20px 0 0;
  width: 100%;
  line-height: 30px;
}
.item_caution {
  font-size: 14px;
  display: block;
  line-height: 2rem;
  margin-top: 10px;
  text-indent: -1em;
  margin-left: 16px;
}
.txt_red {
  color: #ff0000;
}
.item_explanation_wrap {
  display: block;
  align-items: center;
}
.item_level {
  border: 2px solid #000;
  background-color: #fff;
  padding: 4px 6px;
  margin: 20px 0 0;
  display: inline-block;
  font-size: 20px;
  margin-right: 10px;
  font-family: 'Oswald';
}
.item_price {
  font-family: 'Oswald';
  padding: 0px 0 0;
  font-size: 26px;
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  font-family: 'Oswald';
}
.item_price_plus {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
}
.under_items._02 {
  margin: 40px 0 0;
}

@media screen and (max-width: 979px) {
  .contents {
    width: 90%;
  }
}

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

  .sp {
    display: block;
  }

  /* 追尾 */
  .floatbtn {
    width: 34%;
    bottom: 2%;
    right: 2%;
    max-width: 200px;
  }

  /* ハンバーガー */
  .hamburger-menu__bar:first-child {
    top: 12px;
    margin: 6px 0;
  }
  .hamburger-menu__bar:nth-child(2) {
    top: 22px;
    margin: 6px 0;
  }
  .hamburger-menu__bar:last-child {
    top: 32px;
    margin: 6px 0;
  }
  .hamburger-menu--open .hamburger-menu__bar {
    top: 50%;
  }
  .navigation {
    width: 100%;
  }
  .navigation__list {
    margin: 20% auto 0;
    width: 88%;
  }
  .navigation_fixed {
    overflow: hidden;
  }
  .navigation__link {
    padding: 6% 0;
    font-size: clamp(20px, 4vw, 40px);
  }
  .hamburger-menu {
    top: 0px;
    right: 2px;
  }
  .hamburger-menu__bar {
    width: 27px;
    height: 2px;
  }
  .navigation__list-item a span::before {
    width: 20px;
    height: 20px;
  }
  .navigation__list-item a span::after {
    width: 5px;
    height: 5px;
    right: -30px;
  }

  /* 共通 */
  .page_wrap {
    background-image: url(../img/s_bg_01.webp), url(../img/s_bg_02.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center 7%, center 100%;
    padding: 0 0 20%;
  }
  .contents {
    width: 100%;
  }
  .sec {
    margin: 10% auto;
  }

  /* MV */
  .mv {
    width: 100%;
    background-color: #fff;
    background-image: none;
  }
  .mv::before {
    background-color: #fff;
  }

  /* lead */
  .lead {
    width: 90%;
  }
  .lead h1 {
    width: 88%;
  }
  .lead p {
    padding: 4% 0;
    width: 100%;
    font-size: clamp(14px, 3vw, 24px);
    line-height: 6vw;
  }

  /* anc */
  .anc {
    width: 90%;
  }

  .anc ul li {
    width: 34%;
    padding: 4% 4% 0 0;
  }

  /* items */
  .number {
    font-size: 22vw;
    margin-left: -10vw;
    position: relative;
    z-index: 0;
  }
  .sub_ttl {
    font-size: 6vw;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    text-align: center;
    text-shadow: 1px 1px 0 #f8f8f8, -1px -1px 0 #f8f8f8, -1px 1px 0 #f8f8f8, 1px -1px 0 #f8f8f8,
      0px 1px 0 #f8f8f8, 0 -1px 0 #f8f8f8, -1px 0 0 #f8f8f8, 1px 0 0 #f8f8f8;
  }
  .items {
    margin: 0% 0;
    padding: 10% 0 20%;
  }
  .items h2 {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
  .item_detail {
    flex-direction: column-reverse;
  }
  .item_txt {
    margin: -30% 0 0;
    padding: 10% 0 0;
  }
  .item_txt {
    width: 90%;
    margin: -20% 0;
    position: relative;
    z-index: 2;
  }
  .item_detail div:nth-of-type(2) {
    width: 100%;
    margin: -12%;
    position: relative;
    z-index: 1;
  }
  .item_detail p {
    font-size: clamp(14px, 3vw, 24px);
    line-height: 6vw;
  }
  .btn {
    text-align: center;
    width: 60%;
    margin: 3% auto 0;
    max-width: 310px;
    filter: none;
  }
  .btn._02 {
    width: 90%;
  }
  .btn._top {
    margin: 10% auto 0;
  }
  .item_detail._03 div:first-child {
    margin: -40% 0 0;
    padding: 27% 0 0;
  }
  .btn::after {
    filter: blur(10px);
  }

  /* 下層 */
  .page_wrap._under {
    background-size: 42%, 100%, contain;
    background-repeat: no-repeat;
    background-position: top right, center, center 100%;
  }
  .sec._under {
    margin: 0;
    padding: 10% 0;
  }
  .under_items._02 {
    margin: 12% 0 0;
  }
  .under_item_detail {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
  .under_item_detail div:nth-of-type(1) {
    width: 100%;
    position: relative;
    align-items: flex-end;
  }
  .item_explanation {
    width: 100%;
    margin: 4% 0 0;
  }
  .item_price_wrap {
    margin: 4% 0 0;
    width: 100%;
  }
  .item_price_plus {
    font-size: 12px;
  }
  .item_explanation p:first-child::before {
    width: 100%;
  }
  .item_explanation p:first-child {
    font-size: clamp(20px, 3vw, 30px);
    padding: 0 0 3%;
  }
  /* .item_explanation span {
    margin: 10% 0 0;
  } */
  .item_level {
    margin: 6% 2% 0 0;
    font-size: clamp(14px, 3vw, 24px);
  }
  /* .item_explanation p:nth-of-type(2) {
    display: flex;
    align-items: center;
    position: relative;
  } */
  .item_price_wrap {
    display: flex;
  }
  .item_price {
    padding: 0px 0 0;
    font-size: 26px;
    margin: 0;
    display: block;
  }
  .item_price_wrap {
    display: flex;
    justify-content: flex-end;
  }
  .item_explanation_note {
    margin: 4% 0 0;
    width: 100%;
    line-height: 6vw;
    font-size: clamp(14px, 3vw, 24px);
  }
  .item_explanation_wrap {
    display: flex;
  }
}
