@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700&family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
ul,
ol,
dl,
dd {
    margin: 0;
    padding: 0;
}

ul[role="list"],
ol[role="list"] {
    list-style: none;
}

html:focus-within {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

a:not([class]) {
    text-decoration-skip-ink: auto;
}

img,
picture {
    max-width: 100%;
    display: block;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="date"],
input[type="submit"],
button,
textarea {
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none;
}

textarea {
    resize: vertical;
}

input[type='radio'] {
    display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
    cursor: pointer;
}

select,
table,
textarea {
    font: 100%;
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

:root {
    --base: #3c3c3c;
    --Black: #000;
    --Gray: #dddbdb;
    --Red: #e90c0c;
    --buttonColor: #163567;
}

body {
    background: #fff;
    color: var(--basecolor);
}

html {
    font-size: 62.5%;
}

body {
    background: #fff;
    color: var(--basecolor);
    font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    -webkit-text-size-adjust: 100%;
}

.min {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

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

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.4rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.8rem;
}

h5 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.fnt-x-small {
    font-size: 1.2rem;
}

.fnt-small {
    font-size: 1.4rem;
}

.fnt-large {
    font-size: 1.8rem;
}

.fnt-x-large {
    font-size: 2rem;
}

.fnt-light {
    font-weight: 300;
}

.fnt-middium {
    font-weight: 500;
}

.fnt-bold {
    font-weight: 700;
}

.fnt-exbold {
    font-weight: 900;
}

ol li {
    list-style-type: decimal;
    margin: 0 0 0 1.6rem;
}

ul li {
    list-style-type: disc;
    margin: 0 0 0 1.6rem;
}

table {
    width: 100%;
}

table th {
    background-color: var(--Gray);
    padding: 1rem;
}

table td {
    padding: 1rem;
}

p.note,
ul.note li {
    position: relative;
    padding-left: 1.8rem;
}

ul.note {
    margin: 0;
}

ul.note li {
    list-style: none;
    margin: 0;
}

p.note::before,
ul.note li:before {
    position: absolute;
    content: '※';
    left: 0;
    top: 0;
}

.center {
    text-align: center;
}

.wrapper {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
}

.wrapperentry {
    
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 0px;
    padding-top: 0px;
    text-align: left;
    
}

.flex {
    display: flex;
}

.button a,
.button input[type="submit"] {
    background-color: var(--buttonColor);
    color: #fff;
    position: relative;
    text-align: center;
    padding: 2rem 8rem;
    border-radius: 4rem;
    text-decoration: none;
    background-image: url(images/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: 90% center;
    display: block;
    margin: 0 auto;
    max-width: 400px;
}

.button input[type="submit"],
.button.button02 a {
    background-color: var(--Red);
}

.button a:hover {
    opacity: 0.8;
}
.form-f .checkbox {
  display: block;
  margin-top: 0.5em;
}
@media(max-width: 768px) {
    .button a,
    .button input[type="submit"] {
        padding: 1.5rem 6rem;
        max-width: 320px;
    }
}

.mv-img {
  width: 100%;                                 /* 幅を常に100%に */
  aspect-ratio: 256 / 181;                        /* アスペクト比を固定（モダンブラウザ対応） */
  background-image: url("images/mv_bg.jpg");
  background-size: cover;                      /* コンテナ全体を覆い余白なく表示 */ 
                                                /* → コンテナを完全にカバーしつつ切り抜く :contentReference[oaicite:0]{index=0} */
  background-position: center center;          /* 切り抜き時に中心を基準に */ 
  background-repeat: no-repeat;                /* タイル状の繰り返しを無効化 */
}

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;                    /* 幅100% */
  height: 100%;                   /* 高さ100% */
  object-fit: cover;              /* 切り抜きつつ比率を維持 */
  object-position: center center;

.mv .limit {
    width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    margin-top: -80px;
    padding: 30px 0;
    text-align: center;
    background-color: var(--Red);
    color: #fff;
    margin-bottom: 30px;
    border-radius: 8px;
}

.mv .limit h2 {
    margin-bottom: 15px;
}

.mv .limit p {
    font-size: 28px;
    font-weight: 700;
}

.mv .lead {
    width: 600px;
    margin: 0 auto;
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 50px;
}

@media(max-width: 768px) {
    .mv .limit {
        width: 100%;
        margin-top: 00px;
        padding: 10px;
        margin-bottom: 30px;
        border-radius: 0;
    }
    .mv .limit h2 {
        margin-bottom: 5px;
        font-size: 18px;
    }
    .mv .limit p {
        font-size: 16px;
    }
    .mv .lead {
        width: 100%;
        font-size: 18px;
        padding: 0 15px;
        margin-bottom: 30px;
    }
}

.entry .wrapper {
    text-align: center;
    padding: 30px 0;
}

.entry h2 {
    font-size: 40px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.entry h2 span {
    position: absolute;
    width: 2px;
    transform: rotate(35deg);
    height: 40px;
    top: 13px;
    background-color: #000;
}

.entry h2 span:first-child {
    transform: rotate(-35deg);
    left: -30px;
}

.entry h2 span:last-child {
    right: -20px;
}

.entry p {
    font-size: 24px;
    margin-bottom: 20px;
}

.entry p span {
    font-size: 48px;
    font-weight: 700;
}

@media(max-width: 768px) {
    .entry .wrapper {
        padding: 15px 0;
    }
    .entry h2 {
        font-size: 20px;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }
    .entry h2 span {
        position: absolute;
        width: 2px;
        transform: rotate(35deg);
        height: 20px;
        top: 5px;
        background-color: #000;
    }
    .entry p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .entry p span {
        font-size: 32px;
        font-weight: 700;
    }
}

.about {
    text-align: center;
}

.about img {
    margin-bottom: 20px;
}

.about h2 {
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
}

.about h2:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    background-color: var(--buttonColor);
    bottom: -10px;
    left: calc(50% - 50px);
}

.about p {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 300;
}

@media(max-width: 768px) {
    .about img {
        margin-bottom: 0px;
    }
    .about .flex {
        margin-bottom: 20px;
    }
    .about h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }
    .about p {
        font-size: 18px;
        margin-bottom: 20px;
        font-weight: 300;
    }
}

.prizeform-f {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* 1つの選択肢をカード風に */
.prizeform-f .option {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto; /* 1行目=タイトル, 2行目=画像 */
  column-gap: .5rem;
  row-gap: .5rem;
  align-items: start;
  cursor: pointer;
  max-width: 450px;       /* 必要に応じて調整 */
}

/* チェックボックスは左で上下2行を占有 */
.prizeform-f .option input {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin-top: .2rem;      /* 見た目調整 */
}

/* タイトルは右上 */
.prizeform-f .option-title {
  grid-column: 2;
  grid-row: 1;
  line-height: 1.4;
}

/* 画像は右下（タイトルの下で改行表示） */
.prizeform-f .option-img {
  grid-column: 2;
  grid-row: 2;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;     /* お好みで */
}

.prize h2 {
    color: #fff;
    font-size: 60px;
    text-align: center;
    background-image: url(./images/prize_bg.png);
    background-repeat: repeat-x;
    margin-bottom: 60px;
}

.prize .box {
    background-color: #fff;
    border-radius: 32px;
    text-align: center;
    padding: 3rem;
    margin-bottom: 30px;
}

.prize .box .name {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.prize .box .number {
    color: #fff;
    font-size: 20px;
    padding: 5px 0;
    width: 200px;
    margin: 0 auto 30px;
    text-align: center;
}

.prize .box .present .sub {
    font-size: 24px;
    font-weight: 500;
}

.prize .box .present .main {
    font-size: 46px;
    font-weight: 500;
}

.prize .box-trinita {
    border: 6px solid rgb(20, 11, 140);
    position: relative;
}

.prize .box-gold {
    border: 6px solid #B97F24;
}

.prize .box-silver {
    border: 6px solid #848484;
}

.prize .box-blonze {
    border: 6px solid #6C4B38;
}

.prize .box-trinita .baloon {
    position: absolute;
    background-image: url(./images/baloon.png);
    width: 420px;
    background-size: 100% auto;
    background-repeat: no-repeat;
    height: 272px;
    padding-left: 30px;
    padding-top: 35px;
    top: -50px;
    left: -80px;
}

.prize .box-trinita .baloon p {
    color: #e95513;
    font-weight: 700;
    transform: rotate(-20deg);
    font-size: 38px;
    text-align: left;
}

.prize .box-trinita .neetan {
    position: absolute;
    right: 20px;
    width: 250px;
    bottom: 10px;
}

.prize .box-trinita .main {
    position: relative;
    display: inline-block;
    z-index: 2;
}

.prize .box-trinita .main:after {
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: #e90c0c;
    content: '';
    z-index: 1;
    bottom: 4px;
    left: 0;
}

.prize .box-trinita .label .name {
    color: rgb(20, 11, 140);
}

.prize .box-trinita .label .number {
    background-color: rgb(20, 11, 140);
}

.prize .box-gold .label .number {
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
}

.prize .box-silver .label .number {
    background: linear-gradient(45deg, #757575 0%, #9E9E9E 45%, #E8E8E8 70%, #9E9E9E 85%, #757575 90% 100%);
}

.prize .box-blonze .label .number {
    background-color: #6C4B38;
}

.prize .box .label {
    background-repeat: no-repeat;
    background-position: center center;
    width: 320px;
    text-align: center;
    padding: 80px 0 10px;
    margin: 0 auto;
    background-size: 160px auto;
}

.prize .box-trinita .label {
    background-image: url(./images/prize-trinita.png);
}

.prize .box-gold .label {
    background-image: url(./images/prize-gold.png);
}

.prize .box-silver .label {
    background-image: url(./images/prize-silver.png);
}

.prize .box-blonze .label {
    background-image: url(./images/prize-bronze.png);
}

.flex.hotels .item {
    width: calc(50% - 15px);
    padding-top: 20px;
    position: relative;
}

.flex.hotels .item p {
    background-color: #000;
    color: #fff;
    padding: 5px 0;
}

.flex.under,
.flex.hotels {
    justify-content: space-between;
}

.flex.under .box {
    width: calc(50% - 15px);
}

@media(max-width: 768px) {
    .prize h2 {
        font-size: 32px;
        margin-bottom: 60px;
    }
    .prize .box {
        border-radius: 16px;
        padding: 1.5rem;
        margin-bottom: 30px;
    }
    .prize .box .name {
        font-size: 36px;
        margin-bottom: 20px;
    }
    .prize .box .number {
        font-size: 18px;
        padding: 5px 0;
        width: 180px;
    }
    .prize .box .img {
        padding: 0 30px;
    }
    .prize .box .present .sub {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .prize .box .present .main {
        font-size: 32px;
    }
    .prize .box-trinita .baloon {
        background-repeat: no-repeat;
        width: 180px;
        height: 222px;
        padding-left: 30px;
        padding-top: 20px;
        top: -60px;
        left: -15px;
    }
    .prize .box-trinita .baloon p {
        font-size: 14px;
    }
    .prize .box-trinita .neetan {
        position: absolute;
        right: auto;
        left: 20px;
        width: 72px;
        bottom: 60px;
    }
    .prize .box .label {
        width: 240px;
        text-align: center;
        padding: 20px 0 10px;
        margin: 0 auto;
        background-size: 140px auto;
    }
    .flex.hotels .item {
        width: 100%;
        padding-top: 20px;
        position: relative;
    }
    .flex.hotels .item p {
        background-color: #000;
        color: #fff;
        padding: 5px 0;
    }
    .flex.under,
    .flex.hotels {
        display: block;
    }
    .flex.under .box {
        width: 100%;
    }
}

.outline h2 {
    font-size: 32px;
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.outline h3 {
    background-color: #f3e228;
    color: #000;
    padding: 8px;
    font-size: 18px;
    margin-bottom: 10px;
}

.outline p {
    margin-bottom: 20px;
}

@media(max-width: 768px) {
    .outline h2 {
        font-size: 24px;
    }
    .outline h3 {
        padding: 5px;
        font-size: 16zpx;
        margin-bottom: 10px;
    }
    .outline p {
        margin-bottom: 20px;
        font-size: 14px;
    }
    .outline li {
        font-size: 14px;
    }
}

form {
    background-color: #fff;
    padding: 50px;
}

.form h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 42px;
}

.annotation p {
    background-color: #000;
    color: #fff;
    margin-bottom: 30px;
    padding: 5px;
}

.scroll {
    height: 300px;
    overflow: scroll;
    padding: 30px;
    font-size: 13px;
    border: 1px solid #EBEBEB;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="date"] {
    border: 1px solid #707070;
    padding: 5px;
    flex: 1;
    background-color: #fff;
    font-size: 16px;
}

select {
    padding: 5px;
    font-size: 16px;
    flex: 1;
}

.cf-col {
    margin-bottom: 2rem;
    display: flex;
}

.cf-col.submit-col {
    margin-top: 30px;
}

.form-h {
    display: flex;
    width: 50%;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.form-f {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.form-f p {
    width: 100%;
}

.form-h label,
.form-f label {
    width: 200px;
    text-align: left;
    font-weight: 500;
    display: flex;
    align-items: center;
}

span.require {
    color: #e90c0c;
    padding-left: 5px;
    padding-top: 8px;
}

@media(max-width: 768px) {
    form {
        padding: 30px 10px;
    }
    .form h2 {
        text-align: center;
        margin-bottom: 20px;
        font-size: 24px;
    }
    .annotation p {
        font-size: 12px;
        margin-bottom: 20px;
    }
    .scroll {
        height: 200px;
        padding: 10px;
        font-size: 13px;
    }
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="tel"],
    input[type="date"] {
        border: 1px solid #707070;
        padding: 5px;
        width: 100%;
        background-color: #fff;
        font-size: 16px;
    }
    select {
        padding: 5px;
        font-size: 16px;
        flex: 1;
    }
    .cf-col {
        margin-bottom: 2rem;
        display: block
    }
    .cf-col.submit-col {
        margin-top: 30px;
    }
    .form-h {
        display: block;
        width: 100%;
        align-items: center;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
    .form-f {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        align-items: center;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    .form-f p {
        font-size: 12px;
        padding-top: 10px;
    }
    .form-h label,
    .form-f label {
        width: 100%;
        font-size: 14px;
        display: block;
        margin-bottom: 5px;
    }
}

.tokuten p {
    margin-bottom: 30px;
}

.tokuten .button {
    margin-bottom: 50px;
}

.tokuten p.lead {
    text-align: center;
    font-weight: 500;
}

.tokuten h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.tokuten h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.tokuten .box {
    padding: 10px;
    border: 1px solid #dddbdb;
}

@media(max-width: 768px) {
    .tokuten p {
        margin-bottom: 30px;
        font-size: 14px;
    }
    .tokuten .button {
        margin-bottom: 50px;
    }
    .tokuten p.lead {
        font-size: 16px;
    }
    .tokuten h2 {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .tokuten h3 {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .tokuten ul li {
        font-size: 13px;
    }
}
/* thanks
------------------------------------------------*/
.thanks-wrap{
}

.thanks-firstview {
background-image: url(images/thanks背景.png);
background-size: auto;
background-position: top left;
background-repeat: repeat;
height: 100vh;
overflow: auto;
-webkit-overflow-scrolling: touch;
position: relative;

}


.thanks-firstview:after {
/*  content: '';
  display: block;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;*/
}
.thanks-firstview .u-container {
/*  padding-top: 1.5rem;*/
}
.thanks-firstview h1 {
  position: relative;
  z-index: 1;
  color: #fff;
  letter-spacing: 0.2em;
  text-align: center;
  padding-bottom: 0.4rem;
}
.thanks-firstview__inner {
  /* コンテナを画面いっぱいに広げる場合 */
  width: 100%;
  min-height: 100vh;

  /* Flexbox レイアウトで完全中央揃え */
  display: flex;
  flex-direction: column;      /* 縦方向に要素を積む */
  align-items: center;         /* 横方向中央寄せ */

  /* 背景などが必要ならここで指定 */
  /* background: #000; */
  align-items: center;
}
.thanks-firstview__inner h2,
.thanks-firstview__inner li,
.thanks-firstview__inner p {
  color: #fff;
}
.thanks-firstview__inner h2 {
  font-size: 0.22rem;
  line-height: 1.388em;
  letter-spacing: 0.15em;
  text-align: center;
  padding-bottom: 1em;
}
.thanks-firstview__inner ul {
  padding-bottom: 0.25rem;
}
.thanks-firstview__link {
  padding: 0.5rem 0;
  text-align: center;
}

/* 画像にも余白を入れたい場合 */
.thanks-image {
  display: block;            /* ブロック化して */
  margin-bottom: 1em;        /* 下に隙間 */
  /* margin: 0 auto; でもOKですが、
     Flexbox なら上記だけで横中央になります */
}

.thanks-message {
  display: inline-block;
  border: 2px solid #fff;
  padding: 10px 20px;
  font-size: 2rem;
  color: #000;
  border-radius: 4px;
  background: rgba(255,255,255,1);
  z-index: 10;               /* 画像の手前に出すなら調整 */
  display: flex;             /* フレックスコンテナに */
  justify-content: center;   /* 横方向（主軸）の中央寄せ */


}

@media screen and (max-width: 1100px) {
  .thanks-firstview h1 {
    font-size: 0.3rem;
  }
}
@media screen and (max-width: 800px) {
  .thanks-firstview h1 {
    font-size: 0.26rem;
  }
}
@media screen and (max-width: 800px) {
  .thanks-firstview h1 {
    font-size: 0.22rem;
  }
  .thanks-firstview h2 {
    font-size: 0.18rem;
  }
}
.displaynone {
  display: none;
}