@charset "UTF-8";
:root {
  --color-bg: #fff;
  --color-bg-rgb: 255, 255, 255;
  --color-gray: #F5F5F5;
  --color-footer-bg: #3788DE;
  --text-black:#101820;
  --main-gray-color:#E5E5E5;
  --color-primary:#3788DE;
  --color-secondary:#FFAB1A;
  --color-danger:#ff0000;
  --font-langJa:"Noto Sans JP",sans-serif;
  --font-langEn: "Poppins", sans-serif;
  --font-langNum: "Poppins", sans-serif;
  --pc-width:1400;
  --contents-width:1272;
  --contents-width-px:calc(var(--contents-width) * 1px);
  --blue1: linear-gradient(180deg, #3788DE 0%, #37BADE 100%);
  --blue2: #2F59AD;
  --blue4:linear-gradient(270deg, #285DC7 3.34%, #2F59AD 100%);
  --radius-xs: 8px;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
}

html {
  width: 100%;
  min-height: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-size: 62.5%;
}

body {
  width: 100%;
  min-height: 100%;
  height: 100%;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--text-black);
  background-color: var(--color-bg);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  text-rendering: optimizeLegibility;
}
@media (max-width: 767px) {
  body {
    font-size: 1.5rem;
    overflow-x: hidden;
  }
}

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

@media (min-width: 767px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
img, svg {
  max-width: 100%;
  height: auto;
}

:where(:focus-visible) {
  outline: 3px solid Highlight;
  outline-offset: 2px;
}

.l-main {
  position: relative;
  display: block;
}

body:not(.home) .l-main {
  padding-top: 70px;
}
@media (max-width: 1024px) {
  body:not(.home) .l-main {
    padding-top: 56px;
  }
}

.l-inner {
  margin: 0 auto;
  width: 92%;
  max-width: var(--contents-width-px);
}
@media (max-width: 767px) {
  .l-inner {
    width: calc(335 / 375 * 100%);
  }
}
.l-inner.--small {
  max-width: 800px;
}
.l-inner.--medium {
  max-width: 1060px;
}
.l-inner.--fluid {
  width: 100%;
  max-width: 1920px;
}

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

/**********************
* utility
**********************/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
.u-link {
  text-decoration: underline;
  text-underline-offset: 0.25em;
  outline: none;
}
.u-link:hover, .u-link:active, .u-link:focus {
  text-decoration: none;
}

.u-min {
  font-family: var(--font-min);
  font-weight: 400;
  font-style: normal;
}

.u-en {
  font-family: var(--font-langEn);
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.u-tal {
  text-align: left;
}

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

.u-tar {
  text-align: right;
}

.u-fwb {
  font-weight: 700;
}

.u-red {
  color: #FF0000;
}

.u-theme-color {
  color: var(--color-primary);
}

.bg-white {
  background-color: #fff;
}

.bg-theme-color {
  background-color: var(--color-primary);
}

.bg-blue1 {
  background-image: var(--blue1);
}

.bg-blue2 {
  background-color: var(--blue2);
}

.bg-blue4 {
  background-image: var(--blue4);
}

.bg-gray {
  background-color: var(--color-gray);
}

.u-tt-uc {
  text-transform: uppercase;
}

/**********************
* header
***********************/
.l-header {
  position: fixed;
  top: 0%;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 100;
  transition: 0.75s height ease-in-out;
  transition-property: opacity, height, background-color;
  padding: 0px;
  background-color: #fff;
  -webkit-backface-visibility: hidden;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
@media (max-width: 1024px) {
  .l-header {
    height: 56px;
  }
}
.l-header .l-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  height: 100%;
  max-width: 1224px;
  width: 94%;
}
@media (max-width: 1024px) {
  .l-header .l-inner {
    width: 92%;
  }
}

.home:not(.is-mv-hide) .l-header {
  background-color: transparent;
  filter: none;
  transform: translateY(30px);
}
@media (max-width: 1024px) {
  .home:not(.is-mv-hide) .l-header {
    transform: translateY(10px);
  }
}
.home:not(.is-mv-hide) .l-header .l-inner {
  padding-left: 4%;
  padding-right: 1%;
  background-color: #fff;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border-radius: 60px;
  transition: 0.3s ease-in-out all;
}

.header-logo {
  position: relative;
  width: 237px;
}
@media (max-width: 767px) {
  .header-logo {
    width: 178px;
  }
}
.header-logo a {
  display: block;
}

/**********************
* PC header
**********************/
.header-nav.--pc {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: inherit;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-in-out;
  transition-property: opacity, visibility;
}
.header-nav.--pc .gnav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-transform: uppercase;
  height: 100%;
}
.header-nav.--pc .gnav__item {
  position: relative;
  height: inherit;
  margin-left: 26px;
}
.header-nav.--pc .gnav__item.--contact {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 41px;
}
.header-nav.--pc .gnav__item.--contact .gnav__link {
  padding: 0.25em 1em;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  color: var(--text-black);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  background-color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  height: 42px;
  width: 169px;
  border-radius: 40px;
  transition: color ease-in 0.3s;
  transition-property: color, background-color;
}
.header-nav.--pc .gnav__item.--contact .gnav__link span {
  position: relative;
  display: inline-block;
}
.header-nav.--pc .gnav__item.--contact .gnav__link span::before, .header-nav.--pc .gnav__item.--contact .gnav__link span:after {
  display: none;
}
.header-nav.--pc .gnav__item.--contact .gnav__link:hover, .header-nav.--pc .gnav__item.--contact .gnav__link:focus {
  background-color: #fff;
}
.header-nav.--pc .gnav__item.--contact .gnav__link:hover span::before, .header-nav.--pc .gnav__item.--contact .gnav__link:focus span::before {
  background-color: #fff;
}
.header-nav.--pc .gnav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  color: var(--text-black);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 150%;
  height: inherit;
}
.header-nav.--pc .gnav__link span {
  position: relative;
  padding: 0.25em 0;
  display: inline-block;
}
.header-nav.--pc .gnav__link span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 20px;
  height: 5px;
  background: url(../img/common/menu_line.svg) no-repeat center/contain;
  opacity: 1;
  transition: 0.3s ease-in-out opacity;
}
.header-nav.--pc .gnav__link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 5px;
  background: url(../img/common/menu_hover.svg) repeat-x left/contain;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: -webkit-clip-path 0.5s ease;
  transition: clip-path 0.5s ease;
  transition: clip-path 0.5s ease, -webkit-clip-path 0.5s ease;
  opacity: 1;
}
.header-nav.--pc .gnav__link:hover span::before, .header-nav.--pc .gnav__link:focus span::before {
  opacity: 0;
}
.header-nav.--pc .gnav__link:hover span::after, .header-nav.--pc .gnav__link:focus span::after {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

@media (max-width: 1024px) {
  .header-nav.--pc {
    display: none;
  }
}
/*****
* SP drawer
**********************/
.header-nav.--sp {
  display: none;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .header-nav.--sp .nav-logo {
    display: none !important;
  }
}
.header-nav.--sp {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 100px;
}
@media (max-width: 1024px) {
  .header-nav.--sp {
    display: flex;
  }
}
.header-nav.--sp .nav-logo {
  position: fixed;
  top: 11px;
  left: 8.5%;
  flex-shrink: 0;
}
.header-nav.--sp .nav-logo a {
  display: block;
  width: 174px;
}
.header-nav.--sp .nav-logo a img {
  width: 100%;
}
.header-nav.--sp .nav-logo a {
  position: relative;
  display: block;
  height: 100%;
}
.header-nav.--sp .gnav {
  margin-top: 120px;
  display: block;
  width: 100%;
  padding: 0 2em 0 calc(2em + 15%);
}
.header-nav.--sp .gnav__item {
  position: relative;
  padding: 0.25em 0 0.75em 0;
  width: 100%;
  display: flex;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  flex-direction: column;
}
.header-nav.--sp .gnav__item:nth-child(n+2) {
  margin-top: 20px;
}
.header-nav.--sp .gnav__item:not(.--contact)::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 36px;
  height: 8px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-image: url(../img/common/title_wave.svg);
          mask-image: url(../img/common/title_wave.svg);
  background-color: var(--color-secondary);
}
.header-nav.--sp .gnav__item.--contact {
  margin-top: 56px;
}
.header-nav.--sp .gnav__item.--contact .gnav__link {
  padding: 1em 1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: var(--text-black);
  width: 180px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.05em;
  background-color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  border-radius: 40px;
  transition: color ease-in 0.3s;
  transition-property: color, background-color;
}
.header-nav.--sp .gnav__item.--contact .gnav__link span {
  position: relative;
  display: inline-block;
}
.header-nav.--sp .gnav__item.--contact .gnav__link:hover, .header-nav.--sp .gnav__item.--contact .gnav__link:focus {
  background-color: #fff;
}
.header-nav.--sp .gnav__link {
  position: relative;
  display: block;
  padding: 0;
}
.header-nav.--sp .gnav__link span {
  position: relative;
}
.header-nav.--sp .gnav__link:hover span::before, .header-nav.--sp .gnav__link:focus span::before, .header-nav.--sp .gnav__link:active span::before {
  width: 100%;
}
.header-nav.--sp .gnav__child {
  margin-top: 12px;
}
.header-nav.--sp .gnav__item__child {
  position: relative;
  padding: 0 0 0 1em;
}
.header-nav.--sp .gnav__link__child {
  display: block;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
}
.header-nav.--sp .gnav__link__child span {
  position: relative;
  display: inline-block;
  padding-right: 1em;
}
.header-nav.--sp .gnav__link__child span::before {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-image: url(../img/common/submenu_arrow.svg);
          mask-image: url(../img/common/submenu_arrow.svg);
  background-color: #fff;
}

/* メニュー表示設定*/
.header-nav.--sp {
  position: fixed;
  top: 0;
  right: 0;
  color: #fff;
  background-image: url(../img/common/bg_menu02_sp.png);
  background-repeat: repeat-y;
  background-size: 100% 624px;
  background-position: top left;
  width: 100%;
  max-width: 410px;
  height: 100vh;
  transition: 0.3s ease-out 0s;
  transition-property: opacity, visibility;
  z-index: 100;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .header-nav.--sp {
    max-width: 100%;
  }
}

.is-drawerActive .header-nav.--sp {
  opacity: 1;
  visibility: visible;
}

/******************************
* ハンバーガーメニュー
*******************************/
.hamburger {
  display: none;
}

@media (max-width: 1024px) {
  .hamburger {
    position: fixed;
    content: "";
    top: 8px;
    right: 4%;
    bottom: 0;
    left: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 101;
    outline: 0;
    border: 0;
    width: 40px;
    height: 40px;
    transition: background-color 0.3s cubic-bezier(0.23, 1, 0.58, 1);
    background-color: var(--color-secondary);
    border-radius: 100%;
  }
  .hamburger__line {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: background 0.2s cubic-bezier(0.23, 1, 0.58, 1);
    margin: auto;
    border-radius: 0.25em;
    background-color: var(--color-primary);
    width: 20px;
    height: 2px;
  }
  .hamburger__line:after, .hamburger__line:before {
    display: block;
    position: absolute;
    content: "";
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.58, 1), top 0.2s cubic-bezier(0.23, 1, 0.58, 1) 0.2s;
    border-radius: inherit;
    background-color: inherit;
    width: 100%;
    height: 100%;
  }
  .hamburger__line:before {
    top: -6px;
  }
  .hamburger__line:after {
    top: 6px;
  }
  .is-drawerActive .hamburger__line {
    background-color: transparent;
  }
  .is-drawerActive .hamburger__line:after,
.is-drawerActive .hamburger__line:before {
    top: 0;
    background-color: var(--color-primary);
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.58, 1) 0.2s, top 0.2s cubic-bezier(0.23, 1, 0.58, 1);
  }
  .is-drawerActive .hamburger__line:before {
    transform: rotate(-45deg);
  }
  .is-drawerActive .hamburger__line:after {
    transform: rotate(45deg);
  }
}
/**********************
* footer
***********************/
.l-footer {
  position: relative;
  z-index: 0;
  padding: 47px 0 36px;
  background-color: var(--color-footer-bg);
  color: #fff;
}
@media (max-width: 767px) {
  .l-footer {
    padding: 47px 0 16px;
  }
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  max-width: 1316px;
}
.footer-logo {
  width: 230px;
}
@media (max-width: 767px) {
  .footer-logo {
    width: 230px;
  }
}

.footer-logo__link {
  display: block;
}
.footer-logo__link img {
  width: 100%;
}

.footer-gnav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.3rem;
  font-weight: 700;
  font-style: normal;
  gap: 0 40px;
}
@media (max-width: 767px) {
  .footer-gnav {
    display: none;
  }
}

.footer-gnav__link:hover, .footer-gnav__link:focus {
  opacity: 0.6;
}

.report-box {
  margin-top: 20px;
}

.report{
  font-size: 1.3rem;
  font-weight: 700;
  font-style: normal;
  text-decoration: underline;
}

.report:hover {
  opacity: 0.6;
}

.report::before {
  content: "";
  display: inline-block;
  background-image: url(../img/common/icon_pdf.svg);
  width: 20px;
  aspect-ratio: 1 / 1;
  margin-right: 8px;
  vertical-align: middle;
}

.footer-address {
  margin-top: 28px;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 190%;
}
@media (max-width: 767px) {
  .footer-address {
    margin-top: 30px;
    font-size: 1.4rem;
  }

  .report-box {
  margin-top: 40px;
}

.report{
  font-size: 1.5rem;
  font-weight: 500;
}
}
.footer-address li {
  position: relative;
  padding-left: 1.5em;
}
.footer-address li::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 0;
}

.footer-relation {
  margin-top: 48px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0 24px;
}
@media (max-width: 767px) {
  .footer-relation {
    margin-top: 32px;
    gap: 12px 24px;
    flex-wrap: wrap;
  }
}

.footer-relation__link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 20px;
}
.footer-relation__link:hover, .footer-relation__link:focus {
  opacity: 0.6;
}
.footer-relation__link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer-relation__txtlink {
  text-decoration: underline;
}

.c-copy {
  margin-top: 16px;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 767px) {
  .c-copy {
    margin-top: 100px;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
  }
}

/**********************
* common
***********************/
.c-title01 {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
@media (max-width: 767px) {
  .c-title01 {
    gap: 6px 0;
  }
}
.c-title01.--center {
  align-items: center;
}
@media (max-width: 767px) {
  .c-title01.--sp-right {
    align-items: flex-end;
  }
  .c-title01.--sp-center {
    align-items: center;
  }
  .c-title01.--sp-left {
    align-items: flex-start;
  }
}
.c-title01 .ja {
  font-size: 3.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .c-title01 .ja {
    font-size: 2.8rem;
  }
}
.c-title01 .en {
  display: inline-block;
  text-transform: capitalize;
  font-family: var(--font-langEn);
  font-style: normal;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, #3788DE 0%, #37BADE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (max-width: 767px) {
  .c-title01 .en {
    font-size: 1.2rem;
  }
}

.c-title02 {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
@media (max-width: 767px) {
  .c-title02 {
    gap: 0;
  }
}
.c-title02.--right {
  align-items: flex-end;
}
.c-title02.--center {
  align-items: center;
}
.c-title02.--left {
  align-items: flex-start;
}
@media (max-width: 767px) {
  .c-title02.--sp-right {
    align-items: flex-end;
  }
  .c-title02.--sp-center {
    align-items: center;
  }
  .c-title02.--sp-left {
    align-items: flex-start;
  }
}
.c-title02 .ja {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .c-title02 .ja {
    font-size: 2rem;
  }
}
.c-title02 .en {
  display: inline-block;
  text-transform: capitalize;
  font-family: var(--font-langEn);
  font-style: normal;
  font-size: 7.4rem;
  font-weight: 600;
  letter-spacing: 0.005em;
}
@media (max-width: 767px) {
  .c-title02 .en {
    font-size: 6.4rem;
    font-weight: 600;
    letter-spacing: 0.005em;
  }
}

.c-subtitle01 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.45;
  font-size: min(2.85vw,40px);
  color: var(--color-primary);
}
@media (max-width: 767px) {
  .c-subtitle01 {
    font-size: 2.4rem;
    font-size: min(6.4vw,24px);
  }
}

.c-button01 {
  position: relative;
  display: flex;
  padding: 1em 2em 1em 2.5em;
  color: var(--text-black);
  background-color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  font-size: 18px;
  font-style: normal;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 600;
  border-radius: 40px;
  text-transform: capitalize;
  transition: color ease-in 0.3s;
  transition-property: color, background-color;
}
.c-button01::after {
  content: "";
  display: block;
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25em;
  height: 1.25em;
  -webkit-mask-image: url(../img/common/icon_arrow.svg);
          mask-image: url(../img/common/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #fff;
  transition: color ease-in 0.3s;
  transition-property: color, background-color, right;
}
.c-button01:hover, .c-button01:focus {
  background-color: #fff;
}
.c-button01:hover::after, .c-button01:focus::after {
  background-color: var(--color-secondary);
  right: 1em;
}

.c-button02 {
  padding: 1em 1em;
  display: block;
  text-transform: uppercase;
  border: 1px solid #fff;
  text-align: center;
}

.c-text01 {
  font-size: 1.6rem;
  line-height: 180%;
}
@media (max-width: 767px) {
  .c-text01 {
    font-size: 1.4rem;
  }
}

.c-text02 {
  font-size: 1.6rem;
  line-height: 180%;
}
@media (max-width: 767px) {
  .c-text02 {
    font-size: 1.6rem;
  }
}

.c-text03 {
  font-size: 1.5rem;
  font-weight: 100;
  line-height: 170%;
}
@media (max-width: 767px) {
  .c-text03 {
    font-size: 1.4rem;
  }
}

.c-list01 li {
  position: relative;
  padding-left: 1.5em;
}
.c-list01 li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.c-list02 {
  counter-reset: number 0;
}
.c-list02 li {
  position: relative;
  padding-left: 1em;
}
.c-list02 li::before {
  content: counter(number) ".";
  counter-increment: number 1;
  position: absolute;
  left: 0;
  top: 0;
}

/*********************
* totop
********************/
.totop {
  display: none;
  position: fixed;
  z-index: 90;
  width: 70px;
  right: 15px;
  bottom: 55px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .totop {
    width: 70px;
  }
}
.totop img {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 91;
}
.totop::before {
  position: absolute;
  right: -18%;
  bottom: 76%;
  z-index: 90;
  content: "";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 208/211;
  pointer-events: none;
  background: url(../img/common/totop_chara.png) no-repeat center/contain;
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: 0.3s ease-in-out opacity, 0.3s ease-in-out visibility, 0.3s ease-in-out transform;
}

.totop.is-show {
  display: block;
}
.totop.is-show:hover::before, .totop.is-show:focus::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*************************
* bubble
**************************/
.c-bubble {
  width: 39px;
  height: auto;
}

/*************************
* wave
**************************/
.bg-wave-buttom {
  position: relative;
}
.bg-wave-buttom::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 100px;
  -webkit-mask-image: url(../img/common/bg_wave.svg);
          mask-image: url(../img/common/bg_wave.svg);
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
  -webkit-mask-size: auto 100%;
          mask-size: auto 100%;
  -webkit-mask-position: bottom left;
          mask-position: bottom left;
  background-color: var(--color-primary);
  -webkit-animation: waveMove 10s linear infinite;
          animation: waveMove 10s linear infinite;
}
.bg-wave-buttom[data-wave=white]::before {
  background-color: #fff;
}
.bg-wave-buttom[data-wave=blue1]::before {
  background-color: var(--blue1);
}
.bg-wave-buttom[data-wave=gray]::before {
  background-color: var(--color-gray);
}

@-webkit-keyframes waveMove {
  from {
    mask-position: 0 100%;
    -webkit-mask-position: 0 100%;
  }
  to {
    mask-position: -800px 100%;
    -webkit-mask-position: -800px 100%;
  }
}

@keyframes waveMove {
  from {
    mask-position: 0 100%;
    -webkit-mask-position: 0 100%;
  }
  to {
    mask-position: -800px 100%;
    -webkit-mask-position: -800px 100%;
  }
}
/*************************
* illustration
**************************/
.kid_green {
  aspect-ratio: 1/1;
  background: url(../img/animation/kid_green.png) no-repeat 0 0;
  -webkit-animation: coma2 0.5s steps(1) infinite;
          animation: coma2 0.5s steps(1) infinite;
  background-size: 200% auto;
}

.kid_orange {
  aspect-ratio: 1/1;
  background: url(../img/animation/kid_orange.png) no-repeat 0 0;
  -webkit-animation: coma2 0.5s steps(1) infinite;
          animation: coma2 0.5s steps(1) infinite;
  background-size: 200% auto;
}

.kid_yellow {
  aspect-ratio: 1/1;
  background: url(../img/animation/kid_yellow.png) no-repeat 0 0;
  -webkit-animation: coma2 0.5s steps(1) infinite;
          animation: coma2 0.5s steps(1) infinite;
  background-size: 200% auto;
}

.lady_blue {
  aspect-ratio: 1/1;
  background: url(../img/animation/lady_blue.png) no-repeat 0 0;
  -webkit-animation: coma2 0.5s steps(1) infinite;
          animation: coma2 0.5s steps(1) infinite;
  background-size: 200% auto;
}

.lady_orange {
  aspect-ratio: 1/1;
  background: url(../img/animation/lady_orange.png) no-repeat 0 0;
  -webkit-animation: coma2 0.5s steps(1) infinite;
          animation: coma2 0.5s steps(1) infinite;
  background-size: 200% auto;
}

.lady_denim {
  aspect-ratio: 1/1;
  background: url(../img/animation/lady_denim.png) no-repeat 0 0;
  -webkit-animation: coma2 0.5s steps(1) infinite;
          animation: coma2 0.5s steps(1) infinite;
  background-size: 200% auto;
}

.man_blue {
  aspect-ratio: 1/1;
  background: url(../img/animation/man_blue.png) no-repeat 0 0;
  -webkit-animation: coma2 0.5s steps(1) infinite;
          animation: coma2 0.5s steps(1) infinite;
  background-size: 200% auto;
}

.man_box {
  aspect-ratio: 1/1;
  background: url(../img/animation/man_box.png) no-repeat 0 0;
  -webkit-animation: coma2 0.5s steps(1) infinite;
          animation: coma2 0.5s steps(1) infinite;
  background-size: 200% auto;
}

.man_gray {
  aspect-ratio: 1/1;
  background: url(../img/animation/man_gray.png) no-repeat 0 0;
  -webkit-animation: coma2 0.5s steps(1) infinite;
          animation: coma2 0.5s steps(1) infinite;
  background-size: 200% auto;
}

.man_guid {
  aspect-ratio: 1/1;
  background: url(../img/animation/man_guid.png) no-repeat 0 0;
  -webkit-animation: coma2 0.5s steps(1) infinite;
          animation: coma2 0.5s steps(1) infinite;
  background-size: 200% auto;
}

.man_hose {
  aspect-ratio: 1/1;
  background: url(../img/animation/man_hose.png) no-repeat 0 0;
  -webkit-animation: coma2 0.5s steps(1) infinite;
          animation: coma2 0.5s steps(1) infinite;
  background-size: 200% auto;
}

.man_spana {
  aspect-ratio: 1/1;
  background: url(../img/animation/man_spana.png) no-repeat 0 0;
  -webkit-animation: coma3 0.5s steps(1) infinite;
          animation: coma3 0.5s steps(1) infinite;
  background-size: 300% auto;
}

.man_stand {
  aspect-ratio: 1/1;
  background: url(../img/animation/man_stand.png) no-repeat 0 0;
  -webkit-animation: coma2 0.5s steps(1) infinite;
          animation: coma2 0.5s steps(1) infinite;
  background-size: 200% auto;
}

.man_walk {
  aspect-ratio: 1/1;
  background: url(../img/animation/man_walk.png) no-repeat 0 0;
  -webkit-animation: coma2 0.5s steps(1) infinite;
          animation: coma2 0.5s steps(1) infinite;
  background-size: 200% auto;
}

.man_water {
  aspect-ratio: 216/167;
  background: url(../img/animation/man_water.png) no-repeat 0 0;
  -webkit-animation: coma2 0.5s steps(1) infinite;
          animation: coma2 0.5s steps(1) infinite;
  background-size: 200% auto;
}

.drone01 {
  aspect-ratio: 1/1;
  background: url(../img/animation/drone02.png) no-repeat center/contain;
  -webkit-animation: drone01 3.5s infinite;
          animation: drone01 3.5s infinite;
}

.man_drone {
  aspect-ratio: 1/1;
  background: url(../img/animation/man_drone.png) no-repeat center/contain;
}


.fumikiri{
  aspect-ratio: 24/65;
  background: url(../img/animation/fumikiri.png) no-repeat center/contain;
  -webkit-animation: coma2 1s steps(1) infinite;
          animation: coma2 1s steps(1) infinite;
  background-size: 200% auto;
}

@-webkit-keyframes coma2 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 100% 0;
  }
}

@keyframes coma2 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 100% 0;
  }
}
@-webkit-keyframes coma3 {
  0% {
    background-position: 50% 0;
  }
  25% {
    background-position: 0 0;
  }
  50% {
    background-position: 50% 0;
  }
  75% {
    background-position: 100% 0;
  }
}
@keyframes coma3 {
  0% {
    background-position: 50% 0;
  }
  25% {
    background-position: 0 0;
  }
  50% {
    background-position: 50% 0;
  }
  75% {
    background-position: 100% 0;
  }
}
@-webkit-keyframes drone01 {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(-10%);
  }
  70% {
    transform: translateY(10%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes drone01 {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(-10%);
  }
  70% {
    transform: translateY(10%);
  }
  100% {
    transform: translateY(0%);
  }
}
/*************************
* animation
**************************/
.js-animation[data-type=fadeIn] {
  visibility: hidden;
  opacity: 0;
  transition: 0.9s ease-out;
  transition-property: opacity, visibility;
}

.js-animation[data-type=fadeIn].is-show {
  visibility: visible;
  opacity: 1;
}

.js-animation[data-type=fadeInLeft] {
  transform: translate(-30px, 0);
  opacity: 0;
  transition: 0.9s ease-out;
  transition-property: opacity, transform;
}

.js-animation[data-type=fadeInLeft].is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.js-animation[data-type=fadeInRight] {
  transform: translate(30px, 0);
  opacity: 0;
  transition: 0.9s ease-out;
  transition-property: opacity, transform;
}

.js-animation[data-type=fadeInRight].is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.js-animation[data-type=fadeInUp] {
  transform: translate(0, 30px);
  opacity: 0;
  transition: 0.9s ease-out;
  transition-property: opacity, transform;
}

.js-animation[data-type=fadeInUp].is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.js-animation[data-type=chgScale] {
  opacity: 0;
  transform: scale(0.6);
  transform-origin: center;
  transition: 0.3s ease-in-out;
  transition-property: opacity, transform;
}

.js-animation[data-type=chgScale].is-show {
  opacity: 1;
  transform: scale(1);
}

.js-animation[data-type=burIn] {
  opacity: 0;
  transition: 1s ease-out;
  transition-property: opacity, filter;
  filter: blur(20px);
}

.js-animation[data-type=burIn].is-show {
  opacity: 1;
  filter: blur(0);
}

.js-animation[data-type=lineTop] {
  position: relative;
}
.js-animation[data-type=lineTop]::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 0%;
  height: 1px;
  display: block;
  background-color: #000;
  transition: 0.9s 0.3s cubic-bezier(0, 0, 0, 1.02) width;
  z-index: 2;
}

.js-animation[data-type=lineTop].is-show::before {
  width: 100%;
}

.js-animation[data-type=lineBottom] {
  position: relative;
}
.js-animation[data-type=lineBottom]::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 0%;
  height: 1px;
  display: block;
  background-color: #000;
  transition: 0.9s 0.3s cubic-bezier(0, 0, 0, 1.02) width;
  z-index: 2;
}

.js-animation[data-type=lineBottom].is-show::before {
  width: 100%;
}

.js-animation[data-type=lineRight] {
  position: relative;
}
.js-animation[data-type=lineRight]::before {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  width: 1px;
  height: 0%;
  display: block;
  background-color: #000;
  transition: 0.9s 0.3s cubic-bezier(0, 0, 0, 1.02) height;
  z-index: 2;
}

.js-animation[data-type=lineRight].is-show::before {
  height: 100%;
}

.js-animation[data-type=lineLeft] {
  position: relative;
}
.js-animation[data-type=lineLeft]::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 1px;
  height: 0%;
  display: block;
  background-color: #000;
  transition: 0.9s 0.3s cubic-bezier(0, 0, 0, 1.02) height;
  z-index: 2;
}

.js-animation[data-type=lineLeft].is-show::before {
  height: 100%;
}

.js-animation[data-type=clipLeft] {
  transition: 1s ease-in-out 0.3s;
  transition-property: opacity, -webkit-clip-path;
  transition-property: opacity, clip-path;
  transition-property: opacity, clip-path, -webkit-clip-path;
  opacity: 0;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}

.js-animation[data-type=clipLeft].is-show {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  opacity: 1;
}

.js-animation[data-type=clipRight] {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
          animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
}

.js-animation[data-type=clipRight].is-show {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.js-animation[data-type=clipTop] {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
          animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
}

.js-animation[data-type=clipTop].is-show {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.js-animation[data-type=clipBottom] {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
          animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}

.js-animation[data-type=clipclipBottomTop].is-show {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

/* アニメーション */
.js-text-animation .char {
  display: inline-block;
  opacity: 0;
}

.js-text-animation.is-show .char {
  -webkit-animation: opacityIn 0.9s ease-in-out 1s forwards;
          animation: opacityIn 0.9s ease-in-out 1s forwards;
}

@-webkit-keyframes opacityIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes opacityIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes burIn {
  0% {
    opacity: 0;
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes burIn {
  0% {
    opacity: 0;
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}