@charset "UTF-8";
/* === foundation ===  */
/* reset */
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;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

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

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-decoration: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  border: none;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

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

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

select::-ms-expand {
  display: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* base */
@font-face {
  font-family: "bebas";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/Bebas_Neue/BebasNeue-Regular.ttf") format("truetype");
  font-display: swap;
}
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #1F1F1F;
  background: #1F1F1F;
  min-height: -webkit-fill-available;
}

body .l-header,
body .l-wrap,
body .l-footer,
body .p-menu__button,
body .p-float-area,
body .p-scrollbar {
  opacity: 0;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

html {
  background-color: #fff;
  height: -webkit-fill-available;
}

b {
  font-weight: 400;
}

strong {
  font-weight: 600;
}

/* === layout ===  */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 5;
  background: #48B7A1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.l-header__inner {
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
}

.l-header__logo {
  width: 204px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: auto;
  display: block;
}

.l-header__apply {
  margin-left: auto;
}

.l-header__apply-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 280px;
  background: #E06675;
}

.l-header__apply-link span {
  width: 100px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: center;
  line-height: 45px;
  font-family: "bebas", sans-serif;
  color: #1F1F1F;
  font-size: 24px;
  letter-spacing: -0.025em;
}

.l-header__apply-link img {
  width: 180px;
}

.l-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 80px;
}

.l-footer {
  background: #48B7A1;
  padding: 0 30px;
  position: relative;
}

.l-footer__pagetop {
  padding: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100px;
}

.l-footer__pagetop a {
  display: block;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  position: relative;
}

.l-footer__pagetop a:before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  border-left: 1px solid #1F1F1F;
  border-top: 1px solid #1F1F1F;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}

.l-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #1F1F1F;
  padding: 33px 0;
}

.l-footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  gap: 2em;
  line-height: 25px;
}

.l-footer__link {
  font-family: "bebas", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  color: #1F1F1F;
  letter-spacing: 0.025em;
  cursor: pointer;
}

.l-footer__link img {
  position: relative;
  top: -2px;
}

.l-footer__copy {
  font-size: 16px;
  letter-spacing: 0.025em;
  color: #1F1F1F;
  font-family: "bebas", sans-serif;
  margin-left: 26px;
}

.l-section {
  position: relative;
  padding: 50px 0 100px;
}

.l-section__inner {
  position: relative;
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* === component ===  */
.c-anchor {
  position: relative;
}

.c-anchor div {
  position: absolute;
  top: -90px;
}

.c-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 30px;
  gap: 30px;
}

.c-button {
  position: relative;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 26px;
  background: #000;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  width: 100%;
  padding: 10px 18px;
  color: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.c-button:hover {
  opacity: 0.5;
}

.c-apply-button {
  width: 100%;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 56px;
}

.c-apply-button img {
  width: 264px;
  height: auto;
}

.c-apply-button._red {
  background: #E06675;
}

.c-apply-button._green {
  background: #48B7A1;
}

.c-effect {
  position: relative;
}

.c-effect._inline {
  display: table;
}

.c-cover {
  background: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.c-white {
  background: #1F1F1F;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0;
}

.se-section-1 .c-white,
.se-section-3 .c-white {
  background: #F7F7F7;
}

.c-modal__inner-wrap {
  position: relative;
  width: auto;
  margin: 0 auto;
  max-width: 100%;
}

.c-modal__mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #400;
}

.c-modal__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  position: relative;
  margin: 0 auto;
  max-height: calc(100vh - 60px);
  overflow: auto;
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}

.c-modal__inner::-webkit-scrollbar { /* Chrome, Safari 対応 */
  display: none;
}

.c-modal__detail {
  max-width: 980px;
  margin: 0 auto;
}

.c-modal__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  font-family: "bebas";
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 40px;
}

.p-modal._stage-1 .c-modal__head {
  color: #569CD6;
}

.p-modal._stage-1 .c-modal__head .c-modal__head-text-1 {
  border-color: #569CD6;
}

.p-modal._stage-1 .c-modal__contents-title {
  background: #569CD6;
}

.p-modal._stage-1 .c-modal__company {
  border-top-color: #569CD6;
}

.p-modal._stage-2 .c-modal__head {
  color: #DA70D6;
}

.p-modal._stage-2 .c-modal__head .c-modal__head-text-1 {
  border-color: #DA70D6;
}

.p-modal._stage-2 .c-modal__contents-title {
  background: #DA70D6;
}

.p-modal._stage-2 .c-modal__company {
  border-top-color: #DA70D6;
}

.p-modal._stage-1 .c-modal__contents,
.p-modal._stage-2 .c-modal__contents {
  max-height: calc(100vh - 240px);
}

.p-modal._default p {
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 500;
}

.p-modal._default p + p {
  margin-top: 1.5em;
}

.p-modal._default strong {
  font-size: 16px;
  line-height: 1.5em;
}

.c-modal__text-block + .c-modal__text-block {
  margin-top: 20px;
  padding-top: 21px;
  border-top: 2px solid #48B7A1;
}

.c-modal__text-block strong {
  display: block;
}

.c-modal__head-text-1 {
  border: 1px solid;
  line-height: 1em;
  height: 45px;
  padding: 4px 0 0;
  width: 125px;
  text-align: center;
}

.c-modal__head-text-2 {
  padding-top: 4px;
}

.c-modal__contents {
  background: #fff;
  max-height: 100%;
  overflow: auto;
}

.c-modal__contents-title {
  background: #48B7A1; /*height: 60px;*/
  text-align: center;
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  line-height: 36px;
  padding: 12px;
}

.c-modal__contents-body {
  padding: 32px 40px 68px;
}

.c-modal__contents-read {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.c-modal__contents-read p {
  font-size: 17px;
  line-height: 29px;
  font-weight: 500;
}

.c-modal__contents-read p + p {
  margin-top: 29px;
}

.c-modal__contents-read-img {
  width: 140px;
  height: 140px;
}

.c-modal__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
  margin-top: 32px;
}

.c-modal__foot-button {
  width: 300px;
  height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px;
  font-size: 17px;
  color: #fff;
}

.c-modal__foot-button:after {
  content: "";
  display: block;
  border-left: solid 7px #fff;
  border-top: solid 4px transparent;
  border-bottom: solid 4px transparent;
}

.c-modal__foot-button._red {
  background: #E06675;
}

.c-modal__foot-button._brown {
  background: #C98E75;
}

.c-modal__company {
  border-top: 4px solid;
  margin-top: 36px;
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
}

.c-modal__company + .c-modal__company {
  border-top: 2px solid;
}

.c-modal__member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.c-modal__member-image {
  width: 250px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.c-modal__member-img {
  display: block;
  width: 100%;
  height: auto;
}

.c-modal__member-data {
  width: calc(100% - 290px);
}

.c-modal__member-data p {
  font-size: 15px;
  line-height: 27px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.c-modal__member-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 2px solid #1F1F1F;
  padding-bottom: 20px;
  margin-bottom: 20px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 10px;
}

.c-modal__member-name {
  font-size: 20px;
  line-height: 2em;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.c-modal__member-post {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
}

.c-modal__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}

.c-modal__company-data {
  width: 100%; /*background: #F5F5F5;*/
  background: #FFF;
  padding: 26px 24px;
  border: solid 1px #ccc;
}

.c-modal__company-data-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 16px;
}

.c-modal__company-data-logo {
  width: 200px;
  height: 60px;
}

.c-modal__company-data-logo img {
  font-family: "object-fit:contain";
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.c-modal__company-button {
  border: 1px solid #1F1F1F;
  font-family: "bebas", sans-serif;
  width: 160px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 9px;
  font-size: 18px;
  letter-spacing: 0.025em;
  line-height: 1em;
  padding-top: 3px;
  color: #1F1F1F;
}

.c-modal__company-button img {
  position: relative;
  top: -1px;
}

.c-modal__company-data-body {
  font-size: 15px;
  line-height: 27px;
  letter-spacing: 0.05em;
}

.c-notes {
  display: table;
  text-align: center;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.05em;
  color: #48B7A1;
  font-weight: 600;
  margin: 60px auto 0;
}

[data-in-view] {
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  opacity: 0;
}

[data-in-view].in-view {
  opacity: 1;
}

[data-in-view][data-delay="100"] {
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
}

[data-in-view][data-delay="200"] {
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}

[data-in-view][data-delay="300"] {
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
}

[data-in-view][data-delay="400"] {
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}

[data-in-view][data-delay="500"] {
  -webkit-transition-delay: 500ms;
  transition-delay: 500ms;
}

[data-in-view][data-delay="600"] {
  -webkit-transition-delay: 600ms;
  transition-delay: 600ms;
}

[data-in-view][data-delay="700"] {
  -webkit-transition-delay: 700ms;
  transition-delay: 700ms;
}

[data-in-view][data-delay="800"] {
  -webkit-transition-delay: 800ms;
  transition-delay: 800ms;
}

[data-in-view][data-delay="900"] {
  -webkit-transition-delay: 900ms;
  transition-delay: 900ms;
}

[data-in-view][data-delay="1000"] {
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.c-stages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  width: 100%;
}

.c-stage {
  width: 100%;
  position: relative;
}

.c-stage._stage-1 .c-stage__title {
  color: #569CD6;
  border-color: #569CD6;
}

.c-stage._stage-1 .c-stage__time {
  background: #569CD6;
}

.c-stage._stage-1 .c-stage__data-title {
  color: #569CD6;
  border-bottom-color: #569CD6;
}

.c-stage._stage-1 .c-stage__last {
  color: #569CD6;
}

.c-stage._stage-2 .c-stage__title {
  color: #DA70D6;
  border-color: #DA70D6;
}

.c-stage._stage-2 .c-stage__time {
  background: #DA70D6;
}

.c-stage._stage-2 .c-stage__data-title {
  color: #DA70D6;
  border-bottom-color: #DA70D6;
}

.c-stage._stage-2 .c-stage__last {
  color: #DA70D6;
}

.c-stage._stage-2 .c-stage__center-time {
  display: none;
}

.c-stage._stage-1:after {
  content: "";
  width: 5px;
  height: 100%;
  background: #48B7A1;
  position: absolute;
  right: -42.5px;
  top: 0;
}

.c-stage__title {
  font-size: 60px;
  line-height: 75px;
  font-family: "bebas";
  text-align: center;
  border: 3px solid;
  letter-spacing: 0.02em;
  height: 75px;
  margin-bottom: 25px;
}

.c-stage__box-wrap {
  position: relative;
  margin-bottom: 20px;
}

.c-stage__box-wrap:last-child {
  margin-bottom: 0;
}

.c-stage__box {
  background: #fff;
  margin-bottom: 20px;
  position: relative;
}

.c-stage__box:last-child {
  margin-bottom: 0;
}

.c-stage__time {
  color: #fff;
  font-family: "bebas";
  font-size: 25px;
  letter-spacing: 0.025em;
  text-align: center;
  height: 40px;
  line-height: 40px;
}

.c-stage__center-time {
  position: absolute;
  right: -68px;
  top: 0;
  width: 54px;
  height: 40px;
  line-height: 35px;
  font-size: 20px;
  letter-spacing: 0.025em;
  text-align: center;
  color: #48B7A1;
  font-family: "bebas";
  border: 4px solid #48B7A1;
  background: #1F1F1F;
  z-index: 10;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.c-stage__center-time._11 {
  top: -30%;
}

.c-stage__data {
  padding: 11px 20px 26px;
}

.c-stage__data-title {
  font-size: 20px;
  line-height: 34px;
  border-bottom: 2px solid;
  font-weight: 600;
  padding-bottom: 10px;
}

.c-stage__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 13px;
  padding: 20px 0;
}

.c-stage__item + .c-stage__item {
  border-top: 1px dashed #1F1F1F;
}

.c-stage__item-logo {
  width: 120px;
  height: 36px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.c-stage__item-logo img {
  font-family: "object-fit:contain";
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.c-stage__name-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
}

.c-stage__name {
  font-size: 16px;
  line-height: 27px;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.c-stage__post {
  font-size: 13px;
  line-height: 27px;
  font-weight: 500;
}

.c-stage__morebutton {
  margin-top: 10px;
  border: 1px solid #1F1F1F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 35px;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 35px;
  gap: 11px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.c-stage__morebutton span {
  width: 12px;
  height: 12px;
  display: block;
  position: relative;
}

.c-stage__morebutton span:before,
.c-stage__morebutton span:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #1F1F1F;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.c-stage__morebutton span:after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

.c-stage__morebutton:hover {
  opacity: 0.5;
}

.c-stage__last {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  padding: 30px 20px 20px;
}

.c-stage__modal {
  background: #fff;
  width: 980px;
  max-width: 100%;
}

.c-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 150px;
  line-height: 140px;
  font-family: "bebas", sans-serif;
  margin-bottom: 65px;
  padding: 48px 0 32px;
  height: 260px;
  letter-spacing: 0.02em;
}

.c-title._white {
  color: #fff;
  background-image: linear-gradient(to bottom, #fff 30px, transparent 230px, #fff);
}

.c-title._red {
  color: #E06675;
  background-image: linear-gradient(to bottom, #E06675 30px, transparent 30px, transparent 230px, #E06675 230px);
}

.c-title._green {
  color: #48B7A1;
  background-image: linear-gradient(to bottom, #48B7A1 30px, transparent 30px, transparent 230px, #48B7A1 230px);
}

.c-title._pink {
  color: #DA70D6;
  background-image: linear-gradient(to bottom, #DA70D6 30px, transparent 30px, transparent 230px, #DA70D6 230px);
}

.c-title._blue {
  color: #569CD6;
  background-image: linear-gradient(to bottom, #569CD6 30px, transparent 30px, transparent 230px, #569CD6 230px);
}

.c-title._brown {
  color: #C98E75;
  background-image: linear-gradient(to bottom, #C98E75 30px, transparent 30px, transparent 230px, #C98E75 230px);
}

.c-title._beige {
  color: #DCDCAA;
  background-image: linear-gradient(to bottom, #DCDCAA 30px, transparent 30px, transparent 230px, #DCDCAA 230px);
}

.c-title._black {
  color: #1F1F1F;
  background-image: linear-gradient(to bottom, #1F1F1F 30px, transparent 30px, transparent 230px, #1F1F1F 230px);
}

.c-title._yellow {
  color: #DCDCAA;
  background-image: linear-gradient(to bottom, #DCDCAA 30px, transparent 30px, transparent 230px, #DCDCAA 230px);
}

.swiper-modalInSlider {
  width: 100%;
}

/* モーダル */
.swiper-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 9999;
  background-color: rgba(51, 51, 51, 0.9);
  pointer-events: none !important;
}

.swiper-modal * {
  pointer-events: none !important;
}

/* モーダルがactiveの時 */
.swiper-modal.is-active {
  opacity: 1;
  pointer-events: auto !important;
}

.swiper-modal.is-active * {
  pointer-events: auto !important;
}

/* モーダル背景のオーバーレイ部分 */
.swiper-modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* モーダルのコンテンツ */
.swiper-modal__content {
  position: relative;
  width: 100%;
}

.swiper-modal_inner {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* 閉じるボタン */
.swiper-modal__close-btn {
  position: fixed;
  right: 20px;
  top: 20px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 20;
}

.swiper-modal__close-btn:before,
.swiper-modal__close-btn:after {
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}

.swiper-modal__close-btn:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.swiper-modal__close-btn:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.swiper-modal__close-btn:hover {
  opacity: 0.8;
}

.swiper-modalInSlider-slide {
  padding: 20px 100px;
  position: relative;
  z-index: 20;
}

.swiper-wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 10;
}

.swiper-button-wrap {
  width: 100%;
  max-width: 1042px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
}

.swiper-slide {
  pointer-events: none;
}

.swiper-slide.swiper-slide-active {
  pointer-events: initial;
  position: relative !important;
  z-index: 1000 !important;
}

.swiper-button-prev,
.swiper-button-next {
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  border-radius: 50%;
  top: -10px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: relative;
}

.swiper-button-prev:after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  left: 5px;
}

.swiper-button-next:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 5px;
}

.c-swiper-modal-detail {
  background: #fff;
  max-width: 840px;
  margin: 0 auto;
  padding: 48px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  z-index: 10;
  position: relative;
  overflow: auto;
  max-height: 90vh;
  word-break: break-all;
}

.c-swiper-modal-detail a {
  color: #AE8726;
}

.swiper-outmask {
  width: 100%;
  height: 300%;
  position: absolute;
  left: 0;
  top: -100%;
  opacity: 0.5;
  z-index: 10;
  cursor: pointer;
}

.swiper-mask {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.5;
  z-index: 10;
  cursor: pointer;
}

.c-swiper-modal-detail__image {
  width: 290px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 40%;
  z-index: 1;
}

.c-swiper-modal-detail__image img {
  width: 100%;
  height: auto;
}

.c-swiper-modal-detail__texts {
  width: 100%;
}

.c-swiper-modal-detail__texts p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.c-swiper-modal-detail__texts p + p {
  margin-top: 1.5em;
}

.c-swiper-modal-detail__texts p.text-large {
  font-size: 18px;
  font-weight: 600;
}

.c-swiper-modal-detail__texts p.text-red {
  font-weight: 600;
  color: #8D1233;
}

.c-swiper-modal-detail__texts p.text-red + p {
  margin-top: 0;
}

.c-swiper-modal-detail__title {
  font-weight: 600;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #E6E6E6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.c-swiper-modal-detail__title._member {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 0;
}

.c-swiper-modal-detail__time {
  font-size: 20px;
  line-height: 23px;
  color: #8D1233;
}

.c-swiper-modal-detail__title-text {
  font-size: 20px;
  line-height: 27px;
}

.c-swiper-modal-detail__title-sub {
  font-size: 17px;
  line-height: 23px;
}

.c-swiper-modal-detail__number {
  font-size: 28px;
  line-height: 38px;
  color: #AE8726;
}

.c-swiper-modal-detail__names {
  color: #AE8726;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}

.c-swiper-modal-detail__names span {
  display: block;
}

.c-swiper-modal-detail__names span:first-child {
  font-size: 25px;
  line-height: 38px;
}

.c-swiper-modal-detail__names span:last-child {
  font-size: 14px;
  line-height: 1em;
  font-family: "Helvetica", sans-serif;
  letter-spacing: 0.05em;
}

.c-swiper-modal-detail__member-data {
  width: 100%;
}

.c-swiper-modal-detail__member-data-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #E6E6E6;
  padding: 10px 0;
}

.c-swiper-modal-detail__member-data-list span {
  font-weight: 500;
}

.c-swiper-modal-detail__member-data-list span:first-child {
  width: 117px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.c-swiper-modal-detail__member-data-list span:last-child {
  font-size: 14px;
  line-height: 1em;
  font-family: "Helvetica", sans-serif;
  letter-spacing: 0.05em;
}

.js-tab-button {
  color: #fff;
  background: #999999;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.js-tab-button.is-tab-button--active {
  background: #8D1233;
}

.js-tab-target {
  display: none;
}

.js-tab-target.is-tab-target--active {
  display: block;
}

/* === utility ===  */
.is-hidden {
  display: none;
}

.u-relative {
  position: relative;
}

.u-text-center {
  text-align: center;
}

.u-color-white {
  color: #fff;
}

/* === project ===  */
.p-about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

.p-about__left {
  width: 100%;
  font-size: 20px;
  line-height: 34px;
}

.p-about__left p {
  font-weight: 600;
}

.p-about__left p span {
  background-color: #DCDCAA;
}

.p-about__left p + p {
  margin-top: 1em;
}

.p-about__right {
  width: 100%;
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.p-contents__content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 410px;
  background: #fff;
  height: auto;
}

.p-contents__content-item + .p-contents__content-item {
  margin-top: 60px;
}

.p-contents__content-item._green .p-contents__content-title {
  background: #48B7A1;
}

.p-contents__content-item._green .p-contents__content-image span {
  background: #48B7A1;
}

.p-contents__content-item._red .p-contents__content-title {
  background: #E06675;
}

.p-contents__content-item._red .p-contents__content-image span {
  background: #E06675;
  left: auto;
  right: 0;
}

.p-contents__content-item._red .p-contents__content-image {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.p-contents__content-item._red .p-contents__content-texts {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.p-contents__content-item._blue .p-contents__content-title {
  background: #569CD6;
}

.p-contents__content-item._blue .p-contents__content-image span {
  background: #569CD6;
}


.p-contents__content-item._brown .p-contents__content-title {
  background: #C98E75;
}

.p-contents__content-item._brown .p-contents__content-image span {
  background: #C98E75;
  left: auto;
  right: 0;
}

.p-contents__content-item._brown .p-contents__content-image {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.p-contents__content-item._brown .p-contents__content-texts {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.p-contents__content-item._pink .p-contents__content-title {
  background: #DA70D6;
}

.p-contents__content-item._pink .p-contents__content-image span {
  background: #DA70D6;
}



.p-contents__content-image {
  width: 55.738%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}

.p-contents__content-image img {
  width: 100%;
  height: 100%;
  font-family: "object-fit:cover";
  -o-object-fit: cover;
  object-fit: cover;
}

.p-contents__content-image span {
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 90px;
  text-align: center;
  line-height: 80px;
  padding-top: 10px;
  color: #fff;
  font-family: "bebas", sans-serif;
  font-size: 60px;
}

.p-contents__content-title {
  padding: 8px 25px;
  color: #fff;
  font-size: 22px;
  line-height: 34px;
  font-weight: 600;
}

.p-contents__content-text {
  min-height: 360px;
  padding: 25px;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 0.05em;
  font-weight: 500;
  background: #fff;
}

.p-contents__banners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 45px;
  margin: 60px 0;
}

.p-contents__banner {
  display: block;
}

.p-contents__banner img {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  width: 100%;
  height: auto;
}

.p-contents__banner:hover {
  opacity: 1;
}

.p-contents__banner:hover img {
  opacity: 0.5;
}

.p-location__title {
  font-family: "bebas", sans-serif;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 20px;
}

.p-location__block {
  width: 100%;
}

.p-location__block + .p-location__block {
  margin-top: 57px;
}

.p-location__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #C98E75;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-location__box-texts {
  width: 100%;
  padding: 30px 40px 30px;
}

.p-location__box-text {
  color: #fff;
}

.p-location__box-text + .p-location__box-text {
  padding-top: 31px;
  margin-top: 30px;
  border-top: 1px solid #fff;
}

.p-location__box-title {
  font-family: "bebas", sans-serif;
  font-size: 30px;
  line-height: 25px;
  letter-spacing: 0.025em;
  margin-bottom: 12px;
}

.p-location__text1 {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  font-weight: 600;
}

.p-location__text2 {
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.p-location__button {
  margin-top: 52px;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 50px;
  color: #fff;
  font-family: "bebas", sans-serif;
  font-size: 25px;
  line-height: 25px;
  letter-spacing: 0.025em;
  gap: 15px;
}

.p-location__button span {
  padding-top: 4px;
}

.p-location__box-map {
  width: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-location__box-map iframe {
  width: 100%;
  height: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.p-location__summary-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.05em;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  color: #fff;
  gap: 5px;
  padding: 10px 0;
  font-weight: 500;
}

.p-location__summary-item span:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 120px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-location__summary-item span:first-child:after {
  content: ":";
  display: block;
  right: 0;
}

.p-location__summary-item span:last-child {
  width: 100%;
}

.p-location__summary-item + .p-location__summary-item {
  border-top: 1px solid #fff;
}

.p-mainvisual {
  height: auto;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.p-close {
  margin: 60px 0 20px;
}

.p-mainvisual__img {
  width: 100%;
  display: block;
}

.p-menu {
  width: 100%;
  padding-top: 5px;
}

.p-menu__button {
  display: none;
}

.p-menu__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.p-menu__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.p-menu__list {
  font-family: "bebas";
  position: relative;
}

.p-menu__list:after {
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  background: #1F1F1F;
  position: absolute;
  top: 45%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-menu__list:after {
  right: -1px;
}

.p-menu__list:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  padding: 0 0 0 15px;
}

.p-menu__list:last-child a {
  width: 30px;
  height: 30px;
  padding: 0;
  display: block;
}

.p-menu__list:last-child:after {
  display: none;
}

.p-menu__list:last-child img {
  position: relative;
  top: -2px;
}

.p-menu__link {
  font-size: 28px;
  line-height: 1em;
  padding: 0 0.5em;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #1F1F1F;
  display: block;
  white-space: nowrap;
}

.p-menu__link:hover {
  opacity: 0.5;
}

.p-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  background: rgba(31, 31, 31, 0.95);
}

/* モーダルがactiveの時 */
.p-modal.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

/* モーダル背景のオーバーレイ部分 */
.p-modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

.p-modal.is-active .p-modal__overlay {
  opacity: 1;
}

/* モーダルのコンテンツ */
.p-modal__content {
  position: relative;
  width: 100%;
  max-width: calc(100% - 40px);
}

/* モーダルを閉じるボタン */
.p-modal__close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.p-modal__close-btn:before,
.p-modal__close-btn:after {
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform-origin: left;
  transform-origin: left;
}

.p-modal__close-btn:before {
  -webkit-transform: rotate(45deg) translate(-50%, -50%);
  transform: rotate(45deg) translate(-50%, -50%);
}

.p-modal__close-btn:after {
  -webkit-transform: rotate(-45deg) translate(-50%, -50%);
  transform: rotate(-45deg) translate(-50%, -50%);
}

.p-modal__close-btn:hover {
  opacity: 0.5;
}

.p-movies__items {
  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;
  gap: 48px 35px;
}

.p-movies__item {
  width: 370px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}

.p-movies__item .p-movies__item-image {
  position: relative;
}

.p-movies__item .p-movies__item-image:after {
  content: "";
  display: block;
  position: absolute;
  width: 70px;
  height: 70px;
  background: url(../images/play.svg);
  background-size: 100% 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.p-movies__item span {
  display: block;
  color: #fff;
  font-weight: 600;
  line-height: 1.5em;
  margin-top: 16px;
}

.p-movies__item:hover {
  opacity: 0.5;
}

._movie-content iframe {
  width: 980px;
  height: 551.25px;
}

._movie-content a {
  display: block;
  margin: 48px auto;
  width: 300px;
  height: 55px;
  background: #E06675;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 600;
  position: relative;
  padding-left: 5px;
}

._movie-content a:before,
._movie-content a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

._movie-content a:before {
  background: url(../images/icon-conference.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 26px 22px;
  width: 26px;
  height: 22px;
  left: 20px;
}

._movie-content a:after {
  border-left: 7.24px solid #fff;
  border-top: 4.16px solid transparent;
  border-bottom: 4.16px solid transparent;
  right: 20px;
}

.p-sponsors__block {
  max-width: 1040px;
  margin: 60px auto 0;
  overflow: hidden;
}

.p-sponsors__title {
  position: relative;
  margin-bottom: 20px;
}

.p-sponsors__title span {
  font-family: "bebas", sans-serif;
  display: table;
  margin: 0 auto;
  font-size: 35px;
  letter-spacing: 0.025em;
  color: #C98E75;
  position: relative;
  padding: 0 20px;
}

.p-sponsors__title span:before,
.p-sponsors__title span:after {
  content: "";
  display: block;
  width: 100vw;
  height: 5px;
  background: #C98E75;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-sponsors__title span:before {
  right: 100%;
}

.p-sponsors__title span:after {
  left: 100%;
}

.p-sponsors__banners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 22.5px;
}

.p-sponsors__banners._platinum .p-sponsors__banner {
  max-width: 430px;
}

.p-sponsors__banners._gold .p-sponsors__banner {
  max-width: 330px;
}

.p-sponsors__banners._silver .p-sponsors__banner {
  max-width: 190px;
}

@media screen and (min-width: 801px) {
  a {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  a:hover {
    opacity: 0.5;
  }
  .u-pc-none {
    display: none;
  }
}
@media screen and (max-width: 1100px) {
  html,
  body {
    overflow-y: scroll;
    -ms-overflow-style: none; /* IE, Edge 対応 */
    scrollbar-width: none; /* Firefox 対応 */
  }
  body::-webkit-scrollbar { /* Chrome, Safari 対応 */
    display: none;
  }
  .l-header {
    height: 47px;
  }
  .l-header__inner {
    padding: 0 52px 0 10px;
  }
  .l-header__logo {
    width: 135px;
  }
  .l-header__apply-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 120px;
    background: #E06675;
  }
  .l-header__apply-link span {
    display: none;
  }
  .l-header__apply-link img {
    width: 120px;
    height: 30px;
  }
  .l-wrap {
    overflow: hidden;
    padding-top: 47px;
  }
  .p-menu__button {
    display: block;
    position: fixed;
    top: 8.5px;
    right: 10px;
    width: 30px;
    height: 30px;
    border: 1px solid #1F1F1F;
    z-index: 11;
    cursor: pointer;
  }
  .p-menu__button-line,
  .p-menu__button-line:before,
  .p-menu__button-line:after {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 18px;
    height: 1px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background: #1F1F1F;
  }
  .p-menu__button-line:before {
    content: "";
    top: -5px;
  }
  .p-menu__button-line:after {
    content: "";
    top: 6px;
  }
  .is-menu-open .p-menu {
    right: 0;
    top: 47px;
    margin-top: 0;
    padding-top: 0;
    pointer-events: initial;
  }
  .is-menu-open .p-menu__button-line {
    background: transparent;
  }
  .is-menu-open .p-menu__button-line:before {
    -webkit-transform: translate(-50%, -50%) rotate(150deg);
    transform: translate(-50%, -50%) rotate(150deg);
    top: 50%;
    width: 21px;
  }
  .is-menu-open .p-menu__button-line:after {
    -webkit-transform: translate(-50%, -50%) rotate(-150deg);
    transform: translate(-50%, -50%) rotate(-150deg);
    top: 50%;
    width: 21px;
  }
  .p-menu {
    pointer-events: none;
    position: fixed;
    width: 100%;
    height: calc(100vh - 47px);
    height: calc(100svh - 47px);
    top: 47px;
    right: -100vw;
    -webkit-transition: right 0.5s;
    transition: right 0.5s;
    padding-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .p-menu * {
    pointer-events: none;
  }
  .p-menu__inner {
    background: rgba(72, 183, 161, 0.95);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: calc(100vh - 47px);
    height: calc(100svh - 47px);
    width: 180px;
    overflow: auto;
    padding: 20px 18px 50px;
  }
  .p-menu__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin-left: 0;
    gap: 0;
  }
  .p-menu__list {
    border-bottom: 1px solid #1F1F1F;
    padding: 0;
  }
  .p-menu__list:before,
  .p-menu__list:after {
    display: none;
  }
  .p-menu__list:last-child {
    border: none;
    padding: 14px 0;
    gap: 14px;
  }
  .p-menu__list:last-child .p-menu__link {
    line-height: 1em;
    padding: 0 0 0;
  }
  .p-menu__list:last-child .p-menu__link img {
    top: 0;
  }
  .p-menu__link {
    padding: 0;
    line-height: 60px;
    font-size: 25px;
  }
  .is-menu-open .p-menu {
    right: 0;
    pointer-events: initial;
  }
  .is-menu-open .p-menu * {
    pointer-events: initial;
  }
}
@media screen and (max-width: 1020px) {
  ._movie-content iframe {
    width: calc(100vw - 40px);
    height: calc((100vw - 40px) / 16 * 9);
  }
}
@media screen and (max-width: 800px) {
  body {
    min-width: 375px;
  }
  .l-footer {
    padding: 0 15px;
  }
  .l-footer__pagetop {
    padding: 20px;
    height: 60px;
  }
  .l-footer__pagetop a {
    width: 60px;
    height: 60px;
  }
  .l-footer__pagetop a:before {
    width: 29px;
    height: 29px;
    top: 24px;
  }
  .l-footer__bottom {
    padding: 8px 0 35px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .l-footer__logo {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 185px;
    height: auto;
  }
  .l-footer__links {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    gap: 20px;
    margin-bottom: 25px;
  }
  .l-footer__link {
    gap: 5px;
  }
  .l-footer__copy {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-left: auto;
  }
  .l-section {
    padding: 0 0 50px;
  }
  .c-anchor div {
    top: -47px;
  }
  .c-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 10px;
    gap: 10px;
  }
  .c-button {
    min-height: 50px;
    gap: 10px;
    font-size: 13px;
    line-height: 16px;
    padding: 10px;
  }
  .c-button img {
    width: 14px;
  }
  .c-apply-button {
    height: 64px;
    margin-top: 40px;
  }
  .c-apply-button img {
    width: 180px;
  }
  .p-modal._stage-1 .c-modal__contents,
  .p-modal._stage-2 .c-modal__contents {
    max-height: calc(100vh - 250px);
  }
  .c-modal__detail {
    max-width: 100%;
  }
  .c-modal__head {
    font-size: 25px;
    line-height: 29px;
    margin-bottom: 20px;
  }
  .p-modal._stage-1 .c-modal__contents,
  .p-modal._stage-2 .c-modal__contents {
    max-height: unset;
  }
  .p-modal._default p {
    font-size: 12px;
    line-height: 21px;
  }
  .p-modal._default p + p {
    margin-top: 1em;
  }
  .p-modal._default strong {
    font-size: 12px;
    line-height: 21px;
  }
  .c-modal__text-block + .c-modal__text-block {
    margin-top: 20px;
    padding-top: 21px;
    border-top: 2px solid #48B7A1;
  }
  .c-modal__text-block strong {
    display: block;
  }
  .c-modal__head-text-1 {
    height: 29px;
    padding: 3px 0 0;
    width: 78px;
  }
  .c-modal__head-text-2 {
    padding-top: 3px;
  }
  .c-modal__contents {
    background: #fff;
    max-height: 100%;
    overflow: auto;
  }
  .c-modal__contents-title {
    font-size: 15px;
    line-height: 1.6;
    padding: 8px;
    letter-spacing: 1px;
  }
  .c-modal__contents-body {
    padding: 15px 20px 30px;
  }
  .c-modal__contents-read {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
  .c-modal__contents-read p {
    font-size: 13px;
    line-height: 22px;
  }
  .c-modal__contents-read p + p {
    margin-top: 22px;
  }
  .c-modal__contents-read-img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
  }
  .c-modal__foot {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 100px;
  }
  .c-modal__foot-button {
    width: 275px;
    height: 45px;
    gap: 8px;
    font-size: 15px;
    margin: 0 auto;
  }
  .c-modal__company {
    border-top: 3px solid;
    margin-top: 17px;
    padding-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .c-modal__company + .c-modal__company {
    border-top: 2px solid;
  }
  .c-modal__member {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
  .c-modal__member-image {
    width: 155px;
    margin: 0 auto;
  }
  .c-modal__member-data {
    width: 100%;
  }
  .c-modal__member-data p {
    font-size: 12px;
    line-height: 22px;
  }
  .c-modal__member-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-bottom: 2px solid #1F1F1F;
    padding-bottom: 15px;
    margin-bottom: 10px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 15px;
  }
  .c-modal__member-name {
    font-size: 16px;
    line-height: 27px;
  }
  .c-modal__member-post {
    font-size: 11px;
    line-height: 17px;
  }
  .c-modal__sns a {
    width: 25px;
    height: 25px;
    display: block;
  }
  .c-modal__company-data {
    padding: 15px 20px 80px;
    position: relative;
  }
  .c-modal__company-data-head {
    margin-bottom: 10px;
  }
  .c-modal__company-data-logo {
    width: 110px;
    height: 33px;
  }
  .c-modal__company-button {
    width: 145px;
    gap: 8px;
    font-size: 17px;
    padding-top: 2px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 30px;
  }
  .c-modal__company-data-body {
    font-size: 12px;
    line-height: 22px;
  }
  .c-notes {
    font-size: 12px;
    margin: 40px auto 0;
  }
  .c-stages {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    padding-left: 40px;
  }
  .c-stage._stage-1:after,
  .c-stage._stage-2:after {
    content: "";
    display: block;
    width: 4px;
    height: 100%;
    background: #48B7A1;
    position: absolute;
    right: auto;
    left: -32px;
    top: 0;
  }
  .c-stage._stage-2 .c-stage__center-time {
    display: block;
  }
  .c-stage._stage-2 .c-stage__center-time._11 {
    top: -10%;
  }
  .c-stage__title {
    font-size: 40px;
    line-height: 56px;
    border: 3px solid;
    height: 56px;
    margin-bottom: 30px;
  }
  .c-stage__box-wrap {
    margin-bottom: 20px;
    height: auto !important;
  }
  .c-stage__box-wrap:last-child {
    margin-bottom: 0;
  }
  .c-stage__box:last-child {
    margin-bottom: 0;
  }
  .c-stage__time {
    font-size: 20px;
    height: 30px;
    line-height: 32px;
  }
  .c-stage__center-time {
    right: auto;
    left: -53px;
    top: 0;
    width: 42px;
    height: 28px;
    line-height: 24px;
    font-size: 15px;
    border: 3px solid #48B7A1;
  }
  .c-stage__data {
    padding: 0 12px 20px;
  }
  .c-stage__data-title {
    font-size: 15px;
    line-height: 1.5;
    padding: 10px 0;
  }
  .c-stage__item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 10px 0;
  }
  .c-stage__name-wrap {
    display: block;
  }
  .c-stage__name {
    font-size: 14px;
    padding-top: 4px;
  }
  .c-stage__post {
    font-size: 11px;
    width: calc(100vw - 120px);
    margin-left: -133px;
    line-height: 1.5;
    padding: 10px 0;
  }
  .c-stage__morebutton {
    margin-top: 0;
    height: 30px;
    gap: 6px;
  }
  .c-stage__morebutton span {
    width: 10px;
    height: 10px;
  }
  .c-stage__last {
    font-size: 15px;
    padding: 22px 20px 4px;
  }
  .c-title {
    font-size: 50px;
    line-height: 45px;
    margin-bottom: 30px;
    padding: 20px 0 16px;
    height: 90px;
  }
  .c-title._white {
    background-image: linear-gradient(to bottom, #fff 9px, transparent 9px, transparent 81px, #fff 81px);
  }
  .c-title._red {
    background-image: linear-gradient(to bottom, #E06675 9px, transparent 9px, transparent 81px, #E06675 81px);
  }
  .c-title._green {
    background-image: linear-gradient(to bottom, #48B7A1 9px, transparent 9px, transparent 81px, #48B7A1 81px);
  }
  .c-title._pink {
    background-image: linear-gradient(to bottom, #DA70D6 9px, transparent 9px, transparent 81px, #DA70D6 81px);
  }
  .c-title._blue {
    background-image: linear-gradient(to bottom, #569CD6 9px, transparent 9px, transparent 81px, #569CD6 81px);
  }
  .c-title._brown {
    background-image: linear-gradient(to bottom, #C98E75 9px, transparent 9px, transparent 81px, #C98E75 81px);
  }
  .c-title._beige {
    background-image: linear-gradient(to bottom, #DCDCAA 9px, transparent 9px, transparent 81px, #DCDCAA 81px);
  }
  .c-title._black {
    background-image: linear-gradient(to bottom, #1F1F1F 9px, transparent 9px, transparent 81px, #1F1F1F 81px);
  }
  .c-title._yellow {
    background-image: linear-gradient(to bottom, #DCDCAA 9px, transparent 9px, transparent 81px, #DCDCAA 81px);
  }
  /* モーダル */
  /* モーダルがactiveの時 */
  /* モーダル背景のオーバーレイ部分 */
  /* モーダルのコンテンツ */
  .swiper-modal_inner {
    padding: 0;
  }
  /* 閉じるボタン */
  .swiper-modal__close-btn {
    position: fixed;
    right: 18px;
    top: 18px;
    width: 32px;
    height: 32px;
  }
  .swiper-modal__close-btn:before,
  .swiper-modal__close-btn:after {
    width: 45px;
  }
  .swiper-modalInSlider-slide {
    padding: 0;
  }
  .swiper-modalInSlider {
    padding: 68px 30px 84px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-height: 100vh;
    max-height: 100svh;
  }
  .swiper-button-wrap {
    width: 98px;
    max-width: 98px;
    height: 40px;
    top: auto;
    bottom: 26px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    height: 40px;
    top: 22px;
  }
  .swiper-button-prev:after,
  .swiper-button-next:after {
    width: 12px;
    height: 12px;
  }
  .swiper-button-prev {
    left: 0;
  }
  .swiper-button-next {
    right: 0;
  }
  .swiper-button-prev:after {
    left: 3px;
  }
  .swiper-button-next:after {
    right: 3px;
  }
  .c-swiper-modal-detail {
    padding: 25px;
    height: calc(100svh - 152px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
  .c-swiper-modal-detail._sp-padding-small {
    padding: 20px 15px;
  }
  .c-swiper-modal-detail__image {
    width: 190px;
    height: 190px;
    margin: 0 auto 7px;
    max-width: 100%;
  }
  .c-swiper-modal-detail__texts p {
    font-size: 14px;
    line-height: 22px;
  }
  .c-swiper-modal-detail__texts p.text-large {
    font-size: 17px;
  }
  .c-swiper-modal-detail__time {
    font-size: 15px;
    line-height: 0px;
  }
  .c-swiper-modal-detail__title-text {
    font-size: 17px;
    line-height: 23px;
  }
  .c-swiper-modal-detail__title-sub {
    font-size: 15px;
    line-height: 20px;
  }
  .c-swiper-modal-detail__number {
    font-size: 18px;
    line-height: 25px;
  }
  .c-swiper-modal-detail__names {
    gap: 3px;
  }
  .c-swiper-modal-detail__names span:first-child {
    font-size: 17px;
    line-height: 25px;
  }
  .c-swiper-modal-detail__names span:last-child {
    font-size: 12px;
  }
  .c-swiper-modal-detail__member-data-list {
    padding: 10px 0;
  }
  .c-swiper-modal-detail__member-data-list span {
    font-size: 13px;
  }
  .c-swiper-modal-detail__member-data-list span:first-child {
    width: 100px;
  }
  .c-swiper-modal-detail__member-data-list span:last-child {
    font-size: 13px;
  }
  .u-sp-none {
    display: none;
  }
  .p-about__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    max-width: 560px;
    margin: 0 auto;
  }
  .p-about__left {
    width: 100%;
    font-size: 13px;
    line-height: 23px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .p-about__right {
    width: 100%;
    margin: 0 auto;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .p-contents__banners {
    margin: 30px 0;
    gap: 23px;
  }
  .p-contents__content-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: unset;
    width: 100%;
  }
  .p-contents__content-item + .p-contents__content-item {
    margin-top: 20px;
  }
  .p-contents__content-item._red .p-contents__content-image span {
    left: 0;
    right: auto;
  }
  .p-contents__content-item._red .p-contents__content-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .p-contents__content-item._red .p-contents__content-texts {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .p-contents__content-item._brown .p-contents__content-image span {
    left: 0;
    right: auto;
  }
  .p-contents__content-item._brown .p-contents__content-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .p-contents__content-item._brown .p-contents__content-texts {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .p-contents__content-image {
    width: 100%;
  }
  .p-contents__content-image span {
    width: 60px;
    height: 60px;
    line-height: 60px;
    padding-top: 3px;
    font-size: 40px;
  }
  .p-contents__content-title {
    padding: 3px 20px;
    font-size: 17px;
  }
  .p-contents__content-text {
    min-height: unset;
    padding: 15px 15px 30px;
    font-size: 14px;
    line-height: 26px;
  }
  .p-location__title {
    font-size: 28px;
    line-height: 1.2em;
    margin-bottom: 13px;
  }
  .p-location__block {
    width: 100%;
  }
  .p-location__block + .p-location__block {
    margin-top: 40px;
  }
  .p-location__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .p-location__box-texts {
    padding: 25px 20px 30px;
  }
  .p-location__box-text + .p-location__box-text {
    padding-top: 26px;
    margin-top: 25px;
  }
  .p-location__box-title {
    font-size: 25px;
  }
  .p-location__text1 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .p-location__text2 {
    font-size: 13px;
    line-height: 22px;
  }
  .p-location__button {
    margin-top: 30px;
    height: 40px;
    font-size: 20px;
    line-height: 20px;
    gap: 8px;
  }
  .p-location__button span {
    padding-top: 2px;
  }
  .p-location__button img {
    width: 15px;
    height: auto;
  }
  .p-location__box-map {
    width: 100%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .p-location__box-map iframe {
    width: 100%;
    height: 188px;
  }
  .p-location__summary-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 13px;
    line-height: 20px;
  }
  .p-location__summary-item span:first-child {
    width: auto;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .p-location__summary-item span:first-child:after {
    width: 10px;
    text-align: right;
  }
  .p-location__summary-item + .p-location__summary-item {
    border-top: 1px solid #fff;
  }
  .p-mainvisual {
    margin-bottom: 33px;
  }
  .p-close {
    margin: 30px 0 33px;
  }
  /* モーダルを閉じるボタン */
  .p-modal__close-btn {
    right: 0px;
    top: 0px;
    width: 28px;
    height: 28px;
  }
  .p-modal__close-btn:before,
  .p-modal__close-btn:after {
    width: 26px;
  }
  .p-movies__item .p-movies__item-image:after {
    width: 56px;
    height: 56px;
  }
  .p-movies__item {
    width: 300px;
  }
  .p-movies__item span {
    font-size: 14px;
    margin-top: 6px;
  }
  ._movie .p-modal__content {
    max-width: 100%;
  }
  ._movie-content iframe {
    width: 100vw;
    height: 56.25vw;
  }
  ._movie-content a {
    font-size: 15px;
  }
  ._movie-content a:before {
    background-size: 22px 18px;
    width: 22px;
    height: 18px;
  }
  ._movie-content a:after {
    border-left: 6px solid #fff;
    border-top: 3.5px solid transparent;
    border-bottom: 3.5px solid transparent;
    right: 20px;
  }
  ._movie-content a {
    width: 275px;
    height: 45px;
    font-size: 15px;
  }
  .p-sponsors .l-section__inner {
    padding: 0 10px;
  }
  .p-sponsors__block {
    margin: 30px auto 40px;
  }
  .p-sponsors__title {
    margin-bottom: 15px;
  }
  .p-sponsors__title span {
    font-size: 25px;
    padding: 0 10px;
  }
  .p-sponsors__title span:before,
  .p-sponsors__title span:after {
    height: 3px;
  }
  .p-sponsors__banners {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5px;
  }
  .p-sponsors__banners._platinum {
    gap: 7px;
  }
  .p-sponsors__banners._platinum .p-sponsors__banner {
    width: calc(50% - 13px);
  }
  .p-sponsors__banners._gold .p-sponsors__banner {
    width: calc((100% - 10px) / 3);
  }
  .p-sponsors__banners._silver .p-sponsors__banner {
    width: calc((100% - 15px) / 4);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}