@charset "UTF-8";
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: rgb(76, 46, 25);
  font-size: 16px;
  font-family: "Montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #333;
  background-color: #f6f6f6;
}
body main {
  flex: 1;
}

ul {
  list-style: none;
}

header > .inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  pointer-events: none;
}
header > .inner .header-flex {
  display: flex;
  height: 70px;
  justify-content: space-between;
  position: relative;
  z-index: 1001;
}
header > .inner .header-flex .space {
  flex: 1;
  display: none;
}
header > .inner .header-flex .logo {
  padding: 0 20px;
  height: 100%;
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  border-bottom-right-radius: 20px;
  box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.05);
  pointer-events: all;
}
header > .inner .header-flex .logo img {
  width: auto;
  height: 40px;
}
header > .inner .header-flex .menu {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: padding-right 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  height: 100%;
  padding: 5px;
  pointer-events: all;
}
header > .inner .header-flex .menu .menu-block {
  width: 60px;
  height: 60px;
  display: inline-flex;
  flex-direction: column;
  white-space: nowrap;
  align-items: center;
  transition: all 0.6s ease;
  background-color: #FC792B;
  color: #fff;
  border-radius: 6px;
  box-shadow: 0 6px 10px 0 rgba(134, 51, 0, 0.1);
}
header > .inner .header-flex .menu .menu-block::after {
  content: "メニュー";
  display: inline-block;
  color: #fff;
  font-size: 13px;
  z-index: 2;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 10px;
}
header > .inner .header-flex .menu .hamb {
  width: 60px;
  height: 40px;
  position: relative;
}
header > .inner .header-flex .menu .hamb span {
  display: inline-block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
header > .inner .header-flex .menu .hamb span:nth-child(1) {
  top: 28%;
}
header > .inner .header-flex .menu .hamb span:nth-child(2) {
  top: 50%;
}
header > .inner .header-flex .menu .hamb span:nth-child(3) {
  top: 72%;
}
header > .inner .header-flex .menu.show .menu-block::before {
  height: 100%;
}
header > .inner .header-flex .menu.show .menu-block::after {
  content: "閉じる";
  color: #fff;
}
header > .inner .header-flex .menu.show .hamb span {
  background-color: #fff;
}
header > .inner .header-flex .menu.show .hamb span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
header > .inner .header-flex .menu.show .hamb span:nth-child(2) {
  opacity: 0;
}
header > .inner .header-flex .menu.show .hamb span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(315deg);
}
header > .inner .back-white {
  width: 100%;
  height: 70px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 198;
}

.close {
  background-color: rgba(255, 255, 255, 0);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transition: all 0.3s ease;
  pointer-events: none;
}
.close.show {
  background-color: rgba(255, 255, 255, 0.2);
  pointer-events: all;
}

.global-menu {
  position: relative;
  z-index: 199;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100% - 70px);
  padding: 20px;
  overflow: hidden;
}
.global-menu.show .main-menu {
  -webkit-animation: open 0.6s ease forwards 0.6s;
          animation: open 0.6s ease forwards 0.6s;
}
.global-menu.show .banner-menu {
  -webkit-animation: open 0.6s ease forwards 0.8s;
          animation: open 0.6s ease forwards 0.8s;
}
.global-menu.hide .main-menu {
  -webkit-animation: close 1.2s ease both;
          animation: close 1.2s ease both;
}
.global-menu.hide .banner-menu {
  -webkit-animation: close 1.2s ease both 0.2s;
          animation: close 1.2s ease both 0.2s;
}
.global-menu .inner {
  position: fixed;
  width: 80%;
  height: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: auto;
}
.global-menu .inner .main-menu {
  border-radius: 20px;
  background-color: #fff;
  padding: 30px;
  margin-bottom: 20px;
}
.global-menu .inner .main-menu ul {
  display: flex;
  flex-wrap: wrap;
}
.global-menu .inner .main-menu ul li {
  width: 100%;
}
.global-menu .inner .main-menu ul li a {
  padding: 20px;
  display: inline-block;
  text-decoration: none;
  font-size: 18px;
}
.global-menu .inner .banner-menu {
  border-radius: 20px;
  padding: 30px;
  opacity: 0;
  background-color: #fff;
}

@media print, screen and (min-width: 880px) {
  .global-menu .inner .main-menu ul li {
    width: auto;
  }
}
@-webkit-keyframes open-color {
  0% {
    width: 0;
    height: 0;
    border-bottom-left-radius: 100%;
  }
  50% {
    height: 100%;
  }
  100% {
    width: 70%;
    height: 100%;
    border-bottom-left-radius: 0;
  }
}
@keyframes open-color {
  0% {
    width: 0;
    height: 0;
    border-bottom-left-radius: 100%;
  }
  50% {
    height: 100%;
  }
  100% {
    width: 70%;
    height: 100%;
    border-bottom-left-radius: 0;
  }
}
@-webkit-keyframes close-color {
  0% {
    width: 70%;
    height: 100%;
    border-bottom-left-radius: 0;
  }
  100% {
    width: 0%;
    height: 0%;
    border-bottom-left-radius: 100%;
  }
}
@keyframes close-color {
  0% {
    width: 70%;
    height: 100%;
    border-bottom-left-radius: 0;
  }
  100% {
    width: 0%;
    height: 0%;
    border-bottom-left-radius: 100%;
  }
}
@-webkit-keyframes open {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes open {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes close {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}
@keyframes close {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}
footer {
  padding: 20px;
  background-color: #F6F6F6;
}
footer .inner {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 13px;
  color: #666;
  z-index: 2000;
  position: relative;
}
footer .inner .copy {
  width: 100%;
}
footer .inner .note {
  width: 100%;
}

@media print, screen and (min-width: 880px) {
  footer .inner {
    font-size: 14px;
  }
  footer .inner .copy {
    width: auto;
  }
  footer .inner .note {
    width: auto;
  }
}
.global-menu-2 {
  position: absolute;
  top: 70px;
  left: 100%;
  transition: all 0.6s ease;
  background-color: #fff;
  border-left: solid 1px #eee;
  z-index: 101;
  height: 100%;
  padding: 20px;
}
.global-menu-2 .main-menu {
  height: 100%;
}
.global-menu-2 .main-menu ul {
  display: flex;
  flex-wrap: wrap;
}
.global-menu-2 .main-menu ul li {
  width: 50%;
}
.global-menu-2 .main-menu ul li a {
  display: inline-block;
  min-width: 100px;
  padding: 10px;
  text-decoration: none;
}
.global-menu-2 .banner-menu ul li a img {
  width: 100%;
  height: auto;
}

.close-2 {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
}
.close-2.show {
  display: block;
}

.global-menu-3 {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  right: 0;
  clip: rect(auto, auto, auto, auto);
  transition: all 0.6s ease;
}
.global-menu-3.show {
  -webkit-animation: open-color 0.8s ease forwards;
          animation: open-color 0.8s ease forwards;
}
.global-menu-3.hide {
  -webkit-animation: close-color 0.8s ease both;
          animation: close-color 0.8s ease both;
}
.global-menu-3 .inner {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100% - 70px);
  z-index: 200;
  display: flex;
}
.global-menu-3 .inner .space {
  width: 40%;
}
.global-menu-3 .inner .menu-wrap {
  width: 60%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}
.global-menu-3 .inner .menu-wrap h2 {
  font-weight: normal;
}
.global-menu-3 .inner .menu-wrap .main-menu {
  margin-bottom: 30px;
  position: relative;
}
.global-menu-3 .inner .menu-wrap .main-menu::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
}
.global-menu-3 .inner .menu-wrap .main-menu ul {
  position: relative;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
}
.global-menu-3 .inner .menu-wrap .main-menu ul li a {
  display: inline-flex;
  padding: 10px;
  text-decoration: none;
}
.global-menu-3 .inner .menu-wrap .banner-menu ul {
  font-size: 0;
}
.global-menu-3 .inner .menu-wrap .banner-menu ul li {
  display: inline-block;
}
.global-menu-3 .inner .menu-wrap .banner-menu ul li:not(:last-of-type) {
  margin-right: 5px;
}

.close-3 {
  width: 0;
  height: 0;
  position: fixed;
  top: 0;
  right: 0;
  background-color: rgb(255, 255, 255);
}
.close-3.show {
  -webkit-animation: open-color 0.8s ease forwards;
          animation: open-color 0.8s ease forwards;
}
.close-3.hide {
  -webkit-animation: close-color 0.8s ease both;
          animation: close-color 0.8s ease both;
}

.global-menu-4 {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 100;
  background-color: #f8f8f8;
  transition: all 0.6s ease;
}
.global-menu-4.show {
  -webkit-animation: show 0.3s ease forwards;
          animation: show 0.3s ease forwards;
}
.global-menu-4.hide {
  -webkit-animation: hide 0.3s ease both;
          animation: hide 0.3s ease both;
}
.global-menu-4 .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}
.global-menu-4 .inner h2 {
  font-weight: normal;
  font-size: 26px;
  width: 100%;
  margin-bottom: 20px;
  position: absolute;
  top: -0.8em;
  left: 30px;
}
.global-menu-4 .inner h2 span {
  padding-right: 20px;
}
.global-menu-4 .inner h2 .en {
  font-size: 14px;
  opacity: 0.6;
  padding-left: 10px;
  color: #ff6600;
}
.global-menu-4 .inner .main-menu {
  position: relative;
  margin-bottom: 70px;
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
}
.global-menu-4 .inner .main-menu::after {
  content: "";
  width: 120%;
  z-index: -1;
  height: 120%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 63% 37% 61% 39%/38% 27% 73% 62%;
}
.global-menu-4 .inner .main-menu ul {
  display: flex;
  flex-wrap: wrap;
}
.global-menu-4 .inner .main-menu ul li {
  margin: 5px;
}
.global-menu-4 .inner .main-menu ul li a {
  display: inline-block;
  width: 100%;
  white-space: nowrap;
  text-decoration: none;
  padding: 6px 40px 4px 15px;
  color: #333;
  position: relative;
  border-radius: 100px;
  border: solid 1px #ff8d46;
  background-color: #ff8d46;
  color: #fff;
  transition: all 0.3s ease;
}
.global-menu-4 .inner .main-menu ul li a::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 10px;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.global-menu-4 .inner .main-menu ul li a::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 17px;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  border-top: solid 2px #ff6200;
  border-right: solid 2px #ff6200;
  transition: all 0.3s ease;
  z-index: 5;
}
.global-menu-4 .inner .main-menu ul li a:hover {
  box-shadow: 0 3px 0 0 rgb(207, 28, 0);
  transform: translateY(-3px);
  color: #fff;
  background-color: #ff6200;
  border: solid 1px #ff6200;
}
.global-menu-4 .inner .banner-menu {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  background-color: #fff;
}
.global-menu-4 .inner .banner-menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.global-menu-4 .inner .banner-menu ul li a img {
  max-width: 150px;
}

@-webkit-keyframes show {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    display: block;
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes show {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    display: block;
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes hide {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
  }
}
@keyframes hide {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
  }
}
.global-menu-5 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #FC792B;
  display: none;
  z-index: 199;
  pointer-events: all;
}
.global-menu-5.show {
  display: block;
  -webkit-animation: show 0.6s ease forwards;
          animation: show 0.6s ease forwards;
}
.global-menu-5.show .main-menu {
  -webkit-animation: show 0.6s ease both 0.1s;
          animation: show 0.6s ease both 0.1s;
}
.global-menu-5.show .banner-menu {
  -webkit-animation: show 0.6s ease both 0.2s;
          animation: show 0.6s ease both 0.2s;
}
.global-menu-5.hide {
  display: block;
  -webkit-animation: hide 0.6s ease both 0.2s;
          animation: hide 0.6s ease both 0.2s;
}
.global-menu-5.hide .main-menu {
  -webkit-animation: hide 0.6s ease forwards;
          animation: hide 0.6s ease forwards;
}
.global-menu-5.hide .banner-menu {
  -webkit-animation: hide 0.6s ease both 0.1s;
          animation: hide 0.6s ease both 0.1s;
}
.global-menu-5 .inner {
  max-width: 1270px;
  padding: 90px 20px 70px 20px;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  overflow-y: auto;
}
.global-menu-5 .inner .main-menu {
  margin-bottom: 20px;
}
.global-menu-5 .inner .main-menu ul {
  display: flex;
  flex-wrap: wrap;
}
.global-menu-5 .inner .main-menu ul li {
  width: 100%;
}
.global-menu-5 .inner .main-menu ul li a {
  display: inline-block;
  padding: 5px 10px 5px 30px;
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  position: relative;
}
.global-menu-5 .inner .main-menu ul li a::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 17px;
  height: 17px;
  background-color: #fff;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.global-menu-5 .inner .main-menu ul li a::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 5px;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  border-top: solid 2px #FC792B;
  border-right: solid 2px #FC792B;
  transition: all 0.3s ease;
  z-index: 5;
}
.global-menu-5 .inner .banner-menu {
  position: relative;
}
.global-menu-5 .inner .banner-menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-size: 0;
}
.global-menu-5 .inner .banner-menu ul li {
  display: inline-block;
  margin-bottom: 5px;
}
.global-menu-5 .inner .banner-menu ul li:not(:last-of-type) {
  margin-right: 5px;
}
.global-menu-5 .inner .banner-menu ul li a img {
  max-width: 150px;
}

@media print, screen and (min-width: 480px) {
  .global-menu-5 .inner {
    height: auto;
  }
  .global-menu-5 .inner .main-menu ul li {
    width: 50%;
  }
}
@media print, screen and (min-width: 880px) {
  .global-menu-5 .inner {
    height: auto;
  }
  .global-menu-5 .inner .main-menu ul li {
    width: 33.3%;
  }
}
@media print, screen and (min-width: 1180px) {
  .global-menu-5 .inner {
    height: auto;
  }
  .global-menu-5 .inner .main-menu ul li {
    width: 20%;
  }
}