@charset "UTF-8";
/* CSS Document */

/*******************************
* ResetCSS
*******************************/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

ul,
li {
  list-style: none;
}

/***********************
root設定
***********************/

body {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
}

/***********************
表示設定
***********************/

.sp {
  display: none;
}

@media screen and (max-width: 480px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/***********************
フォント設定
***********************/
.en {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 400;
}

/***********************
画像設定
***********************/
img {
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/***********************
リンク設定
***********************/

a {
  text-decoration: none;
  color: initial;
  transition: all 0.3s;
}

/***********************
レイアウト
***********************/

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: block;
  min-height: 1%;
  clear: both;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex.between {
  justify-content: space-between;
}

.flex.reverse {
  flex-direction: row-reverse;
}

.flex.start {
  justify-content: flex-start;
}

.flex.end {
  justify-content: flex-end;
}

#wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 86px;
}

/* #main {
  transform: rotate(0.05deg);
} */

@media screen and (max-width: 900px) {
  #wrapper {
    padding-top: 76px;
  }
}

/***********************
Utils
***********************/

.ly_inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 1100px) {
  .ly_inner {
    padding: 0 20px;
  }
}

@media screen and (max-width: 480px) {
}

/***********************
Header
***********************/

#ly_header {
  position: fixed;
  z-index: 9000;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;
  background: #fff;
  padding-left: 80px;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
  transform: rotate(0.05deg);
}

#ly_header .flex {
  height: 100%;
  align-items: center;
}

#ly_header .logo {
  width: 273px;
}

.un_menuTrigger {
  display: none;
}

.bl_menu {
  flex: 1;
}

.bl_hNav {
  width: 100%;
}

.bl_hNav li {
  margin-left: 50px;
  position: relative;
}

.bl_hNav li a {
  position: relative;
  display: block;
  height: 86px;
  padding: 38px 0 33px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
}
.bl_hNav li a::after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background-color: #E95532;
  transition-duration: 0.3s;
  opacity: 0;
}

.bl_hNav li a:hover {
  color: #E95532;
}
.bl_hNav li a:hover::after {
  opacity: 1;
}

.bl_hNav li.last{
  position: relative;
  width: 110px;
  height: 86px;
}

.bl_hNav li.last a {
  display: block;
  position: absolute;
  width: 110px;
  color: #fff;
  background: #2CA6E0;
  border: #000 solid 3px;
  padding: 35px 10px;
  height: 110px;
}

.bl_hNav li.last a span{
  display: block;
  line-height: 1;
  margin-bottom: 3px;
  font-size: 18px;
}

.bl_hNav li.last a:hover {
  background: #DF4B28;
}

.bl_hNav li.last  a:hover::after {
  opacity: 0;
}

.bl_hNav li.last a.is-sp{
  display: none;
}

.sp-action{
  display: none;
}

@media screen and (max-width: 768px) {
.bl_hNav li.last{
  display: none;
}

.sp-action{
  display: flex;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: -80px;
  width: 100%;
  padding: 20px;
  gap: 10px;
  text-align: center;
}

.sp-action a{
  border: #000 solid 2px;
  display: inline-block;
  width: 100%;
  height: 57px;
  background: #2CA6E0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}


}


@media screen and (max-width: 1200px) {
  #ly_header {
    padding-left: 20px;
  }
  .bl_hNav li {
    margin-left: 15px;
  }
}

@media screen and (max-width: 900px) {
  #ly_header {
    width: 100%;
    height: 76px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    padding-left: 20px;
  }

  #ly_header .logo {
    width: 217px;
  }

  .un_menuTrigger {
    position: fixed;
    width: 76px;
    height: 76px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 0;
    z-index: 9999;
    background: #000;
  }

  .un_menuTrigger::after {
    content: "MENU";
    fofont-family: "Roboto", "Noto Sans JP", sans-serif;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    color: #fff;
    display: inline-block;
  }

  .un_menuTrigger.active {
    background: #E95532;
  }

  .un_menuTrigger.active::after {
    content: "CLOSE";
  }

  .un_menuTrigger.active span:nth-of-type(3) {
    transform: translateX(-12px) translateY(-10px) rotate(45deg);
  }

  #ly_header .bl_menu {
    width: 100%;
    position: fixed;
    top: -200vh;
    right: inherit;
    left: 0;
    background: #fef8e5;
    height: calc(100vh - 76px - 80px);
    z-index: 9996;
    padding: 45px 30px;
  }

  #ly_header.active .bl_menu {
    top: 76px;
  }

  #ly_header.active .bl_menu::before {
    content: "MENU";
    font-family: "Roboto", "Noto Sans JP", sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: #E95532;
    display: inline-block;
    margin-bottom: 15px;
  }

  .bl_hNav li {
    width: 100%;
    margin: 0;
    border-bottom: solid 2px #fdf1ce;
    background: url(../images/icon_menu_arw.svg) right 10px top 30px no-repeat;
    background-size: 14px 13px;
  }

  .bl_hNav li a {
    display: block;
    font-size: 24px;
    text-align: left;
    padding: 25px 10px;
    height: auto;
  }
}

/***********************
Footer
***********************/

#ly_footer {
  position: relative;
  border-top: solid 3px #000;
  background-color: #000;
  color: #fff;
  transform: rotate(0.05deg);
}
#ly_footer .ly_inner {
  padding-block: 54px 60px;
}

#ly_footer .flex {
  margin-bottom: -60px;
}

#ly_footer .left,
#ly_footer .right {
  width: 50%;
  margin-bottom: 60px;
}

#ly_footer .right {
  padding-left: 5%;
}

#ly_footer .top {
  margin-bottom: 10px;
  font-size: 14px;
}

#ly_footer .top br {
  display: none;
}

#ly_footer .badge {
  display: inline-block;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  padding: 6px 10px 4px;
  /* border-radius: 5px; */
  margin-right: 15px;
  vertical-align: middle;
}

#ly_footer .bottom {
  font-size: 18px;
  font-weight: 500;
}

#ly_footer .left .bottom br {
  display: none;
}

#ly_footer .tel {
  display: inline-block;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

#ly_footer .tel .tel_link {
  color: #f2b900;
  margin-right: 10px;
}

#ly_footer .mail {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
}
#ly_footer .mail a {
  color: #fff;
}

#ly_footer .copyright {
  font-size: 12px;
  padding-top: 25px;
  text-align: right;
}
.float_links .entry_link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  border-bottom-left-radius: 10px;
  background: #ed751b;
  border: solid 3px #000;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  z-index: 9001;
  width: 124px;
  height: 104px;
  padding: 10px;
  text-align: center;
  line-height: 1.2;
}

.float_links .entry_link:hover {
  background: #003f6b;
}

.float_links .entry_link .en {
  font-size: 18px;
  font-weight: 700;
}

.float_links .entrance_link {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  border: solid 3px #000;
  background: #ed751b;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 440px;
  height: 76px;
  padding: 10px 70px;
  line-height: 78px;
  /* border-radius: 100px; */
  z-index: 9002;
}

.float_links .entrance_link br {
  display: none;
}

.float_links .entrance_link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: block;
  width: 46px;
  height: 46px;
  background: #d35a00 url(../images/icon_floatbtn_arw.svg) center / 16px no-repeat;
  border-radius: 50%;
}

.float_links .entrance_link:hover {
  background: #000;
  border-color: #fff;
}

.float_links .entrance_link:hover::after {
  background: #333333 url(../images/icon_floatbtn_arw.svg) center center no-repeat;
  background-size: 17px 16px;
}

@media screen and (max-width: 900px) {
  #ly_footer .ly_inner {
    padding-block: 40px;
  }
  #ly_footer .flex {
    margin-bottom: -25px;
  }
  #ly_footer .left,
  #ly_footer .right {
    width: 100%;
    margin-bottom: 25px;
  }

  #ly_footer .right {
    padding-left: 0;
  }

  #ly_footer .left .bottom {
    line-height: 1.5;
  }

  #ly_footer .left .bottom br {
    display: block;
  }

  #ly_footer .top {
    margin-bottom: 0;
  }

  #ly_footer .top br {
    display: block;
  }

  #ly_footer .badge {
    margin-bottom: 10px;
  }

  #ly_footer .right .bottom {
    margin-top: 10px;
  }

  #ly_footer .mail {
    display: block;
    padding-top: 10px;
  }

  #ly_footer .copyright {
    font-size: 12px;
    padding-top: 25px;
    text-align: right;
  }
  .float_links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    width: 100%;
    padding-block: 13px;
    text-align: center;
    z-index: 9003;
  }

  .float_links a {
    max-width: 172px;
    border: solid 3px #000;
    /* border-radius: 10px; */
    position: static;
    vertical-align: middle;
    margin: 0 3px;
  }

  .float_links .entry_link {
    position: static;
    /* border-radius: 10px; */
    border: solid 3px #000;
    max-width: 172px;
    width: 45.8%;
    height: 54px;
    display: inline-block;
    padding-top: 15px;
    line-height: 1;
    top: auto;
    bottom: auto;
  }

  .float_links .entry_link .pc {
    display: none;
  }

  .float_links .entrance_link {
    position: static;
    bottom: auto;
    left: auto;
    /* border-radius: 10px; */
    transform: none;
    font-size: 15px;
    font-weight: 700;
    max-width: 172px;
    width: 45.8%;
    height: 54px;
    padding: 4px 10px;
    line-height: 1.2;
    box-shadow: none;
  }
  .float_links .entrance_link::after {
    display: none;
  }

  .float_links .entrance_link br {
    display: block;
  }
}

.un_Copyright {
  text-align: center;
  color: #8c8c91;
  font-size: 12px;
}

.ribbon_block {
  position: relative;
  background-color: #fff9c5;
  border: solid 3px #000;
  /* border-radius: 12px; */
  z-index: 1;
  line-height: 1.75;
  box-sizing: border-box;
}
.ribbon_block_inner {
  position: relative;
  padding: 50px 10.36% 40px;
  overflow: hidden;
}
.ribbon_block_inner::before,.ribbon_block_inner::after {
  content: " ";
  position: absolute;
  width: 40px;
  height: 160px;
  transform: rotate(45deg);
  background-color: #e96087;
  border-left: solid 3px #000;
  border-right: solid 3px #000;
  z-index: -1;
}
.ribbon_block_inner::before {
  top: -40px;
  left: -28px;
  transform-origin: top left;
  margin-left: 110px;
}
.ribbon_block_inner::after {
  bottom: -40px;
  right: -28px;
  transform-origin: bottom right;
  margin-right: 110px;
}
.ribbon_title {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  height: 50px;
  padding: 3px 16px 1px;
  background-color: #e96087;
  border-top: solid 3px #000;
  border-bottom: solid 3px #000;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  z-index: 1;
}
.ribbon_title::before,
.ribbon_title::after {
  content: " ";
  position: absolute;
  top: -4px;
  width: 49px;
  aspect-ratio: 1/1.359;
  background: url(../images/deco_ribbon_left.svg) right top / contain no-repeat;
}
.ribbon_title::before {
  right: 100%;
  margin-right: -1px;
  transform: scale(-1, 1);
  filter: FlipH;
  -ms-filter: "FlipH";
}
.ribbon_title::after {
  left: 100%;
  margin-left: -1px;
}
@media screen and (max-width: 900px) {

  .ribbon_block_inner {
    padding: 50px 17px 30px;
  }
  .ribbon_block_inner::before,.ribbon_block_inner::after {
    width: 14px;
    height: 60px;
  }
  .ribbon_block_inner::before {
    top: -10px;
    left: -10px;
    margin-left: 36px;
  }
  .ribbon_block_inner::after {
    bottom: -10px;
    right: -10px;
    margin-right: 36px;
  }
  .ribbon_title {
    top: -18px;
    padding: 1px 6px;
    height: 36px;
    font-size: 18px;
  }
  .ribbon_title::before,
  .ribbon_title::after {
    top: -3px;
    width: 35px;
    background-image: url(../images/deco_ribbon_left_sp.svg);
  }
}

.sec_head .ttl {
  font-weight: 800;
  font-size: 50px;
  margin-bottom: 15px;
}

.sec_head .ttl_ja {
  font-weight: 700;
  font-size: 18px;
}
@media screen and (max-width: 900px) {
  .sec_head .ttl {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .sec_head .ttl_ja {
    font-size: 14px;
  }
}

.numbering_list {
  list-style-type: none;
  counter-reset: item;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  text-align: left;
}
.numbering_list li {
  position: relative;
  padding-left: 1.5em;
}
.numbering_list li::before {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  counter-increment: item;
  content: counter(item);
  position: absolute;
  top: 0.428em;
  left: 0;
  width: 1.42em;
  aspect-ratio: 1/1;
  padding: 2px 0 0;
  background-color: #E95532;
  /* border-radius: 50%; */
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  line-height: 1;
}
.numbering_list.different_color li::before {
  background-color: #f2b900;
  color: #000;
}
.dot_list {
  line-height: 1.71;
}
.dot_list >li {
  position: relative;
  padding-left: 0.71em;
}
.dot_list >li::before {
  content: " ";
  position: absolute;
  top: 0.57em;
  left: 0;
  width: 0.428em;
  aspect-ratio: 1/1;
  background-color: #E95532;
  /* border-radius: 50%; */
}
.notes_text {
  display: inline-block;
  position: relative;
  padding-left: 1em;
}
.notes_text::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.color_red {
  color: #e41c24 !important;
}

/***********************
sec_hero
***********************/
        .hero-section {
            width: 100%;
            margin: 0 auto;
            padding: 60px 20px;
            background-color: #FFF5E0;
            border-bottom: 30px solid #E95532;
        }

        .hero-container {
           max-width: 1176px;
           margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        /* 左側セクション */
        .left-content {
            display: flex;
            flex-direction: column;
            gap: 24px;
            max-width:556px ;
        }
        @media (max-width: 768px) {
          .left-content {
            gap: 10px;
        }
        }

        .title-image {
            width: 100%;
            /* max-width: 600px; */
            margin-bottom: 10px;
        }

        .title-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        @media (max-width: 768px) {
          .title-image img {
            width: 90%;
            height: auto;
            display: block;
            margin: 0 auto;
          }
        }

        .event-details {
            display: flex;
            align-items: flex-start;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 8px;
        }

        .date-section {
            display: flex;
            justify-content: space-between ;
            width: 100%;
        }

        .date-text {
            font-size: clamp(52px, 8vw, 90px);
            font-weight: bold;
            line-height: 1;
        }


        .date-text .day {
            font-size:27px;
            padding: 5px 3px 3px;
            margin: 0 5px;
            background: #000;
            color: #fff;
            line-height: 1;
            display: inline-block;
            text-align: center;
            width: 36px;
            position: relative;
            top: -5px;
        }

        .date-text .day.saturday {
            background: #4a9fd8;
            color: white;
            
        }

        .time-section {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding-top: 12px;
        }

        .time-row {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .time-label {
          border: #000 solid 2px;
            color: #000;
            font-size: 23px;
            width: 92px;
            text-align: center;
        }

        .time-value {
            font-size: 24px;
            font-weight: bold;
        }

        .feature-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .feature-tag {
            background-color: #e8654e;
            color: white;
            padding: 9px 17px 7px;
            font-weight: bold;
            font-size: 16px;
            white-space: nowrap;
        }

        /* 右側セクション */
        .right-content {
            display: flex;
            flex-direction: column;
            max-width: 500px;
            padding-top: 30px;
        }

        .illustration-box {
            width: 100%;
            max-width: 490px;
            text-align: center;
            padding: 0;
            margin-bottom: 50px;
        }

        .illustration-box-sp{
            display: none;
        }

        .illustration-box img {
            width: 100%;
            height: auto;
        }

        .benefits-section {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .benefit-card {
            display: grid;
            grid-template-columns: 120px 1fr;
        }

        .benefit-label {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px 10px;
            font-size: 16px;
            text-align: center;
            margin-right: 10px;
            border: 3px solid #000;
            background-color: #000;
        }

        .benefit-label.green {
          border: 3px solid #0DAC67;
            background-color: #0DAC67;
            color: white;
        }

        .benefit-label.black {
            background-color: #333;
            color: white;
        }

        .benefit-text {
            padding: 10px 20px;
            display: flex;
            align-items: center;
            font-size: 16px;
            font-weight: 600;
            line-height: 1.6;
            border: 3px solid #000;
            background-color: #fff;
        }
        .benefit-text.green{
          border: 3px solid #5cb85c;
        }

        /* フッター情報 */
        .footer-message {
          max-width: 1116px;
          margin: 0 auto;
            text-align: center;
            padding: 40px 0 20px;
        }

        .footer-message p {
            font-size: clamp(15px, 2vw, 19px);
            line-height: 1.25;
            margin-bottom: 10px;
        }

        .footer-message .highlight {
            color: #e8654e;
            font-weight: bold;
            font-size: clamp(18px, 2.5vw, 26px);
        }

        .footer-message .company-count {
            color: #e8654e;
            font-weight: bold;
            font-size: clamp(22px, 3vw, 32px);
        }

        

        /* タブレット対応 */
        @media (max-width: 1024px) {
            .hero-container {
                gap: 40px;
            }

            .event-details {
                gap: 20px;
            }
        }

        /* スマホ対応 */
        @media (max-width: 768px) {
          .flex.end {
              justify-content: flex-end;
              height: auto !important;
          }
            .hero-section {
                padding: 30px 15px;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .event-details {
                flex-direction: column;
                gap: 25px;
                margin-bottom: 0;
            }

            .date-section {
                flex-direction: row;
                gap: 0;
                text-align:left;
            }
            .right-content{
              padding-top: 0px;
            }

            .feature-tags {
                gap: 8px;
                justify-content:center;
            }

            .benefit-card {
                grid-template-columns: 100px 1fr;
            }

            .benefit-label {
                padding: 15px 10px;
                font-size: 16px;
            }

            .benefit-text {
                padding: 15px;
                font-size: 14px;
            }

            .footer-message {
              max-width: 100%;
                padding: 20px 10px;
            }
             .footer-message p{
              line-height: 1.5;
             }        
            .illustration-box {
              width: 100%;
              margin-bottom: 20px;
          }
          .time-label {
              width: 55px;
              padding: 2px 0;
              font-size: 13px;
          }
          .time-value {
              font-size: 19px;
              font-weight: normal;
          }
          .date-text .day {
              font-size: 17px;
              padding: 5px 3px 3px;
              margin: 0 10px;
              background: #000;
              color: #fff;
              line-height: 1;
              display: inline-block;
              text-align: center;
              width: 26px;
              position: relative;
              top: -5px;
          }
          .time-section {
                display: flex;
                flex-direction: column;
                gap: 2px;
                padding-top: 0;
          }
          
          .illustration-box{
            display: none;
          }
          .illustration-box-sp{
            display: block;
          }

        }

        /* 小さいスマホ対応 */
        @media (max-width: 480px) {
            .hero-section {
                padding: 30px 20px 20px;
            }

            .benefit-label {
                padding: 12px 0;
            }

            .feature-tag {
                padding: 7px 20px;
                font-size: 13px;
                margin-bottom: 10px;
                justify-content:center;
            }
            .is-column{
              display: block;
              width: 100%;
              text-align: center;
              margin: 5px 0;
            }
            
        }

.feature-tags .is-sp-block{
  display: inline-block;
}






/***********************
sec_event
***********************/

.sec_event {
  background: #f2f2f2;
  padding-top: 80px;
  padding-bottom: 100px;
}

.sec_event .sec_head {
  margin-bottom: 45px;
}

.sec_event .sec_head .ttl {
  color: #E95532;
}

.sec_event .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 27.7%;
}

.sec_event .target_item {
  background-color: #fff;
  border: solid 3px #E95532;
  /* border-radius: 5px; */
  overflow: hidden;
  isolation: isolate;
  line-height: 1.57;
}
.sec_event .target_item >dt {
  padding: 5px 16px;
  background-color: #E95532;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
.sec_event .target_item >dd {
  padding: 16px;
  background-color: #fff;
}

.sec_event .right {
  width: 66%;
}

.sec_event .event_detail {
  border-bottom: solid 2px #c3c3c3;
  padding: 35px 10px 30px;
}

.sec_event .event_detail .badge span {
  display: inline-block;
  margin-top: -5px;
  padding: 5px 10px;
  /* border-radius: 5px; */
  background: #000;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.sec_event .event_detail .conts {
  flex: 1;
  margin-left: 15px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  margin-top: -7px;
}

.sec_event .event_detail .min {
  font-size: 16px;
  margin-bottom: 10px;
}

/* .sec_event .event_detail .min:last-child {
  text-indent: -1em;
  padding-left: 1em;
} */

.sec_event .event_detail .notes_text {
  font-size: 0.88em;
}

@media screen and (max-width: 900px) {
  .sec_event {
    padding-top: 50px;
  }
  .sec_event .sec_head {
    margin-bottom: 25px;
    text-align: center;
  }
  .sec_event .left {
    display: block;
    margin-bottom: 16px;
  }
  .sec_event .left,
  .sec_event .right {
    width: 100%;
  }
  .sec_event .right {
    max-width: 500px;
    margin: 0 auto;
  }

  .sec_event .target_item {
    max-width: 500px;
    margin-inline: auto;
  }

  .sec_event .event_detail {
    padding: 20px 0;
  }
  .sec_event .event_detail .badge span {
    margin-top: 0;
  }
  .sec_event .event_detail .badge {
    width: 100%;
    margin-bottom: 10px;
  }

  .sec_event .event_detail .conts {
    display: block;
    margin-left: 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    margin-top: 0;
  }
  .sec_event .event_detail .notes_text {
    font-size: 0.77em;
  }
}

/***********************
sec_company
***********************/

.sec_company {
  padding: 90px 0 115px;
  position: relative;
}



.sec_company .sec_head {
  text-align: center;
  margin-bottom: 60px;
}

.sec_company .sec_head .ttl {
  color: #E95532;
}

.sec_company .coming_soon {
  margin-block: 80px 100px;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}
.sec_company .dates {
  position: relative;
  margin: 0 0 60px -7px;
}
.sec_company .dates::after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 7px;
  right: 0;
  height: 3px;
  background-color: #000;
}

.sec_company .dates .date {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 90px;
  margin-left: 7px;
  padding: 4px;
  background: #FFF5E0;
  border: solid 3px #000000;
  border-bottom: none;
  /* border-radius: 10px 10px 0 0; */
  text-align: center;
  position: relative;
}

.sec_company .dates .date.now {
  background: #fff;
  z-index: 2;
}

.sec_company .date .en {
  font-size: 50px;
  font-weight: 600;
  margin-right: 5px;
}

.sec_company .date .week {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 26px;
  aspect-ratio: 1/1;
  background-color: #000;
  color: #fff;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  top: 5px;
}
.sec_company .date .week.sat {
  background-color: #2ea7e0;
}

.sec_company .day_conts {
  display: none;
}

.sec_company .day_conts.now {
  display: block;
}

.sec_company .day_conts .opend {
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  padding: 20px 0;
  /* border-radius: 10px; */
}

.sec_company .lanes {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: 35px;
}

.sec_company .lanes .lane {
  width: 100%;
  height: 56px;
  text-align: center;
  padding: 8px 0 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  /* border-radius: 10px; */
  position: relative;
  cursor: pointer;
}

.sec_company .lanes .lane::after {
  content: "";
  display: block;
  position: absolute;
  top: 99%;
  left: 50%;
  margin-left: -7px;
  border: 7px solid transparent;
}

.sec_company .lanes .lane_btn {
  width: 17.2%;
  max-width: 220px;
  width: 100%;
  width: 20%;
  padding: 0 15px;
  height: 65px;
}

.sec_company .lanes .alp {
  font-size: 40px;
  font-weight: 600;
  margin-right: 10px;
  vertical-align: sub;
}

.sec_company .lanes .lane_a {
  background: #e96087;
}

.sec_company .lanes .lane_a::after {
  border-top: 8px solid #e96087;
}

.sec_company .lanes .lane_b {
  background: #f29600;
}

.sec_company .lanes .lane_b::after {
  border-top: 8px solid #f29600;
}

.sec_company .lanes .lane_c {
  background: #0dac67;
}

.sec_company .lanes .lane_c::after {
  border-top: 8px solid #0dac67;
}

.sec_company .lanes .lane_d {
  background: #2ca6e0;
}

.sec_company .lanes .lane_d::after {
  border-top: 8px solid #2ca6e0;
}

.sec_company .lanes .lane_e {
  background: #E95532;
}

.sec_company .lanes .lane_e::after {
  border-top: 8px solid #ed751b;
}

.sec_company .schedules {
  transform: translateY(-30px);
}

.sec_company .schedules .slick-track {
  display: flex;
  align-items: stretch;
}

.sec_company .schedule {
  width: 20%;
  padding: 60px 1% 1px;
  height: auto;
}

.sec_company .schedule.lane_a {
  background: #fceaf3;
}

.sec_company .schedule.lane_b {
  background: #fef8e5;
}

.sec_company .schedule.lane_c {
  background: #e5f5ee;
}

.sec_company .schedule.lane_d {
  background: #e8f8f9;
}

.sec_company .schedule.lane_e {
  background: #fdf0e5;
}

.sec_company .schedule .talk_theme {
  text-align: center;
  /* border-radius: 20px; */
  height: 30px;
  padding-top: 7px;
  background: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}

.sec_company .schedule .times {
  font-size: 14px;
  margin-bottom: 20px;
}

.sec_company .schedule .times dt::before {
  content: "・";
  font-size: 20px;
  font-weight: 700;
  vertical-align: sub;
}

.sec_company .schedule .times dd {
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.sec_company .schedule .company {
  /* border-radius: 10px; */
  position: relative;
  padding: 35px 10px 10px;
  margin-bottom: 20px;
  background: #fff;
}

.sec_company .schedule.lane_a .company {
  border: solid 3px #e96087;
}

.sec_company .schedule.lane_b .company {
  border: solid 3px #f29600;
}

.sec_company .schedule.lane_c .company {
  border: solid 3px #0dac67;
}

.sec_company .schedule.lane_d .company {
  border: solid 3px #2ca6e0;
}

.sec_company .schedule.lane_e .company {
  border: solid 3px #ed751b;
}

.sec_company .schedule .company .time {
  position: absolute;
  top: -1px;
  left: 0;
  border-bottom-right-radius: 10px;
  color: #fff;
  text-align: center;
  width: 88px;
  padding-block: 7px;
  font-size: 12px;
}

.sec_company .schedule.lane_a .company .time {
  background: #e96087;
}

.sec_company .schedule.lane_b .company .time {
  background: #f29600;
}

.sec_company .schedule.lane_c .company .time {
  background: #0dac67;
}

.sec_company .schedule.lane_d .company .time {
  background: #2ca6e0;
}

.sec_company .schedule.lane_e .company .time {
  background: #ed751b;
}

.sec_company .schedule .company_name {
  overflow-wrap: break-word;
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: solid 1px #dddddd;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}

.sec_company .schedule .company_name a {
  text-decoration: underline;
}

.sec_company .schedule .company_name img {
  margin-left: 4px;
  display: inline;
}

.sec_company .schedule .conts {
  line-height: 1.2;
}

.sec_company .schedule .conts dt {
  float: left;
  width: 36px;
  margin-top: 1px;
  font-size: 12px;
}

.sec_company .schedule .conts dd {
  margin-left: 38px;
  overflow-wrap: break-word;
}

.sec_company .schedule .tags {
  margin-top: 10px;
}

.sec_company .schedule .tag {
  margin-bottom: 10px;
  background: #f2f2f2;
  font-size: 13px;
  color: #666666;
  padding: 2px 4px;
  display: inline-block;
  margin-right: 3px;
  /* border-radius: 5px; */
}

.sec_company .schedule .links a {
  margin-bottom: 5px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 15px;
  display: block;
  /* border-radius: 5px; */
}

.sec_company .schedule.lane_a .links a {
  background: #e96087 url(../images/icon_schedule_link.svg) right 10px top 12px no-repeat;
  background-size: 11px 10px;
  border: solid 3px #e96087;
}

.sec_company .schedule.lane_b .links a {
  background: #f29600 url(../images/icon_schedule_link.svg) right 10px top 12px no-repeat;
  background-size: 11px 10px;
  border: solid 3px #f29600;
}

.sec_company .schedule.lane_c .links a {
  background: #0dac67 url(../images/icon_schedule_link.svg) right 10px top 12px no-repeat;
  background-size: 11px 10px;
  border: solid 3px #0dac67;
}

.sec_company .schedule.lane_d .links a {
  background: #2ca6e0 url(../images/icon_schedule_link.svg) right 10px top 12px no-repeat;
  background-size: 11px 10px;
  border: solid 3px #2ca6e0;
}

.sec_company .schedule.lane_e .links a {
  background: #ed751b url(../images/icon_schedule_link.svg) right 10px top 12px no-repeat;
  background-size: 11px 10px;
  border: solid 3px #ed751b;
}

.sec_company .schedule.lane_a .links a:hover {
  background: #fff url(../images/icon_schedule_link_a.svg) right 10px top 12px no-repeat;
  background-size: 11px 10px;
  color: #e96087;
}

.sec_company .schedule.lane_b .links a:hover {
  background: #fff url(../images/icon_schedule_link_b.svg) right 10px top 12px no-repeat;
  background-size: 11px 10px;
  color: #f29600;
}

.sec_company .schedule.lane_c .links a:hover {
  background: #fff url(../images/icon_schedule_link_c.svg) right 10px top 12px no-repeat;
  background-size: 11px 10px;
  color: #0dac67;
}

.sec_company .schedule.lane_d .links a:hover {
  background: #fff url(../images/icon_schedule_link_d.svg) right 10px top 12px no-repeat;
  background-size: 11px 10px;
  color: #2ca6e0;
}

.sec_company .schedule.lane_e .links a:hover {
  background: #fff url(../images/icon_schedule_link_e.svg) right 10px top 12px no-repeat;
  background-size: 11px 10px;
  color: #ed751b;
}
.sec_company .prizes {
  font-size: 16px;
  margin-top: 88px;
}
.sec_company .prizes .ribbon_block_inner > *:not(:last-child){
  margin-bottom: 10px;
}
.sec_company .prizes .ribbon_block_inner .sub {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}
.sec_company .prizes .sub .sub_inner {
  display: inline-block;
  padding: 3px 28px;
  background-color: #f2b900;
  /* border-radius: 5px; */
}
.sec_company .prizes .numbering_list {
  font-size: 18px;
}
.sec_company .prizes .notes_text {
  font-size: 14px;
}
.sec_company .prizes .check_item {
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 16px;
  padding: 7px 30px;
  background-color: #fff;
  /* border-radius: 5px; */
  font-size: 20px;
  font-weight: 700;
}
.sec_company .prizes .check_item .check{
  position: absolute;
  top: -4px;
  left: -13px;
  transform: rotate(-9deg);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}
.sec_company .prizes .check_item > dt{
  font-size: 24px;
}
.sec_company .prizes .check_item > dt::after{
  content: " ";
  display: inline-block;
  width: 28px;
  aspect-ratio: 1/0.392;
  background: url(../images/icon_arrow_continuous.svg) center / contain no-repeat;
}
.sec_company .prizes .check_item > dd{
  flex: 1;
}
.sec_company .prizes .check_item small{
  font-size: 80%;
}

@media screen and (max-width: 900px) {
  .sec_company {
    padding: 60px 0 55px;
  }
  .sec_company::before {
    height: 140px;
  }

  .sec_company .sec_head {
    margin-bottom: 40px;
  }

  .sec_company .total_schedules {
    max-width: 500px;
    margin: 0 auto;
  }
  .sec_company .coming_soon {
    margin-block: 40px 60px;
    font-size: 30px;
    text-align: center;
  }
  .sec_company .dates {
    position: relative;
    max-width: 500px;
    margin-bottom: 30px;
  }

  .sec_company .dates .date {
    height: 70px;
  }

  .sec_company .date .en {
    font-size: 36px;
  }

  .sec_company .date .week {
    width: 20px;
    height: 20px;
    line-height: 18px;
    font-size: 12px;
  }
  .sec_company .lanes {
    margin-top: 20px;
  }
  .sec_company .lanes .slick-arrow {
    width: 26px;
    height: 26px;
    margin-top: -6px;
    background-color: #000;
    /* border-radius: 50%; */
    z-index: 5;
  }
  .sec_company .lanes .slick-arrow::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    margin: 0 0 0 1px;
    padding: 0;
    border-width: 5px 0px 5px 10px;
    background: none;
    border-color: transparent transparent transparent #fff;
    font-size: 0;
    opacity: 1;
  }
  .sec_company .lanes .slick-prev {
    left: 5%;
    margin-left: 10px;
  }
  .sec_company .lanes .slick-prev::before {
    margin-left: -1px;
    border-width: 5px 10px 5px 0;
    border-color: transparent #fff transparent transparent;
  }
  .sec_company .lanes .slick-next {
    right: 5%;
    margin-right: 10px;
  }
  .sec_company .lanes .lane {
    height: 56px;
    text-align: center;
    padding: 8px 0 0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    /* border-radius: 10px; */
    position: relative;
    cursor: pointer;
  }

  .sec_company .lanes .lane_btn {
    max-width: 500px;
    width: 1.5%;
  }

  .sec_company .schedules {
    transform: translateY(-40px);
  }

  .sec_company .schedules .slick-track {
    display: block;
  }

  .sec_company .schedule {
    width: 20%;
    padding: 60px 20px 1px;
  }
  .sec_company .prizes {
    max-width: 500px;
    margin: 45px auto 0;
  }
  .sec_company .prizes .ribbon_title {
    min-width: 246px;
  }
  .sec_company .prizes .ribbon_block_inner .sub {
    font-size: 16px;
  }
  .sec_company .prizes .sub .sub_inner {
    padding: 3px 16px;
  }
  .sec_company .prizes .numbering_list {
    font-size: 16px;
  }
  .sec_company .prizes .check_item {
    display: block;
    margin-top: 20px;
    padding: 14px 16px;
    font-size: 20px;
  }
  .sec_company .prizes .check_item .check{
    top: 0;
    left: -3px;
    font-size: 16px;
  }
  .sec_company .prizes .check_item > dt{
    margin-bottom: 4px;
    font-size: 20px;
    text-align: center;
  }
  .sec_company .prizes .check_item > dt::after{
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .sec_company .lanes .lane_btn {
    width: 1%;
  }
}

/***********************
sec_flow
***********************/

.sec_flow {
  position: relative;
  padding-block: 70px 80px;
  background-size: auto auto;
  background-color: #FFF5E0;

  border-top: solid 30px #E95532;
  z-index: 1;
}
.sec_flow::after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 656px;
  background: linear-gradient(to bottom,  rgba(255,249,197,0) 0%,rgba(255,250,207,0) 18%,rgba(255,255,255,1) 100%);
  z-index: -1;
  pointer-events: none;
}

.sec_flow .sec_head {
  margin-bottom: 70px;
  text-align: center;
}

.sec_flow .sec_head .ttl {
  color: #E95532;
}

.sec_flow .flow {
  /* border-radius: 10px; */
  background: #fff;
  border: solid 3px #000;
  position: relative;
  margin-bottom: 30px;
  padding: 20px 30px;
}

.sec_flow .flow:last-child {
  margin-bottom: 0;
}
.sec_flow .flow:not(:last-child)::after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 15px;
  background: url(../images/icon_flow_arrow.svg) bottom center / contain no-repeat;
}

.sec_flow .flow .num {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: #E95532;
  line-height: 1;
}

.sec_flow .flow .left {
  position: relative;
  width: 310px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  margin-right: 4.9%;
  padding-left: 95px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33;
}

.sec_flow .flow .right {
  flex: 1;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  padding-left: 4%;
  padding-right: 2%;
  line-height: 1.75;
}

.sec_flow .flow .right a {
  color: #E95532;
  text-decoration: underline;
}

.sec_flow .reserves {
  margin-top: 80px;
}

.sec_flow .reserves .reserve_head {
  text-align: center;
  margin-bottom: 30px;
}

.sec_flow .reserves .reserve_head .ttl {
  font-size: 26px;
  margin-bottom: 30px;
  color: #E95532;
}

.sec_flow .reserves .reserve_head .sub {
  font-size: 16px;
  line-height: 1.75;
}

.sec_flow .reserves .patterns {
  margin-bottom: -40px;
}
.sec_flow .reserves .pattern {
  margin-bottom: 40px;
  width: 48%;
  background-color: #fff;
  border: solid 3px #000;
  /* border-radius: 10px; */
  overflow: hidden;
  isolation: isolate;
}

.sec_flow .pattern .head {
  background: #E95532;
  border-bottom: solid 3px #000;
  text-align: center;
  position: relative;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec_flow .pattern .head .ico {
  margin-right: 15px;
}

.sec_flow .pattern .head .ico img {
  width: auto;
  height: 30px;
}

.sec_flow .pattern .body {
  padding: 30px 40px;
}

.sec_flow .pattern .body .desc {
  font-size: 16px;
  line-height: 1.75;
  border-bottom: solid 3px #dddddd;
  padding-bottom: 15px;
}

.sec_flow .pattern .body .guide {
  padding-top: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.sec_flow .pattern .body a {
  font-size: 14px;
  font-weight: 700;
  color: #E95532;
  text-decoration: underline;
  background: url(../images/icon_outerlink_arw02.svg) right center no-repeat;
  background-size: 8px;
  padding-right: 12px;
  margin-left: 10px;
}

.sec_flow .reserves .pdf_link {
  margin-top: 40px;
  text-align: center;
}

.sec_flow .reserves .btn_pdf {
  display: inline-block;
  background: #f29600 url(../images/icon_pdfbtn_arw.svg) right 20px center no-repeat;
  background-size: 13px 12px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  max-width: 335px;
  width: 100%;
  /* border-radius: 10px; */
  padding: 25px 0;
}

.sec_flow .reserves .btn_pdf:hover {
  background: #000 url(../images/icon_pdfbtn_arw.svg) right 20px center no-repeat;
  background-size: 13px 12px;
}

@media screen and (max-width: 900px) {
  .sec_flow {
    padding-block: 50px 40px;
  }
  .sec_flow::after {
    height: 175px;
  }
  .sec_flow .sec_head {
    margin-bottom: 30px;
  }

  .sec_flow .flows {
    max-width: 500px;
    margin: 0 auto;
  }
  .sec_flow .flow {
    margin-bottom: 24px;
    padding: 17px;
  }

  .sec_flow .flow .num {
    font-size: 56px;
  }

  .sec_flow .flow .left {
    width: 100%;
    margin: 0 0 10px;
    padding-left: 78px;
    font-size: 18px;
  }

  .sec_flow .flow .right {
    width: 100%;
    padding: 0;
  }

  .sec_flow .flow .right a {
    color: #E95532;
    text-decoration: underline;
  }

  .sec_flow .reserves {
    margin-top: 50px;
  }

  .sec_flow .reserves .reserve_head {
    text-align: center;
    margin-bottom: 30px;
  }
  .sec_flow .reserves .patterns {
    margin-bottom: -20px;
  }
  .sec_flow .reserves .pattern {
    max-width: 500px;
    margin: 0 auto 20px;
    width: 100%;
  }

  .sec_flow .pattern .head {
    padding: 15px;
    font-size: 16px;
  }

  .sec_flow .pattern .body {
    padding: 15px 20px;
  }

  .sec_flow .pattern .body .desc {
    font-size: 16px;
    line-height: 1.75;
    border-bottom: solid 3px #dddddd;
    padding-bottom: 15px;
  }

  .sec_flow .pattern .body .guide {
    text-align: center;
  }

  .sec_flow .pattern .body .txt,
  .sec_flow .pattern .body .links {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .sec_flow .reserves .reserve_head .sub {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
  }
}

/***********************
sec_faq
***********************/

.sec_faq {
  padding: 24px 0 90px;
  position: relative;
}

.sec_faq::before {
  content: "";
  background: url(../images/illust_faq.png) center center no-repeat;
  background-size: 260px 267px;
  width: 260px;
  height: 267px;
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-612px);
}

.sec_faq .left {
  width: 24.5%;
}

.sec_faq .sec_head {
  margin-bottom: 45px;
}

.sec_faq .sec_head .ttl {
  color: #E95532;
}

.sec_faq .right {
  width: 75.5%;
}

.sec_faq .faq {
  background-color: #fff;
  border: solid 3px #000;
  /* border-radius: 10px; */
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
}
.sec_faq .faq:not(:last-child) {
  margin-bottom: 30px;
}

.sec_faq .faq.open {
  background-color: #f2f2f2;
  color: #E95532;
  padding-bottom: 20px;
}
.sec_faq .faq.open .q::after {
  transform: translateY(-50%) rotate(-180deg);
}

.sec_faq .faq .q {
  position: relative;
  padding: 20px 46px 20px 60px;
  cursor: pointer;
}
.sec_faq .faq .q::after {
  content: " ";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 16px;
  aspect-ratio: 1/0.687;
  background: url(../images/icon_accordion_open.svg) center / contain no-repeat;
  transition-duration: 0.3s;
}

.sec_faq .faq .alp {
  position: absolute;
  top: 5px;
  left: 20px;
  font-size: 32px;
  color: #E95532;
}

.sec_faq .faq .a {
  position: relative;
  background: #E95532;
  padding: 15px 20px 15px 50px;
  margin-inline: 20px;
  color: #fff;
  /* border-radius: 10px; */
  display: none;
  overflow-wrap: break-word;
}

.sec_faq .faq .a .alp {
  top: 3px;
  left: 15px;
  color: #fff;
}

summary {
  display: block;
  list-style: none;
}

/* 一部ブラウザで消えなかった場合は以下も追記 */
summary::-webkit-details-marker {
  display: none;
}

@media screen and (max-width: 900px) {
  .sec_faq {
    padding: 40px 0 160px;
  }

  .sec_faq::before {
    content: "";
    background-size: 130px 133px;
    width: 130px;
    height: 133px;
    bottom: -3px;
    transform: translateX(-167px);
  }

  .sec_faq .left {
    width: 100%;
  }

  .sec_faq .sec_head {
    margin-bottom: 40px;
    text-align: center;
  }

  .sec_faq .right {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .sec_faq .faq .q {
    padding: 20px 30px 20px 46px;
  }
  .sec_faq .faq .q::after {
    right: 10px;
  }
  .sec_faq .faq .alp {
    left: 10px;
    font-size: 32px;
  }
  .sec_faq .faq .a {
    margin-inline: 10px;
    padding-right: 20px;
  }
}


/* エントランスページ */
.is-inline-block {
  display: inline-block;
}
.color-zoom {
  color: #0c64bc;
}
.entrance-mv-wrap {
  text-align: center;
  line-height: 1.5;
}
.entrance-mv-inner {
  position: relative;
  max-width: 1400px;
  margin-inline: auto;
  padding: 40px min(24.28%,340px);
  z-index: 2;
}
.entrance-mv-inner::before,.entrance-mv-inner::after {
  content: " ";
  position: absolute;
  bottom: max(-1.35vw,-19px);
  width: min(14.42%,202px);
  aspect-ratio: 1/1.425;
  background: center top / contain no-repeat;
  z-index: 1;
}
.entrance-mv-inner::before {
  left: 3.92%;
  background-image: url(../images/deco_hero01.png);
  z-index: -1;
}
.entrance-mv-inner::after {
  right: 4.07%;
  background-image: url(../images/deco_hero02.png);
}
.entrance-mv-headline img {
  display: block;
  width: 100%;
}
.entrance-mv-title-img {
  display: block;
}
.entrance-mv-headline-sub {
  display: block;
  position: relative;
  margin-top: 20px;
  padding: 9px 0.3em;
  background-color: #f2b900;
  border: solid 3px #000;
  /* border-radius: 10px; */
  font-size: min(4.71vw,66px);
  font-weight: 900;
  line-height: 1.1;
}
.entrance-mv-headline-sub::before,
.entrance-mv-headline-sub::after {
  content: " ";
  position: absolute;
  top: -0.227em;
  width: 0.181em;
  height: 0.409em;
  background-color: #000;
  /* border-radius: 13px; */
}
.entrance-mv-headline-sub::before {
  left: 6.38%;
}
.entrance-mv-headline-sub::after {
  right: 6.38%;
}
.entrance-lane-explanatory-text {
  margin-top: 16px;
  font-size: min(1.857vw,26px);
  font-weight: 700;
}
.entrance-lane-explanatory-text .color-zoom {
  font-weight: 800;
}
@media screen and (max-width: 900px) {
  .entrance-mv-inner {
    max-width: 500px;
    padding: 40px 20px 160px;
  }
  .entrance-mv-inner::before,.entrance-mv-inner::after {
    bottom: -9px;
    width: 100px;
  }
  .entrance-mv-headline-sub {
    margin-top: 36px;
    padding: 18px 11%;
    font-size: 24px;
  }
  .entrance-mv-headline-sub::before,
  .entrance-mv-headline-sub::after {
    top: -16px;
    width: 10px;
    height: 26px;
  }
  .entrance-mv-headline-sub::before {
    left: 30px;
  }
  .entrance-mv-headline-sub::after {
    right: 30px;
  }
  .entrance-lane-explanatory-text {
    font-size: min(2.1vw,18px);
  }
}
@media screen and (max-width: 480px) {
  .entrance-lane-explanatory-text {
    font-size: min(3.2vw,12px);
  }
}

.entrance_bg_outer {
  position: relative;
  background-size: auto auto;
  background-color: rgba(255, 249, 197, 1);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 13px, rgba(255, 244, 167, 1) 13px, rgba(255, 244, 167, 1) 26px);
  border-top: solid 3px #000;
  overflow: hidden;
  z-index: 1;
}
.entrance_bg_outer::before {
  content: "ENTRANCE";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: min(19.78vw,278px);
  font-weight: 800;
  line-height: 1;
  color: #ffef7d;
  z-index: -1;
  pointer-events: none;
  white-space: nowrap;
}

.entrance-lane-wrap {
  padding: 60px 0 20px;
  line-height: 1.5;
  text-align: center;
}
.entrance-date-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  padding: 0 16px 10px;
  border-bottom: solid 3px #000;
  margin-bottom: 40px;
  font-weight: 800;
  line-height: 1.1;
}
.entrance-date-text {
  margin-right: 20px;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 36px;
}
.entrance-date-text .year {
  display: inline-block;
}
.entrance-date-text .date {
  display: inline-block;
  font-size: 62px;
}
.entrance-date-text .week {
  display: inline-block;
  width: 1.6em;
  height: 1.6em;
  padding: 0.35em 0;
  background-color: #000;
  /* border-radius: 50%; */
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  vertical-align: baseline;
  line-height: 1;
}
.open-close-time-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 -10px -1em;
}
.open-close-time-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 10px 1em;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 700;
}
.open-close-time-item > dt {
  margin-right: 10px;
  font-size: 0.73em;
  font-weight: 800;
}
.entrance-event-lane-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: -18px 0 0 -18px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}
.entrance-event-lane-list > li {
  width: 185px;
  margin: 18px 0 0 18px;
}
.entrance-event-lane-list a {
  display: block;
  padding: 20px 15px 15px;
  background-color: #e96087;
  border: solid 3px #000;
  box-shadow: 0 7px 0 #000;
  /* border-radius: 10px; */
  color: #fff;
  text-align: center;
}
.entrance-event-lane-list a:hover {
  transform: translateY(7px);
  background-color: #000 !important;
  box-shadow: 0 0 0 #000;
}
.entrance-event-lane-list > li:nth-child(2) a {
  background-color: #f29600;
}
.entrance-event-lane-list > li:nth-child(3) a {
  background-color: #0dac67;
}
.entrance-event-lane-list > li:nth-child(4) a {
  background-color: #2ca6e0;
}
.entrance-event-lane-list > li:nth-child(5) a {
  background-color: #ed751b;
}
.entrance-event-lane-list .allocation {
  display: inline-block;
  margin: -5px 6px 0 0;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 66px;
  font-weight: 600;
  vertical-align: middle;
  line-height: 1;
}
.entrance-event-lane-list .external-link {
  position: relative;
  margin-top: 6px;
  padding: 5px 28px 7px;
  background-color: #000;
  border: solid 1px #000;
  /* border-radius: 5px; */
  font-size: 15px;
  font-weight: 700;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.entrance-event-lane-list a:hover .external-link {
  border-color: #fff;
}
.entrance-event-lane-list .external-link::after {
  content: " ";
  position: absolute;
  top: 50%;
  right: 14px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  width: 12px;
  height: 12px;
  background: url(../images/icon_schedule_link.svg) center / contain no-repeat;
}
@media screen and (max-width: 900px) {
  .entrance_bg_outer::before {
    font-size: 18.66vw;
  }
  .entrance-lane-wrap {
    padding: 30px 0;
  }
  .entrance-date-flex {
    display: block;
    margin-bottom: 30px;
  }
  .entrance-date-text {
    margin: 0;
    font-size: 36px;
    text-align: center;
  }
  .entrance-date-text .date {
    font-size: 58px;
  }
  .entrance-date-text .week {
    font-size: 18px;
  }
  .open-close-time-group {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 16px 0 -10px -1em;
  }
  .open-close-time-item {
    margin: 0 0 10px 1em;
    font-size: 26px;
  }
}

.entrance-questionnaire-wrap {
  position: relative;
  line-height: 1.5;
}
.entrance-questionnaire-content {
  position: relative;
  min-height: 260px;
  padding: 80px 19.09%;
  text-align: center;
}
.entrance-questionnaire-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5.45%;
  width: 23.63%;
  padding-top: 23.63%;
  background: url(../images/entrance/questionnaire_img.png) bottom center / contain no-repeat;
  pointer-events: none;
}
.entrance-questionnaire-title {
  font-size: 28px;
  font-weight: 700;
}
.entrance-questionnaire-content .notes-text {
  margin-top: 4px;
  font-size: 18px;
  color: #666;
}
.entrance-questionnaire-btn {
  display: block;
  position: relative;
  max-width: 440px;
  margin: 20px auto 0;
  padding: 20px 70px;
  background-color: #003f6b;
  border: solid 3px #000;
  /* border-radius: 80px; */
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}
.entrance-questionnaire-btn::after {
  content: " ";
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: url(../images/icon_schedule_link.svg) center / 34.61% no-repeat #002a42;
  border: solid 1px #002a42;
  /* border-radius: 50%; */
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.entrance-questionnaire-btn:hover {
  background-color: #000;
}
.entrance-questionnaire-btn:hover:after {
  background-color: #000;
  border-color: #fff;
}
@media screen and (max-width: 900px) {
  .entrance-questionnaire-wrap {
    background-size: 148%;
  }
  .entrance-questionnaire-content {
    min-height: 0;
    padding: 60px 0 120px;
  }
  .entrance-questionnaire-content::after {
    left: -10px;
    width: 110px;
    padding-top: 110px;
  }
  .entrance-questionnaire-content .notes-text {
    font-size: 16px;
  }
  .entrance-questionnaire-btn {
    max-width: 335px;
    margin: 20px auto 0;
    padding: 20px 60px;
    font-size: 18px;
  }
  .entrance-questionnaire-btn::after {
    right: 10px;
    width: 48px;
    height: 48px;
  }
}