@charset "UTF-8";
.loadBg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  opacity: 1;
  transition: 0.5s;
  transition-timing-function: ease-out;
  transform-origin: right;
  pointer-events: none;
}
@media (max-width: 768px) {
  .loadBg {
    height: 100svh;
  }
}

.loadBg.inview {
  opacity: 0;
  transition-delay: 1.5s;
}

.loadBg .loadBg--img {
  z-index: 999999999;
  max-width: 180px;
}
.loadBg #loadProgressive {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999;
  display: none;
  margin: 0px;
  width: 100vw;
  height: 100vh;
  transform-origin: bottom;
}
.loadBg .mask {
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: 600px;
  max-height: 340px;
  width: 80%;
  background-color: #eaf7ff;
  background-image: url(../img/common/loading-wave02.png), url(../img/common/loading-wave01.png);
  background-position: -100% -150%, 100% -150%;
  background-size: 150%;
  background-repeat: repeat-x;
  transition: 6s;
  transform: translate(-50%, -50%);
  -webkit-mask-image: url(../img/common/path.svg);
  mask-image: url(../img/common/path.svg);
  -webkit-mask-position-y: center;
  mask-position-y: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: 100%;
}
@media (max-width: 768px) {
  .loadBg .mask {
    max-width: 300px;
    max-height: 180px;
  }
}

.grecaptcha-badge {
  display: none !important;
}

.fixed__wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
}
@media (min-width: 980px) {
  .fixed__wrapper {
    width: 800px;
  }
}

@media (max-width: 979px) {
  .fixed__wrapper {
    box-sizing: border-box;
    padding: 0 10px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .fixed__wrapper {
    box-sizing: border-box;
    padding: 0 16px;
    width: 100%;
  }
}
.circle {
  display: inline-block;
  padding: 0px 10px;
  border: 1px solid var(--sub-bg-color);
  border-radius: 20px;
}

.circle--black {
  border: 1px solid #000;
  background-color: #000;
  color: var(--main-bg-color);
}

@media (max-width: 979px) {
  .spView {
    display: block;
  }

  .spView.flex {
    display: flex;
  }
}
@media (min-width: 980px) {
  .spView {
    display: none;
  }

  .spView.flex {
    display: none;
  }
}
@media (max-width: 979px) {
  .pcView {
    display: none;
  }

  .pcView.flex {
    display: none;
  }
}
.tabletView {
  display: none;
}

@media (min-width: 980px) {
  .pcView {
    display: block;
  }

  .pcView.flex {
    display: flex;
  }
}
@media screen and (min-width: 768px) and (max-width: 979px) {
  .tabletView {
    display: block;
  }

  .tabletNotView {
    display: none;
  }
}
.none {
  display: none !important;
}

.noneOp {
  opacity: 0 !important;
  pointer-events: none;
}

.instagram {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 120px;
  padding: 40px;
  padding-top: 120px;
  border-radius: 20px;
  background-color: #fff;
}
.instagram div {
  position: relative;
  overflow: hidden;
  margin-right: 25px;
  margin-bottom: 25px;
  padding-bottom: calc(25% - 18.8px);
  width: calc(25% - 18.8px);
  height: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.instagram div a::before {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  content: "♡" attr(data-likes);
  text-align: center;
  transition: 0.3s;
  transform: translateX(-100%);
}
.instagram div a:hover::before {
  transform: translateX(0%);
}
.instagram div:nth-child(4n) {
  margin-right: 0;
}
.instagram div:nth-child(n+5) {
  margin-bottom: 0;
}

@media (max-width: 979px) {
  .instagram {
    margin-bottom: 80px;
    padding: 60px;
    padding-top: 15%;
  }
  .instagram div {
    position: relative;
    overflow: hidden;
    margin-right: 30px;
    margin-bottom: 30px;
    padding-bottom: calc(50% - 30px);
    width: calc(50% - 15px);
    height: 0;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .instagram div:nth-child(2n) {
    margin-right: 0;
  }
  .instagram div:nth-child(n+5) {
    margin-bottom: 30px;
  }
  .instagram div:nth-child(n+7) {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .instagram {
    margin-bottom: 80px;
    padding: 16px;
    padding-top: 18%;
  }
  .instagram div {
    position: relative;
    overflow: hidden;
    margin-right: 20px;
    margin-bottom: 20px;
    padding-bottom: calc(50% - 10px);
    width: calc(50% - 10px);
    height: 0;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .instagram div:nth-child(2n) {
    margin-right: 0;
  }
  .instagram div:nth-child(n+5) {
    margin-bottom: 20px;
  }
  .instagram div:nth-child(n+7) {
    margin-bottom: 0;
  }
}
.footer {
  position: relative;
  z-index: 10;
  box-sizing: border-box;
  background-color: #14202e;
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.4;
}
.footer .wrapper.fixed__wrapper {
  padding: 0px;
  max-width: 800px;
}
@media (max-width: 979px) {
  .footer .wrapper.fixed__wrapper {
    margin: 0 auto;
    padding: 60px 0px;
    width: 80%;
    font-size: 0.7rem;
  }
}
@media (max-width: 768px) {
  .footer .wrapper.fixed__wrapper {
    padding: 30px 0;
    width: 90%;
    font-size: 0.8rem;
  }
}
.footer .flex {
  align-items: center;
}
.footer .flex .box.box--logo {
  max-width: 150px;
}
@media (max-width: 768px) {
  .footer .flex .box.box--logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 40px;
  }
}
.footer .flex .box.box--logo .logo01 {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .footer .flex .box.box--logo .logo01 {
    margin-right: 30px;
    margin-bottom: 0;
  }
}
.footer .flex .box.box--logo .logo02 {
  max-width: 120px;
}
@media (max-width: 768px) {
  .footer .flex .footer-links {
    display: none;
  }
}
.footer .flex .footer-links li {
  width: 25%;
  border-right: solid #fff 1px;
}
.footer .flex .footer-links li a {
  color: #fff;
}
.footer .flex .footer-links li:last-child {
  border-right: none;
}
.footer small {
  display: block;
  margin-bottom: 0;
}

.open,
.close {
  position: relative;
  top: 0%;
  margin-bottom: 16px;
  line-height: 0;
  cursor: pointer;
}

.modaal-close {
  top: 120px !important;
  right: 120px !important;
}

@media (max-width: 768px) {
  .modaal-close {
    top: 60px !important;
    right: 16px !important;
  }
}
.mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 2;
  margin: 0 auto;
  padding: 5%;
  width: 540px;
  border-radius: 4px;
  background: #fff;
  color: #555;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .modal {
    width: calc(90% - 32px);
  }
}
.modal p {
  margin: 0 0 20px;
}

.mask.hidden {
  display: none;
}

.modal.hidden {
  display: none;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #63c4f0 !important;
}

.modaal-overlay {
  background: rgba(0, 0, 0, 0.6) !important;
}

/*----------------------------
* メニュー開閉ボタン
*----------------------------*/
.menu-btn {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 40px;
  background: #333;
  color: #fff;
  transform: translateY(5px);
}
.menu-btn img {
  width: 28px;
}
.menu-btn .menu-btn-img02 {
  display: none;
  width: 22px;
}
.menu-btn.is-active .menu-btn-img {
  display: none;
}
.menu-btn.is-active .menu-btn-img02 {
  display: block;
}
.menu-btn svg {
  transition: 0.3s;
}

.menu-btn.is-active svg {
  fill: #fff;
}

.menu-btn-pc {
  position: absolute;
  right: 220px;
  bottom: 60px;
  display: inline-block;
  width: 150px;
  height: auto;
  border: none;
  background: none;
}

/*----------------------------
* メニュー本体
*----------------------------*/
.menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100svh;
  max-height: 100lvh;
  width: 380px;
  height: 100%;
  background: #14202e;
}
@media (max-width: 768px) {
  .menu {
    justify-content: space-around;
    width: 253.3333333333px;
  }
}
.menu .box01 a {
  display: block;
}
@media (max-width: 979px) {
  .menu .box01 .link-btn-logo01 {
    margin-bottom: 20px;
    width: 120px;
  }
}
@media (max-width: 979px) {
  .menu .box01 .link-btn-logo02 {
    margin: 0 auto;
    width: 96px;
  }
}
@media (max-width: 979px) {
  .menu .box01 p {
    margin-top: 0;
  }
}
.menu .box02 {
  width: calc(100% - 32px);
}
@media (max-width: 979px) {
  .menu .box02 img {
    margin-left: 0.5em;
  }
}
@media (max-width: 979px) {
  .menu .box02 li.menu__item {
    color: #fff;
  }
}
.menu .box02 li.menu__item a {
  display: block;
  text-align: center;
  line-height: 1.4;
}
.menu .box02 li.menu__item a span.nav-link--desc {
  display: block;
  color: #fff;
  font-size: 10px;
}
.menu .box02 .menu__item__menu {
  padding: 0.5em 0.5em 0.5em 0.5em;
  color: #fff;
}
@media (max-width: 979px) {
  .menu .box03 {
    box-sizing: border-box;
    padding: 0 16px;
  }
}
@media (max-width: 979px) {
  .menu .box03 .link-btn {
    display: block;
    box-sizing: border-box;
    padding: 12px 24px;
    width: 100%;
    width: 180px;
    border-radius: 32px;
    background: #b8b0a0;
    color: #14202e;
    text-align: center;
  }
}
.menu .box03 .link-btn .link-icon {
  margin-right: 0.5em;
  width: 1em;
}
.menu .box03 .insta-icon-link {
  display: inline-block;
  margin: 0 auto;
  margin-top: 16px;
  width: 100%;
  text-align: center;
}
.menu .box03 .insta-icon-link img {
  width: 32px;
}

.menu__item {
  z-index: 10000;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  border-bottom: 0.2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}
.menu__item .link-icon {
  width: 1em;
}
.menu__item a {
  display: block;
  padding: 0.5em 0em 0.5em 0.5em;
  color: #fff;
}
.menu-btn.is-active {
  color: #fff;
}

.menu-btn {
  z-index: 10100;
  border: none;
  background: transparent;
  color: #444;
  cursor: pointer;
  transition: 0.3s;
}
.menu-btn i::before {
  font-size: 3rem;
}

.menu-btn.isView {
  display: flex;
}

/*----------------------------
* アニメーション部分
*----------------------------*/
/* アニメーション前のメニューの状態 */
.menu {
  transition: all 0.15s linear;
  transform: translateX(380px);
}
@media (max-width: 768px) {
  .menu {
    color: #3c3c3c;
    transform: translateX(380px)/2;
  }
}

/* アニメーション後のメニューの状態 */
.menu.is-active {
  transform: translateX(0);
}

.menu__click__wrapper {
  position: fixed;
  top: 0;
  right: -100vw;
  z-index: 1111;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
}

.menu__click__wrapper.is-active {
  transform: translateX(-100vw);
}

.burger-wrapper {
  display: block;
  margin: auto;
  width: 36px;
  height: 27px;
  opacity: 1;
  cursor: pointer;
}
@media (max-width: 768px) {
  .burger-wrapper {
    width: 30px;
    height: 24px;
  }
}
.burger-wrapper .hamburger {
  position: relative;
  width: 36px;
  height: 3px;
  background: black;
  transition: background 10ms 300ms ease;
  transform: translateY(12px);
}
@media (max-width: 979px) {
  .burger-wrapper .hamburger {
    background: #fff;
  }
}
@media (max-width: 768px) {
  .burger-wrapper .hamburger {
    width: 30px;
    height: 2px;
  }
}
.burger-wrapper .hamburger:before, .burger-wrapper .hamburger:after {
  position: absolute;
  width: 36px;
  height: 3px;
  background: black;
  content: "";
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, background 300ms 350ms ease;
}
@media (max-width: 979px) {
  .burger-wrapper .hamburger:before, .burger-wrapper .hamburger:after {
    background: #fff;
  }
}
@media (max-width: 768px) {
  .burger-wrapper .hamburger:before, .burger-wrapper .hamburger:after {
    width: 30px;
    height: 2px;
  }
}
.burger-wrapper .hamburger:before {
  top: -9px;
  left: 0;
}
.burger-wrapper .hamburger:after {
  top: 9px;
  left: 0;
}

.menu-trigger:checked ~ .burger-wrapper .hamburger {
  background: transparent;
}
.menu-trigger:checked ~ .burger-wrapper .hamburger:after, .menu-trigger:checked ~ .burger-wrapper .hamburger:before {
  top: 0;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, background 300ms 350ms ease;
}
.menu-trigger:checked ~ .burger-wrapper .hamburger:before {
  background: #fff;
  transform: rotate(45deg);
}
.menu-trigger:checked ~ .burger-wrapper .hamburger:after {
  background: #fff;
  transform: rotate(-45deg);
}

.hidden {
  display: none;
}

.header--logo {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 100;
  z-index: 999;
  width: 200px;
  opacity: 1;
  transform: translateX(calc(-50% - 10px));
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  transition: 1.5s;
  transform: translateY(-100%);
}

header.loaded {
  transform: translateY(0%);
}

.globalNavPc {
  height: 80px;
  background: #fff;
  color: #1e3957;
}
.globalNavPc .nav__wrapper {
  position: relative;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 0 auto;
  max-width: 1200px;
  width: 100%;
  height: 80px;
  background: #fff;
}
.globalNavPc .nav__wrapper .box-left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 40px;
  max-width: 320px;
}
.globalNavPc .nav__wrapper .nav-logo {
  margin-right: 0px;
  max-width: 350px;
  width: 33%;
  line-height: 1;
  transition: 0.3s;
}
@media (max-width: 1080px) {
  .globalNavPc .nav__wrapper .nav-logo {
    width: 25%;
  }
}
@media (max-width: 979px) {
  .globalNavPc .nav__wrapper .nav-logo {
    width: 33%;
  }
}
.globalNavPc .nav__wrapper .nav-logo:hover {
  opacity: 1 !important;
  -webkit-filter: contrast(1.2);
  filter: contrast(1.2);
}
.globalNavPc .nav__wrapper .nav-logo p {
  text-align: center;
  font-size: 14px;
}
@media (max-width: 1080px) {
  .globalNavPc .nav__wrapper .nav-logo p {
    font-size: 10px;
  }
}
@media (max-width: 979px) {
  .globalNavPc .nav__wrapper .nav-logo p {
    font-size: 14px;
  }
}
.globalNavPc .nav__wrapper .nav-logo.nav-logo1 {
  display: inline-block;
  /* width: 100%; */
  /* width: min-content; */
  min-width: 160px;
  max-width: 180px;
}
.globalNavPc .nav__wrapper .nav-logo.nav-logo2 {
  display: inline-block;
  min-width: 120px;
  max-width: 120px;
  width: 33%;
}
.globalNavPc .nav__wrapper .nav-logo.nav-logo2 img {
  min-width: 120px;
  max-width: 120px;
}
.globalNavPc .nav__wrapper .box-right {
  max-width: 880px;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  font-family: "gothic-a1", sans-serif;
}
.globalNavPc .nav__wrapper .box-right .box {
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
}
.globalNavPc .nav__wrapper .box-right .box a.tel {
  margin-right: 20px;
  width: 36%;
  line-height: 0;
}
.globalNavPc .nav__wrapper .box-right .box a.tel img {
  line-height: 0;
}
.globalNavPc .nav__wrapper .box-right .box .btn-bg-blue {
  padding: 6px 32px;
  border-radius: 32px;
  font-size: 18px;
}
.globalNavPc .nav__wrapper .box-right .box .btn-contact {
  margin-left: 20px;
  padding-right: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
}
.globalNavPc .nav__wrapper .box-right .box .btn-contact img {
  margin-right: 0.3em;
  width: 1em;
}
.globalNavPc .nav__wrapper .btn {
  padding: 4px 16px;
  border-radius: 16px;
}
.globalNavPc .nav__wrapper .btn.btn-bg-blue {
  background: #3bbbff;
  color: #fff;
}
.globalNavPc .nav__wrapper .nav-links {
  align-items: center;
  margin-right: 0px;
}
.globalNavPc .nav__wrapper .nav-links .nav-link {
  display: inline-block;
  margin-right: 0.75em;
  margin-left: 0.75em;
  color: #1e3957;
}
.globalNavPc .nav__wrapper .nav-links .nav-link:hover {
  color: #346489;
  opacity: 1 !important;
}
.globalNavPc .nav__wrapper .nav-links .nav-link:hover .link-box {
  box-sizing: border-box;
  border: none;
}
.globalNavPc .nav__wrapper .nav-links .nav-link:hover .link-box::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-block;
  width: 40px;
  height: 20px;
  background: url(../img/common/nav-arrow.png);
  background-size: cover;
  content: "";
  transform: translate(-50%, -50%);
}
.globalNavPc .nav__wrapper .nav-links .nav-link a {
  display: block;
  padding: 0 4px;
  text-align: center;
  line-height: 1.4;
  transition: 0.3s;
}
.globalNavPc .nav__wrapper .nav-links .nav-link a:hover {
  opacity: 1 !important;
}
.globalNavPc .nav__wrapper .nav-links .nav-link a.link-btn {
  display: block;
  padding: 6px 24px;
  border-radius: 32px;
  background: #14202e;
  color: #b8b0a0;
}
.globalNavPc .nav__wrapper .nav-links .nav-link a.link-btn:hover {
  background: #b8b0a0;
  color: #14202e;
  opacity: 1 !important;
}
.globalNavPc .nav__wrapper .nav-links .nav-link a span {
  display: block;
  color: #1e3957;
  text-align: center;
  font-weight: 400;
  font-style: italic;
  font-size: 12px;
  font-family: "futura-pt", sans-serif;
}
.globalNavPc .nav__wrapper .nav-links .nav-link .btn-contact {
  padding: 8px 2.5em;
  border: 2px solid #6cba5a;
  border-radius: 32px;
  background: #fff;
  color: #6cba5a;
  transition: 0.3s;
}
.globalNavPc .nav__wrapper .nav-links .nav-link .btn-contact:hover {
  background: #6cba5a;
  color: #fff;
}
.globalNavPc .nav__wrapper .nav-links .nav-link .btn-contact .icon-mail {
  margin-right: 0.5em;
  width: 1.2em;
}
.globalNavPc .nav__wrapper .nav-links .nav-link .btn-contact .icon-mail-hover {
  display: none;
  margin-right: 0.5em;
  width: 1.2em;
}
.globalNavPc .nav__wrapper .nav-links .nav-link .btn-contact:hover .icon-mail {
  display: none;
}
.globalNavPc .nav__wrapper .nav-links .nav-link .btn-contact:hover .icon-mail-hover {
  display: inline-block;
}
.globalNavPc .nav__wrapper .nav-links .nav-link .link-box {
  box-sizing: border-box;
  padding: 10px 22px;
  width: 170px;
  border-radius: 8px;
  background: #6cba5a;
  transform: translate(-50%, 105%);
}
.globalNavPc .nav__wrapper .nav-links .nav-link .link-box a {
  display: inline-block;
  margin-bottom: 12px;
  padding: 0px;
  width: auto;
  border-top: none;
  border-bottom: 1px solid #fff;
  background: none;
  color: #fff;
  line-height: 1.4;
}

.globalNavSp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 65px;
  background: #fff;
  font-family: var(--font-main);
}
.globalNavSp .flex.flex-logo {
  justify-content: flex-start;
  align-items: center;
  margin-left: 16px;
}
.globalNavSp .flex.flex-logo .nav-logo01 {
  margin-right: 12px;
  width: 120px;
}
.globalNavSp .flex.flex-logo .nav-logo01 img {
  vertical-align: bottom;
}
.globalNavSp .flex.flex-logo .nav-logo02 {
  width: 96px;
}
.globalNavSp .flex.flex-logo .nav-logo02 img {
  vertical-align: bottom;
}
.globalNavSp h1 {
  margin-left: 16px;
  width: 160px;
  line-height: 0;
}
.globalNavSp h1 img {
  line-height: 85px;
}

@media (min-width: 980px) {
  .globalNavSp.spView {
    display: none;
  }
}
.top-move-btn {
  position: -webkit-sticky;
  position: sticky;
  right: 80px;
  bottom: 30px;
  z-index: 4;
  display: none;
  width: 65px;
  transition-timing-function: ease-in-out;
  transform-origin: bottom;
}
@media (max-width: 1280px) {
  .top-move-btn {
    right: 50px;
  }
}
@media (max-width: 768px) {
  .top-move-btn {
    right: 16px;
    bottom: 16px;
    width: 55px;
  }
}
.top-move-btn:hover {
  opacity: 1 !important;
}
@-webkit-keyframes mizutama {
  0% {
    transform: none;
  }
  50% {
    transform: rotateX(20deg);
  }
  100% {
    transform: none;
  }
}
@keyframes mizutama {
  0% {
    transform: none;
  }
  50% {
    transform: rotateX(20deg);
  }
  100% {
    transform: none;
  }
}

.img_wrap {
  position: relative;
  display: block;
  line-height: 0;
}
.img_wrap::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  content: "";
  transition: 0.7s;
  transition-delay: 0.5s;
  transition-timing-function: cubic-bezier(0.3, 0.74, 0.75, 0.32);
  transform: scaleX(1);
  transform-origin: right;
}
.img_wrap::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  content: "";
  transition: 0.7s;
  transition-delay: 1s;
  transition-timing-function: cubic-bezier(0.3, 0.74, 0.75, 0.32);
  transform: scaleX(1);
  transform-origin: right;
}

.img_wrap.scrollin::before, .img_wrap.scrollin::after {
  transform: scaleX(0);
}

.windows-Agothic {
  transform: translateY(4%);
}

.cp_arrows *,
.cp_arrows *:before,
.cp_arrows *:after {
  box-sizing: border-box;
}

.cp_arrows {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2em auto;
  height: 300px;
  /*画面いっぱいにする場合100vh*/
}

.cp_arrows .cp_arrow {
  position: absolute;
  top: 50%;
  /*着地点（サンプルは[class:cp_arrows]height300pxの50%）*/
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
}

.cp_arrows .cp_arrowfirst {
  -webkit-animation: arrow-move08 2s ease-in-out infinite;
  animation: arrow-move08 2s ease-in-out infinite;
}

.cp_arrows .cp_arrowsecond {
  -webkit-animation: arrow-move08 2s 1s ease-in-out infinite;
  animation: arrow-move08 2s 1s ease-in-out infinite;
}

.cp_arrows .cp_arrow:before,
.cp_arrows .cp_arrow:after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 30px;
  height: 3px;
  background: #e91e63;
  content: "";
}

.cp_arrows .cp_arrow:before {
  transform: rotate(30deg) translateX(-39%);
  transform-origin: top left;
}

.cp_arrows .cp_arrow:after {
  transform: rotate(-30deg) translateX(39%);
  transform-origin: top right;
}

@-webkit-keyframes arrow-move08 {
  0% {
    top: 40%;
    /*スタート地点（サンプルは[class:cp_arrows]height300pxの35%）*/
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes arrow-move08 {
  0% {
    top: 40%;
    /*スタート地点（サンプルは[class:cp_arrows]height300pxの35%）*/
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
canvas {
  z-index: 2 !important;
  pointer-events: none;
}

.babble,
.babble2 {
  position: fixed;
  bottom: calc(0% - 40px);
  z-index: 1000000000000000000000000000000;
  opacity: 1;
  -webkit-animation: "babbleFloat" 3s linear 0s infinite;
  animation: "babbleFloat" 3s linear 0s infinite;
  pointer-events: none;
  will-change: transform;
}
@media (max-width: 768px) {
  .babble,
.babble2 {
    z-index: 9999;
    display: none;
  }
}

.babble2 {
  -webkit-animation: "babbleFloat2" 2.3s linear 0s infinite;
  animation: "babbleFloat2" 2.3s linear 0s infinite;
}

.babble3 {
  -webkit-animation: "babbleFloat" 1.5s linear 0s infinite;
  animation: "babbleFloat" 1.5s linear 0s infinite;
}

@-webkit-keyframes babbleFloat {
  0% {
    transform: translateY(0);
  }
  8% {
    transform: translateY(-8vh) scale(1);
  }
  9% {
    transform: translateY(-9vh) scale(0.9);
  }
  10% {
    transform: translateY(-10vh) scale(1.04);
  }
  11% {
    transform: translateY(-11vh) scale(1);
  }
  18% {
    transform: translateY(-18vh) scale(0.85);
  }
  20% {
    transform: translateY(-20vh) translateX(2px) scale(1.09);
  }
  22% {
    transform: translateY(-22vh) scale(1);
  }
  24% {
    transform: translateY(-24vh) scale(0.85);
  }
  26% {
    transform: translateY(-26vh) translateX(2px) scale(1.09);
  }
  28% {
    transform: translateY(-28vh) scale(1);
  }
  30% {
    opacity: 0.8;
  }
  40% {
    opacity: 0.9;
    transform: translate(-1px, -40vh);
  }
  70% {
    opacity: 0.7;
    transform: translate(1px, -70vh);
  }
  100% {
    opacity: 0;
    transform: translateY(-110vh);
  }
}
@keyframes babbleFloat {
  0% {
    transform: translateY(0);
  }
  8% {
    transform: translateY(-8vh) scale(1);
  }
  9% {
    transform: translateY(-9vh) scale(0.9);
  }
  10% {
    transform: translateY(-10vh) scale(1.04);
  }
  11% {
    transform: translateY(-11vh) scale(1);
  }
  18% {
    transform: translateY(-18vh) scale(0.85);
  }
  20% {
    transform: translateY(-20vh) translateX(2px) scale(1.09);
  }
  22% {
    transform: translateY(-22vh) scale(1);
  }
  24% {
    transform: translateY(-24vh) scale(0.85);
  }
  26% {
    transform: translateY(-26vh) translateX(2px) scale(1.09);
  }
  28% {
    transform: translateY(-28vh) scale(1);
  }
  30% {
    opacity: 0.8;
  }
  40% {
    opacity: 0.9;
    transform: translate(-1px, -40vh);
  }
  64% {
    transform: translateY(-64vh) scale(0.85);
  }
  66% {
    transform: translateY(-66vh) translateX(2px) scale(1.09);
  }
  68% {
    opacity: 0.5;
    transform: translateY(-68vh) scale(1);
  }
  84% {
    transform: translateY(-84vh) scale(0.85);
  }
  86% {
    opacity: 0;
    transform: translateY(-86vh) translateX(2px) scale(1.09);
  }
  88% {
    transform: translateY(-88vh) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh);
  }
}
@-webkit-keyframes babbleFloat2 {
  0% {
    transform: translateY(0);
  }
  38% {
    transform: translateY(-38vh) scale(1);
  }
  39% {
    transform: translateY(-39vh) scale(0.9);
  }
  40% {
    transform: translateY(-40vh) scale(1.04);
  }
  41% {
    transform: translateY(-41vh) scale(1);
  }
  48% {
    transform: translateY(-48vh) scale(0.85);
  }
  50% {
    transform: translateY(-50vh) translateX(2px) scale(1.09);
  }
  52% {
    transform: translateY(-52vh) scale(1);
  }
  54% {
    transform: translateY(-54vh) scale(0.85);
  }
  56% {
    transform: translateY(-56vh) translateX(2px) scale(1.09);
  }
  58% {
    transform: translateY(-58vh) scale(1);
  }
  70% {
    opacity: 0.2;
    transform: translate(1px, -70vh);
  }
  100% {
    opacity: 0;
    transform: translateY(-110vh);
  }
}
@keyframes babbleFloat2 {
  0% {
    transform: translateY(0);
  }
  38% {
    transform: translateY(-38vh) scale(1);
  }
  39% {
    transform: translateY(-39vh) scale(0.9);
  }
  40% {
    transform: translateY(-40vh) scale(1.04);
  }
  41% {
    transform: translateY(-41vh) scale(1);
  }
  48% {
    transform: translateY(-48vh) scale(0.85);
  }
  50% {
    transform: translateY(-50vh) scale(1.09);
  }
  52% {
    transform: translateY(-52vh) scale(1);
  }
  54% {
    transform: translateY(-54vh) scale(0.85);
  }
  56% {
    transform: translateY(-56vh) scale(1.09);
  }
  58% {
    opacity: 0.6;
    transform: translateY(-58vh) scale(1);
  }
  70% {
    opacity: 0.2;
    transform: translateY(-70vh);
  }
  80% {
    opacity: 0;
    transform: translateY(-80vh);
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh);
  }
}
body {
  background: #fff;
}

body.loaded {
  background: #14202e;
}

@supports (-webkit-touch-callout: none) {
  html {
    height: -webkit-fill-available;
  }
}
h2,
h3,
h4,
span,
p {
  color: #1e3957;
  font-family: "秀英丸ゴシック B", "Shuei MaruGo B";
}

.text-color-orange {
  color: #ffa326;
}

.text-color-green {
  color: #46cfb8;
}

.text-color-pink {
  color: #ea7eac;
}

.link-btn-more {
  display: block;
  margin: 30px auto;
  padding: 4px;
  padding: 8px 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
  background: #3c3c3c;
  color: #fff;
  font-size: 16px;
}
@media (max-width: 768px) {
  .link-btn-more {
    border-radius: 32px;
  }
}

.noto-serif {
  font-style: italic;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
}
.noto-serif.font-bold--400 {
  font-weight: 400;
}

.top {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  color: #3c3c3c;
}
.top .loadBg.loaded {
  opacity: 0;
  transition: 0.6s;
  transition-delay: 3.6s;
}
.top .main {
  position: relative;
  overflow: hidden;
  margin-top: 0px;
  background: #fffbee;
}
.top .sec__heading {
  margin: 0 auto;
  text-align: center;
}
.top .top-first-view {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 100svh;
  will-change: auto;
}
.top .top-first-view::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 32, 46, 0.4);
  content: "";
}
.top .top-first-view .first-view-bg-img {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: url(../img/top/first-view-bg-img.jpg);
  background-attachment: fixed;
  background-size: cover;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}
.top .top-first-view .sec-heading {
  position: absolute;
  top: calc(50% + 20px);
  left: 50%;
  z-index: 2;
  width: 100%;
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-style: italic;
  font-size: 40px;
  font-family: "Noto Serif JP", serif;
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  transition: 3s;
  transform: translate(-50%, -50%);
  will-change: filter;
  font-optical-sizing: auto;
}
@media (max-width: 768px) {
  .top .top-first-view .sec-heading {
    text-align: center;
    font-size: 32px;
    line-height: 1.6;
  }
}
.top .top-first-view .sec-heading.loaded {
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.top .top-first-view .scroll-announce {
  position: absolute;
  bottom: 60px;
  left: 50%;
  z-index: 2;
  opacity: 0;
  transition: 0.8s;
  transform: translate(-50%, -50%);
}
.top .top-first-view .scroll-announce.loaded {
  opacity: 1;
}
.top .top-first-view .scroll-announce .scroll-announce--text {
  color: #fff;
  -webkit-filter: drop-shadow(2px 2px 4px #333);
  filter: drop-shadow(2px 2px 4px #333);
}
.top .top-first-view .c-scrolldown {
  position: absolute;
  right: 0;
  bottom: 0px;
  left: 0;
  z-index: 2;
  overflow: hidden;
  margin: 0 auto;
  width: 2px;
  height: 60px;
  opacity: 0;
  transition: 0.8s;
}
.top .top-first-view .c-scrolldown.loaded {
  opacity: 1;
}
.top .top-first-view .c-scrolldown .c-line {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, white 50%, rgba(255, 255, 255, 0) 50%);
  background-position: 0 -60px;
  background-size: 100% 200%;
  -webkit-animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
  animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}
@-webkit-keyframes scrolldown {
  0% {
    background-position: 0 -60px;
  }
  75% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 60px;
  }
}
@keyframes scrolldown {
  0% {
    background-position: 0 -60px;
  }
  75% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 60px;
  }
}
.top section {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 140px;
}
@media (max-width: 768px) {
  .top section {
    margin-top: 0;
    margin-bottom: 0px;
    padding-top: 100px;
    padding-bottom: 100px;
    width: 100%;
  }
}
.top section .sec-heading {
  text-align: center;
  font-size: 32px;
  line-height: 1;
}
@media (max-width: 768px) {
  .top section .sec-heading {
    font-size: 28px;
  }
}
.top section .sec-heading-desc {
  display: block;
  text-align: center;
  font-size: 14px;
}
@media (max-width: 768px) {
  .top section .sec-heading-desc {
    margin-bottom: 16px;
  }
}
.top .sec01 {
  padding-top: 40%;
  padding-bottom: 120px;
  background: linear-gradient(to bottom, rgba(20, 32, 46, 0) 0%, #14202e 15%);
}
@media (max-width: 768px) {
  .top .sec01 {
    padding-bottom: 90px;
    background: linear-gradient(to bottom, rgba(20, 32, 46, 0) 0%, #14202e 7%);
  }
}
.top .sec01::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 32, 46, 0.4);
  content: "";
}
.top .sec01::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/top/sec01-bg.png), linear-gradient(to bottom, rgba(20, 32, 46, 0.01) 0%, rgba(20, 32, 46, 0.01) 100%);
  background-position: 50% 35%;
  background-size: 100% auto;
  background-repeat: no-repeat;
  content: "";
}
.top .sec01 .fixed__wrapper {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  color: #fff;
}
@media (max-width: 768px) {
  .top .sec01 .fixed__wrapper {
    width: 100%;
  }
}
.top .sec01 .sec-desc.bodoni {
  position: relative;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 20px;
  color: #b8b0a0;
  font-weight: 900;
  font-style: italic;
  font-family: "Bodoni Moda", serif;
  font-optical-sizing: auto;
}
.top .sec01 .sec-desc.bodoni::before {
  position: relative;
  top: calc(50% - 1px);
  left: 0;
  display: inline-block;
  margin-right: 12px;
  margin-left: -33%;
  width: 80px;
  height: 1px;
  background: #b8b0a0;
  content: "";
  transition: 0.5s;
  transform: scaleX(0);
  transform-origin: left;
}
.top .sec01 .sec-desc.bodoni.inview::before {
  transform: scaleX(1);
}
.top .sec01 .sec-desc.bodoni .sec-desc--text {
  color: #b8b0a0;
  font-weight: 900;
  font-style: italic;
  font-family: "Bodoni Moda", serif;
  transform-origin: left;
  font-optical-sizing: auto;
}
.top .sec01 h2, .top .sec01 h3, .top .sec01 span, .top .sec01 p {
  color: #fff;
}
.top .sec01 .sec01-heading01 {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 70px;
  max-width: 210px;
  color: #b8b0a0;
  letter-spacing: 0.12em;
  font-style: normal;
  font-size: 40px;
  line-height: 1;
}
@media (max-width: 768px) {
  .top .sec01 .sec01-heading01 {
    margin-bottom: 60px;
    height: 48px;
  }
}
.top .sec01 .sec01-heading01 span.font-size--small {
  display: inline-block;
  color: #b8b0a0;
  font-size: 26px;
  font-family: "Noto Serif JP", serif;
  transform: translateY(40%);
  font-optical-sizing: auto;
}
.top .sec01 .sec01-heading01 ruby {
  height: 55px;
  line-height: 1;
}
@media (max-width: 768px) {
  .top .sec01 .sec01-heading01 ruby {
    height: 36px;
  }
}
.top .sec01 .sec01-heading01 rb {
  height: 48px;
  line-height: 1;
}
@media (max-width: 768px) {
  .top .sec01 .sec01-heading01 rb {
    height: 36px;
  }
}
.top .sec01 .sec01-heading01 rt {
  font-size: 16px;
}
@media (max-width: 768px) {
  .top .sec01 .sec01-heading01 rt {
    font-size: 14px;
  }
}
.top .sec01 .text--wrapper {
  position: relative;
}
.top .sec01 .text {
  position: relative;
  display: block;
  margin: 0 auto;
  margin-bottom: 120px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
}
@media (max-width: 768px) {
  .top .sec01 .text {
    margin-bottom: 70px;
  }
}
.top .sec01 .text--bg {
  position: absolute;
  top: calc(50% - 150px);
  left: calc(50% - 150px);
  z-index: -1;
  display: block;
  width: 300px;
  /* max-width: 600px; */
  height: 300px;
  border-radius: 50%;
  background: #0b4d82;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  opacity: 0;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  transition: 0.8s;
  transition-delay: 0s;
  transition-timing-function: ease-in;
  /* filter: contrast(1.5); */
  transform: scale(2) translate(0%, 0%);
  transform-origin: center;
  will-change: filter;
  mix-blend-mode: screen;
}
.top .sec01 .text--bg.inview {
  opacity: 0.8;
}
.top .sec01 .links {
  margin-bottom: 130px;
}
.top .sec01 .links .link-button {
  display: block;
  margin: 40px auto;
  padding: 16px 32px;
  width: 160px;
  border-radius: 4px;
  background: rgba(184, 176, 160, 0.6);
  color: white;
  text-align: center;
  font-family: "gothic-a1", sans-serif;
  transition: 0.3s;
}
.top .sec01 .links .link-button:hover {
  background: #e9e9e9;
  color: #b8b0a0;
  opacity: 1 !important;
}
.top .sec01 .flex {
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .top .sec01 .flex {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
.top .sec01 .flex .box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(25% - 12px);
  height: 600px;
  opacity: 0;
}
@media (max-width: 768px) {
  .top .sec01 .flex .box {
    margin-bottom: 24px;
    width: calc(50% - 12px);
    height: 400px;
  }
}
.top .sec01 .flex .box::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background: #14202e;
  content: "";
  opacity: 0.4;
  transition: 0.3s;
}
.top .sec01 .flex .box:hover::after {
  opacity: 0;
}
.top .sec01 .flex .box:hover .box--text::after {
  bottom: calc(0% - 65px);
}
.top .sec01 .flex .box .box--text {
  position: relative;
  z-index: 2;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 32px;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
}
@media (max-width: 768px) {
  .top .sec01 .flex .box .box--text {
    font-size: 24px;
  }
}
.top .sec01 .flex .box .box--text .text-combined {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  -webkit-text-combine: horizontal;
  -ms-text-combine-horizontal: all;
  text-combine-upright: all;
}
.top .sec01 .flex .box .box--text::after {
  position: absolute;
  bottom: calc(0% - 55px);
  left: calc(50% - 15px);
  display: inline-block;
  width: 30px;
  height: 30px;
  border-right: solid #fff 1.5px;
  border-bottom: solid #fff 1.5px;
  content: "";
  transition: 0.3s;
  transform: rotate(45deg) translate(-50%, -50%);
}
.top .sec01 .flex .box01 {
  background: url(../img/top/sec01--benefits01.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.top .sec01 .flex .box02 {
  background: url(../img/top/sec01--benefits02.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.top .sec01 .flex .box03 {
  background: url(../img/top/sec01--benefits03.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.top .sec01 .flex .box04 {
  background: url(../img/top/sec01--benefits04.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.top .sec02 {
  padding-top: 120px;
  padding-bottom: 120px;
  background: #fff;
  background-size: cover;
}
@media (max-width: 768px) {
  .top .sec02 {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}
.top .sec02 .fixed__wrapper {
  position: relative;
}
@media (max-width: 768px) {
  .top .sec02 .fixed__wrapper {
    width: 100%;
  }
}
.top .sec02 .sec-heading-desc {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .top .sec02 .sec-heading-desc {
    margin-bottom: 40px;
  }
}
.top .sec02 .sec-desc.bodoni {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 20px;
  color: #14202e;
  font-weight: 900;
  font-style: italic;
  font-family: "Bodoni Moda", serif;
  font-optical-sizing: auto;
}
.top .sec02 .sec-desc.bodoni::before {
  position: relative;
  top: calc(50% - 1px);
  left: 0;
  display: inline-block;
  margin-right: 12px;
  margin-left: -33%;
  width: 80px;
  height: 1px;
  background: #14202e;
  content: "";
  transition: 0.5s;
  transform: scaleX(0);
  transform-origin: left;
}
.top .sec02 .sec-desc.bodoni.inview::before {
  transform: scaleX(1);
}
.top .sec02 .sec-desc.bodoni .sec-desc--text {
  color: #14202e;
  font-weight: 900;
  font-style: italic;
  font-family: "Bodoni Moda", serif;
  transform-origin: left;
  font-optical-sizing: auto;
}
.top .sec02 h2, .top .sec02 h3, .top .sec02 span, .top .sec02 p {
  color: #14202e;
}
.top .sec02 .sec02-heading01 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 36px;
  color: #14202e;
  letter-spacing: 0.12em;
  font-style: normal;
  font-size: 40px;
}
@media (max-width: 768px) {
  .top .sec02 .sec02-heading01 {
    font-size: 32px;
  }
}
.top .sec02 .sec02-heading01 span.font-size--small {
  color: #14202e;
  font-size: 26px;
  font-family: "Noto Serif JP", serif;
  transform: translateY(40%);
  font-optical-sizing: auto;
}
.top .sec02 .sec02-heading01 rt {
  font-size: 16px;
}
.top .sec03,
.top .sec04,
.top .sec05,
.top .sec06 {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 60px 0;
  padding-top: 70px;
  height: calc(100vh - 80px);
  background: url(../img/top/cruiser-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.top .sec03 .fixed__wrapper,
.top .sec04 .fixed__wrapper,
.top .sec05 .fixed__wrapper,
.top .sec06 .fixed__wrapper {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  -webkit-filter: blur(16px);
  filter: blur(16px);
  transition: 1s;
  transition-timing-function: ease-in;
  will-change: filter;
}
@media (max-width: 768px) {
  .top .sec03 .fixed__wrapper,
.top .sec04 .fixed__wrapper,
.top .sec05 .fixed__wrapper,
.top .sec06 .fixed__wrapper {
    width: 100%;
  }
}
.top .sec03.inview .fixed__wrapper,
.top .sec04.inview .fixed__wrapper,
.top .sec05.inview .fixed__wrapper,
.top .sec06.inview .fixed__wrapper {
  -webkit-filter: blur(0px);
  filter: blur(0px);
}
.top .sec03 .flex.flex--heading,
.top .sec04 .flex.flex--heading,
.top .sec05 .flex.flex--heading,
.top .sec06 .flex.flex--heading {
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 40px;
  height: 144px;
}
@media (max-width: 768px) {
  .top .sec03 .flex.flex--heading,
.top .sec04 .flex.flex--heading,
.top .sec05 .flex.flex--heading,
.top .sec06 .flex.flex--heading {
    margin-bottom: 20px;
  }
}
.top .sec03 .sec-heading-desc,
.top .sec04 .sec-heading-desc,
.top .sec05 .sec-heading-desc,
.top .sec06 .sec-heading-desc {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .top .sec03 .sec-heading-desc,
.top .sec04 .sec-heading-desc,
.top .sec05 .sec-heading-desc,
.top .sec06 .sec-heading-desc {
    margin-bottom: 40px;
  }
}
.top .sec03 .sec-desc,
.top .sec04 .sec-desc,
.top .sec05 .sec-desc,
.top .sec06 .sec-desc {
  position: relative;
  display: inline-block;
  margin-right: 10%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-weight: 900;
  font-style: italic;
  font-size: 60px;
  font-family: "Bodoni Moda", serif;
  line-height: 1;
  font-optical-sizing: auto;
}
@media (max-width: 768px) {
  .top .sec03 .sec-desc,
.top .sec04 .sec-desc,
.top .sec05 .sec-desc,
.top .sec06 .sec-desc {
    margin-right: 32px;
    font-size: 40px;
  }
}
.top .sec03 .sec-desc::before,
.top .sec04 .sec-desc::before,
.top .sec05 .sec-desc::before,
.top .sec06 .sec-desc::before {
  position: absolute;
  right: 0;
  bottom: 0%;
  display: block;
  width: 200px;
  height: 200px;
  border-bottom: solid #fff 1px;
  content: "";
  transform: rotate(-45deg) translate(0%, 30%);
}
@media (max-width: 768px) {
  .top .sec03 .sec-desc::before,
.top .sec04 .sec-desc::before,
.top .sec05 .sec-desc::before,
.top .sec06 .sec-desc::before {
    width: 150px;
    height: 150px;
  }
}
.top .sec03 .sec-heading,
.top .sec04 .sec-heading,
.top .sec05 .sec-heading,
.top .sec06 .sec-heading {
  align-self: center;
  color: #fff;
  font-style: normal;
  font-size: 36px;
}
@media (max-width: 768px) {
  .top .sec03 .sec-heading,
.top .sec04 .sec-heading,
.top .sec05 .sec-heading,
.top .sec06 .sec-heading {
    text-align: left;
    font-size: 28px;
    line-height: 1.4;
  }
}
.top .sec03 .text,
.top .sec04 .text,
.top .sec05 .text,
.top .sec06 .text {
  margin-bottom: 60px;
  margin-left: calc(10% + 75px);
  color: #fff;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 768px) {
  .top .sec03 .text,
.top .sec04 .text,
.top .sec05 .text,
.top .sec06 .text {
    margin-left: 0;
    font-size: 15px;
  }
}
.top .sec03 .detail,
.top .sec04 .detail,
.top .sec05 .detail,
.top .sec06 .detail {
  margin-bottom: 40px;
  margin-left: calc(5% + 37.5px);
}
@media (max-width: 768px) {
  .top .sec03 .detail,
.top .sec04 .detail,
.top .sec05 .detail,
.top .sec06 .detail {
    margin-left: 0;
  }
}
.top .sec03 .detail .flex,
.top .sec04 .detail .flex,
.top .sec05 .detail .flex,
.top .sec06 .detail .flex {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
}
.top .sec03 .detail .detail--border,
.top .sec04 .detail .detail--border,
.top .sec05 .detail .detail--border,
.top .sec06 .detail .detail--border {
  margin: 0;
  margin-right: 5%;
  padding-top: 2px;
  max-width: 200px;
  width: 50%;
  border: solid #fff 1px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-family: auto;
}
@media (max-width: 768px) {
  .top .sec03 .detail .detail--border,
.top .sec04 .detail .detail--border,
.top .sec05 .detail .detail--border,
.top .sec06 .detail .detail--border {
    width: 155px;
    font-size: 13px;
  }
}
.top .sec03 .detail .detail--price,
.top .sec04 .detail .detail--price,
.top .sec05 .detail .detail--price,
.top .sec06 .detail .detail--price {
  margin: 0;
  color: #fff;
  font-weight: 400;
  font-style: italic;
  font-size: 34px;
  font-family: "Bodoni Moda", serif;
  line-height: 1;
  transform: translateY(0%);
}
@media (max-width: 768px) {
  .top .sec03 .detail .detail--price,
.top .sec04 .detail .detail--price,
.top .sec05 .detail .detail--price,
.top .sec06 .detail .detail--price {
    font-size: 26px;
  }
}
.top .sec03 .detail .detail--price span.yen-mark,
.top .sec04 .detail .detail--price span.yen-mark,
.top .sec05 .detail .detail--price span.yen-mark,
.top .sec06 .detail .detail--price span.yen-mark {
  color: #fff;
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  font-family: "Bodoni Moda", serif;
}
.top .sec03 .detail .detail--price span.font-size--small,
.top .sec04 .detail .detail--price span.font-size--small,
.top .sec05 .detail .detail--price span.font-size--small,
.top .sec06 .detail .detail--price span.font-size--small {
  display: inline-block;
  color: #fff;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  font-family: "gothic-a1", sans-serif;
  transform: translateY(-10%);
}
.top .sec03 .attention,
.top .sec04 .attention,
.top .sec05 .attention,
.top .sec06 .attention {
  margin-left: calc(5% + 37.5px);
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .top .sec03 .attention,
.top .sec04 .attention,
.top .sec05 .attention,
.top .sec06 .attention {
    margin-left: 0;
  }
}
.top .sec04,
.top .sec06 {
  justify-content: flex-end;
  align-items: flex-end;
}
.top .sec04 .flex.flex--heading,
.top .sec06 .flex.flex--heading {
  justify-content: flex-end;
}
.top .sec04 .text,
.top .sec06 .text {
  margin: 0 0 0 auto;
  margin-bottom: 60px;
  max-width: 400px;
}
.top .sec04 .attention,
.top .sec06 .attention {
  margin: 0 0 0 auto;
  max-width: 400px;
}
.top .sec05 .fixed__wrapper {
  height: 100%;
}
.top .sec05 .flex.flex--ferrari {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
  height: 100%;
}
.top .sec05 .flex.flex--ferrari .box {
  width: 100%;
}
.top .sec04 {
  background-image: url(../img/top/club-bg.jpg);
}
.top .sec05 {
  background-image: url(../img/top/ferrari-bg.jpg);
}
.top .sec06 {
  background-image: url(../img/top/party-bg.jpg);
}
.top .sec07 {
  background: #1e3957;
}
.top .sec07 .sec-heading-desc {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .top .sec07 .sec-heading-desc {
    margin-bottom: 40px;
  }
}
.top .sec07 .sec-desc.bodoni {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 900;
  font-style: italic;
  font-family: "Bodoni Moda", serif;
  font-optical-sizing: auto;
}
.top .sec07 .sec-desc.bodoni::before {
  position: relative;
  top: calc(50% - 1px);
  left: 0;
  display: inline-block;
  margin-right: 12px;
  margin-left: -33%;
  width: 80px;
  height: 1px;
  background: #fff;
  content: "";
  transition: 0.5s;
  transform: scaleX(0);
  transform-origin: left;
}
.top .sec07 .sec-desc.bodoni.inview::before {
  transform: scaleX(1);
}
.top .sec07 .sec-desc.bodoni .sec-desc--text {
  color: #fff;
  font-weight: 900;
  font-style: italic;
  font-family: "Bodoni Moda", serif;
  transform-origin: left;
  font-optical-sizing: auto;
}
.top .sec07 h2, .top .sec07 h3, .top .sec07 span, .top .sec07 p {
  color: #fff;
}
.top .sec07 .sec07-heading01 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  color: #fff;
  letter-spacing: 0.12em;
  font-style: normal;
  font-size: 40px;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  font-optical-sizing: auto;
}
@media (max-width: 768px) {
  .top .sec07 .sec07-heading01 {
    font-size: 32px;
  }
}
.top .sec07 .sec07-heading01 span.font-size--small {
  color: #fff;
  font-size: 26px;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
}
@media (max-width: 768px) {
  .top .sec07 .sec07-heading01 span.font-size--small {
    font-size: 22px;
    transform: translateY(8%);
  }
}
.top .sec07 .box {
  margin: 0 auto;
  margin-bottom: 40px;
  max-width: 600px;
  text-align: center;
}
.top .sec07 .box .box-heading {
  background: #b8b0a0;
  color: #14202e;
  font-weight: 900;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
}
.top .sec07 .box .box-desc.box-desc--price {
  margin: 0;
  color: #fff;
  font-weight: 400;
  font-style: italic;
  font-size: 34px;
  font-family: "Bodoni Moda", serif;
  line-height: 1;
  transform: translateY(0%);
}
@media (max-width: 768px) {
  .top .sec07 .box .box-desc.box-desc--price {
    font-size: 30px;
  }
}
.top .sec07 .box .box-desc.box-desc--price span.yen-mark {
  color: #fff;
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  font-family: "Bodoni Moda", serif;
}
@media (max-width: 768px) {
  .top .sec07 .box .box-desc.box-desc--price span.yen-mark {
    font-size: 18px;
  }
}
.top .sec07 .box .box-desc.box-desc--price span.font-size--small {
  display: inline-block;
  color: #fff;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  font-family: "gothic-a1", sans-serif;
  transform: translateY(-10%);
}
@media (max-width: 768px) {
  .top .sec07 .box .box-desc.box-desc--price span.font-size--small {
    font-size: 10px;
  }
}
.top .sec07 .box .box-desc {
  font-weight: 900;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
}
.top .sec07 .box .box-desc--payment {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 26px;
  line-height: 1;
}
@media (max-width: 768px) {
  .top .sec07 .box .box-desc--payment {
    font-size: 22px;
  }
}
.top .sec07 .box .box-desc--payment span.font-size--small {
  font-weight: 400;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  transform: translateY(7%);
  font-optical-sizing: auto;
}
@media (max-width: 768px) {
  .top .sec07 .box .box-desc--payment span.font-size--small {
    font-size: 16px;
  }
}
.top .sec07 .box .card_brand {
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 140px;
}
.top .sec07 .box .card_brand img {
  background: #fff;
}
.top .sec07 .box .attention {
  display: block;
  margin-top: 10px;
  font-weight: 400;
  font-size: 12px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6;
  font-optical-sizing: auto;
}
.top .sec08 {
  position: relative;
  background: #fff;
}
.top .sec08::before {
  position: absolute;
  top: 0;
  right: 0px;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #b8b0a0;
  content: "";
  opacity: 0.45;
  -webkit-clip-path: inset(0);
  -webkit-clip-path: polygon(100% 30%, 0% 100%, 100% 100%);
  clip-path: inset(0);
  clip-path: polygon(100% 30%, 0% 100%, 100% 100%);
}
.top .sec08 .sec-heading-desc {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .top .sec08 .sec-heading-desc {
    margin-bottom: 40px;
  }
}
.top .sec08 .sec-desc.bodoni {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 20px;
  color: #14202e;
  font-weight: 900;
  font-style: italic;
  font-family: "Bodoni Moda", serif;
  font-optical-sizing: auto;
}
.top .sec08 .sec-desc.bodoni::before {
  position: relative;
  top: calc(50% - 1px);
  left: 0;
  display: inline-block;
  margin-right: 12px;
  margin-left: -33%;
  width: 80px;
  height: 1px;
  background: #14202e;
  content: "";
  transition: 0.5s;
  transform: scaleX(0);
  transform-origin: left;
}
.top .sec08 .sec-desc.bodoni.inview::before {
  transform: scaleX(1);
}
.top .sec08 .sec-desc.bodoni .sec-desc--text {
  color: #14202e;
  font-weight: 900;
  font-style: italic;
  font-family: "Bodoni Moda", serif;
  transform-origin: left;
  font-optical-sizing: auto;
}
.top .sec08 h2, .top .sec08 h3, .top .sec08 span, .top .sec08 p {
  color: #14202e;
}
.top .sec08 .sec08-heading01 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  color: #14202e;
  letter-spacing: 0.12em;
  font-style: normal;
  font-size: 40px;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  font-optical-sizing: auto;
}
@media (max-width: 768px) {
  .top .sec08 .sec08-heading01 {
    font-size: 28px;
  }
}
.top .sec08 .sec08-heading01 span.font-size--small {
  color: #14202e;
  font-size: 26px;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
}
.top .sec08 .desc {
  margin-bottom: 60px;
  text-align: center;
  font-weight: 400;
  /* font-size: 12px; */
  font-family: "Noto Serif JP", serif;
  /* line-height: 1.6; */
  font-optical-sizing: auto;
}
.top .sec08 .link-button {
  display: block;
  margin: 0 auto;
  /* padding: 12px 32px; */
  padding: 16px 32px;
  /* text-align: center; */
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
  background: #333333;
  color: #fff;
  transition: 0.3s;
}
.top .sec08 .link-button:hover {
  background: #0b4d82;
  color: #ffe998;
  opacity: 1 !important;
}

:root {
  --vw-100: -100vw;
  --vw-44: -44vw;
  --vw-50: -50vw;
  --vw-56: -56vw;
  --vw100: 100vw;
  --vw44: 44vw;
  --vw50: 50vw;
  --vw56: 56vw;
}

/* 星空の背景のスタイル */
.stars {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100vw;
  height: 70%;
}

/* 星のスタイル */
/* 星がキラキラ光るアニメーション */
@-webkit-keyframes twinkle {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
@keyframes twinkle {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
.stars2 {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100vw;
  height: 100%;
  mix-blend-mode: screen;
}

.star2 {
  position: absolute;
  display: block;
  border-radius: 50%;
  background-color: #ccc;
  /* 星の色 */
  opacity: 0;
  -webkit-animation: twinkle 3s infinite;
  animation: twinkle 3s infinite;
}

/***************************************************
 * Generated by svg.sec02_icon Artista on 5/13/2022, 2:48:40 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/
svg.sec02_icon path {
  stroke-width: 1.6px !important;
}

svg.collection_icon path {
  stroke-width: 1.6px !important;
}

svg.sec02_icon,
svg.collection_icon {
  display: block;
  margin: 0 auto;
}

/***************************************************
 * Generated by svg.sec02_icon Artista on 5/16/2022, 1:55:21 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/
svg.sec02_icon .svg-elem-1 {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
  stroke-dasharray: 75.6609649658px;
  stroke-dashoffset: 75.6609649658px;
}

svg.active.sec02_icon .svg-elem-1 {
  stroke-dashoffset: 0;
}

svg.sec02_icon .svg-elem-2 {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.06s;
  stroke-dasharray: 22.9458904266px;
  stroke-dashoffset: 22.9458904266px;
}

svg.active.sec02_icon .svg-elem-2 {
  stroke-dashoffset: 0;
}

svg.sec02_icon .svg-elem-3 {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s;
  stroke-dasharray: 57.7390899658px;
  stroke-dashoffset: 57.7390899658px;
}

svg.active.sec02_icon .svg-elem-3 {
  stroke-dashoffset: 0;
}

svg.sec02_icon .svg-elem-4 {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.18s;
  stroke-dasharray: 26.6543312073px;
  stroke-dashoffset: 26.6543312073px;
}

svg.active.sec02_icon .svg-elem-4 {
  stroke-dashoffset: 0;
}

svg.sec02_icon .svg-elem-5 {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s;
  stroke-dasharray: 19.2307796478px;
  stroke-dashoffset: 19.2307796478px;
}

svg.active.sec02_icon .svg-elem-5 {
  stroke-dashoffset: 0;
}

svg.sec02_icon .svg-elem-6 {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s;
  stroke-dasharray: 16.352848053px;
  stroke-dashoffset: 16.352848053px;
}

svg.active.sec02_icon .svg-elem-6 {
  stroke-dashoffset: 0;
}

svg.sec02_icon .svg-elem-7 {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s;
  stroke-dasharray: 23.1630210876px;
  stroke-dashoffset: 23.1630210876px;
}

svg.active.sec02_icon .svg-elem-7 {
  stroke-dashoffset: 0;
}

svg.sec02_icon .svg-elem-8 {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.42s;
  stroke-dasharray: 17.9599781036px;
  stroke-dashoffset: 17.9599781036px;
}

svg.active.sec02_icon .svg-elem-8 {
  stroke-dashoffset: 0;
}

svg.sec02_icon .svg-elem-9 {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s;
  stroke-dasharray: 15.2598896027px;
  stroke-dashoffset: 15.2598896027px;
}

svg.active.sec02_icon .svg-elem-9 {
  stroke-dashoffset: 0;
}

svg.sec02_icon .svg-elem-10 {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.54s;
  stroke-dasharray: 13.5186862946px;
  stroke-dashoffset: 13.5186862946px;
}

svg.active.sec02_icon .svg-elem-10 {
  stroke-dashoffset: 0;
}

svg.sec02_icon .svg-elem-11 {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
  stroke-dasharray: 14.0056848526px;
  stroke-dashoffset: 14.0056848526px;
}

svg.active.sec02_icon .svg-elem-11 {
  stroke-dashoffset: 0;
}

svg.sec02_icon .svg-elem-12 {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.66s;
  stroke-dasharray: 13.845905304px;
  stroke-dashoffset: 13.845905304px;
}

svg.active.sec02_icon .svg-elem-12 {
  stroke-dashoffset: 0;
}

svg.sec02_icon .svg-elem-13 {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s;
  stroke-dasharray: 22.6881752014px;
  stroke-dashoffset: 22.6881752014px;
}

svg.active.sec02_icon .svg-elem-13 {
  stroke-dashoffset: 0;
}

svg.sec02_icon .svg-elem-14 {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.78s;
  stroke-dasharray: 59.7315406799px;
  stroke-dashoffset: 59.7315406799px;
}

svg.active.sec02_icon .svg-elem-14 {
  stroke-dashoffset: 0;
}

svg.sec02_icon .svg-elem-15 {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s;
  stroke-dasharray: 30.5422515869px;
  stroke-dashoffset: 30.5422515869px;
}

svg.active.sec02_icon .svg-elem-15 {
  stroke-dashoffset: 0;
}

svg.sec02_icon .svg-elem-16 {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
  stroke-dasharray: 52.2519721985px;
  stroke-dashoffset: 52.2519721985px;
}

svg.active.sec02_icon .svg-elem-16 {
  stroke-dashoffset: 0;
}

svg.sec02_icon .svg-elem-17 {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s;
  stroke-dasharray: 19.7097263336px;
  stroke-dashoffset: 19.7097263336px;
}

svg.active.sec02_icon .svg-elem-17 {
  stroke-dashoffset: 0;
}

svg.sec02_icon .svg-elem-18 {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 1.02s;
  stroke-dasharray: 37.2023086548px;
  stroke-dashoffset: 37.2023086548px;
}

svg.active.sec02_icon .svg-elem-18 {
  stroke-dashoffset: 0;
}

svg.sec02_icon .svg-elem-19 {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s;
  stroke-dasharray: 28.3203468323px;
  stroke-dashoffset: 28.3203468323px;
}

svg.active.sec02_icon .svg-elem-19 {
  stroke-dashoffset: 0;
}

svg.sec02_icon .svg-elem-20 {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 1.14s;
  stroke-dasharray: 48.0027542114px;
  stroke-dashoffset: 48.0027542114px;
}

svg.active.sec02_icon .svg-elem-20 {
  stroke-dashoffset: 0;
}

svg.sec02_icon .svg-elem-21 {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
  stroke-dasharray: 17.1784009933px;
  stroke-dashoffset: 17.1784009933px;
}

svg.active.sec02_icon .svg-elem-21 {
  stroke-dashoffset: 0;
}

svg.sec02_icon .svg-elem-22 {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 1.26s;
  stroke-dasharray: 17.7038993835px;
  stroke-dashoffset: 17.7038993835px;
}

svg.active.sec02_icon .svg-elem-22 {
  stroke-dashoffset: 0;
}

svg.sec02_icon .svg-elem-23 {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 1.32s;
  stroke-dasharray: 17.4240570068px;
  stroke-dashoffset: 17.4240570068px;
}

svg.active.sec02_icon .svg-elem-23 {
  stroke-dashoffset: 0;
}

svg.sec02_icon .svg-elem-24 {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 1.38s;
  stroke-dasharray: 16.9037866592px;
  stroke-dashoffset: 16.9037866592px;
}

svg.active.sec02_icon .svg-elem-24 {
  stroke-dashoffset: 0;
}

svg.sec02_icon .svg-elem-25 {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 1.44s;
  stroke-dasharray: 14.9683513641px;
  stroke-dashoffset: 14.9683513641px;
}

svg.active.sec02_icon .svg-elem-25 {
  stroke-dashoffset: 0;
}

svg.sec02_icon .svg-elem-26 {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
  stroke-dasharray: 10.947180748px;
  stroke-dashoffset: 10.947180748px;
}

svg.active.sec02_icon .svg-elem-26 {
  stroke-dashoffset: 0;
}

svg.sec02_icon .svg-elem-27 {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 1.56s;
  stroke-dasharray: 295.1651611328px;
  stroke-dashoffset: 295.1651611328px;
}

svg.active.sec02_icon .svg-elem-27 {
  stroke-dashoffset: 0;
}

/***************************************************
 * Generated by svg.sec02_icon Artista on 5/13/2022, 6:04:01 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/
svg.collection_icon .svg-elem2-1 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-1 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-2 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.06s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-2 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-3 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-3 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-4 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.18s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-4 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-5 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-5 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-6 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-6 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-7 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-7 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-8 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.42s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-8 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-9 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-9 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-10 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.54s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-10 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-11 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-11 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-12 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.66s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-12 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-13 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-13 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-14 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.78s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-14 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-15 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-15 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-16 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-16 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-17 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-17 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-18 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.02s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-18 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-19 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-19 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-20 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.14s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-20 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-21 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-21 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-22 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.26s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-22 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-23 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.32s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-23 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-24 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.38s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-24 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-25 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.44s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-25 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-26 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-26 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-27 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.56s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-27 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-28 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.62s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-28 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-29 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.68s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-29 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-30 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.74s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-30 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-31 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-31 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-32 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.86s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-32 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-33 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.92s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-33 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-34 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.98s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-34 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-35 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.04s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-35 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-36 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-36 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-37 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.16s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-37 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-38 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.22s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-38 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-39 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.28s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-39 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-40 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.34s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-40 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-41 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-41 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-42 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.46s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-42 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-43 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.52s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-43 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-44 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.58s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-44 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-45 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.64s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-45 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-46 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-46 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-47 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.76s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-47 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-48 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.82s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-48 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-49 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.88s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-49 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-50 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.94s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-50 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-51 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 3s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-51 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-52 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 3.06s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-52 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-53 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 3.12s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-53 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-54 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 3.18s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-54 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-55 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 3.24s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-55 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-56 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 3.3s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-56 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-57 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 3.36s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-57 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-58 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 3.42s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-58 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-59 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 3.48s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-59 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-60 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 3.54s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-60 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-61 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 3.6s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-61 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-62 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 3.66s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-62 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-63 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 3.72s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-63 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-64 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 3.78s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-64 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-65 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 3.84s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-65 {
  fill: #914207;
}

svg.collection_icon .svg-elem2-66 {
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 3.9s;
  fill: transparent;
}

svg.active.collection_icon .svg-elem2-66 {
  fill: #914207;
}

.footer {
  position: relative;
  z-index: 10;
  box-sizing: border-box;
  background: #14202e;
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.4;
}
.footer a:hover {
  opacity: 0.8 !important;
}

.footer {
  position: relative;
}
@media (max-width: 768px) {
  .footer {
    margin-top: 0px;
  }
}
.footer .top-move-btn {
  position: fixed;
  top: auto;
  right: 40px;
  bottom: 60px;
  z-index: 2;
  display: block;
  width: 120px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 768px) {
  .footer .top-move-btn {
    right: 16px;
    bottom: 16px;
    width: 80px;
  }
}
.footer .top-move-btn .notActive {
  display: block;
}
.footer .top-move-btn .active {
  display: none;
}
.footer .top-move-btn:hover .notActive {
  display: none;
}
.footer .top-move-btn:hover .active {
  display: block;
}
.footer .footer-logo {
  position: absolute;
  top: -30px;
  left: 60px;
  width: 160px;
}
@media (max-width: 768px) {
  .footer .footer-logo {
    position: static;
    display: block;
    margin: 0 auto;
    width: 100px;
  }
}
.footer div.fixed__wrapper {
  padding: 60px 0;
  padding-bottom: 40px;
  max-width: 800px;
}
@media (max-width: 979px) {
  .footer div.fixed__wrapper {
    position: relative;
    max-width: none;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .footer div.fixed__wrapper > .flex {
    display: block;
  }
}
.footer div.fixed__wrapper .footer-links {
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 22px;
  max-width: 520px;
}
@media (max-width: 768px) {
  .footer div.fixed__wrapper .footer-links {
    display: none;
  }
}
.footer div.fixed__wrapper .footer-links li {
  padding: 0 1em;
  border-right: 1px solid #fff;
  line-height: 1;
}
@media (max-width: 768px) {
  .footer div.fixed__wrapper .footer-links li {
    margin-bottom: 0.5em;
    border-right: none;
  }
}
.footer div.fixed__wrapper .footer-links li a {
  display: inline-block;
  color: #fff;
}
.footer div.fixed__wrapper .font-big {
  border-bottom: solid 1px #fff;
  font-size: 18px;
}
@media (max-width: 768px) {
  .footer div.fixed__wrapper .font-big {
    font-size: 14px;
  }
}
.footer div.fixed__wrapper small {
  margin-top: 50px;
  letter-spacing: 0.01em;
  font-size: 12px;
}
@media (max-width: 768px) {
  .footer div.fixed__wrapper small {
    margin-top: 20px;
    font-size: 10px;
  }
}

:root {
  --button-color-green: #96c121;
  --button-color-pink: #ed6464;
  --font-color: #914207;
  --font-gothic-L: "A1ゴシック L", "A1 Gothic L";
  --font-heading: "ゴシックMB101 B";
  --font-main: "新丸ゴ M", "Shin Maru Go Medium";
  --font-tomato: "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3";
  --h3-shadow: "#fff";
  --news-bg-color: #ff9a84;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.02em;
}

p, span, a, li {
  letter-spacing: 0.01em;
}

.menuPage .burger-wrapper {
  display: none;
}

.loading--wrapper.none {
  display: none;
}

.loading--wrapper {
  position: fixed;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 0 calc(50% - 110px);
  width: 100vw;
  height: 100vh;
  background: #304d8d;
}
.loading--wrapper img {
  max-width: 180px;
  width: 100%;
  transform: translateX(1%);
}
.loading--wrapper .loading span {
  display: inline-block;
  margin: 0 -0.05em;
  color: #fff;
  letter-spacing: 0.16em;
  font-size: 26px;
  -webkit-animation: loading 1.4s infinite alternate;
  animation: loading 1.4s infinite alternate;
}
.loading--wrapper .loading span {
  display: inline-block;
  margin: 0 -0.05em;
  color: #fff;
  letter-spacing: 0.21em;
  font-size: 28px;
  -webkit-animation: loading 1.4s infinite alternate;
  animation: loading 1.4s infinite alternate;
}
.loading--wrapper .loading span {
  letter-spacing: 0.16em;
  font-size: 26px;
}
.loading--wrapper .loading span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.loading--wrapper .loading span:nth-child(3) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}
.loading--wrapper .loading span:nth-child(4) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.loading--wrapper .loading span:nth-child(5) {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}
.loading--wrapper .loading span:nth-child(6) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.loading--wrapper .loading span:nth-child(7) {
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}
@-webkit-keyframes loading {
  0% {
    opacity: 1;
  }
  55% {
    opacity: 1;
  }
  56% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.2;
  }
}
@keyframes loading {
  0% {
    opacity: 1;
  }
  55% {
    opacity: 1;
  }
  56% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.2;
  }
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

*:focus {
  outline: none;
}

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

a:hover {
  border: none;
}

label, a {
  cursor: pointer;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  color: var(--font-color);
  letter-spacing: 0.03em;
  font-size: 18px;
  font-family: var(--font-main);
  line-height: 1.9;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

map, area {
  cursor: auto;
}

img {
  width: 100%;
  -ms-interpolation-mode: nearest-neighbor;
  /* IE8+ */
  -webkit-image-rendering: -webkit-optimize-contrast;
  /* Safari (WebKit) */
  image-rendering: -moz-crisp-edges;
  /* Firefox (Gecko) */
  image-rendering: -o-crisp-edges;
  /* Opera 12.x */
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.url {
  text-decoration: underline;
  word-wrap: break-word;
  -webkit-text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

.nav--bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 80px;
  background: #f08c00;
  opacity: 1;
}

.nav-link {
  position: relative;
}
.nav-link:hover .link-box {
  display: block;
  opacity: 1;
}
.nav-link .link-box {
  position: absolute;
  bottom: 0px;
  left: 50%;
  display: none;
  width: 150px;
  opacity: 0;
  transform: translate(-50%, 100%);
}
.nav-link .link-box .link-box-content {
  display: block;
  border-top: 1px solid #fff;
  background: #efefef;
  text-align: center;
}

.link-button {
  display: inline-block;
  padding: 8px 30px;
  border-radius: 20px;
  line-height: 1;
}

.link-button-black {
  background: #000;
  color: #f28e1e;
  font-size: 20px;
}
@media (max-width: 768px) {
  .link-button-black {
    font-size: 16px;
  }
}

.modaal-image .modaal-container {
  max-width: 900px !important;
}
.modaal-image .modaal-container img {
  max-height: 800px;
}

.wrapper {
  overflow: hidden;
  background-color: #fff;
  color: #1e3957;
}
.wrapper .fixed__wrapper {
  max-width: 1200px;
  width: 100%;
}
.wrapper .heading__img__wrapper {
  z-index: 5;
  margin-top: 90px;
  margin-bottom: 120px;
  line-height: 0;
  pointer-events: none;
}
@media (min-width: 768px) {
  .wrapper .heading__img__wrapper {
    margin-top: 90px;
  }
}
@media (max-width: 768px) {
  .wrapper .heading__img__wrapper {
    margin-bottom: 60px;
  }
}
.wrapper .heading__img__wrapper .breadcrumbs {
  position: absolute;
  top: 60px;
  left: -60px;
  z-index: 3;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  font-size: 16px;
  pointer-events: all;
}
@media (max-width: 768px) {
  .wrapper .heading__img__wrapper .breadcrumbs {
    display: none;
  }
}
.wrapper .heading__img__wrapper .breadcrumbs span {
  margin: 0 1em;
}
@-webkit-keyframes pukapuka {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes pukapuka {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes pukapukaOver {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes pukapukaOver {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes scale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.wrapper .heading__img__wrapper .heading__img__haikei {
  position: absolute;
  top: -12%;
  left: -10%;
  width: 75%;
  -webkit-animation: pukapuka 3.3s infinite alternate;
  animation: pukapuka 3.3s infinite alternate;
}
@media (max-width: 768px) {
  .wrapper .heading__img__wrapper .heading__img__haikei {
    left: 32px;
    width: 70%;
  }
}
.wrapper .heading__img__wrapper .heading__img__logo {
  position: absolute;
  top: 25%;
  right: -10%;
  width: 66%;
  -webkit-animation: pukapuka 3.3s 1.2s infinite alternate;
  animation: pukapuka 3.3s 1.2s infinite alternate;
}
@media (max-width: 768px) {
  .wrapper .heading__img__wrapper .heading__img__logo {
    top: 48%;
    right: 32px;
    width: 50%;
  }
}
.wrapper .heading__img__wrapper .heading__img {
  position: relative;
  left: 50%;
  max-width: 1050px;
  width: 100%;
  transform: translateX(-50%);
}
@media (max-width: 979px) {
  .wrapper .heading__img__wrapper .heading__img {
    position: relative;
    left: 50%;
    margin-top: 80px;
    min-width: 680px;
    transform: translateX(-50%);
  }
}
.wrapper section {
  box-sizing: border-box;
  padding: 0 16px;
  width: 100%;
}
@media (max-width: 768px) {
  .wrapper section {
    padding: 0 8px;
  }
}
.wrapper .pcflex.flex {
  align-items: flex-start;
}
.wrapper .pcflex.flex {
  margin: 40px auto;
  margin-top: 0;
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .wrapper .pcflex.flex {
    display: block !important;
    margin-bottom: max(200px, 80vw);
  }
}
.wrapper h2.sec01-heading {
  position: relative;
  margin: 0 auto;
  margin-bottom: 0px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-family: "新丸ゴ B", "Shin Maru Go Bold";
  line-height: 1.2;
}
.wrapper h2.sec01-heading .heading-bg {
  position: absolute;
  top: 0;
  width: 40px;
}
@media (max-width: 979px) {
  .wrapper h2.sec01-heading .heading-bg {
    top: 10px;
  }
}
.wrapper h2.sec01-heading .heading-bg-left {
  left: -60px;
}
.wrapper h2.sec01-heading .heading-bg-right {
  right: -60px;
}