@charset "utf-8";

/* -----------------------------------------------------
 Common
------------------------------------------------------- */

body.is-visible {
  opacity: 1;
  -webkit-transition: .4s linear;
  transition: .4s linear;
}

@media screen and (max-width: 768px) {
  body {
    background-size: 800px auto;
    -webkit-transition-duration: .01s;
            transition-duration: .01s;
  }
}

a,
label,
input,
textarea,
button {
  -webkit-tap-highlight-color: rgba(173, 144, 7, .8);
}

button {
  cursor: pointer;
}

#Container {
  position: relative;
}

@media screen and (min-width: 769px) {
  #Container {
    min-width: 1120px;
    overflow: hidden;
  }
}

.inside {
  position: relative;
}
@media screen and (min-width: 769px) {
  .inside {
    width: 100%;
    margin: 0 auto;
  }
}



/* -----------------------------------------------------
 Helper
 さらっと使うクラス
 命名は最短
------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .visible-pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .visible-sp {
    display: none;
  }
}

/* clearfix */
.cf:after {
  content: '';
  height: 0;
  display: block;
  clear: both;
}

/* color */
.color-main {
  color: #ad9007!important;
}
.color-sub {
  color: #3c3100!important;
}
.color-link {
  color: #b23654;
}
.bg-color-main {
  background-color: #ad9007!important;
}
.bg-color-sub {
  background-color: #3c3100!important;
}
.border-color-main {
  border-color: #ad9007!important;
}

/* font */
.font-garamond {
  font-family: "garamond-premier-pro", "a-otf-ryumin-pr6n", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.font-mrs {
  font-family: "mrs-eaves", "a-otf-ryumin-pr6n", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}


/* icon */
.icon-external:after {
  background: url(/assets/images/common/icon_external.svg) top left no-repeat;
}

.icon-loading {
  width: 60px;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #c7887f;
  -webkit-transition: .1s linear;
  transition: .1s linear;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.is-clicked .icon-loading {
  opacity: 1;
}
.icon-loading span,
.icon-loading:before,
.icon-loading:after {
  content: "";
  width: 25%;
  height: 0;
  padding-top: 25%;
  display: inline-block;
  background: currentColor;
  border-radius: 50%;
  -webkit-animation: loading 1.4s infinite 0s;
          animation: loading 1.4s infinite 0s;
}

.icon-loading span {
  margin: 0 12.5%;
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}

.icon-loading:after {
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}

@-webkit-keyframes loading {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  40% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    opacity: 0;
  }
}

@keyframes loading {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  40% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    opacity: 0;
  }
}


/* position */
.center-vertical {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.center-horizontal {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.center-both {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* pull */
.pull-left {
  float: left;
}
.pull-right {
  float: right;
}

/* hide text */
.hide-text {
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
}

/* background */
.bg03 {
  background: url(/assets/images/common/bg03.jpg) center top repeat;
}


/* ページ内リンク */
.c-pagenav__list {
  overflow: hidden;
  margin-right: -10px;
  margin-right: -3vw;
}
.c-pagenav__item {
  width: 135px;
  width: 42vw;
  margin-right: 20px;
  margin-right: 3vw;
  float: left;
}
.c-pagenav__item a {
  display: block;
  padding-bottom: 10px;
  padding-bottom: 3.13vw;
  border-bottom: 1px solid #222;
  font-size: 10px;
  font-size: 3.13vw;
  text-align: center;
}
.c-pagenav__item a:after {
  content: '';
  width: 9px;
  width: 2.81vw;
  height: 7px;
  height: 2.19vw;
  display: inline-block;
  margin-left: 4px;
  margin-left: 1.25vw;
  background: url(/assets/images/common/icon_arrow_bottom.svg) center center no-repeat;
  background-size: 9px auto;
  background-size: 2.81vw auto;
}
@media screen and (max-width: 768px) {
  .c-pagenav__item:nth-child(n+3) {
    margin-top: 15px;
    margin-top: 4.69vw;
  }
}
@media screen and (min-width: 769px) {
  .c-pagenav__list {
    margin-right: -40px;
  }
  .c-pagenav__item {
    width: 540px;
    margin-right: 40px;
  }
  .c-pagenav__item a {
    padding-bottom: 18px;
    font-size: 1.8rem;
  }
  .c-pagenav__item a:after {
    width: 14px;
    height: 11px;
    margin-left: 12px;
    background-size: 14px auto;
  }
}

/* vimeo */
.c-vimeo {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.c-vimeo iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* ギャラリーのフィルター */
/*
.c-filter__list {
  text-align: center;
}
.c-filter__item {
  display: inline-block;
}
.c-filter__item a {
  width: 88px;
  width: 27.5vw;
  padding: 6px 0;
  padding: 1.88vw 0;
  display: block;
  overflow: hidden;
  font-size: 10px;
  font-size: 3.13vw;
  line-height: 1;
  border: 1px solid #666;
  border-radius: 13px;
  border-radius: 4.06vw;
  box-sizing: border-box;
  -webkit-transition: .15s ease-out;
  transition: .15s ease-out;
}
.c-filter__item a {
  color: #222;
}
.c-filter__item.is-active a {
  color: #fff;
  background: #222;
}
.c-filter__item svg {
  width: 9px;
  width: 2.81vw;
  height: auto;
  display: inline-block;
  margin-left: 5px;
  margin-left: 1.56vw;
  vertical-align: 2px;
  -webkit-transition: .15s ease-out;
  transition: .15s ease-out;
}
.c-filter__item path  {
  stroke: #222;
  fill: none;
}
.c-filter__item.is-active path {
  stroke: #fff;
}
.area-black .c-filter__item a {
  color: #fff;
}
.area-black .c-filter__item.is-active a {
  color: #222;
  background: #fff;
}
.area-black .c-filter__item.is-active path {
  stroke: #222;
}
.area-black .c-filter__item path {
  stroke: #fff;
}
@media screen and (max-width: 768px) {
  .c-filter__list {
    margin-right: -4px;
    margin-right: -1.25vw;
  }
  .c-filter__item {
    margin-right: 4px;
    margin-right: 1.25vw;
  }
  .c-filter__item:nth-child(n+4) {
    margin-top: 10px;
    margin-top: 3.13vw;
  }
}
@media screen and (min-width: 769px) {
  .c-filter__list {
    margin: 0;
  }
  .c-filter__item {
    margin: 0 10px;
  }
  .c-filter__item a {
    width: auto;
    padding: 6px 20px 7px;
    font-size: 15px;
    border-radius: 15px;
  }
  .c-filter__item svg {
    width: 8px;
    margin-left: 6px;
  }
  .c-filter__item:hover a {
    color: #fff;
    background: #222;
  }
  .c-filter__item:hover path {
    stroke: #fff;
  }
  .area-black .c-filter__item:hover a {
    color: #222;
    background: #fff;
  }
  .area-black .c-filter__item:hover path {
    stroke: #222;
  }
}*/

/* -----------------------------------------------------
 Modal
------------------------------------------------------- */
.modal__common {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .15s linear, z-index .15s .15s, visibility .15s .15s;
  transition: opacity .15s linear, z-index .15s .15s, visibility .15s .15s;
}
.modal__common.is-active {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity .15s linear;
  transition: opacity .15s linear;
}
.modal__overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -100;
  position: absolute;
  z-index: 100;
  background: rgba(255, 255, 255,1);
  cursor: pointer;
}
.modal__overlay.is-active {
  z-index: 100;
}
.modal__body {
  position: absolute;
  z-index: -1000;
}
.modal__body.is-active {
  z-index: 1000;
}
.modal__close {
  width: 30px;
  height: 30px;
  position: fixed;
  z-index: -10000;
  top: 17px;
  right: 17px;
  cursor: pointer;
}
.modal__close.is-active {
  z-index: 10000;
}
.modal__close:before,
.modal__close:after {
  content: '';
  width: 30px;
  height: 2px;
  position: absolute;
  background: #111;
  top: 50%;
  left: 0;
}
.modal__close:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal__close:after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 769px) {
  .modal__close {
    width: 46px;
    height: 46px;
    top: 30px;
    right: 40px;
  }
  .modal__close:before,
  .modal__close:after {
    width: 46px;
    height: 3px;
    top: 50%;
    left: 50%;
    margin-left: -23px;
  }
}

/* -----------------------------------------------------
 Zoom
------------------------------------------------------- */
.zoom {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1000;
  opacity: 0;
  top: 0;
  left: 0;
}
.is-active .zoom {
  z-index: 1000;
}
.zoom .icon-loading {
  position: fixed;
  z-index: 1000;
  top: 50%;
  left: 50%;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.zoom.is-loaded .icon-loading  {
  opacity: 0;
}
.zoom__area {
  z-index: -1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1000;
  overflow: hidden;
  box-sizing: border-box;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.is-active .zoom__area{
  z-index: 1000;
}
.zoom__item {
  width: 100vw;
  padding: 20px 0;
  box-sizing: border-box;
}
.zoom__item--inside,
.zoom__item > img {
  opacity: 0;
}
.zoom.is-loaded .zoom__item--inside,
.zoom.is-loaded .zoom__item > img {
  opacity: 1;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.zoom__title {
  margin-bottom: 20px;
  margin-bottom: 6.25vw;
  font-size: 14px;
  font-size: 4.38vw;
  color: #fff;
}
.zoom__title span {
  display: block;
  font-size: 10px;
  font-size: 3.13vw;
  text-indent: -.5em;
}
.zoom__image {
  margin-bottom: 15px;
  margin-bottom: 4.69vw;
}
.zoom__desc {
  font-size: 11px;
  font-size: 3.44vw;
  line-height: 1.6;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .zoom__title {
    min-height: 40px;
    min-height: 12.5vw;
    padding-left: 20px;
    padding-left: 6.25vw;
  }
  .zoom__desc {
    padding-left: 20px;
    padding-left: 6.25vw;
  }
  .zoom .slick-arrow {
    display: none!important;
  }
}
@media screen and (min-width: 769px) {
  .zoom__item {
    padding: 30px 0 0;
  }
  .zoom__item--inside {
    width: 720px;
    margin: 0 auto;
  }
  .zoom__title {
    margin-bottom: 30px;
    font-size: 2.2rem;
  }
  .zoom__title span {
    font-size: 1.5rem;
  }
  .zoom__image {
    margin-bottom: 30px;
  }
  .zoom__desc {
    font-size: 1.5rem;
  }
  .zoom .slick-arrow {
    position: fixed;
    z-index: 10000;
    top: 50%;
    background: none;
    border: none;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    cursor: pointer;
  }
  .arrow-prev {
    left: 27px;
  }
  .arrow-next {
    right: 27px;
  }
  .zoom .slick-arrow:focus {
    outline: none;
  }
  .zoom .icon-loading {
    width: 100px;
  }
}


/* button
------------------------------------------------ */
.form__button {
  text-align: center;
  overflow: hidden;
}
.form__button a,
.form__button button {
  position: relative;
  padding: 12px 50px;
  padding: 3.7500vw 15.625vw;
  display: inline-block;
  font-size: 12px;
  font-size: 3.7500vw;
  color: #fff;
  line-height: 1;
  border-radius: 20px;
  border-radius: 6.2500vw;
}
.form__button button {
  background: #3c3100;
}
.form__button button.back {
  padding-left: 32px;
  padding-left: 10vw;
  padding-right: 32px;
  padding-right: 10vw;
  background: #aaa;
}

/* クリック時のローディングのためにフェード */
.form__button--submit:after
.form__button--text {
  -webkit-transition: .1s linear;
  transition: .1s linear;
}
.is-clicked.form__button--submit {
background-color: #ad9007;
}
.is-clicked .form__button--text,
.is-clicked.form__button--submit:after {
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .form__confirm .form__button form:first-child {
    float: left;
  }
  .form__confirm .form__button form:last-child {
    float: right;
  }
}
@media screen and (min-width: 769px) {
  .form__button a,
  .form__button button {
    padding: 20px 82px;
    font-size: 1.8rem;
    border-radius: 30px;
  }
  .form__confirm .form__button form {
    margin: 0 10px;
    display: inline-block;
  }
  .form__button button.back {
    padding-left: 40px;
    padding-right: 40px;
  }
}
