@charset "utf-8";

body.is-visible {
  opacity: 1;
  -webkit-transition: .4s linear;
  transition: .4s linear;
}
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 {
  margin: 0 20px;
  margin: 0 6.25vw;
  position: relative;
}
.inside__page {
  padding: 30px 0;
  padding: 9.38vw 0;
}
@media screen and (min-width: 769px) {
  .inside {
    width: 1120px;
    margin: 0 auto;
  }
  .inside__page {
    padding: 60px 0;
  }
}

img {
  width: 100%;
  height: 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: #fff;
  -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;
}

/* fade */
.hover-fade {
  -webkit-transition: .1s linear;
  transition: .1s linear;
}
.hover-fade:hover {
  opacity: .5!important;
}
.hover-main {
  -webkit-transition: .15s background-color ease-out;
  transition: .15s background-color ease-out;
}
.hover-main:hover {
  background-color: #ad9007!important;
  /*background: url(/assets/images/common/bg_hover.jpg) repeat!important;*/
}
.hover-gray {
  -webkit-transition: .15s background-color ease-out;
  transition: .15s background-color ease-out;
}
.hover-gray:hover {
  background-color: #777!important;
}

@media screen and (max-width: 768px) {
  .bg03 {
    background-size: 300px auto;
  }
}

/* btn 塗りのボタン */
.btn {
  position: relative;
}
.btn a {
  display: block;
  padding: 12px 0;
  padding: 3.75vw 0;
  font-size: 10px;
  font-size: 3.13vw;
  line-height: 1;
  text-align: center;
  color: #fff;
  background: #3c3100;
}
@media screen and (min-width: 769px) {
  .btn a {
    padding: 20px 0;
    font-size: 1.6rem;
    -webkit-transition: .1s linear;
    transition: .1s linear;
  }
  .btn a:hover {
    background-color: #ad9007;
  }
}

/* btn-arrow 右矢印つき */
.btn-arrow a:after,
button.btn-arrow:after {
  content: '';
  width: 14px;
  width: 4.3750vw;
  height: 7px;
  height: 2.1875vw;
  position: absolute;
  top: 50%;
  right: 12px;
  right: 3.7500vw;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/assets/images/common/icon_arrow.svg) top left no-repeat;
  background-size: 14px auto;
  background-size: 4.3750vw auto;
}
@media screen and (min-width: 769px) {
  .btn-arrow a:after,
  button.btn-arrow:after {
    width: 24px;
    height: 14px;
    right: 20px;
    background-size: 24px auto;
  }
}

/* btn-external 外部リンクつき */
.btn-external {
  display: inline-block;
}
.btn-external a {
  padding: 8px 12px;
  padding: 2.5vw 3.75vw;
}
.btn-external a:after {
  content: '';
  display: inline-block;
  margin-left: 10px;
  margin-left: 3.13vw;
  width: 9px;
  width: 2.81vw;
  height: 9px;
  height: 2.81vw;
  background: url(/assets/images/common/icon_external.svg) top left no-repeat;
  background-size: 9px auto;
  background-size: 2.81vw auto;
}
.old-ios .btn-external a:after {
  margin-left: 10px;
  width: 9px;
  height: 9px;
  background-size: 9px auto;
}
@media screen and (min-width: 769px) {
  .btn-external a {
    padding: 10px 12px;
    font-size: 1.3rem;
  }
  .btn-external a:after {
    margin-left: 8px;
    vertical-align: -1px;
    width: 13px;
    height: 10px;
    background-size: 13px auto;
  }
}

/* btn-double 2重線 */
.btn-double {
	margin: 0 0 5px;
	margin-top: 40px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 1.56vw;
	position: relative;
	font-size: 16px;
	color: #E07C9A;
	text-align: center;
	width: 290px;
	height: 50px;
	border-radius: 180px;
}
.btn-double:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid;
  box-sizing: border-box;
  -webkit-transition: .2s ease-out;
  transition: .2s ease-out;
	border-radius: 180px;
	
}
.btn-double:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #6BC4CB;
  box-sizing: border-box;
  -webkit-transition: .2s ease-out;
  transition: .2s ease-out;
	border-radius: 180px;
}
.btn-double:before {
  z-index: 2;
}
.btn-double:after {
  z-index: 1;
  -webkit-transform: translate(3px, 3px);
      -ms-transform: translate(3px, 3px);
          transform: translate(3px, 3px);
  -webkit-transform: translate(0.93vw, 0.93vw);
      -ms-transform: translate(0.93vw, 0.93vw);
          transform: translate(0.93vw, 0.93vw);
}
.btn-double a,
.btn-double span {
  display: block;
  position: relative;
  z-index: 3;
  padding: 8px 16px 9px;
  padding: 2.5vw 5vw 2.81vw;
  -webkit-transition: .2s ease-out;
  transition: .2s ease-out;
}
.btn-double.large a {
  padding: 13px 0;
  padding: 4.06vw 0;
}
@media screen and (min-width: 769px) {
  .btn-double {
    font-size: 1.5rem;
  }
  .btn-double span,
  .btn-double a {
    padding: 13px 35px 14px;
  }
  .btn-double.large {
    font-size: 1.8rem;
  }
  .btn-double.large a {
    padding: 24px 35px 25px;
  }
  .btn-double:after {
    -webkit-transform: translate(4px, 4px);
        -ms-transform: translate(4px, 4px);
            transform: translate(4px, 4px);
  }
  .btn-double:not(.btn-skew):not(.is-disabled):hover a,
  .btn-double:not(.btn-skew):not(.is-disabled):hover:before,
  .btn-double:not(.btn-skew):not(.is-disabled):hover:after {
    -webkit-transform: translate(2px, 2px);
        -ms-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
}

/* btn-skew 傾き */
.btn-skew {
  margin: 0 10px 5px 7px;
  margin:0 3.12vw 1.56vw 2.18vw;
}
.btn-skew:before,
.btn-skew:after {
  border-color: #3c3100;
}
.btn-skew:before {
  background: #3c3100;
  -webkit-transform: skew(-12deg);
      -ms-transform: skew(-12deg);
          transform: skew(-12deg);
}
.btn-skew:after {
  -webkit-transform: skew(-12deg) translate(5px, 5px);
      -ms-transform: skew(-12deg) translate(5px, 5px);
          transform: skew(-12deg) translate(5px, 5px);
  -webkit-transform: skew(-12deg) translate(1.56vw, 1.56vw);
      -ms-transform: skew(-12deg) translate(1.56vw, 1.56vw);
          transform: skew(-12deg) translate(1.56vw, 1.56vw);
}
@media screen and (min-width: 769px) {
  .btn-skew {
    margin-bottom: 8px;
    font-size: 1.6rem;
  }
  .btn-skew:after {
    -webkit-transform: skew(-12deg) translate(8px, 8px);
        -ms-transform: skew(-12deg) translate(8px, 8px);
            transform: skew(-12deg) translate(8px, 8px);
  }
  .btn-skew:hover:before {
    border-color: #ad9007;
    background-color: #ad9007;
    -webkit-transform: skew(-12deg) translate(4px, 4px);
        -ms-transform: skew(-12deg) translate(4px, 4px);
            transform: skew(-12deg) translate(4px, 4px);
  }
  .btn-skew:hover:after {
    border-color: #ad9007;
    -webkit-transform: skew(-12deg) translate(4px, 4px);
        -ms-transform: skew(-12deg) translate(4px, 4px);
            transform: skew(-12deg) translate(4px, 4px);
  }
  .btn-skew:hover a {
    -webkit-transform: translate(4px, 4px);
        -ms-transform: translate(4px, 4px);
            transform: translate(4px, 4px);
  }
}

/* -----------------------------------------------------
 Component
 ページで共通のパーツ
 命名はc-プレフィクスをつける
------------------------------------------------------- */
/* ページ最上部のタイトルエリア */
.c-title {
  height: 180px;
  height: 56.25vw;
  padding-top: 68px;
  padding-top: 21.25vw;
  opacity: 0;
  text-align: center;
  line-height: 1;
  background: center center no-repeat;
  background-size: cover;
  box-sizing: border-box;
}
.start-fade .c-title {
  opacity: 1;
  -webkit-transition: .3s linear;
  transition: .3s linear;
}
.c-title__main {
  margin-bottom: 10px;
  margin-bottom: 3.13vw;
  opacity: 0;
  font-size: 25px;
  font-size: 7.81vw;
  line-height: 1;
  color: #fff;
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
}
.c-title__sub {
  font-size: 10px;
  font-size: 3.13vw;
  opacity: 0;
  color: #fff;
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
}
.start-fade .c-title__main,
.start-fade .c-title__sub {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity .4s linear .3s, -webkit-transform .6s cubic-bezier(0.215, 0.61, 0.355, 1) .3s;
  transition: opacity .4s linear .3s, -webkit-transform .6s cubic-bezier(0.215, 0.61, 0.355, 1) .3s;
  transition: opacity .4s linear .3s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1) .3s;
  transition: opacity .4s linear .3s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1) .3s, -webkit-transform .6s cubic-bezier(0.215, 0.61, 0.355, 1) .3s;
}
.c-desc {
  margin: 0 0 30px;
  margin: 0 0 9.38vw;
  font-size: 12px;
  font-size: 3.75vw;
  line-height: 1.7;
}
@media screen and (min-width: 769px) {
  .c-title {
    height: 400px;
    padding-top: 160px;
  }
  .c-title__main {
    margin-bottom: 20px;
    font-size: 4rem;
  }
  .c-title__sub {
    font-size: 1.4rem;
  }
  .c-desc {
    margin: 0 0 60px;
    font-size: 1.5rem;
    line-height: 2;
    text-align: center;
  }
}

/* - ライン付きのタイトル - */
.c-title__with--line {
  font-size: 14px;
  font-size: 4.38vw;
  letter-spacing: .1em;
  line-height: 1;
  text-align: center;
}
.c-title__with--line:before,
.c-title__with--line:after {
  content: '';
  width: 20px;
  height: 1px;
  margin: 0 10px;
  margin: 0 3.13vw;
  display: inline-block;
  vertical-align: 4px;
  vertical-align: 1.25vw;
  color: inherit;
  background: currentColor;
}
@media screen and (min-width: 769px) {
  .c-title__with--line {
    font-size: 2.4rem;
  }
  .c-title__with--line:before,
  .c-title__with--line:after {
    width: 40px;
    height: 1px;
    margin: 0 20px;
    vertical-align: 7px;
  }
}

/* ピンク色のリンク */
.c-link__item {
  margin: 12px 0 0;
  color: #b23654;
}
.c-link__item {
  margin: 0 0 4px;
  font-size: 11px;
  font-size: 3.44vw;
}
.c-link__item a {
  text-decoration: underline;
}
.c-link__item a:hover {
  color: #d71e4d;
  text-decoration: none;
}
.c-link__item:after {
  content: '';
  width: 6px;
  width: 1.88vw;
  height: 12px;
  height: 3.75vw;
  margin-left: 3px;
  margin-left: 0.94vw;
  display: inline-block;
  vertical-align: -4px;
  vertical-align: -1.25vw;
  background: url(/assets/images/common/icon_arrow_right.svg) left top no-repeat;
  background-size: 6px auto;
  background-size: 1.88vw auto;
}
.c-link__item.external:after {
  content: '';
  width: 7px;
  width: 2.19vw;
  height: 5px;
  height: 1.56vw;
  margin-left: 4px;
  margin-left: 1.25vw;
  display: inline-block;
  vertical-align: baseline;
  background: url(/assets/images/common/icon_external_pink.svg) left top no-repeat;
  background-size: 7px auto;
  background-size: 2.19vw auto;
}
@media screen and (min-width: 769px) {
  .c-link__item {
    display: inline-block;
    margin: 0 40px 0 0;
    font-size: 1.3rem;
  }
  .c-link__item:after {
    content: '';
    width: 6px;
    height: 12px;
    margin-left: 3px;
    vertical-align: -2px;
    display: inline-block;
    background: url(/assets/images/common/icon_arrow_right.svg) left top no-repeat;
    background-size: 6px auto;
  }
  .c-link__item.external:after {
    content: '';
    width: 12px;
    height: 9px;
    margin-left: 7px;
    vertical-align: baseline;
    background-size: 12px auto;
  }
}

/* 世界遺産 */
.c-box__border {
  display: inline-block;
  vertical-align: 0.63vw;
  margin-left: 3.13vw;
  padding: 5px;
  padding: 0.94vw;
  font-size: 9px;
  font-size: 2.81vw;
  line-height: 1;
  border: 1px solid;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .c-box__border {
    vertical-align: 4px;
    margin-left: 20px;
    padding: 4px 8px;
    font-size: 1.5rem;
  }
}

/* 2重線 */
.c-line__top:before,
.c-line__bottom:after {
  content: '';
  width: 100%;
  height: 2px;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  position: absolute;
  left: 0;
}
.c-line__top:before {
  top: 0;
}
.c-line__bottom:after {
  bottom: 0;
}
@media screen and (min-width: 769px) {
  .c-line__top:before,
  .c-line__bottom:after {
    height: 3px;
  }
}

/* ページ内リンク */
.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(0, 0, 0, .9);
  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;
  width: 9.38vw;
  height: 30px;
  height: 9.38vw;
  position: fixed;
  z-index: -10000;
  top: 25px;
  top: 7.81vw;
  right: 20px;
  right: 6.25vw;
  cursor: pointer;
}
.modal__close.is-active {
  z-index: 10000;
}
.modal__close:before,
.modal__close:after {
  content: '';
  width: 43px;
  width: 13.4375vw;
  height: 1px;
  height: 0.3125vw;
  position: absolute;
  background: #fff;
  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: 60px;
    height: 60px;
    top: 40px;
    right: 26px;
  }
  .modal__close:before,
  .modal__close:after {
    width: 84px;
    height: 1px;
    top: 50%;
    left: 50%;
    margin-left: -42px;
  }
}

/* -----------------------------------------------------
 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;
  }
}

/* -----------------------------------------------------
 Form
------------------------------------------------------- */
.form__title {
   position: relative;
   padding: 20px 0 18px;
   padding: 6.2500vw 0 5.6250vw;
   font-size: 13px;
   font-size: 4.0625vw;
   border-bottom: 1px solid #aaa;
   text-align: center;
}
.form__title img {
   margin-right: 6px;
   margin-right: 1.8750vw;
}
.form__table,
.form__table > tbody > tr,
.form__table > tbody > tr > th,
.form__table > tbody > tr > td {
  text-align: left;
}
.form__table .form__required > th:before {
  content: '必須';
  padding: 2px 5px;
  padding: .6250vw 1.5625vw;
  border: 1px solid #ad9007;
  font-size: 9px;
  font-size: 2.8125vw;
  color: #ad9007;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .form__table,
  .form__table > tbody,
  .form__table > tbody > tr,
  .form__table > tbody > tr > th,
  .form__table > tbody > tr > td {
    display: block;
  }
  .form__table {
    width: 100%;
    margin-bottom: 25px;
    margin-bottom: 7.8125vw;
  }
  .form__table > tbody > tr > th,
  .form__table > tbody > tr > td {
    font-size: 11px;
    font-size: 3.4375vw;
  }
  .form__table > tbody > tr > th {
    padding-top: 15px;
    padding-top: 4.6875vw;
    padding-bottom: 5px;
    padding-bottom: 1.5625vw;
  }
  .form__table .form__required > th:before {
    margin-right: 6px;
    margin-right: 1.8750vw;
  }
  .form__table > tbody > tr > td {
    padding-top: 5px;
    padding-top: 1.5625vw;
    padding-bottom: 15px;
    padding-bottom: 4.6875vw;
    border-bottom: 1px solid #ddd;
  }
}

@media screen and (min-width: 769px) {
  .form__table {
    margin-bottom: 40px;
  }
  .form__table > tbody > tr > th,
  .form__table > tbody > tr > td {
    padding: 25px 0;
    font-size: 1.5rem;
    box-sizing: border-box;
    border-bottom: 1px solid #ddd;
  }
  .form__table > tbody > tr > th {
    width: 320px;
    position: relative;
    padding-left: 125px;
    border-right: 1px solid #ddd;
  }
  .form__row--large > th {
    padding-top: 45px;
    vertical-align: top;
  }
  .form__table > tbody > tr > td {
    width: 800px;
    padding-left: 50px;
    padding-right: 50px;
  }
  .form__table > tbody > tr > td .table__option--wrap {
    padding: 15px 0 15px 50px;
  }
  .form__table > tbody > tr > td.table__option--data {
    padding: 0;
  }
  .form__title {
     padding: 32px 0 28px;
     font-size: 2rem;
  }
  .form__title img {
     margin-right: 12px;
  }
  .form__table .form__required > th:before {
    position: absolute;
    top: 50%;
    left: 60px;
    padding: 4px 7px;
    font-size: 11px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

/* error
------------------------------------------------ */
.form__error {
  padding: 20px 0;
  padding: 6.2500vw 0;
  font-size: 11px;
  font-size: 3.4375vw;
  border-bottom: 1px solid #ddd;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .form__error {
    padding: 30px 0;
    font-size: 1.5rem;
  }
}



/* input
------------------------------------------------ */
.form__text,
.form__textarea {
  width: 100%;
  padding: 10px 15px;
  padding: 3.13vw 4.6875vw;
  background: #fff;
  font-size: 11px;
  font-size: 3.4375vw;
  border: 1px solid #ddd;
  border-radius: 4px;
  border-radius: 1.2500vw;
  box-sizing: border-box;
}
.form__textarea {
  line-height: 1.5;
}
.form__postcode input {
  padding-left: 35px;
  padding-left: 10.9375vw;
  background: #fff url(/assets/images/contact/icon_postcode.svg) 15px center no-repeat;
  background: #fff url(/assets/images/contact/icon_postcode.svg) 4.6875vw center no-repeat;
  background-size: 8px auto;
  background-size: 2.5000vw auto;
}
@media screen and (min-width: 769px) {
  .form__text,
  .form__textarea {
    padding: 15px 20px;
    font-size: 1.5rem;
    border-radius: 4px;
  }
  .form__postcode input {
    padding-left: 48px;
    background: #fff url(/assets/images/contact/icon_postcode.svg) 22px center no-repeat;
    background-size: 10px auto;
  }
}

/* number
------------------------------------------------ */
.form__number {
  width: 32px;
  width: 10vw;
  padding: 3px 6px;
  padding: .9375vw 1.8750vw;
  border: 1px solid #ddd;
  border-radius: 1px;
  background: #fff;
  font-size: 11px;
  font-size: 3.4375vw;
  line-height: 1;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .form__number {
    width: 32px;
    padding: 2px 8px;
    border-radius: 2px;
    font-size: 1.3rem;
  }
}

/* radio
------------------------------------------------ */
.form__radio {
  padding: 2px 0;
  padding: .6250vw 0;
}
.form__radio input[type="radio"] {
  display: none;
}
.form__radio input[type="radio"] + label {
  display: inline-block;
  position: relative;
  margin: 0 7px 0 0;
  margin: 0 2.1875vw 0 0;
  padding: 0 0 0 25px;
  padding: 0 0 0 7.8125vw;
  line-height: 1;
  cursor: pointer;
}
.form__radio input[type="radio"][disabled] + label {
  color: #bbb;
  cursor: auto;
}
.form__radio input[type="radio"] + label:before {
  content: "";
  width: 20px;
  width: 6.2500vw;
  height: 20px;
  height: 6.2500vw;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
}
.form__radio input[type="radio"] + label:after {
  content: "";
  width: 10px;
  width: 3.1250vw;
  height: 10px;
  height: 3.1250vw;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6px;
  left: 1.8750vw;
  margin: auto 0;
  border-radius: 50%;
  background: transparent;
  -webkit-transition: background 0.1s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: background 0.1s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.form__radio input[type="radio"]:checked + label:after {
  background-color: #ad9007;
}
@media screen and (min-width: 769px) {
  .form__radio {
    padding: 5px 0;
  }
  .form__radio input[type="radio"] + label {
    margin: 0 40px 0 0;
    padding: 0 0 0 38px;
  }
  .form__radio input[type="radio"] + label:before {
    width: 26px;
    height: 26px;
  }
  .form__radio input[type="radio"] + label:after {
    width: 12px;
    height: 12px;
    left: 8px;
  }
}

/* checkbox
------------------------------------------------ */
.form__box--select input[type="checkbox"] {
  display: none;
}
.form__box--select input[type="checkbox"] + label {
  position: relative;
  display: block;
  padding: 3px 0 3px 25px;
  padding: .9375vw 0 .9375vw 7.8125vw;
  line-height: 1.2;
  vertical-align: top;
  cursor: pointer;
}
.form__box--select input[type="checkbox"] + label:before {
  content: "";
  width: 18px;
  width: 5.6250vw;
  height: 18px;
  height: 5.6250vw;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #ddd;
  background: #fff;
  box-sizing: border-box;
  border-radius: 1px;
}
.form__box--select input[type="checkbox"] + label:after {
  content: "";
  width: 10px;
  width: 3.1250vw;
  height: 10px;
  height: 3.1250vw;
  position: absolute;
  z-index: 1;
  top: 4px;
  top: 1.2500vw;
  left: 4px;
  left: 1.2500vw;
  background: #ad9007;
  box-sizing: border-box;
  opacity: 0;
  border-radius: 1px;
  -webkit-transition: opacity 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: opacity 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.form__box--select input[type="checkbox"]:checked + label:after {
  opacity: 1;
}
.form__hidden--select {
  display: none;
}

@media screen and (min-width: 769px) {
  .form__box--select input[type="checkbox"] + label {
    padding: 4px 0 4px 30px;
  }
  .form__box--select input[type="checkbox"] + label:before {
    width: 22px;
    height: 22px;
    border-radius: 2px;
  }
  .form__box--select input[type="checkbox"] + label:after {
    content: "";
    width: 12px;
    height: 12px;
    top: 5px;
    left: 5px;
    border-radius: 2px;
  }
}


/* 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;
  }
}

/* form__aside
------------------------------------------------ */
.form__aside {
  margin-bottom: 15px;
  margin-bottom: 4.6875vw;
  font-size: 11px;
  font-size: 3.4375vw;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .form__aside {
    margin-bottom: 20px;
    font-size: 1.5rem;
  }
}

/* note
------------------------------------------------ */
.form__note {
  margin-top: 25px;
  margin-top: 7.8125vw;
  padding: 14px;
  background: #e3e3e3;
}
.form__note--item {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 10px;
  font-size: 3.1250vw;
}
@media screen and (min-width: 769px) {
  .form__note {
    margin-top: 40px;
    padding: 30px 40px;
  }
  .form__note--item {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}

/* -----------------------------------------------------
 Option
------------------------------------------------------- */
.table__option {
  padding-bottom: 15px;
  padding-bottom: 4.6875vw;
}
.form__box--select,
.form__box--price {
  display: inline-block;
  vertical-align: middle;
}
.form__box--select {
  margin-right: 16px;
  margin-right: 5.0000vw;
}
.form__box--note {
  padding-left: 25px;
  padding-left: 7.8125vw;
}
.table__option td {
  padding: 5px 0;
  padding: 1.5625vw 0;
}


@media screen and (max-width: 768px) {
  .table__option,
  .table__option tbody,
  .table__option tr,
  .table__option th,
  .table__option td {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .table__option {
    width: 100%;
  }
  .form__box--select {
    margin-right: 10px;
  }
  .form__box--note {
    padding-left: 30px;
  }
  .table__option td {
    padding: 10px 0;
  }
}



/* -----------------------------------------------------
 Confirm
------------------------------------------------------- */
.confirm__title {
  position: relative;
  padding-bottom: 25px;
  font-size: 12px;
  font-size: 3.7500vw;
}
@media screen and (min-width: 769px) {
  .confirm__title {
    padding-bottom: 65px;
    font-size: 15px;
    text-align: center;
  }
}

/* -----------------------------------------------------
 Complete
------------------------------------------------------- */
.complete__title {
  margin-bottom: 25px;
  margin-bottom: 7.8125vw;
  font-size: 14px;
  font-size: 4.3750vw;
  text-align: center;
}
.complete__desc {
  margin-top: 25px;
  margin-top: 7.8125vw;
  font-size: 12px;
  font-size: 3.7500vw;
  line-height: 1.7;
}
.complete__contact {
  margin-top: 30px;
  margin-top: 9.3750vw;
  padding-top: 30px;
  padding-top: 9.3750vw;
  border-top: 1px solid #ddd;
  font-size: 12px;
  font-size: 3.7500vw;
  line-height: 1.7;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .complete__title {
    margin-bottom: 40px;
    font-size: 2.4rem;
  }
  .complete__desc {
    margin-top: 30px;
    font-size: 1.5rem;
    text-align: center;
  }
  .complete__contact {
    margin-top: 50px;
    padding-top: 50px;
    font-size: 1.5rem;
  }
}

/* -----------------------------------------------------
 Js
 Jsから操作するパーツ
 命名はjs-プレフィクスをつける
------------------------------------------------------- */



/* -----------------------------------------------------
 Header PC
------------------------------------------------------- */
@media screen and (min-width: 769px) {
  /* 上部ヘッダ */
  .header-pc__upper {
    position: relative;
  }
  .header-pc__main {
    height: 70px;
    padding-right: 245px;
    background: url(/assets/images/common/bg01.png) center top repeat-x;
  }
  .header-pc__contact {
    position: absolute;
    left: 20px;
  }
  .header-pc__contact-item {
    margin-right: 10px;
    display: inline-block;
    line-height: 1;
  }
  .header-pc__contact-item a {
    display: block;
    padding: 9px 20px 11px 20px;
    font-size: 1.4rem;
    color: #fff;
    border-radius: 20px;
  }
  .header-pc__title {
    position: absolute;
    top: 10px;
  }
  .header-pc__title svg {
    width: 301px;
    height: auto;
    fill: #fff;
  }
  .header-pc__tel {
    position: absolute;
    width: 245px;
    height: 100%;
    top: 0;
    right: 0;
    padding: 12px 0;
    text-align: center;
    box-sizing: border-box;
  }
  .header-pc__tel--number {
    margin: 0 0 4px;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: .12em;
    color: #fff;
  }
  .header-pc__tel--number a {
    font-size: 2.4rem;
  }
  .header-pc__tel--hours {
    font-size: 1.2rem;
    letter-spacing: .1em;
    color: #fff;
  }
  .header-pc__nav {
    background: #000;
    text-align: center;
  }
  .header-pc__nav--item {
    display: inline-block;
  }
  .header-pc__nav--item a {
    display: block;
    padding: 17px 28px 19px 28px;
    font-size: 1.5rem;
    line-height: 1;
    color: #fff;
  }

  /* 固定ヘッダ */
  .header-fixed {
    width: 100%;
    height: 55px;
    position: fixed;
    z-index: -20;
    opacity: 0;
    top: 0;
    left: 0;
    background: #080808;
    -webkit-transition: opacity .3s linear, z-index 0s .3s;
    transition: opacity .3s linear, z-index 0s .3s;
  }
  .header-fixed .inside {
    padding-top: 0;
    padding-bottom: 0;
  }
  .header-fixed.is-visible {
    opacity: 1;
    z-index: 20;
    -webkit-transition: opacity .3s linear;
    transition: opacity .3s linear;
  }
  .header-fixed__title {
    width: 200px;
    position: absolute;
    top: 0;
    left: 0;
  }
  .header-fixed__title a {
    position: absolute;
    top: 12px;
    left: 0;
    line-height: 0;
  }
  .header-fixed__title svg {
    width: 160px;
    height: auto;
    fill: #ad9007;
  }
  .header-fixed__nav {
    text-align: right;
  }
  .header-fixed__nav--item {
    display: inline-block;
    margin-left: 50px;
    font-size: 1.4rem;
    line-height: 55px;
    color: #fff;
  }
}

/* -----------------------------------------------------
 Header SP
------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .header-sp__bar {
    width: 100%;
    height: 55px;
    height: 17.1875vw;
    position: relative;
    display: table;
    table-layout: fixed;
  }
  .header-sp__title {
    position: relative;
    display: table-cell;
  }
  .header-sp__title a {
    position: absolute;
    width: 180px;
    width: 56.25vw;
    height: 27px;
    height: 8.4375vw;
    top: 13px;
    top: 4.06vw;
    left: 50%;
    line-height: 0;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .header-sp__title svg {
    width: 100%;
    height: auto;
    fill: #8f7703;
  }
  .header-sp__tel,
  .header-sp__menu--btn {
    width: 17.1875%;
    position: relative;
    display: table-cell;
    color: #fff;
  }
  .header-sp__tel p,
  .header-sp__menu--btn p {
    width: 100%;
    position: absolute;
    bottom: 8px;
    bottom: 2.5vw;
    left: 0;
    font-size: 10px;
    font-size: 3.13vw;
    text-align: center;
    line-height: 1;
  }
  .header-sp__tel img {
    width: 21px;
    width: 6.5625vw;
    height: auto;
    position: absolute;
    top: 8px;
    top: 2.5vw;
    left: 50%;
    line-height: 1;
    white-space: nowrap;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .header-sp__menu--btn {
    background: #000;
  }
  .header-sp__menu--btn p:before,
  .header-sp__menu--btn p:after {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    line-height: 1;
    -webkit-transition: .2s linear;
    transition: .2s linear;
  }
  .header-sp__menu--btn p:before {
    content: 'Menu';
    opacity: 1;
  }
  .header-sp__menu--btn p:after {
    content: 'Close';
    opacity: 0;
  }
  .is-active .header-sp__menu--btn p:before {
    opacity: 0;
  }
  .is-active .header-sp__menu--btn p:after {
    opacity: 1;
  }
  .header-sp__menu--btn div span,
  .header-sp__menu--btn div:before,
  .header-sp__menu--btn div:after {
    content: '';
    width: 24px;
    width: 7.5vw;
    height: 1px;
    position: absolute;
    top: 20px;
    top: 6.25vw;
    left: 50%;
    margin-left: -12px;
    margin-left: -3.75vw;
    background: #fff;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
  }
  .header-sp__menu--btn div:before {
    -webkit-transform: translateY(-6px);
        -ms-transform: translateY(-6px);
            transform: translateY(-6px);
    -webkit-transform: translateY(-1.88vw);
        -ms-transform: translateY(-1.88vw);
            transform: translateY(-1.88vw);
  }
  .old-ios .header-sp__menu--btn div:before {
    -webkit-transform: translateY(-6px);
        -ms-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  .header-sp__menu--btn div:after {
    -webkit-transform: translateY(6px);
        -ms-transform: translateY(6px);
            transform: translateY(6px);
    -webkit-transform: translateY(1.88vw);
        -ms-transform: translateY(1.88vw);
            transform: translateY(1.88vw);
  }
  .old-ios .header-sp__menu--btn div:after {
    -webkit-transform: translateY(6px);
        -ms-transform: translateY(6px);
            transform: translateY(6px);
  }
  .is-active .header-sp__menu--btn div span {
    opacity: 0;
  }
  .is-active .header-sp__menu--btn div:before {
    -webkit-transform: translateY(0) rotate(45deg);
        -ms-transform: translateY(0) rotate(45deg);
            transform: translateY(0) rotate(45deg);
  }
  .is-active .header-sp__menu--btn div:after {
    -webkit-transform: translateY(0) rotate(-45deg);
        -ms-transform: translateY(0) rotate(-45deg);
            transform: translateY(0) rotate(-45deg);
  }
  .header-sp__menu {
    overflow: hidden;
    background: #000;
    opacity: 0;
    position: absolute;
    z-index: -100;
    -webkit-transition: opacity .2s linear, z-index 0s .2s;
    transition: opacity .2s linear, z-index 0s .2s;
  }
  .is-active .header-sp__menu {
    opacity: 1;
    z-index: 100;
    -webkit-transition: opacity .2s linear;
    transition: opacity .2s linear;
  }
  .header-sp__menu--item {
    width: 50%;
    float: left;
    box-sizing: border-box;
  }
  .header-sp__menu--item.item--full {
    width: 100%;
  }
  .header-sp__menu--item a {
    padding: 20px 27px 20px 14px;
    padding: 6.25vw 8.4375vw 6.25vw 4.38vw;
    display: block;
    position: relative;
    font-size: 12px;
    font-size: 3.75vw;
    white-space: nowrap;
    line-height: 1;
    color: #fff;
  }
  .header-sp__menu--item:nth-child(odd):not(.item--full) {
    border-right: 1px solid #333;
  }
  .header-sp__menu--item:not(last-child) {
    border-bottom: 1px solid #333;
  }
  .header-sp__menu--item a:after {
    content: '';
    width: 6px;
    height: 11px;
    position: absolute;
    top: 50%;
    right: 10px;
    background: url(/assets/images/common/icon_header_arrow.svg) left top no-repeat;
    background-size: 6px auto;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .header-sp__menu--item.item__external a:after {
    width: 14px;
    width: 4.38vw;
    height: 11px;
    height: 3.44vw;
    background-image: url(/assets/images/common/icon_external.svg);
    background-size: 100% auto;
  }
  .header-sp__menu--item a.icon-external:after {
    width: 12px;
    height: 10px;
    background-image: url(/assets/images/common/icon_external.svg);
    background-size: 12px auto;
  }
}

/* -----------------------------------------------------
 Contact
------------------------------------------------------- */
.contact-nav {
  padding: 20px 0 25px;
  padding: 6.25vw 0 7.81vw;
  text-align: center;
  background: url(/assets/images/common/bg01.png) center top repeat;
}
.contact-nav .inside {
  padding-top: 0;
  padding-bottom: 0;
}
.contact-nav__item a {
  padding: 15px 0 16px;
  padding: 4.69vw 0 5vw;

}
@media screen and (max-width: 768px) {
  .contact-nav__item:first-child {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 769px) {
  .contact-nav {
    padding: 50px 0 64px;
  }
  .contact-nav__item {
    width: auto;
    margin: 0 25px;
    display: inline-block;
    font-size: 1.8rem;
  }
  .contact-nav__item a {
    width: 480px;
    padding: 26px 0 27px;
  }
}

/* -----------------------------------------------------
 Index
------------------------------------------------------- */
.index__title {
  margin: 0 0 9.38vw;
  font-size: 5vw;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.index__title span {
  display: block;
  margin-top: 3.75vw;
  font-size: 3.13vw;
}
@media screen and (min-width: 769px) {
  .index__title {
    margin: 0 0 50px;
    font-size: 2.8rem;
  }
  .index__title span {
    margin-top: 22px;
    font-size: 1.6rem;
  }
}

/* -----------------------------------------------------
 Katsura
------------------------------------------------------- */
.katsura {
  position: absolute;
  z-index: 1000;
  top: 50%;
  left: 50%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .katsura {
    width: 100%;
    padding: 0 20px;
    padding: 0 6.25vw;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 769px) {
  .katsura {
    width: 720px;
  }
}

/* -----------------------------------------------------
 Banner
------------------------------------------------------- */
.footer-banner {
  padding: 30px 0;
  padding: 9.38vw 0;
  background: #080808 url(/assets/images/common/bg05.jpg) center center no-repeat;
  background-size: cover;
}
.footer-banner__item {
  line-height: 0;
}
.footer-banner__title {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .footer-banner__item:not(:last-child) {
    margin: 0 0 20px;
  }
}
@media screen and (min-width: 769px) {
  .footer-banner {
    padding: 60px 0;
  }
  .footer-banner__list {
    text-align: center;
    font-size: 0;
  }
  .footer-banner__item {
    width: 540px;
    display: inline-block;
  }
  .footer-banner__item:nth-child(even) {
    margin-left: 40px;
  }
  .footer-banner__item:nth-child(n+3) {
    margin-top: 40px;
  }
}

/* -----------------------------------------------------
 News
------------------------------------------------------- */
.news {
  padding: 25px 0 27px;
  padding: 7.8125vw 0 8.4375vw;
  background: #fff;
}
.news .inside {
  padding-top: 0;
  padding-bottom: 0;
}
.news__label {
  line-height: 1;
}
.news__label--btn {
  margin: 0;
  display: inline-block;
  font-size: 14px;
  font-size: 4.38vw;
}
.news__date {
  letter-spacing: .05em;
}
.news__post {
  position: relative;
}
.news__post:not(:last-child) {
  margin-bottom: 6.25vw;
}
.news__title,
.news__text {
  font-size: 3.75vw;
  line-height: 1.7;
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .news__label {
    padding-top: 4px;
    padding-top: 1.25vw;
    margin-bottom: 18px;
    margin: 0 0 5.63vw;
  }
  .news__label--btn span {
    padding: 9px 16px 6px 18px;
    padding: 2.81vw 5vw 1.88vw 5.63vw;
  }
  .news__date {
    position: absolute;
    top: 2.5vw;
    right: 0;
    font-size: 4.38vw;
  }
}

@media screen and (min-width: 769px) {
  .news {
    padding: 60px 0 64px;
  }
  .news__post {
    width: 100%;
    display: table;
    table-layout: fixed;
  }
  .news__post:not(:last-child) {
    margin-bottom: 30px;
  }
  .news__label,
  .news__date,
  .news__body {
    display: table-cell;
    vertical-align: top;
  }
  .news__date,
  .news__body {
    padding-top: 13px;
  }
  .news__label {
    width: 160px;
  }
  .news__label--btn {
    font-size: 2.2rem;
  }
  .news__label--btn span {
    padding: 14px 32px 11px;
  }
  .news__date {
    width: 110px;
    font-size: 1.8rem;
  }
  .news__title,
  .news__text {
    font-size: 1.5rem;
  }
}

/* -----------------------------------------------------
 Footer
------------------------------------------------------- */
.footer {
  background: #000;
}
.footer__nav-sub {
  overflow: hidden;
  background: url(/assets/images/common/bg01.png) center top repeat;
}
.footer__nav-sub--item {
  width: 50%;
  float: left;
  box-sizing: border-box;
}
.footer__nav-sub--item a {
  height: 68px;
  height: 21.8vw;
  display: block;
  position: relative;
}
.footer__nav-sub--item div {
  position: absolute;
  font-size: 13px;
  font-size: 4.06vw;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}
.footer__nav-sub--item a.icon-external:after {
  content: '';
  width: 9px;
  width: 2.81vw;
  height: 8px;
  height: 2.5vw;
  position: absolute;
  bottom: 8px;
  bottom: 2.5vw;
  right: 8px;
  right: 2.5vw;
  background-size: 9px auto;
  background-size: 2.81vw auto;
}
.footer__nav-sub--item img {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footer__bottom {
  height: 147px;
  height: 46vw;
  position: relative;
  margin: 0 auto;
}
.footer__bottom--logo {
  position: absolute;
}
.footer__bottom--logo svg path {
  fill: #ddd;
}
.footer__bottom--copyright {
  position: absolute;
  color: #fff;
  font-size: 9px;
  font-size: 2.2vw;
  line-height: 2;
  letter-spacing: .2em;
}
.footer__bottom--pagetop {
  position: absolute;
}
.footer__bottom--pagetop a {
  display: block;
}
.footer__bottom--pagetop svg path,
.footer__bottom--pagetop svg circle {
  stroke: #fff;
  stroke-width: 1px;
}
.footer__bottom--pagetop svg .cls-2 {
  opacity: 0.3;
}

@media screen and (max-width: 768px) {
  .footer__nav-sub--item:nth-child(odd) {
    border-right: 1px solid #000;
  }
  .footer__nav-sub--item:nth-child(n+3) {
    border-top: 1px solid #000;
  }
  .footer__nav-sub--item div {
    width: 100%;
    padding-left: 35px;
    padding-left: 11vw;
  }
  .footer__nav-sub--item img {
    position: absolute;
    left: 20px;
    left: 6.25vw;
  }
  .footer__nav-sub--item.item--faq img {
    width: 14px;
    width: 4.38vw;
  }
  .footer__nav-sub--item.item--staff img {
    width: 19px;
    width: 5.94vw;
  }
  .footer__nav-sub--item.item--blog img {
    width: 20px;
    width: 6.25vw;
  }
  .footer__nav-sub--item.item--insta img {
    width: 17px;
    width: 5.31vw;
  }
  .footer__nav-sub--item img {
    height: auto;
  }
  .footer__bottom--logo {
    top: 22px;
    top: 6.87vw;
    right: 50%;
    margin-right: 15px;
    margin-right: 4.69vw;
  }
  .footer__bottom--logo img {
    width: 120px;
    width: 37.5vw;
    height: auto;
  }
  .footer__bottom--copyright {
    top: 24px;
    top: 7.5vw;
    left: 50%;
    margin-left: 10px;
    margin-left: 3.13vw;
  }
  .footer__bottom--pagetop {
    position: absolute;
    bottom: 30px;
    bottom: 9.37vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .footer__bottom--pagetop svg {
    width: 4px;
    width: 12.5vw;
    height: auto;
  }
}

@media screen and (min-width: 769px) {
  .footer__nav-sub--item {
    width: 25%;
  }
  .footer__nav-sub--item:not(:last-child) {
    border-right: 1px solid #000;
  }
  .footer__nav-sub--item a {
    height: 180px;
  }
  .footer__nav-sub--item div {
    padding-left: 70px;
    font-size: 2rem;
    white-space: nowrap;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .footer__nav-sub--item img {
    position: absolute;
    left: 0;
    width: auto;
  }
  .footer__nav-sub--item a.icon-external:after {
    width: 20px;
    height: 16px;
    bottom: 15px;
    right: 15px;
    background-size: 20px auto;
  }
  .footer__nav-main {
    padding: 50px 0;
    background: #000;
    text-align: center;
    border-bottom: 1px solid #555;
  }
  .footer__nav-main--list:not(:last-child) {
    margin-bottom: 36px;
  }
  .footer__nav-main--item {
    display: inline-block;
    margin: 0 25px;
  }
  .footer__nav-main--item a {
    font-size: 1.4rem;
    line-height: 1;
    color: #fff;
  }
  .footer__nav-main--item a.icon-external:after {
    content: '';
    width: 13px;
    height: 10px;
    margin-left: 5px;
    display: inline-block;
    vertical-align: -1px;
    background-size: 13px auto;
  }
  .footer__bottom {
    width: 1120px;
    height: 90px;
  }
  .footer__bottom--logo {
    position: absolute;
    top: 47%;
    left: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .footer__bottom--logo svg {
    fill: #ddd;
  }
  .footer__bottom--copyright {
    position: absolute;
    top: 50%;
    left: 220px;
    color: #fff;
    font-size: 1.1rem;
    line-height: 2;
    letter-spacing: .2em;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .footer__bottom--contact {
    position: absolute;
    top: 50%;
    right: 80px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .footer__bottom--contact-item {
    display: inline-block;
    margin-left: 20px;
    line-height: 1;
  }
  .footer__bottom--contact-item a {
    display: block;
    padding: 12px 20px;
    font-size: 1.3rem;
    color: #fff;
    border: 1px solid #555;
    border-radius: 20px;
  }
  .footer__bottom--pagetop {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out;
  }
  .footer__bottom--pagetop svg {
    stroke: #fff;
    stroke-width: 1px;
  }
  .footer__bottom--pagetop svg .cls-2 {
    opacity: 0.3;
  }
}

/* 2016.10.28追加
------------------------------------------------ */

.header-pc__title img {
  width: 320px;
}

.header-fixed__title img {
  width: 200px
}
