@charset "UTF-8";

/* -----------------------------------------------
 *  	         btn setting
 * ----------------------------------------------- */

/* =========== btn =========== */
.btn {
  position: relative;
  z-index: 1100;
  font-size: 20px;
  text-align: center;
}
.btn.is-center {
  text-align: center;
}
.btn input {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  border: none;
  background-color: transparent;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  line-height: 3.7;
  cursor: pointer;
}
.btn a,
.btn span {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  width: 230px;
  border: none;
  background-color: rgba(255, 255, 255, 0.95);
  color: #000;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  line-height: 3.7;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity;
}
@media only screen and (max-width: 30em) {
  .btn a,
  .btn span {
    margin-bottom: 10px;
    font-size: 10px;
    font-size: 1rem;
  }
}
.btn a:hover,
.btn span:hover {
  opacity: 0.6;
}
.btn a:hover:after,
.btn span:hover:after {
  right: 12px;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

/* = btn type-b = */
.btn a.type-b:hover:after,
.btn span.type-b:hover:after {
  left: 12px;
}
.btn a.type-b:after,
.btn span.type-b:after {
  right: auto;
  left: 15px;
  background-image: url("../img/icon_arrow-left-black.png");
}

/* = btn is-disabled = */
.btn a.is-disabled,
.btn span.is-disabled {
  background-color: #d6d6d6 !important;
  color: #999 !important;
}
.btn a.is-disabled:after,
.btn span.is-disabled:after {
  background-image: url("../img/icon_arrow-right-gray.png");
}
.btn a.is-disabled:hover,
.btn span.is-disabled:hover {
  opacity: 1 !important;
}
.btn a.is-disabled:hover:after,
.btn span.is-disabled:hover:after {
  right: 15px !important;
  -webkit-transform: rotate(0) !important;
          transform: rotate(0) !important;
}

.btn a:after,
.btn span:after {
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
  width: 6px;
  height: 9px;
  background-image: url("../img/icon_arrow-right-white.png");
  background-size: cover;
  content: "";
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: left, right, -webkit-transform;
  transition-property: left, right, transform;
  transition-property: left, right, transform, -webkit-transform;
}



/* =========== コンテンツをふわっと出す =========== */
[class*="js_scroll-fadein"] {
  opacity: 0;
}




/* -----------------------------------------------
 *  	         box setting
 * ----------------------------------------------- */

/* =========== box =========== */
/* = box_header = */
@media only screen and (max-width: 30em) {
  .box_header {
    margin: auto;
    width: 92%;
  }
}

/* = box_title = */
.box_title {
  position: relative;
  margin-bottom: 4%;
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
}
.box_title span {
  display: block;
  margin-top: 1%;
  font-size: 14px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 48em) {
  .box_title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

/* = box_lead-txt = */
.box_lead-txt {
  margin-bottom: 4%;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}

/* =========== block =========== */
/* = block_header = */
.block_header {
  padding-bottom: 60px;
  text-align: center;
}
@media only screen and (max-width: 54em) {
  .block_header {
    padding-bottom: 5%;
  }
}

/* = block_title = */
.block_title {
  font-weight: normal;
  font-size: 44px;
  font-size: 4.4rem;
  font-family: "Times New Roman", Times, serif;
  line-height: 2.1;
}
@media only screen and (max-width: 48em) {
  .block_title {
    font-size: 26px;
    font-size: 2.6rem;
  }
}

/* = block_lead-txt = */
.block_lead-txt {
  color: #570000;
  letter-spacing: 0.3rem;
  font-weight: bold;
}
@media only screen and (max-width: 48em) {
  .block_lead-txt {
    margin: auto;
    max-width: 80%;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 30em) {
  .block_lead-txt br {
    display: none;
  }
}

/* = block_sub-title = */
.block_sub-title {
  letter-spacing: 0.3rem;
  font-weight: bold;
}
@media only screen and (max-width: 48em) {
  .block_sub-title {
    margin: auto;
    max-width: 80%;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 30em) {
  .block_sub-title br {
    display: none;
  }
}


/* = block_title2 = */
.block_title2 {
  font-weight: normal;
  font-size: 30px;
  font-size: 3.0rem;
  font-family: "Times New Roman", Times, serif;
  line-height: 2.1;
}
@media only screen and (max-width: 48em) {
  .block_title2 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
/* =========== main-area_lead-txt =========== */
.main-area_lead-txt {
  margin-top: 4%;
  padding-bottom: 4%;
  text-align: center;
  line-height: 2.28;
}
@media only screen and (max-width: 48em) {
  .main-area_lead-txt {
    margin: 4% auto 0;
    max-width: 90%;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 30em) {
  .main-area_lead-txt br {
    display: none;
  }
}




/* -----------------------------------------------
 *  	         modal setting
 * ----------------------------------------------- */

/* = js_modal-cover = */
.js_modal-cover {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  overflow: auto;
  min-width: 320px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

/* = js_modal-outer = */
.js_modal-outer {
  position: relative;
  margin: 100px auto;
  max-width: 1024px;
  width: 96%;
}

/* = modal_block-outer = */
.modal_block-outer {
  display: none;
}

/* = js_modal-close-btn = */
.js_modal-close-btn {
  position: absolute;
  right: 0;
  z-index: 1;
  margin: auto;
  width: 50px;
  height: 50px;
}
.js_modal-close-btn:hover:before {
  opacity: 0.6;
}
.js_modal-close-btn:before {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: transparent url("../img/icon_btn-close-black.png") center center no-repeat;
  content: "";
  cursor: pointer;
  transition: opacity 0.15s linear;
}

/* = modal_block = */
.modal_block {
  position: relative;
  margin: auto;
  margin: auto;
  padding: 50px 0;
  max-width: 1024px;
  width: 100%;
  background-color: #fff;
}
.modal_block:nth-child(2n) {
  background-color: #f5f5f5;
}
.modal_block:nth-child(2n) .modal-box {
  background-color: #fff;
}

/* = modal_header = */
.modal_header {
  margin-bottom: 4%;
}

/* = modal_title = */
.modal_title {
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
}
@media only screen and (max-width: 48em) {
  .modal_title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

/* = modal_price = */
.modal_price {
  color: #e30000;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
}
.modal_price strong {
  font-size: 28px;
  font-size: 2.8rem;
}
.modal_price span {
  display: inline-block;
  margin-top: -10px;
  margin-left: 15px;
  padding: 0 5px;
  background-color: #e30000;
  color: #fff;
  vertical-align: middle;
  font-size: 16px;
  font-size: 1.6rem;
}




/* -----------------------------------------------
 *  	         eyecatch setting
 * ----------------------------------------------- */
/* トップページのセレモニーキュイジーヌに使用  */

/* = eyecatch_block = */
.eyecatch_block {
  position: relative;
  padding-top: 0 !important;
}
@media only screen and (max-width: 48em) {
  .eyecatch_block {
    padding-top: 0 !important;
  }
}
.eyecatch_block.js_is-hover .eyecatch_bg-img:before {
  opacity: 1;
}
.eyecatch_block .btn {
  width: 180px;
}
.eyecatch_block .btn a {
  z-index: 1200;
  width: 180px;
}
@media only screen and (max-width: 48em) {
  .eyecatch_block .btn {
    margin: auto;
  }
}
.eyecatch_block >.box-link {
  background-color: transparent;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: background-color;
}
@media only screen and (max-width: 48em) {
  .eyecatch_block >.box-link {
    display: none;
  }
}

/* = eyecatch_content = */
.eyecatch_content {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 48em) {
  .eyecatch_content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 100%;
    background-color: #f5f5f5;
  }
}

/* = eyecatch_bg-img = */
.eyecatch_bg-img {
  background-position: center center;
  background-size: cover;
}
@media only screen and (max-width: 48em) {
  .eyecatch_bg-img {
    padding-top: 93.33333%;
    width: 100%;
  }
}
.eyecatch_bg-img:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  content: "";
  opacity: 0;
  transition-timing-function: linear;
  transition-duration: 0.3s;
  transition-property: opacity;
}
.eyecatch_bg-img img {
  visibility: hidden;
}
@media only screen and (max-width: 48em) {
  .eyecatch_bg-img img {
    display: none;
  }
}

/* = eyecatch_header = */
.eyecatch_header {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1100;
  margin: auto;
  padding: 40px;
  width: 440px;
  height: 310px;
  background-color: rgba(255, 255, 255, 0.8);
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: background-color;
}
.eyecatch_header.type-l {
  left: 0;
}
.eyecatch_header.type-c {
  right: 0;
  left: 0;
}
.eyecatch_header.type-r {
  right: 0;
}
@media only screen and (min-width: 48.0625em) {
  .eyecatch_header:hover {
    background-color: #fff;
  }
}
@media only screen and (max-width: 48em) {
  .eyecatch_header {
    position: relative;
    bottom: 100%;
    padding: 5% 0;
    width: 100%;
    height: auto;
    background-color: #f5f5f5;
    text-align: center;
  }
  .eyecatch_header >a {
    display: none;
  }
}

/* = eyecatch_title = */
.eyecatch_title {
  font-weight: normal;
  font-size: 46px;
  font-size: 4.6rem;
  font-family: "Times New Roman", Times, serif;
  line-height: 1.8;
}
@media only screen and (max-width: 48em) {
  .eyecatch_title {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

/* = eyecatch_lead-txt = */
.eyecatch_lead-txt {
  margin-bottom: 20px;
  letter-spacing: 0.2rem;
  font-weight: bold;
}
@media only screen and (max-width: 48em) {
  .eyecatch_lead-txt {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/* = eyecatch_block wrapper = */
@media only screen and (max-width: 48em) {
  .tile_block .wrapper {
    margin: auto;
    padding-bottom: 0;
    width: 100%;
  }
}




/* -----------------------------------------------
 *  	         tile setting
 * ----------------------------------------------- */

/* =========== tile_block =========== */
.tile_block img {
  position: relative;
  z-index: 10;
}

/* = layout-2_1 = */
.tile_block .layout-2_1 .tile-box_bg-img {
  padding-top: 67.74669%;
  width: 100%;
}
.tile_block .layout-2_1 .tile-box_bg-img img {
  display: none;
}

/* = layout-3_1 = */
.tile_block .layout-3_1 .tile-box_bg-img {
  padding-top: 101.76991%;
  width: 100%;
}
.tile_block .layout-3_1 .tile-box_bg-img img {
  display: none;
}

/* = type-a = */
.tile_block.type-a .wrapper {
  margin: 0;
  padding-bottom: 0;
  max-width: 100%;
  width: 100%;
}

.tile_block.type-a .tile-box_header {
  width: 160px;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.8);
}
.tile_block.type-a .tile-box_header:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 145px;
  height: 135px;
  content: "";
}
.tile_block.type-a .tile-box_header.js_is-hover {
  max-height: 190px;
  width: 80%;
  height: 70%;
  background-color: transparent;
}
/* tileBlockのホバー時の設定 */
.tile_block.type-a .tile-box_header.js_is-hover .tile-box_title {
  height: auto;
  font-weight: normal;
  font-size: 34px;
  font-size: 3.4rem;
  font-family: "Times New Roman", Times, serif;
  line-height: 1.6;
}
.tile_block.type-a .tile-box_header.js_is-hover .tile-box_title span {
  position: relative;
}
.tile_block.type-a .tile-box_header.js_is-hover .tile-box_sub-title {
  margin-bottom: 4%;
  font-size: 13px;
  font-size: 1.3rem;
}
.tile_block.type-a .tile-box_header.js_is-hover .tile-box_text {
  position: relative;
  display: block;
}
.tile_block.type-a .tile-box_header.js_is-hover:before {
  display: none;
}
@media only screen and (max-width: 54em) {
  .tile_block.type-a .tile-box_header {
    width: 160px;
    height: 80px;
  }
  .tile_block.type-a .tile-box_header:before {
    width: 150px;
    height: 70px;
  }
  .tile_block.type-a .tile-box_header.js_is-hover {
    height: 120px;
  }
  .tile_block.type-a .tile-box_header.js_is-hover .tile-box_title {
    font-size: 26px;
    font-size: 2.6rem;
  }
  .tile_block.type-a .tile-box_header.js_is-hover .tile-box_text span {
    margin-top: 0;
  }
}

.tile_block.type-a .tile-box_title {
  font-weight: normal;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 0.8;
}
@media only screen and (max-width: 48em) {
  .tile_block.type-a .tile-box_title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.tile_block.type-a .tile-box_title span {
  bottom: 0;
}

.tile_block.type-a .tile-box_sub-title {
  line-height: 2.1;
}
@media only screen and (max-width: 48em) {
  .tile_block.type-a .tile-box_sub-title {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.tile_block.type-a .tile-box_text {
  position: absolute;
  bottom: 0;
  display: none;
  width: 100%;
  font-weight: bold;
  font-size: 15px;
  font-size: 1.5rem;
}
.tile_block.type-a .tile-box_text span {
  display: block;
  margin-top: 4%;
  font-weight: bold;
  font-size: 13px;
  font-size: 1.3rem;
}

@media only screen and (max-width: 54em) {
  .tile_block.type-a .layout-2_1 .tile-box_bg-img,
  .tile_block.type-a .layout-3_1 .tile-box_bg-img {
    padding-top: 66.66667%;
    width: 100%;
  }
}

/* = type-b = */
.tile_block.type-b .wrapper {
  padding-bottom: 0;
}

.tile_block.type-b .tile-box_header {
  width: 90%;
  height: 90px;
  opacity: 0;
  transition-timing-function: linear;
  transition-duration: 0.3s;
  transition-property: opacity;
}
@media only screen and (max-width: 54em) {
  .tile_block.type-b .tile-box_header {
    position: relative;
    opacity: 1;
  }
}

.tile_block.type-b .tile-box_title {
  letter-spacing: 0.2rem;
  font-size: 12px;
  font-size: 1.2rem;
}
.tile_block.type-b .tile-box_title span {
  top: 10px;
}

.tile_block.type-b .tile-box_sub-title {
  font-weight: bold;
  font-size: 15px;
  font-size: 1.5rem;
}

@media only screen and (max-width: 54em) {
  .tile_block.type-b {
    padding-bottom: 0;
  }
  .tile_block.type-b .layout-2_1 .tile-box_bg-img,
  .tile_block.type-b .layout-3_1 .tile-box_bg-img {
    padding-top: 40%;
    width: 100%;
  }
  .tile_block.type-b .tile-box_header {
    padding-bottom: 2%;
  }
  .tile_block.type-b .tile-box_title {
    font-size: 11px;
    font-size: 1.1rem;
  }
  .tile_block.type-b .tile-box_title span {
    top: 40%;
  }
  .tile_block.type-b .tile-box_sub-title {
    font-size: 12px;
    font-size: 1.2rem;
  }
}



/* =========== tile_box =========== */

/* = tile-box_outer = */
.tile-box_outer {
  position: relative;
  margin-bottom: 0.2%;
  font-size: 0;
}
@media only screen and (max-width: 54em) {
  .tile-box_outer {
    margin-bottom: 0;
  }
}

/* = tile-box = */
.tile-box {
  position: relative;
  overflow: hidden;
}
.tile-box:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
}
.tile-box:after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  content: "";
  opacity: 0;
  transition-timing-function: linear;
  transition-duration: 0.3s;
  transition-property: opacity;
}

/* = layout-2_1 = */
.tile-box.layout-2_1 {
  display: inline-block ;
  margin-right: auto;
  margin-right: 0.1%;
  margin-left: 0.1%;
  width: 49.8%;
  vertical-align: top;
  font-size: small;
}
@media only screen and (min-width: 48.0625em) {
  .tile-box.layout-2_1 {
    width: 49.8%;
  }
  .tile-box.layout-2_1:nth-child(n) {
    width: 49.9% ;
  }
  .tile-box.layout-2_1:nth-child(2n+1) {
    margin-left: 0;
  }
  .tile-box.layout-2_1:nth-child(2n+2) {
    margin-right: 0;
  }
}

/* = layout-3_1 = */
.tile-box.layout-3_1 {
  display: inline-block ;
  margin-right: auto;
  margin-right: 0.1%;
  margin-left: 0.1%;
  width: 33.13333%;
  vertical-align: top;
  font-size: small;
}
@media only screen and (min-width: 48.0625em) {
  .tile-box.layout-3_1 {
    width: 33.13333%;
  }
  .tile-box.layout-3_1:nth-child(n) {
    width: 33.2% ;
  }
  .tile-box.layout-3_1:nth-child(3n+1) {
    margin-left: 0;
  }
  .tile-box.layout-3_1:nth-child(3n+3) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 54.0625em) {
  .tile-box:hover:after {
    opacity: 0.7;
  }
  .tile-box:hover .js_blur-img {
    opacity: 1;
  }
  .tile-box:hover .tile-box_header {
    opacity: 1;
  }
}
@media only screen and (max-width: 54em) {
  .tile-box.layout-2_1,
  .tile-box.layout-3_1 {
    margin-right: 0;
    margin-bottom: 3px;
    margin-left: 0;
    width: 100% !important;
  }
}

/* = tile-box_bg-img = */
.tile-box_bg-img {
  background-position: center center;
  background-size: cover;
}
.tile-box_bg-img img {
  visibility: hidden;
}
@media only screen and (max-width: 54em) {
  .tile-box_bg-img img {
    display: none;
  }
}

.js_blur-img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  opacity: 0;
  transition-timing-function: linear;
  transition-duration: 0.3s;
  transition-property: opacity;
}

/* = tile-box_header = */
.tile-box_header {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  margin: auto;
  text-align: center;
}

/* = tile-box_title = */
.tile-box_title {
  position: relative;
  width: 100%;
  height: 50%;
  font-family: "Times New Roman", Times, serif;
}
.tile-box_title span {
  position: absolute;
  display: block;
  width: 100%;
}




/* -----------------------------------------------
 *  	         box setting
 * ----------------------------------------------- */

/* =========== image_block =========== */
.image_block {
  position: relative;
  font-size: 0;
}
.image_block .btn {
  margin: auto;
  width: 200px;
}
.image_block .btn a {
  width: 100%;
}
@media only screen and (max-width: 48em) {
  .image_block .wrapper {
    margin: auto;
    padding: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 48em) {
.image_block {
    padding: 0;
}
.image_block .btn {
    margin-bottom: 5%;
		width:230px;
}
.image_block .btn a{
	font-size:12px;
	font-size:1.2rem;
	outline:solid 1px #570000;
	border:solid 1px #FFFFFF;
}
.image_block .btn a::after{
	width:8px;
	height:12px;
}
}



/* =========== image-box =========== */
.image-box {
  position: relative;
  margin-bottom: 60px;
}
@media only screen and (max-width: 48em) {
  .image-box {
    margin-bottom: 5%;
  }
}
.image-box:hover .image-box_bg-img:before {
  border-color: #1f0000;
}

/* = layout-2_1 = */
.image-box.layout-2_1 {
  display: inline-block ;
  margin-right: auto;
  margin-right: 2%;
  margin-left: 2%;
  width: 46%;
  vertical-align: top;
  font-size: small;
}
@media only screen and (min-width: 48.0625em) {
  .image-box.layout-2_1 {
    width: 46%;
  }
  .image-box.layout-2_1:nth-child(n) {
    width: 48% ;
  }
  .image-box.layout-2_1:nth-child(2n+1) {
    margin-left: 0;
  }
  .image-box.layout-2_1:nth-child(2n+2) {
    margin-right: 0;
  }
}
.image-box.layout-2_1 .image-box_bg-img {
  padding-top: 50%;
  width: 100%;
}
.image-box.layout-2_1 .image-box_title {
  font-weight: normal;
  font-size: 34px;
  font-size: 3.4rem;
}
.image-box.layout-2_1 .image-box_lead-txt {
  font-weight: normal;
  font-size: 14px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 48em) {
  .image-box.layout-2_1 {
    margin: 0;
    width: 100%;
  }
}

/* = image-box_bg-img = */
.image-box_bg-img {
  position: relative;
  padding-top: 33.78906%;
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.image-box_bg-img:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-width: 6px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.3);
  background-color: rgba(0, 0, 0, 0.35);
  content: "";
  transition: border-color 0.15s linear;
}
.image-box_bg-img img {
  position: absolute;
  top: 0;
  visibility: hidden;
}
@media only screen and (max-width: 48em) {
  .image-box_bg-img {
    padding-top: 50%;
    width: 100%;
  }
  .image-box_bg-img:before {
    border: none;
  }
}

/* = image-box_header = */
.image-box_header {
  position: absolute;
  top: 0;
  width: 100%;
  height: 50%;
  text-align: center;
}

/* = image-box_title = */
.image-box_title {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  margin-bottom: 5px;
  color: #fff;
  font-weight: normal;
  font-size: 44px;
  font-size: 4.4rem;
  font-family: "Times New Roman", Times, serif;
  line-height: 1.8;
}
@media only screen and (max-width: 48em) {
  .image-box_title {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

/* = image-box_content = */
.image-box_content {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  text-align: center;
}
@media only screen and (max-width: 48em) {
  .image-box_content {
    position: relative;
    height: auto;
  }
}

/* = image-box_lead-txt = */
.image-box_lead-txt {
  margin-bottom: 4%;
  color: #fff;
  text-align: center;
  letter-spacing: 0.2rem;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
}
@media only screen and (max-width: 48em) {
  .image-box_lead-txt {
    margin-bottom: 0;
    padding: 2%;
    color: #000;
    font-size: 12px;
    font-size: 1.2rem;
  }
}



/* =========== banner_block =========== */
.banner_block {
  position: relative;
}
@media only screen and (max-width: 48em) {
  .banner_block .wrapper {
    margin: auto;
    padding-bottom: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 48em) {
  .banner_block {
    padding-bottom: 0;
  }
}

/* = type-a = */
.banner_block.type-a .banner-box_title {
  font-weight: normal;
  font-size: 13px;
  font-size: 1.3rem;
  font-family: "Times New Roman", Times, serif;
}
.banner_block.type-a .banner-box_lead-txt {
  letter-spacing: 0.1rem;
  font-size: 18px;
  font-size: 1.8rem;
}
@media only screen and (max-width: 48em) {
  .banner_block.type-a .banner-box_link {
    margin: auto;
  }
}

/* = type-b = */
.banner_block.type-b .banner-box_title {
  margin-top: 2%;
  font-weight: normal;
  font-size: 34px;
  font-size: 3.4rem;
  font-family: "Times New Roman", Times, serif;
}
.banner_block.type-b .banner-box_lead-txt {
  letter-spacing: 0.1rem;
  font-size: 13px;
  font-size: 1.3rem;
}
@media only screen and (max-width: 48em) {
  .banner_block.type-b .banner-box_link {
    margin: auto;
  }
}

/* = banner_block color = */
.banner_block.color_a_1 .banner-box {
  background-color: #e6dbce;
}
.banner_block.color_b_1 .banner-box {
  background-color: #b49360;
}
.banner_block.color_b_1 .banner-box_title,
.banner_block.color_b_1 .banner-box_lead-txt,
.banner_block.color_b_1 .banner-box_link {
  color: #fff;
}
.banner_block.color_b_1 .banner-box_link:after {
  background-image: url("../img/icon_arrow-right-white.png");
  background-size: contain;
}
@media only screen and (max-width: 48em) {
  .banner_block.color_b_1 .banner-box_link {
    margin: auto;
  }
}



/* =========== banner-box =========== */
.banner-box {
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity;
  background-color: #e6dbce;
}
@media only screen and (max-width: 48em) {
  .banner-box {
    margin-bottom: 5%;
  }
}
.banner-box:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: "";
}
.banner-box:hover {
  opacity: 0.8;
}
.banner-box:hover .banner-box_content a:after {
  right: -5px;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

/* = banner-box_bg-img = */
.banner-box_bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner-box_bg-img img {
  visibility: hidden;
}
@media only screen and (max-width: 48em) {
  .banner-box_bg-img {
    position: relative;
    padding-top: 45.33333%;
    width: 100%;
    width: 100%;
  }
  .banner-box_bg-img img {
    display: none;
  }
}

/* = banner-box_content = */
.banner-box_content {
  position: relative;
  z-index: 100;
  float: right;
  padding: 4%;
  width: 50%;
}
.banner-box_content:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 96%;
  height: 90%;
  outline: 1px solid #fff;
  content: "";
}
@media only screen and (max-width: 48em) {
  .banner-box_content {
    position: relative;
    padding: 30px 6%;
    width: 100%;
    text-align: center;
  }
}

/* = banner-box_title = */
.banner-box_title {
  margin-bottom: 2%;
  letter-spacing: 0.2rem;
  font-weight: bold;
  font-size: 24px;
  font-size: 2.4rem;
}
@media only screen and (max-width: 48em) {
  .banner-box_title {
    margin-bottom: 2%;
    font-size: 20px;
    font-size: 2rem;
  }
}
.banner-box_title span{
margin-bottom: 2%;
  letter-spacing: 0.2rem;
  font-weight: nomal;
  font-size: 12px;
  font-size: 1.1rem;
  font-family: "游明朝", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "ヒラギノ明朝 Pro W3", "HiraMinProN-W3", "HG明朝E", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ヒラギノ明朝 Pro W6", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

/* = banner-box_lead-txt = */
.banner-box_lead-txt {
  margin-bottom: 2%;
  font-weight: normal;
  font-size: 13px;
  font-size: 1.3rem;
}
@media only screen and (max-width: 48em) {
  .banner-box_lead-txt {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/* = banner-box_link = */
.banner-box_link {
  position: relative;
  display: block;
  width: 80px;
  color: #444;
  text-decoration: none;
}
.banner-box_link:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  margin: auto;
  width: 6px;
  height: 9px;
  background: transparent url("../img/icon_arrow-right-black.png") center center no-repeat;
  content: "";
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: right, -webkit-transform;
  transition-property: right, transform;
  transition-property: right, transform, -webkit-transform;
}



/* =========== card_block =========== */
.card_block .btn {
  margin-bottom: 60px;
  text-align: center;
  font-size: 0;
}
@media only screen and (max-width: 48em) {
  .card_block .btn {
    margin-top: 5%;
    margin-bottom: 5%;
  }
}
.card_block .btn a {
  margin: 0 15px;
  width: 200px;
}

@media only screen and (max-width: 48em) {
  .card_block .wrapper {
    margin: auto;
    width: 100%;
  }
}

@media only screen and (max-width: 48em) {
  .card_block .btn a {
    margin: 5% 2% 0;
    max-width: 200px;
    width: 46%;
  }
}

/* =========== card_box =========== */
.card-box_outer {
  font-size: 0;
}

.card-box {
  position: relative;
  background-color: #fff;
}

/* = layout-3_1 = */
.card-box.layout-3_1 {
  display: inline-block ;
  margin-right: auto;
  margin-right: 2%;
  margin-bottom: 4%;
  margin-left: 2%;
  width: 29.33333%;
  vertical-align: top;
  font-size: small;
}
/* 190613_2分割作成 */
.card-box.layout-2_1 {
  width: 48% !important;
}
@media only screen and (min-width: 48.0625em) {
  .card-box.layout-3_1 {
    width: 29.33333%;
  }
  .card-box.layout-3_1:nth-child(n) {
    width: 30.66667% ;
  }
  .card-box.layout-3_1:nth-child(3n+1) {
    margin-left: 0;
  }
  .card-box.layout-3_1:nth-child(3n+3) {
    margin-right: 0;
  }
  /* 190613_2分割作成 layout-3_1が付いた状態でlayout-2_1をかけることで強制的に2分の1にする */
  .card-box.layout-2_1:nth-child(2) {
    margin-right: 0;
  }
}
.card-box.layout-3_1 .card-box_img {
  position: relative;
}
.card-box.layout-3_1 .card-box_img:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  content: "";
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: background-color;
}
.card-box.layout-3_1 .card-box_img .btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100px;
  height: 31px;
  opacity: 0;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity;
}
.card-box.layout-3_1 .card-box_img .btn a {
  margin: 0;
  width: 100px;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 2.9;
}
.card-box.layout-3_1 .card-box_img .btn a:after {
  display: none;
}
.card-box.layout-3_1 .card-box_img.js_is-hover .btn {
  opacity: 1;
}
.card-box.layout-3_1 .card-box_content {
  position: relative;
  padding: 15px 10px;
  font-weight: normal;
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: color;
}
@media only screen and (max-width: 48em) {
  .card-box.layout-3_1 .card-box_content {
    padding: 10px 10px 20px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.card-box.layout-3_1 .card-box_title {
  position: relative;
  padding: 0 20px;
  text-align: left;
  font-weight: normal;
  font-size: 12px;
  font-size: 1.2rem;
}
.card-box.layout-3_1 .card-box_title:before {
  display: block;
  content: "";
}
.card-box.layout-3_1 .card-box_title:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  margin: auto;
  width: 6px;
  height: 11px;
  background: transparent url("../img/icon_arrow-right-black.png") center center no-repeat;
  background-size: contain;
  content: "";
}
.card-box.layout-3_1:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 75px;
  height: 75px;
  content: "";
}
/* fair */
.card-box.layout-3_1.is-fair:before {
  background: transparent url("../img/icon_category-fair.png") left top no-repeat;
  background-size: contain;
}
.card-box.layout-3_1.is-fair .card-box_img.js_is-hover:before {
  background-color: rgba(255, 255, 255, 0.45);
}
.card-box.layout-3_1.is-fair .card-box_content.js_is-hover {
  color: #570000;
}
.card-box.layout-3_1.is-fair .card-box_title:before {
  display: block;
  color: #570000;
  content: "FAIR";
}
.card-box.layout-3_1.is-fair .btn a {
  background-color: #1f0000;
  color: #fff;
}
/* plan */
.card-box.layout-3_1.is-plan:before {
  background: transparent url("../img/icon_category-plan.png") left top no-repeat;
  background-size: contain;
}
.card-box.layout-3_1.is-plan .card-box_img.js_is-hover:before {
  background-color: rgba(255, 255, 255, 0.45);
}
.card-box.layout-3_1.is-plan .card-box_content.js_is-hover {
  color: #570000;
}
.card-box.layout-3_1.is-plan .card-box_title:before {
  display: block;
  color: #570000;
  content: "PLAN";
}
.card-box.layout-3_1.is-plan .btn a {
  background-color: #1f0000;
  color: #fff;
}
@media only screen and (max-width: 48em) {
  .card-box.layout-3_1 {
    margin: 0;
    width: 100%;
  }
  /* 190613_2分割作成 */
  .card-box.layout-2_1 {
    width: 100% !important;
  }
}



/* =========== entries-box =========== */
.entries-box_outer {
  font-size: 0;
}

.entries-box {
  position: relative;
  background-color: #fff;
}

/* = layout-2_n = */
.entries-box.layout-2_n {
  display: inline-block ;
  margin-right: auto;
  margin-right: 2%;
  margin-bottom: 4%;
  margin-left: 2%;
  width: 46%;
  vertical-align: top;
  font-size: small;
}
@media only screen and (min-width: 48.0625em) {
  .entries-box.layout-2_n {
    width: 46%;
  }
  .entries-box.layout-2_n:nth-child(n) {
    width: 48% ;
  }
  .entries-box.layout-2_n:nth-child(2n+1) {
    margin-left: 0;
  }
  .entries-box.layout-2_n:nth-child(2n+2) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 48em) {
  .entries-box.layout-2_n {
    margin: 0;
    margin-top: -1px;
    padding: 2% 0;
    width: 100%;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }
}
.entries-box.layout-2_n .entries-box_img {
  position: relative;
  width: 120px;
  height: 120px;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity;
}
.entries-box.layout-2_n .entries-box_img:hover {
  opacity: 0.7;
}
.entries-box.layout-2_n.is-news .entries-box_content:before {
  background: transparent url("../img/icon_category-news.png") left top no-repeat;
}
.entries-box.layout-2_n.is-info .entries-box_content:before {
  background: transparent url("../img/icon_category-info.png") left top no-repeat;
}
.entries-box.layout-2_n .entries-box_content {
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 120px;
  padding: 15px;
  font-weight: normal;
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
.entries-box.layout-2_n .entries-box_content:before {
  display: block;
  margin-bottom: 4%;
  width: 70px;
  height: 20px;
  content: "";
}
.entries-box.layout-2_n .entries-box_title {
  font-weight: normal;
  font-size: 12px;
  font-size: 1.2rem;
}
.entries-box.layout-2_n .entries-box_title a {
  display: block;
  color: #444;
  text-decoration: none;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: color;
}
.entries-box.layout-2_n .entries-box_title a:hover {
  color: #570000;
}
.entries-box.layout-2_n .entries-box_title span {
  display: block;
}



/* =========== parallax-box =========== */
.parallax-box {
  position: relative;
  width: 100%;
  background-color: #fff;
}
.parallax-box >div {
  position: relative;
}

/* = parallax-box_title = */
.parallax-box_title {
  position: relative;
  top: 0;
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
}
@media only screen and (max-width: 48em) {
  .parallax-box_title {
    position: relative !important;
    max-height: 500px;
    opacity: 1 !important;
  }
}
.parallax-box_title img {
  visibility: hidden;
}

/* = parallax-box_inner = */
.parallax-box_inner {
  margin: auto;
  max-width: 1024px;
}
@media only screen and (max-width: 66.5625em) {
  .parallax-box_inner {
    margin: 0 2%;
    width: 96%;
  }
}
@media only screen and (max-width: 48em) {
  .parallax-box_inner {
    margin: 0;
    width: 100%;
  }
}

/* = parallax-box_item = */
.parallax-box_item {
  position: relative;
  padding-bottom: 300px;
}
.parallax-box_item:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: "";
}
@media only screen and (max-width: 48em) {
  .parallax-box_item {
    padding: 4%;
    text-align: center;
    font-size: 0;
  }
}
.parallax-box_item img {
  position: absolute;
  width: auto;
}
.parallax-box_item img:first-child {
  position: relative;
}
@media only screen and (max-width: 48em) {
  .parallax-box_item img {
    position: relative;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    display: inline-block;
    float: none !important;
    margin: 0 !important;
    width: 100%;
    opacity: 1;
  }
}
.parallax-box_item p {
  position: absolute;
  width: auto;
  max-width:450px;
  padding:10px;
  color: #000;
  text-shadow: 0 1px 0 #aaa;
  letter-spacing: 0.2rem;
  font-weight: bold;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 2.1;
  background-color:rgba(255,255,255,0.2);
  box-shadow:rgba(255,255,255,0.2) 0px 0px 6px 3px;
  -webkit-box-shadow:rgba(255,255,255,0.2) 0px 0px 6px 3px;
  -moz-box-shadow:rgba(255,255,255,0.2) 0px 0px 6px 3px;
}
@media only screen and (max-width: 48em) {
  .parallax-box_item p {
    position: relative;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    display: block;
    float: none !important;
    margin: 0 !important;
    padding: 2% 0 0 0;
    width: 100%;
	max-width:none;
    text-align: center;
    text-shadow: none;
    font-size: 12px;
    font-size: 1.2rem;
    opacity: 1;
  }
}


/* = ここから追加「和装」コラム = */
/* = parallax-box_item002 = */
.parallax-box_item002 {
  position: relative;
  margin: -200px 0 100px;
  padding: 0;
  background-color: #e6dbce;
}
.parallax-box_item002:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: "";
}
@media only screen and (max-width: 48em) {
  .parallax-box_item002 {
    margin-top: 80px;
    padding: 4%;
    text-align: center;
    font-size: 0;
  }
}
.parallax-box_item002 img {
  position: absolute;
  width: 50%;
}
.parallax-box_item002 img:first-child {
  position: relative;
}
@media only screen and (max-width: 48em) {
  .parallax-box_item002 img {
    position: relative;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    display: inline-block;
    float: none !important;
    margin: 0 !important;
    width: 100%;
    opacity: 1;
  }
}
.parallax-box_item002 div {
  position: absolute;
  width: 50%;
  padding: 3%;
}
@media only screen and (max-width: 48em) {
  .parallax-box_item002 div {
    position: relative;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    display: block;
    float: none !important;
    margin: 0 !important;
    padding-top: 2%;
    width: 100%;
    text-align: center;
    text-shadow: none;
    font-size: 12px;
    font-size: 1.2rem;
    opacity: 1;
  }
}
.parallax-box_item002 div h3 {
  padding-bottom: 10px;
  color: #000;
  letter-spacing: 0.2rem;
  font-weight: bold;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 1.4;
}
@media only screen and (max-width: 48em) {
  .parallax-box_item002 div h3 {
    margin: 0 !important;
    padding: 0;
    width: 100%;
    text-align: center;
    text-shadow: none;
    font-size: 18px;
    font-size: 1.8rem;
    opacity: 1;
  }
}
.parallax-box_item002 div p {
  color: #000;
  letter-spacing: 0.2rem;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8;
}
@media only screen and (max-width: 48em) {
  .parallax-box_item002 div p {
    position: relative;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    display: block;
    float: none !important;
    margin: 0 !important;
    padding-top: 2%;
    width: 100%;
    text-shadow: none;
    font-size: 12px;
    font-size: 1.2rem;
    opacity: 1;
    text-align: left;
  }
}
/* = ここまで追加「和装」コラム = */


/* -----------------------------------------------
 *  	         slide setting
 * ----------------------------------------------- */

/* =========== slide_block =========== */
.slide_block .block_header {
  display: none;
}

/* = slide-box = */
.slide-box:nth-child(2n+1) .slide-box_slider {
  float: right;
}

/* = slide-box_bg-img = */
.slide-box_bg-img {
  position: relative;
  overflow: hidden;
  padding-top: 44.11765%;
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.slide-box_bg-img img {
  position: absolute;
  top: 0;
  bottom: 0;
  visibility: hidden;
  margin: auto;
}
@media only screen and (max-width: 54em) {
  .slide-box_bg-img {
    display: none;
  }
}

/* = slide-box_inner = */
.slide-box_inner:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: "";
}

/* = slide-box_header = */
.slide-box_header {
  position: relative;
  float: left;
  padding-top: 50%;
  width: 50%;
  background-color: #f5f5f5;
}
@media only screen and (max-width: 54em) {
  .slide-box_header {
    padding-top: 0;
    width: 100%;
  }
}

/* = slide-box_header-inner = */
.slide-box_header-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 500px;
  width: 85%;
}
@media only screen and (max-width: 54em) {
  .slide-box_header-inner {
    position: relative;
    padding: 0 4% 8%;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
  }
}

/* = slide-box_title = */
.slide-box_title {
  text-align: center;
  font-weight: normal;
  font-size: 45px;
  font-size: 4.5rem;
  font-family: "Times New Roman", Times, serif;
  line-height: 1.8;
}
@media only screen and (max-width: 54em) {
  .slide-box_title {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

/* = slide-box_sub-title = */
.slide-box_sub-title {
  margin-bottom: 5.6%;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.8;
}
.slide-box_sub-title span {
  display: block;
  font-size: 13px;
  font-size: 1.3rem;
}
.slide-box_sub-title span:before {
  content: "— ";
}
.slide-box_sub-title span:after {
  content: " —";
}
@media only screen and (max-width: 54em) {
  .slide-box_sub-title {
    font-size: 17px;
    font-size: 1.7rem;
  }
  .slide-box_sub-title span {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

/* = slide-box_lead-txt = */
.slide-box_lead-txt {
  margin-bottom: 4.4%;
  color: #570000;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight:normal;
  line-height: 1.8;
}
@media only screen and (max-width: 54em) {
  .slide-box_lead-txt {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/* = slide-box_description = */
.slide-box_description {
  font-size: 13px;
  font-size: 1.3rem;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  line-height: 2;
}
@media only screen and (max-width: 54em) {
  .slide-box_description {
    margin-bottom: 4%;
    font-size: 11px;
    font-size: 1.1rem;
  }
}

/* = slide-box_aside = */
.slide-box_aside {
  margin-top: 4%;
  padding: 4%;
  background-color: #fff;
}
.slide-box_aside .aside_title {
  color: #570000;
  font-size: 11px;
  font-size: 1.1rem;
}
.slide-box_aside .aside_sub-title {
  font-weight: bold;
}
.slide-box_aside .aside_sub-title span {
  padding-left: 2%;
  font-size: 11px;
  font-size: 1.1rem;
}
.slide-box_aside .aside_description {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight:500;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}

/* = slide-box_slider = */
.slide-box_slider {
  position: relative;
  float: left;
  overflow: hidden;
  padding-top: 50%;
  width: 50%;
}
@media only screen and (max-width: 54em) {
  .slide-box_slider {
    padding-top: 101.33333%;
    width: 100%;
    width: 100%;
    background-color: #f5f5f5;
  }
}

/* = slide-box_slider-inner = */
.slide-box_slider-inner {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
}
.slide-box_slider-inner .sp-slides {
  position: relative;
  top: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
.slide-box_slider-inner .sp-thumbnails-container {
  position: relative;
  margin: 0 !important;
  padding-top: 13.82353%;
  width: 100%;
  width: 100% !important;
}
.slide-box_slider-inner .sp-thumbnails {
  position: absolute;
  top: 0;
  padding-top: 1%;
  width: 100% !important;
  height: 100% !important;
  font-size: 0;
}
@media only screen and (max-width: 54em) {
  .slide-box_slider-inner .sp-thumbnails {
    display: none;
  }
}
.slide-box_slider-inner .sp-thumbnail-container {
  position: relative;
  display: inline-block !important;
  overflow: hidden;
  box-sizing: border-box;
  margin-right: auto;
  margin-right: 1%;
  margin-left: 1%;
  padding-top: 12.05882%;
  width: 14.66667%;
  width: 15.58824%;
  background-color: #fff;
  vertical-align: top;
  font-size: small;
}
@media only screen and (min-width: 54.0625em) {
  .slide-box_slider-inner .sp-thumbnail-container {
    width: 14.66667%;
  }
  .slide-box_slider-inner .sp-thumbnail-container:nth-child(n) {
    margin-right: 1%;
    margin-left: 0;
    width: 15.5% !important;
  }
  .slide-box_slider-inner .sp-thumbnail-container:nth-child(6n+1) {
    margin-left: 1%;
  }
}
.slide-box_slider-inner .sp-thumbnail-container:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 94%;
  height: 94%;
  background-color: #570000;
  content: "";
}
.slide-box_slider-inner .sp-thumbnail-container img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto !important;
  width: 100% !important;
  height: auto !important;
}
.slide-box_slider-inner .sp-thumbnail-container.sp-selected-thumbnail img {
  box-sizing: border-box;
  padding: 6%;
}
.slide-box_slider-inner .sp-arrows {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  margin: auto;
  max-height: 80px;
  height: 13.7%;
}
@media only screen and (max-width: 54em) {
  .slide-box_slider-inner .sp-arrows {
    top: 100%;
    bottom: auto;
  }
}
.slide-box_slider-inner .sp-arrow {
  width: 8.8%;
  height: 100%;
}
.slide-box_slider-inner .sp-arrow:before,
.slide-box_slider-inner .sp-arrow:after {
  display: none;
}
.slide-box_slider-inner .sp-previous-arrow {
  background: transparent url("../img/icon_shadow-arrow-left-white.png") left center no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 54em) {
  .slide-box_slider-inner .sp-previous-arrow {
    background-image: url("../img/icon_big-arrow-left-gray.png");
  }
}
.slide-box_slider-inner .sp-next-arrow {
  background: transparent url("../img/icon_shadow-arrow-right-white.png") right center no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 54em) {
  .slide-box_slider-inner .sp-next-arrow {
    background-image: url("../img/icon_big-arrow-right-gray.png");
  }
}
.slide-box_slider-inner .sp-buttons {
  position: absolute;
  bottom: 5%;
}
.slide-box_slider-inner .sp-button {
  width: 8px;
  height: 8px;
  border-width: 0;
  background-color: #bbb;
}
.slide-box_slider-inner .sp-selected-button {
  background-color: #570000;
}



/* =========== slide_aside =========== */
.slide_aside {
  padding: 4% 0;
}
.slide_aside .btn {
  display: inline-block;
  vertical-align: middle;
}
.slide_aside .btn a {
  width: 180px;
}
.slide_aside .sns-btn {
  display: inline-block;
  margin-left: 4%;
  vertical-align: middle;
}
.slide_aside .sns-btn a {
  display: inline-block;
}
.slide_aside .sns-btn a:hover {
  opacity: 0.5;
}
.slide_aside .wrapper:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: "";
}
.slide_aside .aside_img {
  float: left;
  margin-right: 5%;
  width: 45%;
}
@media only screen and (max-width: 48em) {
  .slide_aside .aside_img {
    margin-bottom: 4%;
    width: 100%;
  }
}
.slide_aside .aside_content {
  float: left;
  padding: 0 2%;
  width: 50%;
}
.slide_aside .aside_content >img {
  float: left;
  margin-right: 15px;
  margin-bottom: 10px;
  width: auto;
}
@media only screen and (max-width: 48em) {
  .slide_aside .aside_content {
    padding: 0 4%;
    width: 100%;
  }
}
.slide_aside .aside_title {
  padding: 1% 0;
  color: #b69458;
  font-size: 18px;
  font-size: 1.8rem;
}
@media only screen and (max-width: 48em) {
  .slide_aside .aside_title {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.slide_aside .aside_text {
  margin-bottom: 2%;
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  line-height: 1.8;
}
@media only screen and (max-width: 48em) {
  .slide_aside .aside_text {
    font-size: 11px;
    font-size: 1.1rem;
  }
}



/* =========== slide-box type-b =========== */
.slide-box.type-b .slide-box_bg-img {
  display: none;
}

.slide-box.type-b .slide-box_title {
  margin-bottom: 4%;
  font-weight: normal;
  font-size: 22px;
  font-size: 2.2rem;
  font-family: "游明朝", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "ヒラギノ明朝 Pro W3", "HiraMinProN-W3", "HG明朝E", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ヒラギノ明朝 Pro W6", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
@media only screen and (max-width: 54em) {
  .slide-box.type-b .slide-box_title {
    font-size: 32px;
    font-size: 3.2rem;
  }
}
@media only screen and (max-width: 54em) {
  .slide-box.type-b .slide-box_title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}





/* movie */

/* _001 */

.movie_001 {
	text-align: center;
	margin: 0 0 60px;
}

/* _002 */

.movie_002 {
	padding: 20px 0 0;
	text-align: center;
	background: #ede8e4;
}


/* アイテムページのダウンロードバナー */
section.registration_banner{
	margin:5% 0 0 0;
	padding:3px 0;
	border-top:#1f0000 3px solid;
	border-bottom:#1f0000 3px solid;
	background-color:#f5f5f5;
	}

div.registration_banner_inner{
	margin:0;
	padding:30px 0 40px 0;
	border-top:#1f0000 2px solid;
	border-bottom:#1f0000 2px solid;
	}

/* h2 */
section.registration_banner h2{
	margin:0 0 20px 0;
	font-size:14px;
	text-align:center;
	}
section.registration_banner h2 > span{
	display: inline-block;
	margin-bottom:5px;
	font-size:28px;
	text-align:center;
	border-bottom:#1f0000 solid 1px;
	}

/* p */
section.registration_banner p.registrationtxt{
	margin:0 0 20px 0;
	font-size:14px;
	text-align:center;
	}

/* pdf_zone */
div.pdf_zone{
	width:60%;
	margin:0 auto;
	}

div.pdf_zone:after {
    display: block;
    visibility: hidden; 
    clear: both;
    height: 0;
    content: "";
  }

div.pdf_zone div.pdf_zone_left{
	float:left;
	width:45%;
	margin:0 10% 0 0;
	}

div.pdf_zone div.pdf_zone_right{
	float:left;
	width:45%;
	}

/* figure */
div.pdf_zone figure{
	position:relative;
	margin:0 auto 10px;
	border:#444444 2px solid;
	}

div.pdf_zone figure:hover{
	opacity:0.8;
	transition:0.6s;
	}
		

/* download */
div.pdf_download_btn{
	box-sizing:border-box;
	position:relative;
	width:100%;
	padding:10px 20px;
	border:#570000 1px solid;
	text-align:center;
	color:#570000;
	font-size:14px;
	}
div.pdf_download_btn:hover{
	box-sizing:border-box;
	background-color:#570000;
	color:#FFF;
	transition:0.3s;
	}

div.pdf_download_btn a{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	}

@media only screen and (max-width: 48em) {
/* h2 */
section.registration_banner h2{
	margin:0 0 20px 0;
	font-size:14px;
	text-align:center;
	}
section.registration_banner h2 > span{
	display: inline-block;
	margin-bottom:5px;
	font-size:20px;
	text-align:center;
	border-bottom:#570000 solid 1px;
	}

/* p */
section.registration_banner p.registrationtxt{
	margin:0 auto 20px auto;
	font-size:12px;
	text-align:center;
	width:96%;
	}
	
section.registration_banner p.registrationtxt > br{
	display:none;
	}
	
div.pdf_zone{
	width:70%;
	margin:0 auto;
	}
div.pdf_zone div.pdf_zone_left{
	float:none;
	width:100%;
	margin:0 0 8% 0;
	}

div.pdf_zone div.pdf_zone_right{
	float:none;
	width:100%;
	}
div.pdf_download_btn{
	box-sizing:border-box;
	position:relative;
	width:100%;
	padding:10px 20px;
	border:#570000 1px solid;
	text-align:center;
	color:#ffffff;
	background-color:#570000;
	font-size:14px;
	}
}

/* 挙式ページのワークショップ導線バナー */
section.lthwork_banner{
	padding-top:30px;
	margin-bottom:50px;
	}

section.lthwork_banner:after {
    display: block;
    visibility: hidden; 
    clear: both;
    height: 0;
    content: "";
  }


h2.lthwork_banner{
	margin:0 0 20px 0;
	text-align:center;
	font-size:28px;
	font-family:"游明朝", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "ヒラギノ明朝 Pro W3", "HiraMinProN-W3", "HG明朝E";
	font-weight:normal;
	}
	
h2.lthwork_banner span{
	display:block;
	font-size:14px;

	}

section.lthwork_banner div.lthwork_banner_left{
	width:50%;
	padding-top:30%;
	float:left;
	background-image:url(../../ceremony/img/lth_banner.jpg);
	background-size: cover;
	background-repeat:no-repeat;
	}

section.lthwork_banner div.lthwork_banner_right{
	position:relative;
	width:50%;
	padding-top:30%;
	float:left;
	background-color:#f5f5f5;
	}

section.lthwork_banner div.lthwork_banner_right_inner{
	position:absolute;
	top:23%;
	left:0;
	right:0;
	width:80%;
	margin:0 auto;
	}
div.lthwork_banner_right_inner h3{
	margin:0 auto 15px;
	font-size:2rem;
	text-align:center;
	font-family:"游明朝", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "ヒラギノ明朝 Pro W3", "HiraMinProN-W3", "HG明朝E";
	font-weight:normal;
	}

div.lthwork_banner_right_inner p{
	margin:0 auto 15px;
	}

div.lthwork_btn{
	width:300px;
	margin:0 auto;
	text-align:center;
	font-family:"游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
	}
	
div.lthwork_btn a{
	display:inline-block;
	width:100%;
	text-decoration:none;
	background-color:#570000;
	border:#570000 1px solid;
	color:#FFF;
	line-height:3.7;
	font-weight:bold;
	}

div.lthwork_btn a:hover{
	background-color: transparent;
	color:#570000;
	transition:0.6s;
	}

@media only screen and (max-width: 60em) {
section.lthwork_banner div.lthwork_banner_left{
	width:100%;
	padding-top:50%;
	float:none;
	background-image:url(../../ceremony/img/lth_banner.jpg);
	background-size: cover;
	background-repeat:no-repeat;
	}

section.lthwork_banner div.lthwork_banner_right{
	position:relative;
	width:100%;
	padding-top:0;
	float:none;
	background-color:#f5f5f5;
	}
section.lthwork_banner div.lthwork_banner_right_inner{
	position: static;
	width:80%;
	margin:0 auto;
	padding:5% 0;
	}
}
/* 挙式ページのワークショップ導線バナー */


/* accessPage busNavigation */
table.bus_table{
	width:300px;
	text-align:left;
	background-color:#f6f6f6;
	padding:10px 15px;
	letter-spacing:1.6px;
	}
table.bus_table tr{

	}
table.bus_table tr th{
	width:100px;
	border-bottom:#351e00 2px double;
	font-size:1.4em;
	font-size:14px;
	padding:0 0 0 10px;
	}
table.bus_table tr td{
	width:100px;
	border-bottom:#c1ac91 1px solid;
	padding:0 0 0 10px;
	}

table.bus_table tr th:first-child , table.bus_table tr td:first-child{
	border-right:#351e00 2px double;
	}

table.bus_table tr th:nth-child(2) , table.bus_table tr td:nth-child(2){
	border-right:#351e00 2px double;
	}

table.bus_table2{
	width:300px;
	text-align:left;
	background-color:#f6f6f6;
	padding:10px 15px;
	letter-spacing:1.6px;
	}
table.bus_table2 tr{

	}
table.bus_table2 tr th{
	width:100px;
	border-bottom:#351e00 2px double;
	font-size:1.4em;
	font-size:14px;
	padding:0 0 0 10px;
	}
table.bus_table2 tr td{
	width:100px;
	border-bottom:#c1ac91 1px solid;
	padding:0 0 0 10px;
	}
table.bus_table2 tr th:first-child , table.bus_table2 tr td:first-child{
	border-right:#351e00 2px double;
	}

p.table_note{
	margin-bottom:10px !important;
	font-size:12px;
	}
h4.access_h4{
	margin:0 0 5px 0;
	width:100%;
	padding:5px 10px;
	font-size:14px;
	background-color:#4e3c33;
	color:#FFF;
	}
hr.access_hr{
	border-top:solid 1px #999999;
	}

div.access_table_box_inner{
	float:left;
	width:300px;
	margin:0 30px 30px 0;
	}
figure.access_map_image{
	margin:0 0 30px 0;
  width: 50%;
	}
@media only screen and (max-width: 48em) {
  figure.access_map_image{
    width: 100%;
    }
}	

/* TOPフォトギャラ化 */
.flexbox_img_2A {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flexbox_img_2A img{
  width: 49.5%;
  margin-top: 1%;
}