
/* ===============================================================================
Header
=============================================================================== */
.headerArea {
  /* position: relative;
  min-width: 1240px; */
}

.headerArea .blks-1 {
  position: absolute;
  right: 40px;
  top: 25px;
  z-index: 999;
  width: 50px;
  text-align: center;
  pointer-events: none;
}
.headerArea .blks-1.is-scroll {
  position: fixed;
}

.headerArea .blks-1 .hMenu {
  display: inline-block;
  pointer-events: auto;
  cursor: pointer;
}

.headerArea .blks-1 .hMenu__bar {
  width: 34px;
  height: 28px;
  margin: 0 auto 9px;
  position: relative;
}

.headerArea .blks-1 .hMenu__bar::before, .headerArea .blks-1 .hMenu__bar::after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  background: #000;
  width: 34px;
  height: 2px;
  -webkit-transition-property: top, left, bottom, -webkit-transform;
  transition-property: top, left, bottom, -webkit-transform;
  transition-property: transform, top, left, bottom;
  transition-property: transform, top, left, bottom, -webkit-transform;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

.headerArea .blks-1 .hMenu__bar::before {
  top: 0;
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}

.headerArea .blks-1 .hMenu__bar::after {
  bottom: 0;
  -webkit-transform-origin: left bottom;
      -ms-transform-origin: left bottom;
          transform-origin: left bottom;
}

.headerArea .blks-1 .hMenu__bar span {
  background: #000;
  height: 2px;
  top: 13px;
  left: 0;
  width: 100%;
  position: absolute;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.headerArea .blks-1 .hMenu__txt {
  text-align: center;
  font-size: 0.9375rem;
}

.headerArea .blks-1 .hMenu__txt__open, .headerArea .blks-1 .hMenu__txt__close {
  position: absolute;
  width: 50px;
  margin: 0 auto;
  right: 0;
  left: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.headerArea .blks-1 .hMenu__txt__open {
  opacity: 1;
}

.headerArea .blks-1 .hMenu__txt__close {
  opacity: 0;
  /* color: #fff; */
}

.headerArea .blks-1 .hMenu.is-active .hMenu__bar::before, .headerArea .blks-1 .hMenu.is-active .hMenu__bar::after {
  /* background: #fff; */
}

.headerArea .blks-1 .hMenu.is-active .hMenu__bar::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 1px;
  left: 6px;
}

.headerArea .blks-1 .hMenu.is-active .hMenu__bar::after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 1px;
  left: 6px;
}

.headerArea .blks-1 .hMenu.is-active .hMenu__bar span {
  opacity: 0;
}

.headerArea .blks-1 .hMenu.is-active .hMenu__txt__open {
  opacity: 0;
}

.headerArea .blks-1 .hMenu.is-active .hMenu__txt__close {
  opacity: 1;
}

.headerArea .blks-2 {
  display: none;
  position: fixed;
  background: #A89E8B;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.headerArea .blks-2.is-active {
  opacity: 1;
  pointer-events: auto;
}

.headerArea .blks-2__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.headerArea .blks-2 .linkList__item {
  font-size: 0.9375rem;
  color: #685F51;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  text-align: center;
  position: relative;
  padding: 0 30px;
}

.headerArea .blks-2 .linkList__item a:hover {
  opacity: 0.8;
}

.headerArea .blks-2 .linkList__item:not(:last-child) {
  padding-bottom: 15px;
  border-bottom: 1px solid #BDB5A6;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .headerArea {
    min-width: 1px;
    z-index: 100;
  }
  .headerArea .blks-1 {
    /* position: fixed;
    right: 3vw;
    top: 5vw; */
    width: auto;
    padding: 3.5vw 3.5vw 4.5vw;
    transition: all 1s;
  }
  .headerArea .blks-1.is-scroll {
    background-color: #FFF;
    box-shadow: 0 0 1.6vw rgb(0 0 0 / 10%);
  }
  .headerArea .blks-1 .hMenu {
    display: inline-block;
    pointer-events: auto;
    cursor: pointer;
  }
  .headerArea .blks-1 .hMenu__bar {
    width: 6.07vw;
    height: 5.47vw;
    margin: 0 auto 1.07vw;
  }
  .headerArea .blks-1 .hMenu__bar::before, .headerArea .blks-1 .hMenu__bar::after {
    width: 6.07vw;
    height: 2px;
  }
  .headerArea .blks-1 .hMenu__bar span {
    height: 2px;
    top: 2.47vw;
  }
  .headerArea .blks-1 .hMenu__txt {
    font-size: 11px;
  }
  .headerArea .blks-1 .hMenu__txt__open, .headerArea .blks-1 .hMenu__txt__close {
    width: 8.07vw;
  }
  .headerArea .blks-1 .hMenu.is-active .hMenu__bar::before {
    top: 0.8vw;
    left: 1.6vw;
  }
  .headerArea .blks-1 .hMenu.is-active .hMenu__bar::after {
    bottom: 0.27vw;
    left: 1.6vw;
  }
  .headerArea .blks-2.is-active {
    display: block;
    opacity: 1;
    pointer-events: auto;
    margin-top: 18vw;
    z-index: 2;
  }
  .headerArea .blks-2 .linkList {
  }
  .headerArea .blks-2 .linkList__item {
    font-size: 3.47vw;
    padding: 0 5.33vw;
  }
  .headerArea .blks-2 .linkList__item:not(:last-child) {
    padding-bottom: 4vw;
    margin-bottom: 4vw;
  }
}

/* ===============================================================================
Footer
=============================================================================== */
.footerArea {
  border-top: 1px solid #b9ac97;
  min-width: 1240px;
}

.footerArea .blks-1 {
  padding: 57px 0 53px;
  background: url("/media_library/ao/kaigyoonline/images/cmn/cmn_bg05.jpg") no-repeat center center/cover;
}

.footerArea .blks-1__inner {
  width: 1200px;
  margin: 0 auto;
}

.footerArea .blks-1 .group {
  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;
}

.footerArea .blks-1 .btn {
  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;
  text-align: center;
  width: 418px;
  height: 75px;
  border-radius: 38px;
  background: #fff;
  color: #5A5040;
  font-size: 1.3125rem;
  font-weight: 700;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.07);
}

.footerArea .blks-1 .btn:hover {
  opacity: 0.8;
}

.footerArea .blks-1 .btn::before {
  width: 32px;
  height: 40px;
  background: url("/media_library/ao/kaigyoonline/images/cmn/cmn_ico04.svg") no-repeat 0 0/100% 100%;
  content: "";
  display: block;
  margin-right: 32px;
}

.footerArea .blks-1 .bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 729px;
  background: url("/media_library/ao/kaigyoonline/images/cmn/cmn_bg03.png") no-repeat right top/555px 100%;
  position: relative;
}

.footerArea .blks-1 .bnr::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-sizing: border-box;
  border: solid 1px #373737;
}

.footerArea .blks-1 .bnr:hover {
  opacity: 0.8;
}

.footerArea .blks-1 .bnr__txt {
  width: 173px;
  height: 90px;
  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;
  text-align: center;
  background: #807474;
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
}

.footerArea .blks-1 .bnr__txt-2 {
  width: 448px;
  height: 90px;
  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;
  color: #404C51;
  font-size: 1.3125rem;
  line-height: 1.381;
  font-weight: 700;
}

.footerArea .blks-1 .bnr__txt-3 {
  width: 108px;
  box-sizing: border-box;
  padding-left: 5px;
  height: 90px;
  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;
  text-align: center;
  background: url("/media_library/ao/kaigyoonline/images/cmn/cmn_bg04.svg") no-repeat 0 0/100% 100%;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
}

.footerArea .blks-2 {
  padding: 47px 0;
  text-align: center;
}

.footerArea .blks-2 .logo {
  margin-bottom: 31px;
}

.footerArea .blks-2 .copyright {
  text-align: center;
  color: #707070;
  font-size: 1.25rem;
}

@media screen and (max-width: 767px) {
  .footerArea {
    min-width: 1px;
    margin-bottom: 15vw;
  }
  .footerArea .blks-1 {
    padding: 8.53vw 0;
  }
  .footerArea .blks-1__inner {
    width: auto;
    padding: 0 4.27vw;
  }
  .footerArea .blks-1 .group {
    display: block;
  }
  .footerArea .blks-1 .btn {
    width: auto;
    height: 16vw;
    border-radius: 8vw;
    font-size: 4.27vw;
    box-shadow: 0 0 1.87vw rgba(0, 0, 0, 0.07);
    margin-bottom: 4.27vw;
  }
  .footerArea .blks-1 .btn::before {
    width: 5.97vw;
    height: 7.47vw;
    margin-right: 4.27vw;
  }
  .footerArea .blks-1 .bnr {
    display: block;
    width: auto;
    background-size: cover;
  }
  .footerArea .blks-1 .bnr:hover {
    opacity: 0.8;
  }
  .footerArea .blks-1 .bnr__txt {
    width: auto;
    height: 12.8vw;
    font-size: 4.8vw;
  }
  .footerArea .blks-1 .bnr__txt-2 {
    width: auto;
    height: 20.8vw;
    font-size: 4.8vw;
  }
  .footerArea .blks-1 .bnr__txt-3 {
    width: auto;
    background: #4fa2ca;
    padding-left: 0;
    height: 8.53vw;
    font-size: 3.73vw;
  }
  .footerArea .blks-2 {
    padding: 4.53vw 0;
  }
  .footerArea .blks-2 .logo {
    margin-bottom: 4.53vw;
  }
  .footerArea .blks-2 .logo img {
    width: 26.13vw;
  }
  .footerArea .blks-2 .copyright {
    font-size: 2.2vw;
  }
}

/* ===============================================================================
Contents
=============================================================================== */
.contentsArea {
  min-width: 1240px;
  max-width: 1600px;
  margin: auto;
  background: #FFF;
}

@media screen and (max-width: 767px) {
  .contentsArea {
    min-width: 1px;
    overflow: hidden;
  }
}




