/* ************************************************************************
   ************************************************************************

    COMMON SETTINGS

   ************************************************************************
   ************************************************************************ */
/* ------------------------------
    RESPONSIVE SETTINGS
  ------------------------------ */
/* ------------------------------
    FONT
  ------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;700;900&display=swap");
.t__min {
  font-family: serif !important;
}

/* ------------------------------
    COLOR SETTINGS
  ------------------------------ */
svg {
  fill: currentColor;
}

/* ------------------------------
    MIXIN
  ------------------------------ */
/* ------------------------------
    KEYFRAME
  ------------------------------ */
@keyframes scrollDown {
  0% {
    transform: translateY(0rem);
  }
  15% {
    transform: translateY(1rem);
  }
  30% {
    transform: translateY(0rem);
  }
  45% {
    transform: translateY(1rem);
  }
  60% {
    transform: translateY(0rem);
  }
  100% {
    transform: translateY(0rem);
  }
}
/* ------------------------------
    FORM RESET
  ------------------------------ */
input, select, textarea {
  outline: none;
}
input::focus, select::focus, textarea::focus {
  outline: none;
}

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

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
select::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

button {
  background: none;
  color: inherit;
  border: none;
  outline: none;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  text-align: left;
}
button:focus {
  outline: none;
}

.slick-slide {
  outline: none !important;
}

button {
  cursor: pointer;
  outline: none;
  padding: 0;
}

/* ------------------------------
    DEFAULT BLOCK SETTINGS
  ------------------------------ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::selection {
  background-color: #FF98AC;
  color: #FFF;
}

html {
  scroll-behavior: smooth;
  background: #FFF;
  color: #000000;
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-weight: 400;
  margin-top: 0 !important;
}
html::-webkit-scrollbar {
  display: none;
}
html.locked {
  overflow: hidden;
  touch-action: none;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 100%;
  background: #FFF;
  color: #000000;
}
body.__locked {
  overflow: hidden;
}

main {
  overflow: hidden;
}

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

h1, h2, h3 {
  font-weight: 700;
}

/* ------------------------------
    MEDIA SETTINGS
  ------------------------------ */
img {
  display: block;
  width: 100%;
  height: auto;
}

/* ------------------------------
    BLOCK SETTINGS
  ------------------------------ */
.is__container_small {
  margin: 0 auto;
}
@media screen and (min-width: 320px) {
  .is__container_small {
    width: 90%;
  }
}
@media screen and (min-width: 600px) {
  .is__container_small {
    width: 1200px;
  }
}
@media screen and (min-width: 1025px) {
  .is__container_small {
    width: 1200px;
  }
}
@media screen and (min-width: 1441px) {
  .is__container_small {
    width: 1400px;
  }
}

@media screen and (min-width: 320px) {
  .is__container_medium {
    padding: 15% 5%;
  }
}
@media screen and (min-width: 600px) {
  .is__container_medium {
    padding: 10% 10%;
  }
}
@media screen and (min-width: 1025px) {
  .is__container_medium {
    padding: 7.5% 20%;
  }
}

@media screen and (min-width: 320px) {
  .is__container_medium_left {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 600px) {
  .is__container_medium_left {
    width: auto;
    margin: 0 0 0 80px;
  }
}
@media screen and (min-width: 1025px) {
  .is__container_medium_left {
    width: auto;
    margin: 0 0 0 10vw;
  }
}
@media screen and (min-width: 1441px) {
  .is__container_medium_left {
    width: auto;
    margin: 0 0 0 10vw;
  }
}

@media screen and (min-width: 320px) {
  .is__container_large {
    padding: 15% 5%;
  }
}
@media screen and (min-width: 600px) {
  .is__container_large {
    padding: 10% 10%;
  }
}
@media screen and (min-width: 1025px) {
  .is__container_large {
    padding: 7.5% 15%;
  }
}

@media screen and (min-width: 320px) {
  .is__container_large_left {
    margin: 0 0 0 5vw;
  }
}
@media screen and (min-width: 600px) {
  .is__container_large_left {
    margin: 0 0 0 5vw;
  }
}
@media screen and (min-width: 1025px) {
  .is__container_large_left {
    margin: 0 0 0 5vw;
  }
}
@media screen and (min-width: 1441px) {
  .is__container_large_left {
    margin: 0 0 0 5vw;
  }
}

.ta__center {
  text-align: center;
}
.ta__center .flex__item {
  margin: 0 auto;
}

.ta__right {
  text-align: right;
}

.ta__left {
  text-align: left;
}

.flex__inner, .flex__item {
  display: flex;
}
.flex__inner.row__wrap, .flex__item.row__wrap {
  flex-direction: row;
  flex-wrap: wrap;
}
.flex__inner.row__start__start, .flex__item.row__start__start {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.flex__inner.row__start__center, .flex__item.row__start__center {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.flex__inner.row__start__end, .flex__item.row__start__end {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
}
.flex__inner.row__start__unset, .flex__item.row__start__unset {
  flex-direction: row;
  justify-content: flex-start;
  align-items: unset;
}
.flex__inner.row__start__normal, .flex__item.row__start__normal {
  flex-direction: row;
  justify-content: flex-start;
  align-items: normal;
}
.flex__inner.row__sb__unset, .flex__item.row__sb__unset {
  flex-direction: row;
  justify-content: space-between;
  align-items: unset;
}
.flex__inner.row__sb__start, .flex__item.row__sb__start {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.flex__inner.row__sb__center, .flex__item.row__sb__center {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.flex__inner.row__sb__end, .flex__item.row__sb__end {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
.flex__inner.row__sb__normal, .flex__item.row__sb__normal {
  flex-direction: row;
  justify-content: space-between;
  align-items: normal;
}
.flex__inner.row__end__start, .flex__item.row__end__start {
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
}
.flex__inner.row__end__center, .flex__item.row__end__center {
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.flex__inner.row__end__end, .flex__item.row__end__end {
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
}
.flex__inner.row__center__unset, .flex__item.row__center__unset {
  flex-direction: row;
  justify-content: center;
  align-items: unset;
}
.flex__inner.row__center__center, .flex__item.row__center__center {
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.flex__inner.row__center__top, .flex__item.row__center__top {
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
.flex__inner.row__center__start, .flex__item.row__center__start {
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
.flex__inner.row__center__end, .flex__item.row__center__end {
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
}
.flex__inner.rowreverse__start__start, .flex__item.rowreverse__start__start {
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: flex-start;
}
.flex__inner.rowreverse__sb__start, .flex__item.rowreverse__sb__start {
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
}
.flex__inner.rowreverse__sb__center, .flex__item.rowreverse__sb__center {
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}
.flex__inner.column__sb__center, .flex__item.column__sb__center {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.flex__inner.column__sb__start, .flex__item.column__sb__start {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.flex__inner.column__start__start, .flex__item.column__start__start {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.flex__inner.column__start__center, .flex__item.column__start__center {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.flex__inner.column__start__end, .flex__item.column__start__end {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}
.flex__inner.column__center__start, .flex__item.column__center__start {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.flex__inner.column__center, .flex__inner.column__center__center, .flex__item.column__center, .flex__item.column__center__center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.flex__inner.column__center__end, .flex__item.column__center__end {
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.flex__inner.column__end, .flex__item.column__end {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.flex__inner.column__end__start, .flex__item.column__end__start {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.flex__inner.column__end__center, .flex__item.column__end__center {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.flex__inner.column__end__end, .flex__item.column__end__end {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
.flex__inner.columnreverse__start__start, .flex__item.columnreverse__start__start {
  flex-direction: column-reverse;
  justify-content: flex-start;
  align-items: flex-start;
}
.flex__inner.f__wrap, .flex__inner.fwrap, .flex__item.f__wrap, .flex__item.fwrap {
  flex-wrap: wrap;
}

.is__section {
  position: relative;
}
.is__section.is-inview .mv, .is__section.is-inview .is__define_block, .is__section.is-inview .banner, .is__section.is-inview .attenbox {
  opacity: 1;
  transform: translateY(0rem);
}
.is__section.is-inview .is__head_common .mtr, .is__section.is-inview .is__head_common .title {
  opacity: 1;
  transform: translateY(0rem);
}
.is__section.is-inview .is__head_common .border {
  clip-path: inset(0 0% 0 0);
  transform: scale(1);
}
.is__section.is-inview .process .item {
  opacity: 1;
  transform: translateY(0rem) scale(1);
}
.is__section .mv, .is__section .is__define_block, .is__section .banner, .is__section .attenbox {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 700ms ease 300ms, transform 700ms ease 300ms;
}
.is__section .is__head_common .mtr, .is__section .is__head_common .title {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 700ms ease 300ms, transform 700ms ease 300ms;
}
.is__section .is__head_common .border {
  clip-path: inset(0 100% 0 0);
  transform: scale(1.15);
  transition: clip-path 700ms ease 400ms, transform 700ms ease 400ms;
}
.is__section .process .item {
  opacity: 0;
  transform: translateY(2rem) scale(0.85);
  transition: opacity 700ms ease 300ms, transform 700ms ease 300ms;
}
.is__section .process .item:nth-child(1) {
  transition-delay: 300ms;
}
.is__section .process .item:nth-child(2) {
  transition-delay: 400ms;
}
.is__section .process .item:nth-child(3) {
  transition-delay: 500ms;
}
.is__section .process .item:nth-child(4) {
  transition-delay: 600ms;
}
.is__section .process .item:nth-child(5) {
  transition-delay: 700ms;
}
.is__section .process .item:nth-child(6) {
  transition-delay: 800ms;
}
.is__section .process .item:nth-child(7) {
  transition-delay: 900ms;
}
.is__section .process .item:nth-child(8) {
  transition-delay: 1000ms;
}
.is__section .process .item:nth-child(9) {
  transition-delay: 1100ms;
}
.is__section .process .item:nth-child(10) {
  transition-delay: 1200ms;
}

/* ------------------------------
    TEXT SETTINGS
  ------------------------------ */
.is__description {
  line-height: 2;
  letter-spacing: 0.4px;
}
@media screen and (min-width: 320px) {
  .is__description {
    font-size: 3.6vw;
  }
}
@media screen and (min-width: 600px) {
  .is__description {
    font-size: 1.4vw;
  }
}
@media screen and (min-width: 1025px) {
  .is__description {
    font-size: 1.1vw;
  }
}

/* ------------------------------
    HEADER
  ------------------------------ */
#is__global_header {
  position: fixed;
  z-index: 100000;
  top: 0;
  left: 0;
  width: 100%;
}
#is__global_header .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 320px) {
  #is__global_header .inner {
    padding: 2% 3% 0;
  }
}
@media screen and (min-width: 600px) {
  #is__global_header .inner {
    padding: 2% 3% 0;
  }
}
@media screen and (min-width: 1025px) {
  #is__global_header .inner {
    padding: 2% 3% 0;
  }
}
@media screen and (min-width: 320px) {
  #is__global_header.__transform {
    background: transparent;
  }
}
@media screen and (min-width: 600px) {
  #is__global_header.__transform {
    background: transparent;
  }
}
@media screen and (min-width: 1025px) {
  #is__global_header.__transform {
    background: #FFF;
  }
}
@media screen and (min-width: 320px) {
  #is__global_header.__transform .inner {
    padding: 2% 3% 0;
  }
}
@media screen and (min-width: 600px) {
  #is__global_header.__transform .inner {
    padding: 2% 3% 0;
  }
}
@media screen and (min-width: 1025px) {
  #is__global_header.__transform .inner {
    padding: 1% 3%;
  }
}
@media screen and (min-width: 320px) {
  #is__global_header.__transform #logo {
    width: 75%;
  }
}
@media screen and (min-width: 600px) {
  #is__global_header.__transform #logo {
    width: 70%;
  }
}
@media screen and (min-width: 1025px) {
  #is__global_header.__transform #logo {
    width: 25%;
  }
}
#is__global_header.__transform #mainmenu .menu__top {
  display: none;
}

#logo {
  position: relative;
  z-index: 10000;
}
@media screen and (min-width: 320px) {
  #logo {
    width: 75%;
  }
}
@media screen and (min-width: 600px) {
  #logo {
    width: 70%;
  }
}
@media screen and (min-width: 1025px) {
  #logo {
    width: 35%;
  }
}
@media screen and (min-width: 320px) {
  #logo span {
    display: inline-block;
    font-size: 2.8vw;
  }
}
@media screen and (min-width: 600px) {
  #logo span {
    display: inline-block;
    font-size: 1.2vw;
  }
}
@media screen and (min-width: 1025px) {
  #logo span {
    display: none;
  }
}
#logo a, #logo img {
  display: block;
  width: 100%;
}

#sp__menu {
  position: relative;
  z-index: 10000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url("../images/sp__menu_btn.svg") center center/contain no-repeat;
}
@media screen and (min-width: 320px) {
  #sp__menu {
    display: flex;
    width: 15vw;
    height: 15vw;
  }
}
@media screen and (min-width: 600px) {
  #sp__menu {
    display: flex;
    width: 15vw;
    height: 15vw;
  }
}
@media screen and (min-width: 1025px) {
  #sp__menu {
    display: none;
  }
}
#sp__menu span {
  display: block;
  background: #FFF;
  width: 35%;
  height: 3px;
  transition: transform 700ms ease;
}
#sp__menu span:nth-child(2) {
  margin: 4px 0;
}
#sp__menu.__opened span:nth-child(1) {
  transform: translateY(7px) rotate(225deg);
}
#sp__menu.__opened span:nth-child(2) {
  opacity: 0;
}
#sp__menu.__opened span:nth-child(3) {
  transform: translateY(-7px) rotate(-225deg);
}

#mainmenu {
  display: flex;
  flex-direction: column;
  transition: transform 700ms ease;
}
@media screen and (min-width: 320px) {
  #mainmenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    padding: 30vw 10%;
    background: #FF98AC;
    transform: translateY(100%);
  }
}
@media screen and (min-width: 600px) {
  #mainmenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    padding: 30vw 10%;
    background: #FF98AC;
    transform: translateY(100%);
  }
}
@media screen and (min-width: 1025px) {
  #mainmenu {
    position: static;
    top: auto;
    left: auto;
    width: 65%;
    height: auto;
    padding: 0;
    background: transparent;
    transform: unset;
  }
}
#mainmenu.__opened {
  -ms-overflow-style: none;
  scrollbar-width: none;
  transform: translateY(0%);
}
@media screen and (min-width: 320px) {
  #mainmenu.__opened {
    overflow-y: scroll;
  }
}
@media screen and (min-width: 600px) {
  #mainmenu.__opened {
    overflow-y: scroll;
  }
}
@media screen and (min-width: 1025px) {
  #mainmenu.__opened {
    overflow-y: hidden;
  }
}
#mainmenu.__opened::-webkit-scrollbar {
  display: none;
}
#mainmenu .menu__top, #mainmenu .menu__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media screen and (min-width: 320px) {
  #mainmenu .menu__top {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  #mainmenu .menu__top {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  #mainmenu .menu__top {
    display: flex;
    padding-bottom: 1rem;
  }
}
#mainmenu .menu__bottom {
  font-weight: 700;
}
@media screen and (min-width: 320px) {
  #mainmenu .menu__bottom {
    flex-direction: column;
  }
}
@media screen and (min-width: 600px) {
  #mainmenu .menu__bottom {
    flex-direction: column;
  }
}
@media screen and (min-width: 1025px) {
  #mainmenu .menu__bottom {
    flex-direction: row;
  }
}
#mainmenu .menu__bottom a::before, #mainmenu .menu__bottom a::after, #mainmenu .menu__bottom .is__not_allowed::before, #mainmenu .menu__bottom .is__not_allowed::after {
  content: "";
  position: absolute;
  background: #FFF;
}
@media screen and (min-width: 320px) {
  #mainmenu .menu__bottom a::before, #mainmenu .menu__bottom a::after, #mainmenu .menu__bottom .is__not_allowed::before, #mainmenu .menu__bottom .is__not_allowed::after {
    display: block;
  }
}
@media screen and (min-width: 600px) {
  #mainmenu .menu__bottom a::before, #mainmenu .menu__bottom a::after, #mainmenu .menu__bottom .is__not_allowed::before, #mainmenu .menu__bottom .is__not_allowed::after {
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  #mainmenu .menu__bottom a::before, #mainmenu .menu__bottom a::after, #mainmenu .menu__bottom .is__not_allowed::before, #mainmenu .menu__bottom .is__not_allowed::after {
    display: none;
  }
}
#mainmenu .menu__bottom a::before, #mainmenu .menu__bottom .is__not_allowed::before {
  border-radius: 50%;
}
@media screen and (min-width: 320px) {
  #mainmenu .menu__bottom a::before, #mainmenu .menu__bottom .is__not_allowed::before {
    width: 3vw;
    height: 3vw;
    top: calc(50% - 1.5vw);
    left: -5vw;
  }
}
@media screen and (min-width: 600px) {
  #mainmenu .menu__bottom a::before, #mainmenu .menu__bottom .is__not_allowed::before {
    width: 2vw;
    height: 2vw;
    top: calc(50% - 1vw);
    left: -4vw;
  }
}
#mainmenu .menu__bottom a::after, #mainmenu .menu__bottom .is__not_allowed::after {
  width: 100%;
  height: 3px;
  bottom: -3px;
  left: 0;
}
@media screen and (min-width: 320px) {
  #mainmenu li {
    margin: 0 0 1.5rem;
  }
}
@media screen and (min-width: 600px) {
  #mainmenu li {
    margin: 0 0 2rem;
  }
}
@media screen and (min-width: 1025px) {
  #mainmenu li {
    margin: 0 0 0 2rem;
  }
}
@media screen and (min-width: 320px) {
  #mainmenu li.is__sp {
    display: block;
  }
}
@media screen and (min-width: 600px) {
  #mainmenu li.is__sp {
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  #mainmenu li.is__sp {
    display: none;
  }
}
@media screen and (min-width: 320px) {
  #mainmenu li.is__pc {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  #mainmenu li.is__pc {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  #mainmenu li.is__pc {
    display: block;
  }
}
#mainmenu li.has__sub a::before, #mainmenu li.has__sub a::after {
  display: none;
}
@media screen and (min-width: 320px) {
  #mainmenu li.is__cv_sp {
    display: block;
  }
}
@media screen and (min-width: 600px) {
  #mainmenu li.is__cv_sp {
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  #mainmenu li.is__cv_sp {
    display: none;
  }
}
#mainmenu li.is__cv_sp a::before, #mainmenu li.is__cv_sp a::after {
  display: none;
}
@media screen and (min-width: 320px) {
  #mainmenu li .is__sub {
    margin: 1.5rem 0 0;
  }
}
@media screen and (min-width: 600px) {
  #mainmenu li .is__sub {
    margin: 2rem 0 0;
  }
}
@media screen and (min-width: 1025px) {
  #mainmenu li .is__sub {
    margin: 0;
  }
}
@media screen and (min-width: 320px) {
  #mainmenu li .is__sub li {
    padding-left: 1.5rem;
  }
}
@media screen and (min-width: 600px) {
  #mainmenu li .is__sub li {
    padding-left: 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  #mainmenu li .is__sub li {
    padding-left: 1.5rem;
  }
}
#mainmenu li .is__sub li a::before, #mainmenu li .is__sub li a::after {
  display: block;
}
#mainmenu a, #mainmenu .is__not_allowed {
  position: relative;
}
@media screen and (min-width: 320px) {
  #mainmenu a, #mainmenu .is__not_allowed {
    color: #FFF;
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 600px) {
  #mainmenu a, #mainmenu .is__not_allowed {
    color: #FFF;
    font-size: 2.4vw;
  }
}
@media screen and (min-width: 1025px) {
  #mainmenu a, #mainmenu .is__not_allowed {
    color: #000000;
    font-size: 1rem;
  }
}
#mainmenu .is__not_allowed {
  opacity: 0.6;
}

.is__btn_yl {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-weight: 700;
}
@media screen and (min-width: 320px) {
  .is__btn_yl {
    padding: 0.5rem 2rem;
    font-size: 3.6vw;
  }
}
@media screen and (min-width: 600px) {
  .is__btn_yl {
    padding: 0.5rem 2rem;
    font-size: 1.5vw;
  }
}
@media screen and (min-width: 1025px) {
  .is__btn_yl {
    padding: 0.5rem 2rem;
    font-size: 1.1vw;
  }
}
.is__btn_yl span {
  position: relative;
  z-index: 1;
}
.is__btn_yl::before, .is__btn_yl::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.is__btn_yl::before {
  background: #F8E33D;
  top: 4px;
  left: 4px;
  width: calc(100% + 5px);
  height: calc(100% + 5px);
  transition: top 400ms ease, left 400ms ease;
}
.is__btn_yl::after {
  border: solid 3px #000000;
  transition: border 300ms ease;
}
.is__btn_yl:hover::before {
  top: 0px;
  left: 0px;
}
.is__btn_yl:hover::after {
  border: solid 5px #000000;
}
.is__btn_yl:hover span {
  text-decoration: underline;
}

@media screen and (min-width: 601px) {
  .has-sub {
    position: relative;
  }
  .has-sub .person {
    cursor: pointer;
    pointer-events: none;
  }
  .has-sub .person::after {
  	display: none;
  }
  .has-sub .sub {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 1em;
    width: 505px;
    height: auto;
    z-index: 3;
    transition: min-height 0.5s;
  }
  .has-sub .sub li {
    margin: 2rem 0 1rem 1rem!important;
    display: inline-block;
    background: #fff;
    padding: 0.2rem 1rem .1rem;
    border-radius: 5px;
    position: relative;
    border: solid 3px #000000;
    width: calc((100% / 3) - 2rem);
    text-align: center;
  }
  .has-sub .sub li.opan_none {
    background: #ccc;
    border-radius: 5px;
  }
  .sub li.opan_none a {
    color: #3f3f3f!important;
  }
  .has-sub .sub li.opan_none span {
    position: absolute;
    font-size: 14px;
    color: #000;
    z-index: 2;
    width: auto;
    padding: 0 0.5rem;
    left: 1%;
    top: -21px;
  }
}



/* ------------------------------
    FOOTER
  ------------------------------ */
#is__banner_cv {
  position: fixed;
  z-index: 10000;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 320px) {
  #is__banner_cv {
    align-items: flex-start;
    width: 100%;
    right: 0;
    bottom: 0;
  }
}
@media screen and (min-width: 600px) {
  #is__banner_cv {
    align-items: flex-start;
    width: 80%;
    right: 10%;
    bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  #is__banner_cv {
    align-items: flex-end;
    width: 15%;
    right: 2vw;
    bottom: 1vw;
  }
}
#is__banner_cv .btn {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
}
@media screen and (min-width: 320px) {
  #is__banner_cv .btn {
    margin-top: -3vw;
  }
}
@media screen and (min-width: 600px) {
  #is__banner_cv .btn {
    margin-top: -3vw;
  }
}
@media screen and (min-width: 1025px) {
  #is__banner_cv .btn {
    margin-top: -3vw;
  }
}
#is__banner_cv .btn.__mtr {
  z-index: 1;
  margin: 0;
}
@media screen and (min-width: 320px) {
  #is__banner_cv .btn.__mtr {
    width: 35%;
    transform: translate(2vw, 6vw);
  }
}
@media screen and (min-width: 600px) {
  #is__banner_cv .btn.__mtr {
    width: 25%;
    transform: translate(-8vw, 2vw);
  }
}
@media screen and (min-width: 1025px) {
  #is__banner_cv .btn.__mtr {
    width: 75%;
    transform: translateX(-1vw);
  }
}
#is__banner_cv a {
  transition: transform 700ms ease;
}
#is__banner_cv a:hover {
  transform: scale(1.15);
}

#is__global_footer {
  background: #ffeaef;
}
@media screen and (min-width: 320px) {
  #is__global_footer {
    padding-bottom: 30%;
  }
}
@media screen and (min-width: 600px) {
  #is__global_footer {
    padding-bottom: 20%;
  }
}
@media screen and (min-width: 1025px) {
  #is__global_footer {
    padding-bottom: 0;
  }
}
#is__global_footer .comp {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: #FFF;
  border-radius: 10px;
  padding: 2rem 3rem;
}
@media screen and (min-width: 320px) {
  #is__global_footer .comp {
    margin: 0 auto 3rem;
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  #is__global_footer .comp {
    margin: 0 auto 3rem;
    width: 70%;
  }
}
@media screen and (min-width: 1025px) {
  #is__global_footer .comp {
    margin: 0 auto 3rem;
    width: 70%;
  }
}
#is__global_footer .comp .top {
  width: 35%;
}
@media screen and (min-width: 320px) {
  #is__global_footer .comp .bottom {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  #is__global_footer .comp .bottom {
    width: 60%;
  }
}
@media screen and (min-width: 1025px) {
  #is__global_footer .comp .bottom {
    width: 60%;
  }
}
#is__global_footer .main .info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 1rem;
}
@media screen and (min-width: 320px) {
  #is__global_footer .main p {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  #is__global_footer .main p {
    width: 48.5%;
  }
}
@media screen and (min-width: 1025px) {
  #is__global_footer .main p {
    width: 48.5%;
  }
}

/* ------------------------------
    HEAD
  ------------------------------ */
.is__head_common {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.is__head_common .mtr {
  font-weight: 700;
}
@media screen and (min-width: 320px) {
  .is__head_common .mtr {
    font-size: 3.8vw;
  }
}
@media screen and (min-width: 600px) {
  .is__head_common .mtr {
    font-size: 2.8vw;
  }
}
@media screen and (min-width: 1025px) {
  .is__head_common .mtr {
    font-size: 1.8vw;
  }
}
.is__head_common .title {
  font-weight: 900;
}
@media screen and (min-width: 320px) {
  .is__head_common .title {
    font-size: 6.8vw;
  }
}
@media screen and (min-width: 600px) {
  .is__head_common .title {
    font-size: 3.8vw;
  }
}
@media screen and (min-width: 1025px) {
  .is__head_common .title {
    font-size: 2.8vw;
  }
}
@media screen and (min-width: 320px) {
  .is__head_common .border {
    width: 25vw;
    padding: 1rem 0;
  }
}
@media screen and (min-width: 600px) {
  .is__head_common .border {
    width: 15vw;
    padding: 1.5rem 0;
  }
}
@media screen and (min-width: 1025px) {
  .is__head_common .border {
    width: 10vw;
    padding: 2rem 0;
  }
}
.is__head_common .border svg {
  display: block;
  width: 100%;
  height: auto;
  fill: #FF98AC;
}

.is__head_black {
  position: relative;
  display: block;
  text-align: center;
  background: #000000;
  color: #FFF;
  font-weight: 700;
  border-radius: 10px;
  padding: 0.85rem;
}
@media screen and (min-width: 320px) {
  .is__head_black {
    font-size: 5.2vw;
    margin: 2rem 0 1rem;
  }
}
@media screen and (min-width: 600px) {
  .is__head_black {
    font-size: 2.6vw;
    margin: 3rem 0 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .is__head_black {
    font-size: 1.8vw;
    margin: 3rem 0 1.5rem;
  }
}
.is__head_black::before, .is__head_black::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%;
  background: #FFF;
}
@media screen and (min-width: 320px) {
  .is__head_black::before, .is__head_black::after {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
  }
}
@media screen and (min-width: 600px) {
  .is__head_black::before, .is__head_black::after {
    width: 1.5vw;
    height: 1.5vw;
    top: calc(50% - 0.75vw);
  }
}
@media screen and (min-width: 1025px) {
  .is__head_black::before, .is__head_black::after {
    width: 1.5vw;
    height: 1.5vw;
    top: calc(50% - 0.75vw);
  }
}
@media screen and (min-width: 320px) {
  .is__head_black::before {
    left: 1rem;
  }
}
@media screen and (min-width: 600px) {
  .is__head_black::before {
    left: 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .is__head_black::before {
    left: 1.5rem;
  }
}
@media screen and (min-width: 320px) {
  .is__head_black::after {
    right: 1rem;
  }
}
@media screen and (min-width: 600px) {
  .is__head_black::after {
    right: 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .is__head_black::after {
    right: 1.5rem;
  }
}

/* ------------------------------
    TOP
  ------------------------------ */
.section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

#top__fv, #top__about {
  background: #ffeaef;
}
#top__fv .inner, #top__about .inner {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 320px) {
  #top__fv .inner, #top__about .inner {
    padding: 30% 2%;
  }
}
@media screen and (min-width: 600px) {
  #top__fv .inner, #top__about .inner {
    padding: 15% 5%;
  }
}
@media screen and (min-width: 1025px) {
  #top__fv .inner, #top__about .inner {
    padding: 10.5% 10% 3%;
  }
}
#top__fv .scroll, #top__about .scroll {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#top__fv .scroll .text, #top__about .scroll .text {
  font-weight: 900;
  letter-spacing: 1.4px;
}
@media screen and (min-width: 320px) {
  #top__fv .scroll .text, #top__about .scroll .text {
    font-size: 3.6vw;
  }
}
@media screen and (min-width: 600px) {
  #top__fv .scroll .text, #top__about .scroll .text {
    font-size: 1.5vw;
  }
}
@media screen and (min-width: 1025px) {
  #top__fv .scroll .text, #top__about .scroll .text {
    font-size: 1.1vw;
  }
}
#top__fv .scroll .icon, #top__about .scroll .icon {
  display: flex;
  justify-content: center;
  text-align: center;
}
#top__fv .scroll .icon svg, #top__about .scroll .icon svg {
  display: block;
  height: auto;
  animation: scrollDown 1200ms ease infinite both;
}
@media screen and (min-width: 320px) {
  #top__fv .scroll .icon svg, #top__about .scroll .icon svg {
    width: 10%;
  }
}
@media screen and (min-width: 600px) {
  #top__fv .scroll .icon svg, #top__about .scroll .icon svg {
    width: 10%;
  }
}
@media screen and (min-width: 1025px) {
  #top__fv .scroll .icon svg, #top__about .scroll .icon svg {
    width: 10%;
  }
}
#top__fv .scroll .icon .cls-1, #top__about .scroll .icon .cls-1 {
  stroke: #000000;
}

#top__about {
  background: #fcf5b1;
}
#top__about .inner {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 320px) {
  #top__about .inner {
    padding: 15% 5%;
  }
}
@media screen and (min-width: 600px) {
  #top__about .inner {
    padding: 10% 5%;
  }
}
@media screen and (min-width: 1025px) {
  #top__about .inner {
    padding: 5% 10%;
  }
}
#top__about .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#top__about .list.is-inview li {
  opacity: 1;
  transform: translateY(0rem) scale(1);
}
#top__about .list li {
  position: relative;
  text-align: center;
  opacity: 0;
  transform: translateY(2rem) scale(0.85);
  transition: opacity 700ms ease 200ms, transform 700ms ease 200ms;
}
#top__about .list li:nth-child(1) {
  transition-delay: 100ms;
}
#top__about .list li:nth-child(2) {
  transition-delay: 200ms;
}
#top__about .list li:nth-child(3) {
  transition-delay: 300ms;
}
@media screen and (min-width: 320px) {
  #top__about .list li {
    width: 100%;
    padding: 0.75rem 0 0.5rem;
    margin-top: 1rem;
  }
}
@media screen and (min-width: 600px) {
  #top__about .list li {
    width: 32%;
    padding: 1.5rem 0;
    margin-top: 0;
  }
}
@media screen and (min-width: 1025px) {
  #top__about .list li {
    width: 32%;
    padding: 1rem 0;
    margin-top: 0;
  }
}
#top__about .list li::before, #top__about .list li::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
#top__about .list li::before {
  width: calc(100% + 3px);
  height: calc(100% + 3px);
  background: #FFF;
  transform: translate(6px, 6px);
}
#top__about .list li::after {
  border: solid 3px #000000;
}
#top__about .list span, #top__about .list p {
  position: relative;
  z-index: 1;
  font-weight: 900;
}
#top__about .list span {
  display: inline-block;
  position: absolute;
  top: -3%;
  left: -1.5%;
  color: #F8E33D;
  line-height: 1;
  -webkit-text-stroke: 2px #000000;
  transform: rotate(-10deg);
  text-shadow: 2px 2px 0 #F8E33D;
}
@media screen and (min-width: 320px) {
  #top__about .list span {
    font-size: 4.2vw;
  }
}
@media screen and (min-width: 600px) {
  #top__about .list span {
    font-size: 2.6vw;
  }
}
@media screen and (min-width: 1025px) {
  #top__about .list span {
    font-size: 1.6vw;
  }
}
#top__about .list p {
  color: #FF98AC;
}
@media screen and (min-width: 320px) {
  #top__about .list p {
    font-size: 5vw;
  }
}
@media screen and (min-width: 600px) {
  #top__about .list p {
    font-size: 2.8vw;
  }
}
@media screen and (min-width: 1025px) {
  #top__about .list p {
    font-size: 2.1vw;
  }
}
@media screen and (min-width: 320px) {
  #top__about .list p br {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  #top__about .list p br {
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  #top__about .list p br {
    display: block;
  }
}

#top__about2.is-inview .is__description {
  opacity: 1;
  transform: translateY(0rem);
}
#top__about2 .inner {
  position: relative;
  z-index: 1;
}
#top__about2 .is__description {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 700ms ease 500ms, transform 700ms ease 500ms;
}
@media screen and (min-width: 320px) {
  #top__about2 .img {
    padding: 10% 0 0;
  }
}
@media screen and (min-width: 600px) {
  #top__about2 .img {
    padding: 3% 10% 0;
  }
}
@media screen and (min-width: 1025px) {
  #top__about2 .img {
    padding: 3% 10% 0;
  }
}

#top__menu {
  background: #ffeaef;
}
@media screen and (min-width: 320px) {
  #top__menu.__child {
    padding-top: 20%;
  }
}
@media screen and (min-width: 600px) {
  #top__menu.__child {
    padding-top: 25%;
  }
}
@media screen and (min-width: 1025px) {
  #top__menu.__child {
    padding-top: 5%;
  }
}
#top__menu.__child .attention {
  text-align: left;
}
#top__menu.__child .sectionblock {
  text-align: center;
  margin: 3rem 0;
}
#top__menu.__child .schedule {
  position: relative;
  font-weight: 700;
  color: #FFF;
  padding: 2rem 0;
  margin: -1rem auto 1rem;
}
@media screen and (min-width: 320px) {
  #top__menu.__child .schedule {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  #top__menu.__child .schedule {
    width: 70%;
  }
}
@media screen and (min-width: 1025px) {
  #top__menu.__child .schedule {
    width: 70%;
  }
}
#top__menu.__child .schedule::before, #top__menu.__child .schedule::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
#top__menu.__child .schedule::before {
  background: #FF98AC;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  top: 6px;
  left: 6px;
}
#top__menu.__child .schedule::after {
  top: 0;
  left: 0;
  border: solid 3px #000000;
}
#top__menu.__child .schedule .text {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  list-style: 1;
}
@media screen and (min-width: 320px) {
  #top__menu.__child .schedule .text {
    font-size: 10.8vw;
  }
}
@media screen and (min-width: 600px) {
  #top__menu.__child .schedule .text {
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 1025px) {
  #top__menu.__child .schedule .text {
    font-size: 2.8vw;
  }
}
#top__menu.__child .schedule .text span:nth-child(2) {
  font-size: 65%;
  margin: 0 4px;
}
#top__menu.__child .schedule .text span:nth-child(3) {
  font-size: 60%;
}
#top__menu.__child .flow {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#top__menu.__child .flow::after {
  content: "";
  display: block;
  position: absolute;
  width: 12.5%;
  height: 100%;
  top: 0;
  left: 45%;
  background: url("../images/is__flow_arrow.svg") center center/contain no-repeat;
}
@media screen and (min-width: 320px) {
  #top__menu.__child .flow::after {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  #top__menu.__child .flow::after {
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  #top__menu.__child .flow::after {
    display: block;
  }
}
@media screen and (min-width: 320px) {
  #top__menu.__child .flow .block {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  #top__menu.__child .flow .block {
    width: 40%;
  }
}
@media screen and (min-width: 1025px) {
  #top__menu.__child .flow .block {
    width: 40%;
  }
}
#top__menu.__child .flow li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
  padding: 1rem 0;
}
@media screen and (min-width: 320px) {
  #top__menu.__child .flow li {
    font-size: 4.6vw;
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 600px) {
  #top__menu.__child .flow li {
    font-size: 2.4vw;
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 1025px) {
  #top__menu.__child .flow li {
    font-size: 1.6vw;
    margin-bottom: 3rem;
  }
}
#top__menu.__child .flow li::before, #top__menu.__child .flow li::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
#top__menu.__child .flow li::before {
  top: 6px;
  left: 6px;
  background: #FFF;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}
#top__menu.__child .flow li::after {
  border: solid 3px #000000;
}
#top__menu.__child .flow li:last-child .text::after {
  display: none;
}
#top__menu.__child .flow .text {
  position: relative;
  z-index: 1;
}
#top__menu.__child .flow .text::after {
  content: "";
  display: block;
  position: absolute;
  width: 1.5rem;
  height: calc(3rem - 12px);
  background: #FF98AC;
  left: calc(50% - 0.75rem);
  bottom: -4rem;
}
#top__menu.__child .people {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (min-width: 320px) {
  #top__menu.__child .people {
    padding: 0;
  }
}
@media screen and (min-width: 600px) {
  #top__menu.__child .people {
    padding: 0 3rem;
  }
}
@media screen and (min-width: 1025px) {
  #top__menu.__child .people {
    padding: 0 3rem;
  }
}
@media screen and (min-width: 320px) {
  #top__menu.__child .people .item {
    width: 100%;
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 600px) {
  #top__menu.__child .people .item {
    width: 47.5%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  #top__menu.__child .people .item {
    width: 47.5%;
    margin-bottom: 0;
  }
}
#top__menu.__child .people .img {
  padding: 0 2rem;
}
#top__menu.__child .people .name {
  padding: 1rem 0;
  font-weight: 700;
}
@media screen and (min-width: 320px) {
  #top__menu.__child .people .name {
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 600px) {
  #top__menu.__child .people .name {
    font-size: 2.4vw;
  }
}
@media screen and (min-width: 1025px) {
  #top__menu.__child .people .name {
    font-size: 1.8vw;
  }
}
#top__menu.__child .people .name small {
  font-size: 65%;
}
#top__menu.__child .people .is__description {
  text-align: left;
}
#top__menu .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#top__menu .list.is-inview .item {
  opacity: 1;
  transform: scale(1);
}
#top__menu .list .item {
  position: relative;
  border-radius: 20px;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 700ms ease, transform 700ms ease;
}
@media screen and (min-width: 320px) {
  #top__menu .list .item {
    width: 100%;
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 600px) {
  #top__menu .list .item {
    width: 48.5%;
    margin-bottom: 3%;
  }
}
@media screen and (min-width: 1025px) {
  #top__menu .list .item {
    width: 48.5%;
    margin-bottom: 3%;
  }
}
#top__menu .list .item.__large {
  width: 100%;
}
#top__menu .list .item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: solid 3px #000000;
  border-radius: 20px;
  box-sizing: border-box;
}
#top__menu .list .item:nth-child(1) {
  transition-delay: 200ms;
}
#top__menu .list .item:nth-child(2) {
  transition-delay: 300ms;
}
#top__menu .list .item:nth-child(3) {
  transition-delay: 400ms;
}
#top__menu .list .item:nth-child(4) {
  transition-delay: 500ms;
}
#top__menu .list .item:nth-child(5) {
  transition-delay: 600ms;
}
#top__menu .list .img {
  border-radius: 20px;
  overflow: hidden;
}
#top__menu .list .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FFF;
  font-weight: 900;
  background: rgba(0, 0, 0, 0.4);
}
#top__menu .list .layer::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#888 20%, transparent 20%), radial-gradient(#888 20%, transparent 20%);
  background-size: 6px 6px;
  background-position: 0 0, 3px 3px;
  border-radius: 20px;
}
#top__menu .list .layer .text {
  position: relative;
  z-index: 1;
  text-shadow: 3.5px 3.5px 0px #555;
}
@media screen and (min-width: 320px) {
  #top__menu .list .layer .text {
    font-size: 6.2vw;
  }
}
@media screen and (min-width: 600px) {
  #top__menu .list .layer .text {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 1025px) {
  #top__menu .list .layer .text {
    font-size: 2.2vw;
  }
}
#top__menu .list .layer .text div:nth-child(2) {
  font-size: 70%;
}
#top__menu .list .info {
  bottom: 0;
  background: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px 10px 0 0;
}
@media screen and (min-width: 320px) {
  #top__menu .list .info {
    position: relative;
    left: auto;
    width: 100%;
    padding: 1.5rem 1.5rem 2rem;
  }
}
@media screen and (min-width: 600px) {
  #top__menu .list .info {
    position: absolute;
    left: 3%;
    width: 48.5%;
    padding: 2rem 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  #top__menu .list .info {
    position: absolute;
    left: 3%;
    width: 48.5%;
    padding: 2rem 1.5rem;
  }
}
#top__menu .list .time {
  position: absolute;
  z-index: 1;
  left: -5%;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 900;
}
@media screen and (min-width: 320px) {
  #top__menu .list .time {
    width: 25vw;
    height: 25vw;
    top: -14vw;
  }
}
@media screen and (min-width: 600px) {
  #top__menu .list .time {
    width: 8vw;
    height: 8vw;
    top: -4vw;
  }
}
@media screen and (min-width: 1025px) {
  #top__menu .list .time {
    width: 8vw;
    height: 8vw;
    top: -5.6vw;
  }
}
#top__menu .list .time::before, #top__menu .list .time::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
#top__menu .list .time::before {
  background: #F8E33D;
  transform: translate(6px, 6px);
}
#top__menu .list .time::after {
  border: solid 3px #000000;
}
#top__menu .list .time .top, #top__menu .list .time .bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  text-align: center;
  line-height: 1;
}
#top__menu .list .time .top {
  align-items: flex-start;
  margin-bottom: 3px;
}
@media screen and (min-width: 320px) {
  #top__menu .list .time .top {
    font-size: 8.8vw;
  }
}
@media screen and (min-width: 600px) {
  #top__menu .list .time .top {
    font-size: 2.4vw;
  }
}
@media screen and (min-width: 1025px) {
  #top__menu .list .time .top {
    font-size: 2.4vw;
  }
}
#top__menu .list .time .top span {
  font-size: 70%;
}
@media screen and (min-width: 320px) {
  #top__menu .list .time .bottom {
    font-size: 5.2vw;
  }
}
@media screen and (min-width: 600px) {
  #top__menu .list .time .bottom {
    font-size: 1.6vw;
  }
}
@media screen and (min-width: 1025px) {
  #top__menu .list .time .bottom {
    font-size: 1.6vw;
  }
}
#top__menu .list .head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#top__menu .list .head .sub {
  font-weight: 700;
}
@media screen and (min-width: 320px) {
  #top__menu .list .head .sub {
    font-size: 4.2vw;
  }
}
@media screen and (min-width: 600px) {
  #top__menu .list .head .sub {
    font-size: 2.2vw;
  }
}
@media screen and (min-width: 1025px) {
  #top__menu .list .head .sub {
    font-size: 1.2vw;
  }
}
#top__menu .list .head .title {
  font-weight: 900;
  color: #FF98AC;
}
@media screen and (min-width: 320px) {
  #top__menu .list .head .title {
    font-size: 15.4vw;
  }
}
@media screen and (min-width: 600px) {
  #top__menu .list .head .title {
    font-size: 5.4vw;
  }
}
@media screen and (min-width: 1025px) {
  #top__menu .list .head .title {
    font-size: 3.4vw;
  }
}
#top__menu .list .head .title span {
  font-size: 65%;
}
#top__menu .list .is__btn_yl {
  margin: 0.75rem 0 1.5rem;
}
#top__menu .list .is__text_atten {
  position: relative;
  font-weight: 700;
}
@media screen and (min-width: 320px) {
  #top__menu .list .is__text_atten {
    font-size: 4.4vw;
  }
}
@media screen and (min-width: 600px) {
  #top__menu .list .is__text_atten {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  #top__menu .list .is__text_atten {
    font-size: 1.4vw;
  }
}
#top__menu .list .is__text_atten::before {
  content: "";
  display: block;
  position: absolute;
  width: 110%;
  height: 45%;
  background: #F8E33D;
  bottom: -5%;
  left: -5%;
}
#top__menu .list .is__text_atten span {
  position: relative;
  z-index: 1;
  display: inline-block;
}
#top__menu .attention {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.is__strongtext {
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px #000000;
  text-shadow: 3px 3px 0 #F8E33D;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 320px) {
  .is__strongtext {
    font-size: 6.8vw;
  }
}
@media screen and (min-width: 600px) {
  .is__strongtext {
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 1025px) {
  .is__strongtext {
    font-size: 3.8vw;
  }
}

#top__cond, #top__price {
  background: #fcf5b1;
}
#top__cond .mtrimg, #top__price .mtrimg {
  position: absolute;
}
@media screen and (min-width: 320px) {
  #top__cond .mtrimg, #top__price .mtrimg {
    top: 4%;
  }
}
@media screen and (min-width: 600px) {
  #top__cond .mtrimg, #top__price .mtrimg {
    top: 20%;
  }
}
@media screen and (min-width: 1025px) {
  #top__cond .mtrimg, #top__price .mtrimg {
    top: 20%;
  }
}
#top__cond .mtrimg svg, #top__price .mtrimg svg {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 320px) {
  #top__cond .mtrimg:nth-child(1), #top__price .mtrimg:nth-child(1) {
    width: 21vw;
    left: 3%;
  }
}
@media screen and (min-width: 600px) {
  #top__cond .mtrimg:nth-child(1), #top__price .mtrimg:nth-child(1) {
    width: 21vw;
    left: 3%;
  }
}
@media screen and (min-width: 1025px) {
  #top__cond .mtrimg:nth-child(1), #top__price .mtrimg:nth-child(1) {
    width: 21vw;
    left: 3%;
  }
}
@media screen and (min-width: 320px) {
  #top__cond .mtrimg:nth-child(2), #top__price .mtrimg:nth-child(2) {
    width: 18vw;
    right: 5%;
  }
}
@media screen and (min-width: 600px) {
  #top__cond .mtrimg:nth-child(2), #top__price .mtrimg:nth-child(2) {
    width: 18vw;
    right: 5%;
  }
}
@media screen and (min-width: 1025px) {
  #top__cond .mtrimg:nth-child(2), #top__price .mtrimg:nth-child(2) {
    width: 18vw;
    right: 5%;
  }
}
#top__cond .text, #top__price .text {
  text-align: center;
}

.is__define_block {
  margin-bottom: 2rem;
}
.is__define_block dt, .is__define_block .title {
  position: relative;
  display: inline-block;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media screen and (min-width: 320px) {
  .is__define_block dt, .is__define_block .title {
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 600px) {
  .is__define_block dt, .is__define_block .title {
    font-size: 2.8vw;
  }
}
@media screen and (min-width: 1025px) {
  .is__define_block dt, .is__define_block .title {
    font-size: 1.8vw;
  }
}
.is__define_block dt::before, .is__define_block .title::before {
  content: "";
  display: block;
  position: absolute;
  width: 110%;
  height: 45%;
  background: #FF98AC;
  bottom: -5%;
  left: -5%;
}
.is__define_block dt span, .is__define_block .title span {
  position: relative;
  z-index: 1;
  display: inline-block;
}
@media screen and (min-width: 320px) {
  .is__define_block dt.__sub, .is__define_block .title.__sub {
    font-size: 5.6vw;
  }
}
@media screen and (min-width: 600px) {
  .is__define_block dt.__sub, .is__define_block .title.__sub {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 1025px) {
  .is__define_block dt.__sub, .is__define_block .title.__sub {
    font-size: 2.2vw;
  }
}
.is__define_block dt.__sub::before, .is__define_block .title.__sub::before {
  background: #F8E33D;
}
@media screen and (min-width: 320px) {
  .is__define_block dd {
    font-size: 3.6vw;
  }
}
@media screen and (min-width: 600px) {
  .is__define_block dd {
    font-size: 1.4vw;
  }
}
@media screen and (min-width: 1025px) {
  .is__define_block dd {
    font-size: 1.1vw;
  }
}

#top__price {
  background: #ffeaef;
}
#top__price .text .is__description {
  padding: 1.5rem 0;
}
#top__price .mtrimg {
  position: absolute;
}
@media screen and (min-width: 320px) {
  #top__price .mtrimg {
    top: 2%;
  }
}
@media screen and (min-width: 600px) {
  #top__price .mtrimg {
    top: 17%;
  }
}
@media screen and (min-width: 1025px) {
  #top__price .mtrimg {
    top: 17%;
  }
}
#top__price .mtrimg svg {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 320px) {
  #top__price .mtrimg:nth-child(1) {
    left: -4%;
    width: 26.5vw;
  }
}
@media screen and (min-width: 600px) {
  #top__price .mtrimg:nth-child(1) {
    left: 8%;
    width: 15.5vw;
  }
}
@media screen and (min-width: 1025px) {
  #top__price .mtrimg:nth-child(1) {
    left: 8%;
    width: 15.5vw;
  }
}
@media screen and (min-width: 320px) {
  #top__price .mtrimg:nth-child(2) {
    right: -4%;
    width: 30.5vw;
  }
}
@media screen and (min-width: 600px) {
  #top__price .mtrimg:nth-child(2) {
    right: 8%;
    width: 17.5vw;
  }
}
@media screen and (min-width: 1025px) {
  #top__price .mtrimg:nth-child(2) {
    right: 8%;
    width: 17.5vw;
  }
}
#top__price .banner {
  position: relative;
}
@media screen and (min-width: 320px) {
  #top__price .banner {
    padding: 1rem 0;
  }
}
@media screen and (min-width: 600px) {
  #top__price .banner {
    padding: 1.5rem 0;
  }
}
@media screen and (min-width: 1025px) {
  #top__price .banner {
    padding: 1.5rem 0;
  }
}
#top__price .banner::before, #top__price .banner::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
#top__price .banner::before {
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background: #FF98AC;
  transform: translate(8px, 8px);
}
#top__price .banner::after {
  border: solid 3px #000000;
}
#top__price .banner .item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#top__price .banner .item:nth-child(1) {
  color: #FFF;
}
#top__price .banner .item::after {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 80%;
  background: #000000;
  top: 10%;
  left: calc(50% - 1px);
}
#top__price .banner dd, #top__price .banner dt {
  width: 48.5%;
  font-weight: 700;
}
@media screen and (min-width: 320px) {
  #top__price .banner dd, #top__price .banner dt {
    font-size: 4.4vw;
  }
}
@media screen and (min-width: 600px) {
  #top__price .banner dd, #top__price .banner dt {
    font-size: 3.4vw;
  }
}
@media screen and (min-width: 1025px) {
  #top__price .banner dd, #top__price .banner dt {
    font-size: 2.4vw;
  }
}
#top__price .banner dd {
  text-align: right;
}
#top__price .banner dt {
  text-align: left;
}
#top__price .banner dt span {
  font-size: 130%;
}
#top__price .attenbox {
  background: #FFF;
  border-radius: 10px;
}
@media screen and (min-width: 320px) {
  #top__price .attenbox {
    padding: 2rem;
  }
}
@media screen and (min-width: 600px) {
  #top__price .attenbox {
    padding: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  #top__price .attenbox {
    padding: 2rem;
  }
}
#top__price .attenbox .is__define_block {
  text-align: center;
}
#top__price .attenbox h4 {
  font-weight: 400;
  text-align: center;
}

#top__process {
  background: #fcf5b1;
}
#top__process .is__strongtext {
  text-align: center;
}
@media screen and (min-width: 320px) {
  #top__process .catch {
    margin: -15.5% 10% 0;
  }
}
@media screen and (min-width: 600px) {
  #top__process .catch {
    margin: -13.5% 10% 0;
  }
}
@media screen and (min-width: 1025px) {
  #top__process .catch {
    margin: -10.5% 10% 0;
  }
}
.process .item, .process .iteminner {
  position: relative;
}
.process .item {
  margin-bottom: 3rem;
}
.process .item::before, .process .item::after {
  content: "";
  display: block;
  position: absolute;
}
.process .item::before {
  top: 0;
  left: 0;
  width: calc(100% + 0.5rem);
  height: calc(100% + 0.5rem);
  border-radius: 1rem;
  border: solid 3px #000000;
  background: #C0C0C0;
}
.process .item::after {
  width: 2rem;
  height: 3rem;
  background: #FF98AC;
  bottom: calc(-3.5rem - 6px);
  left: calc(50% - 1rem);
}
.process .item:last-child::after {
  display: none;
}
.process .iteminner {
  z-index: 1;
  background: #FFF;
  border: solid 3px #000000;
  border-radius: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 320px) {
  .process .iteminner {
    padding: 1.5rem;
  }
}
@media screen and (min-width: 600px) {
  .process .iteminner {
    padding: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .process .iteminner {
    padding: 3rem;
  }
}
@media screen and (min-width: 320px) {
  .process .iteminner .top {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  .process .iteminner .top {
    width: 70%;
  }
}
@media screen and (min-width: 1025px) {
  .process .iteminner .top {
    width: 70%;
  }
}
.process .iteminner .top .img {
  width: 100%;
  text-align: center;
}
.process .iteminner .top .img img {
  display: block;
  margin: 0 auto 1rem;
}
@media screen and (min-width: 320px) {
  .process .iteminner .top .img img {
    width: 50%;
  }
}
@media screen and (min-width: 600px) {
  .process .iteminner .top .img img {
    width: 45%;
  }
}
@media screen and (min-width: 1025px) {
  .process .iteminner .top .img img {
    width: 40%;
  }
}
@media screen and (min-width: 320px) {
  .process .iteminner .bottom {
    width: 0%;
  }
}
@media screen and (min-width: 600px) {
  .process .iteminner .bottom {
    width: 25%;
  }
}
@media screen and (min-width: 1025px) {
  .process .iteminner .bottom {
    width: 25%;
  }
}
.process .title {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.process .title .num {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1;
  border-radius: 50%;
  background: #FF98AC;
  font-weight: 700;
  font-style: oblique;
}
@media screen and (min-width: 320px) {
  .process .title .num {
    width: 10vw;
    height: 10vw;
    margin-right: 1rem;
    font-size: 3.8vw;
  }
}
@media screen and (min-width: 600px) {
  .process .title .num {
    width: 6vw;
    height: 6vw;
    margin-right: 1.5rem;
    font-size: 2.8vw;
  }
}
@media screen and (min-width: 1025px) {
  .process .title .num {
    width: 4vw;
    height: 4vw;
    margin-right: 1.5rem;
    font-size: 1.8vw;
  }
}
.process .title .text {
  font-weight: 900;
}
@media screen and (min-width: 320px) {
  .process .title .text {
    font-size: 4.4vw;
  }
}
@media screen and (min-width: 600px) {
  .process .title .text {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 1025px) {
  .process .title .text {
    font-size: 2.2vw;
  }
}
.process .btn {
  margin-bottom: 1.5rem;
}

#tour__items {
  background: #FFF;
  text-align: center;
}
#tour__items .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 320px) {
  #tour__items .items {
    margin-top: -15%;
  }
}
@media screen and (min-width: 600px) {
  #tour__items .items {
    margin-top: -15%;
  }
}
@media screen and (min-width: 1025px) {
  #tour__items .items {
    margin-top: -15%;
  }
}
#tour__items .items.__single {
  justify-content: center;
}
@media screen and (min-width: 320px) {
  #tour__items .items .item {
    width: 100%;
    margin-bottom: 10%;
  }
}
@media screen and (min-width: 600px) {
  #tour__items .items .item {
    width: 45%;
    margin-bottom: 5%;
  }
}
@media screen and (min-width: 1025px) {
  #tour__items .items .item {
    width: 45%;
    margin-bottom: 5%;
  }
}
#tour__items .items .title {
  position: relative;
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
  padding: 1.5rem 0;
}
@media screen and (min-width: 320px) {
  #tour__items .items .title {
    font-size: 5.2vw;
  }
}
@media screen and (min-width: 600px) {
  #tour__items .items .title {
    font-size: 2.6vw;
  }
}
@media screen and (min-width: 1025px) {
  #tour__items .items .title {
    font-size: 1.6vw;
  }
}
#tour__items .items .title::before, #tour__items .items .title::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
#tour__items .items .title::before {
  top: 6px;
  left: 6px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  background: #F8E33D;
}
#tour__items .items .title::after {
  border: solid 3px #000000;
}
#tour__items .items .name {
  position: relative;
  z-index: 1;
}
#tour__items .items .name small {
  font-size: 65%;
}
#tour__items .items .img {
  padding: 1.5rem;
}

.__nomargin {
  margin: 0 !important;
}/*# sourceMappingURL=style.css.map */




.archive .archive_video {
  text-align: center;
  margin-top: 3rem;
}
.archive .archive_text h3 {
  font-size: 20px;
  display: inline-block;
  position: relative;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.archive .archive_text h3 span {
  position: relative;
    z-index: 1;
    display: inline-block;
}
.archive .archive_text h3::before {
  content: "";
    display: block;
    position: absolute;
    width: 110%;
    height: 45%;
    background: #FF98AC;
    bottom: -5%;
    left: -5%;
}
@media screen and (min-width: 600px) {
  .archive .archive_video {
    margin-top: 8rem;
  }
}
