@charset "UTF-8";
:root {
  --color-w: #ffffff;
  --color-main: #009E8A;
  --color-main-bg: #bdeaef;
  --color-main-bg2: #f4fafc;
  --color-moji: #155b2a;
  --color-bg: #E4F4EE;
  --color-bg02: #F8F6E1;
  --color-bg03: #FBFFF0;
  --color-pink: #EE8AAA;
  --color-green: #009E8A;
  --color-gurade-moji: linear-gradient(90deg,rgba(238, 138, 170, 1) 0%, rgba(176, 205, 111, 1) 52%, rgba(0, 158, 138, 1) 100%);
  --color-gurade-bg: llinear-gradient(90deg,rgba(238, 138, 170, 1) 0%, rgba(176, 205, 111, 1) 28%, rgba(107, 166, 130, 1) 73%, rgba(0, 158, 138, 1) 100%);
  --color-0: #000000;
  --color-1: #111111;
  --color-2: #202020;
  --color-3: #545454;
  --color-4: #7c7c7c;
  --color-5: #a0a0a0;
  --color-6: #c4c4c4;
  --color-7: #d8d8d8;
  --color-8: #e5e5e5;
  --color-9: #f4f4f4;
  --color-10: #ffffff;
  --color-info: #eceff3;
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);
  --font-main: "Montserrat", "Zen Kaku Gothic New", sans-serif;
}

::-moz-selection {
  background: #f4fafc;
}

::selection {
  background: #f4fafc;
}

.moji_gurade {
  background: linear-gradient(90deg, rgb(238, 138, 170) 0%, rgb(176, 205, 111) 52%, rgb(0, 158, 138) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ==========================================================================

	common style

========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

img, picture {
  width: 100%;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, input, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 62.5%;
  font-family: var(--font-main);
  color: var(--color-moji);
}

body {
  font-size: 1.2rem;
  position: relative;
}

body.overflow {
  overflow: hidden;
}

main {
  position: relative;
  overflow: hidden;
}

input:-internal-autofill-selected {
  background-color: #fbfbfd !important;
}

a {
  color: var(--color-moji);
  text-decoration: none;
}

a:hover {
  transition: all 1s;
}

video {
  max-width: 100%;
  height: auto;
}

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

nav ul {
  list-style: none;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input[type=submit] {
  cursor: pointer;
  border: none;
}

textarea {
  resize: vertical;
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

li {
  list-style: none;
}

address {
  font-style: normal;
}

select, input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
.block_link {
  position: relative;
}

.block_link a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  background: transparent url("../img/common/link_bg.png") 0 0 repeat;
  z-index: 1000;
}

/* ========================================
 * flex box 
  ========================================*/
.flex-center {
  display: flex;
  align-items: center;
}

.flex-start {
  display: flex;
}

.flex-end {
  display: flex;
  align-items: flex-end;
}

.flex-center-pc {
  display: flex;
  align-items: center;
}

.flex-start-pc {
  display: flex;
}

.flex-end-pc {
  display: flex;
  align-items: flex-end;
}

.flex-center-sp {
  display: block;
}

.flex-start-sp {
  display: block;
}

.flex-end-sp {
  display: block;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-row-reverse-pc {
  flex-direction: row-reverse;
}

.flex-space {
  justify-content: space-between;
}

.flex-space-end {
  justify-content: flex-end;
}

.flex-space-start {
  justify-content: flex-start;
}

.flex-space-center {
  justify-content: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

@media only screen and (max-width: 768px) {
  .flex-center-pc {
    display: block;
  }
  .flex-start-pc {
    display: block;
  }
  .flex-end-pc {
    display: block;
  }
  .flex-center-sp {
    display: flex;
    align-items: center;
  }
  .flex-start-sp {
    display: flex;
    align-items: flex-start;
  }
  .flex-end-sp {
    display: flex;
    align-items: flex-end;
  }
  .flex-row-reverse-pc {
    flex-direction: row;
  }
}
/* ========================================
 *  天地中央
  ========================================*/
.center_layout {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.top_center {
  top: 50%;
  transform: translate(0%, -50%);
}

.left_center {
  left: 50%;
  transform: translate(-50%, 0%);
}

/* ========================================
 *  animation
  ========================================*/
.hover-photo {
  vertical-align: top;
  transition: transform 1s cubic-bezier(0.5, 1, 0.89, 1);
  overflow: hidden;
}
.hover-photo .img img {
  transform: scale(1);
  transition: transform 1s cubic-bezier(0.5, 1, 0.89, 1);
  vertical-align: bottom;
}
@media only screen and (min-width: 769px) {
  .hover-photo:hover .img img {
    transform: scale(1.08) !important;
    transition: transform 1s cubic-bezier(0.5, 1, 0.89, 1);
  }
}

.smooth {
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  font-size: 36px;
  font-weight: bold;
  transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
  line-height: 1;
  height: 40px;
  margin-top: 15px;
}

.smooth.is-animated {
  clip-path: inset(0);
}

a {
  text-decoration: none;
  outline: none;
}

a:hover {
  outline: none;
}

.link {
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  color: var(--color-text);
}

.link::after {
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
}

.link::after {
  content: "";
}

.link--metis::after {
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}

@media only screen and (min-width: 769px) {
  .link--metis:hover::after {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
  }
}
.link--metis_active::after {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

@media only screen and (min-width: 769px) {
  .link--metis_active:hover::after {
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
  }
}
.floating_01 {
  animation: floating-y 2.8s ease-in-out infinite alternate-reverse;
}

.floating_02 {
  animation: fuwafuwa 7s infinite ease-in-out 0.8s alternate;
}

.floating_03 {
  animation: horizontal1 3s infinite ease-in-out 0.8s alternate-reverse;
}

.floating_04 {
  animation: horizontal2 3s infinite ease-in-out 0.8s alternate;
}

.floating_05 {
  animation: vertical 3s infinite ease-in-out 0.8s alternate;
}

.floating_bg_01 {
  backface-visibility: hidden;
  animation: floating-bg_01 6.8s ease-in-out infinite alternate-reverse;
}

.floating_bg_02 {
  animation: floating-bg_02 3.3s ease-in-out infinite alternate-reverse;
}

.floating_bg_03 {
  animation: floating-bg_03 3.8s ease-in-out infinite alternate-reverse;
}

@keyframes floating-bg_01 {
  0% {
    transform: translateY(-3%) rotate(5deg);
  }
  50% {
    transform: translateY(3%) rotate(0deg);
  }
  100% {
    transform: translateY(-3%) rotate(5deg);
  }
}
@keyframes floating-bg_02 {
  0% {
    transform: translateX(-3%) translateY(0%);
  }
  100% {
    transform: translateX(3%) translateY(-4%);
  }
}
@keyframes floating-bg_03 {
  0% {
    transform: translateX(-4%) translateY(5%) rotate(4deg);
  }
  100% {
    transform: translateX(2%) translateY(1%) rotate(0deg);
  }
}
@keyframes floating-y {
  0% {
    transform: translateY(-10%) rotate(0deg);
  }
  100% {
    transform: translateY(10%) rotate(-7deg);
  }
}
@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-7deg);
    opacity: 0.7;
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
    opacity: 0.7;
  }
}
@keyframes horizontal1 {
  0% {
    transform: translateY(-10%) rotate(0deg);
  }
  100% {
    transform: translateY(10%) rotate(10deg);
  }
}
@keyframes horizontal2 {
  0% {
    transform: translateX(-10%) rotate(12deg);
  }
  100% {
    transform: translateX(10%) rotate(-1deg);
  }
}
@keyframes vertical {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}
.pa {
  position: absolute;
}

.illust_cursor {
  position: relative;
}

@media only screen and (max-width: 1100px) and (min-width: 769px) {
  .illust_area {
    scale: 0.8;
  }
}
.illust_area .fukidashi {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
}
.illust_area:hover .fukidashi {
  position: absolute;
  opacity: 1;
  visibility: visible;
  transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
}

.cursor-pointer {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 10;
  transform: scale(0);
  height: 30px;
  width: 30px;
  transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
  pointer-events: none;
}

.cursor-pointer.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 1000000;
}

.cursor-none {
  cursor: none;
}

.js-cursor-pointer01 img {
  display: block;
  width: 30px;
}

/* ==========================================================================

	splide

========================================================================== */
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide__track--fade > .splide__list {
  display: block;
}

.splide__track--fade > .splide__list > .splide__slide {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  position: relative;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

/* ==========================================================================

	swiper

========================================================================== */
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

/* ==========================================================================

	animation

========================================================================== */
.fadein {
  opacity: 0;
  transform: translate(0, 15px);
  transition: 0.8s linear;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein_fade {
  transform: translateY(0px) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  filter: blur(10px) brightness(1.2);
}

.fadein_fade.scrollin {
  transform: translate(0, 0);
  transform: translateY(0px) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  filter: blur(0px) brightness(1);
  transition: transform 2s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.01s, opacity 2s ease 0.01s, filter 2s ease 0.01s;
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.delay-1000 {
  transition-delay: 1000ms;
}

.linkanime,
.linkanime::after {
  transition: all 640ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ==========================================================================

	header

========================================================================== */
.header {
  display: flex;
  position: relative;
  width: 100%;
  top: 0px;
  z-index: 10;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  z-index: 199999;
  padding: 20px 4.8vw 18px;
  opacity: 0;
  transform: translate(0, -30px);
}
@media only screen and (max-width: 768px) {
  .header {
    position: relative;
    padding: 0;
    margin: 0;
    width: 100%;
    display: block;
    top: 0px;
  }
}
.header__logo {
  padding: 0;
  width: 110px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .header__logo {
    margin: 10px auto 10px 20px;
    width: 90px;
    z-index: 1000;
  }
}
.header .inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.is-load .header {
  opacity: 1;
  transform: translate(0, 0);
  transition: opacity 1.6s ease 0.1s;
  transition-delay: 0ms;
}

/* ==========================================================================

	footer

========================================================================== */
footer {
  width: 100%;
  position: relative;
  padding: 80px 0 20px;
}
@media only screen and (max-width: 768px) {
  footer {
    padding: 50px 0 0px;
  }
}
footer .waves_box {
  height: 0;
}
footer .waves {
  top: -230px;
  z-index: 100;
}
@media only screen and (max-width: 768px) {
  footer .waves {
    top: -120px;
  }
}
footer .inner {
  margin: 0 auto;
  max-width: 1500px;
  padding: 0 4.8vw 0 4.8vw;
  position: relative;
  z-index: 100;
}
@media only screen and (max-width: 768px) {
  footer .inner {
    padding: 0px 0 30px;
    width: calc(100% - 40px);
    max-width: 600px;
  }
}
footer .pagetop {
  position: absolute;
  bottom: 0;
  right: 30px;
}
footer .pagetop .img {
  width: 38px;
  margin: 0 auto;
}
footer .pagetop .txt {
  text-align: center;
  color: var(--color-main);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
footer .logo {
  width: 120px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  footer .logo {
    padding: 0 0 0 12px;
  }
}
footer .copy {
  width: 100%;
  text-align: center;
  font-size: 10px;
  letter-spacing: 1px;
  margin: 10px 0 0;
  color: var(--color-w);
}
@media only screen and (max-width: 768px) {
  footer .copy {
    margin: 5px 0 0;
    font-size: 0.9rem;
  }
}
footer .footer_txt {
  font-weight: bold;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--color-1);
}
footer .footer_list {
  display: flex;
  justify-content: space-between;
  margin: 0 -6px;
  font-size: 1.4rem;
  margin-bottom: 5rem;
}
footer .footer_list li {
  width: 32.63%;
  transition: 0.2s;
}
@media only screen and (max-width: 768px) and (min-width: 541px) {
  footer .footer_list li {
    width: 49.4%;
    margin-bottom: 22px;
  }
}
@media only screen and (max-width: 540px) {
  footer .footer_list li {
    width: 100%;
    margin-bottom: 12px;
  }
}
footer .footer_list li img {
  transition: 0.2s;
}
footer .footer_list li a {
  transition: 0.2s;
}
footer .footer_list li span {
  display: inline-block;
  margin-left: 0.7rem;
  margin-top: 0rem;
  background-image: url(../img/common/blank_b.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 15px 11px;
  padding-right: 1.4em;
  color: var(--color-1);
  transition: 0.2s;
}
@media only screen and (max-width: 768px) {
  footer .footer_list li span {
    margin-top: -6px;
    font-size: 13px;
    display: table;
  }
}
footer .footer_list li:last-child {
  margin: 10px 0 0;
}
@media only screen and (max-width: 768px) {
  footer .footer_list li:last-child {
    margin: 0;
  }
}
@media only screen and (min-width: 769px) {
  footer .footer_list li a:hover {
    color: var(--color-main);
    transition: 0.2s;
  }
  footer .footer_list li a:hover img {
    opacity: 0.7;
    transition: 0.2s;
  }
  footer .footer_list li a:hover span {
    color: var(--color-main);
    transition: 0.2s;
    background-image: url(../img/common/blank_g.svg);
  }
}
footer .sns {
  font-size: 1.3rem;
  padding-left: 1rem;
  display: flex;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 768px) {
  footer .sns {
    padding-left: 0;
    justify-content: center;
    margin-bottom: 2rem;
  }
}
footer .sns li {
  position: relative;
  color: var(--color-1);
}
footer .sns li:not(:last-child) {
  padding-right: 3rem;
  margin-right: 3rem;
}
@media only screen and (max-width: 768px) {
  footer .sns li:not(:last-child) {
    padding-right: 2rem;
    margin-right: 2rem;
  }
}
footer .sns li:not(:last-child):after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  background-color: #bfbfbf;
  width: 1px;
  height: 2.4rem;
  margin-top: -1.2rem;
}
footer .sns li a {
  transition: 0.2s;
}
@media only screen and (min-width: 769px) {
  footer .sns li a:hover {
    color: var(--color-main);
    transition: 0.2s;
  }
}
footer .sns a:link, footer .sns a:visited {
  font-weight: bold;
  padding-left: 3rem;
  background-image: url(../img/common/sns_x.png);
  background-repeat: no-repeat;
  background-size: 24px auto;
  background-position: left center;
  line-height: 2;
  display: inline-block;
  color: var(--color-1);
}
footer .sns li.yt a:link, footer .sns li.yt a:visited {
  background-image: url(../img/common/sns_yt.png);
}
footer .sns li.fb a:link, footer .sns li.fb a:visited {
  background-image: url(../img/common/sns_fb.png);
}
footer .policylink {
  display: flex;
  font-size: 1.4rem;
  color: var(--color-1);
}
@media only screen and (max-width: 768px) {
  footer .policylink {
    padding-left: 0;
    justify-content: center;
    font-size: 1.2rem;
  }
}
footer .policylink li:not(:last-child) {
  margin-right: 4rem;
}
@media only screen and (max-width: 768px) {
  footer .policylink li:not(:last-child) {
    margin-right: 2rem;
  }
}
footer .policylink li a {
  color: var(--color-1);
  transition: 0.2s;
}
@media only screen and (min-width: 769px) {
  footer .policylink li a:hover {
    color: var(--color-main);
    transition: 0.2s;
  }
}
footer #footerBottom {
  border-top: 1px solid var(--color-4);
  margin: 40px 0 0;
  position: relative;
}
footer #footerBottom dl {
  margin: 0 auto;
  padding: 5rem 0;
}
@media only screen and (max-width: 768px) {
  footer #footerBottom dl {
    padding: 16px 0 0;
  }
}
footer #footerBottom dt {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  footer #footerBottom dt {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 0;
    max-width: 320px;
  }
}
footer #footerBottom dt img {
  width: 168px;
  height: auto;
}
@media only screen and (max-width: 768px) {
  footer #footerBottom dt img {
    width: 120px;
  }
}
footer #footerBottom dt span {
  display: inline-block;
  font-weight: bold;
  position: relative;
  padding-left: 4rem;
  margin-left: 4rem;
  color: var(--color-1);
}
@media only screen and (max-width: 768px) {
  footer #footerBottom dt span {
    font-size: 1.2rem;
    padding-left: 20px;
    margin-left: 20px;
    text-align: center;
    width: calc(100% - 140px);
  }
}
footer #footerBottom dt span::before {
  right: inherit;
  left: 0;
  height: 6.5rem;
  margin-top: -3.25rem;
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  background-color: #bfbfbf;
  width: 1px;
}
footer #footerBottom dd {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-1);
}
@media only screen and (max-width: 768px) {
  footer #footerBottom dd {
    font-size: 1.1rem;
    text-align: center;
    margin: 20px 0 0;
  }
}
footer .logo_20th {
  position: absolute;
  bottom: 5rem;
  right: 0;
  width: 150px;
}
@media only screen and (max-width: 768px) {
  footer .logo_20th {
    position: relative;
    bottom: auto;
    right: auto;
    width: 130px;
    margin: 0 auto 25px;
  }
}

/* ==========================================================================

	index.html

========================================================================== */
section .inner {
  max-width: 1100px;
  width: calc(100% - 17vw);
  margin: 0 auto;
  position: relative;
  z-index: 100;
}
@media only screen and (min-width: 1800px) {
  section .inner {
    max-width: 1100px;
  }
}
@media only screen and (max-width: 1000px) {
  section .inner {
    width: calc(100% - 13vw);
  }
}
@media only screen and (max-width: 768px) {
  section .inner {
    width: calc(100% - 40px);
    max-width: 600px !important;
  }
}
section .txtbox .title {
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1000px) {
  section .txtbox .title {
    font-size: 25px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 768px) {
  section .txtbox .title {
    font-size: 21px;
    line-height: 1.4;
    letter-spacing: 1px;
  }
}
section .txtbox .subtitle {
  font-size: 2.7rem;
  letter-spacing: 1px;
  margin: 0 0 20px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  section .txtbox .subtitle {
    font-size: 2rem;
  }
}
section .txtbox .txt {
  margin: 0px 0 20px;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
}
section .txtbox .txt p {
  margin-bottom: 18px;
}
@media only screen and (max-width: 1000px) {
  section .txtbox .txt {
    margin: 40px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  section .txtbox .txt {
    font-size: 1.2rem;
    line-height: 2.2;
    margin: 30px 0 0;
  }
}
section .txtbox .name_position {
  font-size: 12px;
  color: var(--color-moji);
}
section .txtbox .name {
  font-size: 20px;
  color: var(--color-moji);
}
section .category_title_box {
  position: relative;
}
section .category_title_box:before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-pink);
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -6px;
}
@media only screen and (max-width: 768px) {
  section .category_title_box:before {
    width: 10px;
    height: 10px;
    margin-left: -5px;
  }
}
section .category_title_box .img {
  filter: brightness(1.06);
}
section .category_title {
  font-size: 4rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 2px;
}
@media only screen and (max-width: 768px) {
  section .category_title {
    font-size: 2.7rem;
    text-align: center;
  }
}
section .category_title span {
  font-size: 2rem;
  letter-spacing: 1px;
}
@media only screen and (max-width: 768px) {
  section .category_title span {
    font-size: 1.6rem;
  }
}
section .category_title_sub {
  font-size: 2rem;
  text-align: center;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  section .category_title_sub {
    font-size: 1.8rem;
  }
}

main .waves {
  position: absolute;
}

.waves {
  position: relative;
  width: 100%;
  height: 200px;
  margin-bottom: -7px;
  min-height: 100px;
  max-height: 150px;
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 10s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
@media (max-width: 768px) {
  .waves {
    height: 70px;
    min-height: 40px;
  }
}
.page_20th section [class*=swiper]:focus {
  outline: none;
}
.page_20th section .swiper-container {
  overflow: hidden;
}
.page_20th section .swiper-wrapper {
  position: relative;
}
.page_20th section .slide-media,
.page_20th section .thumb-media {
  position: relative;
  overflow: hidden;
}
.page_20th section .swiper-button-prev, .page_20th section .swiper-button-next {
  display: grid;
  place-content: center;
  width: 6rem;
  height: 6rem;
  cursor: pointer;
  transition: var(--transition);
}
@media only screen and (max-width: 768px) {
  .page_20th section .swiper-button-prev, .page_20th section .swiper-button-next {
    width: 2.4rem;
  }
}
.page_20th section .swiper-button-prev::before, .page_20th section .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
}
.page_20th section .swiper-button-prev::after, .page_20th section .swiper-button-next::after {
  width: 10px;
  height: 10px;
  content: "";
  border: solid var(--color-main);
  border-width: 1px 1px 0 0;
}
@media only screen and (max-width: 768px) {
  .page_20th section .swiper-button-prev::after, .page_20th section .swiper-button-next::after {
    width: 8px;
    height: 8px;
  }
}
.page_20th section .swiper-button-prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}
.page_20th section .swiper-button-next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}
.page_20th section .swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}
.page_20th section .swiper-area {
  position: relative;
}
.page_20th section .swiper-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0 5px;
  justify-content: center;
  text-align: center;
}
.page_20th section .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  vertical-align: top;
  background-color: var(--color-w);
  border: 1.5px solid var(--color-pink);
  margin: 40px 0 0 0;
}
@media only screen and (max-width: 768px) {
  .page_20th section .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 20px 0 0 0;
  }
}
.page_20th section .swiper-pagination-bullet-active {
  background-color: var(--color-pink);
}
.page_20th section .swiper-button-prev, .page_20th section .swiper-button-next {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .page_20th section .swiper-button-prev, .page_20th section .swiper-button-next {
    top: 60px;
  }
}
.page_20th section .swiper-button-prev {
  right: calc(100% - 15px);
}
@media only screen and (max-width: 768px) {
  .page_20th section .swiper-button-prev {
    right: calc(100% - 1px);
  }
}
.page_20th section .swiper-button-next {
  position: absolute;
  left: calc(100% - 15px);
}
@media only screen and (max-width: 768px) {
  .page_20th section .swiper-button-next {
    left: calc(100% - 1px);
  }
}

.hero_top {
  position: relative;
  height: 50vh;
  min-height: 600px;
  background-color: var(--color-bg);
}
@media only screen and (min-width: 1800px) {
  .hero_top {
    height: 60vh;
  }
}
@media only screen and (max-width: 900px) {
  .hero_top {
    max-height: 500px;
    min-height: 500px;
  }
}
@media only screen and (max-width: 768px) {
  .hero_top {
    height: 72vh;
    min-height: 250px;
    max-height: 1000px;
  }
}
.hero_top::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: var(--color-10);
  opacity: 0.2;
  transform: scale(1.1);
  filter: blur(30px) brightness(2);
}
.hero_top .splide-hero {
  width: 300%;
  top: 50%;
  transform: translate(0%, -50%);
  position: relative;
  opacity: 1;
  filter: brightness(1.1);
}
@media only screen and (min-width: 1800px) {
  .hero_top .splide-hero {
    width: 250%;
  }
}
@media only screen and (min-width: 1500px) {
  .hero_top .splide-hero {
    width: 280%;
  }
}
@media only screen and (max-width: 1300px) {
  .hero_top .splide-hero {
    width: 430%;
  }
}
@media only screen and (max-width: 768px) {
  .hero_top .splide-hero {
    width: 1000%;
  }
}
.hero_top .splide__track--fade .splide__slide {
  pointer-events: none;
}
.hero_top .splide__track--fade .splide__slide.is-active {
  pointer-events: auto;
}
.hero_top .splide__slide {
  height: auto;
}
.hero_top .slide-media img {
  transition-delay: 1s;
  transition-timing-function: linear;
  transform: scale(1);
  width: 100%;
  opacity: 0;
  overflow: hidden;
  transform: scale(1.1);
  filter: blur(30px) brightness(2);
}
.hero_top .logo_box {
  position: absolute;
  top: 47%;
  width: 600px;
  max-width: 700px;
  opacity: 0;
  z-index: 10;
  filter: blur(5px) brightness(1.3);
  transition: opacity 2s ease 0.1s;
}
@media only screen and (max-width: 1100px) {
  .hero_top .logo_box {
    width: 500px;
  }
}
@media only screen and (max-width: 768px) {
  .hero_top .logo_box {
    width: 113%;
    max-width: 500px;
    left: 48%;
  }
}
@media only screen and (max-width: 540px) {
  .hero_top .logo_box {
    max-width: 450px;
  }
}
.hero_top .logo_box .splide__arrows {
  display: none;
}
.hero_top .logo_box .base_logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.hero_top .scroll_area {
  position: absolute;
  background-color: transparent;
  z-index: 100;
  bottom: -30px;
  opacity: 0;
  transform: translate(0, 0px);
  transition: opacity 2s ease 0.1s;
  z-index: 100;
  margin-left: -30px;
}
@media only screen and (max-width: 768px) {
  .hero_top .scroll_area {
    margin-left: -25px;
  }
}
.hero_top .scroll_txt {
  font-size: 10px;
  letter-spacing: 2px;
  position: relative;
  margin: 0 0 12px 0px;
  color: var(--color-2);
  font-weight: 500;
  text-align: center;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .hero_top .scroll_txt {
    margin: 0px 0 6px 0px;
    font-size: 0.8rem;
  }
}
.hero_top .scroll_icon {
  width: 100%;
  height: 60px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .hero_top .scroll_icon {
    height: 60px;
  }
}
.hero_top .scroll_icon .line {
  position: absolute;
  top: -60px;
  left: 45%;
  margin-left: 1px;
  display: block;
  width: 1px;
  height: 60px;
  border-radius: 5px;
  background: var(--color-2);
  animation: scrollLine 2s infinite;
}
@media only screen and (max-width: 768px) {
  .hero_top .scroll_icon .line {
    animation: scrollLine_sp 2s infinite;
    top: -80px;
    height: 80px;
  }
}
@keyframes scrollLine {
  0% {
    top: -120px;
  }
  30% {
    top: 0;
  }
  70% {
    top: 0;
  }
  100% {
    top: 120px;
  }
}
@keyframes scrollLine_sp {
  0% {
    top: -80px;
  }
  30% {
    top: 0;
  }
  70% {
    top: 0;
  }
  100% {
    top: 80px;
  }
}

.is-load .hero_top {
  width: 100%;
  position: relative;
}
.is-load .hero_top::after {
  transform: scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 0.7;
  filter: blur(0px) brightness(1);
  transition: opacity 3000ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.is-load .hero_top .slide-media img {
  transform: translateY(0px) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  filter: blur(0px) brightness(1);
  transition: opacity 3000ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.is-load .hero_top .logo_box {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  filter: blur(0px) brightness(1);
  transition: transform 1s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0s, opacity 1s ease 0.5s, filter 1.5s ease 1s;
}
.is-load .hero_top .scroll_area {
  opacity: 1;
  transform: translate(0, 0);
  transition: opacity 1.6s ease 0.1s;
  transition-delay: 2000ms;
}

.hero_info {
  background: var(--color-bg);
  width: 100%;
  padding: 100px 0 120px;
  position: relative;
}
@media only screen and (max-width: 1100px) {
  .hero_info {
    padding: 100px 0 150px;
  }
}
@media only screen and (max-width: 768px) {
  .hero_info {
    padding: 53px 0 78px;
  }
}
.hero_info .inner {
  max-width: 1000px;
}
.hero_info .inner .midorimushi01 {
  right: -15%;
  top: -6%;
  width: 25%;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .hero_info .inner .midorimushi01 {
    right: -26%;
    top: 11%;
    width: 60%;
    opacity: 0.7;
    z-index: -1;
  }
}
.hero_info .inner .midorimushi02 {
  left: -24%;
  bottom: -12%;
  width: 20%;
  z-index: -1;
}
@media only screen and (max-width: 1300px) {
  .hero_info .inner .midorimushi02 {
    left: -16%;
  }
}
@media only screen and (max-width: 768px) {
  .hero_info .inner .midorimushi02 {
    left: -27%;
    bottom: 19%;
    width: 60%;
  }
}
.hero_info .inner .midorimushi_eye {
  width: 18px;
  height: 18px;
  background-color: var(--color-bg03);
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .hero_info .inner .midorimushi_eye {
    display: none;
  }
}
.hero_info .inner .midorimushi_eye_01 {
  position: absolute;
  top: 4%;
  right: 4%;
}
.hero_info .inner .midorimushi_eye_02 {
  position: absolute;
  top: 52%;
  left: -16%;
}
.hero_info .txtbox {
  position: relative;
}
.hero_info .txtbox .title {
  margin: 0 0 50px;
  filter: brightness(1.06);
}
@media only screen and (max-width: 768px) {
  .hero_info .txtbox .title {
    text-align: center;
    margin: 0 0 30px;
  }
}
.hero_info .txtbox .title span {
  font-weight: 500;
  font-size: 37px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .hero_info .txtbox .title span {
    font-size: 33px;
  }
}
.hero_info .txtbox .title span:before {
  content: "";
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  background-color: var(--color-10);
  position: absolute;
  z-index: -1;
  clip-path: inset(0 100% 0 0);
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1) 0.4s;
  transition-property: clip-path;
}
.hero_info .txtbox .title_wrap.scrollin .title span:before {
  clip-path: inset(0);
}
.hero_info .txtbox .txt {
  font-size: 1.6rem;
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  .hero_info .txtbox .txt {
    font-size: 1.4rem;
    margin: 14px 0 0;
    list-style: 1.8;
  }
}
.hero_info .txtbox .subtitle {
  font-size: 2.7rem;
  margin: 40px 0 0;
  filter: brightness(1.06);
}
@media only screen and (max-width: 768px) {
  .hero_info .txtbox .subtitle {
    font-size: 2.4rem;
    margin: -39px 0 0;
  }
}
.hero_info .CEO_image {
  position: absolute;
  width: 28%;
  top: 9%;
  right: 4%;
}
@media only screen and (max-width: 900px) {
  .hero_info .CEO_image {
    right: 2%;
    top: -6%;
  }
}
@media only screen and (max-width: 768px) and (min-width: 541px) {
  .hero_info .CEO_image {
    position: relative;
    width: 50%;
    margin: 20px 0 0 auto;
    top: auto;
    right: auto;
    max-width: 240px;
  }
}
@media only screen and (max-width: 540px) {
  .hero_info .CEO_image {
    position: relative;
    width: 50%;
    margin: 0 0 0 auto;
    top: auto;
    right: auto;
    max-width: 270px;
  }
}
.hero_info .CEO_message_box {
  position: absolute;
  right: 0;
  bottom: -20px;
}
@media only screen and (max-width: 860px) {
  .hero_info .CEO_message_box {
    right: 0;
    bottom: auto;
    position: relative;
    max-width: 360px;
    margin: 10px 0 0 auto;
  }
}
@media only screen and (max-width: 768px) {
  .hero_info .CEO_message_box {
    bottom: auto;
    right: auto;
    position: relative;
    margin: 10px 0 0 auto;
    max-width: 360px;
  }
}
.hero_info .CEO_message_box .left .company {
  font-size: 13px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .hero_info .CEO_message_box .left .company {
    font-size: 11px;
  }
}
.hero_info .CEO_message_box .left .posi {
  font-size: 13px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .hero_info .CEO_message_box .left .posi {
    font-size: 10px;
  }
}
.hero_info .CEO_message_box .left .name {
  font-size: 16px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .hero_info .CEO_message_box .left .name {
    font-size: 14px;
  }
}
.hero_info .CEO_message_box .message {
  width: 43%;
  margin: 0 0 0 14px;
}
@media only screen and (max-width: 768px) {
  .hero_info .CEO_message_box .message {
    width: 40%;
  }
}
.hero_info .splide-staff {
  width: 140%;
  position: relative;
  margin: 100px auto 0;
}
@media only screen and (min-width: 1700px) {
  .hero_info .splide-staff {
    width: 100%;
  }
}
@media only screen and (max-width: 1100px) {
  .hero_info .splide-staff {
    width: 180%;
    margin: 60px auto 0;
  }
}
@media only screen and (max-width: 768px) and (min-width: 541px) {
  .hero_info .splide-staff {
    width: 260%;
    margin: 30px auto 0;
  }
}
@media only screen and (max-width: 540px) {
  .hero_info .splide-staff {
    width: 300%;
    margin: 30px auto 0;
  }
}
.hero_info .splide__track--fade .splide__slide {
  pointer-events: none;
}
.hero_info .splide__track--fade .splide__slide.is-active {
  pointer-events: auto;
}
.hero_info .splide__slide {
  height: auto;
}
.hero_info .slide-media img {
  transition-delay: 1s;
  transition-timing-function: linear;
  transform: scale(1);
  width: 100%;
}
.hero_info .illust_01 {
  width: 60px;
  bottom: 14%;
  right: -1%;
}
@media only screen and (max-width: 768px) {
  .hero_info .illust_01 {
    width: 50px;
    bottom: 15%;
    right: 61%;
  }
}
.hero_info .illust_01 .comment_fix {
  width: 100px;
  position: absolute;
  left: -94px;
  bottom: 26px;
}
@media only screen and (max-width: 768px) {
  .hero_info .illust_01 .comment_fix {
    width: 80px;
    left: -69px;
    bottom: 26px;
  }
}
.hero_info .illust_01 .fukidashi {
  min-width: 250px;
  top: -403%;
  left: -130%;
}
@media only screen and (max-width: 768px) {
  .hero_info .illust_01 .fukidashi {
    min-width: 220px;
  }
}

.special {
  padding: 30px 0 300px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .special {
    padding: 30px 0 170px;
  }
}
.special .category_title_box {
  width: 20%;
  margin: 0 auto;
}
@media only screen and (max-width: 1100px) {
  .special .category_title_box {
    width: 25%;
    max-width: 220px;
  }
}
@media only screen and (max-width: 768px) {
  .special .category_title_box {
    width: 49%;
    max-width: 200px;
  }
}
.special .waves {
  top: -149px;
  z-index: 100;
}
@media only screen and (max-width: 768px) {
  .special .waves {
    top: -70px;
  }
}
.special:before {
  background: var(--color-w);
  content: "";
  height: 21%;
  top: -1px;
  width: 100%;
  position: absolute;
}
.special .bg_logo {
  width: 102%;
  top: 0;
  left: -1%;
  margin: 0 auto 0;
}
@media only screen and (max-width: 768px) {
  .special .bg_logo {
    width: 104%;
    top: 0;
    left: -1%;
    margin: 0 auto 0;
  }
}
.special .midorimushi01 {
  right: -3%;
  top: 6%;
  width: 15%;
}
@media only screen and (min-width: 1500px) {
  .special .midorimushi01 {
    width: 13%;
    max-width: 240px;
  }
}
@media only screen and (max-width: 768px) {
  .special .midorimushi01 {
    display: none;
  }
}
.special .midorimushi01 img {
  opacity: 0.9;
}
.special .midorimushi02 {
  top: 18%;
  left: 11%;
  width: 13%;
}
@media only screen and (min-width: 1500px) {
  .special .midorimushi02 {
    width: 13%;
    max-width: 240px;
  }
}
@media only screen and (max-width: 768px) {
  .special .midorimushi02 {
    top: 33%;
    left: -22%;
    width: 43%;
  }
}
.special .midorimushi02 img {
  opacity: 0.5;
}
.special .midorimushi03 {
  top: 42%;
  left: -8%;
  width: 24%;
}
@media only screen and (min-width: 1500px) {
  .special .midorimushi03 {
    width: 20%;
    max-width: 270px;
  }
}
@media only screen and (max-width: 768px) {
  .special .midorimushi03 {
    top: 62%;
    left: -26%;
    width: 54%;
  }
}
.special .midorimushi03 img {
  opacity: 0.9;
}
.special .midorimushi04 {
  top: 44%;
  right: -8%;
  width: 24%;
}
@media only screen and (min-width: 1500px) {
  .special .midorimushi04 {
    width: 20%;
    right: -3%;
    max-width: 270px;
  }
}
@media only screen and (max-width: 768px) {
  .special .midorimushi04 {
    top: 33%;
    right: -22%;
    width: 44%;
  }
}
.special .midorimushi04 img {
  opacity: 0.7;
}
.special .midorimushi05 {
  top: 75%;
  left: 11%;
  width: 14%;
}
@media only screen and (min-width: 1500px) {
  .special .midorimushi05 {
    width: 11%;
    max-width: 240px;
  }
}
@media only screen and (max-width: 768px) {
  .special .midorimushi05 {
    top: 75%;
    left: 81%;
    width: 44%;
  }
}
.special .midorimushi05 img {
  opacity: 0.7;
}
.special .midorimushi06 {
  top: 85%;
  right: -5%;
  width: 14%;
}
@media only screen and (min-width: 1500px) {
  .special .midorimushi06 {
    width: 11%;
    max-width: 240px;
  }
}
@media only screen and (max-width: 768px) {
  .special .midorimushi06 {
    top: 95%;
    right: -15%;
    width: 37%;
  }
}
.special .midorimushi06 img {
  opacity: 0.7;
}
.special .illust_02 {
  width: 65px;
  top: 13%;
  left: 4%;
  z-index: 10000;
}
@media only screen and (min-width: 1600px) {
  .special .illust_02 {
    left: -3%;
  }
}
@media only screen and (max-width: 1280px) {
  .special .illust_02 {
    top: 13%;
  }
}
@media only screen and (max-width: 768px) {
  .special .illust_02 {
    width: 45px;
    top: 11%;
    left: 5%;
  }
}
.special .illust_02 .fukidashi {
  min-width: 250px;
  top: -453%;
  left: -130%;
}
@media only screen and (max-width: 768px) {
  .special .illust_02 .fukidashi {
    min-width: 220px;
    top: -512%;
    left: -55%;
  }
}
.special .illust_03 {
  width: 50px;
  top: 52%;
  right: 13%;
  z-index: 10000;
}
@media only screen and (min-width: 1600px) {
  .special .illust_03 {
    right: -3%;
    top: 56%;
  }
}
@media only screen and (max-width: 768px) {
  .special .illust_03 {
    width: 35px;
    top: 41%;
    right: 14%;
  }
}
.special .illust_03 .fukidashi {
  min-width: 250px;
  top: -303%;
  left: -130%;
}
@media only screen and (min-width: 1600px) {
  .special .illust_03 .fukidashi {
    top: -323%;
  }
}
@media only screen and (max-width: 768px) {
  .special .illust_03 .fukidashi {
    min-width: 220px;
    top: -428%;
    left: -274%;
  }
}
.special .illust_04 {
  width: 65px;
  bottom: 8%;
  left: -6%;
  z-index: 10000;
}
@media only screen and (min-width: 1600px) {
  .special .illust_04 {
    bottom: 0;
  }
}
@media only screen and (max-width: 768px) and (min-width: 541px) {
  .special .illust_04 {
    width: 45px;
    bottom: 19%;
    -left: 11%;
  }
}
@media only screen and (max-width: 540px) {
  .special .illust_04 {
    width: 45px;
    bottom: 18%;
    left: 3%;
  }
}
.special .illust_04 .fukidashi {
  min-width: 250px;
  top: -403%;
  left: -130%;
}
@media only screen and (max-width: 768px) {
  .special .illust_04 .fukidashi {
    min-width: 220px;
    top: -455%;
    left: -140%;
  }
}
.special .illust_05 {
  width: 85px;
  bottom: -16%;
  right: -1%;
  z-index: 10000;
}
@media only screen and (min-width: 1600px) {
  .special .illust_05 {
    right: -8%;
  }
}
@media only screen and (max-width: 768px) {
  .special .illust_05 {
    width: 65px;
    bottom: -18%;
    right: 11%;
  }
}
.special .illust_05 .fukidashi {
  min-width: 250px;
  top: -663%;
  left: -130%;
}
@media only screen and (max-width: 768px) {
  .special .illust_05 .fukidashi {
    min-width: 220px;
  }
}
.special .inner {
  padding: 100px 0 0;
}
@media only screen and (max-width: 768px) {
  .special .inner {
    padding: 50px 0 0;
  }
}
.special .special_contents {
  margin: 100px auto 0;
  width: 88%;
  position: relative;
  cursor: pointer;
}
@media only screen and (min-width: 1600px) {
  .special .special_contents {
    width: 92%;
  }
}
@media only screen and (max-width: 1400px) and (min-width: 1201px) {
  .special .special_contents {
    width: 92%;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 769px) {
  .special .special_contents {
    width: 100%;
    max-width: 760px;
    scale: 1.08;
  }
}
@media only screen and (max-width: 1000px) {
  .special .special_contents {
    scale: 1;
  }
}
@media only screen and (max-width: 800px) {
  .special .special_contents {
    scale: 0.98;
  }
}
@media only screen and (max-width: 768px) and (min-width: 541px) {
  .special .special_contents {
    width: 100%;
    margin: 40px auto 0;
    scale: 1;
  }
}
@media only screen and (max-width: 540px) {
  .special .special_contents {
    width: 100%;
    margin: 40px auto 0;
    scale: 1;
  }
}
.special .special_contents .img_box .img img {
  transform: scale(1);
  transition: transform 1s cubic-bezier(0.5, 1, 0.89, 1);
  vertical-align: bottom;
}
@media only screen and (min-width: 769px) {
  .special .special_contents:hover .img_box .img img {
    transform: scale(1.08) !important;
    transition: transform 1s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .special .special_contents:hover .bg .hover {
    opacity: 1 !important;
    visibility: visible !important;
    top: 0;
    left: 0;
    position: absolute;
    transition: all 1s cubic-bezier(0.5, 1, 0.89, 1);
  }
}
.special .special_contents .contents_txtbox .number_box {
  position: absolute;
  width: 100px;
  z-index: 100;
  transform: scale(0.85);
}
@media only screen and (max-width: 1200px) and (min-width: 769px) {
  .special .special_contents .contents_txtbox .number_box {
    transform: scale(0.85);
  }
}
@media only screen and (max-width: 768px) and (min-width: 541px) {
  .special .special_contents .contents_txtbox .number_box {
    width: 60px;
    transform: scale(0.95);
  }
}
@media only screen and (max-width: 540px) {
  .special .special_contents .contents_txtbox .number_box {
    width: 60px;
    transform: scale(0.85);
  }
}
.special .special_contents .contents_txtbox .number_box .circle_bg {
  width: 90px;
  filter: brightness(1.03);
}
@media only screen and (max-width: 768px) {
  .special .special_contents .contents_txtbox .number_box .circle_bg {
    width: 60px;
  }
}
.special .special_contents .contents_txtbox .number_box .number {
  position: absolute;
  width: 20px;
  top: 22px;
  left: 35%;
}
@media only screen and (max-width: 768px) {
  .special .special_contents .contents_txtbox .number_box .number {
    width: 14px;
    top: 16px;
    left: 37%;
  }
}
.special .special_contents .contents_txtbox .number_box .out_txt {
  position: absolute;
  width: 107%;
  height: 100%;
  top: -22px;
  left: -21px;
}
@media only screen and (max-width: 768px) {
  .special .special_contents .contents_txtbox .number_box .out_txt {
    top: -11px;
    left: -11px;
  }
}
.special .special_contents .img_box {
  width: 400px !important;
  height: 400px !important;
  border-radius: 50%;
  position: relative;
  border: 5px solid var(--color-green);
  margin: 0 0 0 auto;
  overflow: hidden;
}
@media only screen and (max-width: 1200px) and (min-width: 769px) {
  .special .special_contents .img_box {
    width: 300px !important;
    height: 300px !important;
  }
}
@media only screen and (max-width: 768px) and (min-width: 541px) {
  .special .special_contents .img_box {
    width: 300px !important;
    height: 300px !important;
  }
}
@media only screen and (max-width: 540px) {
  .special .special_contents .img_box {
    width: 200px !important;
    height: 200px !important;
  }
}
.special .special_contents .img_box .img_glass {
  position: absolute;
  top: -8px;
  left: -3px;
  width: 420px;
  height: 420px;
}
@media only screen and (max-width: 1200px) and (min-width: 769px) {
  .special .special_contents .img_box .img_glass {
    width: 320px !important;
    height: 320px !important;
  }
}
@media only screen and (max-width: 768px) and (min-width: 541px) {
  .special .special_contents .img_box .img_glass {
    width: 320px !important;
    height: 320px !important;
  }
}
@media only screen and (max-width: 540px) {
  .special .special_contents .img_box .img_glass {
    width: 220px !important;
    height: 220px !important;
  }
}
.special .special_contents .img_box .img_glass img {
  vertical-align: bottom;
}
.special .special_contents .img_box .img img {
  transform: scale(1.01);
}
.special .special_contents .img_box_bg {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--color-gurade-moji);
  opacity: 0.2;
  z-index: -1;
}
@media only screen and (max-width: 1200px) and (min-width: 769px) {
  .special .special_contents .img_box_bg {
    width: 320px !important;
    height: 320px !important;
  }
}
@media only screen and (max-width: 768px) and (min-width: 541px) {
  .special .special_contents .img_box_bg {
    width: 320px !important;
    height: 320px !important;
  }
}
@media only screen and (max-width: 540px) {
  .special .special_contents .img_box_bg {
    width: 220px !important;
    height: 220px !important;
  }
}
.special .special_contents .nozoku {
  position: absolute;
  width: 130px;
  bottom: 5%;
  right: -5%;
  transition: all 0.3s ease;
  animation: bounce 2s ease-in-out forwards;
  animation-iteration-count: infinite;
}
@media only screen and (max-width: 1200px) and (min-width: 769px) {
  .special .special_contents .nozoku {
    width: 110px;
  }
}
@media only screen and (max-width: 768px) and (min-width: 541px) {
  .special .special_contents .nozoku {
    width: 110px;
  }
}
@media only screen and (max-width: 540px) {
  .special .special_contents .nozoku {
    width: 90px;
  }
}
.special .special_contents .nozoku .txt {
  width: 60%;
  left: 57%;
  z-index: 100;
}
.special .special_contents .nozoku .bg {
  transition: all 1s cubic-bezier(0.5, 1, 0.89, 1);
}
.special .special_contents .nozoku .bg .regular {
  opacity: 1;
  visibility: visible;
}
.special .special_contents .nozoku .bg .hover {
  opacity: 0;
  visibility: hidden;
  top: 0;
  left: 0;
  position: absolute;
  transition: all 1s cubic-bezier(0.5, 1, 0.89, 1);
}
@keyframes bounce {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  50% {
    transform: scale(1.04);
    -webkit-transform: scale(1.04);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.special .contents_txtbox .title {
  position: relative;
}
.special .contents_txtbox .title span {
  color: var(--color-w);
  font-size: 32px;
  font-weight: 600;
  position: relative;
  letter-spacing: 2px;
  clip-path: inset(0 100% 0 0);
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1) 0.4s;
  transition-property: clip-path;
}
@media only screen and (max-width: 768px) and (min-width: 541px) {
  .special .contents_txtbox .title span {
    font-size: 28px;
  }
}
@media only screen and (max-width: 540px) {
  .special .contents_txtbox .title span {
    font-size: 20px;
  }
}
.special .contents_txtbox .title span:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  border-bottom: 1.5px dashed var(--color-w);
  bottom: 0;
}
.special .contents_txtbox .title.scrollin span {
  clip-path: inset(0);
}
.special .contents_txtbox .txt {
  color: var(--color-w);
  font-size: 20px;
  margin: 10px 0 0;
  font-weight: 500;
  clip-path: inset(0 100% 0 0);
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1) 0.4s;
  transition-property: clip-path;
}
@media only screen and (max-width: 768px) and (min-width: 541px) {
  .special .contents_txtbox .txt {
    font-size: 15px;
  }
}
@media only screen and (max-width: 540px) {
  .special .contents_txtbox .txt {
    font-size: 13px;
  }
}
.special .contents_txtbox .txt.scrollin {
  clip-path: inset(0);
}
.special .contents_txtbox .bg_number {
  top: -2%;
  width: 205px;
  right: 18%;
  opacity: 0.6;
}
@media only screen and (max-width: 768px) {
  .special .contents_txtbox .bg_number {
    top: 24%;
    width: 123px;
    right: 53%;
    opacity: 0.4;
  }
}
@media only screen and (max-width: 540px) {
  .special .special_contents_01 {
    width: 335px;
  }
}
.special .special_contents_01 .contents_txtbox {
  position: absolute;
  width: 65%;
  padding: 12% 0 0 14%;
}
@media only screen and (max-width: 1200px) and (min-width: 769px) {
  .special .special_contents_01 .contents_txtbox {
    transform: scale(0.85);
    padding: 19% 0 0 8%;
  }
}
@media only screen and (max-width: 768px) and (min-width: 541px) {
  .special .special_contents_01 .contents_txtbox {
    padding: 48% 0 0 11%;
    transform: scale(1);
  }
}
@media only screen and (max-width: 540px) {
  .special .special_contents_01 .contents_txtbox {
    padding: 82% 0 0 6%;
    transform: scale(1);
  }
}
.special .special_contents_01 .contents_txtbox .number_box {
  left: 11%;
  top: 6%;
}
@media only screen and (max-width: 1200px) and (min-width: 769px) {
  .special .special_contents_01 .contents_txtbox .number_box {
    left: 1%;
    top: 13%;
  }
}
@media only screen and (max-width: 768px) {
  .special .special_contents_01 .contents_txtbox .number_box {
    left: 1%;
    top: 49%;
  }
}
.special .special_contents_01 .bg_img {
  width: 82%;
  top: 6%;
  left: 0%;
  z-index: -1;
  filter: brightness(1.01);
}
@media only screen and (max-width: 768px) and (min-width: 541px) {
  .special .special_contents_01 .bg_img {
    width: 71%;
    top: 15%;
    left: -10%;
  }
}
@media only screen and (max-width: 540px) {
  .special .special_contents_01 .bg_img {
    width: 104%;
    top: 15%;
    left: -27%;
    max-width: 360px;
  }
}
.special .special_contents_01 .title_pc {
  display: block;
}
@media only screen and (max-width: 800px) {
  .special .special_contents_01 .title_pc {
    display: none;
  }
}
.special .special_contents_01 .title_sp {
  display: none;
}
@media only screen and (max-width: 800px) {
  .special .special_contents_01 .title_sp {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .special .special_contents_01 .img_box {
    margin: 0 2% 0 auto;
  }
}
@media only screen and (max-width: 768px) and (min-width: 541px) {
  .special .special_contents_01 .img_box_bg {
    right: 2px;
  }
}
@media only screen and (max-width: 540px) {
  .special .special_contents_01 .img_box_bg {
    right: -1%;
  }
}
@media only screen and (max-width: 768px) {
  .special .special_contents_01 .nozoku {
    bottom: -4%;
    right: -4%;
  }
}
.special .special_contents_02 {
  width: 72%;
  min-width: 780px;
  margin: 14% 0 0 -4%;
  z-index: 100;
}
@media only screen and (max-width: 1200px) and (min-width: 769px) {
  .special .special_contents_02 {
    min-width: 580px;
    max-width: 560px;
    margin: 19% 0 0 -4%;
  }
}
@media only screen and (max-width: 768px) {
  .special .special_contents_02 {
    width: 100%;
    min-width: 100px;
    margin: 186px 0 0;
  }
}
@media only screen and (max-width: 540px) {
  .special .special_contents_02 {
    width: 335px;
    margin: 186px 0 0 auto;
  }
}
.special .special_contents_02 .contents_txtbox {
  position: absolute;
  width: 65%;
  padding: 39% 0 0 18%;
}
@media only screen and (max-width: 1200px) and (min-width: 769px) {
  .special .special_contents_02 .contents_txtbox {
    transform: scale(0.85);
    padding: 60% 0 0 18%;
  }
}
@media only screen and (max-width: 768px) and (min-width: 541px) {
  .special .special_contents_02 .contents_txtbox {
    width: 100%;
    padding: 36% 0 0 3%;
    transform: scale(1);
  }
}
@media only screen and (max-width: 540px) and (min-width: 414px) {
  .special .special_contents_02 .contents_txtbox {
    width: 100%;
    padding: 80% 0 0 23%;
    transform: scale(1);
  }
}
@media only screen and (max-width: 413px) {
  .special .special_contents_02 .contents_txtbox {
    width: 100%;
    padding: 80% 0 0 18%;
    transform: scale(1);
  }
}
.special .special_contents_02 .contents_txtbox .number_box {
  left: -15%;
  top: -62%;
}
@media only screen and (max-width: 768px) {
  .special .special_contents_02 .contents_txtbox .number_box {
    left: -10%;
    top: -104%;
  }
}
.special .special_contents_02 .contents_txtbox .number_box .number {
  width: 25px;
  top: 25px;
  left: 31%;
}
@media only screen and (max-width: 768px) {
  .special .special_contents_02 .contents_txtbox .number_box .number {
    width: 18px;
    top: 16px;
    left: 32%;
  }
}
@media only screen and (max-width: 768px) {
  .special .special_contents_02 .img_box {
    margin: 0 4% 0 auto;
  }
}
@media only screen and (max-width: 768px) and (min-width: 541px) {
  .special .special_contents_02 .img_box_bg {
    right: 13px;
  }
}
@media only screen and (max-width: 540px) {
  .special .special_contents_02 .img_box_bg {
    right: 1%;
  }
}
.special .special_contents_02 .bg_img {
  width: 62%;
  top: 18%;
  left: 1%;
  z-index: -1;
  filter: brightness(1.01);
}
@media only screen and (max-width: 1200px) and (min-width: 769px) {
  .special .special_contents_02 .bg_img {
    width: 76%;
  }
}
@media only screen and (max-width: 768px) and (min-width: 541px) {
  .special .special_contents_02 .bg_img {
    width: 76%;
    left: -8%;
  }
}
@media only screen and (max-width: 540px) {
  .special .special_contents_02 .bg_img {
    width: 111%;
    top: 26%;
    left: 1%;
    max-width: 394px;
  }
}
.special .special_contents_02 .bg_number {
  top: 10%;
  width: 205px;
  right: 38%;
  opacity: 0.6;
}
@media only screen and (max-width: 768px) {
  .special .special_contents_02 .bg_number {
    top: 24%;
    width: 123px;
    right: 70%;
  }
}
@media only screen and (max-width: 768px) and (min-width: 541px) {
  .special .special_contents_02 .nozoku {
    top: -7%;
    right: -2%;
    bottom: auto;
  }
}
@media only screen and (max-width: 540px) {
  .special .special_contents_02 .nozoku {
    top: -9%;
    right: -2%;
    bottom: auto;
  }
}
.special .special_contents_03 {
  width: 70%;
  min-width: 769px;
  margin: 1% -3% 0 auto;
}
@media only screen and (max-width: 1200px) and (min-width: 769px) {
  .special .special_contents_03 {
    margin: 16% 0% 0 auto;
    min-width: 100px;
    width: 100%;
    min-width: 731px;
  }
}
@media only screen and (max-width: 850px) {
  .special .special_contents_03 {
    margin: 28% 0% 0 -10%;
    min-width: 731px;
  }
}
@media only screen and (max-width: 768px) {
  .special .special_contents_03 {
    width: 100%;
    min-width: 100px;
    margin: 168px 0 0;
  }
}
@media only screen and (max-width: 540px) {
  .special .special_contents_03 {
    width: 335px;
  }
}
.special .special_contents_03 .contents_txtbox {
  position: absolute;
  width: 72%;
  padding: 69% 0 0 14%;
}
@media only screen and (max-width: 1200px) and (min-width: 769px) {
  .special .special_contents_03 .contents_txtbox {
    transform: scale(0.85);
    padding: 69% 0 0 25%;
  }
}
@media only screen and (max-width: 768px) and (min-width: 541px) {
  .special .special_contents_03 .contents_txtbox {
    width: 100%;
    padding: 78% 0 0 41%;
    transform: scale(1);
  }
}
@media only screen and (max-width: 540px) {
  .special .special_contents_03 .contents_txtbox {
    width: 100%;
    padding: 102% 0 0 22%;
    transform: scale(1);
  }
}
.special .special_contents_03 .contents_txtbox .number_box {
  left: 19%;
  top: 61%;
}
@media only screen and (max-width: 1200px) and (min-width: 769px) {
  .special .special_contents_03 .contents_txtbox .number_box {
    left: 31%;
    top: 61%;
  }
}
@media only screen and (max-width: 768px) and (min-width: 541px) {
  .special .special_contents_03 .contents_txtbox .number_box {
    left: 27%;
    top: 81%;
  }
}
@media only screen and (max-width: 540px) {
  .special .special_contents_03 .contents_txtbox .number_box {
    left: 2%;
    top: 74%;
  }
}
@media only screen and (max-width: 768px) {
  .special .special_contents_03 .img_box {
    margin: 0;
  }
}
@media only screen and (max-width: 768px) {
  .special .special_contents_03 .img_box_bg {
    right: auto;
    left: -10px;
  }
}
.special .special_contents_03 .bg_img {
  width: 77%;
  top: 25%;
  left: 0%;
  z-index: -1;
  transform: scale(0.85);
  filter: brightness(1.01);
}
@media only screen and (max-width: 1200px) and (min-width: 769px) {
  .special .special_contents_03 .bg_img {
    width: 67%;
    top: 25%;
    left: 13%;
  }
}
@media only screen and (max-width: 768px) and (min-width: 541px) {
  .special .special_contents_03 .bg_img {
    width: 93%;
    top: 34%;
    left: 8%;
  }
}
@media only screen and (max-width: 540px) {
  .special .special_contents_03 .bg_img {
    left: -15%;
    width: 125%;
    max-width: 450px;
  }
}
.special .special_contents_03 .bg_number {
  top: 28%;
  width: 205px;
  right: 47%;
  opacity: 0.6;
  z-index: 1;
}
@media only screen and (max-width: 1200px) and (min-width: 769px) {
  .special .special_contents_03 .bg_number {
    right: 22%;
  }
}
@media only screen and (max-width: 768px) {
  .special .special_contents_03 .bg_number {
    display: none;
  }
}
@media only screen and (max-width: 768px) and (min-width: 541px) {
  .special .special_contents_03 .nozoku {
    right: 40%;
    top: 44%;
    bottom: auto;
  }
}
@media only screen and (max-width: 540px) {
  .special .special_contents_03 .nozoku {
    top: 44%;
    right: 23%;
    bottom: auto;
  }
}
.special .svg-wrap {
  position: rerative;
  overflow: hidden;
  text-align: center;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}
.special .svg-wrap .svg {
  margin: -8% auto 0;
  width: 90%;
  height: 100%;
}

.thoughts {
  position: relative;
  margin: 3% auto 0;
}
@media only screen and (max-width: 1100px) {
  .thoughts {
    padding: 0 0 94px;
  }
}
@media only screen and (max-width: 768px) {
  .thoughts {
    margin: 50px auto 40px;
    padding: 0 0 10px;
  }
}
.thoughts .midorimushi07 {
  top: 35%;
  left: -5%;
  width: 22%;
}
@media only screen and (min-width: 1500px) {
  .thoughts .midorimushi07 {
    width: 15%;
    max-width: 270px;
  }
}
@media only screen and (max-width: 768px) {
  .thoughts .midorimushi07 {
    top: 55%;
    left: -32%;
    width: 60%;
  }
}
.thoughts .midorimushi07 img {
  opacity: 0.7;
}
.thoughts .midorimushi08 {
  top: 2%;
  right: -2%;
  width: 14%;
}
@media only screen and (min-width: 1500px) {
  .thoughts .midorimushi08 {
    width: 11%;
    max-width: 220px;
  }
}
@media only screen and (max-width: 768px) {
  .thoughts .midorimushi08 {
    top: 31%;
    right: -30%;
    width: 40%;
    display: none;
  }
}
.thoughts .midorimushi08 img {
  opacity: 0.7;
}
.thoughts .midorimushi09 {
  bottom: -35%;
  right: 8%;
  width: 13%;
  z-index: 1000;
}
@media only screen and (min-width: 1500px) {
  .thoughts .midorimushi09 {
    width: 11%;
    max-width: 220px;
  }
}
@media only screen and (max-width: 768px) {
  .thoughts .midorimushi09 {
    bottom: -15%;
    right: -7%;
    width: 26%;
  }
}
.thoughts .midorimushi09 img {
  opacity: 0.7;
}
.thoughts .inner {
  max-width: 1000px;
  width: calc(100% - 20vw);
}
@media only screen and (max-width: 768px) {
  .thoughts .inner {
    width: calc(100% - 40px);
  }
}
.thoughts .thoughts_box {
  width: 100%;
}
@media only screen and (max-width: 1200px) and (min-width: 769px) {
  .thoughts .thoughts_box {
    margin: 50px auto 0;
    padding: 0 0 50px;
  }
}
@media only screen and (min-width: 1600px) {
  .thoughts .thoughts_box {
    margin: 40px auto;
  }
}
@media only screen and (max-width: 1100px) {
  .thoughts .thoughts_box {
    width: 100%;
    margin: 50px auto 0;
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .thoughts .thoughts_box {
    width: 100%;
    margin: 0px auto 0;
  }
}
.thoughts .thoughts_box .right {
  width: 56%;
}
.thoughts .thoughts_box .right .base_logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@media only screen and (max-width: 1300px) and (min-width: 1201px) {
  .thoughts .thoughts_box .right {
    width: 54%;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 769px) {
  .thoughts .thoughts_box .right {
    width: 46%;
  }
}
@media only screen and (max-width: 1000px) and (min-width: 941px) {
  .thoughts .thoughts_box .right {
    width: 440px;
  }
}
@media only screen and (max-width: 940px) and (min-width: 801px) {
  .thoughts .thoughts_box .right {
    width: 380px;
  }
}
@media only screen and (max-width: 800px) {
  .thoughts .thoughts_box .right {
    width: calc(100% - 320px);
  }
}
@media only screen and (max-width: 768px) and (min-width: 541px) {
  .thoughts .thoughts_box .right {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 540px) {
  .thoughts .thoughts_box .right {
    width: 100%;
    margin: 0 auto;
    max-width: 440px;
  }
}
.thoughts .thoughts_box .left {
  width: 44%;
  margin: 24px 0 0;
}
@media only screen and (max-width: 1300px) and (min-width: 1201px) {
  .thoughts .thoughts_box .left {
    width: 46%;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 769px) {
  .thoughts .thoughts_box .left {
    width: 54%;
  }
}
@media only screen and (max-width: 1000px) and (min-width: 941px) {
  .thoughts .thoughts_box .left {
    width: calc(100% - 440px);
  }
}
@media only screen and (max-width: 940px) and (min-width: 801px) {
  .thoughts .thoughts_box .left {
    width: calc(100% - 380px);
  }
}
@media only screen and (max-width: 800px) {
  .thoughts .thoughts_box .left {
    width: 320px;
  }
}
@media only screen and (max-width: 768px) {
  .thoughts .thoughts_box .left {
    width: 100%;
    margin: 0;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 769px) {
  .thoughts .txtbox .subtitle {
    margin: 0;
    font-size: 2.2rem;
  }
  .thoughts .txtbox .txt {
    font-size: 1.5rem;
    line-height: 2;
    margin: 20px 0 0;
    letter-spacing: -0.2px;
  }
  .thoughts .txtbox .name_position {
    margin: 20px 0 0;
    font-size: 11px;
  }
  .thoughts .txtbox .name {
    font-size: 16px;
  }
}
@media only screen and (max-width: 940px) and (min-width: 769px) {
  .thoughts .txtbox .txt {
    font-size: 1.34rem;
    line-height: 2;
    margin: 20px 0 0;
    letter-spacing: -0.2px;
  }
}
@media only screen and (max-width: 768px) {
  .thoughts .txtbox .subtitle {
    margin: 0;
    text-align: center;
  }
  .thoughts .txtbox .txt {
    font-size: 1.3rem;
    line-height: 2;
    margin: 10px 0 0;
    text-align: center;
    letter-spacing: -0.2px;
  }
  .thoughts .txtbox .name_position {
    text-align: center;
    margin: 10px 0 0;
    font-size: 11px;
  }
  .thoughts .txtbox .name {
    text-align: center;
    font-size: 16px;
  }
}
.thoughts .splide-staff_02 {
  width: 140%;
}
@media only screen and (min-width: 1700px) {
  .thoughts .splide-staff_02 {
    width: 100%;
  }
}
@media only screen and (max-width: 1100px) {
  .thoughts .splide-staff_02 {
    width: 180%;
  }
}
@media only screen and (max-width: 768px) and (min-width: 541px) {
  .thoughts .splide-staff_02 {
    width: 260%;
    margin: 120px auto 20px;
  }
}
@media only screen and (max-width: 540px) {
  .thoughts .splide-staff_02 {
    width: 300%;
    margin: 30px auto 0;
  }
}
.thoughts .splide__arrows {
  display: none;
}
.thoughts .waves {
  transform: scale(1, -1);
  bottom: -142px;
  z-index: 100;
}
@media only screen and (min-width: 1600px) {
  .thoughts .waves {
    bottom: -181px;
  }
}
@media only screen and (max-width: 768px) {
  .thoughts .waves {
    bottom: -103px;
  }
}
.thoughts .subtitle {
  filter: brightness(1.06);
}

.memories {
  position: relative;
  background-color: var(--color-bg02);
  padding: 15% 0 10%;
}
@media only screen and (min-width: 1600px) {
  .memories {
    padding: 12% 0 6%;
  }
}
@media only screen and (max-width: 1100px) {
  .memories {
    padding: 22% 0 10%;
  }
}
@media only screen and (max-width: 768px) and (min-width: 541px) {
  .memories {
    padding: 100px 0 100px;
  }
}
@media only screen and (max-width: 540px) {
  .memories {
    padding: 80px 0 50px;
  }
}
.memories .subtitle, .memories .subtitle_sp {
  filter: brightness(1.05);
}
.memories .subtitle_sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .memories .subtitle_sp {
    display: block;
    width: 100%;
    margin: 0 auto;
    max-width: 300px;
  }
}
@media only screen and (max-width: 768px) {
  .memories .swiper-area {
    margin: 20px 0 0;
  }
}
.memories .inner {
  max-width: 1200px;
  width: calc(100% - 10vw);
}
@media only screen and (max-width: 768px) {
  .memories .inner {
    width: calc(100% - 40px);
    max-width: 540px !important;
  }
}
@media only screen and (max-width: 540px) {
  .memories .inner {
    max-width: 440px !important;
  }
}
.memories .illust_06 {
  width: 45px;
  top: -1%;
  left: 18%;
  z-index: 10000;
}
@media only screen and (max-width: 768px) {
  .memories .illust_06 {
    width: 26px;
    top: 3%;
    left: 3%;
  }
}
.memories .illust_06 .fukidashi {
  min-width: 250px;
  top: -390%;
  left: -130%;
}
@media only screen and (max-width: 768px) {
  .memories .illust_06 .fukidashi {
    min-width: 220px;
    top: -537%;
    left: -270%;
  }
}
.memories .illust_07 {
  width: 45px;
  top: 6%;
  right: 16%;
  z-index: 10000;
}
@media only screen and (max-width: 1400px) {
  .memories .illust_07 {
    top: 10%;
  }
}
@media only screen and (max-width: 768px) {
  .memories .illust_07 {
    width: 35px;
    top: 4%;
    right: 5%;
  }
}
.memories .illust_07 .fukidashi {
  min-width: 250px;
  top: -383%;
  left: -130%;
}
@media only screen and (max-width: 768px) {
  .memories .illust_07 .fukidashi {
    min-width: 220px;
    top: -367%;
    left: -537%;
  }
}
.memories .illust_08 {
  width: 45px;
  top: 44%;
  left: -2%;
  z-index: 10000;
}
@media only screen and (max-width: 768px) {
  .memories .illust_08 {
    width: 31px;
    top: 43%;
    left: -3%;
  }
}
.memories .illust_08 .fukidashi {
  min-width: 250px;
  top: -380%;
  left: -130%;
}
@media only screen and (max-width: 768px) {
  .memories .illust_08 .fukidashi {
    min-width: 220px;
    top: -433%;
    left: -120%;
  }
}
.memories .illust_09 {
  width: 73px;
  top: 72%;
  right: 14%;
  z-index: 10000;
}
@media only screen and (max-width: 768px) {
  .memories .illust_09 {
    width: 54px;
    top: 51%;
  }
}
.memories .illust_09 .fukidashi {
  min-width: 250px;
  top: -403%;
  left: -130%;
}
@media only screen and (max-width: 768px) {
  .memories .illust_09 .fukidashi {
    min-width: 220px;
  }
}
.memories .illust_10 {
  width: 73px;
  bottom: -1%;
  right: 8%;
  z-index: 10000;
}
@media only screen and (max-width: 768px) {
  .memories .illust_10 {
    width: 63px;
  }
}
.memories .illust_10 .fukidashi {
  min-width: 250px;
  top: -303%;
  left: -130%;
}
@media only screen and (max-width: 768px) {
  .memories .illust_10 .fukidashi {
    min-width: 220px;
    left: -200%;
  }
}
.memories .category_title_box {
  width: 20%;
  margin: 0 auto 60px;
}
@media only screen and (max-width: 1100px) {
  .memories .category_title_box {
    width: 27%;
    max-width: 220px;
  }
}
@media only screen and (max-width: 768px) {
  .memories .category_title_box {
    width: 49%;
    margin: 40px auto 30px;
    max-width: 200px;
  }
}
@media only screen and (max-width: 540px) {
  .memories .category_title_box {
    max-width: 180px;
  }
}
.memories .circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-pink);
}
@media only screen and (max-width: 768px) {
  .memories .circle {
    width: 10px;
    height: 10px;
  }
}
.memories .circle_top_left {
  top: 30px;
  left: 30px;
}
@media only screen and (max-width: 768px) {
  .memories .circle_top_left {
    top: 20px;
    left: 20px;
  }
}
.memories .circle_top_right {
  top: 30px;
  right: 30px;
}
@media only screen and (max-width: 768px) {
  .memories .circle_top_right {
    top: 20px;
    right: 20px;
  }
}
.memories .circle_bottom_left {
  bottom: 30px;
  left: 30px;
}
@media only screen and (max-width: 768px) {
  .memories .circle_bottom_left {
    bottom: 20px;
    left: 20px;
  }
}
.memories .circle_bottom_right {
  bottom: 30px;
  right: 30px;
}
@media only screen and (max-width: 768px) {
  .memories .circle_bottom_right {
    bottom: 20px;
    right: 20px;
  }
}
.memories .midorimushi01 {
  top: 8%;
  left: -3%;
  width: 18%;
}
@media only screen and (min-width: 1500px) {
  .memories .midorimushi01 {
    width: 19%;
    max-width: 220px;
  }
}
@media only screen and (max-width: 768px) {
  .memories .midorimushi01 {
    top: 8%;
    left: -19%;
    width: 38%;
  }
}
.memories .midorimushi01 img {
  opacity: 0.7;
}
.memories .midorimushi02 {
  top: 64%;
  left: 23%;
  width: 11%;
  z-index: 1000;
}
@media only screen and (min-width: 1500px) {
  .memories .midorimushi02 {
    width: 9%;
    left: 27%;
    max-width: 200px;
  }
}
@media only screen and (max-width: 768px) {
  .memories .midorimushi02 {
    top: 48%;
    left: -5%;
    width: 26%;
    z-index: 1;
  }
}
.memories .midorimushi02 img {
  opacity: 0.7;
}
.memories .midorimushi03 {
  bottom: -3%;
  right: -3%;
  width: 14%;
}
@media only screen and (min-width: 1500px) {
  .memories .midorimushi03 {
    width: 11%;
    max-width: 220px;
  }
}
@media only screen and (max-width: 768px) {
  .memories .midorimushi03 {
    bottom: -3%;
    right: -3%;
    width: 34%;
  }
}
.memories .midorimushi03 img {
  opacity: 0.7;
}
.memories .midorimushi04 {
  bottom: -3%;
  left: 3%;
  width: 13%;
}
@media only screen and (min-width: 1500px) {
  .memories .midorimushi04 {
    width: 11%;
    max-width: 220px;
  }
}
@media only screen and (max-width: 768px) {
  .memories .midorimushi04 {
    width: 33%;
    left: -3%;
  }
}
.memories .midorimushi04 img {
  opacity: 0.7;
}
.memories .txtbox .subtitle {
  position: relative;
  display: inline-block;
  margin: 0 0 10px;
  clip-path: inset(0 100% 0 0);
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1) 0.4s;
  transition-property: clip-path;
}
@media only screen and (max-width: 1100px) {
  .memories .txtbox .subtitle {
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .memories .txtbox .subtitle {
    text-align: center;
    margin: 0px;
  }
}
@media only screen and (min-width: 769px) {
  .memories .txtbox .subtitle::before, .memories .txtbox .subtitle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
  }
  .memories .txtbox .subtitle::after {
    height: 1.5px;
    background: linear-gradient(to right, rgb(238, 138, 170) 0%, rgb(176, 205, 111) 52%, rgb(0, 158, 138) 100%);
  }
  .memories .txtbox .subtitle::before {
    z-index: 1;
    height: 3px;
    background-image: linear-gradient(to right, transparent, transparent 5px, #fff 5px, #fff 10px);
    background-size: 10px 3px;
  }
}
.memories .txtbox .subtitle.scrollin {
  clip-path: inset(0);
}
.memories .txtbox .subtitle_sp {
  clip-path: inset(0 100% 0 0);
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1) 0.4s;
  transition-property: clip-path;
}
.memories .txtbox .subtitle_sp.scrollin {
  clip-path: inset(0);
}
.memories .txtbox .memory_txt {
  font-size: 17px;
  font-weight: 500;
  margin: 10px 0 0;
  color: var(--color-main);
  clip-path: inset(0 100% 0 0);
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1) 0.4s;
  transition-property: clip-path;
}
@media only screen and (max-width: 768px) {
  .memories .txtbox .memory_txt {
    font-size: 13px;
    text-align: center;
  }
}
.memories .txtbox .memory_txt.scrollin {
  clip-path: inset(0);
}
.memories .txtbox .txt_large {
  font-size: 4.5rem;
  padding: 0 4px 0 0;
}
@media only screen and (max-width: 1100px) {
  .memories .txtbox .txt_large {
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .memories .txtbox .txt_large {
    font-size: 2.8rem;
    letter-spacing: -0.2px;
    text-align: center;
  }
}
.memories .memories_box {
  position: relative;
  padding: 100px;
}
@media only screen and (max-width: 1100px) {
  .memories .memories_box {
    padding: 70px;
  }
}
@media only screen and (max-width: 768px) {
  .memories .memories_box {
    padding: 30px 40px 60px;
  }
}
.memories .memories_box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  border-radius: 20px;
  opacity: 0.2;
  background: linear-gradient(to right, rgb(238, 138, 170) 0%, rgb(176, 205, 111) 52%, rgb(0, 158, 138) 100%);
}
.memories .memories_box::after {
  content: "";
  position: absolute;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  top: 8px;
  left: 8px;
  z-index: -1;
  border-radius: 18px;
  background: white;
}
.memories .memories_01 .txt_img {
  width: 56px;
  top: 48%;
  right: -15px;
}
@media only screen and (max-width: 768px) {
  .memories .memories_01 .txt_img {
    width: 45px;
    top: 48%;
    right: -20px;
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .memories .memories_01 .swiper-pagination {
    width: 60%;
    margin: 10px auto 0;
  }
}
@media only screen and (max-width: 768px) {
  .memories .memories_01 .swiper-pagination-bullet {
    margin: 10px 0 0 0;
  }
}
.memories .memories_02 {
  margin: 60px auto 0;
}
@media only screen and (max-width: 768px) {
  .memories .memories_02 {
    margin: 30px auto 0;
  }
}
.memories .memories_02 .txt_img {
  width: 56px;
  top: 48%;
  left: -35px;
}
@media only screen and (max-width: 768px) {
  .memories .memories_02 .txt_img {
    width: 45px;
    top: 48%;
    left: -20px;
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .memories .swiper-slide {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
  }
  .memories .swiper-slide img {
    vertical-align: bottom;
    border-radius: 16px;
  }
  .memories .txtbox {
    margin: 14px 0 0;
  }
  .memories .txtbox .name {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
  }
  .memories .txtbox .name span {
    font-size: 12px;
  }
  .memories .txtbox .txt {
    font-size: 13px;
    line-height: 1.8;
    margin: 10px 0 0;
    max-height: 100%;
  }
}
.memories .swiper-slide a {
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.memories .swiper-slide .txtbox:before {
  content: "つづきを見る";
  color: var(--color-10);
  font-size: 14px;
  text-align: center;
  bottom: 0px;
  padding: 0 0 15px;
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 111;
  height: 35px;
  background-color: var(--color-green);
}
@media only screen and (max-width: 1100px) {
  .memories .swiper-slide .txtbox:before {
    font-size: 13px;
    height: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .memories .swiper-slide .txtbox:before {
    display: none;
  }
}
.memories .swiper-slide .txtbox:after {
  content: "";
  color: var(--color-10);
  font-size: 14px;
  text-align: center;
  bottom: 12px;
  position: absolute;
  left: 0;
  width: 100%;
  height: 44%;
  z-index: 10;
  background: url(../img/txtbox_bg.png);
  background-position: 0 0;
  background-size: contain;
}
@media only screen and (max-width: 1100px) {
  .memories .swiper-slide .txtbox:after {
    bottom: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .memories .swiper-slide .txtbox:after {
    display: none;
  }
}
.memories .swiper-slide .txtbox .name {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
}
@media only screen and (max-width: 1200px) {
  .memories .swiper-slide .txtbox .name {
    font-size: 15px;
  }
}
.memories .swiper-slide .txtbox .name span {
  font-size: 12px;
}
@media only screen and (max-width: 1200px) {
  .memories .swiper-slide .txtbox .name span {
    font-size: 11px;
  }
}
.memories .swiper-slide .txtbox .txt {
  margin: 10px 0 0;
  line-height: 1.5;
  font-size: 13px;
  max-height: 74%;
  overflow: hidden;
}
@media only screen and (max-width: 1200px) {
  .memories .swiper-slide .txtbox .txt {
    font-size: 12px;
  }
}
@media only screen and (min-width: 769px) {
  .memories .swiper-area {
    margin: 40px 0 0;
  }
  .memories .swiper-slide {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
  }
  .memories .swiper-slide img {
    vertical-align: bottom;
  }
  .memories .swiper-slide:hover a {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    cursor: pointer;
  }
  .memories .swiper-slide:hover .txtbox {
    opacity: 1;
    visibility: visible;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .memories .swiper-slide .txtbox {
    background-color: var(--color-main);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    padding: 20px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .memories .swiper-slide .txtbox * {
    color: var(--color-10);
  }
  .memories .swiper-slide .txtbox::-webkit-scrollbar {
    width: 10px;
  }
  .memories .swiper-slide .txtbox::-webkit-scrollbar-track {
    background-color: darkgrey;
  }
  .memories .swiper-slide .txtbox::-webkit-scrollbar-thumb {
    background-image: linear-gradient(0deg, rgb(238, 138, 170) 0%, rgb(176, 205, 111) 52%, rgb(0, 158, 138) 100%);
  }
}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
  .memories .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (min-width: 1101px) {
  .memories .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
.memories .swiper-slide {
  position: relative;
}
.memories .swiper-slide .contents_comingsoon_txt {
  position: absolute;
  z-index: 101;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  color: var(--color-10);
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .memories .swiper-slide .contents_comingsoon_txt {
    font-size: 15px;
    line-height: 1;
  }
}
.memories .swiper-slide .contents_comingsoon_txt .en {
  color: var(--color-10);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
}
@media only screen and (max-width: 768px) {
  .memories .swiper-slide .contents_comingsoon_txt .en {
    font-size: 15px;
  }
}
.memories .swiper-button-prev {
  display: none !important;
}
@media only screen and (max-width: 768px) {
  .memories .swiper-button-prev {
    display: grid !important;
    top: 0px;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    background-color: var(--color-pink);
    right: auto;
    left: -14px;
  }
}
.memories .swiper-button-prev::after {
  border: solid var(--color-w) !important;
  border-width: 1px 1px 0 0 !important;
}
.memories .swiper-button-next {
  display: none !important;
}
@media only screen and (max-width: 768px) {
  .memories .swiper-button-next {
    display: grid !important;
    top: 0px;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    background-color: var(--color-pink);
    left: auto !important;
    right: -14px !important;
  }
}
.memories .swiper-button-next::after {
  border: solid var(--color-w) !important;
  border-width: 1px 1px 0 0 !important;
}
@media only screen and (min-width: 769px) {
  .memories .swiper-pagination {
    display: none !important;
  }
}

.last {
  background: var(--color-bg02);
}
.last .img {
  width: 100%;
  position: relative;
  z-index: 10;
  max-width: 1500px;
  margin: 0 auto;
}
@media only screen and (min-width: 1500px) {
  .last .img {
    max-width: 1400px;
    margin: 0 auto 120px;
  }
  .last .img img {
    border-radius: 20px;
  }
}
.last .img .img_txt {
  position: absolute;
  bottom: 40px;
  left: 10%;
  color: var(--color-w);
  font-size: 3.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  clip-path: inset(0 100% 0 0);
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1) 0.4s;
  transition-property: clip-path;
}
@media only screen and (max-width: 1100px) {
  .last .img .img_txt {
    font-size: 3rem;
    left: 8%;
  }
}
@media only screen and (max-width: 768px) {
  .last .img .img_txt {
    font-size: 2rem;
    bottom: 20px;
    left: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  }
}
.last .img .img_txt.scrollin {
  clip-path: inset(0);
}
.last .img img {
  vertical-align: bottom;
}
.last .logo_box {
  padding: 5% 0 10%;
  position: relative;
  background-color: var(--color-bg);
}
@media only screen and (max-width: 768px) {
  .last .logo_box {
    padding: 3% 0 12%;
  }
}
.last .logo_box .logo {
  width: 45%;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .last .logo_box .logo {
    width: 57%;
  }
}
.last .logo_box .midorimushi01 {
  top: -9%;
  left: 10%;
  width: 13%;
  z-index: 1;
}
@media only screen and (min-width: 1500px) {
  .last .logo_box .midorimushi01 {
    width: 11%;
    max-width: 220px;
  }
}
@media only screen and (max-width: 768px) {
  .last .logo_box .midorimushi01 {
    width: 33%;
    top: -21%;
    left: -3%;
  }
}
.last .logo_box .midorimushi01 img {
  opacity: 0.7;
}
.last .logo_box .midorimushi02 {
  top: -6%;
  right: 10%;
  width: 15%;
  z-index: 1;
}
@media only screen and (min-width: 1500px) {
  .last .logo_box .midorimushi02 {
    width: 11%;
    max-width: 220px;
  }
}
@media only screen and (max-width: 768px) {
  .last .logo_box .midorimushi02 {
    width: 27%;
    top: -6%;
    right: -7%;
  }
}
.last .logo_box .midorimushi02 img {
  opacity: 0.7;
}
.last .logo_box .midorimushi03 {
  bottom: 2%;
  left: 15%;
  width: 17%;
  z-index: 1;
}
@media only screen and (min-width: 1500px) {
  .last .logo_box .midorimushi03 {
    width: 11%;
    max-width: 220px;
  }
}
@media only screen and (max-width: 768px) {
  .last .logo_box .midorimushi03 {
    width: 33%;
    bottom: -13%;
    left: -10%;
  }
}
.last .logo_box .midorimushi03 img {
  opacity: 0.7;
}

/* ==========================================================================

	iziModal

========================================================================== */
.iziModal {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #FFF;
  transition: margin-top 0.3s ease, height 0.3s ease;
  transform: translateZ(0);
  width: 800px !important;
  height: 500px !important;
  max-width: 1400px !important;
  z-index: 100001 !important;
  border-bottom: 0px solid #fff;
}

@media only screen and (max-width: 1000px) {
  .iziModal {
    width: 700px !important;
  }
}
.iziModal * {
  -webkit-font-smoothing: antialiased;
}

.iziModal::after {
  content: "";
  width: 100%;
  height: 0px;
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  pointer-events: none;
}

.iziModal .iziModal-progressbar {
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  z-index: 1;
}

.iziModal .iziModal-progressbar > div {
  height: 2px;
  width: 100%;
}

.iziModal .iziModal-header {
  background: transparent;
  padding: 0px !important;
  height: 40px;
  width: 40px;
  overflow: hidden;
  position: absolute;
  z-index: 1000000;
  right: -65px;
  top: 27px;
}

.iziModal .iziModal-header-icon {
  font-size: 40px;
  color: rgba(255, 255, 255, 0.5);
  padding: 0 15px 0 0;
  margin: 0;
  float: left;
}

.iziModal .iziModal-header-title {
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  display: none;
}

.iziModal .iziModal-header-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.45;
  display: none;
}

.iziModal .iziModal-header-title, .iziModal .iziModal-header-subtitle {
  display: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.iziModal .iziModal-header-buttons {
  position: absolute;
  top: 50%;
  right: 10px;
  margin: -17px 0 0 0;
}

@media only screen and (max-width: 768px) {
  .iziModal .iziModal-header-buttons {
    position: absolute;
    top: 50%;
    right: 0px;
    margin: -17px 0 0 0;
  }
}
.iziModal .iziModal-button {
  display: block;
  z-index: 2;
  outline: none;
  height: 28px;
  width: 28px;
  border: 0;
  padding: 0;
  margin: 0;
  opacity: 1;
  border-radius: 50%;
  transition: transform 0.5s cubic-bezier(0.16, 0.81, 0.32, 1), opacity 0.5s ease;
  background-size: 67% !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

.iziModal .iziModal-button-close {
  position: relative;
  height: 28px;
  width: 28px;
  z-index: 100;
}

.iziModal .iziModal-button-close::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-3);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}

.iziModal .iziModal-button-close::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-3);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transform: rotate(-45deg);
}

.iziModal .iziModal-button-close:hover {
  transform: rotate(180deg);
}

.iziModal .iziModal-button:hover {
  opacity: 0.8;
}

.iziModal .iziModal-header.iziModal-noSubtitle {
  height: auto;
  padding: 10px 15px 12px 15px;
}

.iziModal .iziModal-header.iziModal-noSubtitle .iziModal-header-icon {
  font-size: 23px;
  padding-right: 13px;
}

.iziModal .iziModal-header.iziModal-noSubtitle .iziModal-header-title {
  font-size: 15px;
  margin: 3px 0 0 0;
  font-weight: 400;
}

.iziModal .iziModal-header.iziModal-noSubtitle .iziModal-header-buttons {
  right: 6px;
  margin: -16px 0 0 0;
}

.iziModal .iziModal-header.iziModal-noSubtitle .iziModal-button {
  height: 30px;
  width: 30px;
}

/* RTL */
.iziModal-rtl {
  direction: rtl;
}

.iziModal-rtl .iziModal-header {
  padding: 14px 18px 15px 40px;
}

.iziModal-rtl .iziModal-header-icon {
  float: right;
  padding: 0 0 0 15px;
}

.iziModal-rtl .iziModal-header-buttons {
  right: initial;
  left: 10px;
}

.iziModal-rtl .iziModal-button {
  float: left;
}

.iziModal-rtl .iziModal-header-title, .iziModal-rtl .iziModal-header-subtitle {
  text-align: right;
  font-family: Tahoma, "Lato", Arial;
  font-weight: 500;
}

.iziModal-rtl .iziModal-header.iziModal-noSubtitle {
  padding: 10px 15px 12px 40px;
}

.iziModal-rtl .iziModal-header.iziModal-noSubtitle .iziModal-header-icon {
  padding: 0 0 0 13px;
}

/* LIGHT THEME */
.iziModal.iziModal-light .iziModal-header-icon {
  color: rgba(0, 0, 0, 0.5);
}

.iziModal.iziModal-light .iziModal-header-title {
  color: #000;
}

.iziModal.iziModal-light .iziModal-header-subtitle {
  color: rgba(0, 0, 0, 0.6);
}

.iziModal .iziModal-loader {
  background: #FFF url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDQiIGhlaWdodD0iNDQiIHZpZXdCb3g9IjAgMCA0NCA0NCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBzdHJva2U9IiM5OTkiPiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHN0cm9rZS13aWR0aD0iMiI+ICAgICAgICA8Y2lyY2xlIGN4PSIyMiIgY3k9IjIyIiByPSIxIj4gICAgICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJyIiAgICAgICAgICAgICAgICBiZWdpbj0iMHMiIGR1cj0iMS40cyIgICAgICAgICAgICAgICAgdmFsdWVzPSIxOyAyMCIgICAgICAgICAgICAgICAgY2FsY01vZGU9InNwbGluZSIgICAgICAgICAgICAgICAga2V5VGltZXM9IjA7IDEiICAgICAgICAgICAgICAgIGtleVNwbGluZXM9IjAuMTY1LCAwLjg0LCAwLjQ0LCAxIiAgICAgICAgICAgICAgICByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgLz4gICAgICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJzdHJva2Utb3BhY2l0eSIgICAgICAgICAgICAgICAgYmVnaW49IjBzIiBkdXI9IjEuNHMiICAgICAgICAgICAgICAgIHZhbHVlcz0iMTsgMCIgICAgICAgICAgICAgICAgY2FsY01vZGU9InNwbGluZSIgICAgICAgICAgICAgICAga2V5VGltZXM9IjA7IDEiICAgICAgICAgICAgICAgIGtleVNwbGluZXM9IjAuMywgMC42MSwgMC4zNTUsIDEiICAgICAgICAgICAgICAgIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPiAgICAgICAgPC9jaXJjbGU+ICAgICAgICA8Y2lyY2xlIGN4PSIyMiIgY3k9IjIyIiByPSIxIj4gICAgICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJyIiAgICAgICAgICAgICAgICBiZWdpbj0iLTAuOXMiIGR1cj0iMS40cyIgICAgICAgICAgICAgICAgdmFsdWVzPSIxOyAyMCIgICAgICAgICAgICAgICAgY2FsY01vZGU9InNwbGluZSIgICAgICAgICAgICAgICAga2V5VGltZXM9IjA7IDEiICAgICAgICAgICAgICAgIGtleVNwbGluZXM9IjAuMTY1LCAwLjg0LCAwLjQ0LCAxIiAgICAgICAgICAgICAgICByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgLz4gICAgICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJzdHJva2Utb3BhY2l0eSIgICAgICAgICAgICAgICAgYmVnaW49Ii0wLjlzIiBkdXI9IjEuNHMiICAgICAgICAgICAgICAgIHZhbHVlcz0iMTsgMCIgICAgICAgICAgICAgICAgY2FsY01vZGU9InNwbGluZSIgICAgICAgICAgICAgICAga2V5VGltZXM9IjA7IDEiICAgICAgICAgICAgICAgIGtleVNwbGluZXM9IjAuMywgMC42MSwgMC4zNTUsIDEiICAgICAgICAgICAgICAgIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPiAgICAgICAgPC9jaXJjbGU+ICAgIDwvZz48L3N2Zz4=) no-repeat 50% 50%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9;
}

.iziModal .iziModal-content-loader {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDQiIGhlaWdodD0iNDQiIHZpZXdCb3g9IjAgMCA0NCA0NCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBzdHJva2U9IiM5OTkiPiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHN0cm9rZS13aWR0aD0iMiI+ICAgICAgICA8Y2lyY2xlIGN4PSIyMiIgY3k9IjIyIiByPSIxIj4gICAgICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJyIiAgICAgICAgICAgICAgICBiZWdpbj0iMHMiIGR1cj0iMS40cyIgICAgICAgICAgICAgICAgdmFsdWVzPSIxOyAyMCIgICAgICAgICAgICAgICAgY2FsY01vZGU9InNwbGluZSIgICAgICAgICAgICAgICAga2V5VGltZXM9IjA7IDEiICAgICAgICAgICAgICAgIGtleVNwbGluZXM9IjAuMTY1LCAwLjg0LCAwLjQ0LCAxIiAgICAgICAgICAgICAgICByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgLz4gICAgICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJzdHJva2Utb3BhY2l0eSIgICAgICAgICAgICAgICAgYmVnaW49IjBzIiBkdXI9IjEuNHMiICAgICAgICAgICAgICAgIHZhbHVlcz0iMTsgMCIgICAgICAgICAgICAgICAgY2FsY01vZGU9InNwbGluZSIgICAgICAgICAgICAgICAga2V5VGltZXM9IjA7IDEiICAgICAgICAgICAgICAgIGtleVNwbGluZXM9IjAuMywgMC42MSwgMC4zNTUsIDEiICAgICAgICAgICAgICAgIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPiAgICAgICAgPC9jaXJjbGU+ICAgICAgICA8Y2lyY2xlIGN4PSIyMiIgY3k9IjIyIiByPSIxIj4gICAgICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJyIiAgICAgICAgICAgICAgICBiZWdpbj0iLTAuOXMiIGR1cj0iMS40cyIgICAgICAgICAgICAgICAgdmFsdWVzPSIxOyAyMCIgICAgICAgICAgICAgICAgY2FsY01vZGU9InNwbGluZSIgICAgICAgICAgICAgICAga2V5VGltZXM9IjA7IDEiICAgICAgICAgICAgICAgIGtleVNwbGluZXM9IjAuMTY1LCAwLjg0LCAwLjQ0LCAxIiAgICAgICAgICAgICAgICByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgLz4gICAgICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJzdHJva2Utb3BhY2l0eSIgICAgICAgICAgICAgICAgYmVnaW49Ii0wLjlzIiBkdXI9IjEuNHMiICAgICAgICAgICAgICAgIHZhbHVlcz0iMTsgMCIgICAgICAgICAgICAgICAgY2FsY01vZGU9InNwbGluZSIgICAgICAgICAgICAgICAga2V5VGltZXM9IjA7IDEiICAgICAgICAgICAgICAgIGtleVNwbGluZXM9IjAuMywgMC42MSwgMC4zNTUsIDEiICAgICAgICAgICAgICAgIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPiAgICAgICAgPC9jaXJjbGU+ICAgIDwvZz48L3N2Zz4=) no-repeat 50% 50%;
}

.iziModal .iziModal-content:before,
.iziModal .iziModal-content:after {
  content: "";
  display: table;
}

.iziModal .iziModal-content:after {
  clear: both;
}

.iziModal .iziModal-content {
  zoom: 1;
  width: 100%;
  position: relative;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
}

.iziModal .iziModal-wrap {
  width: 90%;
  margin: 0 auto;
  position: relative;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

@media only screen and (max-width: 768px) {
  .iziModal .iziModal-wrap {
    width: 100%;
    padding: 5vh 10%;
  }
}
.iziModal .iziModal-iframe {
  border: 0;
  margin: 0 0 -6px 0;
  width: 100%;
  transition: height 0.3s ease;
}

.iziModal-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10000 !important;
}

.iziModal-navigate {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 100008 !important;
}

.iziModal-navigate-caption {
  position: absolute;
  left: 10px;
  top: 10px;
  color: white;
  line-height: 16px;
  font-size: 9px;
  font-family: "Lato", Arial;
  letter-spacing: 0.1em;
  text-indent: 0;
  text-align: center;
  width: 70px;
  padding: 5px 0;
  text-transform: uppercase;
  display: none;
}

.iziModal-navigate-caption::before, .iziModal-navigate-caption::after {
  position: absolute;
  top: 2px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 14px;
  font-size: 12px;
  content: "";
  background-size: 100% !important;
}

.iziModal-navigate-caption:before {
  left: 0;
}

.iziModal-navigate-caption:after {
  right: 0;
}

.iziModal-navigate > button {
  position: fixed;
  bottom: 0;
  top: 0;
  border: 0;
  height: 100%;
  width: 54px;
  background-size: 100% !important;
  cursor: pointer;
  padding: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: all;
  margin: 0;
  outline: none;
}

.iziModal-navigate > button:hover {
  opacity: 1;
}

.iziModal-navigate-prev {
  left: 51%;
  position: relative;
  background: transparent;
}
.iziModal-navigate-prev:before {
  content: "";
  width: 30px;
  height: 30px;
  top: 50%;
  margin-top: -15px;
  position: absolute;
  background: url(../img/common/arrow-left.svg) no-repeat;
  filter: invert(99%) sepia(0%) saturate(257%) hue-rotate(24deg) brightness(114%) contrast(100%);
}
.iziModal-navigate-next {
  right: 51%;
  position: relative;
  background: transparent;
}
.iziModal-navigate-next:before {
  content: "";
  width: 30px;
  height: 30px;
  left: -7px;
  top: 50%;
  margin-top: -15px;
  position: absolute;
  background: url(../img/common/arrow-right.svg) no-repeat;
  filter: invert(99%) sepia(0%) saturate(257%) hue-rotate(24deg) brightness(114%) contrast(100%);
}

@media only screen and (max-width: 768px) {
  .iziModal-navigate > button {
    position: fixed;
    bottom: 0;
    top: 40%;
    border: 0;
    height: 50px;
    width: 40px;
    background-size: 100% !important;
    cursor: pointer;
    padding: 0;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: all;
    margin: 0;
    outline: none;
  }
  .iziModal-navigate-prev {
    left: 76%;
  }
  .iziModal-navigate-next {
    right: 77%;
  }
}
.iziModal.isAttachedTop .iziModal-header {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.iziModal.isAttachedTop {
  margin-top: 0 !important;
  margin-bottom: auto !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.iziModal.isAttachedBottom {
  margin-top: auto !important;
  margin-bottom: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.iziModal.isFullscreen {
  max-width: 100% !important;
  margin: 0 !important;
  height: 100% !important;
  border-radius: 0 !important;
}

.iziModal.isAttached {
  border-radius: 0 !important;
}

.iziModal.hasScroll .iziModal-wrap {
  overflow-y: auto;
  overflow-x: hidden;
}

html.iziModal-isOverflow {
  overflow: hidden;
}

html.iziModal-isOverflow body, html.iziModal-isAttached body {
  overflow-y: scroll;
  position: relative;
}

html.iziModal-isAttached {
  overflow: hidden;
}

/* SCROLL */
.iziModal ::-webkit-scrollbar {
  overflow: visible;
  height: 7px;
  width: 7px;
}

.iziModal ::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
  border: solid transparent;
  border-width: 0px;
  min-height: 28px;
  padding: 100px 0 0;
  box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.07);
}

.iziModal ::-webkit-scrollbar-thumb:active {
  background-color: rgba(0, 0, 0, 0.4);
}

.iziModal ::-webkit-scrollbar-button {
  height: 0;
  width: 0;
}

.iziModal ::-webkit-scrollbar-track {
  background-clip: padding-box;
  border: solid transparent;
  border-width: 0 0 0 2px;
}

/* MODAL ANIMATIONS */
.iziModal.transitionIn .iziModal-header {
  animation: iziM-slideDown 0.7s cubic-bezier(0.7, 0, 0.3, 1);
}

.iziModal.transitionIn .iziModal-header .iziModal-header-icon {
  animation: iziM-revealIn 1s cubic-bezier(0.16, 0.81, 0.32, 1) both;
}

.iziModal.transitionIn .iziModal-header .iziModal-header-title, .iziModal.transitionIn .iziModal-header .iziModal-header-subtitle {
  animation: iziM-slideIn 1s cubic-bezier(0.16, 0.81, 0.32, 1) both;
}

.iziModal.transitionIn .iziModal-header .iziModal-button {
  animation: iziM-revealIn 1.2s cubic-bezier(0.7, 0, 0.3, 1);
}

.iziModal.transitionIn .iziModal-iframe, .iziModal.transitionIn .iziModal-wrap {
  animation: iziM-fadeIn 1.3s;
}

.iziModal.transitionIn .iziModal-header {
  -webkit-animation-delay: 0s;
  -moz-animation: 0s;
  animation-delay: 0s;
}

.iziModal.transitionIn .iziModal-header .iziModal-header-icon,
.iziModal.transitionIn .iziModal-header .iziModal-header-title {
  -webkit-animation-delay: 0.4s;
  -moz-animation: 0.4s;
  animation-delay: 0.4s;
}

.iziModal.transitionIn .iziModal-header .iziModal-header-subtitle {
  -webkit-animation-delay: 0.5s;
  -moz-animation: 0.5s;
  animation-delay: 0.5s;
}

.iziModal.transitionOut .iziModal-header, .iziModal.transitionOut .iziModal-header * {
  transition: none !important;
}

/* ANIMATIONS */
.iziModal.fadeOut, .iziModal-overlay.fadeOut, .iziModal-navigate.fadeOut, .iziModal .fadeOut {
  animation: iziM-fadeOut 0.5s;
  animation-fill-mode: forwards;
}

.iziModal.fadeIn, .iziModal-overlay.fadeIn, .iziModal-navigate.fadeIn, .iziModal .fadeIn {
  animation: iziM-fadeIn 0.5s;
}

.iziModal.comingIn, .iziModal-overlay.comingIn {
  animation: iziM-comingIn 0.5s ease;
}

.iziModal.comingOut, .iziModal-overlay.comingOut {
  animation: iziM-comingOut 0.5s cubic-bezier(0.16, 0.81, 0.32, 1);
  animation-fill-mode: forwards;
}

.iziModal.bounceInDown, .iziModal-overlay.bounceInDown {
  animation: iziM-bounceInDown 0.7s ease;
}

.iziModal.bounceOutDown, .iziModal-overlay.bounceOutDown {
  animation: iziM-bounceOutDown 0.7s ease;
}

.iziModal.bounceInUp, .iziModal-overlay.bounceInUp {
  animation: iziM-bounceInUp 0.7s ease;
}

.iziModal.bounceOutUp, .iziModal-overlay.bounceOutUp {
  animation: iziM-bounceOutUp 0.7s ease;
}

.iziModal.fadeInDown, .iziModal-overlay.fadeInDown {
  animation: iziM-fadeInDown 0.7s cubic-bezier(0.16, 0.81, 0.32, 1);
}

.iziModal.fadeOutDown, .iziModal-overlay.fadeOutDown {
  animation: iziM-fadeOutDown 0.5s ease;
}

.iziModal.fadeInUp, .iziModal-overlay.fadeInUp {
  animation: iziM-fadeInUp 0.7s cubic-bezier(0.16, 0.81, 0.32, 1);
}

.iziModal.fadeOutUp, .iziModal-overlay.fadeOutUp {
  animation: iziM-fadeOutUp 0.5s ease;
}

.iziModal.fadeInLeft, .iziModal-overlay.fadeInLeft {
  animation: iziM-fadeInLeft 0.7s cubic-bezier(0.16, 0.81, 0.32, 1);
}

.iziModal.fadeOutLeft, .iziModal-overlay.fadeOutLeft {
  animation: iziM-fadeOutLeft 0.5s ease;
}

.iziModal.fadeInRight, .iziModal-overlay.fadeInRight {
  animation: iziM-fadeInRight 0.7s cubic-bezier(0.16, 0.81, 0.32, 1);
}

.iziModal.fadeOutRight, .iziModal-overlay.fadeOutRight {
  animation: iziM-fadeOutRight 0.5s ease;
}

.iziModal.flipInX, .iziModal-overlay.flipInX {
  animation: iziM-flipInX 0.7s ease;
}

.iziModal.flipOutX, .iziModal-overlay.flipOutX {
  animation: iziM-flipOutX 0.7s ease;
}
@keyframes iziM-comingIn {
  0% {
    opacity: 0;
    /*transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );*/
    transform: scale(0.9) translateY(-20px) perspective(600px) rotateX(10deg);
  }
  100% {
    opacity: 1;
    /*transform: scale(1) translateY(0) perspective( 600px ) rotateX( 0 ); */
    transform: scale(1) translateY(0) perspective(600px) rotateX(0);
  }
}
@keyframes iziM-comingOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}
@keyframes iziM-fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes iziM-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes iziM-slideIn {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes iziM-slideDown {
  0% {
    opacity: 0;
    transform: scale(1, 0) translateY(-40px);
    transform-origin: center top;
  }
}
@keyframes iziM-revealIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 1);
  }
}
@keyframes iziM-bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -1000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes iziM-bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 1000px, 0);
  }
}
@keyframes iziM-bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 1000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes iziM-bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -1000px, 0);
  }
}
@keyframes iziM-fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes iziM-fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }
}
@keyframes iziM-fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes iziM-fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100px, 0);
  }
}
@keyframes iziM-fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-200px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes iziM-fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-200px, 0, 0);
  }
}
@keyframes iziM-fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(200px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes iziM-fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(200px, 0, 0);
  }
}
@keyframes iziM-flipInX {
  0% {
    transform: perspective(400px) rotateX(60deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes iziM-flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 40deg);
    opacity: 0;
  }
}
.iziModal {
  border-radius: 20px !important;
}
.iziModal .iziModal-wrap {
  width: 100%;
  margin: -50px auto 0;
  height: 100% !important;
}
.iziModal .iziModal-content {
  height: 100%;
  width: 80%;
  margin: 50px auto 0;
  overflow: visible;
}
.iziModal::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  border-radius: 20px;
  opacity: 0.5;
  background: linear-gradient(to right, rgb(238, 138, 170) 0%, rgb(176, 205, 111) 52%, rgb(0, 158, 138) 100%);
}
.iziModal::after {
  content: "";
  position: absolute;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  top: 8px;
  left: 8px;
  z-index: -1;
  border-radius: 18px;
  background: white;
  opacity: 1;
}
.iziModal .modal_itemlist {
  position: relative;
}
.iziModal .modal_itemlist .photo {
  width: 50%;
  position: relative;
}
.iziModal .modal_itemlist .photo img {
  border-radius: 16px;
}
.iziModal .txtbox {
  width: 50%;
  margin: 0;
  padding: 0 0 0 30px;
  position: relative;
}
.iziModal .txtbox .name {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-main);
}
.iziModal .txtbox .name span {
  font-size: 12px;
  margin: 0 0 0 3px;
}
.iziModal .txtbox .txt {
  margin: 10px 0 0;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-main);
}
.iziModal .bg_txt {
  bottom: -14px;
  right: -12%;
  width: 39px;
}
.iziModal .bg_txt_2 {
  bottom: -46px;
  right: -12%;
  width: 39px;
}