@charset "UTF-8";

/* ============================================================
   リセット / Base Reset
   ============================================================ */
* {
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  padding: 0;
  margin: 0;
}

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

video {
  max-width: 100%;
}

ul,
ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}

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


/* ============================================================
   レイアウト / Layout
   ============================================================ */
.contents-wrapper {
  margin-inline: auto;
  max-width: 750px;
  width: 100%;
  -webkit-box-shadow: 0 0 80px 0 rgba(225, 177, 113, 0.1);
  box-shadow: 0 0 80px 0 rgba(225, 177, 113, 0.1);
  padding-bottom: 22.6vw;
}


/* ============================================================
   利用規約
   ============================================================ */
.teiki_rule p{
	text-align: center;
	font-size: clamp(1rem, 2.5vw, 2rem);
	margin-bottom: clamp(20px, 5vh, 60px);
	text-decoration: none;
	color: #000000;
}
.teiki_rule a{
	text-decoration:underline;
	color: #000000;
}

/* ============================================================
   CTA / CV ボタン
   ============================================================ */
.cv a {
  display: inline-block;
  margin-inline: 5.3%;
  padding-bottom: 5.4vw;
}


/* ============================================================
   固定フッター / Fixed Footer
   ============================================================ */
.fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 25.3vw;
  background-color: #180a57;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

.fixed a {
  z-index: 1;
  display: inline-block;
  margin-inline: 5.3%;
  padding-bottom: 2.4vw;
}

.fixed.is-hidden {
  opacity: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  pointer-events: none;
}


/* ============================================================
   タブ / Tabs
   ============================================================ */
.tabs {
  padding: 0 5.3%;
}

.tabs [role="tablist"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1%;
}

.tabs [role="tab"] {
  border: none;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
}

.tabs [role="tab"] img {
  display: block;
}

.tabs .is-hidden {
  display: none;
}


/* ============================================================
   レスポンシブ / Responsive
   ============================================================ */

/* PC（750px以上） */
@media screen and (min-width: 750px) {
  .sp {
    display: none;
  }

  .contents-wrapper {
    padding-bottom: 170px;
  }


  .cv a {
    padding-bottom: 48px;
  }

  .fixed {
    height: 190px;
  }

  .fixed a {
    padding-bottom: 18px;
  }
}

/* SP（749px以下） */
@media screen and (max-width: 749px) {
  .pc {
    display: none;
  }
}
