.pc_LL_display {
  display: none;
}
@media screen and (max-width: 1600px) {
  .pc_LL_display {
    display: block;
  }
}

.pc_L_display {
  display: none;
}
@media screen and (max-width: 1400px) {
  .pc_L_display {
    display: block;
  }
}

.pc_M_display {
  display: none;
}
@media screen and (max-width: 1200px) {
  .pc_M_display {
    display: block;
  }
}

.pc_S_display {
  display: none;
}
@media screen and (max-width: 1000px) {
  .pc_S_display {
    display: block;
  }
}

.tab_display {
  display: none;
}
@media screen and (max-width: 800px) {
  .tab_display {
    display: block;
  }
}

.sp_LL_display {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp_LL_display {
    display: block;
  }
}

.sp_L_display {
  display: none;
}
@media screen and (max-width: 460px) {
  .sp_L_display {
    display: block;
  }
}

.sp_ML_display {
  display: none;
}
@media screen and (max-width: 400px) {
  .sp_ML_display {
    display: block;
  }
}

.sp_M_display {
  display: none;
}
@media screen and (max-width: 375px) {
  .sp_M_display {
    display: block;
  }
}

.sp_S_display {
  display: none;
}
@media screen and (max-width: 350px) {
  .sp_S_display {
    display: block;
  }
}

body {
  width: 100%;
  overflow-x: hidden;
  letter-spacing: 0.075em;
  color: #141414;
  font-family: "Noto Sans JP", sans-serif;
}

body.no-scroll {
  overflow-y: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
}

/*--------------- cta-fixed ---------------*/
.cta-fixed {
  width: 172px;
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 50;
  transition: all 0.3s;
}
@media screen and (max-width: 600px) {
  .cta-fixed {
    right: 8px;
    bottom: 0px;
    width: 88px;
  }
}
.cta-fixed:hover {
  opacity: 0.7;
}

.cta-fixed_pc {
  display: block;
}
@media screen and (max-width: 600px) {
  .cta-fixed_pc {
    display: none;
  }
}

.cta-fixed_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .cta-fixed_sp {
    display: block;
  }
}

/*--------------- header ---------------*/
.header {
  position: fixed;
  width: 100%;
  z-index: 300;
  transition: all 0.4s;
}

.header.open {
  background-color: unset;
}
.header.open .header_logo {
  opacity: 0;
}

.header.bg {
  background-color: #090909;
}
.header.bg.open {
  background-color: unset;
}

.header-thanks {
  background-color: #090909;
  transition: all 0.4s;
}
.header-thanks.open {
  background-color: unset;
}

.header_wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
}
@media screen and (max-width: 600px) {
  .header_wrap {
    padding: 18px 20px;
  }
}

.header_logo {
  width: 160px;
  transition: all 0.4s;
}

.header_right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 40px;
}
@media screen and (max-width: 1200px) {
  .header_right {
    display: none;
  }
}

.header_menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.header_menu a {
  color: #fff;
  font-weight: 500;
  transition: all 0.4s;
}
.header_menu a:hover {
  color: #d1017b;
}

.header_btn {
  background: linear-gradient(140deg, #0031bf 0%, #b50b6f 100%);
  display: block;
  padding: 26px 45px;
  border-radius: 100px;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-weight: 700;
  transition: all 0.4s;
}
.header_btn:hover {
  opacity: 0.7;
}

.header_hamburger_menu {
  display: none;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1200px) {
  .header_hamburger_menu {
    display: block;
  }
}

.mask {
  display: none;
  padding: 60px 0 90px;
}
@media screen and (max-width: 1200px) {
  .mask {
    display: block;
    position: fixed;
    opacity: 0;
    top: -200vh;
    right: 0;
    min-height: 100vh;
    height: 100vh;
    max-width: 600px;
    width: 100%;
    background: #fff;
    z-index: -4;
    transition: all 0.5s;
    overflow-y: scroll;
  }
}
.mask .cta_btn {
  padding: 0;
  margin-bottom: 54px;
}
.mask .cta_btn_inner {
  border: none;
}

.mask_logo {
  width: 210px;
  margin: 0 auto 32px;
}

.mask .header_link {
  margin: 0 auto 40px;
  width: -moz-fit-content;
  width: fit-content;
}

.mask .header_link a {
  font-size: 20px;
  font-weight: 600;
  display: block;
  transform: all 0.3s;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
  display: block;
}
.mask .header_link a:hover {
  opacity: 0.6;
}

.mask .header_link li img {
  margin: 0 auto 6px;
  width: 160px;
}

.mask .header_link a span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.open.mask {
  opacity: 1;
  z-index: 100;
  top: 0;
}

.toggle_btn {
  width: 54px;
  height: 36px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}
.toggle_btn:hover {
  opacity: 0.7;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  height: 4px;
  background-color: #FFF;
  border-radius: 1000px;
  transition: all 0.5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
  width: 100%;
}
.toggle_btn span:nth-child(2) {
  top: 16px;
  width: 100%;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
  width: 100%;
}

.open .toggle_btn span {
  background-color: #a0a0a0;
  transition: all 0.5s;
}
.open .toggle_btn span:nth-child(1) {
  top: 18px;
  transform: rotate(35deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  bottom: 14px;
  transform: rotate(-35deg);
}

.header_sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.header_sns a {
  display: block;
  width: 56px;
}

/*--------------- fv ---------------*/
.fv {
  background-image: url(../img/bg01_pc.webp);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .fv {
    background-image: url(../img/bg01_sp.webp);
  }
}

.fv_wrap {
  display: grid;
  grid-template-columns: 740px 30vw;
  gap: 80px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  padding-top: 140px;
}
@media screen and (max-width: 1200px) {
  .fv_wrap {
    grid-template-columns: 560px 30vw;
    gap: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .fv_wrap {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 600px) {
  .fv_wrap {
    padding-top: 108px;
  }
}

.fv_txt {
  padding-top: 8vw;
}
@media screen and (max-width: 1000px) {
  .fv_txt {
    padding-top: 0;
  }
}

.fv_main {
  position: relative;
  margin-bottom: 2.4vw;
}

.fv_main_anime {
  position: absolute;
  top: -32px;
  left: 16px;
  width: 300px;
  height: 128px;
}
@media screen and (max-width: 1200px) {
  .fv_main_anime {
    width: 236px;
    height: 98px;
    top: -24px;
    left: 4px;
  }
}
@media screen and (max-width: 600px) {
  .fv_main_anime {
    width: 30vw;
    height: 10vw;
    top: -0.8vw;
    left: 0;
  }
}
.fv_main_anime svg {
  width: 100%;
  height: 100%;
}
.fv_main_anime svg image {
  width: 80%;
}

@media screen and (max-width: 600px) {
  .fv_main_anime_pc {
    display: none;
  }
}

.fv_main_anime_sp {
  display: none;
  filter: none;
}
@media screen and (max-width: 600px) {
  .fv_main_anime_sp {
    display: block;
  }
}

.fv_main_img {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .fv_main_img {
    width: 560px;
  }
}
@media screen and (max-width: 600px) {
  .fv_main_img {
    width: 86vw;
  }
}

@media screen and (max-width: 600px) {
  .fv_main_img_pc {
    display: none;
  }
}

.fv_main_img_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .fv_main_img_sp {
    display: block;
  }
}

.fv_logo {
  width: 275px;
}
@media screen and (max-width: 600px) {
  .fv_logo {
    position: absolute;
    bottom: 120px;
    left: 0;
    z-index: 5;
    width: 240px;
  }
}

@media screen and (max-width: 600px) {
  .fv_logo_pc {
    display: none;
  }
}

.fv_logo_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .fv_logo_sp {
    display: block;
  }
}

.fv_video {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .fv_video {
    width: 360px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .fv_video {
    width: 62vw;
  }
}
.fv_video video {
  width: 100%;
  height: 100%;
}

.glitch-wrapper {
  display: none;
}
@media screen and (max-width: 600px) {
  .glitch-wrapper {
    display: inline-block;
  }
}

.glitch-img {
  display: block;
  max-width: 100%;
  height: auto;
  animation: glitchMain 1.5s infinite;
}

.glitch-wrapper::before,
.glitch-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/maincopy01_sp.webp") no-repeat center center;
  background-size: cover;
  pointer-events: none;
  opacity: 0.7;
  mix-blend-mode: lighten;
}

.glitch-wrapper::before {
  animation: glitchBefore 1.5s infinite;
  filter: drop-shadow(-2px 0 red);
}

.glitch-wrapper::after {
  animation: glitchAfter 1.5s infinite;
  filter: drop-shadow(2px 0 cyan);
}

@keyframes glitchMain {
  0%, 100% {
    transform: none;
  }
}
@keyframes glitchBefore {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 0;
  }
  10% {
    transform: translate(-2px, -1px);
    opacity: 1;
  }
  13% {
    transform: translate(0, 0);
    opacity: 0;
  }
  25% {
    transform: translate(2px, 1px);
    opacity: 0.5;
  }
  28% {
    transform: translate(0, 0);
    opacity: 0;
  }
  35% {
    transform: translate(-1px, 1px);
    opacity: 0.8;
  }
  38% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes glitchAfter {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 0;
  }
  5% {
    transform: translate(2px, -1px);
    opacity: 1;
  }
  8% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    transform: translate(0, 0);
    opacity: 0;
  }
  45% {
    transform: translate(-3px, 3px);
    opacity: 0.8;
  }
  50% {
    transform: translate(0, 0);
    opacity: 0;
  }
  78% {
    transform: translate(0, 0);
    opacity: 0;
  }
  80% {
    transform: translate(2px, -1px);
    opacity: 1;
  }
  84% {
    transform: translate(0, 0);
    opacity: 0;
  }
  85% {
    transform: translate(2px, 2px);
    opacity: 0.8;
  }
  90% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
/*--------------- what ---------------*/
.what_wrap {
  width: 1000px;
  margin: 0 auto;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 472px 1fr;
  gap: 112px;
  padding: 80px 0 120px;
}
@media screen and (max-width: 1200px) {
  .what_wrap {
    width: 760px;
  }
}
@media screen and (max-width: 800px) {
  .what_wrap {
    width: 540px;
  }
}
@media screen and (max-width: 600px) {
  .what_wrap {
    width: 90%;
  }
}
@media screen and (max-width: 1200px) {
  .what_wrap {
    gap: 8px;
    grid-template-columns: 400px 1fr;
  }
}
@media screen and (max-width: 800px) {
  .what_wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media screen and (max-width: 600px) {
  .what_wrap {
    padding: 80px 0 54px;
  }
}

@media screen and (max-width: 800px) {
  .what_img {
    order: 2;
  }
}
@media screen and (max-width: 600px) {
  .what_img {
    display: none;
  }
}

.what_ttl {
  margin-bottom: 36px;
}
@media screen and (max-width: 600px) {
  .what_ttl {
    margin-bottom: 24px;
    width: 75%;
  }
}

.what_txt {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 32px;
  letter-spacing: 0.06em;
  text-align: justify;
}
@media screen and (max-width: 800px) {
  .what_txt {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.6;
  }
}
.what_txt span {
  background: linear-gradient(180deg, #0230c2 0%, #a02f81 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bolder;
}

.what_bottom {
  width: 250px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .what_bottom {
    width: 180px;
  }
}
@media screen and (max-width: 600px) {
  .what_bottom {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .what_bottom_pc {
    display: none;
  }
}

.what_bottom_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .what_bottom_sp {
    display: block;
  }
}

/*--------------- case ---------------*/
.case {
  background-image: url(../img/bg02.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f0f0f0;
  padding: 172px 0 120px;
}
@media screen and (max-width: 600px) {
  .case {
    padding: 80px 0 54px;
    background-size: cover;
    background-position: right;
  }
}

.case_wrap {
  width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  position: relative;
  padding: 72px 54px 60px;
}
@media screen and (max-width: 1200px) {
  .case_wrap {
    width: 760px;
  }
}
@media screen and (max-width: 800px) {
  .case_wrap {
    width: 540px;
  }
}
@media screen and (max-width: 600px) {
  .case_wrap {
    width: 90%;
  }
}
@media screen and (max-width: 600px) {
  .case_wrap {
    padding: 60px 24px 48px;
  }
}

.case_ttl {
  width: 100%;
  position: absolute;
  top: -52px;
  left: 0;
}
@media screen and (max-width: 600px) {
  .case_ttl {
    top: -42px;
  }
}
.case_ttl img {
  width: 76px;
  margin: 0 auto 12px;
}
.case_ttl h2 {
  font-size: 36px;
  font-weight: bolder;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .case_ttl h2 {
    font-size: 26px;
  }
}

.case_list {
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .case_list {
    margin-bottom: 40px;
  }
}

.case_item {
  display: grid;
  grid-template-columns: 240px 1fr;
  box-shadow: 7px 0 7px rgba(24, 24, 24, 0.06);
}
@media screen and (max-width: 800px) {
  .case_item {
    grid-template-columns: 1fr;
  }
}

.case_item:nth-child(1) {
  background-color: #ebf0ff;
  margin-bottom: 36px;
}
.case_item:nth-child(1) .case_item_ttl {
  background-color: #0c3fca;
}
.case_item:nth-child(1) .case_item_inner span::after {
  background-image: url(../img/img03.webp);
}

.case_item:nth-child(2) {
  background-color: #ffeff8;
}
.case_item:nth-child(2) .case_item_ttl {
  background-color: #d1017b;
}
.case_item:nth-child(2) .case_item_inner span::after {
  background-image: url(../img/img04.webp);
}

.case_item_ttl {
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  .case_item_ttl {
    padding: 12px 0;
  }
}
.case_item_ttl h3 {
  font-size: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: bolder;
}
@media screen and (max-width: 600px) {
  .case_item_ttl h3 {
    font-size: 16px;
  }
}

.case_item_inner {
  padding: 36px;
  font-size: 22px;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 16px;
}
@media screen and (max-width: 600px) {
  .case_item_inner {
    padding: 24px;
    font-size: 18px;
  }
}
.case_item_inner span {
  position: relative;
  padding-left: 24px;
}
.case_item_inner span::after {
  content: "";
  position: absolute;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.case_example_ttl {
  display: grid;
  grid-template-columns: 1fr 160px 1fr;
  align-items: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .case_example_ttl {
    margin-bottom: 40px;
  }
}
.case_example_ttl h2 {
  font-size: 20px;
  font-weight: bolder;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .case_example_ttl h2 {
    font-size: 16px;
  }
}

.case_example_ttl span {
  width: 100%;
  height: 1px;
  background-color: #959595;
  margin: 0 auto;
  position: relative;
  display: block;
}
.case_example_ttl span::before, .case_example_ttl span::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 1px;
  background-color: #959595;
}
.case_example_ttl span:first-child::before {
  transform-origin: bottom left;
  transform: rotate(-55deg);
  top: 0;
  right: -15px;
}
.case_example_ttl span:last-child::before {
  transform-origin: bottom right;
  left: -16px;
  transform: rotate(55deg);
}
.case_example_ttl span:first-child::after {
  transform-origin: bottom left;
  transform: rotate(55deg);
  top: 0;
  right: -15px;
}
.case_example_ttl span:last-child::after {
  transform-origin: bottom right;
  left: -16px;
  transform: rotate(-55deg);
  top: 0;
}

.case_example_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  row-gap: 48px;
}
@media screen and (max-width: 1200px) {
  .case_example_list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 600px) {
  .case_example_list {
    row-gap: 24px;
  }
}

.case_example_item img {
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .case_example_item img {
    margin-bottom: 8px;
  }
}
.case_example_item h3 {
  font-size: 26px;
  line-height: 1.6;
  font-weight: bolder;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 600px) {
  .case_example_item h3 {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.4;
  }
}
.case_example_item p {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .case_example_item p {
    font-size: 14px;
    line-height: 1.4;
    text-align: justify;
  }
}
@media screen and (max-width: 600px) {
  .case_example_item p br.sp_LL_hidden {
    display: none;
  }
}

/*--------------- cta ---------------*/
.cta {
  background-image: url(../img/bg03.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 120px 0;
}
@media screen and (max-width: 600px) {
  .cta {
    padding: 40px 0;
  }
}

.cta_txt {
  font-weight: bolder;
  font-size: 46px;
  line-height: 1.6;
  margin-bottom: 60px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .cta_txt {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .cta_txt {
    font-size: 22px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 375px) {
  .cta_txt {
    font-size: 20px;
  }
}

.cta_btn {
  background: linear-gradient(140deg, #0031bf 0%, #b50b6f 100%);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  border-radius: 100px;
  transition: all 0.4s;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .cta_btn {
    padding: 8px;
  }
}
.cta_btn:hover {
  opacity: 0.7;
}

.cta_btn_inner {
  padding: 28px 100px 28px 80px;
  border-radius: 100px;
  border: 2px solid #fff;
}
@media screen and (max-width: 600px) {
  .cta_btn_inner {
    padding: 24px 42px 24px 32px;
  }
}

.cta_btn_txt {
  font-weight: bolder;
  font-size: 20px;
  color: #fff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.cta_btn_txt::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
  top: 50%;
  right: -42px;
}
@media screen and (max-width: 600px) {
  .cta_btn_txt::after {
    right: -20px;
    width: 8px;
    height: 8px;
  }
}

/*--------------- option ---------------*/
.option {
  background-color: #f0f0f0;
  padding: 120px 0;
}
@media screen and (max-width: 600px) {
  .option {
    padding: 54px 0;
  }
}

.option_wrap {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .option_wrap {
    width: 760px;
  }
}
@media screen and (max-width: 800px) {
  .option_wrap {
    width: 540px;
  }
}
@media screen and (max-width: 600px) {
  .option_wrap {
    width: 90%;
  }
}

.option_ttl {
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .option_ttl {
    margin-bottom: 40px;
  }
}
.option_ttl img {
  width: 52px;
  margin: 0 auto 12px;
}
.option_ttl h2 {
  font-size: 36px;
  font-weight: bolder;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .option_ttl h2 {
    font-size: 26px;
    line-height: 1.6;
  }
}

.option_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
@media screen and (max-width: 1200px) {
  .option_list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 800px) {
  .option_list {
    gap: 24px;
  }
}
@media screen and (max-width: 600px) {
  .option_list {
    gap: 12px;
  }
}

.option_item {
  display: flex;
  flex-direction: column;
}
.option_item img {
  margin-bottom: 24px;
}
@media screen and (max-width: 1200px) {
  .option_item img {
    max-width: 220px;
    margin: 0 auto 24px;
  }
}
@media screen and (max-width: 800px) {
  .option_item img {
    margin: 0 auto 12px;
  }
}
@media screen and (max-width: 600px) {
  .option_item img {
    width: 67%;
  }
}
.option_item span {
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1.6;
  font-weight: bolder;
}
@media screen and (max-width: 800px) {
  .option_item span {
    font-size: 18px;
    line-height: 1.4;
  }
}

/*--------------- spec ---------------*/
.spec {
  padding: 120px 0;
  position: relative;
}
@media screen and (max-width: 600px) {
  .spec {
    padding: 80px 0;
  }
}

@media screen and (max-width: 600px) {
  .spec_ttl_pc {
    display: none;
  }
}

.spec_ttl_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .spec_ttl_sp {
    display: block;
  }
}

.spec_bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.spec_wrap {
  width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 1200px) {
  .spec_wrap {
    width: 760px;
  }
}
@media screen and (max-width: 800px) {
  .spec_wrap {
    width: 540px;
  }
}
@media screen and (max-width: 600px) {
  .spec_wrap {
    width: 90%;
  }
}
@media screen and (max-width: 600px) {
  .spec_wrap {
    width: 96%;
  }
}

.spec_inner {
  padding: 40px 60px 84px;
  border: 15px solid #ffeff8;
  border-top: none;
  background-color: #fff;
}
@media screen and (max-width: 1200px) {
  .spec_inner {
    border: 11px solid #ffeff8;
    border-top: none;
  }
}
@media screen and (max-width: 800px) {
  .spec_inner {
    border: 8px solid #ffeff8;
    border-top: none;
    padding: 20px 20px 48px;
  }
}
@media screen and (max-width: 600px) {
  .spec_inner {
    border: 8px solid #ffeff8;
    border-top: none;
    padding: 20px 6px 40px;
  }
}

.spec_img {
  margin-bottom: 40px;
}

@media screen and (max-width: 600px) {
  .spec_img_pc {
    display: none;
  }
}

.spec_img_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .spec_img_sp {
    display: block;
  }
}

.spec_table table {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .spec_table table {
    font-size: 12px;
  }
}
.spec_table table .small_txt {
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .spec_table table .small_txt {
    font-size: 10px;
  }
}

.spec_table table tr {
  display: grid;
  grid-template-columns: 130px 1fr;
  border-bottom: 2px solid #a0a0a0;
}
@media screen and (max-width: 600px) {
  .spec_table table tr {
    grid-template-columns: 1fr;
  }
}

.spec_table table th {
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bolder;
  border-right: 2px solid #a0a0a0;
}
@media screen and (max-width: 600px) {
  .spec_table table th {
    font-size: 12px;
    padding: 4px 0;
    border-right: none;
    border-bottom: 1px solid #a0a0a0;
  }
}

.spec_table table tr:nth-child(1) {
  border-top: 2px solid #a0a0a0;
}
.spec_table table tr:nth-child(1) td {
  width: 100%;
}
.spec_table table tr:nth-child(1) td div {
  display: flex;
  flex-direction: row;
}
.spec_table table tr:nth-child(1) td div:nth-child(1) {
  border-bottom: 1px solid #a0a0a0;
}
.spec_table table tr:nth-child(1) td div > span {
  padding: 26px 22px;
  display: block;
}
@media screen and (max-width: 600px) {
  .spec_table table tr:nth-child(1) td div > span {
    padding: 12px 8px;
  }
}
.spec_table table tr:nth-child(1) td div > span:nth-child(1) {
  border-right: 1px solid #a0a0a0;
  width: 224px;
}
@media screen and (max-width: 600px) {
  .spec_table table tr:nth-child(1) td div > span:nth-child(1) {
    width: 142px;
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .spec_table table tr:nth-child(1) td div > span:nth-child(2) {
    display: flex;
    flex-direction: column;
  }
}

.spec_table table tr:nth-child(2) td {
  padding: 26px 22px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .spec_table table tr:nth-child(2) td {
    padding: 12px 8px;
  }
}
.spec_table table tr:nth-child(2) .small_txt {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 22px;
}
@media screen and (max-width: 600px) {
  .spec_table table tr:nth-child(2) .small_txt {
    display: block;
    position: static;
    transform: none;
  }
}

.spec_table table tr:nth-child(3) td,
.spec_table table tr:nth-child(4) td {
  padding: 26px 22px;
}
@media screen and (max-width: 600px) {
  .spec_table table tr:nth-child(3) td,
  .spec_table table tr:nth-child(4) td {
    padding: 12px 8px;
  }
}

/*--------------- qa ---------------*/
.qa {
  padding: 120px 0;
}
@media screen and (max-width: 600px) {
  .qa {
    padding: 32px 0 54px;
  }
}

.qa_wrap {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .qa_wrap {
    width: 760px;
  }
}
@media screen and (max-width: 800px) {
  .qa_wrap {
    width: 540px;
  }
}
@media screen and (max-width: 600px) {
  .qa_wrap {
    width: 90%;
  }
}

.qa_ttl {
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .qa_ttl {
    margin-bottom: 40px;
  }
}
.qa_ttl img {
  width: 32px;
  margin: 0 auto 12px;
}
.qa_ttl h2 {
  font-size: 36px;
  font-weight: bolder;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .qa_ttl h2 {
    font-size: 26px;
    line-height: 1.6;
  }
}

.qa_item {
  padding: 32px 22px;
  border-bottom: 2px dotted #a0a0a0;
}
@media screen and (max-width: 600px) {
  .qa_item {
    padding: 24px 12px;
  }
}
.qa_item:nth-child(1) {
  padding: 0px 22px 32px;
}
@media screen and (max-width: 600px) {
  .qa_item:nth-child(1) {
    padding: 0 12px 24px;
  }
}
.qa_item:last-child {
  border-bottom: none;
  padding: 32px 22px 0;
}
@media screen and (max-width: 600px) {
  .qa_item:last-child {
    padding: 24px 12px 0;
  }
}

.qa_question {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 32px;
  align-items: center;
  font-size: 20px;
  font-weight: bolder;
  margin-bottom: 24px;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .qa_question {
    grid-template-columns: 32px 1fr;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 12px;
    text-align: justify;
  }
}

.qa_answer {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 32px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .qa_answer {
    grid-template-columns: 32px 1fr;
    gap: 16px;
  }
}
.qa_answer p {
  padding-top: 12px;
}
@media screen and (max-width: 600px) {
  .qa_answer p {
    padding-top: 6px;
    text-align: justify;
  }
}

/*--------------- contact ---------------*/
.contact {
  background-color: #f0f0f0;
  padding: 120px 0;
}
@media screen and (max-width: 600px) {
  .contact {
    padding: 54px 0;
  }
}

.contact_wrap {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .contact_wrap {
    width: 760px;
  }
}
@media screen and (max-width: 800px) {
  .contact_wrap {
    width: 540px;
  }
}
@media screen and (max-width: 600px) {
  .contact_wrap {
    width: 90%;
  }
}

.contact_ttl {
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .contact_ttl {
    margin-bottom: 40px;
  }
}
.contact_ttl img {
  width: 68px;
  margin: 0 auto 12px;
}
.contact_ttl h2 {
  font-size: 36px;
  font-weight: bolder;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .contact_ttl h2 {
    font-size: 26px;
    line-height: 1.6;
  }
}

.contact_inner {
  background: linear-gradient(140deg, #0031bf 0%, #b50b6f 100%);
  padding: 68px 110px;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .contact_inner {
    padding: 48px 24px;
  }
}
@media screen and (max-width: 600px) {
  .contact_inner {
    padding: 40px 20px;
  }
}

.contact_list {
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .contact_list {
    margin-bottom: 24px;
  }
}

.contact_item {
  margin-bottom: 24px;
}
.contact_item:last-child {
  margin-bottom: 0;
}

.contact_item_ttl {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
@media screen and (max-width: 600px) {
  .contact_item_ttl {
    gap: 6px;
  }
}
.contact_item_ttl h3 {
  font-size: 20px;
  font-weight: bolder;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .contact_item_ttl h3 {
    font-size: 18px;
  }
}
.contact_item_ttl span {
  color: #fff;
  font-weight: bolder;
  display: block;
  padding: 6px 12px;
  background-color: #090909;
  border-radius: 100px;
  font-size: 14px;
}
@media screen and (max-width: 600px) {
  .contact_item_ttl span {
    padding: 4px 10px;
  }
}

.contact_item_input {
  width: 100%;
}

.contact_item_input input,
.contact_item_input select,
.contact_item_input textarea {
  background-color: #fff;
  padding: 18px;
  line-height: 1.6;
  font-size: 16px;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .contact_item_input input,
  .contact_item_input select,
  .contact_item_input textarea {
    padding: 12px;
  }
}
.contact_item_input input::-moz-placeholder, .contact_item_input select::-moz-placeholder, .contact_item_input textarea::-moz-placeholder {
  color: #a6a6a6;
  font-weight: 500;
}
.contact_item_input input::placeholder,
.contact_item_input select::placeholder,
.contact_item_input textarea::placeholder {
  color: #a6a6a6;
  font-weight: 500;
}

.contact_btn {
  display: block;
  background-color: #090909;
  width: 360px;
  height: 82px;
  border-radius: 100px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 24px;
  font-weight: bolder;
  letter-spacing: 0.075em;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .contact_btn {
    width: 280px;
    height: 72px;
  }
}

.contact .wpcf7-not-valid-tip {
  padding-top: 8px;
}

.contact_policy {
  margin-bottom: 64px;
}
@media screen and (max-width: 600px) {
  .contact_policy {
    margin-bottom: 40px;
  }
}

.contact_policy_wrap {
  font-size: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  gap: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .contact_policy_wrap {
    gap: 8px;
    font-size: 16px;
  }
}
.contact_policy_wrap a {
  text-decoration: underline;
}
.contact_policy_wrap label {
  display: inline-block;
  position: relative;
}
.contact_policy_wrap label span {
  display: none;
}
.contact_policy_wrap input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #959595;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin-right: 8px;
  background-color: #fff;
}
.contact_policy_wrap input[type=checkbox]:checked::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  background: #141414;
  border-radius: 50%;
}

.contact_policy .wpcf7-not-valid-tip {
  display: none;
}
.contact_policy .error-message {
  color: red;
  display: none;
  padding-left: 24px;
  padding-top: 8px;
}
.contact_policy:has(.wpcf7-not-valid-tip) .error-message {
  display: block;
}

/*--------------- event ---------------*/
.event {
  background: linear-gradient(180deg, #f0f0f0 0%, #f0f0f0 50%, #ffffff 50%, #ffffff 100%);
}
.event .cta_btn {
  margin-left: 0;
}
@media screen and (max-width: 600px) {
  .event .cta_btn {
    margin: 0 auto;
  }
}

.event_wrap {
  background-color: #090909;
  position: relative;
}

.event_logo {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  opacity: 0.4;
}
@media screen and (max-width: 600px) {
  .event_logo {
    transform: none;
    top: 100px;
    opacity: 0.9;
  }
}

.event_bg_top {
  position: absolute;
  width: 480px;
  top: -24px;
  left: 0;
}
@media screen and (max-width: 1200px) {
  .event_bg_top {
    width: 320px;
  }
}
@media screen and (max-width: 800px) {
  .event_bg_top {
    width: 160px;
  }
}

.event_bg_bottom {
  position: absolute;
  bottom: -24px;
  right: 0;
  width: 480px;
}
@media screen and (max-width: 1200px) {
  .event_bg_bottom {
    width: 320px;
  }
}
@media screen and (max-width: 800px) {
  .event_bg_bottom {
    width: 160px;
  }
}

.event_content {
  width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 100px;
  padding: 120px 0;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1200px) {
  .event_content {
    width: 760px;
  }
}
@media screen and (max-width: 800px) {
  .event_content {
    width: 540px;
  }
}
@media screen and (max-width: 600px) {
  .event_content {
    width: 90%;
  }
}
@media screen and (max-width: 1200px) {
  .event_content {
    grid-template-columns: 60% 1fr;
    gap: 24px;
  }
}
@media screen and (max-width: 800px) {
  .event_content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 80px 0;
  }
}
@media screen and (max-width: 600px) {
  .event_content {
    padding: 40px 0;
  }
}

.event_inner {
  color: #fff;
  padding-top: 120px;
}
@media screen and (max-width: 800px) {
  .event_inner {
    padding-top: 0;
  }
}
.event_inner h2 {
  font-size: 48px;
  line-height: 1.6;
  font-weight: bolder;
  margin-bottom: 48px;
}
@media screen and (max-width: 1200px) {
  .event_inner h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 600px) {
  .event_inner h2 {
    font-size: 32px;
    margin-bottom: 24px;
  }
}
.event_inner p {
  margin-bottom: 36px;
  font-weight: 500;
  font-size: 16px;
}
@media screen and (max-width: 600px) {
  .event_inner p {
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 800px) {
  .event_video {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .event_video {
    width: 42vw;
  }
}
.event_video video {
  width: 100%;
}

/*--------------- footer ---------------*/
.footer {
  padding: 90px 0 180px;
}
@media screen and (max-width: 600px) {
  .footer {
    padding: 60px 0 180px;
  }
}

.footer_wrap {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .footer_wrap {
    width: 760px;
  }
}
@media screen and (max-width: 800px) {
  .footer_wrap {
    width: 540px;
  }
}
@media screen and (max-width: 600px) {
  .footer_wrap {
    width: 90%;
  }
}

.footer_top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
  border-bottom: 1px solid #a0a0a0;
  margin-bottom: 30px;
}
@media screen and (max-width: 800px) {
  .footer_top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

.footer_logo {
  width: 228px;
}
@media screen and (max-width: 600px) {
  .footer_logo {
    width: 180px;
    margin: 0 auto;
  }
}

.footer_list {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 600px) {
  .footer_list {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    gap: 0;
  }
}

.footer_item img {
  width: 36px;
  transition: all 0.4s;
}
.footer_item img:hover {
  opacity: 0.7;
}
.footer_item a {
  transition: all 0.4s;
}
.footer_item a:hover {
  color: #d1017b;
}

@media screen and (max-width: 600px) {
  .footer_item_pc {
    display: none;
  }
}

.footer_item_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .footer_item_sp {
    display: block;
  }
}

.footer_copyright {
  font-size: 12px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

/*--------------- thanks ---------------*/
.thanks {
  padding: 154px 0;
}
@media screen and (max-width: 600px) {
  .thanks {
    padding: 120px 0 80px;
  }
}

.thanks_wrap {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .thanks_wrap {
    width: 760px;
  }
}
@media screen and (max-width: 800px) {
  .thanks_wrap {
    width: 540px;
  }
}
@media screen and (max-width: 600px) {
  .thanks_wrap {
    width: 90%;
  }
}

.thanks_img {
  width: 284px;
  margin: 0 auto 54px;
}
@media screen and (max-width: 800px) {
  .thanks_img {
    width: 240px;
  }
}
@media screen and (max-width: 600px) {
  .thanks_img {
    width: 140px;
    margin: 0 auto 32px;
  }
}

.thanks_heading {
  font-size: 26px;
  font-weight: bolder;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
}
@media screen and (max-width: 600px) {
  .thanks_heading {
    font-size: 24px;
    text-align: center;
    line-height: 1.6;
  }
}

.thanks_txt {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 64px;
}

.thanks_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 64px;
  border-radius: 100px;
  border: 1px solid #141414;
  margin: 0 auto;
  font-weight: bolder;
  font-size: 18px;
  transition: all 0.4s;
}
@media screen and (max-width: 600px) {
  .thanks_btn {
    width: 280px;
  }
}
.thanks_btn:hover {
  background-color: #141414;
  color: #fff;
}/*# sourceMappingURL=index.css.map */