@charset "UTF-8";
/*-------------------------------
	全体
-------------------------------*/
*,
::before,
::after {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box; /*Safari*/ /*Firefox*/
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

/*
* 1. デバイスの向きを変えた後にユーザーの文字サイズ調整を防ぐ
* 2. remの基準となるフォントサイズ
*/
html {
  font-size: 62.5%; /*2*/
  -ms-text-size-adjust: 100%; /*1*/
  -webkit-text-size-adjust: 100%; /*1*/
}

body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*リストスタイルを消去*/
ul,
ol {
  list-style: none;
}

/*デフォルトでcollapse*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
  * IE9+用に、displayプロパティを定義。
  * 1. Edge, IE, Firefox用、details要素とsummary要素に「display: block;」を定義。
  * 2. IE, Firefox用、main要素に「display: block;」を定義。
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary { /* 1 */
  display: block;
}

/*-------------------------------
	フォーム類のスタイルをリセットする
-------------------------------*/
input,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none; /*Chromeのフォーカス時アウトラインを削除*/
  border: none;
  border-radius: 0;
  background: none;
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  -webkit-box-shadow: none;
          box-shadow: none;
  resize: none;
}

select { /*Firefoxのセレクト矢印を削除*/
  text-indent: 0.01px;
  text-overflow: "";
}

select::-ms-expand { /*IEのセレクト装飾を非表示*/
  display: none;
}

textarea {
  overflow: auto;
}

button,
[type=button],
[type=reset],
[type=submit] {
  border: 0;
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button:-moz-focusring,
input:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*-------------------------------
	テキスト・イメージ類スタイル
-------------------------------*/
a {
  background-color: transparent; /*IE10のリンクバックグラウンドカラーを透明にする*/
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0;
}

b,
strong {
  font-weight: bold;
}

img {
  border-style: none; /*リンク内画像のborderを消去*/
  vertical-align: bottom; /*画像下のスキマを消去*/
}

svg:not(:root) {
  overflow: hidden;
}

/*-------------------------------
    全体
-------------------------------*/
html {
  font-size: 62.5%;
  /*2*/
  -ms-text-size-adjust: 100%;
  /*1*/
  -webkit-text-size-adjust: 100%;
  /*1*/
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@media screen and (min-width: 1025px) {
  html.open {
    overflow: auto;
  }
}
body {
  color: #26221e;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
  background: #e0ddda;
  overflow-x: hidden;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
body.second {
  padding-top: 140px;
}

@media screen and (max-width: 1024px) {
  body {
    font-size: 1.4rem;
  }
}
/*-------------------------------
  header
-------------------------------*/
.p-header {
  z-index: 3;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 95px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background: #000000;
}
.p-header__inner {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1920px;
  max-width: 100%;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0 0 40px;
  margin: auto;
}
.p-header__logo {
  overflow: hidden;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 1.4rem;
  font-weight: 400;
  padding-bottom: 20px;
}
.p-header__nav {
  width: 80%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p-header__nav__sub1 {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 30px;
  height: 100%;
}
.p-header__nav__sub1 li {
  display: block;
  padding-bottom: 20px;
}
.p-header__nav__sub1 li a {
  color: #e7c098;
  font-weight: 600;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.4s cubic-bezier(0.51, 0.11, 0.4, 0.9);
  transition: all 0.4s cubic-bezier(0.51, 0.11, 0.4, 0.9);
}
.p-header__nav__sub1 li a span {
  position: relative;
  display: block;
  z-index: 2;
}
.p-header__nav__sub1 li a:hover {
  text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.5), -2px 2px 10px rgba(255, 255, 255, 0.5), 2px -2px 10px rgba(255, 255, 255, 0.5), -2px -2px 10px rgba(255, 255, 255, 0.5);
}
.p-header__nav__sub2 {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-center;
      -ms-flex-align: flex-center;
          align-items: flex-center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  gap: 1px;
}
.p-header__nav__sub2 li {
  display: block;
  width: 110px;
  height: 100%;
}
.p-header__nav__sub2 li a {
  display: block;
  width: 100%;
  height: 100%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s cubic-bezier(0.51, 0.11, 0.4, 0.9);
  transition: all 0.4s cubic-bezier(0.51, 0.11, 0.4, 0.9);
}
.p-header__nav__sub2 li:nth-of-type(1) a {
  background: #e7c098;
}
.p-header__nav__sub2 li:nth-of-type(1) a:hover {
  background: #e7c098;
}
.p-header__nav__sub2 li:nth-of-type(2) a {
  background: #f0e163;
}
.p-header__nav__sub2 li:nth-of-type(2) a:hover {
  background: #e7c098;
}

@media screen and (max-width: 1024px) {
  .p-header {
    height: 50px;
  }
  .p-header__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 60px 0 15px;
  }
  .p-header__logo {
    gap: 10px;
    width: 200px;
    max-width: 45%;
    padding-bottom: 0;
  }
  .p-header__logo img {
    max-width: 100%;
    height: auto;
  }
  .p-header__nav__sub1 {
    display: none;
  }
  .p-header__nav__sub2 {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-header__nav__sub2 li {
    width: 50px;
    height: 50px;
  }
  .p-header__nav__sub2 li a {
    padding: 12px;
  }
  .p-header__nav__sub2 li a img {
    max-width: 100%;
    height: auto;
  }
}
/*-------------------------------
        &.open{
          li{
            width: 110px;
            height: 100%;
            opacity: 1;
            visibility: visible;
          }
        }
   menu
 -------------------------------*/
/*nav sp*/
@-webkit-keyframes subMenu {
  0% {
    opacity: 1;
    z-index: 4;
    visibility: visible;
    top: 70px;
  }
  100% {
    opacity: 0;
    z-index: -2;
    visibility: hidden;
    top: 45px;
  }
}
@keyframes subMenu {
  0% {
    opacity: 1;
    z-index: 4;
    visibility: visible;
    top: 70px;
  }
  100% {
    opacity: 0;
    z-index: -2;
    visibility: hidden;
    top: 45px;
  }
}
@-webkit-keyframes subMenu_on {
  0% {
    opacity: 0;
    z-index: -2;
    visibility: hidden;
    top: 45px;
  }
  100% {
    opacity: 1;
    z-index: 5;
    visibility: visible;
    top: 70px;
  }
}
@keyframes subMenu_on {
  0% {
    opacity: 0;
    z-index: -2;
    visibility: hidden;
    top: 45px;
  }
  100% {
    opacity: 1;
    z-index: 5;
    visibility: visible;
    top: 70px;
  }
}
.nav_sp {
  display: block;
  visibility: visible;
  position: fixed;
  width: 100%;
  top: 0;
  right: -150vw;
  padding-top: 100px;
  background: rgba(255, 255, 255, 0.5);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.7)), color-stop(80%, rgba(255, 255, 255, 0.55)), color-stop(90%, rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.55) 80%, rgba(255, 255, 255, 0.1) 90%, rgba(255, 255, 255, 0) 100%);
  background-size: auto;
  z-index: 1000;
  height: 100%;
  -webkit-transition: all 0.2s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  transition: all 0.2s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
}
.nav_sp_list {
  height: 100%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.nav_sp_list > li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
}
.nav_sp_list > li.sp_menu_item {
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.nav_sp_list > li > a {
  line-height: 1;
  color: #fff;
  font-size: 1.4rem;
  padding-left: 0.4em;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.nav_sp_list > li > a span {
  display: block;
  margin-top: auto;
  padding-left: 1em;
  font-size: 1rem;
}
.nav_sp_box {
  height: 100%;
  position: relative;
  padding: 20px 20px 20px;
  margin-left: 14vw;
  background: #e7c098;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(231, 192, 152, 0.99)), color-stop(80%, rgba(231, 192, 152, 0.95)), to(rgba(4, 61, 120, 0)));
  background: linear-gradient(180deg, rgba(231, 192, 152, 0.99) 0%, rgba(231, 192, 152, 0.95) 80%, rgba(4, 61, 120, 0) 100%);
  overflow: scroll;
}
.nav_sp.open {
  right: 0;
}
.nav_sp.open .anime1 {
  -webkit-animation-name: spMenu_anime1;
          animation-name: spMenu_anime1;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
}

/*animation*/
@-webkit-keyframes spMenu {
  0% {
    opacity: 0;
    z-index: -2;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    z-index: 11;
    visibility: visible;
  }
}
@keyframes spMenu {
  0% {
    opacity: 0;
    z-index: -2;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    z-index: 11;
    visibility: visible;
  }
}
@-webkit-keyframes spMenu_anime1 {
  0% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes spMenu_anime1 {
  0% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
/*nav_toggle*/
#nav_toggle {
  z-index: 1001;
  opacity: 1;
}
#nav_toggle.open {
  z-index: 1001;
}

.nav_toggle {
  width: 30px;
  height: 26px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  top: 12px;
  right: 14px;
  z-index: 1000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.nav_toggle div {
  position: relative;
  width: 100%;
  height: 100%;
  gap: 10px;
  cursor: pointer;
  position: relative;
}
.nav_toggle span {
  width: 100%;
  height: 4px;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  transition: all 0.2s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  background: #e7c098;
}
.nav_toggle span.menu_line_1 {
  top: 0;
}
.nav_toggle span.menu_line_2 {
  top: 10px;
}
.nav_toggle span.menu_line_3 {
  top: 20px;
}
.nav_toggle span.menu_txt {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  top: 30px;
  letter-spacing: 0;
  background: 0;
  text-align: justify;
}

@media screen and (max-width: 1024px) {
  .nav_toggle {
    opacity: 1;
    visibility: visible;
  }
}
/*開閉ボタンopen時*/
.nav_toggle.open span.menu_line_1 {
  top: 14px;
}
.nav_toggle.open span.menu_line_2 {
  top: 14px;
  opacity: 1;
}
.nav_toggle.open span.menu_line_3 {
  top: 14px;
}

/*-------------------------------
    a
-------------------------------*/
a {
  color: #000;
}

/*-------------------------------
    fadein
-------------------------------*/
.fade_in,
.fade_in_once {
  position: relative;
  opacity: 0;
  visibility: hidden;
  top: 20px;
  -webkit-transition: all 1.1s ease-in-out 0.1s;
  transition: all 1.1s ease-in-out 0.1s;
}
.fade_in.fade_in_up,
.fade_in_once.fade_in_up {
  opacity: 1;
  visibility: visible;
  top: 0;
}

.fade_in2,
.fade_in_once {
  position: relative;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.6s ease-in-out 0.1s;
  transition: all 0.6s ease-in-out 0.1s;
}
.fade_in2.fade_in_up,
.fade_in_once.fade_in_up {
  opacity: 1;
  visibility: visible;
}

.fade_bottom {
  position: relative;
  opacity: 0;
  visibility: hidden;
  bottom: -20px;
  -webkit-transition: all 0.8s ease-in-out 0.1s;
  transition: all 0.8s ease-in-out 0.1s;
}
.fade_bottom.fade_bottom_up {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}

.popup {
  opacity: 0;
}
.popup.is-animated {
  -webkit-animation: popup 0.5s cubic-bezier(0.22, 0.9, 0.54, 1.01) forwards;
          animation: popup 0.5s cubic-bezier(0.22, 0.9, 0.54, 1.01) forwards;
}

@-webkit-keyframes popup {
  0% {
    -webkit-transform: translateY(40px) scale(0.8);
            transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateY(0) scale(1.02);
            transform: translateY(0) scale(1.02);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes popup {
  0% {
    -webkit-transform: translateY(40px) scale(0.8);
            transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateY(0) scale(1.02);
            transform: translateY(0) scale(1.02);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    opacity: 1;
  }
}