@charset "UTF-8";

/****************************************
Resetting
*****************************************/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  font-size: 100%;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  font-size: 16px;
}

body {
  width: 100%;
  line-height: 1.6;
  font-family: '游ゴシック体', 'Yu Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  font-weight: 500;
  max-width: 100%;
  overflow-x: hidden;
}

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

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: '';
  content: none;
}

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

input[type='submit'],
input[type='button'],
input[type='reset'] {
  border-radius: 0;
  appearance: auto;
  border: none;
  box-sizing: content-box;
  box-sizing: border-box;
  cursor: pointer;
}

div.debug {
  display: none;
  width: 100%;
}

/******************************************
normarise
******************************************/
* {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  transition: 0.5s;
}

a:hover {
  opacity: 0.8;
}

/******************************************
clearfix
******************************************/
.clearfix::after {
  content: '.';
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-table;
}

/* Hides from IE-mac \ */
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End hide from IE-mac */

/****************************************
Layout
*****************************************/

/* flexbox */
.flex {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
}

.flex--start {
  justify-content: flex-start;
}

.flex--center {
  justify-content: center;
}

.flex--end {
  justify-content: flex-end;
}

.flex--bet {
  justify-content: space-between;
}

.flex--around {
  justify-content: space-around;
}

/* col */
.col2 {
  width: 48%;
}

.col3 {
  width: 30%;
}

.col4 {
  width: 25%;
}

.col5 {
  width: 18.4%;
}

.col6 {
  width: 15%;
}

/* 並び替え */
.self--center {
  align-self: center;
}

.self--end {
  align-self: flex-end;
}

.self--start {
  align-self: flex-start;
}

.justify--start {
  justify-content: flex-start;
}

.justify--center {
  justify-content: center;
}

.justify--end {
  justify-content: flex-end;
}

.justify--between {
  justify-content: space-between;
}

.justify--even {
  justify-content: space-evenly;
}

/****************************************
modal window
*****************************************/
#cover {
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  display: block;
  background: rgb(0 0 0 / 80%);
  min-height: 100%;
  min-width: 100%;
}

#modal {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: block;
  width: 50%;
  height: auto;
  color: white;
  transform: translate(-50%, -50%);
}

@media screen and (width <= 768px) {
  #modal {
    top: 30%;
    width: 70%;
  }
}

@media screen and (width <= 480px) {
  #modal {
    width: 90%;
  }
}

#modal img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid cyan;
}

/****************************************
header
*****************************************/
.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  display: flex;
  width: 100%;
  height: 70px;
  margin: 0 auto;
  padding: 0 20px;
  background-image: url('../img/header_bg.png');
  background-size: cover;
  transition: 0.5s;
}

@media screen and (width <=480px) {
  .site-header {
    height: 56px;
    background-image: url('../img/header_bg_sp.png') center top no-repeat;
  }
}

.scroll.hide {
  transform: translateY(-70px);
}

@media screen and (width <=480px) {
  .scroll.hide {
    transform: translateY(-56px);
  }
}

.site-logo {
  align-self: center;
  margin: auto 0;
}

.site-logo a {
  font-size: 1.5em;
  color: #333;
}

.site-logo img {
  width: auto;
  height: 55px;
  margin: 5px 0;
}

@media screen and (width <= 1024px) {
  .site-logo img {
    width: 80%;
    height: auto;
  }
}

@media screen and (width <=480px) {
  .site-logo img {
    width: 150px;
    height: auto;
  }
}

.gnav {
  align-self: center;
  margin: auto 0;
}

.gnav__menu {
  display: flex;
  justify-content: flex-start;
}

.gnav__menu__item {
  align-self: center;
  font-size: 16px;
  color: #fff;
  margin-left: 20px;
}

.gnav__menu__item__link {
  font-size: 1em;
  color: #fff;
}

.gnav__menu__item__link__name {
  color: #333;
  margin-right: 5px;
}

.mnav__menu {
  overflow: hidden;
}

.mnav__menu2 {
  margin-top: 5%;
  overflow: hidden;
}

.mnav__menu__tittle {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px;
  font-size: 1em;
  color: #fff;
  background: linear-gradient(90deg, #f60, #d21626);
}

.mnav__menu__tittle2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px;
  font-size: 1em;
  color: #d21626;
  background: #efefef;
}

.mnav__menu__item {
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-bottom: solid 1px #d21626;
}

.mnav__menu__item2 {
  display: flex;
  flex-wrap: wrap;
  margin: 2% auto;
  padding: 0;
}

.mnav__menu__item2 input {
  flex-basis: 5%;
  margin-left: 1em;
  margin-top: 2%;
}

.mnav__menu__item2 label {
  flex-basis: 90%;
}

.mnav__menu__item__link {
  padding: 10px;
  font-size: 1em;
  color: #d21626;
}

/****************************************
main_contents
*****************************************/
body#index {
  background-color: #f5f5f5;
}

main#main {
  /* max-width: 1080px; */
  width: 100%;
  margin: auto;
  background-color: #f3d020;
  min-height: 100%;
}

/* Hero Section Styles */
section.hero {
  position: relative;
  display: flex;
  width: 100%;
  margin: 69px auto 0;

  /* max-width: 1080px; */
  background: url('../img/main_lp/mainLpKv.jpg') center top no-repeat;
  background-size: 100% auto;
}

@media screen and (width <= 1024px) {
  section.hero {
    margin: 69px auto 0;
  }
}

section.hero div.hero_img {
  flex-basis: 30%;
  height: auto;
  padding-top: 10px;
}

@media screen and (width <= 480px) {
  section.hero div.hero_img {
    display: none;
  }
}

section.hero div.hero__inner {
  display: flex;
  flex-direction: column;
  flex-basis: 40%;
  gap: 2rem;

  /* min-height: 75vh; */
  margin: 50px auto;
  max-width: 600px;
}

@media screen and (width <= 1550px) {
  section.hero div.hero__inner {
    margin: 20px auto 0;
    min-height: auto;
  }
}

@media screen and (width <= 1280px) {
  section.hero div.hero__inner {
    max-width: 450px;
  }
}

@media screen and (width <= 1024px) {
  section.hero div.hero__inner {
    max-width: 400px;
  }
}

@media screen and (width <= 900px) {
  section.hero div.hero__inner {
    max-width: 350px;
  }
}

@media screen and (width <= 480px) {
  section.hero div.hero__inner {
    flex-basis: 100%;
    gap: 1rem;
    margin: 10px auto 0;
    max-width: 300px;
  }
}

section.hero div.hero__inner p.hero__inner_btn_title {
  font-size: 2rem;
  color: #f30;
  text-align: center;
  font-family: 'BIZ-UDPゴシック';
  font-weight: 600;
  margin-bottom: -2rem;
  text-shadow: 2px 2px 0 rgb(0 0 0 / 30%);
}

section.hero div.hero__inner img {
  width: 100%;
  height: auto;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 5rem;
  font-size: 24px;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px #6a3906;
  background-color: #d21626;
  border: 3px solid #6a3906;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-shadow: 2px 2px 2px #600;
  transition: all 0.3s ease;
}

@media screen and (width <= 1280px) {
  .btn-primary {
    padding: 1rem 3rem;
  }
}

@media screen and (width <= 1024px) {
  .btn-primary {
    padding: 1rem 1.5rem;
    font-size: 20px;
  }
}

.btn-primary:hover {
  box-shadow: none;
  opacity: 1;
  transform: translateY(4px);
}

span.outline {
  padding: 5px 10px;
  font-size: 1rem;
  color: #d21626;
  background: #fff;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-shadow: none;
}

@media screen and (width <=480px) {
  span.outline {
    font-size: 0.75rem;
  }
}

.msg_groupe_wrap {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1.5fr 1fr;
  width: 100%;
  margin: auto;
}

@media screen and (width <= 480px) {
  .msg_groupe_wrap {
    row-gap: 0;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 10px;
  }
}

.msg_groupe_wrap .hero_img {
  margin: auto;
}

@media screen and (width <= 480px) {
  .msg_groupe_wrap .hero_img:nth-child(1) {
    order: 1;
  }

  .msg_groupe_wrap .hero_img:nth-child(2) {
    order: 2;
  }
}

.msg_groupe_wrap .msg_groupe {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
}

@media screen and (width <=1024px) {
  .msg_groupe_wrap .msg_groupe {
    gap: 10px;
  }
}

@media screen and (width <=480px) {
  .msg_groupe_wrap .msg_groupe {
    gap: 5px;
    grid-column: span 2;
    margin-bottom: 20px;
    order: 3;
  }
}

.msg_circle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  padding: 20px;
  font-size: 1.25rem;
  color: #f10;
  background: #f9f9f2;
  border-radius: 50%;
  box-shadow: 0 8px rgb(0 0 0 / 50%);
  text-align: center;
  line-height: 1.25;
  font-weight: 600;
}

@media screen and (width <=1280px) {
  .msg_circle {
    width: 120px;
    height: 120px;
    padding: 10px;
    font-size: 1rem;
  }
}

@media screen and (width <= 1024px) {
  .msg_circle {
    width: 100px;
    height: 100px;
    padding: 5px;
    font-size: 0.8rem;
  }
}

@media screen and (width <= 820px) {
  .msg_circle {
    width: 80px;
    height: 80px;
    font-size: 0.75rem;
  }
}

@media screen and (width <=480px) {
  .msg_circle {
    width: 120px;
    height: 120px;
    font-size: 1rem;
  }
}

.hero__asterisk {
  position: relative;
  display: block;
  font-size: 1rem;
  margin-left: 10px;
  padding-left: 1rem;
}

@media screen and (width <= 1280px) {
  .hero__asterisk {
    font-size: 0.875rem;
  }
}

.hero__asterisk::before {
  content: '※';
  position: absolute;
  left: 0;
  display: inline-block;
}

.sp_only {
  display: none;
}

@media screen and (width <= 480px) {
  .sp_only {
    display: block;
    margin-top: 4rem;
  }
}

/* Hero Section Styles END */

/* main_section1 Section Styles */
.main_section1 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  margin: 0 auto;
  padding-top: 40px;
}

@media screen and (width <= 480px) {
  .main_section1 {
    gap: 1rem;
  }
}

.main_section1::before,
.main_section1::after {
  content: 'TOY HUNTERS online TOY HUNTERS online';
  position: absolute;
  top: 40px;
  font-size: 5rem;
  color: #f3d020;
  font-family: 'Kosugi Maru', sans-serif;
  font-weight: 900;
  text-orientation: mixed;
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;
  white-space: nowrap;
  writing-mode: vertical-rl;
}

@media screen and (width <= 900px) {
  .main_section1::before,
  .main_section1::after {
    display: none;
  }
}

.main_section1::before {
  left: 0;
  transform: rotate(180deg);
}

.main_section1::after {
  right: 0;
}

.main_section_wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  margin: auto;
  padding: 40px 0;
  font-size: 1.5rem;
  background: url('../img/main_lp/main_section_bg.jpg') center top no-repeat;
  border-radius: 55px;
  box-shadow: 0 0 20px #f30;
  text-align: center;
  background-size: cover;
  max-width: 800px;
}

@media screen and (width <= 480px) {
  .main_section_wrapper {
    gap: 20px;
    padding: 20px 10px;
    box-shadow: 0 0 10px #f30;
  }
}

/*
.main_section_wrapper::before {
  content: '';
  position: absolute;
  z-index: -1;
  padding: 4px;
  background: linear-gradient(45deg, #b67b03 0%, #daaf08 45%, #fee9a0 70%, #daaf08 85%, #b67b03 90%);
  border-radius: 50px;
  box-sizing: border-box;
  inset: 0;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  mask-composite: exclude;
}
*/
.main_section_lead {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 !important;
  text-align: center;
  font-weight: bold;
}

.main_section_lead h2 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.main_section_lead h2 small {
  font-size: 1.125rem;
}

@media screen and (width <= 480px) {
  .main_section_lead h2 small {
    font-size: 0.875rem;
  }
}

.main_section_lead h2 span {
  font-size: 1.5rem;
}

@media screen and (width <= 480px) {
  .main_section_lead h2 span {
    font-size: 1.25rem;
  }
}

.main_section_lead h2 img {
  width: 100%;
  margin: 1rem auto 0;
  max-width: 500px;
}

@media screen and (width <= 480px) {
  .main_section_lead h2 img {
    max-width: 360px;
  }
}

.main_section_lead h2 strong {
  position: relative;
  font-size: 2.25rem;
  color: #f10;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  text-shadow: 3px 3px 0 #fd6;
}

@media screen and (width <= 480px) {
  .main_section_lead h2 strong {
    font-size: 1.25rem;
  }
}

.main_section_btn {
  margin-top: 2rem;
}

.main_section_btn img {
  position: absolute;
  right: -30px;
  bottom: -5%;
  width: 100%;
}

@media screen and (width <= 480px) {
  .main_section_btn img {
    right: -10px;
    bottom: 0;
  }
}

.main_section_baloon_text {
  position: relative;
  width: 100%;
  margin: auto;
  padding: 1rem;
  font-size: 1.5rem;
  color: #203864;
  background: linear-gradient(180deg, rgb(255 230 210) 50%, rgb(245 180 140));
  border-radius: 25px;
  text-align: center;
  border: 2px solid #70ad47;
  font-weight: bold;
  max-width: 700px;
}

@media screen and (width <= 480px) {
  .main_section_baloon_text {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
}

.main_section_baloon_text::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: rgb(255 230 210);
  border-left: 2px solid #70ad47;
  border-top: 2px solid #70ad47;
  transform: rotate(45deg);
}

.main_section_baloon_text em {
  color: #d03100;
}

.main_section_item {
  font-size: 2rem;
  text-align: center;
  line-height: 1.5;
  font-weight: bold;
}

.main_section_item em {
  font-size: 3rem;
}

.main_section_item.__box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin: auto;
  padding: 20px;
  font-size: 1.5rem;
  background: rgb(255 255 255 / 70%);
  border-radius: 25px;
  text-align: center;
  border: 1px solid #f60;
  max-width: 800px;
}

.main_section_item.__box .__child_box_wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px;
  border-top: 4px double #f60;
}

@media screen and (width <= 480px) {
  .main_section_item.__box .__child_box_wrapper {
    gap: 20px;
    padding: 20px 0;
  }
}

.main_section_item.__box.__child_box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.main_section_item.__box em {
  font-size: 2rem;
}

.main_section_item.__box small {
  font-size: 1rem;
}

.present_box,
.present_box2 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 230px;
  font-size: 2.25rem;
  color: lightgoldenrodyellow;
  background: url('../img/main_lp/frame_present.png') no-repeat center center;
  text-align: center;
  line-height: 1.5;
  background-size: contain;
  font-weight: bold;
}

.present_box::before,
.present_box2::before {
  content: url('../img/main_lp/__speec_bubble.png');
  position: absolute;
  top: -20px;
  left: 110px;
}

@media screen and (width <= 820px) {
  .present_box::before,
  .present_box2::before {
    left: 70px;
  }
}

@media screen and (width <= 768px) {
  .present_box::before,
  .present_box2::before {
    left: 50px;
  }
}

@media screen and (width <= 480px) {
  .present_box::before,
  .present_box2::before {
    top: -35px;
    left: -40px;
    transform: scale(0.5);
  }
}

.present_box2::before {
  content: url('../img/main_lp/__speec_bubble2.png');
}

.present_box small,
.present_box2 small {
  font-size: 1rem;
}

@media screen and (width <= 480px) {
  .present_box small,
  .present_box2 small {
    font-size: 0.875rem;
  }
}

.main_section_footer {
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: url('../img/main_lp/sec1_footer_bg.png') no-repeat center top;
  text-align: center;
  background-size: cover;
  margin-top: 100px;
  padding-bottom: 100px;
}

@media screen and (width <=768px) {
  .main_section_footer {
    margin-left: -20px;
    margin-right: -20px;
  }
}

@media screen and (width <=480px) {
  .main_section_footer {
    background: url('../img/main_lp/sec1_footer_bg_sp.png') no-repeat center bottom;
    background-size: cover;
    margin-left: -10px;
    margin-right: -10px;
  }
}

.main_section_footer img {
  width: fit-content;
  margin: -100px auto 0;
}

@media screen and (width <=480px) {
  .main_section_footer img {
    margin: -69px auto 0;
  }
}

.main_section_footer p {
  font-size: 1.125rem;
  color: #fff;
  line-height: 2.5;
}

.main_section_footer p em {
  font-size: 1.5rem;
  font-weight: 600;
}

/* main_section1 Section Styles END */

/* main_section2 Section Styles */
.main_section2 {
  display: flex;
  margin: 0 auto;
  padding: 125px 0;
  background: url('../img/main_lp/sec2_bg.jpg') no-repeat center top;
  background-size: cover;
}

@media screen and (width <= 820px) {
  .main_section2 {
    background: url('../img/main_lp/sec2_bg_820.jpg') no-repeat center top;
    background-size: cover;
  }
}

.main_section2 p {
  font-size: 1.125rem;
  color: #333;
  line-height: 2.5;
  margin-left: 40%;
}

.main_section2 p em {
  font-size: 1.5rem;
  font-weight: 600;
}

@media screen and (width <= 820px) {
  .main_section2 p {
    margin: auto;
    background: rgb(255 255 255 / 70%);
    border-radius: 10px;
    margin-left: 0;
  }
}

/* main_section2 Section Styles END */

/* main_section3 Section Styles */
.main_section3,
.main_section8,
.main_section11 {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
  padding: 40px;
  background: url('../img/main_lp/sec3_bg.png') no-repeat center top;
  background-size: cover;
}

.main_section3 .speech_bubble,
.main_section8 .speech_bubble,
.main_section11 .speech_bubble {
  position: relative;
  display: flex;
  margin: auto;
  padding: 20px 40px;
  font-size: 1.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px rgb(80 70 20 / 100%);
  text-align: center;
  border: 1px solid #000;
}

.main_section3 .speech_bubble::before,
.main_section8 .speech_bubble::before,
.main_section11 .speech_bubble::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: #fff;
  box-shadow: 3px 3px rgb(80 70 20 / 100%);
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
}

/* main_section3 Section Styles END */

/* section_best_place Styles */
.section_best_place {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin: 0 auto;
  padding: 100px 0;
  background: url('../img/main_lp/sec_best_place_bg.jpg') no-repeat center top;
  background-size: cover;
}

@media screen and (width <= 480px) {
  .section_best_place {
    gap: 1.5rem;
  }
}

.-best_place_title {
  position: relative;
  z-index: 0;
  font-size: 2.625rem;
  color: #333;
  text-align: center;
  font-weight: bold;
  text-shadow: 2px 2px 0 #fff;
}

.-best_place_title::after {
  content: 'BEST PLACE';
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 100%;
  font-size: 7rem;
  color: #fff;
  opacity: 0.6;
  transform: translate(-50%, -50%);
}

@media screen and (width <= 480px) {
  .-best_place_title {
    font-size: 1.5rem;
  }

  .-best_place_title::after {
    font-size: 3rem;
  }
}

ul.-best_place_list {
  display: flex;
  flex-direction: column;
  align-self: center;
  gap: 2rem;
  padding: 2rem;
  border-radius: 25px;
  background-color: #fff2cc;
}

@media screen and (width <= 480px) {
  ul.-best_place_list {
    gap: 1rem;
    padding: 1rem;
  }
}

.-best_place_list li {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

@media screen and (width <= 480px) {
  .-best_place_list li {
    gap: 1rem;
  }
}

.-best_place_list li img {
  object-fit: contain;
}

@media screen and (width <= 480px) {
  .-best_place_list li img {
    width: 80px;
  }
}

.-best_place_list li p {
  flex-basis: 600px;
  font-size: 1.25rem;
  text-align: left;
  border-bottom: 5px solid #e85;
  font-weight: 600;
  padding-bottom: 2px;
}

@media screen and (width <= 480px) {
  .-best_place_list li p {
    font-size: 1rem;
  }
}

.-best_place_img {
  margin: auto;
}

.-best_place_text {
  margin: auto;
  padding: 2rem;
  font-size: 1.125rem;
  border-radius: 25px;
  line-height: 2;
  background-color: #fff2cc;
}

.-best_place_text em {
  font-weight: 600;
}

.-best_place_text em.-align-center {
  display: block;
  font-size: 1.25rem;
  text-align: center;
}

/* section_best_place Styles */

/* main_section4 Section Styles */
.main_section4 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
  padding: 100px 0 0;
  background: #fef3e7;
}

.main_section4::after {
  content: '';
  position: absolute;
  bottom: -70px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  border-top: 70px solid #fef3e7;
  transform: translateX(-50%);
}

@media screen and (width <= 480px) {
  .main_section4 {
    gap: 1rem;
  }
}

.main_section4 h4.-main-sec-title {
  position: relative;
  z-index: 0;
  font-size: 2.625rem;
  color: #333;
  text-align: center;
  font-weight: bold;
  text-shadow: 2px 2px 0 #fff;
}

.main_section4 h4.-main-sec-title::after {
  content: 'FURTURE';
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 100%;
  font-size: 7rem;
  color: #ccc;
  font-weight: bold;
  opacity: 0.3;
  text-shadow: none;
  transform: translate(-50%, -50%);
}

@media screen and (width <= 480px) {
  .main_section4 h4.-main-sec-title {
    font-size: 1.5rem;
  }

  .main_section4 h4.-main-sec-title::after {
    font-size: 3rem;
  }
}

.main_section4 p.-main-sec-baloon {
  margin: auto;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  border-radius: 50px;
  background-color: #fff;
  border: 2px solid #fd6;
  font-weight: 600;
}

@media screen and (width <= 480px) {
  .main_section4 p.-main-sec-baloon {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    text-align: center;
  }
}

.main_section4 p.-main-sec-text {
  margin: auto;
  font-size: 1.875rem;
  font-weight: 600;
}

@media screen and (width <= 480px) {
  .main_section4 p.-main-sec-text {
    font-size: 1.125rem;
  }
}

.main_section4 h4.ribbon {
  padding: 20px 20px 30px;
  background: url('../img/main_lp/title_ribon.png') no-repeat center center;
  text-align: center;
  background-size: contain;
}

.main_section4 h4.ribbon p {
  font-size: 2.625rem;
  color: #fff;
  font-weight: 600;
}

.main_section4 .point_groupe {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.main_section4 .point_groupe li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 300px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
}

.main_section4 .point_groupe li h5 {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: #024083;
  text-align: center;
  line-height: 1.25;
  font-weight: 600;
  min-height: 60px;
}

.main_section4 .point_groupe li img {
  height: 180px;
}

.main_section4 .point_groupe li p {
  font-size: 1.125rem;
  text-align: center;
  line-height: 1.5;
}

.main_section4 .point_groupe li p em {
  font-weight: 600;
}

.point_groupe {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 3rem auto;
  padding: 0 1rem;
  max-width: 1200px;
}

.point_groupe li {
  flex: 1;
  padding: 1.5rem;
  box-sizing: border-box;
  max-width: 300px;
  min-width: 250px;
}

@media screen and (width <= 900px) {
  .point_groupe {
    flex-direction: column;
    align-items: center;
  }

  .point_groupe li {
    flex-basis: 33%;
    width: 33%;
  }
}

/* main_section4 Section Styles END */

/* main_section5 Section Styles */
.main_section5 {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 0 auto;
  padding: 150px 0 100px;
  background: url('../img/main_lp/sec5_bg.jpg') no-repeat center top;
  background-size: cover;
}

.main_section5 h4 {
  font-size: 2.625rem;
  color: #333;
  text-align: center;
  font-weight: bold;
  text-shadow: 2px 2px 0 #fff;
}

.main_section5__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: auto;
}

@media screen and (width <= 1050px) {
  .main_section5__inner {
    padding: 0 10px 2rem;
  }
}

div.speech_bubble_wrap {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media screen and (width <= 480px) {
  div.speech_bubble_wrap {
    gap: 2rem;
  }
}

.main_section5__inner p.speech_bubble,
.main_section5__inner p.speech_bubble2 {
  position: relative;
  display: flex;
  align-self: center;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: 4px 4px 4px rgb(0 0 0 / 10%);
  line-height: 1.5;
  border: 4px solid #70ad47;
}

@media screen and (width <= 480px) {
  .main_section5__inner p.speech_bubble,
  .main_section5__inner p.speech_bubble2 {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    text-align: center;
  }
}

.main_section5__inner p.speech_bubble:nth-child(2n + 1) {
  transform: translateX(-50px);
}

.main_section5__inner p.speech_bubble2:nth-child(2n + 1) {
  transform: translateX(50px);
}

@media screen and (width <= 1050px) {
  .main_section5__inner p.speech_bubble:nth-child(2n + 1) {
    transform: translateX(0);
  }

  .main_section5__inner p.speech_bubble2:nth-child(2n + 1) {
    transform: translateX(0);
  }
}

@media screen and (width <= 480px) {
  .main_section5__inner p.speech_bubble {
    transform: translateX(25%);
  }

  .main_section5__inner p.speech_bubble:nth-child(2n + 1) {
    transform: translateX(-25%);
  }

  .main_section5__inner p.speech_bubble2 {
    transform: translateX(-25%);
  }

  .main_section5__inner p.speech_bubble2:nth-child(2n + 1) {
    transform: translateX(25%);
  }
}

.main_section5__inner p.speech_bubble::before,
.main_section5__inner p.speech_bubble2::before {
  content: '';
  position: absolute;
  top: calc(50% - 7px);
  right: -10px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-right: 4px solid #70ad47;
  border-top: 4px solid #70ad47;
  transform: rotate(45deg);
}

.main_section5__inner p.speech_bubble2::before {
  right: auto;
  left: -10px;
  transform: rotate(-135deg);
}

@media screen and (width <= 480px) {
  .main_section5__inner p.speech_bubble::before,
  .main_section5__inner p.speech_bubble2::before {
    inset: auto auto -9px;
    transform: rotate(135deg);
  }
}

@media screen and (width <= 480px) {
  .main_section5__inner p.speech_bubble2::before {
    top: -9px;
    transform: rotate(-45deg);
  }
}

.main_section5__inner_img {
  width: 100%;
  margin: auto;
  max-width: 300px;
}

@media screen and (width <= 480px) {
  .main_section5__inner_img {
    max-width: 200px;
  }
}

.main_section5__inner p.speech_box {
  display: flex;
  padding: 2rem;
  font-size: 1.125rem;
  background: rgb(255 255 255 / 80%);
  line-height: 1.5;
  margin-top: 100px;
}

.main_section5__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px;
  font-size: 1.125rem;
  color: #fff;
  background: rgb(250 150 100 / 80%);
  line-height: 2.5;
}

@media screen and (width <= 480px) {
  .main_section5__footer {
    padding: 20px;
  }
}

.main_section5__footer .__flex_col_left {
  display: flex;
  flex-direction: column;
  flex-basis: 60%;
  gap: 2rem;
}

@media screen and (width <= 480px) {
  .main_section5__footer .__flex_col_left {
    flex-basis: 100%;
  }
}

.main_section5__footer .__flex_col_right {
  display: flex;
  flex-direction: column;
  flex-basis: 40%;
}

@media screen and (width <= 480px) {
  .main_section5__footer .__flex_col_right {
    flex-basis: 100%;
    margin-top: 2rem;
  }
}

.main_section5__footer .__flex_col_right img {
  width: 100%;
  margin: auto;
  border-radius: 5px;
  box-shadow: 2px 2px 5px rgb(0 0 0 / 50%);
  max-width: 300px;
}

@media screen and (width <= 480px) {
  .main_section5__footer .__flex_col_right img {
    margin: auto;
    max-width: 150px;
  }
}

.main_section5__footer ul.speech_box_list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 1.5rem;
}

.main_section5__footer ul.speech_box_list li {
  font-size: 1.25rem;
  line-height: 1.75;
  font-weight: 600;
  list-style: disc;
  text-shadow: 2px 2px rgb(0 0 0 / 30%);
}

@media screen and (width <= 1280px) {
  .main_section5__footer ul.speech_box_list li {
    font-size: 1.125rem;
  }
}

@media screen and (width <= 480px) {
  .main_section5__footer ul.speech_box_list li {
    font-size: 1rem;
  }
}

.main_section5__footer p {
  font-size: 1.25rem;
  line-height: 2;
  font-weight: 600;
  padding-left: 1.5rem;
  text-shadow: 2px 2px rgb(0 0 0 / 30%);
}

@media screen and (width <= 1280px) {
  .main_section5__footer p {
    font-size: 1.125rem;
  }
}

@media screen and (width <= 480px) {
  .main_section5__footer p {
    font-size: 1rem;
    padding-left: 0;
  }
}

.main_section5__footer p em {
  font-size: 1.5rem;
}

@media screen and (width <= 1280px) {
  .main_section5__footer p em {
    font-size: 1.25rem;
  }
}

@media screen and (width <= 480px) {
  .main_section5__footer p em {
    font-size: 1rem;
  }
}

/* main_section5 Section Styles END */

/* main_section6_new Section Styles */
.main_section6_new {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 0 auto;
  padding: 100px 0 0;
  background: #fff;
}

.main_section6_new h4 {
  font-size: 2.625rem;
  color: #333;
  text-align: center;
  font-weight: bold;
}

@media screen and (width <= 480px) {
  .main_section6_new h4 {
    font-size: 1.5rem;
  }
}

.sec6_new_list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
  margin: auto;
  max-width: 900px;
}

@media screen and (width <= 480px) {
  .sec6_new_list {
    padding: 0 10px;
  }
}

.sec6_new_list_item {
  position: relative;
  z-index: 0;
  display: flex;
  flex-basis: calc((100% - 40px) / 2);
  gap: 20px;
  padding: 1.75rem 1.5rem;
  background: #fff;
  box-shadow: 10px 10px 0 #ccc;
  border: 4px solid #fc0;
}

@media screen and (width <= 480px) {
  .sec6_new_list_item {
    flex-basis: 100%;
  }
}

.sec6_new_list_item img.__inner_col_l {
  width: 130px;
  height: auto;
  object-fit: contain;
}

.sec6_new_list_item .__inner_col_r {
  display: flex;
  flex-direction: column;
  flex-basis: calc(100% - 150px);
  gap: 10px;
}

.sec6_new_list_item .__inner_col_r h5 {
  font-size: 1.25rem;
  color: #d21626;
  text-align: center;
  border-bottom: 1px solid #d21626;
  font-weight: 600;
}

@media screen and (width <= 480px) {
  .sec6_new_list_item .__inner_col_r h5 {
    font-size: 1.125rem;
  }
}

.sec6_new_list_item .__inner_col_r p {
  font-size: 0.875rem;
  line-height: 1.5;
}

.sec6_new_list_item .__inner_col_r p span.__asterisk {
  position: relative;
  display: block;
  font-size: 0.75rem;
  color: #555;
  padding-left: 1.125rem;
}

.sec6_new_list_item .__inner_col_r p span.__asterisk::before {
  content: '※';
  position: absolute;
  left: 0;
}

.sec6_new_footer {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 30px;
  background-color: #f3d020;
}

.sec6_new_footer h5 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: auto;
  padding: 1rem;
  padding-right: 200px;
}

.sec6_new_footer h5::after {
  content: url('../img/main_lp/sec6_new_no.png');
  position: absolute;
  top: -25px;
  right: 0;
}

@media screen and (width <= 480px) {
  .sec6_new_footer h5 {
    padding-right: 0;
  }

  .sec6_new_footer h5::after {
    display: none;
  }
}

.sec6_new_footer h5 span {
  font-size: 2rem;
  color: #203864;
  font-weight: bold;
  text-shadow: 2px 2px 0 white, -2px -2px 0 white, 2px -2px 0 white, -2px 2px 0 white, 2px 0 0 white, -2px 0 0 white, 0 2px 0 white, 0 -2px 0 white;
}

@media screen and (width <= 480px) {
  .sec6_new_footer h5 span {
    font-size: 1.25rem;
    text-align: center;
  }
}

.sec6_new_footer h5 small {
  font-size: 1.5rem;
  color: #c30;
  text-align: center;
  font-weight: bold;
}

@media screen and (width <= 480px) {
  .sec6_new_footer h5 small {
    font-size: 1rem;
  }
}

.sec6_new_footer_grid {
  position: relative;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin: auto;
  max-width: 900px;
  padding-right: 200px;
}

.sec6_new_footer_grid::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 300px;
  background: url('../img/main_lp/sec6_new_charactor.png') no-repeat center top;
  background-size: contain;
}

@media screen and (width <= 480px) {
  .sec6_new_footer_grid {
    grid-template-columns: repeat(2, 1fr);
    padding-right: 0;
  }

  .sec6_new_footer_grid::after {
    display: none;
  }
}

.sec6_new_footer_grid li {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sec6_new_footer_grid li img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.sec6_new_footer_grid li p {
  font-size: 0.875rem;
  line-height: 1.5;
  padding-left: 1rem;
}

.sec6_new_footer p.sec6_new_footer_p {
  width: 100%;
  margin: auto;
  padding: 1.5rem;
  font-size: 1.25rem;
  color: #024083;
  text-align: center;
  line-height: 2;
  background-color: rgb(255 255 255 / 80%);
  max-width: 800px;
}

.sec6_new_startup {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 100px 0;
  background: url('../img/main_lp/sec6_startup_bg.jpg') no-repeat center bottom;
  background-size: cover;
  margin-top: -60px;
}

.sec6_new_startup h5 {
  position: relative;
  z-index: 0;
  font-size: 2.625rem;
  color: #c30;
  text-align: center;
  font-weight: bold;
  text-shadow: 2px 2px 0 #fff;
}

.sec6_new_startup h5::after {
  content: "LET's START!";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 100%;
  font-size: 7rem;
  color: #fe6;
  opacity: 0.6;
  transform: translate(-50%, -50%);
}

@media screen and (width <=480px) {
  .sec6_new_startup h5 {
    font-size: 1.5rem;
  }

  .sec6_new_startup h5::after {
    font-size: 3rem;
  }
}

.sec6_new_startup_p {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: auto;
  max-width: 900px;
  padding-top: 2rem;
}

.sec6_new_startup_p span.oval {
  padding: 1rem 1.5rem;
  font-size: 1.5rem;
  color: #f60;
  border-radius: 50%;
  box-shadow: 0 0 20px #f3d020;
  text-align: center;
  background-color: #fff;
  font-weight: bold;
}

@media screen and (width <=480px) {
  .sec6_new_startup_p {
    justify-content: space-evenly;
  }

  .sec6_new_startup_p span.oval {
    padding: 0.875rem 1.25rem;
    font-size: 1.125rem;
  }
}

.sec6_new_startup h6 {
  margin: auto;
  font-size: 1.5rem;
  color: #c30;
  font-weight: bold;
}

@media screen and (width <=480px) {
  .sec6_new_startup h6 {
    font-size: 1rem;
  }
}

.sec6_new_startup img {
  margin: auto;
  object-fit: contain;
}

.sec6_new_startup_lead {
  margin: auto;
  font-size: 1.5rem;
  color: #07a;
  font-weight: bold;
  text-shadow: 2px 2px 0 white, -2px -2px 0 white, 2px -2px 0 white, -2px 2px 0 white, 2px 0 0 white, -2px 0 0 white, 0 2px 0 white, 0 -2px 0 white;
}

/* main_section6_new Section Styles END */

/* main_section6 Section Styles */
.main_section6 {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
  background: url('../img/main_lp/sec6_bg.jpg') no-repeat center top;
  background-size: cover;
}

.main_section6 h4 {
  position: relative;
  padding: 50px 0 0;
  font-size: 2.625rem;
  color: #333;
  background: linear-gradient(180deg, #f3d020 10%, #f60);
  text-align: center;
  line-height: 1.5;
  font-weight: bold;
  text-shadow: 2px 2px 0 white, -2px -2px 0 white, 2px -2px 0 white, -2px 2px 0 white, 2px 0 0 white, -2px 0 0 white, 0 2px 0 white, 0 -2px 0 white;
}

.main_section6 h4::before {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  border-top: 40px solid #f60;
  transform: translateX(-50%);
}

@media screen and (width <= 900px) {
  .main_section6 h4::before {
    bottom: -20px;
    border-top: 20px solid #f60;
  }
}

.main_section6 .point_list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100%;
  margin: 50px auto 0;
}

.main_section6 .point_list__item {
  position: relative;
  display: flex;
  gap: 20px;
  width: 800px;
  margin: auto;
  padding: 40px 20px;
  background: #fff;
  border-radius: 10px;
}

@media screen and (width <= 900px) {
  .main_section6 .point_list__item {
    width: calc(100% - 40px);
  }
}

.main_section6 .point_list__item::after {
  content: url('../img/main_lp/icon_point1.png');
  position: absolute;
  top: -40px;
  left: -10px;
}

.main_section6 .point_list__item:nth-child(2)::after {
  content: url('../img/main_lp/icon_point2.png');
}

.main_section6 .point_list__item:nth-child(3)::after {
  content: url('../img/main_lp/icon_point3.png');
}

.main_section6 .point_list__item img {
  align-self: center;
  width: 202px;
  height: 151px;
}

.main_section6 .point_list__item_inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main_section6 .point_list__item_inner h5 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.main_section6 .point_list__item_inner h5 small {
  font-size: 1rem;
  text-align: center;
}

.main_section6 .point_list__item_inner p {
  font-size: 0.9375rem;
  line-height: 2;
}

.main_section6 h4 p {
  font-size: 2.625rem;
  color: #fff;
  font-weight: 600;
}

.sec6_footer {
  width: 100%;
  margin: auto;
  padding: 50px 0;
  font-size: 1.25rem;
  background: linear-gradient(180deg, #fff, #aef);
  text-align: center;
  line-height: 2;
  text-shadow: 2px 2px 0 white, -2px -2px 0 white, 2px -2px 0 white, -2px 2px 0 white, 2px 0 0 white, -2px 0 0 white, 0 2px 0 white, 0 -2px 0 white;
}

/* main_section6 Section Styles END */

/* main_section7 Section Styles */
.main_section7 {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
  padding: 80px 0 0;
  background: #f3d020;
}

.main_section7 h4 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 2.625rem;
  text-align: center;
  font-weight: bold;
}

.main_section7 ul.voice_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.main_section7 ul.voice_list li {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 800px;
  margin: auto;
  padding: 40px;
  background: #fff;
  border-radius: 10px;
}

@media screen and (width <= 900px) {
  .main_section7 ul.voice_list li {
    width: 100%;
  }
}

.main_section7 ul.voice_list li img {
  align-self: center;
  width: 100px;
  height: 1 00;
}

.main_section7 ul li div.voice_list_inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main_section7 ul.voice_list li div.voice_list_inner h5 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 600;
}

.main_section7 ul.voice_list li div.voice_list_inner h5 small {
  font-size: 1rem;
}

.main_section7 ul.voice_list li p {
  font-size: 1.125rem;
  line-height: 1.5;
}

.asterisk_wrap {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin: auto;
  max-width: 800px;
}

.section_end_lead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
  background: url('../img/main_lp/sec7_end_lead_bg.jpg') no-repeat center center;
  background-size: cover;
}

@media screen and (width <= 1024px) {
  .section_end_lead {
    margin: 0 -1.5rem -1.5rem;
    padding: 2rem;
  }
}

@media screen and (width <= 480px) {
  .section_end_lead {
    margin: 0;
  }
}

.section_end_lead h5 {
  font-size: 2rem;
  color: #fff;
  text-align: center;
  font-weight: bold;
  text-shadow: 2px 2px 5px #f63, -2px -2px 5px #f63, 2px -2px 5px #f63, -2px 2px 5px #f63, 2px 0 5px #f63, -2px 0 5px #f63, 0 2px 5px #f63, 0 -2px 5px #f63;
}

.section_end_lead h5 em {
  font-size: 2.625rem;
  font-weight: bold;
}

@media screen and (width <= 480px) {
  .section_end_lead h5 {
    font-size: 1.5rem;
  }

  .section_end_lead h5 em {
    font-size: 2rem;
  }
}

.section_end_lead h6 {
  position: relative;
  align-self: center;
  padding: 0 2rem;
  font-size: 1.5rem;
  color: #444;
  text-align: center;
  font-weight: bold;
  text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff;
}

.section_end_lead h6::before,
.section_end_lead h6::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  height: 40px;
  margin: auto;
  background: url('../img/main_lp/decoration.png') no-repeat center center;
  background-size: cover;
}

.section_end_lead h6::before {
  left: -100px;
}

.section_end_lead h6::after {
  right: -100px;
  transform: scaleX(-1);
}

@media screen and (width <= 480px) {
  .section_end_lead h6::before,
  .section_end_lead h6::after {
    display: none;
  }
}

.section_end_lead p {
  font-size: 1rem;
  color: #c30;
  text-align: center;
  line-height: 2;
  font-weight: bold;
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;
}

@media screen and (width <= 480px) {
  .section_end_lead p {
    font-size: 1.25rem;
  }
}

/* main_section7 Section Styles END */

/* main_section8 Section Styles */
.main_section8 {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
  padding: 80px 0 0;
  background: url('../img/main_lp/sec8_bg.jpg') no-repeat center center;
  background-size: cover;
}

.main_section8 h4 {
  position: relative;
  z-index: 0;
  font-size: 2.625rem;
  color: #024083;
  text-align: center;
  line-height: 1.25;
  font-weight: bold;
  text-shadow: 2px 2px 2px white, -2px -2px 2px white, 2px -2px 2px white, -2px 2px 2px white, 2px 0 2px white, -2px 0 2px white, 0 2px 2px white, 0 -2px 2px white;
}

.main_section8 h4::after {
  content: 'INFORMATION';
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 100%;
  font-size: 7rem;
  color: #ccf;
  opacity: 0.6;
  text-shadow: none;
  transform: translate(-50%, -50%);
}

@media screen and (width <= 480px) {
  .main_section8 h4 {
    font-size: 1.5rem;
  }

  .main_section8 h4::after {
    font-size: 3rem;
  }
}

.list_user_wrap,
.list_dealer_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  margin: auto;
  max-width: 900px;
}

@media screen and (width <= 480px) {
  .list_user_wrap,
  .list_dealer_wrap {
    flex-direction: column;
  }
}

.list_user_label,
.list_dealer_label {
  position: relative;
  display: flex;
  align-items: center;
  align-self: flex-start;
  justify-content: center;
  width: 100px;
  height: 40px;
  font-size: 0.875rem;
  color: #fff;
  background: linear-gradient(180deg, #aef, #024083);
  clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
  font-weight: 600;
  padding-left: 0.25rem;
  padding-right: 1rem;
  text-shadow: 1px 1px 0 #024083, -1px -1px 0 #024083, 1px -1px 0 #024083, -1px 1px 0 #024083, 1px 0 0 #024083, -1px 0 0 #024083;
}

.list_dealer_label {
  background: linear-gradient(180deg, #fe6, #d03100);
  text-shadow: 1px 1px 0 #d03100, -1px -1px 0 #d03100, 1px -1px 0 #d03100, -1px 1px 0 #d03100, 1px 0 0 #d03100, -1px 0 0 #d03100;
}

@media screen and (width <= 480px) {
  .list_user_label,
  .list_dealer_label {
    align-self: center;
  }
}

.list_user_grid,
.list_dealer_grid {
  position: relative;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  width: calc(100% - 120px);
}

@media screen and (width <= 480px) {
  .list_user_grid,
  .list_dealer_grid {
    width: 100%;
  }
}

.list_user_grid li,
.list_dealer_grid li {
  display: flex;
  gap: 10px;
}

@media screen and (width <= 480px) {
  .list_user_grid li,
  .list_dealer_grid li {
    flex-direction: column;
  }
}

.list_user_grid li h5,
.list_dealer_grid li h5 {
  align-self: center;
  width: 150px;
  padding: 0.25rem 0.5rem;
  font-size: 1rem;
  background: #fff;
  border-radius: 25px;
  text-align: center;
  border: 1px solid #70ad47;
}

.list_dealer_grid li h5 {
  border: 1px solid #f60;
}

.list_user_grid li p,
.list_dealer_grid li p {
  align-self: center;
  width: calc(100% - 170px);
  font-size: 0.875rem;
}

@media screen and (width <= 480px) {
  .list_user_grid li p,
  .list_dealer_grid li p {
    align-self: center;
    width: 100%;
  }
}

.y-or-n_list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  margin: auto;
  max-width: 900px;
  padding-left: 3rem;
}

.y-or-n_list li {
  display: flex;
  align-items: center;
}

.y-or-n_list li.y h5,
.y-or-n_list li.n h5 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  font-size: 1rem;
  color: #fff;
  background: #39f;
  border-radius: 50%;
  text-align: center;
  line-height: 1.25;
  font-weight: bold;
}

.y-or-n_list li.n h5 {
  background: #f60;
}

.y-or-n_list li.y h5::before,
.y-or-n_list li.n h5::before {
  position: absolute;
}

.y-or-n_list li.y h5::before {
  content: url('../img/main_lp/sec8_good.png');
  top: -40px;
  left: -40px;
}

.y-or-n_list li.n h5::before {
  content: url('../img/main_lp/sec8_stop.png');
  top: -20px;
  left: -20px;
}

.y-or-n_list li.y p,
.y-or-n_list li.n p {
  width: calc(100% - 120px);
  padding: 1.25rem 2rem 1.25rem 3rem;
  font-size: 1rem;
  background: rgb(50 150 255 / 10%);
  border-radius: 4px;
  margin-left: -30px;
}

.y-or-n_list li.n p {
  background: rgb(255 150 50 / 10%);
}

.caution_dl {
  position: relative;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  margin: auto;
  padding-left: 120px;
}

.caution_dl::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100px;
  height: 80px;
  background: url('../img/main_lp/sec8_person.png') no-repeat center center;
  background-size: contain;
  transform: translateY(-50%);
}

@media screen and (width <= 480px) {
  .caution_dl {
    margin: 100px auto 0;
    padding-left: 0;
  }

  .caution_dl::before {
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.caution_dl dt {
  grid-column: span 2;
  font-size: 1rem;
  text-align: center;
}

.caution_dl dd {
  padding: 0.5rem;
  font-size: 0.875rem;
  border-radius: 10px;
  text-align: center;
  background-color: burlywood;
  border: 2px solid #e85;
}

.sec8_policy {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin: 80px auto 0;
  padding: 1.5rem;
  border-radius: 10px;
  background-color: #edc;
  border: 3px solid #e85;
  max-width: 900px;
}

.sec8_policy::before {
  content: url('../img/main_lp/sec8_policy.png');
  position: absolute;
  top: -40px;
  left: -50px;
}

.sec8_policy::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: 0;
  width: 200px;
  height: 150px;
  background: url('../img/main_lp/sec8_check.png') no-repeat center center;
  background-size: contain;
}

@media screen and (width <= 1050px) {
  .sec8_policy {
    padding: 1rem 1rem 160px;
  }

  .sec8_policy::before {
    left: -0;
  }

  .sec8_policy::after {
    right: 0;
  }
}

@media screen and (width <= 480px) {
  .sec8_policy::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .sec8_policy::after {
    right: 50%;
    transform: translateX(50%);
  }
}

.sec8_policy h5 {
  font-size: 1rem;
  text-align: center;
  padding-top: 1rem;
}

.sec8_policy_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sec8_policy_list li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: auto;
  max-width: 600px;
}

.sec8_policy_list li span.nmb {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  font-size: 1.5rem;
  color: #333;
  background: linear-gradient(45deg, #e85, #f30);
  border-radius: 50%;
  font-weight: 600;
  text-shadow: 2px 2px 2px #fff, -2px -2px 2px #fff, 2px -2px 2px #fff, -2px 2px 2px #fff, 2px 0 2px #fff, -2px 0 2px #fff, 0 2px 2px #fff, 0 -2px 2px #fff;
}

.sec8_policy_list li span.text {
  width: 100%;
  padding: 0.5rem 1rem 0.5rem 3rem;
  font-size: 1.125rem;
  color: #d21626;
  background: #fff;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  margin-left: -2rem;
}

.sec8_after_text {
  margin: auto;
  font-size: 1.25rem;
  color: #07a;
  font-weight: 600;
  text-shadow: 2px 2px 2px #fff, -2px -2px 2px #fff, 2px -2px 2px #fff, -2px 2px 2px #fff, 2px 0 2px #fff, -2px 0 2px #fff, 0 2px 2px #fff, 0 -2px 2px #fff;
}

.benefit_box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 40px 0;
  background: #f3d020;
}

.benefit_box img {
  width: 100%;
  margin: auto;
  max-width: 800px;
  object-fit: contain;
}

.benefit_box .asterisk_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  width: auto;
  margin: auto;
}

/* main_section8 Section Styles END */

/* main_section9 Section Styles */
.main_section9 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 140px;
  margin: 0 auto;
  padding: 0 0 80px;
  background: #024083;
}

.main_section9 .sec9_header {
  position: relative;
  display: flex;
  width: 100vw;
  margin: auto;
  padding: 40px 0 0;
  background-color: #fff9e7;
}

.main_section9 .sec9_header::after {
  content: '';
  position: absolute;
  bottom: -70px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  border-top: 70px solid #fff9e7;
  transform: translateX(-50%);
}

.main_section9 .sec9_header p {
  margin: auto;
  font-size: 1.5rem;
  color: #024083;
  text-align: center;
  font-weight: 600;
  text-shadow: 2px 2px 2px #fff, -2px -2px 2px #fff, 2px -2px 2px #fff, -2px 2px 2px #fff, 2px 0 2px #fff, -2px 0 2px #fff, 0 2px 2px #fff, 0 -2px 2px #fff;
}

.main_section9 img.ribon {
  position: absolute;
  z-index: 1;
  top: 25px;
  right: 0;
  left: 0;
  margin: auto;
}

.main_section9 h4 {
  font-size: 2.625rem;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

.main_section9_inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 10%);
  box-sizing: border-box;
  max-width: 1000px;
}

@media screen and (width <= 768px) {
  .main_section9_inner {
    gap: 20px;
    width: auto;
    margin: 0 1rem;
    padding: 1.5rem;
  }
}

.main_section9_inner h5 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 1rem 0;
  background: linear-gradient(45deg, #f8f7e1 0%, #f0eccb 100%);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 10%);
  text-align: center;
  border: 1px solid #f3d020;
  font-weight: bold;
}

.main_section9_inner h5 strong {
  font-size: 2rem;
  color: #024083;
}

@media screen and (width <= 480px) {
  .main_section9_inner h5 strong {
    font-size: 1.25rem;
  }
}

.main_section9_inner h5 small {
  font-size: 1.25rem;
  line-height: 1.5;
}

@media screen and (width <= 480px) {
  .main_section9_inner h5 small {
    font-size: 0.875rem;
  }
}

.main_section9_inner p {
  font-size: 1.25rem;
  text-align: center;
  line-height: 2;
  font-weight: bold;
}

@media screen and (width <= 480px) {
  .main_section9_inner p {
    font-size: 1.125rem;
  }
}

.main_section9_inner h6 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.8;
  font-weight: bold;
  margin-top: 40px;
}

.main_section9_inner h6 img {
  width: 100%;
  margin: auto;
  max-width: 500px;
}

.main_section9_inner h6 strong {
  font-size: 2.25rem;
  background: linear-gradient(90deg, #f60, #d21626);
  background-clip: text;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  -webkit-text-fill-color: transparent;
}

@media screen and (width <= 480px) {
  .main_section9_inner h6 strong {
    font-size: 1.5rem;
  }
}

/* main_section9 Section Styles END */

/* main_section10 Section Styles */
.main_section10 {
  position: relative;
  margin: 0 auto;
  padding: 80px 0 160px;
  background: url('../img/main_lp/sec10_bg.png') no-repeat center top;
  background-size: cover;
}

.main_section10::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 50%;
  width: 111px;
  height: 75px;
  background-image: url('../img/main_lp/logo.png');
  background-position: center;
  background-size: cover;
  transform: translateX(-50%);
}

.main_section10 h4 {
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
}

@media screen and (width <= 480px) {
  .main_section10 h4 {
    font-size: 1.5rem;
  }
}

.main_section10 p {
  width: 800px;
  margin: 10px auto 0;
  font-size: 1.25rem;
  text-align: center;
  line-height: 2.5;
}

@media screen and (width <= 800px) {
  .main_section10 p {
    width: 100%;
  }
}

@media screen and (width <= 480px) {
  .main_section10 p {
    font-size: 0.875rem;
  }
}

/* main_section10 Section Styles END */

/* main_section11 Section Styles */
.main_section11 p {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
  text-align: center;
  line-height: 1.5;
}

.main_section11 p.highlight_text {
  margin: auto;
  font-size: 2rem;
  color: #024083;
  text-align: center;
  font-weight: 600;
  text-shadow: 2px 2px 2px #fff, -2px -2px 2px #fff, 2px -2px 2px #fff, -2px 2px 2px #fff, 2px 0 2px #fff, -2px 0 2px #fff, 0 2px 2px #fff, 0 -2px 2px #fff;
}

/****************************************
footer
*****************************************/

/* More info */
.copyright {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  margin: auto;
  padding: 40px 0;
  background: url('../img/header_bg.png') no-repeat center top;
  background-size: cover;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.copyright p {
  align-self: center;
  font-size: 0.875rem;
}

@media screen and (width <= 480px) {
  .copyright p {
    font-size: 0.75rem;
    letter-spacing: 0;
  }
}

.copyright ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.copyright ul li {
  list-style: none;
}

.copyright ul li a {
  font-size: 0.875rem;
  color: #fff;
  text-decoration: underline;
}

.copyright ul li a:hover {
  color: #07f;
}

.hidden {
  display: none;
}

/* topに戻るボタン */
.pagetop {
  position: fixed;
  z-index: 1;
  bottom: 5vh;
  left: 5vw;
  width: 50px;
  height: 50px;
  background: linear-gradient(0deg, #f60, #d21626);

  /* opacity: 0.6; */
  border-radius: 50%;
}

@media screen and (width <=480px) {
  .pagetop {
    bottom: 22%;
  }
}

.pagetop a {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  margin: 20px 0 0 15px;
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  box-sizing: border-box;
  text-decoration: none;
  transform: rotate(-45deg);
}

/****************************************
その他
*****************************************/

/* 注釈 */
._asterisk {
  font-size: 0.875rem;
  line-height: 1.25;
  font-weight: normal;
  padding-left: 1.5rem;
}

._asterisk::before {
  content: '※';
}

@media screen and (width <= 480px) {
  ._asterisk {
    position: relative;
    font-size: 0.8125rem;
    text-align: left;
    padding-left: 1rem;
  }

  ._asterisk::before {
    position: absolute;
    left: 0;
  }
}

/* ボタンリンク無効 */
.no_link {
  pointer-events: none;
}

/* BR */
.__pc_br {
  display: block;
}

.__sp_br {
  display: none;
}

@media screen and (width <=480px) {
  .__pc_br {
    display: none;
  }

  .__sp_br {
    display: block;
  }
}

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

/* レスポンシブイメージ */
img {
  display: block;
  height: auto;
  max-width: 100%;
}

/* レスポンシブブレークポイント */

/* タブレットサイズ */
@media screen and (width <= 1024px) {
  html {
    font-size: 15px;
  }

  .main_section_lead,
  .main_section2 p,
  .main_section3,
  .main_section4,
  .main_section7,
  .main_section8,
  .main_section11 {
    padding: 1.5rem 0 0;
  }

  .main_section5 {
    padding: 150px 0 0;
  }

  .main_section9 {
    padding: 0 0 40px;
  }

  .main_section10 {
    padding: 80px 0 160px;
  }
}

/* レスポンシブブレークポイント */

/* header用 */
@media screen and (width <= 854px) {
  .login {
    display: none;
  }

  .login2 {
    display: flex;
  }

  .menu_btn {
    display: none;
  }
}

/* スマートフォンサイズ */
@media screen and (width <= 768px) {
  section.main_section1 {
    padding: 1rem 20px;
  }

  .site-logo img {
    max-width: 180px;
  }

  /* セクション共通 */

  h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  /* ポイントグループ */
  .point_groupe {
    flex-direction: column;
    align-items: center;
  }

  .point_groupe li {
    width: 100%;
    margin-bottom: 2rem;
    max-width: 300px;
  }
}

/* 小さなスマートフォン */
@media screen and (width <= 480px) {
  section.hero {
    height: auto;
    margin: 56px auto 5px;
    background: url('../img/main_lp/mainLpKv_sp.jpg') no-repeat center top;
    background-size: 100% auto;
  }

  section.hero div.hero__inner img {
    width: 90%;
    margin: auto;
  }

  section:not(.hero) {
    padding: 1rem 0 0;
  }

  section.main_section1 {
    padding: 1rem 10px;
  }

  section.main_section6 {
    padding: 0;
  }

  section.main_section9 {
    padding: 0;
  }

  section.main_section10 {
    padding: 80px 0 160px;
  }

  .main_section_lead,
  .main_section2 p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .main_section_item {
    font-size: 0.9rem;
  }

  .main_section_item h3 {
    font-size: 1rem;
  }

  .main_section_item em {
    font-size: 1.25rem;
  }

  .main_section_item p {
    font-size: 0.875rem;
  }

  .main_section_item.__box {
    align-self: center;
    gap: 10px;
    width: calc(100%);
    padding: 10px;
  }

  .main_section_item.__box em {
    font-size: 1.125rem;
  }

  .cvBtn {
    margin: 320px auto 0;
  }

  .present_box,
  .present_box2 {
    align-self: center;
    width: calc(100% - 20px);
    height: 160px;
    font-size: 1.25rem;
  }

  .btn-primary {
    width: 300px;
    padding: 0.5rem 1rem;
    font-size: 1.125rem;
  }

  .btn-primary.w-auto {
    width: auto;
  }

  .main_section_footer p em {
    font-size: 1.25rem;
    font-weight: 600;
  }

  .main_section_footer p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .main_section2 {
    background: url('../img/main_lp/sec2_bg_sp.png') no-repeat left bottom;
    background-size: cover;
    margin-top: -70px;
    min-height: 780px;
  }

  .main_section2 p {
    background: none;
    margin-left: 0;
    margin-top: 70px;
  }

  .main_section2 p em {
    font-size: 1.25rem;
    font-weight: 600;
  }

  .main_section3,
  .main_section8,
  .main_section11 {
    gap: 2rem;
  }

  .main_section3 .speech_bubble,
  .main_section8 .speech_bubble,
  .main_section11 .speech_bubble {
    display: flex;
    justify-content: center;
    width: 300px;
    padding: 1rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
  }

  .main_section4 h4.ribbon p {
    font-size: 1.5rem;
  }

  .point_groupe {
    margin: 0 auto;
  }

  .main_section5 {
    gap: 40px;
    padding-top: 30px !important;
  }

  .main_section5 h4 {
    z-index: 1;
    font-size: 1.5rem;
  }

  .main_section5__inner {
    flex-direction: column;
  }

  .main_section5__inner:first-of-type {
    margin-top: 0;
  }

  .main_section5__inner p.speech_box {
    margin-top: 0;
  }

  .main_section6 h4 {
    padding: 20px 10px 0;
    font-size: 1.5rem;
  }

  .main_section6 .point_list__item {
    flex-direction: column;
  }

  .main_section6 .point_list__item_inner h5 {
    font-size: 1.25rem;
  }

  .main_section7 h4 {
    font-size: 1.5rem;
  }

  .main_section7 ul.voice_list {
    padding: 0 10px;
  }

  .main_section7 ul.voice_list li div.voice_list_inner h5 {
    font-size: 1.25rem;
  }

  .main_section7 ul.voice_list li div.voice_list_inner p {
    font-size: 1rem;
  }

  .sec8_after_text {
    padding: 0 10px;
    font-size: 1.125rem;
  }

  .main_section9::before,
  .main_section9::after {
    height: 20px;
  }

  .main_section9::before {
    bottom: 36px;
  }

  .main_section9::after {
    top: 36px;
  }

  .main_section9 img.ribon {
    width: 100px;
  }

  .main_section9 h4 {
    font-size: 1.5rem;
  }

  .main_section9 .sec9_header p {
    font-size: 1.125rem;
  }

  .main_section9_inner h5 {
    font-size: 1.25rem;
  }

  .main_section9_inner h6 {
    font-size: 0.8125rem;
  }

  .main_section9_inner {
    margin: 10px;
    padding: 0.5rem;
  }

  .main_section11 p.highlight_text {
    font-size: 1.25rem;
  }

  .copyright ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .copyright ul li {
    position: relative;
    flex-basis: calc(50% - 20px);
    padding-left: 1.5rem;
  }

  .copyright ul li::before {
    content: '■';
    position: absolute;
    left: 0;
    display: block;
  }

  .w-100 {
    width: 100% !important;
  }
}
