@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;500;700&display=swap");
/*!
	Theme Name:Earth Colors
	Theme URI:
	Author:Yo Yamamoto
	Author URI:https://pulltab.info/
	Description:Earth Colros Theme
	Version:0.1
	License:No License
	License URI:https://choosealicense.com/no-permission/
	Tags:
	Text Domain:earth-colors
*/
/**
 * variable
 */
/**
 * mixin
 */
/* =================================================
  ベース
================================================= */
@-ms-viewport {
  width: auto;
  initial-scale: 1;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

html {
  font-family: YuMincho, "游明朝", "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "メイリオ", "MS P明朝", "MS PMincho", serif;
  font-size: 62.5%;
  font-weight: 500;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  font-feature-settings: "palt";
  letter-spacing: .025em;
}

@media (max-width: 530px) {
  body {
    min-width: 320px;
    font-size: 1.4rem;
  }
}
:focus {
  outline: none;
}

a:hover,
a:active {
  outline: 0;
}

/* =================================================
  ユーティリティ
================================================= */
.cf:after {
  content: ".";
  display: block;
  height: 0.1px;
  clear: both;
  visibility: hidden;
  font-size: 0.1em;
  line-height: 0;
}

.cf {
  display: inline-block;
}

/* Hides from IE-mac \*/
* html .cf {
  height: 1%;
}

.cf {
  display: block;
}

/* End hide from IE-Mac */
/* =================================================
  アニメーション
================================================= */
.fade {
  opacity: 0;
  transform: translate(0, 48px);
  transition: opacity .3s, transform .3s;
}

.fade.in {
  opacity: 1;
  transform: translate(0, 0);
}

/* =================================================
  フォームパーツ チェックボックス・ラジオボタン
================================================= */
input[type=radio],
input[type=checkbox] {
  display: none;
}

/*背景ラベル*/
.radio,
.checkbox {
  box-sizing: border-box;
  transition: background-color 0.2s linear;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  font-size: 14px;
  /*ホバー時 ボックス*/
  /*ボックス*/
}
.radio:hover:after,
.checkbox:hover:after {
  border-color: #a3c3d9;
}
.radio:after,
.checkbox:after {
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  display: block;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  content: '';
}

/*ラジオボタン*/
.radio {
  /*背景ラベル*/
  margin-right: 10px;
  padding: 4px 4px 4px 24px;
  /*ホバー時 ラベル*/
  /*ラジオボタンボックス*/
  /*ラジオボタングラフィック*/
}
.radio:hover {
  font-weight: bold;
}
.radio:after {
  border-radius: 100%;
  border: 1px solid #aaa;
  left: 0;
}
.radio:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 4px;
  display: block;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #a3c3d9;
  content: '';
  opacity: 0;
}
input[type=radio]:checked + .radio {
  font-weight: bold;
}
input[type=radio]:checked + .radio:before {
  opacity: 1;
}

/*チェックボックス*/
.checkbox {
  /*背景ラベル*/
  display: block;
  padding: 4px 16px;
  border-radius: 20px;
  background-color: #f3f3f3;
  transition: all 0.2s linear;
  /*ホバー時 ラベル*/
  /*チェックボックス ボックス*/
  /*チェックグラフィック*/
  /*選択時の背景色*/
  /*選択時のチェックグラフィック*/
}
.checkbox:hover {
  background-color: #deeefa;
}
.checkbox:after {
  display: none;
}
.checkbox:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 16px;
  display: block;
  margin-top: -8px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: '';
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
input[type=checkbox]:checked + .checkbox {
  color: #fff;
  background-color: #a3c3d9;
  padding: 4px 16px 4px 34px;
}
input[type=checkbox]:checked + .checkbox:before {
  opacity: 1;
  z-index: 10;
}

/* =================================================
  ヘッダー
================================================= */
#header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background-color: #fff;
  box-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.1);
}
#header .logo {
  padding: 16px 0;
  line-height: 0;
  text-align: center;
}
#header .logo img {
  width: auto;
  height: 37px;
}

@media (max-width: 768px) {
  #header {
    height: 48px;
  }
  #header .logo {
    height: auto;
    padding: 10px 0;
  }
  #header .logo img {
    width: auto;
    height: 28px;
  }
}
#header-simple {
  background-color: #fff;
  box-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.1);
}
#header-simple .logo {
  padding: 16px 0;
  text-align: center;
}
#header-simple .logo img {
  display: block;
  width: 192px;
  height: 37px;
  margin: auto;
}

/* =================================================
  グローバルナビゲーション ボタン
================================================= */
#toggle,
#toggle + label {
  display: none;
}

@media (max-width: 768px) {
  #toggle {
    appearance: none;
    position: absolute;
    cursor: pointer;
    left: -100%;
    top: -100%;
  }

  #toggle + label {
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 16px;
    display: block;
    width: 32px;
    height: 32px;
    transition: all .3s ease;
    z-index: 11;
  }

  #toggle:checked + label {
    background-color: #ddd;
    border-radius: 4px;
    position: fixed;
  }

  #toggle + label:before,
  #toggle + label span,
  #toggle + label:after {
    content: "";
    position: absolute;
    left: 0;
    display: block;
    width: inherit;
    height: 4px;
    background-color: #4d4d4d;
    transition: all .3s ease;
  }

  #toggle + label:before {
    top: 4px;
  }

  #toggle + label span {
    top: 14px;
  }

  #toggle + label:after {
    bottom: 4px;
  }

  #toggle:checked + label:before {
    transform: translateY(10px) rotate(-45deg);
  }

  #toggle:checked + label span {
    opacity: 0;
  }

  #toggle:checked + label:after {
    transform: translateY(-10px) rotate(45deg);
  }

  #toggle + label + #gnavi {
    visibility: hidden;
    opacity: 0;
    transition: all .4s ease-out;
  }

  #toggle:checked + label + #gnavi {
    visibility: visible;
    opacity: 1;
    background-color: #fff;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
}
.scroll-prevent {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}

/* =================================================
  グローバルナビ
================================================= */
@media (max-width: 768px) {
  #gnavi {
    position: fixed;
    top: 48px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 48px);
    padding: 0 16px 16px;
    box-sizing: border-box;
    z-index: 10;
  }
}
#gnavi-contact {
  position: absolute;
  top: 16px;
  right: 24px;
}
#gnavi-contact .asset {
  display: none;
}
#gnavi-contact .btn-line {
  display: block;
}

@media (max-width: 768px) {
  #gnavi-contact {
    position: static;
    width: 100%;
    display: flex;
  }
  #gnavi-contact .asset {
    display: block;
    width: calc( ( 100% - 32px ) / 3 );
    text-align: center;
  }
  #gnavi-contact .asset + .asset {
    margin-left: 16px;
  }
  #gnavi-contact .asset a {
    display: block;
    font-size: 12px;
    font-size: 1.2rem;
    padding: 0;
  }
}
@media (max-width: 530px) {
  #gnavi-contact .asset svg {
    margin-right: 6px;
    width: 16px;
    height: 16px;
  }
}
#gnavi-sns {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  justify-content: left;
  align-items: center;
}

.gnavi-sns-label {
  display: none;
  margin: 0 3px 0 0;
  color: #a3a3a3;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
}

.gnavi-sns-icon {
  margin: 0 0 0 12px;
}
.gnavi-sns-icon svg {
  width: 20px;
  height: 20px;
  color: #666;
  fill: #666;
}

@media (max-width: 768px) {
  #gnavi-sns {
    position: static;
    top: initial;
    left: initial;
    width: 100%;
    margin: 16px auto 0;
    justify-content: center;
  }

  .gnavi-sns-label {
    display: block;
    font-weight: bold;
  }
}
#gnavi-main {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
#gnavi-main > li {
  margin: 0 16px;
  max-height: 68px;
}
#gnavi-main > li a:hover {
  text-decoration: none;
  color: inherit;
}
#gnavi-main > li > a {
  position: relative;
  display: block;
  padding: 32px 0 12px;
  text-align: center;
  line-height: 1.3;
  font-weight: normal;
  font-size: 14px;
  font-size: 1.4rem;
}
#gnavi-main > li > a {
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center 2px;
  text-align: center;
}
#gnavi-main > li.domestic > a {
  background-image: url(./img/domestic.svg);
}
#gnavi-main > li.destination > a {
  background-image: url(./img/destination02.svg);
}
#gnavi-main > li.weddingreport > a {
  background-image: url(./img/report.svg);
}
#gnavi-main > li.photo > a {
  background-image: url(./img/photo.svg);
}
#gnavi-main > li.dress > a {
  background-image: url(./img/dress.svg);
}
#gnavi-main > li.afterparty > a {
  background-image: url(./img/afterparty.svg);
}
#gnavi-main > li.aboutus > a {
  background-image: url(./img/aboutus.svg);
}

@media (min-width: 769px) and (max-width: 1024px) {
  #gnavi-main > li > a {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  #gnavi-main {
    display: block;
    width: 100%;
    border-top: 1px solid #ccc;
    margin-top: 16px;
    padding: 0;
  }
  #gnavi-main > li {
    height: auto;
    margin: 0;
    border-bottom: 1px solid #ccc;
  }
  #gnavi-main > li > a {
    padding: 16px 0;
    text-align: left;
    font-size: 12px;
    font-size: 1.2rem;
  }
  #gnavi-main > li > a {
    padding-left: 32px;
    background-size: 16px;
    background-position: 8px center;
  }
}
@media (min-width: 769px) {
  #gnavi-main > li:after {
    position: relative;
    content: '';
    display: block;
    height: 2px;
    background-color: #c9bd88;
    transform-origin: center;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    transform: scaleX(0);
    opacity: 0;
    z-index: 2;
  }
  #gnavi-main > li:hover:after {
    transform: scaleX(1) !important;
    opacity: 1 !important;
  }
  #gnavi-main > li.current-menu-item:after, #gnavi-main > li.current-menu-ancestor:after, #gnavi-main > li.current-menu-parent:after {
    transform: scaleX(1);
    opacity: 1;
  }

  #gnavi-main:hover > li.current-menu-item:after, #gnavi-main:hover > li.current-menu-ancestor:after, #gnavi-main:hover > li.current-menu-parent:after {
    transform: scaleX(0);
    opacity: 0;
  }
}
@media (max-width: 768px) {
  #gnavi-main > li > a:after {
    content: '';
    position: absolute;
    display: inline-block;
    top: 50%;
    width: 5px;
    height: 5px;
    margin-top: -3.5px;
    border-top: 2px solid #ccc;
    border-right: 2px solid #ccc;
    transform: rotate(45deg);
    right: 16px;
  }
}
.sub-menu {
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  margin-top: 2px;
  background-color: #f3f3f3;
  text-align: left;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-out;
}
.sub-menu-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.sub-menu-label {
  width: 23%;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.3;
  font-weight: normal;
}
.sub-menu-label:before {
  content: attr(data-label);
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
}
.sub-menu-list {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: left;
  width: 75%;
  margin: 0 0 0 24px;
  padding: 0;
  list-style: none;
}
.sub-menu-list li {
  width: 33.33%;
}
.sub-menu-list li a {
  position: relative;
  display: block;
  padding: 8px 16px 8px 32px;
  line-height: 1.3;
  transition: background-color 0.3s ease-out;
  border-radius: 5px;
}
.sub-menu-list li a:before {
  content: '';
  position: absolute;
  display: inline-block;
  top: 50%;
  width: 5px;
  height: 5px;
  margin-top: -3.5px;
  border-top: 2px solid #ad9c4f;
  border-right: 2px solid #ad9c4f;
  transform: rotate(45deg);
  transition: left 0.3s ease-out;
  left: 8px;
}
.sub-menu-list li a:hover:before {
  left: 16px;
}
.sub-menu-list li a:after {
  font-size: 11px;
  font-size: 1.1rem;
  content: attr(title);
  display: block;
  font-weight: normal;
  color: #999;
  text-transform: uppercase;
}
.sub-menu-list li a:hover {
  background-color: rgba(201, 186, 139, 0.3);
}

#gnavi-main > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  box-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .sub-menu {
    display: none;
    position: static;
    visibility: visible;
    opacity: 1;
    margin: 0 16px 16px;
    width: auto;
  }
  .sub-menu-inner {
    display: block;
    padding: 0;
  }
  .sub-menu-label {
    display: none;
  }
  .sub-menu-list {
    display: block;
    width: auto;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .sub-menu-list li {
    width: inherit;
  }
  .sub-menu-list li a {
    display: block;
    padding: 8px 16px;
    border-radius: 0;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .sub-menu-list li a:before {
    content: '';
    position: absolute;
    display: inline-block;
    top: 50%;
    width: 5px;
    height: 5px;
    margin-top: -3.5px;
    border-top: 2px solid #ad9c4f;
    border-right: 2px solid #ad9c4f;
    transform: rotate(45deg);
    transition: left 0.3s ease-out;
    right: 16px;
    left: auto;
  }
  .sub-menu-list li a:hover:before {
    left: auto;
  }
  .sub-menu-list li a:after {
    content: " - " attr(title);
    font-weight: normal;
    font-size: 8px;
    font-size: 0.8rem;
    color: #999;
  }
}
/* =================================================
  フッター
================================================= */
#footer {
  font-size: 14px;
  font-size: 1.4rem;
}
#footer .navi {
  padding: 32px 0;
  background-color: #f3f3f3;
}
#footer .navi .inner, #footer .navi .sub-menu-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
#footer .navi .logo {
  width: 192px;
}
#footer .navi .logo a img {
  width: 192px;
  height: auto;
}
#footer .navi .navi-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer .navi .navi-list > li {
  border-bottom: 1px solid #ccc;
}
#footer .navi .navi-list > li:first-child {
  border-top: 1px solid #ccc;
}
#footer .navi .navi-list > li > a {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: normal;
  color: #c9bd88;
  text-decoration: none;
  padding: 8px 0;
}
#footer .navi .navi-list > li > a:before {
  content: attr(title);
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  color: #000;
}
#footer .navi .navi-list > li ul {
  padding-bottom: 8px;
  list-style: none;
  padding-left: 4px;
}
#footer .navi .navi-list > li ul li {
  font-size: 12px;
  font-size: 1.2rem;
  position: relative;
  padding-left: 14px;
}
#footer .navi .navi-list > li ul li:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-left: 6px solid #ad9c4f;
}
@media (min-width: 531px) and (max-width: 768px) {
  #footer .navi .inner, #footer .navi .sub-menu-inner {
    display: block;
    overflow: hidden;
  }
  #footer .navi .logo {
    width: auto;
    margin-bottom: 24px;
    text-align: center;
  }
  #footer .navi .navi-list {
    float: left;
    width: calc( (100% - 24px * 2) / 3);
    box-sizing: border-box;
  }
  #footer .navi .navi-list + .navi-list {
    margin-left: 24px;
  }
}
@media (max-width: 530px) {
  #footer .navi {
    padding: 0;
  }
  #footer .navi .inner, #footer .navi .sub-menu-inner {
    display: block;
  }
  #footer .navi .logo {
    padding: 24px 0;
    text-align: center;
  }
  #footer .navi .logo a img {
    width: auto;
    height: 30px;
  }
  #footer .navi .navi-list > li {
    border-top: 1px solid #ccc;
    border-bottom: none;
  }
  #footer .navi .navi-list > li > a {
    padding: 8px 16px;
    display: block;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: normal;
    color: #c9bd88;
    text-decoration: none;
  }
  #footer .navi .navi-list > li > a:before {
    content: attr(title);
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    color: #000;
  }
  #footer .navi .navi-list > li ul {
    padding-bottom: 16px;
    padding-left: 16px;
  }
  #footer .navi .navi-list > li ul li {
    font-size: 12px;
    font-size: 1.2rem;
    position: relative;
    padding-left: 14px;
    margin: 8px 0;
  }
  #footer .navi .navi-list > li ul li:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-left: 6px solid #ad9c4f;
  }
}
#footer .sub_navi-list {
  display: flex;
  flex-flow: wrap row;
  align-items: stretch;
  justify-content: center;
  list-style: none;
  padding: 0;
}
#footer .sub_navi-list li {
  font-size: 12px;
  font-size: 1.2rem;
  position: relative;
  padding-left: 14px;
  margin-top: 8px;
}
#footer .sub_navi-list li:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-left: 6px solid #ad9c4f;
}
#footer .sub_navi-list li + li {
  margin-left: 24px;
}
@media (max-width: 530px) {
  #footer .sub_navi-list {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0 16px;
  }
  #footer .sub_navi-list li + li {
    margin-left: 0;
  }
}
#footer .footer-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
}
#footer .footer-link div + div {
  margin-left: 48px;
}
#footer .footer-link div img {
  max-width: 160px;
  max-height: 80px;
}
@media (max-width: 768px) {
  #footer .footer-link {
    display: block;
    margin: 24px;
  }
  #footer .footer-link div {
    width: 30.333%;
    display: inline-block;
    padding-left: 1.5%;
    padding-right: 1.5%;
    padding-bottom: 5px;
    text-align: center;
  }
  #footer .footer-link div img {
    max-width: 100%;
    max-height: 50px;
  }
}
@media (max-width: 530px) {
  #footer .footer-link {
    margin: 16px;
  }
}
#footer #copyright {
  font-size: 12px;
  font-size: 1.2rem;
  margin: 16px 0;
  text-align: center;
}
@media (max-width: 768px) {
  #footer #copyright {
    font-size: 10px;
    font-size: 1rem;
  }
}

/* =================================================
  共通
================================================= */
main {
  padding-top: 111px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  main {
    padding-top: 107px;
  }
}
@media (min-width: 531px) and (max-width: 768px) {
  main {
    padding-top: 48px;
  }
}
@media (max-width: 530px) {
  main {
    padding: 48px 16px 0;
  }

  main#index {
    padding: 48px 0 0;
  }
}
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  outline: 0;
}

p + p {
  margin-top: 16px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: #222;
  text-decoration: none;
  transition: 0.3s color;
}
a:hover {
  color: #ad9c4f;
  text-decoration: none;
}

.alignnone {
  text-align: none;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.ttl {
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.3;
  font-weight: normal;
  margin: 0 auto 24px;
}
.ttl:before {
  font-size: 26px;
  font-size: 2.6rem;
  content: attr(data-en);
  display: block;
  text-transform: uppercase;
}

@media (max-width: 530px) {
  .ttl {
    margin: 0 auto 16px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .ttl:before {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.label {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: normal;
  color: #c9bd88;
  text-decoration: none;
}
.label:before {
  content: attr(data-en);
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  color: #000;
}

.inner, .sub-menu-inner {
  max-width: 1224px;
  margin: auto;
}

@media (min-width: 531px) and (max-width: 1024px) {
  .inner, .sub-menu-inner {
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
  }
}
@media (max-width: 530px) {
  .inner, .sub-menu-inner {
    box-sizing: border-box;
  }
}
.box-padding01 {
  padding-top: 40px;
  padding-bottom: 48px;
}

@media (max-width: 530px) {
  .box-padding01 {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.page-sec {
  margin-top: 36px;
  margin-bottom: 36px;
}

.page-header {
  padding-top: 36px;
}
.page-header .introduction {
  text-align: center;
}
.page-header .description {
  text-align: center;
  margin-bottom: 36px;
  font-size: 14px;
  font-size: 1.4rem;
}
.page-header .description strong {
  font-size: 18px;
  font-size: 1.8rem;
}

.page-subheader {
  text-align: center;
}
.page-subheader .ttl {
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 8px solid #f3f3f3;
}
.page-subheader .ttl:before {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}
.page-subheader .description {
  text-align: center;
  margin-bottom: 36px;
  font-size: 14px;
  font-size: 1.4rem;
}
.page-subheader .description strong {
  font-size: 18px;
  font-size: 1.8rem;
}

.page-body figure {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 530px) {
  .page-header {
    padding-top: 24px;
  }
  .page-header .description {
    margin-bottom: 12px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .page-header .description strong {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.btn_container {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.btn_container .btn {
  margin: 0 8px;
}
.btn_container .btn:first-child {
  margin-left: 0;
}
.btn_container .btn:last-child {
  margin-right: 0;
}

@media (max-width: 530px) {
  .btn_container .btn {
    margin: 0 4px;
  }
}
.btn > button {
  cursor: pointer;
  font-family: inherit;
  min-width: 140px;
  max-width: 100%;
}
.btn > button .icon {
  font-size: 18px;
  font-size: 1.8rem;
  padding-right: 8px;
  color: #aaa;
  vertical-align: middle;
}

.btn > button,
.btn > a {
  font-size: 14px;
  font-size: 1.4rem;
  display: inline-block;
  background-color: #eeeeee;
  min-height: 40px;
  line-height: 40px;
  padding: 0 16px;
  vertical-align: middle;
  box-sizing: border-box;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}
.btn > button:hover,
.btn > a:hover {
  background-color: #fff;
  border: 1px solid #ccc;
  color: #666;
}

.btn.primary > a {
  background-color: #c9bd88;
  color: #fff;
  border-color: #c9bd88;
}
.btn.primary > a:hover {
  background-color: #fff;
  border: 1px solid #c9bd88;
  color: #c9bd88;
}

@media (max-width: 530px) {
  .btn > a {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 0 8px;
  }
}
.btn svg {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
}

.btn-access svg {
  fill: #756e4f;
}

.btn-line svg {
  fill: #00b900;
}

.btn-online svg {
  fill: #222;
}

.salon_info-list {
  display: flex;
  flex-flow: wrap row;
  gap: 24px;
}
.salon_info-list .asset {
  width: 392px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px dotted #ccc;
}
.salon_info-list .salon-img {
  width: inherit;
}
.salon_info-list .salon-img img {
  width: auto;
}
.salon_info-list .salon-name {
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 16px;
}
.salon_info-list .salon-address {
  font-size: 14px;
  font-size: 1.4rem;
  min-height: 5em;
  text-align: left;
}
.salon_info-list dl.salon-data {
  font-size: 14px;
  font-size: 1.4rem;
  overflow: hidden;
  margin-bottom: 0;
}
.salon_info-list dl.salon-data dt {
  float: left;
  width: 5em;
}
.salon_info-list dl.salon-data dd {
  margin-left: 5em;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .salon_info-list {
    display: block;
  }
  .salon_info-list .asset {
    width: auto;
    overflow: hidden;
  }
  .salon_info-list .salon-img {
    float: left;
    margin-right: 24px;
    width: 40vw;
  }
}
@media (min-width: 531px) and (max-width: 768px) {
  .salon_info-list {
    display: block;
  }
  .salon_info-list .asset {
    width: auto;
    overflow: hidden;
  }
  .salon_info-list .salon-img {
    float: left;
    margin-right: 24px;
    width: 40vw;
  }
}
@media (max-width: 530px) {
  .salon_info-list {
    padding: 0 16px;
  }
}
.wedding_desks-img {
  margin-top: 24px;
}

.salon_info-btn,
.wedding_desks-btn {
  margin-top: 36px;
}

.salon_info p,
.wedding_desks p {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  font-size: 1.4rem;
}

@media (max-width: 530px) {
  .salon_info-btn,
  .wedding_desks-btn {
    margin: 16px;
    overflow: hidden;
    display: block;
  }
  .salon_info-btn .btn,
  .wedding_desks-btn .btn {
    text-align: center;
  }
  .salon_info-btn .btn a,
  .wedding_desks-btn .btn a {
    width: 100%;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .salon_info-btn .btn-access,
  .wedding_desks-btn .btn-access {
    width: 100%;
    margin: auto;
  }
  .salon_info-btn .btn-line,
  .wedding_desks-btn .btn-line {
    float: left;
    width: 40%;
    margin-top: 16px;
    margin-left: 0;
  }
  .salon_info-btn .btn-online,
  .wedding_desks-btn .btn-online {
    float: right;
    width: 55%;
    margin-top: 16px;
    margin-right: 0;
  }

  .salon_info p,
  .wedding_desks p {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.swiper-parent {
  position: relative;
}
.swiper-parent .swiper-container {
  padding-bottom: 48px !important;
}
.swiper-parent .swiper-button-next,
.swiper-parent .swiper-button-prev {
  display: block;
  color: #666;
  transition: all .2s;
}
.swiper-parent .swiper-button-next:hover,
.swiper-parent .swiper-button-prev:hover {
  color: #ad9c4f;
}
.swiper-parent .swiper-pagination-bullet-active {
  background: #ad9c4f;
}

/* =================================================
  個別
================================================= */
/* index ======================================== */
#index_movie {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  width: 100vw;
  height: calc(100vw * 81 / 192);
}
#index_movie-mask {
  position: absolute;
  z-index: 100;
  width: inherit;
  height: inherit;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
}
#index_movie-ttl, #index_movie-description {
  text-align: center;
  color: #fff;
}
#index_movie-ttl {
  font-size: 30px;
  font-size: 3rem;
  text-shadow: 0 1px 5px black;
  font-weight: normal;
}
#index_movie-description {
  font-size: 14px;
  font-size: 1.4rem;
  text-shadow: 0 1px 5px black;
}
#index_movie-btn {
  margin-top: 24px;
}

#yt_player_wrap {
  position: absolute;
  z-index: -2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: calc(100vw * 81 / 192);
  overflow: hidden;
}

#yt_player {
  position: relative;
  bottom: -4px;
  width: 100%;
  height: calc(100vw * 116 / 192);
}

@media (max-width: 530px) {
  #index_movie {
    display: flex;
    flex-flow: wrap column;
    height: auto;
  }
  #index_movie-mask {
    display: none;
  }

  #yt_player_wrap {
    order: 1;
    position: relative;
    z-index: -2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: calc(100vw * 81 / 192);
    overflow: hidden;
  }

  #yt_player {
    position: relative;
    bottom: 0;
  }
}
#index_test-ttl, #index_test-description {
  text-align: center;
}
#index_test-ttl {
  font-size: 30px;
  font-size: 3rem;
  font-weight: normal;
}
#index_test-description {
  font-size: 14px;
  font-size: 1.4rem;
}
#index_test-btn {
  margin-top: 24px;
}
@media (max-width: 530px) {
  #index_test {
    background-color: #f3f3f3;
  }
  #index_test-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
  #index_test-description {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.service {
  background-color: #f3f3f3;
}

.service_list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}
.service_list-asset + .service_list-asset:not(:nth-child(4)) {
  margin-left: 24px;
}
.service_list-asset {
  width: calc( ( 100% - 48px )/ 3 );
  margin-top: 24px;
  background-color: #fff;
}
.service_list-asset .asset-head {
  position: relative;
  padding: 20px 36px 20px 20px;
}
.service_list-asset .asset-head:after {
  content: '';
  position: absolute;
  display: inline-block;
  top: 50%;
  width: 9px;
  height: 9px;
  margin-top: -5.5px;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  transform: rotate(45deg);
  right: 16px;
}
.service_list-asset .asset-head .txt {
  font-size: 12px;
  font-size: 1.2rem;
}
.service_list-asset .asset-body img {
  width: 392px;
  height: 240px;
}

@media (min-width: 531px) and (max-width: 1224px) {
  .service_list-asset .asset-body img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 530px) {
  .service {
    background-color: initial;
  }

  .service_list {
    display: block;
  }
  .service_list-asset + .service_list-asset:not(:nth-child(4)) {
    margin-left: 0;
  }
  .service_list-asset {
    width: auto;
    margin-top: 0;
  }
  .service_list-asset .asset-head {
    padding: 16px;
  }
  .service_list-asset .asset-head .label {
    color: #231815;
    font-size: 17px;
    font-size: 1.7rem;
  }
  .service_list-asset .asset-head .label:before {
    display: none;
  }
  .service_list-asset .asset-head .label:after {
    padding-left: 8px;
    content: attr(data-en);
    font-size: 12px;
    font-size: 1.2rem;
    color: #c9bd88;
  }
  .service_list-asset .asset-head .txt {
    display: none;
  }
  .service_list-asset .asset-body img {
    width: 100%;
    height: 120px;
    object-fit: cover;
  }
  .service_list-wedding .asset-body img {
    object-position: 50% 74%;
  }
  .service_list-photo .asset-body img {
    object-position: 50% 80%;
  }
  .service_list-dress .asset-body img {
    object-position: 50% 10%;
  }
  .service_list-afterparty .asset-body img {
    object-position: 50% 80%;
  }
  .service_list-travel .asset-body img {
    object-position: 50% 75%;
  }
}
.news {
  background-color: #f3f3f3;
}
.news-asset {
  width: auto;
}
.news-asset img {
  display: inline-block;
  border: 1px solid #ccc;
  background-color: #f3f3f3;
  width: 100%;
  height: auto;
  box-sizing: border-box;
}
.news-asset .cat,
.news-asset time {
  display: block;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.6;
}
.news-asset .cat {
  margin-top: 8px;
  color: #a3c3d9;
}
.news-asset time {
  color: #8f8f8f;
}
.news-asset .label {
  font-size: 14px;
  font-size: 1.4rem;
  color: inherit;
}
.news .swiper-button-prev {
  left: -50px;
  right: auto;
}
.news .swiper-button-next {
  right: -50px;
  left: auto;
}
@media (max-width: 1378px) {
  .news .swiper-button-prev,
  .news .swiper-button-next {
    display: none;
  }
}

.report {
  text-align: center;
  background: transparent url(./img/index/report01.jpg) center 30% no-repeat;
  background-size: cover;
  color: #fff;
}
.report-mask {
  background-color: rgba(0, 0, 0, 0.5);
}
.report p {
  margin: 24px 0;
  text-shadow: 0px 0px 20px #000;
}
.report p br {
  display: none;
}

@media (max-width: 530px) {
  .report p {
    font-size: 11px;
    font-size: 1.1rem;
    margin: 8px 0 0;
  }
  .report p br {
    display: block;
  }
}
.banner div {
  text-align: center;
}
.banner div + div {
  margin-top: 36px;
}

/* common ======================================== */
.search_tag {
  text-align: center;
}
.search_tag-label {
  font-size: 14px;
  font-size: 1.4rem;
  margin: 16px 0;
}
.search_tag-label .icon {
  font-size: 18px;
  font-size: 1.8rem;
  padding-right: 5px;
  color: #a3c3d9;
  vertical-align: middle;
}
.search_tag-list {
  list-style: none;
  margin: 4px auto 16px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}
.search_tag-list li {
  margin: 12px 6px 0;
}
.search_tag-list li label.checkbox {
  font-size: 12px;
  font-size: 1.2rem;
}

@media (min-width: 531px) and (max-width: 768px) {
  .search_tag-list li {
    margin: 4px;
  }
  .search_tag-list li label.checkbox {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media (max-width: 530px) {
  .search_tag-list li {
    margin: 4px;
  }
  .search_tag-list li label.checkbox {
    font-size: 10px;
    font-size: 1rem;
  }
}
.option-btn {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
}
.option-btn .asset {
  width: 200px;
  margin: 0 24px;
}
.option-btn .asset .img {
  display: flex;
  justify-content: center;
  border-radius: 200px;
  width: 200px;
  height: 200px;
  overflow: hidden;
}
.option-btn .asset .img img {
  max-width: initial;
  width: auto;
  height: 200px;
}
.option-btn .asset .btn {
  width: 200px;
  margin-top: 24px;
  text-align: center;
}
.option-btn .asset .btn a {
  margin: auto;
}

@media (min-width: 531px) and (max-width: 1024px) {
  .option-btn {
    justify-content: space-between;
  }
  .option-btn .asset {
    width: calc( (100vw - 120px) / 4 );
    margin: 0;
  }
  .option-btn .asset .img {
    display: flex;
    justify-content: center;
    border-radius: 200px;
    width: calc( (100vw - 120px) / 4 );
    height: calc( (100vw - 120px) / 4 );
    overflow: hidden;
  }
  .option-btn .asset .img img {
    max-width: initial;
    width: auto;
    height: calc( (100vw - 120px) / 4 );
  }
  .option-btn .asset .btn {
    width: 100%;
  }
  .option-btn .asset .btn a {
    width: inherit;
    font-size: 10px;
    font-size: 1rem;
  }
}
@media (max-width: 530px) {
  .option-btn {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .option-btn .asset {
    width: calc( (100vw - 48px) / 2 );
    margin: 0;
  }
  .option-btn .asset:nth-child(3), .option-btn .asset:nth-child(4) {
    margin-top: 24px;
  }
  .option-btn .asset .img {
    width: calc( (100vw - 48px) / 2 );
    height: calc( (100vw - 48px) / 2 );
  }
  .option-btn .asset .img img {
    height: calc( (100vw - 48px) / 2 );
  }
  .option-btn .asset .btn {
    width: 100%;
    margin-top: 16px;
  }
  .option-btn .asset .btn a {
    font-size: 10px;
    font-size: 1rem;
  }
}
/* wedding ======================================== */
.wedding-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  max-width: 1024px;
  margin: auto;
}
.wedding-list .list-asset {
  max-width: 496px;
  margin-bottom: 44px;
  border: 1px solid #ccc;
  transition: all .4s ease;
}
.wedding-list .list-asset .img {
  width: 496px;
  height: 240px;
  max-width: 496px;
}
.wedding-list .list-asset .img img {
  width: inherit;
  height: auto;
}
.wedding-list .list-asset .head {
  position: relative;
  padding: 16px 48px 16px 16px;
  border-top: none;
}
.wedding-list .list-asset .head:after {
  content: '';
  position: absolute;
  display: inline-block;
  top: 50%;
  width: 9px;
  height: 9px;
  margin-top: -5.5px;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  transform: rotate(45deg);
  right: 17px;
}
.wedding-list .list-asset .head .excerpt {
  margin-top: 8px;
  font-size: 12px;
  font-size: 1.2rem;
}
.wedding-list .list-asset .img {
  overflow: hidden;
}
.wedding-list .list-asset .img img {
  transition: all .4s ease;
}
.wedding-list .list-asset:hover {
  box-shadow: 0 0 0 8px #f3f3f3;
}
.wedding-list .list-asset:hover .img img {
  transform: scale(1.1);
}

@media (min-width: 531px) and (max-width: 1024px) {
  .wedding-list {
    padding: 24px;
  }
  .wedding-list .list-asset {
    width: calc(50% - 12px);
    margin: 12px 0 24px;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }
  .wedding-list .list-asset .img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 530px) {
  .wedding-list {
    display: block;
  }
  .wedding-list .list-asset {
    width: 100%;
    margin-bottom: 16px;
  }
  .wedding-list .list-asset .img {
    width: 100%;
    height: auto;
  }
  .wedding-list .list-asset .head {
    padding: 8px;
  }
  .wedding-list .list-asset .head:after {
    display: none;
  }
  .wedding-list .list-asset .head .excerpt {
    margin-top: 4px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}
/* wedding_area ======================================== */
.wedding_area-list {
  max-width: 1024px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}
.wedding_area-list .list-asset {
  max-width: 496px;
  margin-bottom: 44px;
  border: 1px solid #ccc;
  transition: all .4s ease;
}
.wedding_area-list .list-asset .img {
  overflow: hidden;
}
.wedding_area-list .list-asset .img img {
  transition: all .4s ease;
}
.wedding_area-list .list-asset:hover {
  box-shadow: 0 0 0 8px #f3f3f3;
}
.wedding_area-list .list-asset:hover .img img {
  transform: scale(1.1);
}
.wedding_area-list .list-asset .img {
  width: 496px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wedding_area-list .list-asset .img img {
  width: 100%;
}
.wedding_area-list .list-asset .head {
  padding: 16px;
  text-align: center;
}
.wedding_area-list .list-asset .head ul.tag {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 11px;
  font-size: 1.1rem;
  color: #fff;
}
.wedding_area-list .list-asset .head ul.tag li {
  margin: 8px 4px 0;
  padding: 4px 8px;
  background-color: #a3c3d9;
  border-radius: 20px;
  line-height: 1;
}

@media (min-width: 531px) and (max-width: 1024px) {
  .wedding_area-list {
    padding: 24px;
  }
  .wedding_area-list .list-asset {
    width: calc(50% - 12px);
    margin: 12px 0 24px;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }
  .wedding_area-list .list-asset .img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 530px) {
  .wedding_area-list {
    display: block;
  }
  .wedding_area-list .list-asset {
    margin-bottom: 22px;
  }
  .wedding_area-list .list-asset .img {
    width: 100%;
    height: auto;
  }
  .wedding_area-list .list-asset .head {
    padding: 8px;
  }
  .wedding_area-list .list-asset .head ul.tag {
    font-size: 10px;
    font-size: 1rem;
  }
}
.wedding_area-report {
  text-align: center;
}

.wedding_area-report-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  max-width: 832px;
  margin: auto;
}
.wedding_area-report-list .list-asset {
  width: 100%;
  height: 100%;
  max-width: 184px;
  max-height: 184px;
  margin: 12px;
}
.wedding_area-report-list .list-asset a {
  display: block;
  border-radius: 10px;
}
.wedding_area-report-list .list-asset a img {
  width: inherit;
  height: inherit;
}
.wedding_area-report-list .list-asset a {
  position: relative;
  width: inherit;
  height: inherit;
  overflow: hidden;
  transition: all 0.4s ease;
}
.wedding_area-report-list .list-asset a img {
  transition: all 0.4s ease;
  transform: scale(1);
}
.wedding_area-report-list .list-asset a .mask {
  display: table;
  position: absolute;
  width: inherit;
  height: inherit;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.4s ease;
}
.wedding_area-report-list .list-asset a .mask .caption {
  display: table-cell;
  padding: 8px;
  padding-top: 20px;
  vertical-align: middle;
  font-size: 12px;
  font-size: 1.2rem;
  color: #fff;
  transition: inherit;
}
.wedding_area-report-list .list-asset a:hover {
  box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.1);
}
.wedding_area-report-list .list-asset a:hover img {
  transform: scale(1.1);
}
.wedding_area-report-list .list-asset a:hover .mask {
  opacity: 1;
}
.wedding_area-report-list .list-asset a:hover .mask .caption {
  padding-top: 8px;
}

.wedding_area-report-btn {
  margin-top: 24px;
}

@media (min-width: 531px) and (max-width: 768px) {
  .wedding_area-report-list {
    width: auto;
    margin: auto;
    padding: 12px;
  }
  .wedding_area-report-list .list-asset {
    width: calc(25vw - 30px);
    height: calc(25vw - 30px);
  }

  .wedding_area-report-btn {
    margin-top: 24px;
  }
}
@media (max-width: 530px) {
  .wedding_area-report-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    width: auto;
    margin: 0 -8px;
  }
  .wedding_area-report-list .list-asset {
    width: 50%;
    height: auto;
    margin: 0;
    padding: 8px;
    box-sizing: border-box;
  }
  .wedding_area-report-list .list-asset a {
    width: 100%;
    height: inherit;
  }
  .wedding_area-report-list .list-asset a img {
    width: 100%;
    height: auto;
  }
  .wedding_area-report-list .list-asset a .mask {
    height: 100%;
  }

  .wedding_area-report-btn {
    margin-top: 24px;
  }
}
.wedding_area-photo_wedding {
  text-align: center;
}
.wedding_area-photo_wedding-gallery {
  width: 100%;
  overflow: hidden;
}
.wedding_area-photo_wedding-gallery .gallery {
  width: 10000px;
  margin-top: 24px;
}
.wedding_area-photo_wedding-gallery .gallery-slide {
  float: left;
  width: 160px;
  height: 160px;
  margin-left: 1px;
}
.wedding_area-photo_wedding-gallery .gallery-layer {
  overflow: hidden;
  width: inherit;
  height: inherit;
}
.wedding_area-photo_wedding-gallery .gallery-layer img {
  width: auto;
  height: auto;
  min-width: 160px;
  min-height: 160px;
}
.wedding_area-photo_wedding-btn {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-top: 36px;
}

@media (max-width: 530px) {
  .wedding_area-photo_wedding .description {
    font-size: 10px;
    font-size: 1rem;
  }
  .wedding_area-photo_wedding-gallery {
    width: 100vw;
    overflow: hidden;
    margin: 0 -24px;
  }
  .wedding_area-photo_wedding-gallery .gallery-slide {
    width: 25vw;
    height: 25vw;
  }
  .wedding_area-photo_wedding-gallery .gallery-slide img {
    min-width: initial;
    min-height: initial;
  }
  .wedding_area-photo_wedding-btn {
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin-top: 16px;
  }
}
/* wedding_detail ======================================== */
.wedding_detail-slide {
  max-width: 1016px;
  max-height: 100vh;
  margin: auto;
  overflow: hidden;
  text-align: center;
}
.wedding_detail-slide img {
  width: 1016px;
}

@media (min-width: 531px) and (max-width: 768px) {
  .wedding_detail-slide {
    max-width: auto;
    width: 100%;
    max-height: auto;
  }
  .wedding_detail-slide img {
    top: 0;
  }
}
@media (max-width: 530px) {
  .wedding_detail-slide {
    max-height: auto;
    margin: 0 -24px;
    position: static;
  }
  .wedding_detail-slide img {
    position: static;
    top: 0;
  }
}
.wedding_detail-description {
  max-width: 1016px;
  text-align: center;
}
.wedding_detail-description p {
  font-size: 14px;
  font-size: 1.4rem;
}
.wedding_detail-description p + p {
  margin: 24px 0 0;
}
.wedding_detail-description p strong {
  font-size: 24px;
  font-size: 2.4rem;
}

@media (max-width: 530px) {
  .wedding_detail-description p {
    margin: 8px 0 0;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .wedding_detail-description p + p {
    margin: 8px 0 0;
  }
  .wedding_detail-description p strong {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.wedding_detail-overview {
  text-align: center;
}
.wedding_detail-overview p {
  margin: 12px 0 0;
  font-size: 14px;
  font-size: 1.4rem;
}
.wedding_detail-overview p strong {
  font-size: 18px;
  font-size: 1.8rem;
}
.wedding_detail-overview .overview-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}
.wedding_detail-overview .overview-list.odd .asset:last-child {
  width: 800px;
}
.wedding_detail-overview .overview-list.odd .asset:last-child .img {
  width: auto;
  height: auto;
}
.wedding_detail-overview .overview-list.odd .asset:last-child .img img {
  width: auto;
  height: auto;
}
.wedding_detail-overview .overview-list .asset {
  width: 496px;
  margin-top: 24px;
}
.wedding_detail-overview .overview-list .asset:nth-child(2n) {
  margin-left: 24px;
}
.wedding_detail-overview .overview-list .asset .img img {
  width: inherit;
  height: auto;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .wedding_detail-overview .overview-list.odd .asset:last-child {
    max-width: 100%;
  }
  .wedding_detail-overview .overview-list .asset {
    width: calc( 50% - 12px );
  }
}
@media (min-width: 531px) and (max-width: 768px) {
  .wedding_detail-overview .overview-list .asset {
    width: 100%;
  }
  .wedding_detail-overview .overview-list .asset:nth-child(2n) {
    margin-left: 0;
  }
  .wedding_detail-overview .overview-list .asset .img {
    width: 100%;
  }
}
@media (max-width: 530px) {
  .wedding_detail-overview {
    text-align: left;
  }
  .wedding_detail-overview .overview-list {
    display: block;
  }
  .wedding_detail-overview .overview-list.odd .asset:last-child {
    width: 100%;
  }
  .wedding_detail-overview .overview-list.odd .asset:last-child .img {
    width: auto;
    height: auto;
  }
  .wedding_detail-overview .overview-list .asset {
    width: 100%;
    margin-top: 24px;
  }
  .wedding_detail-overview .overview-list .asset:nth-child(2n) {
    margin-left: 0;
  }
  .wedding_detail-overview .overview-list .asset .img {
    width: auto;
    height: auto;
  }
}
.wedding_detail-gallery {
  width: 1016px;
  margin: auto;
}
.wedding_detail-gallery .gallery {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: left;
  margin: 0 -12px;
}
.wedding_detail-gallery .gallery-slide {
  width: 183px;
  height: 183px;
  margin: 8px 12px;
}
.wedding_detail-gallery .gallery-layer {
  width: inherit;
  height: inherit;
}
.wedding_detail-gallery .gallery-layer a {
  width: inherit;
  height: inherit;
  display: block;
  transition: all 0.4s ease;
  overflow: hidden;
}
.wedding_detail-gallery .gallery-layer a img {
  transition: all 0.4s ease;
  transform: scale(1);
}
.wedding_detail-gallery .gallery-layer a:hover {
  box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.1);
}
.wedding_detail-gallery .gallery-layer a:hover img {
  transform: scale(1.1);
}

@media (min-width: 769px) and (max-width: 1024px) {
  .wedding_detail-gallery {
    width: auto;
    margin: 0;
  }
  .wedding_detail-gallery .gallery {
    margin: 0 12px;
  }
  .wedding_detail-gallery .gallery-slide {
    width: calc( ( 100vw - 144px ) / 5 );
    height: calc( ( 100vw - 144px ) / 5 );
    margin: 12px;
  }
}
@media (min-width: 531px) and (max-width: 768px) {
  .wedding_detail-gallery {
    width: auto;
    margin: 0;
  }
  .wedding_detail-gallery .gallery {
    margin: 0 12px;
  }
  .wedding_detail-gallery .gallery-slide {
    width: calc( ( 100vw - 120px ) / 4 );
    height: calc( ( 100vw - 120px ) / 4 );
    margin: 12px;
  }
}
@media (max-width: 530px) {
  .wedding_detail-gallery {
    width: auto;
    margin: 0 -8px;
  }
  .wedding_detail-gallery .gallery {
    margin: 0;
  }
  .wedding_detail-gallery .gallery-slide {
    width: calc( ( 100vw - 64px ) / 3 );
    height: calc( ( 100vw - 64px ) / 3 );
    margin: 8px;
  }
}
.wedding_detail-plan {
  text-align: center;
}
.wedding_detail-plan-name {
  margin: 24px 0;
}
.wedding_detail-plan-content {
  width: 806px;
  margin: auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.wedding_detail-plan-content .img {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  width: 392px;
}
.wedding_detail-plan-content .body {
  width: 390px;
  margin-left: 24px;
}
.wedding_detail-plan-content .body .price {
  padding: 16px 0;
  background-color: #f3f3f3;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
}
.wedding_detail-plan-content .body .btn {
  margin-top: 24px;
}
.wedding_detail-plan-service {
  width: 806px;
  margin: 36px auto 0;
  padding: 24px;
  background-color: #f3f3f3;
  text-align: left;
  box-sizing: border-box;
}
.wedding_detail-plan-service h4 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
}
.wedding_detail-plan-service .service-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.wedding_detail-plan-service .service-list li {
  position: relative;
  width: calc(50% - 1.5em);
  margin: 8px 0 0 1.5em;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.6em;
}
.wedding_detail-plan-service .service-list li:before {
  content: '●';
  position: absolute;
  top: 0;
  left: -2em;
  padding-right: 0;
  color: #c9bd88;
  font-size: 8px;
  font-size: 0.8rem;
}

@media (min-width: 531px) and (max-width: 768px) {
  .wedding_detail-plan-content {
    width: 100%;
  }
  .wedding_detail-plan-content .img {
    width: 50%;
  }
  .wedding_detail-plan-content .body {
    width: calc(50% - 24px);
  }
  .wedding_detail-plan-service {
    width: 100%;
  }
}
@media (max-width: 530px) {
  .wedding_detail-plan-name {
    margin: 16px 0;
  }
  .wedding_detail-plan-content {
    width: 100%;
    display: block;
  }
  .wedding_detail-plan-content .img {
    width: inherit;
  }
  .wedding_detail-plan-content .img .asset {
    width: calc(50% - 2px);
  }
  .wedding_detail-plan-content .img .asset:before {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .wedding_detail-plan-content .body {
    width: auto;
    margin: 16px 0 0;
  }
  .wedding_detail-plan-content .body .price {
    width: 80%;
    margin: auto;
    padding: 8px 0;
    font-size: 24px;
    font-size: 2.4rem;
  }
  .wedding_detail-plan-content .body .btn {
    margin-top: 16px;
  }
  .wedding_detail-plan-service {
    width: auto;
    margin: 16px auto 0;
  }
  .wedding_detail-plan-service h4 {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .wedding_detail-plan-service .service-list {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
  }
  .wedding_detail-plan-service .service-list li {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.wedding_detail-report {
  text-align: center;
}
.wedding_detail-report-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  width: 832px;
  margin: auto;
}
.wedding_detail-report-list .list-asset {
  width: 184px;
  height: 184px;
  margin: 12px;
}
.wedding_detail-report-list .list-asset a {
  display: block;
  border-radius: 10px;
}
.wedding_detail-report-list .list-asset a img {
  width: inherit;
  height: inherit;
}
.wedding_detail-report-list .list-asset a {
  position: relative;
  width: inherit;
  height: inherit;
  overflow: hidden;
  transition: all 0.4s ease;
}
.wedding_detail-report-list .list-asset a img {
  transition: all 0.4s ease;
  transform: scale(1);
}
.wedding_detail-report-list .list-asset a .mask {
  display: table;
  position: absolute;
  width: inherit;
  height: inherit;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.4s ease;
}
.wedding_detail-report-list .list-asset a .mask .caption {
  display: table-cell;
  padding: 8px;
  padding-top: 20px;
  vertical-align: middle;
  font-size: 12px;
  font-size: 1.2rem;
  color: #fff;
  transition: inherit;
}
.wedding_detail-report-list .list-asset a:hover {
  box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.1);
}
.wedding_detail-report-list .list-asset a:hover img {
  transform: scale(1.1);
}
.wedding_detail-report-list .list-asset a:hover .mask {
  opacity: 1;
}
.wedding_detail-report-list .list-asset a:hover .mask .caption {
  padding-top: 8px;
}
.wedding_detail-report-btn {
  margin-top: 24px;
}

@media (min-width: 531px) and (max-width: 768px) {
  .wedding_detail-report-list {
    width: 100vw;
    margin: auto;
  }
  .wedding_detail-report-list .list-asset {
    width: calc( ( 100vw - 120px ) / 4 );
    height: calc( ( 100vw - 120px ) / 4 );
    margin: 12px;
  }
}
@media (max-width: 530px) {
  .wedding_detail-report-list {
    width: 100vw;
    margin: 0 -16px;
  }
  .wedding_detail-report-list .list-asset {
    width: calc( ( 100vw - 80px ) / 4 );
    height: calc( ( 100vw - 80px ) / 4 );
    margin: 8px;
  }
}
.location {
  padding: 48px 0;
  background-color: #f3f3f3;
}
.location-info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 1016px;
  margin-top: 48px;
}
.location-info .map {
  width: 50%;
  height: 320px;
  max-width: 496px;
}
.location-info .map iframe {
  width: 100%;
  height: inherit;
}
.location-info .data {
  width: 50%;
  max-width: 496px;
  margin-left: 24px;
  border-spacing: 0;
  border-collapse: collapse;
  font-size: 12px;
  font-size: 1.2rem;
  border-top: 1px solid #dcdcdc;
}
.location-info .data th, .location-info .data td {
  padding: 12px 0;
  border-bottom: 1px solid #dcdcdc;
}
.location-info .data th {
  width: 25%;
  text-align: left;
  vertical-align: top;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .location-info .map,
  .location-info .data {
    width: calc( 50% - 12px );
    max-width: initial;
  }
}
@media (min-width: 531px) and (max-width: 768px) {
  .location-info {
    margin-top: 48px;
  }
  .location-info .map {
    width: 100%;
    max-width: 100%;
  }
  .location-info .data {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-top: 16px;
  }
}
@media (max-width: 530px) {
  .location {
    margin: 0 -16px;
    padding: 32px 16px;
  }
  .location-info {
    display: block;
    margin-top: 24px;
  }
  .location-info .map {
    width: 100%;
    height: 320px;
    max-width: 100%;
  }
  .location-info table.data {
    width: auto;
    max-width: 100%;
    margin: 16px 0 0;
  }
  .location-info table.data, .location-info table.data tbody, .location-info table.data th, .location-info table.data td {
    display: block;
  }
  .location-info table.data td {
    padding: 8px 0;
  }
  .location-info table.data th {
    width: auto;
    padding: 0 8px;
    background-color: #ddd;
  }
}
.explore-list {
  display: flex;
  justify-content: space-between;
  width: 1016px;
  margin: auto;
  text-align: center;
}
.explore-list .list-asset {
  width: 322.6666666667px;
}
.explore-list .list-asset:nth-child(2) {
  margin: 0 24px;
}
.explore-list .list-asset .img img {
  width: 100%;
}
.explore-list .list-asset .head {
  margin-top: 16px;
}
.explore-list .list-asset .head ul.tag {
  display: none;
}

@media (min-width: 531px) and (max-width: 1024px) {
  .explore-list {
    width: 100%;
  }
  .explore-list .list-asset {
    width: calc(( 100% - 48px ) / 3);
  }
}
@media (max-width: 530px) {
  .explore-list {
    display: block;
    width: 100%;
  }
  .explore-list .list-asset {
    width: 100%;
    margin: 32px 0;
  }
  .explore-list .list-asset:nth-child(2) {
    margin: 0;
  }
  .explore-list .list-asset .img img {
    width: 100%;
  }
  .explore-list .list-asset .head {
    margin-top: 16px;
  }
}
/* report ======================================== */
.report-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  max-width: 1024px;
  margin: auto;
}
.report-list .list-asset {
  max-width: 496px;
  margin-bottom: 44px;
  text-align: center;
  transition: all .4s ease;
}
.report-list .list-asset .img {
  width: 496px;
  height: auto;
  max-width: 496px;
}
.report-list .list-asset .img img {
  width: inherit;
  height: auto;
}
.report-list .list-asset .head {
  position: relative;
  padding: 16px 0;
}
.report-list .list-asset .head .excerpt {
  font-size: 12px;
  font-size: 1.2rem;
}
.report-list .list-asset .img {
  overflow: hidden;
}
.report-list .list-asset .img img {
  transition: all .4s ease;
}
.report-list .list-asset:hover {
  box-shadow: 0 0 0 8px #f3f3f3;
}
.report-list .list-asset:hover .img img {
  transform: scale(1.1);
}

@media (min-width: 531px) and (max-width: 1024px) {
  .report-list {
    padding: 24px;
  }
  .report-list .list-asset {
    width: calc(50% - 12px);
    margin: 12px 0 24px;
  }
  .report-list .list-asset .img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 530px) {
  .report-list {
    display: block;
  }
  .report-list .list-asset {
    width: 100%;
    margin-bottom: 16px;
  }
  .report-list .list-asset .img {
    width: 100%;
    height: auto;
  }
}
/* report area ======================================== */
.report_area-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  max-width: 1024px;
  margin: auto;
}
.report_area-list .list-asset {
  max-width: 496px;
  margin-bottom: 44px;
  text-align: center;
  transition: all .4s ease;
}
.report_area-list .list-asset .img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 496px;
  height: 240px;
  max-width: 496px;
  overflow: hidden;
}
.report_area-list .list-asset .img img {
  width: inherit;
  height: auto;
}
.report_area-list .list-asset .head {
  position: relative;
  padding: 16px 0;
}
.report_area-list .list-asset .head .excerpt {
  font-size: 12px;
  font-size: 1.2rem;
}
.report_area-list .list-asset .img {
  overflow: hidden;
}
.report_area-list .list-asset .img img {
  transition: all .4s ease;
}
.report_area-list .list-asset:hover {
  box-shadow: 0 0 0 8px #f3f3f3;
}
.report_area-list .list-asset:hover .img img {
  transform: scale(1.1);
}

@media (min-width: 531px) and (max-width: 1024px) {
  .report_area-list {
    padding: 24px;
  }
  .report_area-list .list-asset {
    width: calc(50% - 12px);
    margin: 12px 0 24px;
  }
  .report_area-list .list-asset .img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 530px) {
  .report_area-list {
    display: block;
  }
  .report_area-list .list-asset {
    width: 100%;
    margin-bottom: 16px;
  }
  .report_area-list .list-asset .img {
    width: 100%;
    height: auto;
  }
}
/* report detail ======================================== */
.report_detail-gallery {
  width: 1016px;
  margin: auto;
}
.report_detail-gallery .gallery {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: left;
  margin: 0 -1px;
}
.report_detail-gallery .gallery-slide {
  width: calc( ( 1016px - 12px ) / 6 );
  height: calc( ( 1016px - 12px ) / 6 );
  margin: 1px;
}
.report_detail-gallery .gallery-layer {
  width: inherit;
  height: inherit;
}
.report_detail-gallery .gallery-layer a {
  width: inherit;
  height: inherit;
}
.report_detail-gallery .gallery-layer a img {
  width: inherit;
  height: inherit;
}
.report_detail-gallery .gallery-layer a {
  overflow: hidden;
  display: block;
}
.report_detail-gallery .gallery-layer a img {
  transition: all .4s ease;
}
.report_detail-gallery .gallery-layer:hover a img {
  transform: scale(1.1);
}

@media (min-width: 769px) and (max-width: 1024px) {
  .report_detail-gallery {
    width: auto;
    margin: 0;
  }
  .report_detail-gallery .gallery-slide {
    width: calc( ( 100vw - 60px ) / 6 );
    height: calc( ( 100vw - 60px ) / 6 );
  }
}
@media (min-width: 531px) and (max-width: 768px) {
  .report_detail-gallery {
    width: auto;
    margin: 0;
  }
  .report_detail-gallery .gallery-slide {
    width: calc( ( 100vw - 60px ) / 5 );
    height: calc( ( 100vw - 60px ) / 5 );
  }
}
@media (max-width: 530px) {
  .report_detail-gallery {
    width: 100%;
  }
  .report_detail-gallery .gallery {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: left;
    margin: -1px;
  }
  .report_detail-gallery .gallery-slide {
    width: calc( ( 100vw - 36px ) / 3 );
    height: calc( ( 100vw - 36px ) / 3 );
    margin: 1px;
  }
  .report_detail-gallery .gallery-layer {
    width: 100%;
    height: 100%;
  }
  .report_detail-gallery .gallery-layer a {
    width: inherit;
    height: inherit;
  }
  .report_detail-gallery .gallery-layer a img {
    width: inherit;
    height: inherit;
    object-fit: cover;
  }
}
.report_detail-note {
  overflow: hidden;
  width: 1016px;
}
.report_detail-note .btn_container {
  clear: both;
}

.report_detail-couple_name {
  border-bottom: 1px solid #a3a3a3;
  padding-bottom: 8px;
}

.report_detail-wedding_data,
.report_detail-info-about,
.report_detail-info-planner {
  margin: 24px 0;
}
.report_detail-wedding_data h3,
.report_detail-info-about h3,
.report_detail-info-planner h3 {
  margin-bottom: 16px;
  padding: 0 16px;
  border-left: 4px solid #c9bd88;
}

.report_detail-wedding_data {
  float: left;
  width: 30%;
}
.report_detail-wedding_data .data_tbl {
  width: 100%;
  border-collapse: collapse;
}
.report_detail-wedding_data .data_tbl tr:nth-child(2n) {
  background-color: #f3f3f3;
}
.report_detail-wedding_data .data_tbl th,
.report_detail-wedding_data .data_tbl td {
  font-size: 14px;
  font-size: 1.4rem;
  text-align: left;
  padding: 6px 8px;
  border: 1px solid #ccc;
}
.report_detail-wedding_data .data_tbl th {
  width: 7em;
  font-weight: bold;
}

.report_detail-info {
  float: left;
  width: 70%;
  padding-left: 24px;
  box-sizing: border-box;
}

.report_detail-info-about,
.report_detail-info-planner {
  font-size: 14px;
  font-size: 1.4rem;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .report_detail-note {
    width: 100%;
  }

  .report_detail-wedding_data {
    width: 40%;
  }

  .report_detail-info {
    width: 60%;
  }
}
@media (min-width: 531px) and (max-width: 768px) {
  .report_detail-note {
    width: 100%;
  }

  .report_detail-wedding_data {
    width: 50%;
  }

  .report_detail-info {
    width: 50%;
  }
}
@media (max-width: 530px) {
  .report_detail-note {
    overflow: hidden;
    width: 100%;
  }

  .report_detail-couple_name {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .report_detail-wedding_data,
  .report_detail-info {
    float: none;
    width: 100%;
    padding-left: 0;
  }

  .report_detail-wedding_data .data_tbl {
    width: inherit;
  }
  .report_detail-wedding_data .data_tbl th,
  .report_detail-wedding_data .data_tbl td {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.report_detail-space-list {
  display: flex;
  justify-content: center;
}
.report_detail-space-list .asset {
  text-align: center;
  transition: all .4s ease;
}
.report_detail-space-list .asset .img {
  overflow: hidden;
}
.report_detail-space-list .asset .img img {
  transition: all .4s ease;
}
.report_detail-space-list .asset:hover {
  box-shadow: 0 0 0 8px #f3f3f3;
}
.report_detail-space-list .asset:hover .img img {
  transform: scale(1.1);
}
.report_detail-space-list .asset .head {
  padding: 16px 0;
}

/* photo wedding archive ======================================== */
.world_photo_plan .swiper-container.photo-slide {
  margin: 24px 0;
}
.world_photo_plan .swiper-container.photo-slide .swiper-slide .swiper-layer img {
  width: auto;
  height: 500px;
}

.photo-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  max-width: 1024px;
  margin: auto;
}
.photo-list .list-asset {
  max-width: 496px;
  margin-bottom: 44px;
  transition: all .4s ease;
}
.photo-list .list-asset .img {
  width: 496px;
  height: 240px;
  max-width: 496px;
}
.photo-list .list-asset .img img {
  width: inherit;
  height: auto;
}
.photo-list .list-asset .head {
  position: relative;
  padding: 16px 48px 16px 16px;
}
.photo-list .list-asset .head:after {
  content: '';
  position: absolute;
  display: inline-block;
  top: 50%;
  width: 9px;
  height: 9px;
  margin-top: -5.5px;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  transform: rotate(45deg);
  right: 17px;
}
.photo-list .list-asset .head .excerpt {
  margin-top: 8px;
  font-size: 12px;
  font-size: 1.2rem;
}
.photo-list .list-asset .img {
  overflow: hidden;
}
.photo-list .list-asset .img img {
  transition: all .4s ease;
}
.photo-list .list-asset:hover {
  box-shadow: 0 0 0 8px #f3f3f3;
}
.photo-list .list-asset:hover .img img {
  transform: scale(1.1);
}

@media (min-width: 531px) and (max-width: 1024px) {
  .photo-list {
    padding: 24px;
  }
  .photo-list .list-asset {
    width: calc(50% - 12px);
    margin: 12px 0 24px;
    box-sizing: border-box;
  }
  .photo-list .list-asset .img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 530px) {
  .photo-list {
    display: block;
  }
  .photo-list .list-asset {
    width: 100%;
    margin-bottom: 16px;
  }
  .photo-list .list-asset .img {
    width: 100%;
    height: auto;
  }
  .photo-list .list-asset .head {
    padding: 8px;
  }
  .photo-list .list-asset .head:after {
    display: none;
  }
  .photo-list .list-asset .head .excerpt {
    margin-top: 4px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}
/* photo wedding detail ======================================== */
.photo_detail-header {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 682px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.photo_detail-header h2 {
  color: #fff;
}

@media (max-width: 530px) {
  .photo_detail-header {
    background-size: 100vw calc( 100vw * 466/700 );
    width: 100vw;
    height: calc( 100vw * 466/700 );
    margin: 0 -16px;
  }
}
.photo_detail-description {
  max-width: 1016px;
  text-align: center;
}
.photo_detail-description p {
  font-size: 14px;
  font-size: 1.4rem;
}
.photo_detail-description p + p {
  margin: 24px 0 0;
}
.photo_detail-description p strong {
  font-size: 24px;
  font-size: 2.4rem;
}

@media (max-width: 530px) {
  .photo_detail-description p {
    margin: 8px 0 0;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .photo_detail-description p + p {
    margin: 8px 0 0;
  }
  .photo_detail-description p strong {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.photo_detail-gallery {
  width: 1016px;
  margin: auto;
}
.photo_detail-gallery .gallery {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: left;
  margin: 0 -12px;
}
.photo_detail-gallery .gallery-slide {
  width: 183px;
  height: 183px;
  margin: 8px 12px;
}
.photo_detail-gallery .gallery-layer {
  width: inherit;
  height: inherit;
}
.photo_detail-gallery .gallery-layer a {
  width: inherit;
  height: inherit;
  display: block;
  transition: all 0.4s ease;
  overflow: hidden;
}
.photo_detail-gallery .gallery-layer a img {
  transition: all 0.4s ease;
  transform: scale(1);
}
.photo_detail-gallery .gallery-layer a:hover {
  box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.1);
}
.photo_detail-gallery .gallery-layer a:hover img {
  transform: scale(1.1);
}

@media (min-width: 769px) and (max-width: 1024px) {
  .photo_detail-gallery {
    width: auto;
    margin: 0;
  }
  .photo_detail-gallery .gallery {
    margin: 0 12px;
  }
  .photo_detail-gallery .gallery-slide {
    width: calc( ( 100vw - 144px ) / 5 );
    height: calc( ( 100vw - 144px ) / 5 );
    margin: 12px;
  }
}
@media (min-width: 531px) and (max-width: 768px) {
  .photo_detail-gallery {
    width: auto;
    margin: 0;
  }
  .photo_detail-gallery .gallery {
    margin: 0 12px;
  }
  .photo_detail-gallery .gallery-slide {
    width: calc( ( 100vw - 120px ) / 4 );
    height: calc( ( 100vw - 120px ) / 4 );
    margin: 12px;
  }
}
@media (max-width: 530px) {
  .photo_detail-gallery {
    width: auto;
    margin: 0 -8px;
  }
  .photo_detail-gallery .gallery {
    margin: 0;
  }
  .photo_detail-gallery .gallery-slide {
    width: calc( ( 100vw - 64px ) / 3 );
    height: calc( ( 100vw - 64px ) / 3 );
    margin: 8px;
  }
}
.photo_plan {
  text-align: center;
}
.photo_plan-name {
  margin: 24px 0;
}
.photo_plan .price {
  display: inline-block;
  margin-top: 24px;
  padding: 16px 90px;
  background-color: #f3f3f3;
  text-align: center;
  font-size: 30px;
  font-size: 3rem;
}
.photo_plan .btn {
  margin-top: 24px;
}
.photo_plan-service {
  width: 806px;
  margin: 36px auto 0;
  padding: 24px;
  background-color: #f3f3f3;
  text-align: left;
  box-sizing: border-box;
}
.photo_plan-service .service-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}
.photo_plan-service .service-list li {
  width: 50%;
}
.photo_plan-service .service-list li .on-off {
  padding-right: 8px;
  color: #c9bd88;
}

@media (min-width: 531px) and (max-width: 768px) {
  .photo_plan-service {
    width: 100%;
  }
}
@media (max-width: 530px) {
  .photo_plan-service {
    width: 100%;
  }
}
.photo_report-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.photo_report-list .asset {
  margin: 0 12px;
}
.photo_report-list .asset img {
  display: block;
  background-color: #f3f3f3;
  border: 1px solid #ccc;
  box-sizing: border-box;
  width: 184px;
  height: 184px;
  border-radius: 20px;
}

/* dress list ======================================== */
.dress-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: left;
  max-width: 948px;
  margin: auto;
  box-sizing: border-box;
}
.dress-list .list-asset {
  width: 300px;
  margin-bottom: 44px;
  transition: all .4s ease;
}
.dress-list .list-asset:nth-child(3n+2) {
  margin-left: 24px;
  margin-right: 24px;
}
.dress-list .list-asset .img {
  width: 300px;
  height: 400px;
  max-width: 496px;
  max-height: 700px;
  text-align: center;
}
.dress-list .list-asset .img img {
  width: inherit;
  height: auto;
}
.dress-list .list-asset .head {
  position: relative;
  padding: 16px 4px 4px 4px;
}
.dress-list .list-asset .head .excerpt {
  margin-top: 8px;
  font-size: 12px;
  font-size: 1.2rem;
}
.dress-list .list-asset .head ul.tag {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: left;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  font-size: 11px;
  font-size: 1.1rem;
  color: #fff;
}
.dress-list .list-asset .head ul.tag li {
  margin-top: 8px;
  padding: 4px 8px;
  background-color: #a3c3d9;
  border-radius: 20px;
  line-height: 1;
  margin-right: 16px;
}
.dress-list .list-asset .img {
  overflow: hidden;
}
.dress-list .list-asset .img img {
  transition: all .4s ease;
}
.dress-list .list-asset:hover {
  box-shadow: 0 0 0 8px #f3f3f3;
  background-color: #f3f3f3;
}
.dress-list .list-asset:hover .img img {
  transform: scale(1.1);
}

@media (min-width: 531px) and (max-width: 1024px) {
  .dress-list {
    padding: 24px;
  }
  .dress-list .list-asset {
    width: calc( (100% - 48px) / 3 );
  }
  .dress-list .list-asset .img {
    width: 100%;
    height: auto;
  }
  .dress-list .list-asset .img img {
    width: inherit;
    height: auto;
  }
}
@media (max-width: 530px) {
  .dress-list {
    width: 100%;
    justify-content: center;
  }
  .dress-list .list-asset {
    width: 100%;
    margin: 0 auto 44px;
  }
  .dress-list .list-asset:nth-child(3n+2) {
    margin-left: auto;
    margin-right: auto;
  }
  .dress-list .list-asset .img {
    width: 100%;
    height: auto;
  }
  .dress-list .list-asset .img img {
    width: 100%;
    height: auto;
  }
  .dress-list .list-asset .head {
    padding: 8px 0;
  }
  .dress-list .list-asset .head:after {
    display: none;
  }
}
/* dress brand ======================================== */
/**
 * variable
 */
.dress_brand-main_img {
  max-width: 100%;
  width: 1016px;
  max-height: 595px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dress_brand-main_img img {
  width: auto;
  height: inherit;
  max-height: inherit;
}

.dress_brand-slide {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.dress_brand-slide .swiper-container {
  width: inherit;
  height: 600px;
}
.dress_brand-slide .swiper-container .swiper-wrapper .swiper-slide {
  width: auto !important;
}
.dress_brand-slide .swiper-container .swiper-wrapper .swiper-slide .swiper-layer img {
  width: auto;
  height: 600px;
}
.dress_brand-slide .swiper-button-next,
.dress_brand-slide .swiper-button-prev {
  display: block;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 8px 4px 8px 8px;
}
.dress_brand-slide .swiper-button-next:hover,
.dress_brand-slide .swiper-button-prev:hover {
  color: #ad9c4f;
  background-color: rgba(0, 0, 0, 0.4);
}
.dress_brand-slide .swiper-button-next:active,
.dress_brand-slide .swiper-button-prev:active {
  opacity: .5;
  filter: alpha(opacity=50);
}
.dress_brand-slide .swiper-button-next {
  right: 0;
}
.dress_brand-slide .swiper-button-prev {
  left: 0;
}
@media (max-width: 530px) {
  .dress_brand-slide .swiper-button-prev,
  .dress_brand-slide .swiper-button-next {
    display: none;
  }
}

@media (max-width: 530px) {
  .dress_brand-slide {
    width: auto;
    max-width: 768px;
  }
  .dress_brand-slide .swiper-container {
    width: inherit;
    height: calc(100vh-200px);
  }
  .dress_brand-slide .swiper-container .swiper-wrapper .swiper-slide {
    width: auto !important;
  }
  .dress_brand-slide .swiper-container .swiper-wrapper .swiper-slide .swiper-layer img {
    width: auto;
    height: calc(100vh-200px);
  }
}
.dress_brand-description {
  width: 1016px;
}
.dress_brand-description p + p {
  margin-top: 16px;
}
.dress_brand-description strong {
  font-size: 20px;
  font-size: 2rem;
}

@media (min-width: 531px) and (max-width: 1024px) {
  .dress_brand-description {
    width: auto;
  }
  .dress_brand-description strong {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media (max-width: 530px) {
  .dress_brand-description {
    width: auto;
  }
  .dress_brand-description strong {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.dress_brand-plan {
  width: 1016px;
  max-width: 100%;
  border: 8px solid #ebe7d3;
  box-shadow: inset 0 0 0 1px #c9bd88;
  margin: auto;
  padding: 24px;
  box-sizing: border-box;
}
.dress_brand-plan ol.plan {
  counter-reset: number 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.dress_brand-plan ol.plan.one .asset {
  width: 70%;
}
.dress_brand-plan ol.plan .asset {
  position: relative;
  margin-bottom: 16px;
  padding-bottom: 16px;
  padding-left: 46px;
  border-bottom: 1px dotted #ccc;
}
.dress_brand-plan ol.plan .asset:before {
  counter-increment: number 1;
  content: counter(number) " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #c9bd88;
  color: #fff;
  border-radius: 40px;
}
.dress_brand-plan ol.plan .asset .txt {
  font-size: 16px;
  font-size: 1.6rem;
}
.dress_brand-plan ol.plan .asset .txt strong {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.6;
  margin: 0;
}
.dress_brand-plan ol.plan .asset .sup {
  font-size: 12px;
  font-size: 1.2rem;
  margin: 0;
  padding: 0 16px;
}
.dress_brand-plan ol.plan .asset .sup li {
  color: #ad9c4f;
}
.dress_brand-plan ol.plan .asset .sup li span {
  color: #454545;
}
.dress_brand-plan .btn {
  text-align: center;
}

@media (min-width: 531px) and (max-width: 1024px) {
  .dress_brand-plan {
    width: 100%;
  }
  .dress_brand-plan .plan {
    display: block;
    width: auto;
  }
  .dress_brand-plan .plan.one .asset {
    width: auto;
  }
}
@media (max-width: 530px) {
  .dress_brand-plan {
    width: 100%;
  }
  .dress_brand-plan .plan {
    display: block;
    width: auto;
  }
  .dress_brand-plan .plan.one .asset {
    width: auto;
  }
  .dress_brand-plan .plan .asset {
    width: auto;
    padding: 16px;
  }
  .dress_brand-plan .plan .asset .txt {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .dress_brand-plan .plan .asset .txt strong {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .dress_brand-plan .plan .asset .sup {
    padding: 8px 12px 8px 24px;
    font-size: 10px;
    font-size: 1rem;
  }
}
.dress_brand-report-table,
.dress_brand-price-table {
  border-collapse: collapse;
  width: 1016px;
  margin: auto;
}
.dress_brand-report-table tr:nth-child(2n),
.dress_brand-price-table tr:nth-child(2n) {
  background-color: #f3f3f3;
}
.dress_brand-report-table th, .dress_brand-report-table td,
.dress_brand-price-table th,
.dress_brand-price-table td {
  padding: 8px;
  border: 1px solid #ccc;
  text-align: left;
  font-size: 14px;
  font-size: 1.4rem;
}

.dress_brand-report-table th {
  width: 30%;
}
.dress_brand-report-table td {
  width: 20%;
}

.dress_brand-price-table th {
  width: 30%;
}
.dress_brand-price-table td {
  width: 70%;
}

@media (min-width: 531px) and (max-width: 1024px) {
  .dress_brand-report-table,
  .dress_brand-price-table {
    width: 100%;
  }
  .dress_brand-report-table th, .dress_brand-report-table td,
  .dress_brand-price-table th,
  .dress_brand-price-table td {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media (max-width: 530px) {
  .dress_brand-report-table,
  .dress_brand-price-table {
    width: 100%;
  }
  .dress_brand-report-table th, .dress_brand-report-table td,
  .dress_brand-price-table th,
  .dress_brand-price-table td {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
#dress_brand-shop-map {
  display: block;
  width: 1016px;
  height: 480px;
  margin: auto;
  border: 1px solid #ccc;
}

@media (min-width: 531px) and (max-width: 1024px) {
  #dress_brand-shop-map {
    width: 100%;
  }
}
@media (max-width: 530px) {
  #dress_brand-shop-map {
    width: 100%;
    height: 320px;
  }
}
.dress_brand-shop-data {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  margin-top: 24px;
}
.dress_brand-shop-data .tbl {
  width: calc( 60% - 24px );
  margin-right: 24px;
  border-spacing: 0;
  border-collapse: collapse;
  font-size: 14px;
  font-size: 1.4rem;
}
.dress_brand-shop-data .tbl th, .dress_brand-shop-data .tbl td {
  padding: 12px 0;
  border-bottom: 1px solid #dcdcdc;
}
.dress_brand-shop-data .tbl th {
  width: 25%;
  text-align: left;
  vertical-align: top;
}
.dress_brand-shop-data .tbl.single {
  width: 1016px;
  margin-right: 0;
}
.dress_brand-shop-data .dress_brand-shop-list {
  width: 40%;
}

@media (min-width: 531px) and (max-width: 1024px) {
  .dress_brand-shop-data .tbl.single {
    width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 530px) {
  .dress_brand-shop-data {
    display: block;
    margin-top: 16px;
  }
  .dress_brand-shop-data .tbl {
    width: 100%;
    margin-right: 0;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .dress_brand-shop-data .tbl th, .dress_brand-shop-data .tbl td {
    padding: 8px 0;
  }
  .dress_brand-shop-data .tbl th {
    width: 9em;
  }
  .dress_brand-shop-data .tbl.single {
    width: 100%;
    margin-right: 0;
  }
  .dress_brand-shop-data .dress_brand-shop-list {
    width: 100%;
    margin-top: 24px;
  }
}
.dress_brand-shop-img {
  width: 1016px;
  margin: 24px auto 0;
}
.dress_brand-shop-img .gallery {
  overflow: hidden;
}
.dress_brand-shop-img .gallery .gallery-slide {
  float: left;
  width: calc( (100% - 120px )/ 6);
  max-width: 188px;
  margin-top: 24px;
}
.dress_brand-shop-img .gallery .gallery-slide + .gallery-slide {
  margin-left: 24px;
}
.dress_brand-shop-img .gallery .gallery-slide:nth-child(6n+1) {
  margin-left: 0;
}
.dress_brand-shop-img .gallery .gallery-slide .gallery-layer {
  width: 100%;
}
.dress_brand-shop-img .gallery .gallery-slide .gallery-layer a {
  display: block;
  width: 100%;
}
.dress_brand-shop-img .gallery .gallery-slide .gallery-layer a img {
  max-width: 188px;
  width: 100%;
  height: auto;
}

@media (min-width: 531px) and (max-width: 1024px) {
  .dress_brand-shop-img {
    width: 100%;
  }
  .dress_brand-shop-img .gallery .gallery-slide {
    width: calc( (100% - 96px )/ 5);
  }
  .dress_brand-shop-img .gallery .gallery-slide + .gallery-slide {
    margin-left: 24px;
  }
  .dress_brand-shop-img .gallery .gallery-slide:nth-child(5n+1) {
    margin-left: 0;
  }
}
@media (max-width: 530px) {
  .dress_brand-shop-img {
    width: 100%;
  }
  .dress_brand-shop-img .gallery .gallery-slide {
    width: calc( (100vw - 64px )/ 3);
    margin-top: 16px;
  }
  .dress_brand-shop-img .gallery .gallery-slide + .gallery-slide {
    margin-left: 16px;
  }
  .dress_brand-shop-img .gallery .gallery-slide:nth-child(3n+1) {
    margin-left: 0;
  }
  .dress_brand-shop-img .gallery .gallery-slide .gallery-layer a img {
    width: calc((100vw - 64px)/3);
    height: auto;
  }
}
/* travel ======================================== */
.travel-area-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  max-width: 1024px;
  margin: auto;
}
.travel-area-list .list-asset {
  width: 329px;
  margin-bottom: 24px;
  transition: all .4s ease;
}
.travel-area-list .list-asset .img {
  width: 329px;
  height: 240px;
}
.travel-area-list .list-asset .img img {
  width: inherit;
  height: auto;
}
.travel-area-list .list-asset .head {
  position: relative;
  padding: 16px 48px 16px 16px;
  border-top: none;
}
.travel-area-list .list-asset .head:after {
  content: '';
  position: absolute;
  display: inline-block;
  top: 50%;
  width: 9px;
  height: 9px;
  margin-top: -5.5px;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  transform: rotate(45deg);
  right: 17px;
}
.travel-area-list .list-asset .head .excerpt {
  margin-top: 8px;
  font-size: 12px;
  font-size: 1.2rem;
}
.travel-area-list .list-asset .img {
  overflow: hidden;
}
.travel-area-list .list-asset .img img {
  transition: all .4s ease;
}
.travel-area-list .list-asset:hover {
  box-shadow: 0 0 0 8px #f3f3f3;
  background-color: #f3f3f3;
}
.travel-area-list .list-asset:hover .img img {
  transform: scale(1.1);
}

@media (min-width: 531px) and (max-width: 1024px) {
  .travel-area-list {
    padding: 24px;
  }
  .travel-area-list .list-asset {
    width: calc( (100% - 48px) / 3);
    margin: 12px 0 24px;
  }
  .travel-area-list .list-asset .img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 530px) {
  .travel-area-list .list-asset {
    width: calc( (100% - 16px) / 2);
    margin: 12px 0 24px;
  }
  .travel-area-list .list-asset .img {
    width: 100%;
    height: auto;
  }
}
.travel-hotel-list,
.travel-resorts-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: left;
  max-width: 1024px;
  margin: auto;
}
.travel-hotel-list .list-asset,
.travel-resorts-list .list-asset {
  width: 238px;
  margin-bottom: 44px;
  margin-left: 24px;
  transition: all .4s ease;
}
.travel-hotel-list .list-asset:nth-child(4n+1),
.travel-resorts-list .list-asset:nth-child(4n+1) {
  margin-left: 0;
}
.travel-hotel-list .list-asset .img,
.travel-resorts-list .list-asset .img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 159px;
  border: 1px solid #ccc;
  background-color: #fff;
  box-sizing: border-box;
}
.travel-hotel-list .list-asset .img img,
.travel-resorts-list .list-asset .img img {
  width: inherit;
  height: auto;
}
.travel-hotel-list .list-asset .head,
.travel-resorts-list .list-asset .head {
  position: relative;
  padding: 16px 48px 0 16px;
  border-top: none;
}
.travel-hotel-list .list-asset .head:after,
.travel-resorts-list .list-asset .head:after {
  content: '';
  position: absolute;
  display: inline-block;
  top: 50%;
  width: 9px;
  height: 9px;
  margin-top: -5.5px;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  transform: rotate(45deg);
  right: 17px;
}
.travel-hotel-list .list-asset .head .excerpt,
.travel-resorts-list .list-asset .head .excerpt {
  margin-top: 8px;
  font-size: 12px;
  font-size: 1.2rem;
}
.travel-hotel-list .list-asset .img,
.travel-resorts-list .list-asset .img {
  overflow: hidden;
}
.travel-hotel-list .list-asset .img img,
.travel-resorts-list .list-asset .img img {
  transition: all .4s ease;
}
.travel-hotel-list .list-asset:hover,
.travel-resorts-list .list-asset:hover {
  box-shadow: 0 0 0 8px #f3f3f3;
  background-color: #f3f3f3;
}
.travel-hotel-list .list-asset:hover .img img,
.travel-resorts-list .list-asset:hover .img img {
  transform: scale(1.1);
}

@media (min-width: 769px) and (max-width: 1024px) {
  .travel-hotel-list,
  .travel-resorts-list {
    padding: 24px;
  }
  .travel-hotel-list .list-asset,
  .travel-resorts-list .list-asset {
    width: calc( ( 100% - 72px ) / 4 );
    margin-bottom: 44px;
    margin-left: 24px;
  }
  .travel-hotel-list .list-asset:nth-child(4n+1),
  .travel-resorts-list .list-asset:nth-child(4n+1) {
    margin-left: 0;
  }
  .travel-hotel-list .list-asset .img,
  .travel-resorts-list .list-asset .img {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 531px) and (max-width: 768px) {
  .travel-hotel-list,
  .travel-resorts-list {
    padding: 24px;
  }
  .travel-hotel-list .list-asset,
  .travel-resorts-list .list-asset {
    width: calc( ( 100% - 48px ) / 3 );
    margin-bottom: 44px;
    margin-left: 24px;
  }
  .travel-hotel-list .list-asset:nth-child(4n+1),
  .travel-resorts-list .list-asset:nth-child(4n+1) {
    margin-left: 24px;
  }
  .travel-hotel-list .list-asset:nth-child(3n+1),
  .travel-resorts-list .list-asset:nth-child(3n+1) {
    margin-left: 0;
  }
  .travel-hotel-list .list-asset .img,
  .travel-resorts-list .list-asset .img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 530px) {
  .travel-hotel-list .list-asset,
  .travel-resorts-list .list-asset {
    width: calc( ( 100% - 16px ) / 2 );
    margin-bottom: 44px;
    margin-left: 16px;
  }
  .travel-hotel-list .list-asset:nth-child(4n+1),
  .travel-resorts-list .list-asset:nth-child(4n+1) {
    margin-left: 16px;
  }
  .travel-hotel-list .list-asset:nth-child(2n+1),
  .travel-resorts-list .list-asset:nth-child(2n+1) {
    margin-left: 0;
  }
  .travel-hotel-list .list-asset .img,
  .travel-resorts-list .list-asset .img {
    width: 100%;
    height: auto;
  }
}
/* travel_detail ======================================== */
.travel_detail_area-slide {
  text-align: center;
}
.travel_detail_area-about, .travel_detail_area-where, .travel_detail_area-how, .travel_detail_area-basic, .travel_detail_area-feature, .travel_detail_area-guidemap, .travel_detail_area-my_edition {
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  font-size: 1.4rem;
}
@media (max-width: 530px) {
  .travel_detail_area-info, .travel_detail_area-when {
    padding-top: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
  }
  .travel_detail_area-basic {
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.travel_detail_area-about h3, .travel_detail_area-where h3, .travel_detail_area-how h3, .travel_detail_area-basic h3, .travel_detail_area-feature h3 {
  font-size: 20px;
  font-size: 2rem;
  color: #2f6db3;
  background-position: left;
  background-repeat: no-repeat;
  background-size: 50px;
  padding: 16px 0px 16px 60px;
}
.travel_detail_area-about h3 {
  background-image: url(../../uploads_old/2018/08/icon03.png);
}
.travel_detail_area-where h3 {
  background-image: url(../../uploads_old/2018/08/icon02.png);
}
.travel_detail_area-how h3 {
  background-image: url(../../uploads_old/2018/08/icon04.png);
}
.travel_detail_area-basic {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: space-between;
}
.travel_detail_area-info {
  width: 55%;
}
.travel_detail_area-info h3 {
  background-image: url(../../uploads_old/2018/08/icon05.png);
}
.travel_detail_area-info-tbl {
  border-collapse: collapse;
}
.travel_detail_area-info-tbl th {
  text-align: left;
  width: 6em;
}
.travel_detail_area-when {
  width: 40%;
}
.travel_detail_area-when h3 {
  background-image: url(../../uploads_old/2018/08/icon01.png);
}
@media (max-width: 530px) {
  .travel_detail_area-basic {
    display: block;
  }
  .travel_detail_area-info, .travel_detail_area-when {
    width: 100%;
  }
}
.travel_detail_area-feature h3 {
  background-image: url(../../uploads_old/2018/08/icon06.png);
}
.travel_detail_area-guidemap-header {
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  color: #2f6db3;
}
.travel_detail_area-guidemap-header p {
  font-size: 18px;
  font-size: 1.8rem;
}
.travel_detail_area-guidemap .guidemap-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}
.travel_detail_area-guidemap .guidemap-list .asset {
  width: calc( ( 100% - 48px ) / 2 );
  padding: 24px 0;
  overflow: hidden;
  border-top: 1px solid #eee;
}
.travel_detail_area-guidemap .guidemap-list .asset:nth-child(1), .travel_detail_area-guidemap .guidemap-list .asset:nth-child(2) {
  border-top: none;
}
.travel_detail_area-guidemap .guidemap-list .asset:nth-child(2n) {
  margin-left: 48px;
}
.travel_detail_area-guidemap .guidemap-list .asset .img {
  float: right;
  width: 202px;
  margin-left: 16px;
}
.travel_detail_area-guidemap .guidemap-list .asset .img img {
  width: inherit;
  height: auto;
}
.travel_detail_area-guidemap .guidemap-list .asset .title {
  width: calc( 100% - 218px );
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #2f6db3;
}
.travel_detail_area-guidemap .guidemap-list .asset .txt {
  width: calc( 100% - 218px );
}
@media (min-width: 531px) and (max-width: 768px) {
  .travel_detail_area-guidemap .guidemap-list {
    display: block;
  }
  .travel_detail_area-guidemap .guidemap-list .asset {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid #eee;
  }
  .travel_detail_area-guidemap .guidemap-list .asset:nth-child(2n) {
    margin-left: 0;
  }
  .travel_detail_area-guidemap .guidemap-list .asset:nth-child(1), .travel_detail_area-guidemap .guidemap-list .asset:nth-child(2) {
    border-top: 1px solid #eee;
  }
  .travel_detail_area-guidemap .guidemap-list .asset .img {
    float: right;
    width: 202px;
    margin-left: 16px;
  }
  .travel_detail_area-guidemap .guidemap-list .asset .img img {
    width: inherit;
    height: auto;
  }
  .travel_detail_area-guidemap .guidemap-list .asset .title {
    width: calc( 100% - 218px );
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    color: #2f6db3;
  }
  .travel_detail_area-guidemap .guidemap-list .asset .txt {
    width: calc( 100% - 218px );
  }
}
@media (max-width: 530px) {
  .travel_detail_area-guidemap-header {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .travel_detail_area-guidemap-header p {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .travel_detail_area-guidemap .guidemap-list {
    display: block;
  }
  .travel_detail_area-guidemap .guidemap-list .asset {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    padding: 16px 0;
  }
  .travel_detail_area-guidemap .guidemap-list .asset:nth-child(2n) {
    margin-left: 0;
  }
  .travel_detail_area-guidemap .guidemap-list .asset:nth-child(2) {
    border-top: 1px solid #eee;
  }
  .travel_detail_area-guidemap .guidemap-list .asset .img {
    order: 3;
    float: none;
    width: 35%;
    margin-left: 0;
  }
  .travel_detail_area-guidemap .guidemap-list .asset .img img {
    width: 100%;
    height: auto;
  }
  .travel_detail_area-guidemap .guidemap-list .asset .title {
    font-size: 16px;
    font-size: 1.6rem;
    order: 1;
    width: 100%;
    margin-bottom: 8px;
  }
  .travel_detail_area-guidemap .guidemap-list .asset .txt {
    order: 2;
    float: none;
    width: calc( 65% - 16px );
    margin-right: 16px;
  }
}
.travel_detail_area-my_edition-header {
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  color: #2f6db3;
}
.travel_detail_area-my_edition-header h3 img {
  width: 180px;
}
.travel_detail_area-my_edition-header p {
  font-size: 18px;
  font-size: 1.8rem;
  margin: 16px 0;
}
.travel_detail_area-my_edition .my_edition-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}
.travel_detail_area-my_edition .my_edition-list .asset {
  width: calc( (100% - 72px) / 4 );
}
.travel_detail_area-my_edition .my_edition-list .asset + .asset {
  margin-left: 24px;
}
.travel_detail_area-my_edition .my_edition-list .asset .img img {
  width: 100%;
  height: auto;
}
.travel_detail_area-my_edition .my_edition-list .asset .txt {
  font-size: 14px;
  font-size: 1.4rem;
}
@media (max-width: 530px) {
  .travel_detail_area-my_edition-header {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .travel_detail_area-my_edition-header p {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .travel_detail_area-my_edition .my_edition-list .asset {
    width: calc( (100% - 16px) / 2 );
    margin-bottom: 16px;
  }
  .travel_detail_area-my_edition .my_edition-list .asset + .asset {
    margin-left: 0;
  }
  .travel_detail_area-my_edition .my_edition-list .asset:nth-child(2n) {
    margin-left: 16px;
  }
  .travel_detail_area-my_edition .my_edition-list .asset .txt {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

/* hotel_detail ======================================== */
.hr-spec-tbl tr th,
.hr-spec-tbl tr td {
  text-align: left;
  padding: 12px;
}
.hr-spec-tbl tr th {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}

/* post_list ======================================== */
.post_list {
  width: 768px;
  margin: auto;
}
.post_list .list-asset {
  width: inherit;
  border-bottom: 1px dotted #ccc;
}
.post_list .list-asset a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: inherit;
  padding: 16px;
  color: #231815;
  box-sizing: border-box;
  transition: .3s all;
}
.post_list .list-asset a:hover {
  background-color: #f3f3f3;
}
.post_list .list-asset a .img {
  width: 120px;
}
.post_list .list-asset a .img img {
  width: inherit;
}
.post_list .list-asset a .head {
  width: calc( 100% - 120px );
  padding-left: 24px;
}
.post_list .list-asset a .head .label {
  margin-bottom: 16px;
  font-weight: bold;
}
.post_list .list-asset a .head .excerpt {
  font-size: 12px;
  font-size: 1.2rem;
}

@media (min-width: 531px) and (max-width: 768px) {
  .post_list {
    width: auto;
    padding: 16px;
  }
}
@media (max-width: 530px) {
  .post_list {
    width: auto;
    margin: 0 -16px;
  }
  .post_list .list-asset a {
    align-items: flex-start;
    padding: 16px;
  }
  .post_list .list-asset a .img {
    width: 80px;
  }
  .post_list .list-asset a .head {
    width: calc( 100% - 80px );
    padding-left: 16px;
  }
}
/* post_detail ======================================== */
#post_detail-header {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  max-width: 100%;
  max-height: 580px;
  margin-top: 0;
  text-align: center;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-flow: column wrap;
  color: #fff;
}
#post_detail-header #post_detail-title {
  font-size: 24px;
  font-size: 2.4rem;
  text-shadow: 0 1px 5px black;
}
#post_detail-header #post_detail-cat_list {
  text-shadow: 0 1px 5px black;
}
#post_detail-header #post_detail-cat_list ul {
  text-align: center;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-content: center;
  justify-content: center;
}
#post_detail-header #post_detail-cat_list ul li a {
  color: inherit;
}

@media (max-width: 530px) {
  #post_detail-header {
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 30vh;
    max-width: 100vw;
    max-height: 580px;
    margin: 0 -18px;
  }
  #post_detail-header h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
#post_detail-body {
  max-width: 960px;
}
#post_detail-body a {
  color: #ad9c4f;
  border-bottom: 1px dotted #ad9c4f;
}
#post_detail-body a:hover {
  border-bottom: none;
}

/* faq_archive ======================================== */
#faq-slide .swiper-container,
#faq-slide .swiper-slide {
  height: 370px;
}
#faq-slide .swiper-slide > img {
  object-fit: cover;
  /* IE: not support */
  width: 100%;
  height: 100%;
}

@media (max-width: 530px) {
  #faq-slide .swiper-container,
  #faq-slide .swiper-slide {
    height: auto;
  }
}
.faq-toggle {
  border-bottom: 1px dotted #ccc;
}
.faq-toggle.active .toggle-icon::after {
  visibility: hidden;
}
.faq-toggle .toggle-title {
  position: relative;
  margin-bottom: 30px;
  padding-left: 32px;
  line-height: 1.6;
  cursor: pointer;
}
.faq-toggle .toggle-title .toggle-icon {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: transparent;
  border: 2px solid #00C1CF;
  border-radius: 20%;
  vertical-align: middle;
}
.faq-toggle .toggle-title .toggle-icon:after, .faq-toggle .toggle-title .toggle-icon::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #00C1CF;
}
.faq-toggle .toggle-title .toggle-icon::before {
  width: 10px;
  height: 2px;
}
.faq-toggle .toggle-title .toggle-icon::after {
  width: 2px;
  height: 10px;
}
.faq-toggle .toggle-content {
  padding-left: 32px;
  overflow: hidden;
  display: none;
}
.faq-toggle ul.faq-list {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
}
.faq-toggle ul.faq-list li {
  font-size: 14px;
  font-size: 1.4rem;
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: dotted 1px #CCC;
  padding-left: 5px;
}

/* faq_detail ======================================== */
#faq-body {
  padding: 24px 64px;
}
#faq-body a {
  color: #ad9c4f;
  border-bottom: 1px dotted #ad9c4f;
}
#faq-body a:hover {
  border-bottom: none;
}

@media (max-width: 530px) {
  #faq-body {
    padding: 16px;
  }
}
.faq-box h2 {
  font-size: 30px;
  font-size: 3rem;
  color: #404040;
  font-weight: 400;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: dotted 1px #CCC;
}
.faq-box h3 {
  font-size: 18px;
  font-size: 1.8rem;
  color: #404040;
  padding-bottom: 17px;
}
.faq-box p + p {
  margin-top: 24px;
}

/* =================================================
  固定ページ
================================================= */
/* 共通 ======================================== */
.theme-content img {
  max-width: 100%;
  width: auto\9;
  height: auto;
  border: 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

.page {
  max-width: 960px;
  margin: auto;
}
.page iframe {
  margin: 24px 0;
  width: 100%;
  max-width: 100%;
  margin: auto;
}
.page table {
  margin: 24px 0;
  border-collapse: collapse;
  border-spacing: 0;
}
.page table tr {
  width: 100%;
}
.page table tr th,
.page table tr td {
  padding: 8px 12px;
  border: 1px solid #ccc;
}
.page table tr th,
.page table tr td:nth-child(1) {
  width: 30%;
}
.page h3 {
  font-size: 20px;
  font-size: 2rem;
  margin: 24px 0;
  padding: 8px 12px;
  background-color: #f3f3f3;
}
.page h4 {
  font-size: 16px;
  font-size: 1.6rem;
  margin: 24px 0;
  border-left: 3px solid #ccc;
  padding: 0 12px;
}
.page a {
  text-decoration: underline;
}
.page p b,
.page p strong {
  font-weight: bold;
}

/* Company ======================================== */
/* About Us ======================================== */
.ab-concept-spec {
  counter-reset: number 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ab-concept-spec li {
  position: relative;
  width: calc( ( 100% - 72px )/4 );
  margin: 12px 0;
  padding: 24px;
  border-radius: 30px;
  background: #F94B96;
  box-sizing: border-box;
  font-size: 12px;
  font-size: 1.2rem;
  color: #ffffff;
}
.ab-concept-spec li:before {
  counter-increment: number 1;
  content: counter(number) " ";
  color: #f9a9df;
  display: block;
  font-size: 30px;
  line-height: 30px;
  height: 30px;
  font-weight: bold;
  text-align: center;
  font-family: 'Josefin Sans', sans-serif;
}
.ab-concept-spec li p:first-child {
  font-size: 15px;
  font-size: 1.5rem;
  display: block;
  border-bottom: dotted 1px #FFF;
  padding-bottom: 5px;
  margin-bottom: 5px;
  color: #404040;
  text-align: center;
}
.ab-concept-spec li p:first-child b {
  font-weight: bold;
}
.ab-concept-spec li p {
  font-size: 12px;
  font-size: 1.2rem;
  color: #ffffff;
}

@media (min-width: 531px) and (max-width: 768px) {
  .ab-concept-spec li {
    width: calc( ( 100% - 48px )/3 );
    margin: 12px 0;
    padding: 24px;
  }
}
@media (max-width: 530px) {
  .ab-concept-spec {
    position: relative;
    margin-left: -8px;
    margin-right: -8px;
  }
  .ab-concept-spec li {
    width: calc( 50% - 16px );
    margin: 8px;
    padding: 8px;
    border-radius: 16px;
  }
  .ab-concept-spec li:before {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.ab-more .wp-block-group__inner-container {
  margin: 0 -1.5%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.ab-more .wp-block-group__inner-container .wp-block-image {
  width: 30%;
  margin: 1.5%;
}
.ab-more .wp-block-group__inner-container .wp-block-image figure {
  margin: 0;
}
.ab-more .wp-block-group__inner-container .wp-block-image figure figcaption {
  font-size: 12px;
  font-size: 1.2rem;
  color: #666666;
}

@media (max-width: 530px) {
  .ab-more .wp-block-group__inner-container {
    margin: 0;
    display: block;
  }
  .ab-more .wp-block-group__inner-container .wp-block-image {
    width: 100%;
    margin: 16px auto;
  }
}
/* アースカラーズのサービス ======================================== */
.sv-box01 {
  padding: 24px;
  border: solid 1px #CCC;
  padding-bottom: 24px;
  overflow: hidden;
  border-radius: 10px;
  margin: 24px 0;
}
.sv-box01 .photo {
  max-width: 300px;
  width: 35%;
  float: left;
  padding-right: 5%;
  position: relative !important;
}
.sv-box01 .photo .icon {
  position: absolute;
  top: -15px;
  left: -15px;
  z-index: 10;
}
.sv-box01 .text {
  float: left;
  width: 60%;
}
.sv-box01 .text strong {
  font-size: 18px;
  font-size: 1.8rem;
  color: #F39;
  display: block;
  font-weight: bold;
}
.sv-box01 .text ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.sv-box01 .text ul li {
  padding-top: 4px;
  margin-top: 4px;
  border-top: dotted 1px #999;
}

@media (max-width: 530px) {
  .sv-box01 {
    padding: 16px;
  }
  .sv-box01 .photo {
    width: auto;
    float: none;
    margin: auto auto 16px;
    padding-right: 0;
    text-align: center;
  }
  .sv-box01 .text {
    float: none;
    width: auto;
  }
}
.sv-step-title {
  border-bottom: dotted 1px #666;
  overflow: hidden;
}
.sv-step-title .sv-step-title-in {
  border-bottom: solid 2px #333;
  margin-bottom: 2px;
  padding-bottom: 5px;
}

.sv-step {
  padding: 24px 8px;
}
.sv-step .photo {
  float: left;
  max-width: 405px;
  width: 45%;
  padding-right: 5%;
}
.sv-step .text {
  float: left;
  max-width: 460px;
  width: 50%;
}
.sv-step .text .step-icon {
  font-size: 18px;
  font-size: 1.8rem;
  color: #F39;
  font-weight: bold;
}
.sv-step .text .step-icon span.num {
  padding: 6px 8px;
  background: #F39;
  color: #FFF;
  font-size: 14px;
  font-size: 1.4rem;
  margin-right: 8px;
  border-radius: 4px;
  vertical-align: middle;
}
.sv-step .text .step-title {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}

@media (max-width: 530px) {
  .sv-step {
    padding: 24px 0;
  }
  .sv-step .photo {
    float: none;
    max-width: 100%;
    width: 100%;
    margin: auto auto 16px;
    padding-right: 0;
    text-align: center;
  }
  .sv-step .text {
    float: none;
    max-width: 100%;
    width: 100%;
  }
}
.sv-step-point {
  padding: 16px 0;
  margin: 16px 0 20px;
  border-top: solid 1px #CCC;
  border-bottom: solid 1px #CCC;
}
.sv-step-point ul {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}
.sv-step-point ul li {
  padding-bottom: 2px;
}
.sv-step-point strong {
  color: #F39;
  display: block;
  font-weight: bold;
}

.step-arrow {
  height: 31px;
  clear: both;
  width: 100%;
  background: url(https:../../uploads_old/2016/12/pink_line.jpg) repeat-x scroll 50% transparent;
  text-align: center;
}

/* ウェディングプランナーインタビュー ======================================== */
.iw-intro-box {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: solid 1px #CCC;
  overflow: hidden;
  position: relative;
}

.iw-box .photo {
  float: left;
  width: 37%;
}
.iw-box .photo .pad-b15 {
  padding-bottom: 15px;
}
.iw-box .photo .iw-profile {
  width: 300px;
  max-width: 100%;
  padding: 15px;
  background: #FAFAFA;
  border-radius: 4px;
  border: solid 1px #CCC;
  box-sizing: border-box;
}
.iw-box .photo .iw-profile .title {
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: solid 1px #CCC;
  display: block;
}
.iw-box .photo .iw-profile .txt-small {
  font-size: 12px;
  font-size: 1.2rem;
  color: #666;
}
.iw-box .text {
  margin-left: 40%;
  margin-right: 20px;
}
.iw-box .text .pink {
  font-size: 16px;
  font-size: 1.6rem;
  color: #FF6699;
  font-weight: bold;
  border-left: 1px solid #FF6699;
  padding-left: 16px;
}
.iw-box .text p {
  font-size: 14px;
  font-size: 1.4rem;
  text-align: justify;
}

@media (max-width: 530px) {
  .iw-box .photo {
    width: 100%;
    float: none;
    text-align: center;
  }
  .iw-box .photo .iw-profile {
    display: none;
  }
  .iw-box .text {
    margin-left: 0;
    margin-right: 0;
  }
  .iw-box .f-image {
    width: 100%;
  }
}
/* ウェディングガイド（スケジュール） ======================================== */
.guide-area01 {
  margin: 24px 0;
  padding: 24px 0;
  border-bottom: solid 1px #CCC;
  background: url(https:../../uploads_old/2016/12/guide_back01.jpg) no-repeat right 40px;
}
.guide-area01 p strong {
  color: #f9a9df;
}
.guide-area01 .m-title {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
}
.guide-area01 .txt-small {
  font-size: 12px;
  font-size: 1.2rem;
}

@media (min-width: 531px) and (max-width: 768px) {
  .guide-area01 {
    padding-right: 230px;
    background-position: right 0px bottom 29px;
  }
}
@media (max-width: 530px) {
  .guide-area01 {
    background: none;
  }
}
.schedule-area {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: solid 1px #CCC;
}
.schedule-area .schedule-date {
  float: left;
  width: 20%;
  margin-right: 15px;
  background: url(https:../../uploads_old/2016/12/guide_icon_calendar.gif) no-repeat left 8px;
  padding-left: 22px;
}
.schedule-area .schedule-date .schedule-date-label {
  font-size: 18px;
  font-size: 1.8rem;
}
.schedule-area .schedule-date .color-skbl {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1;
  color: #29ABE2;
  margin-top: 0;
}
.schedule-area .schedule-detail {
  width: 60%;
  float: left;
}
.schedule-area .schedule-detail p strong {
  color: #f9a9df;
}
.schedule-area .schedule-detail ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* contact-top ======================================== */
.cont-contact-wrap {
  margin: 30px 0 0;
  padding: 20px 10px;
  border: 1px solid #333;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.cont-contact-wrap .cont-contact-box {
  width: 33.33%;
  padding: 0 10px;
  box-sizing: border-box;
  text-align: center;
}
.cont-contact-wrap .cont-contact-box .sub {
  font-size: 16px;
  font-size: 1.6rem;
}
.cont-contact-wrap .cont-contact-box h2 {
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: solid 1px #CCC;
}
.cont-contact-wrap .cont-contact-box p {
  padding-top: 10px;
  font-size: 14px;
  font-size: 1.4rem;
}
.cont-contact-wrap .cont-contact-box .tel {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
}
.cont-contact-wrap .cont-contact-box .tel a {
  color: #c71585;
}
.cont-contact-wrap .cont-contact-box ul.form-btn {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  margin-top: 10px;
}
.cont-contact-wrap .cont-contact-box ul.form-btn li + li {
  margin-top: 15px;
}
.cont-contact-wrap .cont-contact-box ul.form-btn li a {
  color: #FFF;
  display: block;
  text-align: center;
  border-radius: 4px 4px 4px 4px;
  background: #c9bd88;
  padding: 6px 0;
  font-weight: bold;
  font-size: 14px;
  font-size: 1.4rem;
}

@media (max-width: 530px) {
  .cont-contact-wrap {
    padding: 0;
    border: none;
    display: block;
  }
  .cont-contact-wrap .cont-contact-box {
    width: 100%;
    margin-top: 16px;
    padding: 16px;
    border: 1px solid #999;
  }
  .cont-contact-wrap .cont-contact-box p,
  .cont-contact-wrap .cont-contact-box ul.form-btn {
    margin-top: 10px;
  }
}
/* Site Map ======================================== */
.sitemap-wrap {
  display: flex;
  flex-flow: row wrap;
}
.sitemap-wrap .sitemap-asset {
  width: 33.33%;
}
.sitemap-wrap .sitemap-asset h4 {
  margin-top: 36px;
}

@media (max-width: 530px) {
  .sitemap-wrap {
    display: block;
  }
  .sitemap-wrap .sitemap-asset {
    width: 100%;
  }
}
/* 404 page ======================================== */
#notfound {
  text-align: center;
}
#notfound p b {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  color: #ad9c4f;
}
#notfound .notfound-search {
  border: 4px solid #f3f3f3;
  padding: 16px;
}
#notfound .notfound-search .search-form input.search-field {
  width: 300px;
  max-width: 100%;
  height: 3.2em;
  padding: 4px 5px;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
}
#notfound .notfound-search .search-form input.search-field:focus {
  border: 1px solid #ad9c4f;
}
