/* ------------------------------------------------------------ */
/*
【フォントサイズ】
font-size: clamp(1.375rem, 1.1477rem + 1.1364vw, 2rem); 22px~32px 
font-size: clamp(1.125rem, 0.9432rem + 0.9091vw, 1.625rem); 18px~26px 
font-size: clamp(1rem, 0.9091rem + 0.4545vw, 1.25rem); 16px~20px
font-size: clamp(0.875rem, 0.8295rem + 0.2273vw, 1rem); 14px~16px
font-size: clamp(0.75rem, 0.7045rem + 0.2273vw, 0.875rem); 12px~14px
font-size: clamp(0.625rem, 0.5795rem + 0.2273vw, 0.75rem); 10px~12px
font-size: clamp(0.5rem, 0.4545rem + 0.2273vw, 0.625rem); 8px~10px

【空間サイズ】
margin: clamp(1rem, 0.6364rem + 1.8182vw, 2rem) 0; 16px~32px
margin: clamp(0.5rem, 0.3182rem + 0.9091vw, 1rem) 0; 8px~16px
margin: clamp(0.125rem, 0.0795rem + 0.2273vw, 0.25rem) 0; 2px~4px

*/

/* ------------------------------------------------------------ */
@font-face {
    font-family: "hiragino-mincho-pron";
    src: url("./webfonts/fune/Hiragino Mincho Pro W6.otf") format("opentype");
}

@font-face {
    font-family: "hiragino-mincho-pron-mini";
    src: url("./webfonts/fune/Hiragino Mincho Pro W3.otf") format("opentype");
}

.video-bg {
    width: 100%;
    height: 100vh;
    position: fixed;
    overflow: hidden;
}
.video-bg video {
    object-fit: cover;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

html,
body {
    height: 100%;
    margin: 0;
    background: rgba(0, 0, 0, 0.1);
    font-family: "hiragino-mincho-pron";
    overflow-x: hidden;
}
.body-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.body-content {
    flex: 1;
    z-index: 1;
}
/* 背景を装飾するためのラッパー */
.background-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
}
/* 背景画像 */
.center-bg {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}
@media screen and (max-width: 500px) {
    .center-bg {
        background: rgba(0, 0, 0, 0.75);
    }
}
/* 画像を暗くするためのオーバーレイ */
/* .dark-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(
          0,
          0,
          0,
          0.5
      );
      z-index: 0;
  } */
img {
    width: 100%;
}
h4 {
    font-size: clamp(0.75rem, 0.6rem + 0.8vw, 1rem);
    font-family: "hiragino-mincho-pron", sans-serif;
    font-weight: 600;
    font-style: normal;
}
p {
    font-size: clamp(0.75rem, 0.6rem + 0.8vw, 1rem);
    font-family: "hiragino-mincho-pron", sans-serif;
    font-weight: 600;
    font-style: normal;
}
a {
    font-size: clamp(0.75rem, 0.6rem + 0.8vw, 1rem);
    font-family: "hiragino-mincho-pron", sans-serif;
    font-weight: 600;
    font-style: normal;
    transition: all 0.3s ease 0s;
}
li {
    font-size: clamp(0.75rem, 0.6rem + 0.8vw, 1rem);
    font-family: "hiragino-mincho-pron", sans-serif;
    font-weight: 600;
    font-style: normal;
}
a:hover {
    opacity: 0.8;
}
.pc {
    display: block;
}
.pc-inline {
    display: inline-block;
}
.sp {
    display: none;
}
@media screen and (max-width: 500px) {
    .pc {
        display: none;
    }
    .pc-inline {
        display: none;
    }
    .sp {
        display: block;
    }
}

/* 共通指定
  ====================================================*/
main {
    z-index: 3;
}
section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 3;
}
.gold-text {
    background-image: linear-gradient(
        238.24deg,
        #efbc3b 13.97%,
        #ffeaad 39.49%,
        #c79700 53.59%,
        #fff7b7 68.37%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-color: transparent;
}
.label-button {
    width: 60%;
    margin: 0 auto;
}
@media screen and (max-width: 500px) {
    .label-button {
    width: 80%;
    margin: 0 auto;
}
}

/* 的中実績
  ====================================================*/
.result-item {
    box-shadow: 0 0px 20px #ccc;
    border: 3px solid #949494;
    border-radius: 10px;
    padding: 4%;
    margin: 5%;
    /* background-image: url(./img/bg-result.png); */
    background-color: #25190eaa;
}
.result-item-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.result-item-right {
    width: 30%;
}
.result-item-left {
    width: 100%;
}
.result-item-left .plan {
    font-size: clamp(0.5rem, -0.1375rem + 3.4vw, 1.5625rem);
    padding: 2%;
    color: #fff;
    border: 1px #949494 solid;
    text-shadow: 2px 2px 4px #000;
    font-family: "hiragino-mincho-pron", sans-serif;
}
.result-item-left .plan-1 {
    background: rgb(5, 5, 5);
    background: linear-gradient(
        180deg,
        rgba(5, 5, 5, 1) 5%,
        rgba(139, 0, 0, 1) 25%,
        rgba(204, 85, 0, 1) 45%,
        rgba(5, 5, 5, 1) 95%
    );
}
.result-item-left .plan-a {
    background: rgb(5, 5, 5);
    background: linear-gradient(135deg, #000000 0%, #8b0000 33%, #4b0082 66%, #000000 100%);
}
.result-item-left .plan2 {
    background: rgb(5, 5, 5);
    background-image: linear-gradient(
        180deg,
        #050505 5%,
        #d46a00 35%,
        #050505 95%
    );
}
.result-item-left .plan3 {
    background: rgb(5, 5, 5);
    background: linear-gradient(180deg, #050505 5%, #aa0004 35%, #050505 95%);
}
.result-item-left .plan4 {
    background: rgb(5, 5, 5);
    background: linear-gradient(
        180deg,
        rgba(5, 5, 5, 1) 5%,
        rgba(10, 36, 106, 1) 25%,
        rgba(75, 0, 130, 1) 45%,
        rgba(5, 5, 5, 1) 95%
    );
}
.result-item-left .plan5 {
    background: rgb(5, 5, 5);
    background: linear-gradient(
        180deg,
        rgba(5, 5, 5, 1) 5%,
        rgba(128, 0, 32, 1) 25%,
        rgba(142, 69, 133, 1) 45%,
        rgba(5, 5, 5, 1) 95%
    );
}
.result-item-left .plan6 {
    background: rgb(5, 5, 5);
    background: linear-gradient(
        180deg,
        rgba(5, 5, 5, 1) 5%,
        rgba(0, 100, 0, 1) 25%,
        rgba(128, 128, 0, 1) 45%,
        rgba(5, 5, 5, 1) 95%
    );
}
.result-item-left .plan7 {
    background: rgb(5, 5, 5);
    background: linear-gradient(
        180deg,
        rgba(5, 5, 5, 1) 5%,
        rgba(0, 128, 128, 1) 25%,
        rgba(0, 0, 128, 1) 45%,
        rgba(5, 5, 5, 1) 95%
    );
}
.result-item-left .plan8 {
    background: rgb(5, 5, 5);
    background: linear-gradient(
        180deg,
        rgba(5, 5, 5, 1) 0%,
        rgba(170, 133, 0, 1) 21%,
        rgba(255, 215, 0, 1) 42%,
        rgba(165, 140, 2, 1) 58%,
        rgba(128, 128, 128, 1) 80%,
        rgba(224, 224, 224, 1) 86%,
        rgba(128, 128, 128, 1) 91%,
        rgba(5, 5, 5, 1) 100%
    );
}
.result-item-left .plan9 {
    background: rgb(5, 5, 5);
    background: linear-gradient(
        180deg,
        rgba(5, 5, 5, 1) 5%,
        rgba(146, 144, 139, 1) 33%,
        rgba(222, 219, 213, 1) 38%,
        rgba(135, 134, 129, 1) 41%,
        rgba(57, 56, 54, 1) 51%,
        rgba(5, 5, 5, 1) 95%
    );
}
.result-item-left .day {
    padding-top: clamp(0.4375rem, -0.1042rem + 2.7083vw, 1.25rem);
    font-size: clamp(0.625rem, -0.2083rem + 4.1667vw, 1.875rem);
    color: #fff;
}
.result-item-left .wait {
    padding-top: 5px;
    font-size: clamp(0.5rem, 0.2rem + 1.6vw, 1rem);
    color: #fff;
}
.result-item-left .race {
    font-size: clamp(0.625rem, -0.2083rem + 4.1667vw, 1.875rem);
    color: #fff;
}
.result-item-left .price-wrap {
    position: relative;
    width: 100%;
    height: clamp(1.5625rem, 0.1042rem + 7.2917vw, 3.75rem);
}
.result-item-left .price-bg {
    font-size: clamp(1.5625rem, 0.1042rem + 7.2917vw, 3.75rem);
    font-weight: bold;
    text-shadow: #000 1px 0 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-wrap: nowrap;
}
.result-item-left .price {
    font-size: clamp(1.5625rem, 0.1042rem + 7.2917vw, 3.75rem);
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-wrap: nowrap;
    font-family: "hiragino-mincho-pron", sans-serif;
}
.result-item-left .entry-button{
    display: block;
    width: 50%;
}

/* ユーザー画面共通指定
  ====================================================*/
.title-banner {
    width: 95%;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 10px;
}

.to-top-button {
    margin-top: 4%;
    width: 50%;
    display: block;
    margin: 0 auto;
}
@media screen and (max-width: 500px) {
    .to-top-button {
        width: 70%;
    }
}

.to-top-button-mini {
    margin-top: 4%;
    width: 30%;
    display: block;
    margin: 0 auto;
}
@media screen and (max-width: 500px) {
    .to-top-button-mini {
        width: 40%;
    }
}

.contents-wrap {
    margin: 40px 0;
}
.contents-wrap h1 {
    font-size: clamp(1.25rem, 0.6875rem + 3vw, 2.1875rem);
    padding: 20px 0;
    font-family: "hiragino-mincho-pron", sans-serif;
    font-weight: bold;
}
.contents-wrap p {
    color: #fff;
    font-size: clamp(1rem, 0.7rem + 1.6vw, 1.5rem);
    text-align: left;
}

/* ページネーション */
.pagination {
    color: #fff;
    display: flex;
    width: 70%;
    justify-content: space-between;
    margin: 3% auto;
}
.pagination li {
    padding: 1%;
    border-radius: 5px;
}
.pagination .active {
    background-color: #fff;
    color: #000;
}
@media screen and (max-width: 500px) {
    .pagination li {
        border-radius: 2px;
    }
}

/* ホーム共通
  ====================================================*/
.home-title {
    color: #fff;
    font-size: clamp(1.375rem, 0.7386rem + 3.1818vw, 3.125rem);
    width: fit-content;
    margin: auto;
    padding: 0.5em 1em;
    text-align: center;
    position: relative;
}
.home-title:before {
  content: "";
  position: absolute;
  top: 0%;
  left: 50%;
  width: 60%;
  height: 100%;
  border-radius: 50%;
  border: 5px solid #8c7503;
  border-left-color: transparent;
  border-right-color: transparent;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
/* プランリスト
  ====================================================*/
.home-card-wrap {
    padding: 0 4%;
}
.home-card-wrap .card {
    margin: 3% 0;
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-basis: 48%;
    word-wrap: break-word;
    background-color: #25190eaa;
    background-clip: border-box;
    border: 0;
    border-radius: 0.25rem;
    box-shadow: 0 0px 20px #ccc;
    text-decoration: none;
    border: 3px solid #949494;
}
.home-card-wrap .card-image {
    padding-top: 5%;
    width: 80%;
    box-sizing: border-box;
    border-radius: 5px;
    object-fit: cover;
}
.home-card-wrap .card-box {
    padding: 1% 3% 5%;
    color: white;
}
.home-card-wrap .card-title {
    margin-bottom: 0.5rem;
    width: 50%;
    margin: clamp(0.4375rem, 0.142rem + 1.4773vw, 1.25rem) auto
        clamp(0.875rem, 0.625rem + 1.25vw, 1.5625rem);
    display: block;
}
.home-card-wrap .card-description {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-size: clamp(0.875rem, 0.625rem + 1.25vw, 1.5625rem);
}
.home-card-wrap .go-more{
    width: 40%;
    display: block;
    margin: 5% auto 0;
}
