/*===============================
reset
================================*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: justify;
}

html,
body,
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 {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-size: 100%;
}

body {
  line-height: 1;
}

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

button {
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
}

nav ul {
  list-style: none;
}

ol,
ul {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  color: #212121;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

blockquote,
q {
  quotes: none;
}

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

table, td, th {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea {
  resize: vertical;
}

/*===============================
base
================================*/
html {
  font-weight: 700;
  color: #212121;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 1px;
}

body {
  position: relative;
  z-index: 100;
  font-size: clamp(0.813rem, 0.727rem + 0.36vw, 1rem);
}

.wrap {
  width: calc(100% - 60px);
  max-width: 1500px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .wrap {
    width: calc(100% - 100px);
  }
}

.palmtop {
  display: block !important;
}
@media screen and (min-width: 1024px) {
  .palmtop {
    display: none !important;
  }
}

.laptop {
  display: none !important;
}
@media screen and (min-width: 1024px) {
  .laptop {
    display: block !important;
  }
}

/*===============================
layout
================================*/
/*
header
================
================*/
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
}
.site-header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.site-header .container .logo {
  padding-left: 15px;
}
@media screen and (min-width: 1024px) {
  .site-header .container .logo {
    padding-left: 30px;
  }
}
.site-header .container .logo img {
  width: 200px;
}
@media screen and (min-width: 1200px) {
  .site-header .container .logo img {
    width: 250px;
  }
}
.site-header .container .hbg {
  position: relative;
  width: 50px;
  height: 50px;
  background: #0F3092;
  cursor: pointer;
  pointer-events: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1024px) {
  .site-header .container .hbg {
    display: none;
  }
}
.site-header .container .hbg__inner {
  position: relative;
  width: 30px;
  height: 20px;
}
.site-header .container .hbg__line {
  position: absolute;
  background: #fff;
  width: 100%;
  height: 3px;
  -webkit-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.site-header .container .hbg__line:first-child {
  top: 0;
}
.site-header .container .hbg__line:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.site-header .container .hbg__line:nth-child(3n) {
  bottom: 0;
}
.site-header .container .is-hbg .hbg__line:first-child {
  -webkit-transform: translateY(8.5px) rotate(45deg);
          transform: translateY(8.5px) rotate(45deg);
}
.site-header .container .is-hbg .hbg__line:nth-child(2) {
  opacity: 0;
}
.site-header .container .is-hbg .hbg__line:nth-child(3) {
  -webkit-transform: translateY(-8.5px) rotate(-45deg);
          transform: translateY(-8.5px) rotate(-45deg);
}
.site-header .container .drawer {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100 - 50px);
  background: #fff;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (min-width: 1024px) {
  .site-header .container .drawer {
    display: none;
  }
}
.site-header .container .drawer__item {
  border-top: 1px solid #0F3092;
}
.site-header .container .drawer__item:last-child {
  border-bottom: 1px solid #0F3092;
}
.site-header .container .drawer__item--arrow a {
  position: relative;
  padding: 20px 15px;
  display: block;
}
.site-header .container .drawer__item--arrow a:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 7px);
  right: 15px;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top right;
  width: 13px;
  height: 13px;
  background-image: url(../../../assets/images/common/drawer-icon-arrow.svg);
}
.site-header .container .drawer__item--add .drawer__text--trg {
  position: relative;
  padding: 20px 15px;
  display: block;
  cursor: pointer;
}
.site-header .container .drawer__item--add .drawer__text--trg:after {
  content: "";
  display: block;
  position: absolute;
  cursor: pointer;
  pointer-events: auto;
  top: calc(50% - 6px);
  right: 15px;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top right;
  width: 13px;
  height: 13px;
  background-image: url(../../../assets/images/common/drawer-icon-add.svg);
  -webkit-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.site-header .container .drawer__item--add .is-rotate:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.site-header .container .drawer__item--add .drawer__inner {
  display: none;
  padding-bottom: 20px;
}
.site-header .container .drawer__item--add .drawer__inner__list__item {
  padding-left: 15px;
}
.site-header .container .drawer__item--add .drawer__inner__list__item:not(:first-child) {
  margin-top: 15px;
}
.site-header .container .drawer__item--add .drawer__inner__list__item a {
  position: relative;
  display: inline-block;
  padding-right: 20px;
  padding-left: 15px;
}
.site-header .container .drawer__item--add .drawer__inner__list__item a:before, .site-header .container .drawer__item--add .drawer__inner__list__item a:after {
  content: "";
  display: block;
  position: absolute;
}
.site-header .container .drawer__item--add .drawer__inner__list__item a:before {
  top: 4px;
  left: 0;
  width: 8px;
  height: 8px;
  background: #0F3092;
  border-radius: 100vh;
}
.site-header .container .drawer__item--add .drawer__inner__list__item a:after {
  top: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top right;
  width: 13px;
  height: 13px;
  background-image: url(../../../assets/images/common/drawer-icon-arrow.svg);
}
.site-header .container .drawer__sns-list {
  margin-top: 25px;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.site-header .container .drawer__sns-list__item {
  width: 25px;
}
.site-header .container .drawer__sns-list__item:not(:first-child) {
  margin-left: 15px;
}
.site-header .container .drawer__other {
  margin-top: 25px;
  padding: 0 15px 50px;
  font-size: 12px;
}
.site-header .container .is-drawer {
  opacity: 1;
  pointer-events: auto;
}
.site-header .container .inner {
  display: none;
}
@media screen and (min-width: 1024px) {
  .site-header .container .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
  }
}
.site-header .container .inner__menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.site-header .container .inner__menu-list .item:not(:first-child) {
  margin-left: 20px;
}
@media screen and (min-width: 1200px) {
  .site-header .container .inner__menu-list .item:not(:first-child) {
    margin-left: 30px;
  }
}
.site-header .container .inner__menu-list .item a {
  position: relative;
  display: inline-block;
  padding: 20px 0;
}
@media screen and (min-width: 1200px) {
  .site-header .container .inner__menu-list .item a {
    padding: 25px 0;
  }
}
.site-header .container .inner__menu-list .item a:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #0F3092;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (min-width: 1024px) {
  .site-header .container .inner__menu-list .item a:hover:before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}
.site-header .container .inner__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 20px;
}
@media screen and (min-width: 1200px) {
  .site-header .container .inner__btns {
    margin-left: 30px;
  }
}
.site-header .container .inner__btns .btn:first-child a {
  background: #212121;
  border: 1px solid #212121;
}
@media screen and (min-width: 1024px) {
  .site-header .container .inner__btns .btn:first-child a:before {
    background: #fff;
  }
}
@media screen and (min-width: 1024px) {
  .site-header .container .inner__btns .btn:first-child a:hover .btn__text {
    color: #212121;
  }
}
@media screen and (min-width: 1024px) {
  .site-header .container .inner__btns .btn:first-child a:hover .btn__icon path {
    fill: #212121;
  }
}
.site-header .container .inner__btns .btn:nth-child(2) a {
  background: #0F3092;
  border: 1px solid #0F3092;
  border-left: none;
}
@media screen and (min-width: 1024px) {
  .site-header .container .inner__btns .btn:nth-child(2) a:before {
    background: #fff;
  }
}
@media screen and (min-width: 1024px) {
  .site-header .container .inner__btns .btn:nth-child(2) a:hover .btn__text {
    color: #0F3092;
  }
}
@media screen and (min-width: 1024px) {
  .site-header .container .inner__btns .btn:nth-child(2) a:hover .btn__icon path {
    fill: #0F3092;
  }
}
.site-header .container .inner__btns .btn a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
  width: 135px;
  padding: 20px 10px;
}
@media screen and (min-width: 1200px) {
  .site-header .container .inner__btns .btn a {
    width: 160px;
    padding: 25px 20px;
  }
}
.site-header .container .inner__btns .btn a:before {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (min-width: 1024px) {
  .site-header .container .inner__btns .btn a:before {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .site-header .container .inner__btns .btn a:hover:before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}
.site-header .container .inner__btns .btn a .btn__text, .site-header .container .inner__btns .btn a .btn__icon {
  position: relative;
  z-index: 10;
}
.site-header .container .inner__btns .btn a .btn__text {
  -webkit-transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.site-header .container .inner__btns .btn a .btn__icon svg {
  width: 14px;
}
.site-header .container .inner__btns .btn a .btn__icon svg path {
  fill: #fff;
  -webkit-transition: fill 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: fill 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.site-header .mega-menu {
  display: none;
  -webkit-transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
          box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
@media screen and (min-width: 1024px) {
  .site-header .mega-menu {
    opacity: 0;
    pointer-events: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    z-index: 100;
    top: 56px;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .site-header .mega-menu {
    top: 67px;
  }
}
.site-header .mega-menu__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 25%;
  -moz-text-align-last: center;
       text-align-last: center;
  background: #212121;
  color: #fff;
}
.site-header .mega-menu__title--en {
  font-family: "Anton", sans-serif;
  font-size: 35px;
}
.site-header .mega-menu__title--ja {
  margin-top: 10px;
}
.site-header .mega-menu__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 25px;
  background: #f7f7f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.site-header .mega-menu__list .item {
  position: relative;
  margin-top: 25px;
  width: calc(33.3% - 16.6px);
  margin-right: 25px;
}
.site-header .mega-menu__list .item:nth-child(3n) {
  margin-right: 0;
}
.site-header .mega-menu__list .item:nth-child(-n+3) {
  margin-top: 0;
}
.site-header .mega-menu__list .item:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(15%, hsla(0, 0%, 100%, 0)), to(rgba(0, 0, 0, 0.6)));
  background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 15%, rgba(0, 0, 0, 0.6));
}
.site-header .mega-menu__list .item a {
  position: relative;
  display: block;
  color: #fff;
}
.site-header .mega-menu__list .item a:hover .img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.site-header .mega-menu__list .item a .img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.site-header .mega-menu__list .item a .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.site-header .mega-menu__list .item a .title {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  font-size: 18px;
  text-align: center;
}
.site-header .is-mega-menu-active {
  opacity: 1;
  pointer-events: auto;
}

/*
main
================================*/
.site-main {
  position: relative;
  z-index: 10;
}
.site-main__information {
  position: relative;
  z-index: 10;
  background: #0F3092;
}
.site-main__information .sec-title {
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .site-main__information .information-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.site-main__information .information-list .item {
  opacity: 0;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  position: relative;
  margin-top: 50px;
  -webkit-transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (min-width: 1024px) {
  .site-main__information .information-list .item {
    width: calc(33.3% - 16.6px);
    margin-right: 25px;
  }
}
.site-main__information .information-list .item:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .site-main__information .information-list .item:nth-child(2n) {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
}
@media screen and (min-width: 768px) {
  .site-main__information .information-list .item:nth-child(3n) {
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__information .information-list .item:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__information .information-list .item:nth-child(-n+3) {
    margin-top: 0;
  }
}
.site-main__information .information-list .item:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(25%, hsla(0, 0%, 100%, 0)), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 25%, rgba(0, 0, 0, 0.5));
  pointer-events: none;
}
@media screen and (min-width: 1024px) {
  .site-main__information .information-list .item:before {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, hsla(0, 0%, 100%, 0)), to(rgba(0, 0, 0, 0.6)));
    background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 20%, rgba(0, 0, 0, 0.6));
  }
}
.site-main__information .information-list .item a {
  display: block;
}
@media screen and (min-width: 1024px) {
  .site-main__information .information-list .item a:hover .img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.site-main__information .information-list .item a .img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.site-main__information .information-list .item a .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.site-main__information .information-list .item a .title {
  color: #fff;
  position: absolute;
  z-index: 10;
  bottom: 25px;
  left: 25px;
}
@media screen and (min-width: 1024px) {
  .site-main__information .information-list .item a .title {
    bottom: 35px;
    left: 35px;
  }
}
.site-main__information .information-list .item a .title__en {
  font-family: "Anton", sans-serif;
  font-size: 35px;
}
@media screen and (min-width: 1024px) {
  .site-main__information .information-list .item a .title__en {
    font-size: 45px;
  }
}
.site-main__information .information-list .item a .title__ja {
  margin-top: 10px;
  font-weight: 900;
}
.site-main__information .information-list .item.is-in {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.site-main--page {
  margin-top: 50px;
}
@media screen and (min-width: 1024px) {
  .site-main--page {
    margin-top: 55px;
  }
}
@media screen and (min-width: 1200px) {
  .site-main--page {
    margin-top: 65px;
  }
}
.site-main--page .page-title {
  position: relative;
  z-index: 10;
  color: #0F3092;
}
.site-main--page .page-title:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 85%;
  height: 100%;
  background: #0F3092;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-transform-origin: right;
          transform-origin: right;
}
.site-main--page .page-title__en, .site-main--page .page-title__ja {
  overflow: hidden;
}
.site-main--page .page-title__en span, .site-main--page .page-title__ja span {
  display: inline-block;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  background: #fff;
}
.site-main--page .page-title__en {
  font-family: "Anton", sans-serif;
  letter-spacing: -1px;
  font-size: clamp(3.125rem, 1.705rem + 6.06vw, 6.25rem);
}
.site-main--page .page-title__en span {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
  padding: 2px 5px 0 0;
}
@media screen and (min-width: 768px) {
  .site-main--page .page-title__en span {
    padding: 3px 7px 0 0;
  }
}
.site-main--page .page-title__ja {
  font-size: 15px;
  font-weight: 900;
  margin-top: 7.5px;
}
.site-main--page .page-title__ja span {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  padding: 0 0 1px;
}
@media screen and (min-width: 768px) {
  .site-main--page .page-title__ja {
    font-size: 20px;
    margin-top: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main--page .page-title__ja {
    font-size: 25px;
  }
}
.site-main--page .page-title.is-in:before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.site-main--page .page-title.is-in span {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.site-main--page .page-block .page-thumb {
  position: relative;
  aspect-ratio: 16/9;
  opacity: 0;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-filter 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-filter 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-filter 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (min-width: 1024px) {
  .site-main--page .page-block .page-thumb {
    aspect-ratio: 1000/400;
  }
}
.site-main--page .page-block .page-thumb img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.site-main--page .page-block .page-thumb.is-in {
  opacity: 1 !important;
  -webkit-filter: blur(0) !important;
          filter: blur(0) !important;
}

/*
footer
================================*/
.site-footer {
  position: relative;
  z-index: 5;
}
.site-footer .contact {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .site-footer .contact {
    padding: 100px 0;
  }
}
.site-footer .contact .catch {
  overflow: hidden;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: clamp(3.125rem, 1.705rem + 6.06vw, 6.25rem);
}
.site-footer .contact .catch__en, .site-footer .contact .catch__ja {
  overflow: hidden;
}
.site-footer .contact .catch__en span, .site-footer .contact .catch__ja span {
  display: inline-block;
  -webkit-transform: translateY(110%);
          transform: translateY(110%);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.site-footer .contact .catch__en {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.188rem, 1.051rem + 4.85vw, 4.688rem);
}
.site-footer .contact .catch__en__text {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .site-footer .contact .catch__en__text {
    display: inline-block;
  }
}
.site-footer .contact .catch__en__text span {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.site-footer .contact .catch__ja {
  margin-top: 15px;
  font-size: clamp(0.938rem, 0.795rem + 0.61vw, 1.25rem);
}
@media screen and (min-width: 1024px) {
  .site-footer .contact .catch__ja {
    margin-top: 25px;
  }
}
.site-footer .contact .catch__ja span {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.site-footer .contact .catch.is-in span {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 768px) {
  .site-footer .contact .blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.site-footer .contact .blocks .block {
  display: block;
  padding: 25px;
  background: #fff;
  -moz-text-align-last: center;
       text-align-last: center;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .site-footer .contact .blocks .block {
    margin-top: 0;
    width: calc(50% - 25px);
    margin-right: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .site-footer .contact .blocks .block {
    padding: 50px;
  }
}
.site-footer .contact .blocks .block:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .site-footer .contact .blocks .block:nth-child(2) {
    margin-right: 0;
  }
}
.site-footer .contact .blocks .block .title__en {
  font-family: "Anton", sans-serif;
  font-size: 35px;
}
@media screen and (min-width: 1024px) {
  .site-footer .contact .blocks .block .title__en {
    font-size: 45px;
  }
}
.site-footer .contact .blocks .block .title__ja {
  margin-top: 10px;
  font-weight: 900;
}
.site-footer .contact .blocks .block .desc {
  margin-top: 15px;
  line-height: 1.5em;
}
@media screen and (min-width: 1024px) {
  .site-footer .contact .blocks .block .desc {
    margin-top: 25px;
  }
}
.site-footer .contact .blocks .block .btn {
  margin-top: 20px;
}
@media screen and (min-width: 1024px) {
  .site-footer .contact .blocks .block .btn {
    margin-top: 30px;
  }
}
.site-footer .contact .blocks .block .btn a {
  position: relative;
  display: block;
  padding: 15px 0;
  border: 3px solid #0F3092;
}
.site-footer .contact .blocks .block .btn a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0F3092;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (min-width: 768px) {
  .site-footer .contact .blocks .block .btn a {
    padding: 25px 0;
  }
}
@media screen and (min-width: 1024px) {
  .site-footer .contact .blocks .block .btn a:hover:before {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  .site-footer .contact .blocks .block .btn a:hover span {
    color: #fff;
  }
}
.site-footer .contact .blocks .block .btn a span {
  position: relative;
  z-index: 10;
  display: inline-block;
  font-family: "Anton", sans-serif;
  color: #0F3092;
  font-size: clamp(0.938rem, 0.511rem + 1.82vw, 1.875rem);
  -webkit-transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.site-footer .container {
  background: #fff;
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .site-footer .container {
    padding: 100px 0;
  }
}
.site-footer .container .logo {
  text-align: center;
}
.site-footer .container .logo img {
  width: 200px;
}
@media screen and (min-width: 1200px) {
  .site-footer .container .logo img {
    width: 250px;
  }
}
.site-footer .container .address {
  margin-top: 20px;
  text-align: center;
  line-height: 1.4em;
}
.site-footer .container .menu-list {
  padding-top: 50px;
  margin-top: 45px;
  margin-bottom: 50px;
  border-top: 1px solid #efefef;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .site-footer .container .menu-list {
    font-size: 13px;
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 1024px) {
  .site-footer .container .menu-list {
    gap: 15px;
    -ms-flex-wrap: initial;
        flex-wrap: initial;
  }
}
.site-footer .container .menu-list .item {
  color: #0F3092;
  width: calc((100% - 25px) / 2);
  margin-top: 25px;
}
@media screen and (min-width: 1024px) {
  .site-footer .container .menu-list .item {
    margin-top: 0;
    width: calc((100% - 105px) / 8);
    word-break: keep-all;
  }
}
.site-footer .container .menu-list .item:nth-child(2n) {
  margin-right: 0;
}
.site-footer .container .menu-list .item:nth-child(-n+2) {
  margin-top: 0;
}
.site-footer .container .menu-list .item a {
  color: #0F3092;
  display: inline-block;
  letter-spacing: 0;
}
.site-footer .container .menu-list .item .inner-list {
  margin-top: 15px;
}
.site-footer .container .menu-list .item .inner-list__item:not(:first-child) {
  margin-top: 10px;
}
.site-footer .container .menu-list .item .inner-list__item a {
  color: #aaa;
}
.site-footer .container .cp {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0;
}

.site-footer--page {
  background: #0F3092;
}
.site-footer--page .contact {
  border-top: 1px solid #fff;
}

/*===============================
module
================================*/
/*
title-style
================================*/
.sec-title {
  margin-bottom: clamp(3.125rem, 1.705rem + 6.06vw, 6.25rem);
  color: #0F3092;
}
.sec-title__en, .sec-title__ja {
  overflow: hidden;
}
.sec-title__en span, .sec-title__ja span {
  display: inline-block;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.sec-title__en {
  font-family: "Anton", sans-serif;
  letter-spacing: -1px;
  font-size: clamp(3.125rem, 1.705rem + 6.06vw, 6.25rem);
}
.sec-title__en span {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.sec-title__ja {
  font-size: 15px;
  font-weight: 900;
  margin-top: 7.5px;
}
.sec-title__ja span {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
@media screen and (min-width: 768px) {
  .sec-title__ja {
    font-size: 20px;
    margin-top: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .sec-title__ja {
    font-size: 25px;
  }
}
.sec-title.is-in span {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*
btn-style
================================*/
.more-btn {
  margin-top: 50px;
  -moz-text-align-last: center;
       text-align-last: center;
}
.more-btn a {
  position: relative;
  display: block;
  padding: 15px 0;
  border: 3px solid #0F3092;
}
.more-btn a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0F3092;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (min-width: 768px) {
  .more-btn a {
    padding: 25px 0;
  }
}
@media screen and (min-width: 1024px) {
  .more-btn a:hover:before {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  .more-btn a:hover span {
    color: #fff;
  }
}
.more-btn a span {
  position: relative;
  z-index: 10;
  display: inline-block;
  font-family: "Anton", sans-serif;
  color: #0F3092;
  font-size: clamp(0.938rem, 0.511rem + 1.82vw, 1.875rem);
  -webkit-transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/*
form-style
================================*/
.form-style .form-list .item:not(:first-child) {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .form-style .form-list .item:not(:first-child) {
    margin-top: 50px;
  }
}
.form-style .form-list .item dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-style .form-list .item dt .mark {
  margin-left: 15px;
  display: inline-block;
  padding: 5px;
  background: #cc0000;
  color: #fff;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .form-style .form-list .item dt .mark {
    margin-left: 20px;
    font-size: 14px;
  }
}
.form-style .form-list .item dd {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .form-style .form-list .item dd {
    margin-top: 25px;
  }
}
.form-style .form-list .item dd input[type=text], .form-style .form-list .item dd input[type=tel], .form-style .form-list .item dd input[type=email], .form-style .form-list .item dd select, .form-style .form-list .item dd textarea {
  padding: 10px;
  border: 1px solid #ccc;
  width: 100%;
  font-size: 16px;
  background: #f7f7f7;
}
@media screen and (min-width: 768px) {
  .form-style .form-list .item dd input[type=text], .form-style .form-list .item dd input[type=tel], .form-style .form-list .item dd input[type=email], .form-style .form-list .item dd select, .form-style .form-list .item dd textarea {
    padding: 15px;
  }
}
.form-style .form-list .item dd select {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
.form-style .form-list .item dd textarea {
  line-height: 1.5em;
}
.form-style .form-list .item dd .mwform-checkbox-field {
  display: block;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .form-style .form-list .item dd .mwform-checkbox-field {
    display: inline-block;
  }
}
.form-style .form-list .item dd .mwform-checkbox-field:not(:first-child) {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .form-style .form-list .item dd .mwform-checkbox-field:not(:first-child) {
    margin-top: 0;
    margin-left: 15px;
  }
}
.form-style .form-list .item dd .mwform-checkbox-field label input[type=checkbox] {
  margin: 0 5px 0 0;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.form-style .form-list .item dd .mwform-checkbox-field label span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
.form-style .form-list .item dd .error {
  display: inline-block;
  margin-top: 15px;
}
.form-style .btns {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .form-style .btns {
    margin-top: 50px;
  }
}
.form-style .btns .btn {
  width: calc(50% - 12.5px);
  margin-right: 25px;
}
.form-style .btns .btn:nth-child(2n) {
  margin-right: 0;
}
.form-style .btns .btn input {
  text-align: center;
  display: block;
  border: none;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.813rem, 0.727rem + 0.36vw, 1rem);
  font-weight: 700;
  padding: 15px 0;
}
@media screen and (min-width: 768px) {
  .form-style .btns .btn input {
    padding: 30px 0;
  }
}
.form-style .btns .btn--back input {
  background: #efefef;
}
.form-style .btns .btn--submit input {
  background: #0F3092;
  color: #fff;
}

/*
news-style
================================*/
.news-list .item {
  border-top: 1px solid #efefef;
  opacity: 0;
  -webkit-transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.news-list .item:last-child {
  border-bottom: 1px solid #efefef;
}
.news-list .item a {
  position: relative;
  padding: 15px 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .news-list .item a {
    padding: 25px 0;
  }
}
@media screen and (min-width: 1024px) {
  .news-list .item a:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0F3092;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .news-list .item a:hover:before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .news-list .item a:hover .thumb img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .news-list .item a:hover .info {
    color: #fff !important;
  }
  .news-list .item a:hover .title {
    color: #fff !important;
  }
  .news-list .item a:hover .icon svg path {
    fill: #fff !important;
  }
}
@media screen and (min-width: 768px) {
  .news-list .item a .column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.news-list .item a .column .thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .news-list .item a .column .thumb {
    width: 200px;
    margin-right: 25px;
  }
}
@media screen and (min-width: 1024px) {
  .news-list .item a .column .thumb {
    width: 250px;
    margin-left: 25px;
    margin-right: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .news-list .item a .column .thumb {
    width: 300px;
  }
}
.news-list .item a .column .thumb img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.news-list .item a .column .noimg {
  border: 1px solid #fff;
}
.news-list .item a .column .contents {
  position: relative;
  z-index: 10;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .news-list .item a .column .contents {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
  }
}
.news-list .item a .column .contents .inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 25px;
}
@media screen and (min-width: 1024px) {
  .news-list .item a .column .contents .inner {
    padding-right: 50px;
  }
}
.news-list .item a .column .contents .inner .info {
  font-family: "Anton", sans-serif;
  color: #aaa;
  letter-spacing: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  -webkit-transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (min-width: 768px) {
  .news-list .item a .column .contents .inner .info {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .news-list .item a .column .contents .inner .info {
    font-size: 21px;
  }
}
.news-list .item a .column .contents .inner .info__category {
  margin-left: 10px;
}
@media screen and (min-width: 1024px) {
  .news-list .item a .column .contents .inner .info__category {
    margin-left: 20px;
  }
}
.news-list .item a .column .contents .inner .title {
  margin-top: 10px;
  line-height: 1.4em;
  -webkit-transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (min-width: 768px) {
  .news-list .item a .column .contents .inner .title {
    margin-top: 15px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .news-list .item a .column .contents .inner .title {
    font-size: 18px;
    max-width: 500px;
  }
}
.news-list .item a .column .contents .icon {
  width: 15px;
}
@media screen and (min-width: 1024px) {
  .news-list .item a .column .contents .icon {
    width: 20px;
  }
}
.news-list .item a .column .contents .icon svg path {
  -webkit-transition: fill 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: fill 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.news-list .item.is-in {
  opacity: 1;
}

/*
transition-overlay
================================*/
.transition-overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  pointer-events: none;
  -webkit-transition: top 0.65s cubic-bezier(0.25, 1, 0.5, 1);
  transition: top 0.65s cubic-bezier(0.25, 1, 0.5, 1);
  background: #0F3092;
}
.transition-overlay__logo {
  position: absolute;
  z-index: 10000;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.transition-overlay__logo img {
  width: 200px;
}
@media screen and (min-width: 768px) {
  .transition-overlay__logo img {
    width: 300px;
  }
}

.is-transition-end {
  top: -100%;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.is-transition-end .transition-overlay__logo {
  opacity: 0;
}

/*
space
================================*/
.pad-tb {
  padding: clamp(4.688rem, 2.557rem + 9.09vw, 9.375rem) 0;
}

.mar-tb {
  margin: clamp(4.688rem, 2.557rem + 9.09vw, 9.375rem) 0;
}

.pad-t {
  padding-top: clamp(4.688rem, 2.557rem + 9.09vw, 9.375rem);
}

.pad-b {
  padding-bottom: clamp(4.688rem, 2.557rem + 9.09vw, 9.375rem);
}

/*
align
================================*/
.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

/*
font
================================*/
.ja {
  font-family: "Noto Sans JP", sans-serif;
}

.en {
  font-family: "Anton", sans-serif;
}

/*
font-weight
================================*/
/*
color
================================*/
/*
paragraph
================================*/
/*
animation
================================*/
.anim-text span {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.anim-text-slideIn span {
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
}

.anim-blur {
  -webkit-filter: blur(10px);
          filter: blur(10px);
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.anim-blur-visible {
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
}

.anim-line:before {
  -webkit-filter: blur(10px);
          filter: blur(10px);
  opacity: 0;
  -webkit-transition: all 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.55s cubic-bezier(0.25, 1, 0.5, 1);
}

.anim-line-visible:before {
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 0.2 !important;
}