@charset "UTF-8";
/* =============================================
style.scss
============================================= */
/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
html {
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1;
}

div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, img, ins, kbd, q, samp, sub, sup, var, b, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, mark, audio, video, a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 100%;
  font: inherit;
}

span, small, em, time, i {
  font-style: normal;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

a {
  border: medium;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

legend {
  color: #000;
}

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

li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input, select {
  vertical-align: middle;
}

abbr[title], dfn[title] {
  cursor: help;
}

del {
  text-decoration: line-through;
}

ins {
  font-style: oblique;
  text-decoration: none;
}

mark {
  background: transparent;
  font-style: normal;
}

img {
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  font-size: inherit;
}

/* =============================================
Base 基本設計
============================================= */
*, *::before, *::after {
  box-sizing: border-box;
}

div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, img, ins, kbd, q, samp, sub, sup, var, b, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, mark, audio, video, a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 100%;
  font: inherit;
}

html {
  font-size: 62.5%;
}

body {
  background: #2D2533;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: #1b1b1b;
  line-height: 2;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  overflow: auto;
  width: 100%;
  word-break: break-word;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  color: #333;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
  }
}

a {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

ul {
  list-style: none;
}

.pc-only {
  display: block !important;
}

.sp-only {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
}
.ly_main {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .ly_main {
    padding-top: 90px;
    overflow: hidden;
  }
}
.ly_main_inr {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* =============================================
Base 基本設計
============================================= */
/* =============================================
Utility 汎用的なスタイル
============================================= */
.bl_sec {
  padding: 100px 0;
  background: #F1F1F1;
}
@media screen and (max-width: 768px) {
  .bl_sec {
    padding: 50px 0;
  }
}
.bl_sec--dark {
  background: #2D2533;
}

.el_container {
  margin: 0 60px;
}
@media screen and (max-width: 768px) {
  .el_container {
    margin: 0 5%;
  }
}

.el_underContainer {
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .el_underContainer {
    max-width: none;
  }
}

.el_ttlSec {
  font-size: 4rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .el_ttlSec {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
}
.el_ttlSec__white {
  color: #fff;
}

.el_discList__indent {
  padding-left: 20px;
  margin-top: 8px;
}
.el_discList > li {
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}
.el_discList > li::before {
  content: "";
  position: absolute;
  background: #2D2533;
  width: 5px;
  height: 5px;
  top: 12px;
  left: 0;
  border-radius: 10px;
}
.el_discList > li + li {
  margin-top: 8px;
}

.hl_mb20 {
  margin-bottom: 20px !important;
}

.hl_mb30 {
  margin-bottom: 30px !important;
}

.hl_mb40 {
  margin-bottom: 40px !important;
}

.hl_red {
  color: #f10000;
}

.hl_bold {
  font-weight: 700;
}

/* =============================================
Base 基本設計
============================================= */
/* =============================================
Base 基本設計
============================================= */
/*-----------------------------------------------------------
Splide
-----------------------------------------------------------*/
.splide {
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .splide {
    padding-bottom: 25px;
  }
}

.splide__arrow {
  background: transparent;
  opacity: 1;
  top: auto;
  transform: none;
  bottom: 0;
  transition: 0.3s;
}
.splide__arrow:hover {
  background: rgba(43, 252, 255, 0.8);
}

.splide__arrow--prev {
  left: 0;
}

.splide__arrow--next {
  right: 0;
}

.splide__arrow svg {
  fill: #fff;
  height: 1.2em;
  width: 1.2em;
}

.splide__pagination__page {
  background: #FFE605;
  height: 6px;
  margin: 0 6px;
  opacity: 1;
  width: 6px;
}

.splide__pagination__page.is-active {
  background: #F703EB;
  transform: none;
}

.custom-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0;
  list-style: none;
  padding: 0;
  position: absolute;
  bottom: 0;
}
.custom-pagination .pagination-dot {
  background: #FFE605;
  width: 6px;
  height: 6px;
  margin: 0 6px;
  border-radius: 50%;
  opacity: 1;
  cursor: pointer;
  transition: 0.3s;
}
.custom-pagination .pagination-dot.is-active {
  background: #F703EB;
  transform: none;
}

/*-----------------------------------------------------------
CSShake
-----------------------------------------------------------*/
.shake {
  display: inherit;
  transform-origin: center center;
}

.shake-little {
  display: inherit;
  transform-origin: center center;
}

.shake-freeze,
.shake-constant.shake-constant--hover:hover,
.shake-trigger:hover .shake-constant.shake-constant--hover {
  animation-play-state: paused;
}

.shake-freeze:hover,
.shake-trigger:hover .shake-freeze, .shake:hover,
.shake-trigger:hover .shake {
  animation-play-state: running;
}

.shake-little:hover, .shake-trigger:hover .shake-little, .shake-freeze:hover,
.shake-trigger:hover .shake-freeze {
  animation-play-state: running;
}

@keyframes shake {
  2% {
    transform: translate(-0.5px, 2.5px) rotate(-0.5deg);
  }
  4% {
    transform: translate(0.5px, -1.5px) rotate(-0.5deg);
  }
  6% {
    transform: translate(1.5px, -1.5px) rotate(1.5deg);
  }
  8% {
    transform: translate(0.5px, 2.5px) rotate(-0.5deg);
  }
  10% {
    transform: translate(-1.5px, 2.5px) rotate(1.5deg);
  }
  12% {
    transform: translate(2.5px, -0.5px) rotate(-0.5deg);
  }
  14% {
    transform: translate(2.5px, 2.5px) rotate(1.5deg);
  }
  16% {
    transform: translate(1.5px, 1.5px) rotate(0.5deg);
  }
  18% {
    transform: translate(0.5px, 2.5px) rotate(1.5deg);
  }
  20% {
    transform: translate(1.5px, -1.5px) rotate(-0.5deg);
  }
  22% {
    transform: translate(0.5px, 1.5px) rotate(1.5deg);
  }
  24% {
    transform: translate(-0.5px, 1.5px) rotate(0.5deg);
  }
  26% {
    transform: translate(-1.5px, -1.5px) rotate(0.5deg);
  }
  28% {
    transform: translate(1.5px, 2.5px) rotate(1.5deg);
  }
  30% {
    transform: translate(2.5px, -1.5px) rotate(1.5deg);
  }
  32% {
    transform: translate(1.5px, 1.5px) rotate(1.5deg);
  }
  34% {
    transform: translate(2.5px, 0.5px) rotate(-0.5deg);
  }
  36% {
    transform: translate(2.5px, -0.5px) rotate(-0.5deg);
  }
  38% {
    transform: translate(0.5px, 0.5px) rotate(0.5deg);
  }
  40% {
    transform: translate(1.5px, -1.5px) rotate(1.5deg);
  }
  42% {
    transform: translate(0.5px, -0.5px) rotate(0.5deg);
  }
  44% {
    transform: translate(-0.5px, -0.5px) rotate(-0.5deg);
  }
  46% {
    transform: translate(1.5px, 2.5px) rotate(-0.5deg);
  }
  48% {
    transform: translate(2.5px, 2.5px) rotate(1.5deg);
  }
  50% {
    transform: translate(0.5px, 2.5px) rotate(1.5deg);
  }
  52% {
    transform: translate(1.5px, -1.5px) rotate(1.5deg);
  }
  54% {
    transform: translate(0.5px, 0.5px) rotate(1.5deg);
  }
  56% {
    transform: translate(1.5px, 1.5px) rotate(0.5deg);
  }
  58% {
    transform: translate(0.5px, 0.5px) rotate(1.5deg);
  }
  60% {
    transform: translate(-0.5px, 0.5px) rotate(-0.5deg);
  }
  62% {
    transform: translate(2.5px, -1.5px) rotate(1.5deg);
  }
  64% {
    transform: translate(2.5px, -0.5px) rotate(0.5deg);
  }
  66% {
    transform: translate(0.5px, 0.5px) rotate(1.5deg);
  }
  68% {
    transform: translate(-1.5px, -0.5px) rotate(0.5deg);
  }
  70% {
    transform: translate(2.5px, 0.5px) rotate(-0.5deg);
  }
  72% {
    transform: translate(1.5px, 0.5px) rotate(1.5deg);
  }
  74% {
    transform: translate(0.5px, 0.5px) rotate(1.5deg);
  }
  76% {
    transform: translate(-1.5px, -0.5px) rotate(0.5deg);
  }
  78% {
    transform: translate(-1.5px, -1.5px) rotate(-0.5deg);
  }
  80% {
    transform: translate(-0.5px, -0.5px) rotate(0.5deg);
  }
  82% {
    transform: translate(-0.5px, 1.5px) rotate(1.5deg);
  }
  84% {
    transform: translate(-1.5px, 2.5px) rotate(-0.5deg);
  }
  86% {
    transform: translate(-1.5px, -0.5px) rotate(-0.5deg);
  }
  88% {
    transform: translate(2.5px, -0.5px) rotate(-0.5deg);
  }
  90% {
    transform: translate(2.5px, -1.5px) rotate(-0.5deg);
  }
  92% {
    transform: translate(2.5px, 0.5px) rotate(-0.5deg);
  }
  94% {
    transform: translate(0.5px, 1.5px) rotate(-0.5deg);
  }
  96% {
    transform: translate(1.5px, 2.5px) rotate(0.5deg);
  }
  98% {
    transform: translate(2.5px, -0.5px) rotate(1.5deg);
  }
  0%, 100% {
    transform: translate(0, 0) rotate(0);
  }
}
@keyframes shake-little {
  2% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  4% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  6% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  8% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  10% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  12% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  14% {
    transform: translate(0px, 1px) rotate(0.5deg);
  }
  16% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  18% {
    transform: translate(0px, 1px) rotate(0.5deg);
  }
  20% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  22% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  24% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  26% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  28% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  30% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  32% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  34% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  36% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  38% {
    transform: translate(0px, 1px) rotate(0.5deg);
  }
  40% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  42% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  44% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  46% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  48% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  50% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  52% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  54% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  56% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  58% {
    transform: translate(0px, 1px) rotate(0.5deg);
  }
  60% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  62% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  64% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  66% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  68% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  70% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  72% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  74% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  76% {
    transform: translate(0px, 1px) rotate(0.5deg);
  }
  78% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  80% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  82% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  84% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  86% {
    transform: translate(0px, 1px) rotate(0.5deg);
  }
  88% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  90% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  92% {
    transform: translate(0px, 1px) rotate(0.5deg);
  }
  94% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  96% {
    transform: translate(0px, 1px) rotate(0.5deg);
  }
  98% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  0%, 100% {
    transform: translate(0, 0) rotate(0);
  }
}
.shake:hover,
.shake-trigger:hover .shake, .shake.shake-freeze, .shake.shake-constant {
  animation-name: shake;
  animation-duration: 100ms;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.shake-little:hover, .shake-trigger:hover .shake-little, .shake-little.shake-freeze, .shake-little.shake-constant {
  animation-name: shake-little;
  animation-duration: 100ms;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

/* =============================================
Base 基本設計
============================================= */
/* =============================================
Header ヘッダーのスタイル
============================================= */
.ly_header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #2D2533;
  z-index: 1000;
  border-bottom: 3px solid #EF34AE;
}
.ly_header_inr {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}
@media screen and (max-width: 768px) {
  .ly_header_inr {
    justify-content: space-between;
    padding: 0 5%;
    height: 90px;
  }
}
.ly_header_logo {
  width: 245px;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .ly_header_logo {
    width: 160px;
    margin-top: 8px;
  }
}
.ly_header_logo > a {
  display: block;
}
.ly_header_menu {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  width: 70px;
  height: 70px;
}
@media screen and (max-width: 768px) {
  .ly_header_menu {
    right: 5%;
    width: 50px;
    height: 50px;
  }
}
.ly_header_menuBtn {
  position: relative;
  width: 70px;
  height: 70px;
}
@media screen and (max-width: 768px) {
  .ly_header_menuBtn {
    width: 50px;
    height: 50px;
  }
}
.ly_header_menuBtn span {
  display: inline-block;
  width: 36px;
  height: 4px;
  border-radius: 10px;
  background: #FFBB03;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .ly_header_menuBtn span {
    width: 30px;
    height: 3px;
  }
}
.ly_header_menuBtn span:nth-child(1) {
  top: 34%;
}
.ly_header_menuBtn span:nth-child(2) {
  top: 50%;
}
.ly_header_menuBtn span:nth-child(3) {
  top: 65%;
}
.ly_header_menuBtn.is-open span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.ly_header_menuBtn.is-open span:nth-child(2) {
  opacity: 0;
}
.ly_header_menuBtn.is-open span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.ly_header_nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, #FF00F2 0%, #FFB000 100%);
  border-top: 3px solid #EF34AE;
  color: #fff;
  padding: 80px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .ly_header_nav {
    padding: 25px 0;
  }
}
.ly_header_nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.ly_header_navInr {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}
@media screen and (max-width: 768px) {
  .ly_header_navInr {
    display: block;
    max-width: none;
    padding: 0 5%;
  }
}
.ly_header_navList {
  flex: 1;
  display: flex;
  gap: 35px;
  max-width: 850px;
}
@media screen and (max-width: 768px) {
  .ly_header_navList {
    display: block;
    max-width: none;
  }
}
.ly_header_navItem {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .ly_header_navItem:not(:last-child) {
    margin-bottom: 10px;
  }
}
.ly_header_navTtl {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  border-top: 3px solid transparent;
  border-bottom: 3px solid #fff;
  font-size: 2.4rem;
  line-height: 1.9;
  transition: 0.3s;
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  .ly_header_navTtl {
    font-size: 2rem;
    border-top: 1px solid transparent;
    border-bottom: 1px solid #fff;
  }
}
.ly_header_navTtl:hover {
  background: #7ad03a;
  border-top: 3px solid #7ad03a;
  border-bottom: 3px solid #7ad03a;
  color: #333;
}
@media screen and (max-width: 768px) {
  .ly_header_navTtl:hover {
    border-top: 1px solid #7ad03a;
    border-bottom: 1px solid #7ad03a;
  }
}
.ly_header_navSub {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 15px;
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  .ly_header_navSub {
    margin-top: 10px;
  }
}
.ly_header_navSub > a {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  display: inline-block;
  transition: 0.3s;
}
.ly_header_navSub > a:hover {
  color: #6225EC;
}
.ly_header_navSns {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
  padding-top: 15px;
}
@media screen and (max-width: 768px) {
  .ly_header_navSns {
    justify-content: flex-start;
    padding-top: 0;
    margin-top: 30px;
  }
}
.ly_header_navSns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .ly_header_navSns a {
    width: 28px;
    height: 28px;
  }
}
.ly_header_navSns a:hover {
  color: #6225EC;
}
.ly_header_navSns svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  display: block;
}

/* =============================================
Base 基本設計
============================================= */
/* =============================================
Footer フッターのスタイル
============================================= */
.ly_footer {
  background: #dadada;
  padding: 40px 0;
  border-top: 3px solid #EF34AE;
}
@media screen and (max-width: 768px) {
  .ly_footer {
    padding: 20px 0;
  }
}
.ly_footer_copy {
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}

.bl_fixed {
  position: fixed;
  bottom: 15px;
  left: 0;
  display: flex;
  flex-direction: column;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .bl_fixed {
    bottom: 5px;
  }
}
.bl_fixed_item {
  position: relative;
  padding: 15px 15px 15px 0;
  max-height: 125px;
  overflow: hidden;
  opacity: 1;
  margin-top: -15px;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease, padding 0.4s ease;
  animation-name: bounce;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-play-state: running;
}
@media screen and (max-width: 768px) {
  .bl_fixed_item {
    padding: 15px 15px 15px 0;
    max-height: 125px;
    margin-top: -15px;
  }
}
.bl_fixed_item:first-child {
  margin-top: 0;
}
.bl_fixed_item:hover {
  animation-play-state: paused;
}
.bl_fixed_item.is-hide {
  max-height: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}
.bl_fixed_link {
  display: flex;
  align-items: center;
  width: 270px;
  padding: 10px 20px;
  background: #51E151;
  transition: 0.3s ease;
}
.bl_fixed_link--pink {
  background: #f37b87;
}
@media screen and (max-width: 768px) {
  .bl_fixed_link {
    width: 230px;
    box-shadow: 0 0 10px rgba(51, 51, 51, 0.3);
  }
}
.bl_fixed_link:hover {
  background: #F1F1F1;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(51, 51, 51, 0.2);
}
@media screen and (max-width: 768px) {
  .bl_fixed_link:hover {
    background: #51E151;
    transform: none;
    box-shadow: 0 0 10px rgba(51, 51, 51, 0.3);
  }
}
.bl_fixed_img {
  width: 50px;
  margin-right: 20px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .bl_fixed_img {
    width: 40px;
    margin-right: 15px;
  }
}
.bl_fixed_desc {
  flex: 1;
  line-height: 1.4;
}
.bl_fixed_sub {
  font-size: 1.2rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .bl_fixed_sub {
    font-size: 1.1rem;
  }
}
.bl_fixed_ttl {
  font-size: 2rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}
.bl_fixed_close {
  position: absolute;
  right: 5px;
  bottom: 25px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .bl_fixed_close {
    bottom: 25px;
  }
}
.bl_fixed_close span {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #FF58A0;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .bl_fixed_close span {
    width: 26px;
    height: 26px;
  }
}
.bl_fixed_close span::before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: url(../img/icon_open.svg) center/contain no-repeat;
  z-index: 2;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .bl_fixed_close span::before {
    width: 11px;
    height: 11px;
  }
}
.bl_fixed_close:hover span::before {
  background: url(../img/icon_open_b.svg) center/contain no-repeat;
}
.bl_fixed_close.is-open span {
  background: #E8FE2C;
}
.bl_fixed_close.is-open span::before {
  background: url(../img/icon_close.svg) center/contain no-repeat;
}
.bl_fixed_close.is-open span::after {
  background: rgba(232, 254, 44, 0.6);
}

@keyframes bounce {
  0%, 8%, 100% {
    transform: translateY(0);
  }
  4% {
    transform: translateY(-5px);
  }
}
/* =============================================
Base 基本設計
============================================= */
/* =============================================
TOP トップページのスタイル
============================================= */
.el_topTtl {
  font-weight: 800;
  font-size: 4.8rem;
  color: #333;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .el_topTtl {
    text-align: center;
    font-size: 3.6rem;
    margin-bottom: 10px;
  }
}

.bl_hero {
  background: url(../img/hero_bg.webp) center/cover no-repeat;
  height: calc(100vh - 100px);
  min-height: 54vw;
  max-height: 800px;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .bl_hero {
    height: 100vw;
    min-height: auto;
    max-height: none;
  }
}
.bl_hero_img {
  position: absolute;
  right: 0;
  width: 40vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .bl_hero_img {
    width: 36vw;
  }
}
@media screen and (max-width: 768px) {
  .bl_hero_img {
    width: 63vw;
    top: auto;
    transform: none;
    bottom: 0;
    right: -5vw;
  }
}
.bl_hero_img img {
  width: 100%;
}
.bl_hero_ttl {
  background: rgba(255, 7, 224, 0.75);
  border: 3px solid #00C0B6;
  padding: 55px 50px 45px;
  width: fit-content;
  text-align: center;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .bl_hero_ttl {
    right: 42%;
    padding: 40px;
  }
}
@media screen and (max-width: 768px) {
  .bl_hero_ttl {
    background: rgba(255, 7, 224, 0.7);
    border: none;
    padding: 30px 5%;
    width: 100%;
    text-align: left;
    position: absolute;
    top: 0;
    right: 0;
    transform: none;
  }
}
.bl_hero_name {
  width: 380px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .bl_hero_name {
    width: 350px;
  }
}
@media screen and (max-width: 768px) {
  .bl_hero_name {
    width: 49.5vw;
    margin: 0;
  }
}
.bl_hero_txt {
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .bl_hero_txt {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .bl_hero_txt {
    font-size: 4vw;
    margin-top: 1vw;
  }
}
.bl_hero--ewig {
  background: url(../img/earwig/olinthus_earwigfuzz_onyellow_left.webp) center/cover no-repeat;
}

.bl_intro {
  position: relative;
  background: url(../img/features_bg01.webp) center/cover no-repeat;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .bl_intro {
    padding: 40px 0 60px;
  }
}
.bl_intro--earwig {
  background: url(../img/earwig/earwig_bg01.webp) center/cover no-repeat;
}
.bl_intro::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(169, 216, 224, 0.92);
  z-index: -1;
}
.bl_intro_img {
  position: absolute;
  left: 0;
  width: 420px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.1s ease;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .bl_intro_img {
    width: 310px;
  }
}
@media screen and (max-width: 768px) {
  .bl_intro_img {
    position: static;
    width: 95vw;
    min-height: 126.5vw;
    transform: none;
  }
}
.bl_intro_img img {
  width: 100%;
}
.bl_intro_imgNoM {
  position: absolute;
  left: 0;
  width: 420px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.1s ease;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .bl_intro_imgNoM {
    width: 310px;
  }
}
@media screen and (max-width: 768px) {
  .bl_intro_imgNoM {
    position: static;
    width: 95vw;
    min-height: 126.5vw;
    transform: none;
  }
}
.bl_intro_imgNoM img {
  width: 100%;
}
.bl_intro_descWrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 550px;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .bl_intro_descWrap {
    display: block;
    min-height: auto;
    padding: 0;
    margin-top: 15px;
  }
}
.bl_intro_desc {
  width: 45%;
  margin-right: 5%;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .bl_intro_desc {
    width: 60%;
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .bl_intro_desc {
    width: 100%;
    margin-right: 5%;
    margin-left: auto;
  }
}

.bl_video {
  padding: 80px 0;
  position: relative;
  background: url(../img/features_bg01.webp) center/cover no-repeat;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .bl_video {
    padding: 50px 0;
  }
}
.bl_video::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(43, 252, 255, 0.96);
  z-index: -1;
}
.bl_video_wrap {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .bl_video_wrap {
    display: block;
  }
}
.bl_video_desc {
  width: 45%;
  margin: 0 5%;
}
@media screen and (max-width: 1024px) {
  .bl_video_desc {
    width: 50%;
    margin: 0 5% 0 0;
  }
}
@media screen and (max-width: 768px) {
  .bl_video_desc {
    width: 100%;
    margin: 0;
  }
}
.bl_video_ttl {
  color: #6225EC;
  font-size: 4rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .bl_video_ttl {
    font-size: 3rem;
    margin-bottom: 20px;
  }
}
.bl_video_video {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .bl_video_video {
    margin-top: 30px;
  }
}
.bl_video_videoInr {
  max-width: 300px;
  aspect-ratio: 9/16;
  margin: 0 auto;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .bl_video_videoInr {
    max-width: 90%;
  }
}
.bl_video_videoInr iframe, .bl_video_videoInr video {
  object-fit: cover;
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.bl_bg {
  position: relative;
  background: url(../img/features_bg02.webp) center/cover no-repeat;
}
.bl_bg--earwig {
  background: url(../img/earwig/earwig_bg04.webp) center/cover no-repeat;
}
.bl_bg--earwig::before {
  content: "";
  position: absolute;
  background: rgba(64, 9, 114, 0.8901960784);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}

.bl_descSlide {
  position: relative;
  padding: 100px 0 200px;
}
@media screen and (max-width: 768px) {
  .bl_descSlide {
    padding: 50px 0 20px;
  }
}
.bl_descSlide_img {
  position: absolute;
  right: 0;
  width: 35%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .bl_descSlide_img {
    width: 36%;
  }
}
@media screen and (max-width: 768px) {
  .bl_descSlide_img {
    position: static;
    width: 95vw;
    transform: none;
    margin-top: 20px;
    margin-left: auto;
  }
}
.bl_descSlide_img img {
  width: 100%;
}
.bl_descSlide_slider {
  width: 55%;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .bl_descSlide_slider {
    width: 100%;
  }
}
.bl_descSlide_slider .splide {
  padding-bottom: 4em;
}
@media screen and (max-width: 768px) {
  .bl_descSlide_slider .splide {
    padding-bottom: 3em;
  }
}
.bl_descSlide_ttl {
  color: #FFC607;
  font-size: 4rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .bl_descSlide_ttl {
    font-size: 3rem;
  }
}

.bl_controls {
  position: relative;
  z-index: 1;
}
.bl_controls--earwig {
  padding-top: 80px;
  background: url(../img/earwig/earwig_bg05.webp) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .bl_controls--earwig {
    padding-top: 40px;
  }
}
.bl_controls--earwig::before {
  content: "";
  position: absolute;
  background: #00B5B8;
  opacity: 0.7;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.bl_controls_ttl {
  position: relative;
  color: #6225EC;
  font-size: 3.2rem;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .bl_controls_ttl {
    font-size: 2.6rem;
  }
}
.bl_controls_ttl--white {
  color: #fff;
}
.bl_controls_wrap {
  position: relative;
  display: flex;
  gap: 30px;
  padding: 100px 0 150px;
}
@media screen and (max-width: 768px) {
  .bl_controls_wrap {
    flex-direction: column;
    padding: 0 0 50px;
  }
}
.bl_controls_item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.bl_controls_img {
  width: 200px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .bl_controls_img {
    width: 150px;
  }
}
.bl_controls_size {
  display: flex;
  align-items: center;
  height: calc(100% - 13px);
  position: absolute;
  top: 3px;
  right: -25px;
  z-index: 5;
  font-size: 3rem;
  font-family: "Chakra Petch", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  padding-left: 25px;
  transform: translateX(100%);
  background: url(../img/size_arrow.svg) left top/16px 100% no-repeat;
}
@media screen and (max-width: 768px) {
  .bl_controls_size {
    right: -15px;
    font-size: 2rem;
    padding-left: 15px;
    background: url(../img/size_arrow.svg) left top/10px 100% no-repeat;
  }
}
.bl_controls_desc {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #DDFE2C;
  padding: 50px;
  border: 3px solid #1b1b1b;
  z-index: 5;
  font-size: 1.4rem;
  display: none;
}
@media screen and (max-width: 768px) {
  .bl_controls_desc {
    width: 90%;
    padding: 25px;
    font-size: 1.3rem;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.bl_controls_desc.is-open {
  display: block;
}
.bl_controls_descTtl {
  font-weight: 600;
  font-size: 2.2rem;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .bl_controls_descTtl {
    font-size: 2rem;
  }
}
.bl_controls_trigger {
  position: absolute;
  z-index: 2;
}
.bl_controls_trigger span {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #FF58A0;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .bl_controls_trigger span {
    width: 20px;
    height: 20px;
  }
}
.bl_controls_trigger span::before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/icon_open.svg) center/contain no-repeat;
  z-index: 2;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .bl_controls_trigger span::before {
    width: 9px;
    height: 9px;
  }
}
.bl_controls_trigger span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: rgba(255, 88, 160, 0.6);
  border-radius: 50%;
  box-sizing: border-box;
  pointer-events: none;
  animation: pulsate 1.5s linear infinite;
}
.bl_controls_trigger.is-open span {
  background: #E8FE2C;
}
.bl_controls_trigger.is-open span::before {
  background: url(../img/icon_close.svg) center/contain no-repeat;
}
.bl_controls_trigger.is-open span::after {
  background: rgba(232, 254, 44, 0.6);
}
.bl_controls_trigger.trigger1 {
  left: -15px;
  top: 105px;
}
@media screen and (max-width: 768px) {
  .bl_controls_trigger.trigger1 {
    left: -4px;
    top: 80px;
  }
}
.bl_controls_trigger.trigger2 {
  right: 70px;
  top: 85px;
}
@media screen and (max-width: 768px) {
  .bl_controls_trigger.trigger2 {
    right: 52px;
    top: 68px;
  }
}
.bl_controls_trigger.trigger3 {
  right: -10px;
  top: 105px;
}
@media screen and (max-width: 768px) {
  .bl_controls_trigger.trigger3 {
    right: -4px;
    top: 80px;
  }
}
.bl_controls_trigger.trigger4 {
  right: 50px;
  bottom: 100px;
}
@media screen and (max-width: 768px) {
  .bl_controls_trigger.trigger4 {
    right: 40px;
    bottom: 75px;
  }
}
.bl_controls_trigger.trigger5 {
  right: 10px;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .bl_controls_trigger.trigger5 {
    right: 8px;
    bottom: 4px;
  }
}
.bl_controls_trigger.trigger6 {
  right: 42px;
  bottom: 62px;
}
@media screen and (max-width: 768px) {
  .bl_controls_trigger.trigger6 {
    right: 35px;
    bottom: 52px;
  }
}

@keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}
.bl_wideVideo {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .bl_wideVideo {
    padding: 50px 0;
  }
}
.bl_wideVideo_wrap {
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1;
}
.bl_wideVideo_wrap iframe, .bl_wideVideo_wrap video {
  width: 100%;
  height: 563px;
  vertical-align: bottom;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .bl_wideVideo_wrap iframe, .bl_wideVideo_wrap video {
    height: calc(61vw - 120px);
  }
}
@media screen and (max-width: 768px) {
  .bl_wideVideo_wrap iframe, .bl_wideVideo_wrap video {
    height: 51vw;
  }
}

.bl_descTabs {
  padding: 100px 0;
  position: relative;
  background: url(../img/features_bg03.webp) center/cover no-repeat;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .bl_descTabs {
    padding: 50px 0 30px;
  }
}
.bl_descTabs--earwig {
  background: url(../img/earwig/earwig_bg06.webp) center/cover no-repeat;
}
.bl_descTabs::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(179, 48, 190, 0.84);
  z-index: -1;
}
.bl_descTabs_btnWrap {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .bl_descTabs_btnWrap {
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .bl_descTabs_btnWrap {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 60px;
    display: none;
  }
}
.bl_descTabs_btn {
  padding: 15px;
  background: #51E151;
  flex: 1;
  text-align: center;
  display: grid;
  place-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .bl_descTabs_btn {
    padding: 15px 5px;
    font-size: 1.5rem;
  }
}
.bl_descTabs_btn:hover {
  background: #FC6791;
}
.bl_descTabs_btn.is-active {
  background: #FC6791;
  color: #fff;
}
.bl_descTabs_panel {
  display: none;
}
.bl_descTabs_panel.is-active {
  display: block;
  min-height: 380px;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .bl_descTabs_panel.is-active {
    min-height: auto;
  }
}
.bl_descTabs_wrap {
  display: flex;
}
@media screen and (max-width: 768px) {
  .bl_descTabs_wrap {
    display: block;
  }
}
.bl_descTabs_desc {
  flex: 1;
  color: #fff;
}
.bl_descTabs_img {
  width: 40%;
  margin-left: 5%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .bl_descTabs_img {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
}
.bl_descTabs_img img {
  width: 100%;
  max-width: 400px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .bl_descTabs_img img {
    max-width: 300px;
  }
}
.bl_descTabs_spTrigger {
  display: none;
}
@media screen and (max-width: 768px) {
  .bl_descTabs_spTrigger {
    display: block;
    font-size: 1.4rem;
    line-height: 1.5;
    padding: 10px;
    background: #51E151;
    flex: 1;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 20px;
  }
  .bl_descTabs_spTrigger.is-active {
    background: #FC6791;
    color: #fff;
  }
}

.bl_imgWide {
  height: 600px;
}
@media screen and (max-width: 768px) {
  .bl_imgWide {
    height: 80vw;
  }
}
.bl_imgWide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .bl_imgWide img {
    height: 80vw;
  }
}

.bl_imgSlide {
  padding: 80px 0;
  position: relative;
  background: url(../img/imgSlide_bg01.webp) center/cover no-repeat;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .bl_imgSlide {
    padding: 50px 0;
  }
}
.bl_imgSlide::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(20, 53, 56, 0.75);
  z-index: -1;
}
.bl_imgSlide--earwig {
  background: url(../img/earwig/olinthus-earwith-sketches-black.webp) center/cover no-repeat;
}

.bl_package {
  overflow: hidden;
  background-color: #000;
  position: relative;
  padding: 100px 0 75%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .bl_package {
    padding: 50px 0 85vw;
  }
}
.bl_package::before {
  content: "";
  width: 100%;
  height: 570px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, #2B0B5B 70%, transparent 100%);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .bl_package::before {
    height: calc(100% - 65vw);
  }
}
.bl_package_desc {
  position: relative;
  z-index: 5;
}
.bl_package_ttl {
  color: #B6A3FF;
  text-align: center;
  font-size: 4rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .bl_package_ttl {
    font-size: 3rem;
    margin-bottom: 30px;
  }
}
.bl_package_txt {
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .bl_package_txt {
    text-align: left;
  }
}
.bl_package_catch {
  margin-top: 20px;
  text-align: center;
  color: #F0D407;
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .bl_package_catch {
    text-align: left;
    margin-top: 15px;
    font-size: 2rem;
  }
}
.bl_package_img {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  line-height: 1;
}
.bl_package_img img {
  width: 100%;
  line-height: 1;
  vertical-align: bottom;
}

.bl_spec {
  padding: 100px 0;
  background: #FFE1AB;
  color: #333;
}
@media screen and (max-width: 768px) {
  .bl_spec {
    padding: 50px 0;
  }
}
.bl_spec_wrap {
  display: flex;
}
@media screen and (max-width: 768px) {
  .bl_spec_wrap {
    display: block;
  }
}
.bl_spec_desc {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .bl_spec_desc {
    width: 100%;
  }
}
.bl_spec_ttlWrap {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .bl_spec_ttlWrap {
    display: block;
  }
}
.bl_spec_ttl {
  margin-right: 25px;
}
@media screen and (max-width: 768px) {
  .bl_spec_ttl {
    margin: 0 0 15px;
    text-align: center;
  }
}
.bl_spec_ttl img {
  max-width: 220px;
}
@media screen and (max-width: 768px) {
  .bl_spec_ttl img {
    max-width: 200px;
  }
}
.bl_spec_price {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  font-size: 1.4rem;
  line-height: 1.5;
  padding-bottom: 5px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .bl_spec_price {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 15px;
    padding-bottom: 0;
  }
}
.bl_spec_price span {
  display: inline-block;
}
.bl_spec_data {
  border-top: 1px solid #d3ced2;
}
.bl_spec_dataItem {
  display: flex;
  gap: 10px;
  font-size: 1.6rem;
  line-height: 1.5;
  border-bottom: 1px solid #d3ced2;
  padding: 15px 0;
}
@media screen and (max-width: 768px) {
  .bl_spec_dataItem {
    font-size: 1.4rem;
  }
}
.bl_spec_dataItem dt {
  width: 130px;
}
@media screen and (max-width: 768px) {
  .bl_spec_dataItem dt {
    width: 100px;
  }
}
.bl_spec_dataItem dd {
  flex: 1;
}
.bl_spec_img {
  flex: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .bl_spec_img {
    margin-bottom: 40px;
  }
}
.bl_spec_img img {
  max-width: 200px;
}
@media screen and (max-width: 768px) {
  .bl_spec_img img {
    max-width: 140px;
  }
}

.bl_qa {
  padding: 80px 0;
  position: relative;
  background-color: #1CFFF8;
  background-image: url(../img/faq_bg01.webp);
  background-position: top center;
  background-repeat: repeat-y;
  background-size: cover;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .bl_qa {
    background-size: contain;
  }
}
@media screen and (max-width: 768px) {
  .bl_qa {
    padding: 50px 0;
  }
}
.bl_qa_ttl {
  color: #784DFF;
  text-align: center;
  font-size: 5rem;
  margin-bottom: 40px;
  font-family: "DM Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .bl_qa_ttl {
    font-size: 4rem;
    margin-bottom: 20px;
  }
}
.bl_qa_item {
  background: #F1F1F1;
  font-weight: 400;
  line-height: 1.6;
}
.bl_qa_item + .bl_qa_item {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .bl_qa_item + .bl_qa_item {
    margin-top: 15px;
  }
}
.bl_qa_q {
  padding: 20px 55px 20px 30px;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .bl_qa_q {
    font-size: 1.5rem;
    padding: 20px 40px 20px 25px;
  }
}
.bl_qa_q::before {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #FF58A0;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .bl_qa_q::before {
    width: 20px;
    height: 20px;
    right: 12px;
  }
}
.bl_qa_q::after {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: 43px;
  transform: translate(50%, -50%);
  background: url(../img/icon_open.svg) center/contain no-repeat;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .bl_qa_q::after {
    width: 10px;
    height: 10px;
    right: 22px;
  }
}
.bl_qa_q:hover::after {
  background: url(../img/icon_open_b.svg) center/contain no-repeat;
}
.bl_qa_q.is-open::before {
  background: #E8FE2C;
}
.bl_qa_q.is-open::after {
  background: url(../img/icon_close.svg) center/contain no-repeat;
}
.bl_qa_a {
  padding: 40px 50px;
  background: #9EFBBA;
  border: 1px solid #d5d8dc;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .bl_qa_a {
    padding: 0 25px;
    font-size: 1.5rem;
  }
}
.bl_qa_a.is-open {
  max-height: 500px;
  opacity: 1;
  padding: 40px 50px;
}
@media screen and (max-width: 768px) {
  .bl_qa_a.is-open {
    max-height: 100vh;
    padding: 25px;
  }
}

.bl_cta {
  background: #F1F1F1;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .bl_cta {
    padding: 40px 0;
  }
}
.bl_cta_link {
  display: block;
  margin: 0 auto;
  background: #51E151;
  padding: 15px;
  max-width: 380px;
  text-align: center;
  font-size: 1.5rem;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .bl_cta_link {
    padding: 10px;
    max-width: none;
  }
}
.bl_cta_link:hover {
  background: #FC6791;
  color: #fff;
}

/* =============================================
Base 基本設計
============================================= */
/* =============================================
Page 下層ページのスタイル
============================================= */
.bl_underTtl {
  background: url(../img/under/about_ttl_bg.webp) center/cover no-repeat;
  z-index: 1;
  padding: 55px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .bl_underTtl {
    padding: 40px 0;
  }
}
.bl_underTtl::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 216, 0, 0.6);
  z-index: -1;
}
.bl_underTtl_inr {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px;
}
.bl_underTtl_main {
  color: #fff;
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .bl_underTtl_main {
    font-size: 3.2rem;
    margin-bottom: 10px;
  }
}
.bl_underTtl_sub {
  font-size: 1.3rem;
  font-weight: 400;
}

.bl_aboutIntro {
  background: #000;
  padding-top: 20px;
}
.bl_aboutIntro_wrap {
  display: flex;
  min-height: 270px;
}
@media screen and (max-width: 768px) {
  .bl_aboutIntro_wrap {
    display: block;
    min-height: auto;
  }
}
.bl_aboutIntro_desc {
  width: 50%;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 400;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .bl_aboutIntro_desc {
    width: 100%;
    padding: 10px 0;
    margin-bottom: 20px;
  }
}
.bl_aboutIntro_desc .-link {
  color: #c36;
}
.bl_aboutIntro_desc .-link:hover {
  color: #336;
}
.bl_aboutIntro_video {
  padding: 10px;
  position: relative;
  width: 50%;
  min-height: 270px;
}
@media screen and (max-width: 768px) {
  .bl_aboutIntro_video {
    width: 100%;
    padding: 10px 0;
    min-height: 51vw;
  }
}
.bl_aboutIntro_video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 270px;
}
@media screen and (max-width: 768px) {
  .bl_aboutIntro_video video {
    min-height: 51vw;
  }
}

.bl_aboutTeam {
  background: #F1F1F1;
  padding: 25px 0 40px;
}
.bl_aboutTeam_ttl {
  font-size: 2.4rem;
  margin-bottom: 10px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .bl_aboutTeam_ttl {
    font-size: 2.2rem;
  }
}
.bl_aboutTeam_txt {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 30px;
}
.bl_aboutTeam_wrap {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .bl_aboutTeam_wrap {
    flex-direction: column;
  }
}
.bl_aboutTeam_item {
  flex: 1;
}
.bl_aboutTeam_name {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .bl_aboutTeam_name {
    font-size: 2rem;
  }
}
.bl_aboutTeam_img {
  line-height: 1;
}
.bl_aboutTeam_qa dt {
  font-size: 1.4rem;
  font-weight: 500;
  padding: 12px 15px 12px 30px;
  border-bottom: 1px solid #d5d8dc;
  position: relative;
  cursor: pointer;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .bl_aboutTeam_qa dt {
    padding: 10px 0 10px 30px;
    line-height: 1.5;
  }
}
.bl_aboutTeam_qa dt::before {
  content: "";
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  left: 15px;
  top: 18px;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .bl_aboutTeam_qa dt::before {
    top: 15px;
  }
}
.bl_aboutTeam_qa dt.is-open {
  border-bottom: 1px solid transparent;
}
.bl_aboutTeam_qa dt.is-open::before {
  transform: rotate(-90deg);
}
.bl_aboutTeam_qa dd {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.8;
  padding: 10px 15px 30px;
  display: none;
  border-bottom: 1px solid #d5d8dc;
}

.bl_aboutMean {
  background: #F1F1F1;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .bl_aboutMean {
    margin-top: -1px;
  }
}
.bl_aboutMean_ttl {
  font-weight: 500;
  font-size: 2.7rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .bl_aboutMean_ttl {
    font-size: 2.4rem;
  }
}
.bl_aboutMean_txt {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.8;
}
.bl_aboutMean_txt + .bl_aboutMean_txt {
  margin-top: 1.5rem;
}
.bl_aboutMean_wrap {
  display: flex;
}
@media screen and (max-width: 768px) {
  .bl_aboutMean_wrap {
    display: block;
  }
}
.bl_aboutMean_desc {
  flex: 1;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .bl_aboutMean_desc {
    margin: 0 0 30px;
  }
}
.bl_aboutMean_img {
  width: 240px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .bl_aboutMean_img {
    width: 100%;
  }
}

.el_wave {
  height: 20px;
  min-height: 20px;
  display: block;
  background: url(../img/under/wave_min.svg) left center/18px 11px repeat-x;
}

.el_interviewList + .el_interviewList {
  margin-top: 10px;
}
.el_interviewList dt + dd {
  margin-top: 8px;
}
.el_interviewList dd {
  position: relative;
  font-size: 14px;
}
.el_interviewList dd::before {
  content: "-";
  margin-right: 5px;
}
.el_interviewList dd + dt {
  margin-top: 15px;
}

.contact {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .contact {
    max-width: unset;
    width: 90%;
    margin-bottom: 40px;
  }
}
.contact_ttl {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 300;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .contact_ttl {
    font-size: 1.5625rem;
    margin-bottom: 15px;
  }
}
.contact_txt {
  font-weight: 300;
}

.bl_contact {
  max-width: 907px;
  margin: 0 auto 55px;
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .bl_contact {
    max-width: none;
    width: 90%;
    margin-bottom: 40px;
  }
}
.bl_contact_inner {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .bl_contact_inner {
    margin-bottom: 50px;
  }
}
.bl_contact_txt {
  letter-spacing: 0;
  margin-bottom: 10px;
}
.bl_contact_item {
  display: grid;
  align-items: center;
  grid-template-columns: 180px 1fr;
  gap: 27px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .bl_contact_item {
    display: block !important;
    margin-bottom: 20px;
  }
  .bl_contact_item dt {
    margin-bottom: 5px;
  }
}
.bl_contact_item.name {
  margin-bottom: 15px;
}
.bl_contact .hissu {
  letter-spacing: 0;
  color: red;
}
.bl_contact .txt_small {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 1.45;
}
.bl_contact_ttl {
  letter-spacing: 0;
  text-align: center;
  font-weight: 400;
  margin-bottom: 10px;
  color: #fff;
}
.bl_contact_box {
  padding: 34px 10px 34px 34px;
  margin-bottom: 50px;
}
.bl_contact_box_inner {
  height: 185px;
  overflow-y: scroll;
  padding-right: 32px;
  scrollbar-color: #575757 #191919;
  scrollbar-width: thin;
}
.bl_contact_box_txt {
  line-height: 1.84;
}
.bl_contact_box_txt + .bl_contact_box_txt {
  margin-top: 16px;
}
.bl_contact .txt_check {
  text-align: center;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.bl_contact .wpcf7-list-item {
  margin-left: 0;
}

.bl_contact input[type=text],
.bl_contact input[type=email],
.bl_contact input[type=tel],
.bl_contact input[type=number],
.bl_contact input[type=date],
.bl_contact select,
.bl_contact textarea {
  -webkit-appearance: none;
  appearance: none;
  color: #A3A3A3;
  border: none;
  padding: 10px 15px;
  margin: 0;
  width: 100%;
  min-height: 50px;
}

.bl_contact input[type=text]:focus,
.bl_contact input[type=email]:focus,
.bl_contact input[type=tel]:focus,
.bl_contact input[type=number]:focus,
.bl_contact input[type=file]:focus,
.bl_contact textarea:focus,
.bl_contact select:focus {
  outline: 1px solid #A3A3A3;
}

.bl_contact .name {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .bl_contact .name {
    display: block;
  }
}

.bl_contact .name .item {
  display: grid;
  grid-template-columns: 30px 290px;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .bl_contact .name .item + .item {
    margin-top: 3px;
  }
}

.bl_contact .name .item .unit {
  letter-spacing: 0;
  width: 30px;
  font-size: 12px;
  text-align: right;
}

.bl_contact textarea {
  height: 270px;
  resize: vertical;
}

.bl_contact .name .select-wrap {
  width: 290px;
}
.bl_contact .name .select-wrap::after {
  background: unset;
}

.bl_contact .age .select-wrap {
  width: 170px;
}
@media screen and (max-width: 768px) {
  .bl_contact .age .select-wrap {
    width: 100%;
  }
}

.bl_contact .select-wrap::after {
  content: "";
  background: url(../images/share/accessorylist_arrow.svg) center/contain no-repeat;
  width: 10px;
  height: 5px;
  position: absolute;
  pointer-events: none;
  right: 15px;
  top: 23px;
}

.wpcf7-form-control-wrap.inquiry {
  width: 600px;
  display: flex;
  flex-wrap: wrap;
}

.wpcf7-radio .wpcf7-list-item {
  display: inline-block;
  margin: 0 25px 0 0;
}
@media screen and (max-width: 768px) {
  .wpcf7-radio .wpcf7-list-item {
    margin-right: 15px;
  }
}

.wpcf7-radio label {
  display: flex;
  align-items: flex-start;
  position: relative;
  letter-spacing: 0;
}

.wpcf7-radio input[type=radio] {
  flex: 0 0 12px;
  display: inline-block;
  background-color: #EEEEEE;
  border: 1px solid #EEEEEE;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  -webkit-appearance: none;
  appearance: none;
  margin: 8px 5px 0 0;
}

.wpcf7-radio input[type=radio]:checked + span::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #000000;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 2px;
  z-index: 0;
}

.wpcf7-radio input[type=radio]:focus-visible {
  outline: none;
}

.bl_contact .select-wrap {
  position: relative;
  width: 170px;
}
@media screen and (max-width: 768px) {
  .bl_contact .select-wrap {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .select-wrap,
  .select-wrap select {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
}
.file-label {
  display: inline-block;
  background-color: transparent;
  cursor: pointer;
  letter-spacing: 0;
  padding: 0 19px 1px;
  transition: 0.5s;
  border: 1px solid #969696;
}

.file-label:hover {
  background-color: #969696;
  color: #000;
}

.file-label input[type=file] {
  display: none;
}

.file-message {
  margin-top: 5px;
  letter-spacing: 0;
  display: inline;
  padding-left: 15px;
}

.bl_contact .submit-btn {
  display: flex;
  justify-content: center;
}
.bl_contact .submit-btn + .submit-btn {
  margin-top: 10px;
}

.bl_contact .submit-btn [type=submit],
.bl_contact .submit-btn [type=button] {
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid #5D5D5D;
  outline: none;
  color: #5D5D5D;
  cursor: pointer;
  line-height: 1;
  padding: 22px;
  transition: 0.3s;
  width: 305px;
  display: block !important;
  text-align: center;
}

.bl_contact .submit-btn [type=submit]:hover {
  opacity: 0.7;
  background: #EEEEEE;
  color: #000000;
}

.bl_contact .submit-btn [type=button]:hover {
  opacity: 0.7;
  background: #EEEEEE;
  color: #000000;
}

.bl_contact .submit-btn [type=submit].back-btn {
  background: #999;
  border: none;
  margin-right: 50px;
}

.bl_contact .submit-btn [type=button].back-btn {
  background: #999;
  border: none;
  margin-right: 50px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border: none;
  color: #fff;
  text-align: center;
  margin: 30px 0 0;
}

.bl_contact .wpcf7-not-valid-tip {
  font-size: 11px;
  margin: 5px 0 0 0;
}

div.wpcf7-response-output.wpcf7-validation-errors {
  display: none !important;
}

.bl_contact .wpcf7-spinner {
  display: none;
}

.dtp > .dtp-content {
  font-weight: bold;
}

.dtp > .dtp-content > .dtp-date-view > header.dtp-header {
  background: #373c3f !important;
}

.dtp div.dtp-date,
.dtp div.dtp-time {
  background-color: #eff0f0 !important;
  color: #333 !important;
}

.dtp .p10 > a,
.dtp div.dtp-actual-year,
.dtp .bl_contact-inr.dtp-picker-days .bl_contact-item > dt {
  color: #333 !important;
}

.dtp div.dtp-picker-month {
  font-weight: bold;
  padding-bottom: 0 !important;
}

.dtp .bl_contact-inr.dtp-picker-days .bl_contact-item > dd > a.selected {
  background-color: #96cee1 !important;
  border-radius: 3px !important;
}

.dtp .right,
.dtp .left {
  margin-top: 10px !important;
}

.loading-wrapper {
  display: none;
  background-color: rgba(0, 0, 0, 0.25);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.loading-send {
  background: #fff;
  padding: 35px 70px;
  box-shadow: 0 0.4rem 0.8rem -0.1rem rgba(0, 32, 128, 0.1), 0 0 0 1px #f0f2f7;
  border-radius: 5px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 1000;
}

.loading-send-dot,
.loading-send-dot::before,
.loading-send-dot::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #9face6;
  position: absolute;
  top: 0;
  -webkit-animation: dot-flashing 1s infinite alternate;
  animation: dot-flashing 1s infinite alternate;
}

.loading-send-dot {
  margin-top: 5px;
  position: relative;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.loading-send-dot::before {
  left: -15px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.loading-send-dot::after {
  left: 15px;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@media (max-width: 800px) {
  .bl_contact .bl_contact-inr {
    margin: 0 0 30px;
  }
  .bl_contact .bl_contact-inr .bl_contact-item {
    display: block;
  }
  .bl_contact .bl_contact-inr dt,
  .bl_contact .bl_contact-inr dd {
    width: 100%;
  }
  .bl_contact .bl_contact-inr dt {
    padding: 15px 0 10px;
  }
  .bl_contact .bl_contact-inr dd {
    padding: 0 0 15px;
  }
  .bl_contact .reserve-date {
    display: block;
  }
  .bl_contact .reserve-date .date {
    width: 100%;
    margin: 0 0 10px;
  }
  .bl_contact .age {
    flex-wrap: wrap;
  }
  .bl_contact .age .item + .item {
    margin-top: 15px;
  }
  .bl_contact .submit-btn [type=submit],
  .bl_contact .submit-btn [type=button] {
    padding: 15px;
    width: 250px;
  }
  .bl_contact .submit-btn [type=submit].back-btn,
  .bl_contact .submit-btn [type=button].back-btn {
    margin-right: 25px;
  }
  .grecaptcha-badge {
    bottom: 70px !important;
  }
}