@charset "UTF-8";
/* 初期設定
================================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -ms-overflow-style: none; /* IE, Edge スクロールバー消去 */
  scrollbar-width: none; /* Firefox スクロールバー消去 */
}

/* Chrome, Safari スクロールバー消去 */
html::-webkit-scrollbar {
  display: none;
}

/* モーダル等開いた時に後ろが動いてしまうのを防ぐ設定 */
html.is-hidden {
  overflow: hidden;
}

html.is-load,
body.is-load {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

body {
  color: #000;
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}

a {
  color: #000;
  text-decoration: none;
}

img {
  border: 0;
  vertical-align: bottom;
  width: 100%;
}

:where(table) {
  border-collapse: collapse;
  width: 100%;
}

:where(.wrapper) {
  background-color: #fff;
  margin: 0 auto;
}

/* レスポンシブ消去
-------------------------------------------------- */
.pcB {
  display: block;
}
@media screen and (max-width: 768px) {
  .pcB {
    display: none;
  }
}

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

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

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

/* 共通部分設定
================================================== */
@media screen and (min-width: 769px) {
  .bp {
    display: none;
  }
}
@media screen and (min-width: 1920px) {
  .bp {
    display: none;
  }
}

/* 読み込みアニメーション
-------------------------------------------------- */
.loadLogo {
  background-image: url("/lp/mioclip_30th_anniversary/assets/img/cmn/bg_main_pc.jpg");
  background-position: top center;
  background-repeat: repeat-y;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100dvw;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .loadLogo {
    background-image: url("/lp/mioclip_30th_anniversary/assets/img/cmn/bg_main_sp.jpg");
    background-repeat: repeat-y;
  }
}
.loadLogo img {
  display: block;
  width: min(20.041667dvw, 384.8px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
@media screen and (max-width: 768px) {
  .loadLogo img {
    width: 60.050667dvw;
  }
}

/* header
-------------------------------------------------- */
.header {
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 3000;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 73px;
  margin: 0 auto;
  max-width: 1600px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header__inner {
    justify-content: flex-start;
    padding: 0 20px;
    height: 60px;
  }
}

/* サイトロゴ */
.header__logo {
  height: auto;
  width: 206px;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 131px;
  }
}
.header__logo a {
  display: block;
}
@media screen and (min-width: 769px) {
  .header__logo a:hover {
    opacity: 0.6;
  }
}

/* ハンバーガーメニュー */
.header__btn--hum {
  display: block;
  height: 73px;
  width: 90px;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .header__btn--hum {
    height: 60px;
    width: 70px;
    right: 0;
  }
}
.header__btn--hum span {
  display: block;
  border-top: min(0.104167dvw, 2px) solid #000;
  width: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.6s;
}
@media screen and (max-width: 768px) {
  .header__btn--hum span {
    border-top: 2px solid #000;
    width: 30px;
  }
}
.header__btn--hum span:nth-last-of-type(1) {
  top: calc(50% - 10px);
}
@media screen and (max-width: 768px) {
  .header__btn--hum span:nth-last-of-type(1) {
    top: calc(50% - 10px);
  }
}
.header__btn--hum span:nth-last-of-type(2) {
  top: 50%;
}
.header__btn--hum span:nth-last-of-type(3) {
  top: calc(50% + 10px);
}
@media screen and (max-width: 768px) {
  .header__btn--hum span:nth-last-of-type(3) {
    top: calc(50% + 10px);
  }
}

/* ハンバーガーメニュー（アクティブ） */
.header__btn--hum.is-active span:nth-last-of-type(1) {
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.header__btn--hum.is-active span:nth-last-of-type(2) {
  opacity: 0;
}
.header__btn--hum.is-active span:nth-last-of-type(3) {
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

/* ナビ */
.header__hNav {
  background-color: rgba(255, 255, 255, 0.9);
  height: calc(100dvh - 73px);
  width: 430px;
  padding: 40px 0 60px;
  position: fixed;
  top: 73px;
  right: 0;
  transform: translateX(100%);
  transition: 0.6s;
  visibility: hidden;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  .header__hNav {
    position: absolute;
    height: calc(100dvh - 60px);
    width: 100%;
    padding: 18px 0 40px;
    top: 60px;
  }
}
.header__hNav.is-active {
  transform: translateX(0);
  visibility: visible;
}
.header__hNav li {
  position: relative;
}
.header__hNav li::after {
  content: "";
  border-bottom: min(0.052084dvw, 1px) solid #000;
  width: 138px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .header__hNav li::after {
    border-bottom: 1px solid #000;
    width: 256px;
  }
}
.header__hNav li:last-child::after {
  content: none;
}
.header__hNav li img {
  display: block;
  margin: 0 auto;
}
.header__hNav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}
@media screen and (max-width: 768px) {
  .header__hNav li a {
    height: 50px;
  }
}
@media screen and (min-width: 769px) {
  .header__hNav li a:hover {
    opacity: 0.6;
  }
}
.header__hNav li:nth-of-type(1) img {
  width: 208.86px;
}
@media screen and (max-width: 768px) {
  .header__hNav li:nth-of-type(1) img {
    width: 193px;
  }
}
.header__hNav li:nth-of-type(2) img {
  width: 176.59px;
}
@media screen and (max-width: 768px) {
  .header__hNav li:nth-of-type(2) img {
    width: 163.64px;
  }
}
.header__hNav li:nth-of-type(3) img {
  width: 213.65px;
}
@media screen and (max-width: 768px) {
  .header__hNav li:nth-of-type(3) img {
    width: 197.98px;
  }
}
.header__hNav li:nth-of-type(4) img {
  width: 209.94px;
}
@media screen and (max-width: 768px) {
  .header__hNav li:nth-of-type(4) img {
    width: 194.54px;
  }
}
.header__hNav li:nth-of-type(5) img {
  width: 88.24px;
}
@media screen and (max-width: 768px) {
  .header__hNav li:nth-of-type(5) img {
    width: 81.76px;
  }
}
.header__hNav li:nth-of-type(6) img {
  width: 253.33px;
}
@media screen and (max-width: 768px) {
  .header__hNav li:nth-of-type(6) img {
    width: 234.74px;
  }
}
.header__hNav li:nth-of-type(7) img {
  width: 110.71px;
}
@media screen and (max-width: 768px) {
  .header__hNav li:nth-of-type(7) img {
    width: 102.59px;
  }
}
.header__hNav li:nth-of-type(8) img {
  width: 86.3px;
}
@media screen and (max-width: 768px) {
  .header__hNav li:nth-of-type(8) img {
    width: 79.97px;
  }
}
.header__hNav li:nth-of-type(9) img {
  width: 221.64px;
}
@media screen and (max-width: 768px) {
  .header__hNav li:nth-of-type(9) img {
    width: 205.39px;
  }
}

.header__btn--home {
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .header__btn--home {
    margin-top: 16px;
  }
}
.header__btn--home a {
  display: block;
  margin: 0 auto;
  width: 255px;
}
@media screen and (max-width: 768px) {
  .header__btn--home a {
    width: 256px;
  }
}
@media screen and (min-width: 769px) {
  .header__btn--home a:hover {
    opacity: 0.6;
  }
}

.header__logo--top {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .header__logo--top {
    margin-top: 30px;
  }
}
.header__logo--top a {
  display: block;
}
.header__logo--top img {
  display: block;
  margin: 0 auto;
  width: 100px;
}
@media screen and (max-width: 768px) {
  .header__logo--top img {
    width: 100px;
  }
}

/* 
-------------------------------------------------- */
.pagetop {
  display: none;
}
