@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
/* CSS Document */
body {
  background-color: #f5f5f5;
  color: #222222;
  font-family: "Noto Sans", sans-serif;
}
/*
html, body {
  overflow-x: hidden;
}
*/
body.fixed {
  height: 100vh;
  overflow: hidden;
  position: fixed;
  width: 100%;
}
body {
  padding-right: 120px;
}
@media screen and (max-width: 1080px) {
  body {
    padding-right: 0;
  }
}

body .bg-img-wrap {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

body.on .bg-img-wrap .bg-img {
  display: none;
}

body .bg-img-wrap {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

body.on .bg-img-wrap .bg-img {
  display: none;
}

a {
  display: inline-block;
  transition: ease 0.3s;
}

a:hover {
  opacity: 0.5;
}

a p,
a {
  color: #ffffff;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-black {
  font-weight: 900;
}

.loader {
  display: none;
}

.main-wrap {
  overflow: hidden;
}

.pd_wrap {
  padding: 150px 100px 0;
}

.pd_wrap_all {
  padding: 150px 100px 150px;
}

.pd_wrap_side {
  padding-left: 100px;
  padding-right: 100px;
}

/* ---------- common ---------- */
.pagetitle .txt-box {
  width: 30%;
}

.pagetitle .img-box {
  height: 450px;
  width: 70%;
}

.link-wrap {
  gap: 30px 50px;
  padding-top: 10px;
}

.link-wrap a {
  padding-left: 50px;
  position: relative;
}

.link-wrap a:hover {
  opacity: 1;
}

.link-wrap a .icon {
  background-color: #f0f0f0;
  border-radius: 50%;
  height: 30px;
  left: 5px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: ease 0.3s;
  width: 30px;
}

.link-wrap a .icon i {
  color: #001d3b;
  font-size: 12px;
  opacity: 0.6;
}

.link-wrap a:hover .icon {
  background-color: #001d3b;
  height: 40px;
  left: 0;
  width: 40px;
}

.link-wrap a:hover .icon i {
  color: #fff;
  opacity: 1;
}

.more-wrap {
  gap: 20px 40px;
}

.more {
  text-align: center;
}

.more a {
  border-radius: 100px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  padding: 15px 60px;
  position: relative;
}

.more a::after {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateX(-100%);
  transition: ease 0.4s;
  width: 100%;
  z-index: 1;
}

.more a:hover::after {
  transform: translateX(0);
}

.more a:hover {
  opacity: 1 !important;
}

.more a i,
.more a p {
  transition: ease 0.3s;
}

.more a i {
  font-size: 20px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.more a p {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.more1 a {
  background-color: #fff;
}

.more1 a::after {
  background-color: #ed1b24;
}

.more1 a p,
.more1 a i {
  color: #ed1b24;
}

.more1 a:hover p,
.more1:hover a i {
  color: #fff;
}

/* ---------- header ---------- */
/* ANIME */
.sc-anime.topin.on {
  opacity: 0;
  transform: translateY(-50px);
}

.sc-anime.topin.on.active {
  -webkit-animation-name: topin;
  -webkit-animation-duration: 1.2s;
  -webkit-animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-name: topin;
  animation-timing-function: ease;
}

.sc-anime.bottomin.on {
  opacity: 0;
  transform: translateY(50px);
}

.sc-anime.bottomin.on.active {
  -webkit-animation-name: bottomin;
  -webkit-animation-duration: 1.2s;
  -webkit-animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-name: bottomin;
  animation-timing-function: ease;
}

.sc-anime.leftin.on {
  opacity: 0;
  transform: translateX(-50px);
}

.sc-anime.leftin.on.active {
  -webkit-animation-name: leftin;
  -webkit-animation-duration: 1.2s;
  -webkit-animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-name: leftin;
  animation-timing-function: ease;
}

.sc-anime.rightin.on {
  opacity: 0;
  transform: translateX(50px);
}

.sc-anime.rightin.on.active {
  -webkit-animation-name: rightin;
  -webkit-animation-duration: 1.2s;
  -webkit-animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-name: rightin;
  animation-timing-function: ease;
}

.sc-anime.fadein.on {
  opacity: 0;
}

.sc-anime.fadein.on.active {
  -webkit-animation-name: fadein;
  -webkit-animation-duration: 1.2s;
  -webkit-animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-name: fadein;
  animation-timing-function: ease;
}

.sc-anime.blurin.on {
  -ms-filter: blur(6px);
  filter: blur(6px);
  opacity: 0;
}

.sc-anime.blurin.on.active {
  -webkit-animation-name: blurin;
  -webkit-animation-duration: 1.2s;
  -webkit-animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-name: blurin;
  animation-timing-function: ease;
}

@-webkit-keyframes topin {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes topin {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@-webkit-keyframes bottomin {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes bottomin {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@-webkit-keyframes leftin {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes leftin {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@-webkit-keyframes rightin {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes rightin {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@-webkit-keyframes upin {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes upin {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes blurin {
  0% {
    -ms-filter: blur(6px);
    filter: blur(6px);
    opacity: 0;
  }
  100% {
    -ms-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes blurin {
  0% {
    -ms-filter: blur(6px);
    filter: blur(6px);
    opacity: 0;
  }
  100% {
    -ms-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
/* color */
.txt-color-normal {
  color: #666666;
}

.txt-white {
  color: #ffffff;
}

.txt-red {
  color: red;
}

.txt-color1 {
  color: #009045;
}

.txt-color2 {
  color: #f5911e;
}

.txt-color3 {
  color: #ed1b24;
}

.txt-color4 {
  color: #001d3b;
}

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

.bg-black {
  background-color: black;
}

.bg-color1 {
  background-color: #009045;
}

.bg-color2 {
  background-color: #f5911e;
}

.bg-color3 {
  background-color: #ed1b24;
}

.bg-color4 {
  background-color: #001d3b;
}

.border-color1 {
  border-color: #009045;
}

.border-color2 {
  border-color: #f5911e;
}

.border-color3 {
  border-color: #ed1b24;
}

.border-color4 {
  border-color: #001d3b;
}

.hvr-txt-color-normal:hover {
  color: #666666;
}

.hvr-txt-white:hover {
  color: #ffffff;
}

.hvr-txt-red:hover {
  color: red;
}

.hvr-txt-color1:hover {
  color: #009045;
}

.hvr-txt-color2:hover {
  color: #f5911e;
}

.hvr-txt-color3:hover {
  color: #ed1b24;
}

.hvr-txt-color4:hover {
  color: #001d3b;
}

.hvr-bg-white:hover {
  background-color: #ffffff;
}

.hvr-bg-black:hover {
  background-color: black;
}

.hvr-bg-color1:hover {
  background-color: #009045;
}

.hvr-bg-color2:hover {
  background-color: #f5911e;
}

.hvr-bg-color3:hover {
  background-color: #ed1b24;
}

.hvr-bg-color4:hover {
  background-color: #001d3b;
}

.hvr-border-color1:hover {
  border-color: #009045;
}

.hvr-border-color2:hover {
  border-color: #f5911e;
}

.hvr-border-color3:hover {
  border-color: #ed1b24;
}

.hvr-border-color4:hover {
  border-color: #001d3b;
}

/* ---------- IEのみ ---------- */
/* ---------- 1280px ~ ---------- */
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {
  .pd_wrap {
    padding: 150px 50px 0;
  }

  .pd_wrap_all {
    padding: 150px 50px 150px;
  }

  .pd_wrap_side {
    padding-left: 50px;
    padding-right: 50px;
  }

  /* ---------- common ---------- */
  .pagetitle .img-box {
    height: 400px;
  }

  .more a {
    padding: 15px 60px;
  }

  .more a p {
    font-size: 16px;
  }

  .form-box .send .send-bt p {
    font-size: 16px;
  }

  /* ---------- footer ---------- */
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {
  /* ---------- common ---------- */
  .pagetitle .txt-box {
    width: 350px;
  }

  .pagetitle .img-box {
    height: 400px;
    width: calc(100% - 350px);
  }
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {
  .pd_wrap {
    padding: 100px 50px 0;
  }

  .pd_wrap_all {
    padding: 100px 50px 100px;
  }

  .pd_wrap_side {
    padding-left: 50px;
    padding-right: 50px;
  }

  /* ---------- common ---------- */
  .link-wrap {
    gap: 30px 40px;
  }

  .pagetitle .txt-box {
    width: 250px;
  }

  .pagetitle .img-box {
    height: 300px;
    width: calc(100% - 250px);
  }

  .form-box h3 {
    width: 250px;
  }

  .form-box .inputbox {
    width: calc(100% - 250px);
  }

  .form-box .send,
.form-box .check-area {
    margin-left: auto;
  }

  .form-box .send {
    text-align: center;
  }

  .privacypolicy {
    padding: 60px;
  }
}
@-webkit-keyframes menuin {
  0% {
    -ms-filter: blur(6px);
    filter: blur(6px);
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    -ms-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes menuin {
  0% {
    -ms-filter: blur(6px);
    filter: blur(6px);
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    -ms-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
    transform: translateY(0);
  }
}
/* ---------- スマートフォン ---------- */
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {
  .pd_wrap {
    padding: 80px 5% 0;
  }

  .pd_wrap_all {
    padding: 80px 5% 80px;
  }

  .pd_wrap_side {
    padding-left: 5%;
    padding-right: 5%;
  }

  /* ---------- common ---------- */
  .link-wrap {
    gap: 30px 30px;
  }

  .link-wrap a {
    padding-left: 45px;
  }

  .link-wrap a .icon {
    height: 25px;
    width: 25px;
  }

  .link-wrap a .icon i {
    font-size: 10px;
  }

  .link-wrap a:hover .icon {
    height: 35px;
    width: 35px;
  }

  .pagetitle .txt-box {
    padding: 40px 10px;
    width: 100%;
  }

  .pagetitle .img-box {
    height: 200px;
    width: 100%;
  }

  .more a {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 15px 50px;
  }

  .more a p {
    font-size: 14px;
  }

  .more a i {
    font-size: 14px;
  }

  .form-box {
    margin-top: 30px;
  }

  .form-box .text {
    font-size: 14px;
  }

  .form-box .text br {
    display: none;
  }

  .form-box .box.required-box h3::after {
    font-size: 12px;
  }

  .form-box .box.optional-box h3 {
    padding-left: 10px;
  }

  .form-box h3 {
    margin-bottom: 10px;
    padding-right: 0;
    width: 100%;
  }

  .form-box .inputbox {
    width: 100%;
  }

  .form-box .inputbox > input,
.form-box .inputbox textarea {
    font-size: 14px;
  }

  .form-box .send .send-bt {
    min-width: 210px;
  }

  .form-box .send .send-bt p,
.form-box .send .send-bt i {
    font-size: 14px;
  }

  .privacypolicy {
    padding: 60px 20px;
  }

  .privacypolicy .close-bt {
    height: 48px;
    width: 48px;
  }

  .privacypolicy .close-bt::before,
.privacypolicy .close-bt::after {
    height: 2px;
    width: 36px;
  }

  .privacypolicy .box-wrap {
    padding-top: 20px;
  }

  .privacypolicy .box-wrap .box:not(:last-of-type) {
    margin-bottom: 40px;
  }

  .privacypolicy h3 {
    font-size: 16px;
  }
}
/* ---------- 350px ~ ---------- */
/*----------------------------------------------------------
ヘッダー
------------------------------------------------------------*/
.header {
  align-items: center;
  background-color: transparent;
  flex-wrap: nowrap;
  left: 0;
  padding-left: 30px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9998;
}

.top-header.on {
  background-color: transparent !important;
}

.top-header .logo {
    max-width: 280px;
  padding-bottom: 20px;
  padding-top: 45px;
  transition: all 0.3s ease;
  width: 30%;
}
@media screen and (max-width: 1080px) {
  .top-header .logo {
    max-width: 130px;
  }
}
@media screen and (max-width: 768px) {
  .top-header .logo {
    padding-top: 20px;
  }
}

.top-header .logo img {
  display: block;
}

.header .head_nav {
  align-items: center;
  flex-grow: 1;
  flex-wrap: nowrap;
  gap: 30px;
  justify-content: flex-end;
  padding-left: 40px;
  padding-right: 240px;
}
@media screen and (max-width: 1600px) {
  .header .head_nav {
    gap: 25px;
  }
}
@media screen and (max-width: 1280px) {
  .header .head_nav {
    padding-right: 170px;
  }
}
@media screen and (max-width: 1080px) {
  .header .head_nav {
    display: none !important;
  }
}
.header .head_nav a p {
  color: #ffff;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 1600px) {
  .header .head_nav a p {
    font-size: 16px;
  }
}

.header.on .logo img {
  filter: invert(1) !important;
}

/*----------------------------------------------------------
下層ページヘッダー
------------------------------------------------------------*/
.page-header {
  background-color: #fff;
}
.page-header .logo {
  max-width: 120px;
  padding-bottom: 13px !important;
  padding-top: 13px !important;
  transition: all 0.3s ease;
  width: 25%;
}
@media screen and (max-width: 768px) {
  .page-header .logo {
    padding-top: 20px;
  }
}
@media screen and (max-width: 576px) {
  .page-header .logo {

  }
}
.page-header .logo img {
  display: block;

}
.page-header .head_nav {
  padding-bottom: 0;
}
.page-header .head_nav a:not(.shop_bt a) p {
  color: #000 !important;
}
.page-header .menu-bt .line .line-item {
  background-color: #000 !important;
}

/*----------------------------------------------------------
サイドメニュー
------------------------------------------------------------*/
.side-menu {
  border-left: 1px solid #c6c6c6;
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 121px;
  z-index: 9999;
}
@media screen and (max-width: 1080px) {
  .side-menu {
    display: none !important;
  }
}
.side-menu .top {
  background-color: #f3f74e;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 15px;
  padding-right: 15px;
}
.side-menu .top img {
  width: 32px;
}
.side-menu .top a {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  padding-bottom: 40px;
  padding-top: 40px;
}
.side-menu .top a:not(:first-of-type) {
  border-top: 1px solid rgba(63, 63, 63, 0.3);
}
.side-menu .top p {
  color: #222222;
  font-size: 15px;
  line-height: 1;
}
.side-menu .bottom {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
  justify-content: flex-end;
  padding-bottom: 40px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 20px;
}
.side-menu .bottom img {
  width: 100%;
}
.side-menu .bottom a {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 46px;
}

body.on .side-menu {
  position: fixed;
  right: 0;
  top: 0;
}

/*----------------------------------------------------------
SPオープンボタン
------------------------------------------------------------*/
.header .menu-bt {
  cursor: pointer;
  display: block;
  flex-shrink: 0;
  height: 120px;
  position: relative;
  width: 150px;
}
@media screen and (min-width: 1081px) {
  .header .menu-bt {
    display: none;
  }
}
@media screen and (max-width: 1080px) {
  .header .menu-bt {
    height: 90px;
    width: 90px;
  }
}
@media screen and (max-width: 768px) {
  .header .menu-bt {
    height: 70px;
    width: 70px;
  }
}

.header .menu-bt .line {
  height: 33px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
}
@media screen and (max-width: 1080px) {
  .header .menu-bt .line {
    height: 38%;
    width: 50.3%;
  }
}

.header .menu-bt .line .line-item {
  background-color: #ffffff;
  height: 3px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  transition: ease 0.3s;
  width: 100%;
}

.header.on .menu-bt .line .line-item {
  background-color: #000000 !important;
}

.header .menu-bt .line .line-item:first-of-type {
  top: 0;
}
.header .menu-bt .line .line-item:nth-of-type(2) {
  top: 42%;
}

.header .menu-bt .line .line-item:nth-of-type(3) {
  top: 87%;
}

.header .menu-bt.active .line .line-item:first-of-type {
  left: 0;
  margin: auto;
  right: 0;
  top: 32%;
  transform: translateY(-50%) rotate(45deg);
  width: 80%;
}
@media screen and (max-width: 768px) {
  .header .menu-bt.active .line .line-item:first-of-type {
    top: 43%;
    width: 71%;
  }
}

.header .menu-bt.active .line .line-item:nth-of-type(2) {
  opacity: 0;
}

.header .menu-bt.active .line .line-item:nth-of-type(3) {
  left: 0;
  margin: auto;
  opacity: 1;
  right: 0;
  top: 22%;
  transform: translateY(50%) rotate(-45deg);
  width: 80%;
}
@media screen and (max-width: 768px) {
  .header .menu-bt.active .line .line-item:nth-of-type(3) {
    top: 32%;
    width: 71%;
  }
}

@media screen and (max-width: 1080px) {
  .header {
    padding-left: 30px;
  }

  .head_nav-wrap {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding-left: 15px;
  }
}
/* ーーーーーーーーーーーー'オープン時メニュー'ーーーーーーーーーーーーーー*/
.menu-wrap {
  background-color: rgba(255, 255, 255, 0.9);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 998;
}

.menu-wrap > div {
  height: 100%;
  left: 0;
  overflow: auto;
  padding: 280px 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .menu-wrap > div {
    padding: 190px 0;
  }
}
@media screen and (max-width: 768px) {
  .menu-wrap > div {
    padding: 120px 0 50px;
  }
}
@media screen and (max-width: 576px) {
  .menu-wrap > div {
    padding: 50px 0 50px;
  }
}

.menu-wrap > div .ul {
  align-items: flex-start;
  gap: 60px 30px;
  justify-content: center;
  max-width: 1280px;
  width: 90%;
}
@media screen and (max-width: 1080px) {
  .menu-wrap > div .ul {
    gap: 30px 20px;
    justify-content: center;
    padding-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .menu-wrap > div .ul {
    padding-bottom: 50px;
    padding-top: 60px;
  }
}

.menu-wrap > div .ul .li {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-filter: blur(6px);
  align-items: center;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  filter: blur(6px);
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(50%);
  width: calc(100% / 3 - 60px / 3);
}

@media screen and (max-width: 1080px) {
  .menu-wrap > div .ul .li {
    width: calc(100% / 2 - 20px / 2);
  }
}
.menu-wrap.active > div .ul .li {
  -webkit-animation-name: menuin;
  -webkit-animation-duration: 1.2s;
  -webkit-animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-name: menuin;
  animation-timing-function: ease;
}

.menu-wrap.active > div .ul .li:nth-of-type(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.menu-wrap.active > div .ul .li:nth-of-type(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.menu-wrap.active > div .ul .li:nth-of-type(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.menu-wrap.active > div .ul .li:nth-of-type(5) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.menu-wrap.active > div .ul .li:nth-of-type(6) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.menu-wrap.active > div .ul .li:nth-of-type(7) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.menu-wrap.active > div .ul .li:nth-of-type(8) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.menu-wrap.active > div .ul .li:nth-of-type(9) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.menu-wrap.active > div .ul .li:nth-of-type(10) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.menu-wrap.active > div .ul .li:nth-of-type(11) {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

.menu-wrap.active > div .ul .li:nth-of-type(12) {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

.menu-wrap.active > div .ul .li:nth-of-type(13) {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

.menu-wrap.active > div .ul .li:nth-of-type(14) {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

.menu-wrap.active > div .ul .li:nth-of-type(15) {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

.menu-wrap.active > div .ul .li a {
  background-color: #fff;
  border: 2px solid #bbbbbb;
  border-radius: 30px;
  box-sizing: border-box;
  display: block;
  padding: 20px 5px;
  transition: ease 0.3s;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .menu-wrap.active > div .ul .li a {
    padding: 10px 5px;
  }
}
.menu-wrap > div .ul .li a p {
  text-align: center;
}

.menu-wrap > div .ul .li a p.jp {
  color: #222222;
  font-size: 18px;
}

@media screen and (max-width: 576px) {
  .menu-wrap > div .ul .li a p.jp {
    font-size: 16px;
    margin-top: 5px;
  }
}
.menu-wrap > div .ul .li a p.en {
  color: #f3f74f;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-weight: 700;
}
@media screen and (max-width: 576px) {
  .menu-wrap > div .ul .li a p.en {
    font-size: 20px;
    line-height: 1;
  }
}

/*----------------------------------------------------------
footer
------------------------------------------------------------*/
.footer {
  background-color: #3f3f3f;
  padding-bottom: 20px;
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 155px;
}
@media screen and (max-width: 1280px) {
  .footer {
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 135px;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 110px;
  }
}
@media screen and (max-width: 576px) {
  .footer {
    padding-top: 100px;
  }
}
.footer .left_box {
  flex-shrink: 0;
}
.footer .logo {
  margin-right: auto;
    max-width: 164px;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .footer .logo {

  }
}
@media screen and (max-width: 768px) {
  .footer .logo {
    margin-left: auto;
    max-width: 130px;
  }
}
@media screen and (max-width: 576px) {
  .footer .logo {
    max-width: 120px;
  }
}
.footer .txts a {
  display: block;
  margin-top: 10px;
}
.footer .txts p:not(:first-child) {
  margin-top: 10px;
}
.footer .flex {
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
  margin-left: auto;
  margin-left: auto;
  margin-right: auto;
  margin-right: auto;
  max-width: 1410px;
  width: 100%;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .footer .flex {
    align-items: center;
    flex-direction: column;
    gap: 30px;
  }
}
.footer .right_box {
  display: flex;
  gap: 40px;
  padding-top: 30px;
}
@media screen and (max-width: 1080px) {
  .footer .right_box {
    flex-wrap: wrap;
    gap: 40px 30px;
    justify-content: center;
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer .right_box {
    gap: 30px 20px;
  }
}
.footer .right_box .ul .ttl p {
  color: #f3f74f;
  display: block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.2;
}
@media screen and (max-width: 1080px) {
  .footer .right_box .ul .ttl p {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .footer .right_box .ul .ttl p {
    font-size: 16px;
  }
}
@media screen and (max-width: 576px) {
  .footer .right_box .ul .ttl p {
    font-size: 14px;
  }
}
.footer .right_box .ul .box {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 27px;
}
@media screen and (max-width: 1080px) {
  .footer .right_box .ul .box {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer .right_box .ul .box {
    margin-top: 15px;
  }
}
.footer .right_box .ul .box a {
  display: block;
}
.footer .right_box .ul .box a p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.2;
}
@media screen and (max-width: 1080px) {
  .footer .right_box .ul .box a p {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .footer .right_box .ul .box a p {
    font-size: 12px;
  }
}
/* ーーーーーーーーーーーー'SNS'ーーーーーーーーーーーーーー*/
.footer {
  position: relative;
}
.footer .sns {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 60px;
}
@media screen and (max-width: 1080px) {
  .footer .sns {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .footer .sns {
    gap: 15px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .footer .sns {
    gap: 10px;
  }
}
.footer .sns a {
  display: block;
  width: 36px;
}
@media screen and (max-width: 768px) {
  .footer .sns a {
    width: 30px;
  }
}
@media screen and (max-width: 576px) {
  .footer .sns a {
    width: 25px;
  }
}

/* ーーーーーーーーーーーー'コピーライト'ーーーーーーーーーーーーーー*/
.copyright {
  border-top: 1px solid rgba(245, 245, 245, 0.2);
  color: #fff;
  font-size: 12px !important;
  letter-spacing: 0.06em;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 80px;
  opacity: 0.6;
  padding-bottom: 10px;
  padding-top: 30px;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .copyright {
    margin-top: 70px;
  }
}
@media screen and (max-width: 768px) {
  .copyright {
    margin-top: 50px;
    padding-bottom: 0;
    padding-top: 20px;
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .copyright {
    font-size: 10px !important;
  }
}

/* ーーーーーーーーーーーー'トップに戻るボタン'ーーーーーーーーーーーーーー*/
.totop {
  align-items: center;
  background-color: #222222;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 240px;
  justify-content: flex-end;
  padding-bottom: 40px;
  width: 240px;
  z-index: 1;
}
@media screen and (max-width: 1080px) {
  .totop {
    height: 220px;
    padding-bottom: 30px;
    width: 220px;
  }
}
@media screen and (max-width: 768px) {
  .totop {
    gap: 5px;
    height: 200px;
    padding-bottom: 30px;
    width: 200px;
  }
}
.totop p {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1;
}
@media screen and (max-width: 1080px) {
  .totop p {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .totop p {
    font-size: 16px;
  }
}
@media screen and (max-width: 576px) {
  .totop p {
    font-size: 14px;
  }
}
.totop .la-angle-up::before {
  color: #fff;
  font-size: 22px;
}
@media screen and (max-width: 1080px) {
  .totop .la-angle-up::before {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .totop .la-angle-up::before {
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  .totop .la-angle-up::before {
    font-size: 16px;
  }
}

body.on .totop {
  left: 50%;
  position: absolute;
  top: -120px;
  transform: translateX(-50%);
}

/*----------------------------------------------------------
footer-contact
------------------------------------------------------------*/
.footer-contact {
  padding-bottom: 120px;
  padding-top: 120px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1080px) {
  .footer-contact {
    padding-bottom: 100px;
    padding-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .footer-contact {
    padding-bottom: 80px;
    padding-top: 80px;
  }
}
@media screen and (max-width: 576px) {
  .footer-contact {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}
.footer-contact .common-btn {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .footer-contact .common-btn {
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
}
.footer-contact .inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1400px;
  width: 100%;
}
.footer-contact .box {
  position: relative;
  z-index: 3;
}
.footer-contact .box .txt01 {
  align-items: center;
  display: flex;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .footer-contact .box .txt01 {
    gap: 10px;
    justify-content: center;
  }
}
.footer-contact .box .txt01 img {
  display: block;
  width: 20px;
}
.footer-contact .box .txt01 h2 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .footer-contact .box .txt01 h2 {
    font-size: 16px;
  }
}
@media screen and (max-width: 576px) {
  .footer-contact .box .txt01 h2 {
    font-size: 14px;
  }
}
.footer-contact .box .en {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 66px;
  letter-spacing: 0.15em;
  line-height: 1;
  margin-top: 28px;
}
@media screen and (max-width: 1080px) {
  .footer-contact .box .en {
    font-size: 50px;
  }
}
@media screen and (max-width: 768px) {
  .footer-contact .box .en {
    font-size: 40px;
    margin-top: 20px;
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .footer-contact .box .en {
    font-size: 30px;
    margin-top: 15px;
  }
}
.footer-contact .box .txt02 {
  color: #fff;
  font-size: 16px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .footer-contact .box .txt02 {
    font-size: 14px;
    margin-top: 40px;
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .footer-contact .box .txt02 {
    font-size: 12px;
    margin-top: 30px;
  }
}

body.on .footer-contact::after {
  background-image: linear-gradient(90deg, #1a2027 0%, #1a202740 52%, transparent);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  body.on .footer-contact::after {
    background-color: rgba(26, 32, 39, 0.3);
  }
}
/*# sourceMappingURL=sourcemaps/style.css.map */