@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/*add reset styles*/
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/*Break Point
------------------------------*/
/*font
---------------------------------*/
/*color
---------------------------------*/
body {
  color: #786a3e;
  font-family: "Zen Old Mincho", serif;
  font-weight: normal;
  line-height: 1.5;
  overflow: visible;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

.header {
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: 0.15 all;
  transition: 0.15 all;
}
.header:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
}
@media print, screen and (max-width: 1023.9px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    padding-top: 15px;
    padding-bottom: 22px;
  }
}
@media print, screen and (min-width: 1024px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
}
.header.-active {
  background-color: #fff;
}
@media print, screen and (max-width: 1023.9px) {
  .header.-active::before {
    content: "";
    display: block;
    height: 100vh;
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

@media print, screen and (min-width: 1024px) {
  .child .header {
    padding-top: 0;
    padding-bottom: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 8;
  }
}

.header__inner {
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 20px;
  padding-left: 20px;
}
@media print, screen and (max-width: 1023.9px) {
  .header__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media print, screen and (min-width: 1024px) {
  .child .header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: none;
    padding: 20px;
  }
}
@media print, screen and (min-width: 1024px) {
  .child .header__child-menu {
    display: none;
  }
}

.header__child-menu {
  color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #005977;
  padding-top: 10px;
  padding-bottom: 10px;
  display: none;
}
@media print, screen and (max-width: 1023.9px) {
  .header__child-menu {
    display: none;
  }
}

.header__child-link {
  padding-right: 20px;
  padding-left: 20px;
  border-left: 1px solid #fff;
}
.header__child-link:last-of-type {
  border-right: 1px solid #fff;
}
.header__child-link.soon {
  pointer-events: none;
  opacity: 0.4;
}
@media (hover: hover) {
  .header__child-link:hover {
    text-decoration: underline;
  }
}

.fixed-menu__link {
  height: 90px;
  width: 90px;
  color: #fff;
  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;
  letter-spacing: 0.11em;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  margin-top: 25px;
  -webkit-box-shadow: 0px 0px 11px -3px #fff;
          box-shadow: 0px 0px 11px -3px #fff;
}
.fixed-menu__link:nth-of-type(even) {
  background-color: #001c2c;
  border: 1px solid #001c2c;
}
@media (hover: hover) {
  .fixed-menu__link:nth-of-type(even):hover {
    color: #001c2c;
    background-color: #fff;
  }
}
.fixed-menu__link:nth-of-type(odd) {
  background-color: #005977;
  border: 1px solid #005977;
}
@media (hover: hover) {
  .fixed-menu__link:nth-of-type(odd):hover {
    color: #005977;
    background-color: #fff;
  }
}

.header__logo {
  display: block;
  width: 320px;
}
@media print, screen and (max-width: 1023.9px) {
  .header__logo {
    width: 230px;
    padding-top: 10px;
  }
}
@media print, screen and (min-width: 1024px) {
  .header__logo.-child {
    width: 360px;
    margin: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  cursor: pointer;
}
@media print, screen and (max-width: 1023.9px) {
  .header__menu {
    display: none;
  }
}
@media print, screen and (min-width: 1024px) {
  .header__menu .hamburger {
    display: block;
    top: -7px;
    margin-left: 10px;
    position: relative;
  }
  .header__menu .hamburger p {
    bottom: -20px !important;
    font-size: 12px;
    color: #000;
  }
  .header__menu .hamburger::before, .header__menu .hamburger::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #333;
    border-radius: 4px;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    top: 10px;
  }
}
@media print, screen and (min-width: 1024px) and (min-width: 1024px) {
  .header__menu .hamburger::before, .header__menu .hamburger::after {
    -webkit-transition: none;
    transition: none;
  }
}
@media print, screen and (min-width: 1024px) {
  .header__menu .hamburger::before {
    left: 0;
    -webkit-transform: rotate(45deg) scaleX(0);
            transform: rotate(45deg) scaleX(0);
  }
  .header__menu .hamburger::after {
    right: 0;
    -webkit-transform: rotate(-45deg) scaleX(0);
            transform: rotate(-45deg) scaleX(0);
  }
  .header__menu .hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #000;
    border-radius: 4px;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .header__menu .hamburger span:nth-of-type(1) {
    top: 0;
    left: 0;
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .header__menu .hamburger span:nth-of-type(2) {
    top: 11px;
    left: 0;
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .header__menu .hamburger span:nth-of-type(3) {
    bottom: 0;
    left: 0;
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
}
@media print, screen and (min-width: 1024px) and (min-width: 1024px) {
  .header__menu .hamburger.-active::before, .header__menu .hamburger.-active::after {
    background-color: #000;
  }
}
@media print, screen and (min-width: 1024px) {
  .header__menu .hamburger.-active::before {
    -webkit-transform: rotate(45deg) scaleX(1);
            transform: rotate(45deg) scaleX(1);
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .header__menu .hamburger.-active::after {
    -webkit-transform: rotate(-45deg) scaleX(1);
            transform: rotate(-45deg) scaleX(1);
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .header__menu .hamburger.-active span {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
}

.header__link {
  font-size: 14px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.header__link:hover {
  opacity: 0.6;
}

.header__paper {
  background-color: #786a3e;
  border: 1px solid #FFF;
  font-size: 16px;
  color: #fff;
  padding: 8px 20px;
  width: 200px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  text-align: center;
  /*
  &.-pcBt{
    position: fixed;
    bottom:0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 130px;
  } */
}
.header__paper.-res {
  background: #840707;
}
@media (hover: hover) {
  .header__paper.-res:hover {
    background-color: #fff;
    color: #840707;
    border: 1px solid #840707;
  }
}
@media (hover: hover) {
  .header__paper:hover {
    background-color: #fff;
    color: #786a3e;
    border: 1px solid #786a3e;
  }
}

.header__paper__l {
  border: 1px solid #786a3e;
  background: #FFF;
  font-size: 16px;
  color: #786a3e;
  padding: 8px 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  text-align: center;
}
@media (hover: hover) {
  .header__paper__l:hover {
    background-color: #786a3e;
    color: #FFF;
    border: 1px solid #786a3e;
  }
}

.hamburger.-pc-child-open {
  cursor: pointer;
}
@media print, screen and (max-width: 1023.9px) {
  .hamburger.-pc-child-open {
    display: none !important;
  }
}

@media print, screen and (max-width: 1023.9px) {
  .header.-active .hamburger.-pc-child-open {
    display: none !important;
  }
}
@media print, screen and (min-width: 1024px) {
  .header.-active .hamburger.-pc-child-open {
    display: block;
    position: fixed;
    bottom: 35%;
    right: 8%;
    z-index: 1000;
  }
}
.header.-active .hamburger.-pc-child-open p {
  font-size: 10px;
}

.hamburger {
  position: relative;
  width: 40px;
  height: 23px;
}
@media print, screen and (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}
@media print, screen and (min-width: 1024px) {
  .hamburger.-pc {
    cursor: pointer;
    z-index: 10;
    display: block;
    height: 90px;
    width: 90px;
    background-color: #001c2c;
    position: relative;
    -webkit-box-shadow: 0px 0px 11px -3px #fff;
            box-shadow: 0px 0px 11px -3px #fff;
  }
}
.hamburger.-pc span {
  display: block;
  position: absolute;
  width: 50px;
  height: 1px;
  background: #fff;
  border-radius: 4px;
  -webkit-transform-origin: initial;
          transform-origin: initial;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: none;
  transition: none;
}
.hamburger.-pc span:nth-of-type(1) {
  left: 50%;
  top: 18px;
}
.hamburger.-pc span:nth-of-type(2) {
  left: 50%;
  top: 32px;
}
.hamburger.-pc span:nth-of-type(3) {
  left: 50%;
  top: 48px;
}
.hamburger.-pc p {
  color: #fff;
  bottom: 10px !important;
}
.hamburger::before, .hamburger::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #333;
  border-radius: 4px;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  top: 10px;
}
@media print, screen and (min-width: 1024px) {
  .hamburger::before, .hamburger::after {
    -webkit-transition: none;
    transition: none;
  }
}
.hamburger::before {
  left: 0;
  -webkit-transform: rotate(45deg) scaleX(0);
          transform: rotate(45deg) scaleX(0);
}
.hamburger::after {
  right: 0;
  -webkit-transform: rotate(-45deg) scaleX(0);
          transform: rotate(-45deg) scaleX(0);
}
.hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #333;
  border-radius: 4px;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.hamburger span:nth-of-type(1) {
  top: 0;
  left: 0;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.hamburger span:nth-of-type(2) {
  top: 10px;
  left: 0;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.hamburger span:nth-of-type(3) {
  bottom: 0;
  left: 0;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.hamburger p {
  width: 100%;
  bottom: -17px !important;
  font-size: min(2.5vw, 1.1rem);
  position: absolute;
  left: 0;
  color: #333;
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  .hamburger.-active::before, .hamburger.-active::after {
    top: 8px;
    width: 50px;
    background-color: #fff;
  }
}
.hamburger.-active::before {
  -webkit-transform: rotate(45deg) scaleX(1);
          transform: rotate(45deg) scaleX(1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
@media print, screen and (min-width: 1024px) {
  .hamburger.-active::before {
    left: -5px;
  }
}
.hamburger.-active::after {
  -webkit-transform: rotate(-45deg) scaleX(1);
          transform: rotate(-45deg) scaleX(1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
@media print, screen and (min-width: 1024px) {
  .hamburger.-active::after {
    right: -5px;
  }
}
.hamburger.-active span {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.header__sp-menu {
  width: 100vw;
  position: fixed;
  top: 66px;
  right: -110%;
  z-index: 10001;
  -webkit-transition: all 500ms ease 0s;
  transition: all 500ms ease 0s;
  background-color: #786a3e;
  color: #FFF;
  overflow: scroll;
  padding-bottom: 20px;
}
@media print, screen and (max-width: 1023.9px) {
  .header__sp-menu {
    height: 100%;
  }
}
@media print, screen and (min-width: 1024px) {
  .header__sp-menu {
    height: calc(100% - 52px);
    top: 82px;
  }
}
.header__sp-menu.-active {
  right: 0;
}
.header__sp-menu .header__paper {
  display: block;
  margin: 20px auto 0;
  text-align: center;
  width: 70%;
  background: #FFF;
  color: #786a3e;
  letter-spacing: 1px;
}
@media print, screen and (min-width: 1024px) {
  .header__sp-menu .header__paper {
    padding: 20px 0px 30px 0;
    border: none;
    height: 60px;
    margin-top: 50px;
    font-size: 17px;
  }
}
.header__sp-menu .header__paper.-res {
  margin-top: 10px;
}
.header__sp-menu .header__paper.-limi {
  background: #786a3e;
  color: #FFF;
  border: 1px solid #FFF;
  margin-top: 20px;
}

.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  padding-top: 1rem;
  height: 100%;
}
@media print, screen and (min-width: 1024px) {
  .header__nav ul {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 70%;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .header__nav ul {
    padding-top: 10px;
  }
}
.header__nav li {
  display: block;
  line-height: 1;
  width: 70%;
  margin: 0 auto;
  padding: 0.6rem 0;
  border-bottom: 1px dashed #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__nav li.none {
  border: none;
}
.header__nav li.none:before, .header__nav li.none:after {
  content: none !important;
}
@media print, screen and (min-width: 1024px) {
  .header__nav li {
    width: 49%;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .header__nav li {
    padding: 0.08rem 0;
  }
}
.header__nav li::after {
  display: block;
  content: "〉";
  right: 0;
  left: auto;
  top: 0;
  bottom: 0;
  margin: auto;
}
.header__nav li a {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  line-height: 1;
  margin: auto;
  padding: 0.6rem 0;
  border: none;
  letter-spacing: 0;
  width: 100%;
  text-decoration: none;
  position: relative;
  right: 0;
  font-size: 15px;
  color: #FFF;
  opacity: 1;
  text-align: center;
  position: relative;
  font-family: "EB Garamond", serif;
}
@media print, screen and (min-width: 1024px) {
  .header__nav li a {
    height: 50px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 17px;
  }
}
.header__nav li a.sub {
  letter-spacing: 1px;
}
.header__nav li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header__nav li a.-active {
  font-size: 160%;
  font-weight: bold;
}
.header__nav li a.soon {
  opacity: 0.25;
  pointer-events: none;
}
.header__nav li.new:before {
  content: "NEW";
  position: absolute;
  background: #aa0000;
  color: #FFF;
  font-size: 10px;
  padding: 2px 4px;
}
.header__nav li.up:before {
  content: "UP";
  position: absolute;
  background: #aa0000;
  color: #FFF;
  font-size: 10px;
  padding: 2px 4px;
}

.child .-child {
  display: block !important;
}

.page-index {
  color: #786a3e;
  font-size: 30px;
  text-align: center;
  position: relative;
  padding: 0px 0 80px;
  background: #FFF;
}
@media only screen and (max-width: 767.9px) {
  .page-index {
    padding: 0 15px 15px;
  }
}
.page-index h4 {
  font-size: 38px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767.9px) {
  .page-index h4 {
    font-size: 33px;
    margin-bottom: 15px;
  }
}
.page-index ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-index li {
  width: 24.9%;
  margin-bottom: 1px;
}
@media only screen and (max-width: 767.9px) {
  .page-index li {
    width: 49.9%;
  }
}
.page-index a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
  position: relative;
  display: block;
}
.page-index a img {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  overflow: hidden;
}
.page-index a:hover figure img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.page-index a.-soon {
  opacity: 1;
  pointer-events: none;
}
.page-index figure {
  overflow: hidden;
}
.page-index figure img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767.9px) {
  .page-index figure img {
    height: 160px;
  }
}
.page-index p {
  position: absolute;
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.page-index p.-n1 {
  width: 129px;
}
.page-index p.-n2 {
  width: 160px;
}
.page-index p.-n3 {
  width: 150px;
}
.page-index p.-n4 {
  width: 120px;
}
.page-index p.-n5 {
  width: 150px;
}
.page-index p.-n6 {
  width: 95px;
}
.page-index p.-n7 {
  width: 190px;
}
.page-index p.-n8 {
  width: 200px;
}
@media only screen and (max-width: 767.9px) {
  .page-index p.-n1 {
    width: 95px;
  }
  .page-index p.-n2 {
    width: 120px;
  }
  .page-index p.-n3 {
    width: 110px;
  }
  .page-index p.-n4 {
    width: 86px;
  }
  .page-index p.-n5 {
    width: 110px;
  }
  .page-index p.-n6 {
    width: 70px;
  }
  .page-index p.-n7 {
    width: 140px;
  }
  .page-index p.-n8 {
    width: 150px;
  }
}

.meritArea.-foot {
  background: #FFF;
  position: relative;
  padding: 1px 0 100px;
}
@media only screen and (max-width: 767.9px) {
  .meritArea.-foot {
    padding: 30px 0 40px;
  }
}
.meritArea.-foot .meritArea__inner {
  margin: 0 auto;
  max-width: 900px;
}
@media only screen and (max-width: 767.9px) {
  .meritArea.-foot .meritArea__inner {
    margin: 0 auto;
  }
}

.limitedPage .meritArea.-foot {
  display: none;
}

/* Footer
===================*/
footer {
  text-align: center;
  background: #FFF;
  position: relative;
}

#footer-link {
  font-size: 13px;
  line-height: 30px;
  color: #fff;
  background: #00649e;
}

#footer-link a {
  margin: 0 0 0 30px;
  display: inline-block;
}

#footer-link a:first-of-type {
  margin: 0;
}

#footer-link a:hover,
#footer-link a.active {
  text-decoration: underline;
}

#footer-link a.un {
  pointer-events: none;
  color: rgba(255, 255, 255, 0.6);
}

#footer-contact {
  color: #fff;
  padding: 60px 0;
  background: #a7978a;
  font-size: 1.6rem;
  margin-bottom: 60px;
  line-height: 1.5;
}

#footer-contact li:nth-of-type(2) {
  margin: 30px 0 40px;
}

#footer-contact li:nth-of-type(3) {
  font-weight: normal;
}

#footer-logo {
  margin: 0 0 50px;
}

#footer-logo p {
  margin: 0 0 12px;
}

#footer-logo ul {
  max-width: 630px;
  width: 94%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media print, screen and (max-width: 1023.9px) {
  #footer-logo ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#footer-logo ul.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#footer-logo li {
  margin: 0 0 4.76%;
}
@media print, screen and (min-width: 1024px) {
  #footer-logo li {
    width: 47.62%;
  }
}

#bnr {
  margin: 0 auto 60px;
  text-align: center;
}

#bnr p {
  font-size: 16px;
  margin: 0 0 15px;
}

#bnr p:before,
#bnr p:after {
  content: "";
  width: 27px;
  height: 4px;
  background: #999;
  display: inline-block;
  vertical-align: middle;
}

#bnr p:before {
  margin: -3px 35px 0 0;
}

#bnr p:after {
  margin: -3px 0 0 35px;
}

#bnr .list {
  max-width: 1100px;
  width: calc(100% - 20px);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#bnr .list a {
  width: 32%;
  display: block;
  margin-bottom: 20px;
}

#bnr .list a:hover {
  opacity: 0.8;
}

#copyright {
  padding: 20px 0 50px;
  line-height: 2;
}

#copyright {
  font-size: 1.2rem;
}

#btnsp {
  display: none;
}

/* ================ Media ================ */
@media only screen and (max-width: 1000px) {
  #footer-link a {
    margin: 0 0 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
  #pagetop {
    position: static;
    display: block !important;
    text-align: right;
    padding: 15vw 3vw 0;
  }
  #pagetop a {
    width: 20vw;
    max-width: 98px;
  }
  footer {
    font-size: 2.6vw;
    margin: 0px 0 12vw;
  }
  #footer-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background: #0176ac;
    font-size: 3.5vw;
    line-height: 11vw;
  }
  #footer-link a {
    width: 50%;
    margin: 0;
    display: block;
    border-bottom: 1px solid #fff;
  }
  #footer-link a:nth-of-type(2n + 1) {
    border-right: 1px solid #fff;
  }
  #footer-link a:nth-of-type(2n) {
    border-right: 1px solid #0176ac;
  }
  #footer-link a:hover,
  #footer-link a.active {
    background: #00649e;
    text-decoration: none;
  }
  #footer-contact {
    padding: 8vw 0 7vw;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  #footer-contact li:nth-of-type(2) {
    margin: 4vw 5vw 6vw;
  }
  #footer-contact li:nth-of-type(3) {
    font-size: 1.1rem;
  }
  #footer-logo {
    margin: 0 0 10vw;
  }
  #bnr {
    margin: 0 0 10vw;
  }
  #bnr p {
    font-size: 2.6vw;
  }
  #bnr p:before,
  #bnr p:after {
    width: 3vw;
    height: 0.5vw;
  }
  #bnr p:before {
    margin: -0.1vw 2vw 0 0;
  }
  #bnr p:after {
    margin: -0.1vw 0 0 2vw;
  }
  #bnr .list {
    max-width: 360px;
    margin: 0 auto;
    width: 80%;
  }
  #bnr .list a {
    margin: 0 0 3vw;
    width: 100%;
  }
  #copyright {
    font-size: 2.4vw;
    padding: 0;
  }
  #btnsp {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #00649e;
    z-index: 9999;
    display: block;
  }
  #btnsp ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #btnsp li {
    width: 25%;
    padding: 1vw;
  }
  #btnsp a {
    border: 1px solid #fff;
    display: block;
    padding: 0.2vw 2.7vw;
  }
  #btnsp img {
    width: 100%;
  }
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}

.clearfix {
  zoom: 1;
}

.modalWrap {
  position: relative;
}

a.modalWindow {
  pointer-events: none;
}

.swipeWrap > figure > img {
  max-width: none;
  width: 100%;
}

.swipeWrap > figure figcaption {
  right: 0;
  left: auto;
  bottom: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 5px 10px;
}

.swipeWrap {
  position: relative;
  overflow-y: hidden;
  overflow-x: auto;
  padding: 20px;
}

.rel {
  position: relative;
}

#footer-contact .att {
  color: #ffef3a;
  font-weight: bold;
}

#copyright {
  padding: 20px 0 50px;
  line-height: 2;
}

#copyright {
  font-size: 12px;
}
@media only screen and (max-width: 767.9px) {
  #copyright {
    font-size: 10px;
  }
}
@media print, screen and (min-width: 1024px) {
  #copyright br.sp {
    display: none;
  }
}

.footer-tel {
  background-color: #786a3e;
  color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media print, screen and (max-width: 1023.9px) {
  .footer-tel {
    padding-top: 60px;
    padding-right: 20px;
    padding-left: 20px;
    margin-bottom: 60px;
  }
}
@media print, screen and (min-width: 1024px) {
  .footer-tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 80px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer-tel .exInfo {
  color: #fff7af;
  font-size: 15px;
  text-align: center;
  width: 100%;
  margin-top: 20px;
  line-height: 1.7;
}
@media print, screen and (max-width: 1023.9px) {
  .footer-tel .exInfo {
    font-size: 14px;
    text-align: center;
    margin-top: 13px;
  }
}
.footer-tel .exInfo strong {
  font-weight: bold;
  font-size: 114%;
}

.footer-tel__info {
  margin-bottom: 20px;
  width: 100%;
}
@media print, screen and (max-width: 1023.9px) {
  .footer-tel__info {
    font-size: 14px;
  }
}

.footer-tel__tel {
  display: block;
  max-width: 390px;
}
@media print, screen and (max-width: 1023.9px) {
  .footer-tel__tel {
    margin-right: auto;
    margin-left: auto;
  }
}

.footer-tel__text {
  font-size: 13px;
}
@media print, screen and (max-width: 1023.9px) {
  .footer-tel__text {
    margin-top: 20px;
    line-height: 1.75;
  }
}
.footer-tel__text2 {
  font-size: 13px;
  color: #cc0000;
  text-align: left;
  padding-left: 8px;
  line-height: 1.36;
}
@media print, screen and (max-width: 1023.9px) {
  .footer-tel__text2 {
    font-size: 12px;
    margin-top: 5px;
    text-align: center;
    line-height: 1.6;
  }
}

#footer_fix {
  z-index: 999;
  display: block;
  width: 100%;
  height: auto;
  position: fixed;
  bottom: 0;
  opacity: 0;
}
@media print, screen and (min-width: 1024px) {
  #footer_fix {
    display: none;
  }
}

.bottomfix div {
  background-color: #fff;
}

.bottomfix ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bottomfix li {
  font-size: 0.65rem;
  padding: 0;
  border-right: 1px solid #fff;
  text-align: center;
  width: 100%;
  background: #786a3e;
  height: 100%;
}

.bottomfix li a {
  color: #fff;
  width: 100%;
  display: block;
  height: 100%;
}

.bottomfix li a figure {
  width: 20%;
  margin: 1px auto 3px;
}

.bottomfix li a svg {
  width: 20%;
  margin: 1px auto 1px;
}
.bottomfix li a svg rect,
.bottomfix li a svg path {
  fill: #fff;
}

.bottomfix li p {
  padding-bottom: 2px;
  padding-top: 3px;
}

.sp_btm_req {
  background: #786a3e;
}

.sp_btm_limi {
  border-right: none !important;
}
.sp_btm_limi a img {
  width: 22%;
  margin: 1px auto 1px;
  padding-bottom: 4px;
}

.sp_btm_res {
  background: #840707 !important;
}
.sp_btm_res a figure {
  width: 30% !important;
  padding-bottom: 3px;
}

.meritArea__btn {
  background-color: #786a3e;
  border: 1px solid #FFF;
  font-size: 20px;
  color: #fff;
  padding: 20px 10px;
  width: 350px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  text-align: center;
  margin: 40px auto 0;
  display: block;
}
@media print, screen and (max-width: 1023.9px) {
  .meritArea__btn {
    width: 86%;
    font-size: 18px;
    padding: 15px 10px;
    margin-top: 24px;
    margin-bottom: 20px;
  }
}
.meritArea__btn.-res {
  background: #840707;
}
@media (hover: hover) {
  .meritArea__btn.-res:hover {
    background-color: #fff;
    color: #840707;
    border: 1px solid #840707;
  }
}
@media (hover: hover) {
  .meritArea__btn:hover {
    background-color: #fff;
    color: #786a3e;
    border: 1px solid #786a3e;
  }
}

a {
  cursor: pointer;
}

@media print, screen and (max-width: 1023.9px) {
  .-M {
    display: none !important;
  }
}

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

.-en {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

@media print, screen and (min-width: 1024px) {
  main {
    margin-top: 81px;
    background: #FFF;
  }
}
@media print, screen and (max-width: 1023.9px) {
  main {
    margin-top: 60px;
    background: #FFF;
  }
}

article {
  margin-top: min(240%, 150dvh);
  padding-top: 1px;
}

.child-mv {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  z-index: -1;
}

.child-mv__inner {
  position: relative;
  background: #786a3e;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.mv-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.mv-video video {
  opacity: 0.7;
  position: absolute;
  display: block;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
}
@media print, screen and (max-width: 1023.9px) {
  .mv-video video {
    left: -150%;
  }
}
.mv-video .child-mv__text {
  position: absolute;
  top: 52%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media print, screen and (max-width: 1023.9px) {
  .mv-video .child-mv__text {
    top: 50%;
  }
}

.section-sentence {
  font-size: 17px;
  line-height: 4;
  text-align: center;
  color: #005977;
}
@media print, screen and (max-width: 1023.9px) {
  .section-sentence {
    font-size: 13.6px;
    line-height: 2;
  }
}
.section-sentence.-white {
  color: #fff;
}

.child-heading1 {
  font-size: 21px;
  letter-spacing: 2px;
  text-align: center;
}
@media print, screen and (max-width: 1023.9px) {
  .child-heading1 {
    font-size: 18px;
    letter-spacing: 0;
  }
}

.child-main-copy {
  text-align: center;
  font-size: 36px;
  letter-spacing: 2px;
  margin-top: 100px;
}
@media print, screen and (max-width: 1023.9px) {
  .child-main-copy {
    font-size: 23px;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    margin-top: 40px;
  }
}

.child-main-desc {
  text-align: center;
  line-height: 2;
  margin-top: 40px;
  font-size: 18px;
  color: #222;
}
.child-main-desc.-left {
  text-align: left;
}
@media print, screen and (max-width: 1023.9px) {
  .child-main-desc {
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.7;
  }
}

.child-sub-desc {
  text-align: center;
  line-height: 2;
  margin-top: 40px;
  font-size: 16px;
}
.child-sub-desc.-b {
  color: #000;
}
@media print, screen and (max-width: 1023.9px) {
  .child-sub-desc {
    font-size: 13px;
    margin-top: 20px;
    line-height: 1.7;
  }
}

.scroll-box {
  position: relative;
}
@media print, screen and (max-width: 1023.9px) {
  .scroll-box {
    overflow-x: scroll;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .scroll-box > img {
    width: 320vw;
    max-width: none !important;
  }
  .scroll-box > img.loc01 {
    width: 150vw;
  }
  .scroll-box > img.loc02 {
    width: 250vw;
  }
  .scroll-box > img.loc03 {
    width: 350vw;
  }
  .scroll-box > img.loc05 {
    width: 250vw;
  }
  .scroll-box > img.park {
    width: 380vw;
  }
}

.-sc {
  position: absolute;
  top: 50%;
  left: 50vw;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100px;
}
.-sc.-acc {
  left: 85vw;
}

.fixed-menu {
  display: none;
  position: fixed;
  right: 50px;
  top: 200px;
  z-index: 10000;
}
@media print, screen and (max-width: 1023.9px) {
  .fixed-menu {
    display: none !important;
  }
}

.contents-wrap {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.contents-wrap.-wide {
  max-width: 1400px;
  padding-inline: 20px;
}
.contents-wrap.-sm {
  max-width: 800px;
}
@media print, screen and (max-width: 1023.9px) {
  .contents-wrap {
    padding: 0 15px;
  }
}

.capArea {
  position: relative;
  background: #FFF;
  color: #333;
}
.capArea .capArea__inner {
  max-width: 1000px;
  margin: 0px auto 0;
  padding: 60px 0;
}
@media print, screen and (max-width: 1023.9px) {
  .capArea .capArea__inner {
    margin: 0px auto 0;
    padding: 30px 15px 30px;
  }
}
.capArea p {
  font-size: 11px;
  line-height: 1.6;
}
@media print, screen and (max-width: 1023.9px) {
  .capArea p {
    font-size: 10px;
  }
}

.mv__img img {
  width: 100%;
}

.full-img {
  width: 100%;
  height: 400px;
  margin-top: 80px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 767.9px) {
  .full-img {
    height: auto;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-top: 40px;
  }
}
.full-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: bottom;
     object-position: bottom;
}
.full-img img.-park {
  -o-object-position: 25% 80%;
     object-position: 25% 80%;
}
@media only screen and (max-width: 767.9px) {
  .full-img img {
    height: auto;
  }
}
.full-img figcaption {
  position: absolute;
  bottom: 4px;
  right: 4px;
  color: #fff;
  font-size: 11px;
}
.full-img figcaption.-b {
  color: #000;
}

.-w {
  color: #FFF;
}

/* ライトボックス
--------------------------------------*/
@media screen and (min-width: 768px) {
  .zoom-icon,
  .lightbox,
  .lightbox-toggle {
    display: none !important;
  }
}
@media screen and (max-width: 767.9px) {
  .ltbox-01 {
    position: relative;
  }
  .zoom-icon {
    position: absolute;
    bottom: 25px;
    right: 6px;
    border-radius: 50%;
    padding: 6px;
    font-size: 18px;
    font-weight: bold;
    z-index: 10;
    cursor: pointer;
    /* box-shadow: 0 0 5px rgba(0,0,0,0.3); */
  }
  .zoom-icon.p-01 {
    top: 0%;
    left: 4%;
    right: auto;
  }
  .lightbox-toggle {
    display: none;
  }
  .lightbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /*background: rgba(0, 0, 0, 0.8);*/
    background: #000;
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
    pointer-events: none;
    z-index: 9999;
  }
  .lightbox img {
    max-width: 10vw;
    max-height: 100vh;
    border-radius: 2px;
    background: #fff;
  }
  .lightbox .-sc img {
    background: #938865;
  }
  .lightbox-toggle:checked ~ .lightbox {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    pointer-events: auto;
  }
  .lightbox-close-button {
    position: absolute;
    top: 3%;
    right: 2%;
    font-size: 28px;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 1px 12px 4px;
    border-radius: 4px;
    cursor: pointer;
    z-index: 10001;
  }
}
/* FloorMap用ライトボックス
-----------------------------------------------*/
.lightbox-floormap {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: rgba(0, 0, 0, 0.8);*/
  background: #000;
  overflow: auto;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox-floormap.show {
  visibility: visible;
  opacity: 1;
}

.lightbox-floormap-content {
  margin: 50px auto;
  padding: 3%;
  width: 80%;
  max-width: 730px;
  background: #fff;
  position: relative;
  -webkit-box-shadow: 0 0 20px #000;
          box-shadow: 0 0 20px #000;
  overflow-y: auto;
  max-height: 90vh;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.lightbox-floormap.show .lightbox-floormap-content {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.lightbox-floormap-content img {
  width: 90%;
  height: auto;
  display: block;
}

.lightbox-floormap-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: #333;
  cursor: pointer;
}

@media screen and (min-width: 767.9px) {
  .pcW100 {
    width: 100%;
  }
  .mb0_pc {
    margin-bottom: 0;
  }
}
/* 【SP】スワイプスライダー
--------------------------------*/
.pinScroll {
  height: 150vh;
  margin: 0;
  padding: 0;
}

.pinScroll__inner {
  position: sticky;
  top: 25vh;
  height: auto;
  overflow: hidden;
  margin: 10% 0;
}

.pinScroll__image {
  height: auto;
  width: auto;
  min-width: 220vw;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  padding: 0 5%;
}

@media screen and (min-width: 767.9px) {
  .pinScroll {
    height: auto;
  }
  .pinScroll__image {
    height: auto;
    width: auto;
    min-width: auto;
    padding: 0 1%;
  }
  .pinScroll__inner {
    position: relative;
    top: 0;
    margin: 5% 0;
  }
}
.-exp {
  overflow: hidden;
}

@-webkit-keyframes reduce {
  from {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes reduce {
  from {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.mvframeInner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}
.mvframeInner video {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  margin: 0;
  padding: 0;
}