@charset "UTF-8";
/* box-sizing: border-box;を設定 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* フォントサイズの拡大を防ぐ */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  word-break: break-word;
}

/* リストのスタイルを削除、これはデフォルトのスタイルが削除されることを示唆します */
ul,
ol {
  list-style: none;
}

/* 見出しやインタラクティブ要素のline-heightを設定 */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: inherit;
}

/* 見出しのテキスト折り返しをbalanceに設定 */
/* 画像の扱いを簡単にする */
img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

/* inputやbuttonなどのfontは継承 */
input,
button,
textarea,
select {
  font: inherit;
}

table {
  border-collapse: collapse;
}

body,
button,
input,
textarea {
  font-family: "Noto Sans JP", sans-serif;
}

html,
body {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
}

html {
  font-size: 62.5%;
  scroll-padding-top: 120px;
  overflow-y: scroll;
}

body {
  font-size: 14px;
  line-height: 1.6875;
  color: #222;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
}

body.no-scroll {
  overflow: hidden;
}

:where(body, button, input, textarea, select) {
  color: #222;
  font-size: inherit;
  line-height: inherit;
}

label,
select,
input[type=checkbox],
input[type=radio],
button {
  cursor: pointer;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb65 {
  margin-bottom: 65px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb85 {
  margin-bottom: 85px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb95 {
  margin-bottom: 95px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb110 {
  margin-bottom: 110px;
}

.mb120 {
  margin-bottom: 120px;
}

.mb125 {
  margin-bottom: 125px;
}

.mb130 {
  margin-bottom: 130px;
}

.mb140 {
  margin-bottom: 140px;
}

.mb150 {
  margin-bottom: 150px;
}

.mb160 {
  margin-bottom: 160px;
}

.mb170 {
  margin-bottom: 170px;
}

.mb180 {
  margin-bottom: 180px;
}

.mb190 {
  margin-bottom: 190px;
}

.mb200 {
  margin-bottom: 200px;
}

.centerBox {
  max-width: 1082px;
  margin-inline: auto;
  padding-inline: 25px;
}

html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track {
  width: 12px;
  background-color: #eee;
}

html::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.center_text {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/*-----------------------
          main
------------------------*/
.main {
  width: 100%;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.article {
  width: 100%;
  padding: 0 18px 120px;
}
.article.pb0 {
  padding-bottom: 0;
}
.article.gray {
  background-color: #EFEFEF;
  position: relative;
}
.article.gray::before {
  position: absolute;
  content: "";
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url(../images/index_howto_before.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*-----------------------
      下層共通枠
------------------------*/
.border_article {
  padding: 0 15px 40px;
  width: 100%;
  border-radius: 12px;
  position: relative;
}
.border_article::before {
  display: block;
  position: absolute;
  content: "";
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  aspect-ratio: 17.94/27.51;
  height: auto;
  background-image: url(../images/icon_clip.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.border_article.rally {
  border: solid 3px #8FC434;
}
.border_article.rally .content_subtitle {
  color: #8FC434;
  margin-bottom: 17px;
}
.border_article.reviews {
  border: solid 3px #FCA518;
}
.border_article.reviews .content_subtitle {
  color: #FCA518;
  margin-bottom: 30px;
}
.border_article.grand {
  border: solid 3px #1FACE8;
}
.border_article.grand .content_subtitle {
  color: #1FACE8;
  margin-bottom: 30px;
}

.content_title {
  margin-bottom: 10px;
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

.content_subtitle {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 22px;
}

.subtitle_img {
  width: 120px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

/*-----------------------
  賞品(ラリー・コンテスト)
------------------------*/
.shohin {
  width: 100%;
  padding: 20px 12px;
  background-color: #e4e4e4;
  margin-bottom: 40px;
}

.shohin_title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.underdev {
  padding: 8px 16px;
  background-color: #e7f7ff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.underdev.index {
  margin: 40px auto 100px;
}

/*-----------------------
      リンクボタン
------------------------*/
.link_button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 16px;
  width: 100%;
  max-width: 340px;
  height: 53px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 19px;
  transition: background-color 0.3s;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.link_button.point2 {
  background-color: #8FC434;
}
.link_button.point2.map {
  margin-bottom: 90px;
}
.link_button.point2.map2 {
  margin-bottom: 40px;
}
.link_button.point3 {
  background-color: #F38201;
}
.link_button.point4 {
  background-color: #1FACE8;
}
.link_button.rally {
  background-color: #8FC434;
  transform: translateY(66.5px);
}
.link_button.ftr {
  background-color: #8AD2D3;
}
.link_button:hover.point2, .link_button:hover.rally {
  background-color: #aedb61;
}
.link_button:hover.point3 {
  background-color: #eba75a;
}
.link_button:hover.point4 {
  background-color: #5bc0eb;
}
.link_button:hover.ftr {
  background-color: #9fd2d3;
}

.link_button_arrow {
  border-radius: 50%;
  width: 22px;
  height: 22px;
  margin: auto;
  border: solid 1px #fff;
  position: absolute;
  top: calc(50% - 11px);
  right: 16px;
}
.link_button_arrow:after {
  content: "";
  display: block;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 2px;
  margin: auto;
  transform: rotate(45deg);
}

/*-----------------------
        リンク
------------------------*/
.link {
  color: #023ec0;
  position: relative;
}
.link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(2, 62, 192, 0.9254901961);
  opacity: 1;
}
.link:hover::after {
  opacity: 0;
}
.link.privacy {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.sp30 {
  height: 20px;
}

/*
.font{
  font-family: "Josefin Sans", serif;
  font-family: "Montserrat", sans-serif;
  font-family: 'BIZ UDPGothic', sans-serif;
  font-family: "Yu Gothic", sans-serif;
  font-family: 'DINBEK', sans-serif;
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Zen Kurenaido', sans-serif;
}
*/
/*-----------------------
      index header
------------------------*/
.index_header {
  width: 100%;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.header_bg1, .header_bg2 {
  width: 100%;
  aspect-ratio: 375/150;
  height: auto;
  display: flex;
  justify-content: left;
  align-items: flex-start;
  z-index: -1;
}
.header_bg1 img, .header_bg2 img {
  display: block;
  height: 100%;
  width: fit-content;
}

.index_header_logo {
  display: block;
  width: 100%;
  aspect-ratio: 375/220;
  height: auto;
  position: relative;
}
.index_header_logo img {
  position: absolute;
  display: block;
  opacity: 0;
  transform: translateY(30px);
}
.index_header_logo img.index_headitem_bg {
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}
.index_header_logo .index_headitem_1 {
  width: 6.7%;
  top: -25.3%;
  left: 36.3%;
}
.index_header_logo .index_headitem_2 {
  width: 7.1%;
  top: -23%;
  left: 43.2%;
}
.index_header_logo .index_headitem_3 {
  width: 4.6%;
  top: -23.1%;
  left: 50.9%;
}
.index_header_logo .index_headitem_4 {
  width: 2.7%;
  top: -15.5%;
  left: 56%;
}
.index_header_logo .index_headitem_5 {
  width: 12.7%;
  top: -8.5%;
  left: 26.2%;
}
.index_header_logo .index_headitem_6 {
  width: 7.64%;
  top: -6.9%;
  left: 39.3%;
}
.index_header_logo .index_headitem_7 {
  width: 9.85%;
  top: -7.1%;
  left: 49.1%;
}
.index_header_logo .index_headitem_8 {
  width: 11.6%;
  top: -6.7%;
  left: 59.36%;
}
.index_header_logo .index_headitem_9 {
  width: 4.67%;
  top: 8.4%;
  left: 70%;
}
.index_header_logo .index_headitem_flag,
.index_header_logo .index_headitem_btmtext,
.index_header_logo .index_headitem_oshi {
  opacity: 0;
}
.index_header_logo .index_headitem_flag {
  width: 67%;
  top: 14.8%;
  left: 16%;
  transform-origin: 10.85% 100%;
}
.index_header_logo .index_headitem_btmtext {
  width: 76.8%;
  top: 68.63%;
  left: 11.57%;
}
.index_header_logo .index_headitem_oshi {
  width: 22.1%;
  top: 45.45%;
  left: 44.27%;
}

.index_header_bottom {
  display: block;
  width: 100%;
  aspect-ratio: 375/190;
  height: auto;
  background-image: url(../images/index_header_bottom_bg.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.index_header_bottom::before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 37px;
  top: -37px;
  left: 0;
  background-image: url(../images/index_header_bottom_bg_before.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
.index_header_bottom .index_header_bottom_item1 {
  position: absolute;
  width: 42%;
  top: -19%;
  left: 5.6%;
  z-index: 2;
}
.index_header_bottom .index_header_bottom_item2 {
  position: absolute;
  width: 49%;
  top: -48.4%;
  right: 4px;
  z-index: 2;
}

.index_navi_outer {
  width: 100%;
  aspect-ratio: 375/115;
  height: fit-content;
  position: relative;
}

.index_navi {
  position: absolute;
  top: -17%;
  left: 0;
  width: 100%;
  aspect-ratio: 375/115;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-image: url(../images/index_nav_bg.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 3;
  padding: 0 34px;
}

.index_navi_inner {
  width: 100%;
  aspect-ratio: 375/95;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}

/*-----------------------
      下層 header
------------------------*/
.header {
  display: block;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 375/120;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  background-image: url(../images/header_bg_img.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.header_title_img {
  position: absolute;
  display: block;
  top: 28%;
  left: 22%;
  width: 62%;
  aspect-ratio: 250/74.9;
  height: auto;
}
.header_title_img img {
  display: block;
  width: 100%;
  height: 100%;
}

#hamburger_area * {
  display: none;
}

/*ハンバーガーメニュー：トグルボタン*/
.hamburger_menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 24px;
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 100;
  cursor: pointer;
}

.hamburger_menu span {
  position: absolute;
  width: 100%;
  height: 3px;
  transition: 0.3s;
}
.hamburger_menu span:first-of-type {
  top: 0;
}
.hamburger_menu span:nth-of-type(2) {
  top: 50%;
}
.hamburger_menu span:last-of-type {
  top: 100%;
}

.hamburger_menu.active span:first-of-type {
  top: 50%;
  transform: rotate(225deg);
}
.hamburger_menu.active span:nth-of-type(2) {
  opacity: 0;
}
.hamburger_menu.active span:last-of-type {
  top: 50%;
  transform: rotate(-225deg);
}

#bar_color.hamburger_menu span {
  background-color: #444;
}

#bar_color.hamburger_menu.active span {
  background-color: #444;
}

/* スライドメニューのスタイル */
.slide_menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: right 0.3s ease-in-out;
  z-index: 99;
  transform: translateX(100%);
  transition: 0.3s;
}

.slide_menu_header {
  width: fit-content;
  height: 86px;
  display: flex;
  justify-content: left;
  align-items: center;
  padding-left: 20px;
}

.slide_menu ul {
  list-style: none;
  padding: 40px 0 20px;
  margin-top: 10px;
}

.slide_menu li {
  text-align: center;
  padding: 24px 0;
  border-bottom: solid 1px;
  transition: all 0.3s;
  line-height: 1.1;
}

#slide_menu li:last-of-type {
  padding-bottom: 0;
}

.slide_menu a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
}

.slide_menu li:hover {
  background-color: #c7c5c5;
}

.slide_menu.active {
  transform: translateX(0);
  box-shadow: -2px 0 2px rgba(0, 0, 0, 0.2);
}

.footer {
  width: 100%;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 30px 60px;
  background-color: #FFDA00;
  position: relative;
}
.footer::before {
  position: absolute;
  content: "";
  top: -64px;
  left: 0;
  width: 100%;
  height: 64px;
  background-color: #fff;
  background-image: url(../images/footer_bg_before_w.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer.idx::before {
  background-color: #EFEFEF;
  background-image: url(../images/footer_bg_before.svg);
}

.footer_text {
  color: #000;
  text-align: center;
}

@media (max-width: 960px){
  .mb25 {
    margin-bottom: 15px;
  }
  .mb30 {
    margin-bottom: 20px;
  }
  .mb35 {
    margin-bottom: 25px;
  }
  .mb40 {
    margin-bottom: 25px;
  }
  .mb45 {
    margin-bottom: 35px;
  }
  .mb50 {
    margin-bottom: 30px;
  }
  .mb55 {
    margin-bottom: 30px;
  }
  .mb60 {
    margin-bottom: 30px;
  }
  .mb65 {
    margin-bottom: 35px;
  }
  .mb70 {
    margin-bottom: 35px;
  }
  .mb75 {
    margin-bottom: 35px;
  }
  .mb80 {
    margin-bottom: 40px;
  }
  .mb85 {
    margin-bottom: 40px;
  }
  .mb90 {
    margin-bottom: 45px;
  }
  .mb95 {
    margin-bottom: 50px;
  }
  .mb100 {
    margin-bottom: 50px;
  }
  .mb110 {
    margin-bottom: 55px;
  }
  .mb120 {
    margin-bottom: 60px;
  }
  .mb125 {
    margin-bottom: 65px;
  }
  .mb130 {
    margin-bottom: 60px;
  }
  .mb140 {
    margin-bottom: 60px;
  }
  .mb150 {
    margin-bottom: 60px;
  }
  .mb160 {
    margin-bottom: 70px;
  }
  .mb170 {
    margin-bottom: 70px;
  }
  .mb180 {
    margin-bottom: 70px;
  }
  .mb190 {
    margin-bottom: 70px;
  }
  .mb200 {
    margin-bottom: 70px;
  }
}

@media (max-width: 767px){
  body {
    font-size: 14px;
    text-align: justify;
  }
  #hamburger_area * {
    display: block;
  }
}

@media print{
  body {
    width: 960px;
    margin: 0 auto;
  }
}