@charset "UTF-8";
/* 
  css設定 @charsetが消されるsass仕様へのハック用コメントです。削除しないでください。新規作成時も必須！
 */
/*==================================================================================
 default
==================================================================================*/
@font-face {
  font-family: "MyYuGothicM";
  font-weight: normal;
  src: local("YuGothic-Medium"), local("Yu Gothic Medium"), local("YuGothic-Regular");
  /* Mediumない場合 */
}

@font-face {
  font-family: "MyYuGothicM";
  font-weight: bold;
  src: local("YuGothic-Bold"), local("Yu Gothic");
}

/* -------------------------------------------
 initialize
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMDE0IDc5LjE1Njc5NywgMjAxNC8wOC8yMC0wOTo1MzowMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MEI1MzY2NTA1RTY2MTFFNUExRTlDMDdERTNCNDFENkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MEI1MzY2NTE1RTY2MTFFNUExRTlDMDdERTNCNDFENkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDowQjUzNjY0RTVFNjYxMUU1QTFFOUMwN0RFM0I0MUQ2QiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDowQjUzNjY0RjVFNjYxMUU1QTFFOUMwN0RFM0I0MUQ2QiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pj3ggHcAAAAQSURBVHjaYvj//z8DQIABAAj8Av7bok0WAAAAAElFTkSuQmCC");
}

body {
  color: #4E4638;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  font-family: "源ノ明朝", serif;
}

.serif {
  font-family: "源ノ明朝", serif;
}

article, aside, dialog, figure, footer, header, hgroup, nav, section {
  display: block;
}

sup {
  font-size: 10px;
  vertical-align: super;
}

div {
  line-height: 0;
}

ul li {
  list-style: none;
}

input, select {
  vertical-align: middle;
}

img {
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
}

table {
  font-size: 100%;
}

main {
  display: block;
}

img {
  -ms-interpolation-mode: bicubic;
}

iframe {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
}

 


/*ハンバーガーボタン*/

.el_humburger{
	display:none;
}



.el_humburger {
  position: absolute;
  top: 30px;
  right: 24px;
  width: 54px;
  height: auto;
  padding-top: 2px;
  box-sizing: border-box;
  z-index: 10000;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  pointer-events: auto;
}

.el_humburger > span {
  display: block;
  width: 100%;
  margin: 0 auto 6px;
  height: 3px;
  background: #000;
  transition: all 0.2s ease-in-out;
}
.el_humburger > span:last-child {
  margin-bottom: 4px;
}
.js_humburgerOpen .el_humburger > span {
  background: #fff;
}

.js_humburgerOpen .el_humburger > span.top {
  transform: translateY(9px) rotate(-45deg);
}

.js_humburgerOpen .el_humburger > span.middle {
  opacity: 0;
}

.js_humburgerOpen .el_humburger > span.bottom {
  transform: translateY(-9px) rotate(45deg);
}

.el_humburgerButton.el_humburgerButton__close {
  top: 2%;
  right: 2%;
}

.el_humburgerButton__close > span {
  display: block;
  width: 35px;
  margin: 0 auto;
  height: 4px;
  background: #fff;
}

.el_humburgerButton__close > span.el_humburgerLineTop {
  transform: translateY(5px) rotate(-45deg);
}

.el_humburgerButton__close > span.el_humburgerLineBottom {
  transform: translateY(-6px) rotate(45deg);
}



/*ナビゲーション*/
.uq_spNavi {
  display: none;
}

.uq_spNavi.js_appear {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  z-index: 9999;
}

.uq_spNavi_screen {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0,0,0,0.8);
  z-index: 0;
  margin-top: 0px;
  padding-top: 0px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.navigation {
  padding: 160px 0 0 0;
  text-align: center;
}

.navigation_item {
  font-ize: 28px;
font-family: "源ノ明朝", serif;
  margin-bottom: 38px;
}

.navigation_item > a {
  color: #fff;
font-family: "源ノ明朝", serif;
  text-decoration: none;
}



@media screen and (max-width:769px) {

/*ハンバーガーボタン*/

.el_humburger{
	display:block;
}



.el_humburger {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 26px;
  height: auto;
  padding-top: 1px;
  box-sizing: border-box;
  z-index: 10000;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  pointer-events: auto;
}

.el_humburger > span {
  display: block;
  width: 100%;
  margin: 0 auto 6px;
  height: 3px;
  background: #000;
  transition: all 0.2s ease-in-out;
}
.el_humburger > span:last-child {
  margin-bottom: 0;
}
.js_humburgerOpen .el_humburger > span {
  background: #fff;
}

.js_humburgerOpen .el_humburger > span.top {
  transform: translateY(9px) rotate(-45deg);
}

.js_humburgerOpen .el_humburger > span.middle {
  opacity: 0;
}

.js_humburgerOpen .el_humburger > span.bottom {
  transform: translateY(-9px) rotate(45deg);
}

.el_humburgerButton.el_humburgerButton__close {
  top: 2%;
  right: 2%;
}

.el_humburgerButton__close > span {
  display: block;
  width: 35px;
  margin: 0 auto;
  height: 4px;
  background: #fff;
}

.el_humburgerButton__close > span.el_humburgerLineTop {
  transform: translateY(5px) rotate(-45deg);
}

.el_humburgerButton__close > span.el_humburgerLineBottom {
  transform: translateY(-6px) rotate(45deg);
}


/*ナビゲーション*/
.uq_spNavi {
  display: none;
}

.uq_spNavi.js_appear {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  z-index: 9999;
}

.uq_spNavi_screen {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0,0,0,0.8);
  z-index: 0;
  margin-top: 0px;
  padding-top: 0px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.navigation {
  padding: 80px 0 0 0;
  text-align: center;
}

.navigation_item {
  font-ize: 22px;
font-family: "源ノ明朝", serif;
  margin-bottom: 38px;
}

.navigation_item > a {
  color: #fff;
font-family: "源ノ明朝", serif;
  text-decoration: none;
}
}
/* 
 End-initialize
------------------------------------------- */
/* ----------------------------------------
 link-style 
 */
a {
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

a.no-link {
  cursor: default !important;
}

a.no-link:hover {
  opacity: 1 !important;
}

.disable a {
  opacity: 0.25 !important;
  cursor: default;
}

.disable a:after {
  display: none !important;
}


.top-access {  text-align: center; padding-top:40px;}

.top-access h2{ padding-bottom:40px;}

.font-l { font-size: 1.1em;}
.font-xl { font-size: 2.75em;}

.top-access ul{ margin:0 auto; justify-content: center;}

.top-access ul li {display:inline-block;  border-left: #FFF 1px solid; color: #FFF !important; line-height: 1.5; padding-left: 10px; margin-right: 20px; text-align: center; font-size: 14px; vertical-align:middle;}
  
.top-access ul li:first-child{
	border-left:none;
}
.top-access ul li small { font-size: 11px;}
.top-access p { font-size: 10px; line-height: 1.6; color: #4c4a4a; display: inline-block; text-align: left; padding-top:20px;}

@media only screen and (max-width: 767px) {
.top-access { text-align: left; padding: 30px 15px;}
.top-access ul {flex-wrap: wrap;}
.top-access ul li { width: calc(30% - 20px); margin-right:8px;}
.top-access .sm-center { text-align: center;}
.top-access ul.sm-center { display: flex;  justify-content: center; align-items: center;}
.top-access ul.sm-center li { width: 40%;}
.top-access ul li+li { margin-top: 10px;}
}

@media only screen and (max-width: 400px) {
.top-access ul.sm-center li { width: 70%;}
}

/* MERIT  */
.sec_merit {
	background-image:url("../img/top/bg_main.jpg");

}
.sec_merit_inner {
	padding: 80px 0;
}
.sec_merit_inner img {
	display: block;
	margin: 0 auto;
	max-width: 960px;
	width: 90%;
}
@media screen and (max-width: 767px) {
	.sec_merit_inner {
		background-size: 100%;
		background-repeat: repeat-y;
	}
}



/* ----------------------------------------
       link-style only-pc
      */
@media screen and (min-width: 1025px) {
  a:hover {
    transition: opacity .3s;
  }
}

/* 
      End-link-style only-pc
     ---------------------------------------- */
/* 
 end-link-style
----------------------------------------- */
/* ----------------------------------------
 responsible-contents 
 */
/* ----------------------------------------
       responsible-contents  only-pc 
      */
@media screen and (min-width: 1025px) {
  img.pc {
    display: inline-block !important;
  }
  .pc {
    display: block !important;
  }
  .sp, .tb {
    display: none !important;
  }
}

/* 
       End-responsible-contents  only-pc 
      ---------------------------------------- */
/* ----------------------------------------
       responsible-contents  tablet 
      */
@media screen and (max-width: 1024px) {
  .sp {
    display: none !important;
  }
  .tb {
    display: block !important;
  }
  img.tb {
    display: inline-block !important;
  }
  span.tb {
    display: inline !important;
  }
}

/*
       End-responsible-contents  tablet 
       ---------------------------------------- */
/* ----------------------------------------
       responsible-contents  sp 
      */
@media screen and (max-width: 640px) {
  .pc, .tb {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  img.sp {
    display: inline-block !important;
  }
  span.sp {
    display: inline !important;
  }
}

/*
       End-responsible-contents  sp 
       ---------------------------------------- */
/* 
 End-responsible-contents 
---------------------------------------- */
/*================================================================
 fit-4d-style
================================================================*/
/* logtag */
/* accessibilityNav*/
#accessibilityNav {
  display: none;
}

#logtag {
  display: none;
}

/* no-js */
#noscript {
  width: 100%;
  min-height: 59px;
  border-bottom: 1px solid #999999;
  background: #ffffff;
  color: #333333;
  font-size: 14px;
  line-height: 20px;
  font-family: sans-serif;
  overflow: hidden;
}

#noscript .content {
  padding: 10px;
  width: auto;
}

#noscript span {
  color: #cc0000;
}

@media (max-width: 640px) {
  sup {
    font-size: 8px;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .wrap {
    width: 94%;
  }
}

/*

snipets

@mixin after-given {
  content: "";
  display: block;
}
example:
@include after-given;

@mixin abs-topce($top: 0) {
  position: absolute;
  top: $top;
  left: 50%;
  transform: translate(-50%,0);
}
example:
@include abs-topce();
@include abs-topce($top: 10%);

@mixin abs-cece {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
example:
@include abs-cece;

@mixin abs-cele($left:0) {
  position: absolute;
  top: 50%;
  left: $left;
  transform: translate(0,-50%);
}
example:
@include abs-cele();
@include abs-cele($left:10%);


@mixin abs-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
example:
@include abs-cover;

@mixin tac {
  text-align: center;
}
example:
@include tac;

@mixin tar {
  text-align: right;
}
example:
@include tar;

@mixin tal {
  text-align: left;
}
example:
@include tal;


*/
/*==================================================================================
 common
==================================================================================*/
body {
  font-feature-settings: "palt";
  background-size: 100% 100%;
  font-family: "源ノ明朝", serif;
}

.all-wrap {
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.back-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../imgs/back-bg.png) center;
  background-size: cover;
}

main {
  padding-bottom: 160px;
  color: #4E4638;
}

.js-scroll {
  opacity: 0;
  /* margin-top: 50px; */
  transition: opacity .9s;
}

.js-scroll.on {
  opacity: 1;
  margin-top: 0;
}

.app-bnr a {
  display: none;
}

.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

.app-bnr {
  position: relative;
  z-index: 20;
}

.wrap {
  margin: 0 auto;
  width: 94%;
  max-width: 1200px;
}

.light {
  font-weight: lighter;
}

.bold {
  font-weight: bold;
}

.serif {
  font-family: 'Noto Serif JP', sans-serif;
}

.gothic {
  font-family: YuGothic, Yu Gothic, "游ゴシック", sans-serif;
}

.philosopher {
  font-family: 'Philosopher', sans-serif;
}

.el {
  font-family: 'El Messiri', sans-serif;
}

.garamond {
  font-family: 'EB Garamond', serif;
  font-family: 'Cormorant Garamond', serif;
}

.gilda {
  font-family: 'Gilda Display', serif;
}

.open {
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
  font-weight: 300;
}

.cormorant {
  font-family: 'Cormorant Garamond', serif;
}

img {
  max-width: 100%;
  height: auto;
}

.font-size30 {
  font-size: 30%;
}

.font-size40 {
  font-size: 40%;
}

.font-size50 {
  font-size: 50%;
}

.font-size60 {
  font-size: 60%;
}

.font-size70 {
  font-size: 70%;
}

.font-size80 {
  font-size: 80%;
}

.font-size90 {
  font-size: 90%;
}

.font-size100 {
  font-size: 100%;
}

.font-size110 {
  font-size: 110%;
}

.font-size120 {
  font-size: 120%;
}

.font-size130 {
  font-size: 130%;
}

.font-size140 {
  font-size: 140%;
}

.font-size150 {
  font-size: 150%;
}

.font-size160 {
  font-size: 160%;
}

.font-size170 {
  font-size: 170%;
}

.font-size180 {
  font-size: 180%;
}

.font-size190 {
  font-size: 190%;
}

.font-size200 {
  font-size: 200%;
}

.swipe {
  display: none;
}

.js-scroll {
  transition: transform .6s , opacity .6s;
  opacity: 0;
  transform: translateY(40px);
}

.js-scroll.on {
  opacity: 1;
  transform: translateY(0px);
}



@media screen and (max-width: 640px) {
  .swipe-img {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .swipe-img img {
    max-width: auto !important;
    max-width: inherit !important;
    width: auto !important;
  }
  .swipe {
    display: block;
    text-align: center;
    margin: 20px auto 40px;
  }
  .swipe img {
    width: 50%;
  }
}

.pageAnnotation {
  position: relative;
  padding-bottom: 30px;
  line-height: 1.5;
  font-size: 11px;
  text-align: left;
}

.pageAnnotation p {
  line-height: 1.5;
  font-size: 11px;
}

.pageAnnotation a {
  text-decoration: underline;
}

.fadeInAct {
  opacity: 0;
  transition: opacity 2s, transform 2s;
}

.fadeInAct.action {
  opacity: 1;
  transform: translate(0) !important;
}

.fadeInAct.fadeUp {
  transform: translateY(50px);
}

.fadeInAct.fadeLeft {
  transform: translateX(100px);
}

.fadeInAct.fadeDown {
  transform: translateY(-50px);
}

.fadeInAct.fadeRight {
  transform: translateX(-100px);
}

.fadeInAct.fadeExpand {
  transform: translateY(100px) scale(0.7);
}

.fadeInAct.fadeExpand.action {
  transform: translateY(0) scale(1) !important;
}

figure,
div.image {
  position: relative;
  line-height: 0;
}

figcaption {
  line-height: 1;
}

.caption {
  position: absolute;
  bottom: 0;
  font-size: 10px;
  color: #fff;
  right: 0%;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10;
}

.page-title .caption {
  bottom: 0px;
}

@media screen and (max-width: 1024px) {
  .page-title .caption {
    bottom: 0px;
  }
}

.commonCaption01 {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 4px 12px;
  font-size: 11px;
  color: #fff;
  background: rgba(21, 21, 21, 0.6);
}

.commonCaption01.notBg {
  padding: 0;
  color: #000;
  background: none;
}

img.border {
  border: 1px solid #d3d3d3;
}

.inlineBlock {
  display: inline-block !important;
}

.colorBlack {
  color: #333 !important;
}

span.altText {
  display: none;
}

.appBnr {
  text-align: center;
}

.appBnr img {
  border: 1px solid #d3d3d3;
}

.bgPattern01 {
  position: relative;
}

.bgPattern01:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("../imgs/bg-pattern01.png") repeat left top;
  z-index: 0;
}

.commonButton01 {
  position: relative;
	display: inline-block;
  border: 1px solid #AAA386;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  z-index: 1;
	background-color: #1a2d58;
		padding: 3px 14px;
	margin-right: 4px;
}

.commonButton01 a,
.commonButton01 span {
  display: block;
  position: relative;
  color: #fff;
	padding: 6px 0px;
}

.commonButton01 a:after,
.commonButton01 span:after {
  content: '';
  display: block;
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  background: linear-gradient(90deg, #307091 60%, #5299A7);
  background: #AAA386;
  transition: left .3s;
  z-index: -1;
}

.commonButton01 a:hover,
.commonButton01 span:hover {
  opacity: 0.6;
}

@media (min-width: 1025px) {
  .commonButton01 a:hover,
  .commonButton01 span:hover {
    letter-spacing: 0px;
  }
}

.commonButton01.color02 {
  border-color: #1a2d58;
}

.commonButton01.color02 a:after,
.commonButton01.color02 span:after {
  background: linear-gradient(90deg, #456098 60%, #5E91CE);
  background: #1a2d58;
}

.commonButton01.color03 {
  border-color: #d7005b;
}

.commonButton01.color03 a:after,
.commonButton01.color03 span:after {
  background: linear-gradient(90deg, #454545 60%, #747474);
  background: #d7005b;
}

.commonButton01.color04 {
  border-color: #fff;
}

.commonButton01.color04 a {
  background: #fff;
}

.commonButton01.color04 a:after,
.commonButton01.color04 span:after {
  background: #fff;
}

.commonButton02 {
  position: relative;
	display: inline-block;
  border: 1px solid #AAA386;
  text-align: center;
  line-height: 1;
  font-size: 15px;
  z-index: 1;
	background-color: #d7005b;
		padding: 3px 11px;
	margin-right: 4px;
}

.commonButton02 a,
.commonButton02 span {
  display: block;
  position: relative;
  color: #fff;
	padding: 6px 0px;
}

.commonButton02 a:after,
.commonButton02 span:after {
  content: '';
  display: block;
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
	background-color: #d7005b;
  transition: left .3s;
  z-index: -1;
}



@media (min-width: 1025px) {
  .commonButton02 a:hover,
  .commonButton02 span:hover {
    color: #fff;
  }
  .commonButton02 a:hover:after,
  .commonButton02 span:hover:after {
    left: 100%;
  }
}

.commonButton02.pattern02 {
  background: none;
  transition: border .3s;
}

@media (min-width: 1025px) {
  .commonButton02.pattern02:hover {
    border-color: transparent;
  }
}

.commonButton02.pattern02 a,
.commonButton02.pattern02 span {
  color: #fff;
}

.commonButton02.pattern02 a:after,
.commonButton02.pattern02 span:after {
  right: 100%;
  left: 0 !important;
  transition: right .3s;
  background: linear-gradient(90deg, #456098 60%, #5E91CE);
  background: linear-gradient(90deg, #215583 0%, #072538 100%);
}

@media (min-width: 1025px) {
  .commonButton02.pattern02 a:hover:after,
  .commonButton02.pattern02 span:hover:after {
    right: 0;
  }
}

.common-buttons {
  display: block;
  position: relative;
  line-height: 1;
  letter-spacing: .01em;
  transition: border .5s,background .5s,color .5s,letter-spacing .5s;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.common-buttons .mark {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(-180deg);
  transition: transform .5s;
}

.common-buttons .mark:before, .common-buttons .mark:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background .5s;
}

.common-buttons .mark:after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.common-buttons:hover {
  opacity: 1 !important;
  letter-spacing: .2em;
  transition: border .5s,background .5s,color .5s,letter-spacing .5s;
}

.common-buttons:hover .mark {
  transform: translateY(-50%) rotate(0deg);
}

.common-button03 {
  background: #AAA386;
  border: 1px solid #AAA386;
}

.common-button03:hover {
  border: 1px solid #AAA386;
  color: #AAA386;
  background: transparent;
}

.common-button03:hover .mark:before, .common-button03:hover .mark:after {
  background: #AAA386;
}

.common-button04 {
  background: #4E4638;
  border: 1px solid #fff;
}

.common-button04:hover {
  border: 1px solid #4E4638;
  color: #4E4638;
  background: transparent;
}

.common-button04:hover .mark:before, .common-button04:hover .mark:after {
  background: #4E4638;
}

.commonBannerArea {
  padding: 70px 0;
  background: #EBEBEB;
  text-align: center;
}

.commonBannerArea a img {
  max-width: 420px;
  width: 90%;
  margin: auto;
  margin-bottom: 10px;
}

.commonBannerArea .slick-slide {
  margin: 0 10px;
  margin: auto;
  width: 30%;
}

.commonBannerArea .slick-arrow {
  position: absolute;
  top: 50%;
  width: 60px;
  height: 60px;
  background: url(../imgs/button-arrow01.png);
  background-size: 100% 100%;
  z-index: 10;
  transform: translateY(-50%);
}

.commonBannerArea .slick-arrow:before {
  display: none !important;
}

.commonBannerArea .slick-arrow.prev {
  left: 0;
}

.commonBannerArea .slick-arrow.next {
  right: 0;
  transform: translateY(-50%) rotate(180deg);
}

.commonBannerArea img {
  width: 100%;
  max-width: none;
}

.commonCaption01 {
  display: inline-block;
  position: absolute;
  padding: 5px 10px;
  bottom: 0;
  right: 0;
  line-height: 1;
  font-size: 11px;
  color: #fff;
  background: rgba(21, 21, 21, 0.6);
}

#slider01 {
  position: relative;
  margin: auto;
}

#slider01 img {
  width: 100%;
  height: auto;
}

#slider01 .slideFrame {
  position: relative;
  height: 100%;
}

#slider01 .slides {
  height: 100%;
}

#slider01 .slides li {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ----------------------------------------
  common-classes  tablet-sp
*/
.pageAnnotation {
  padding-top: 120px;
}

@media screen and (max-width: 1024px) {
  .pageAnnotation {
    padding-top: 70px;
  }
  .pageAnnotation .wrap {
    width: 94%;
  }
  main {
    margin-top: 0;
  }
  main img {
    width: 100%;
    height: auto;
  }
  main .wrap {
    width: 94%;
  }
  .printBtn {
    display: none !important;
  }
  .commonBannerArea {
    padding: 50px 0;
  }
  .commonCircleButton01 a {
    display: block;
    position: relative;
  }
  .commonCircleButton01 a:hover {
    opacity: 1;
  }
}

@media screen and (max-width: 1024px) and (min-width: 1025px) {
  .commonCircleButton01 a:hover circle {
    stroke-dasharray: 0 1000;
  }
  .commonCircleButton01 a:hover .arrowArea:before {
    transform: translateX(200%);
  }
  .commonCircleButton01 a:hover .arrowArea:after {
    transform: translateX(0);
  }
}

@media screen and (max-width: 1024px) {
  .commonCircleButton01 svg {
    width: 90px;
    height: 90px;
    stroke: #243051;
  }
  .commonCircleButton01 circle {
    r: 44;
  }
  .commonCircleButton01 .arrowArea {
    width: 28px;
    height: 12px;
  }
  .commonCircleButton01 .arrowArea:before, .commonCircleButton01 .arrowArea:after {
    background-image: url("../imgs/icon-arrow02-blue.png");
  }
  .commonButton01 {
    width: auto;
  }
}

/*==================================================================================
 site-header
==================================================================================*/
.site-header {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 95px;
  background: #fff;
  z-index: 100;
}

.site-header h1 {
  font-weight: normal;
}

.site-header .topbody {
  position: relative;
}

.site-header .title a:hover,
.site-header .title02 a:hover {
  opacity: 1;
}

.site-header .title {
  padding: 0px 0 0 40px;
}


.site-header .title .placeName {
  padding-bottom: 2px;
}

.site-header .title img {
	width:180px;
  margin-right: 10px;
  vertical-align: bottom;
}

.site-header .text {
  position: absolute;
  top: 15px;
  right: 60px;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: .1em;
  color: #fff;
}

.site-header .tools {
  position: absolute;
  right: 25px;
  top: 25px;
}

.site-header .menu-button {
  display: none;
}

.site-header .tools li {
  float: left;
  margin-left: 1px;
}

.site-header .tools li.links {
  padding-right: 15px;
  text-align: right;
  font-size: 11px;
  letter-spacing: .1em;
}

@media screen and (min-width: 1025px) {
  .site-header .tools li.links {
    padding-top: 5px;
  }
}

@media screen and (min-width: 1025px) {
  .site-header .tools li.links > div {
    line-height: 1;
  }
  .site-header .tools li.links > div:first-child {
    padding-bottom: 5px;
  }
}

.site-header .tools li.links a {
  display: block;
  color: #fff;
}

.site-header .tools li.links .outline {
  padding-top: 2px;
}

.site-header .tools li.request a:hover,
.site-header .tools li.request a:hover img,
.site-header .tools li.reserve a:hover,
.site-header .tools li.reserve a:hover img {
  opacity: 1;
}

.site-header .tools li.request,
.site-header .tools li.reserve {
  position: relative;
  overflow: hidden;
}

.site-header .tools li.request:after,
.site-header .tools li.reserve:after {
  content: "";
  display: block;
  position: absolute;
  top: -30px;
  left: 0;
  width: 120px;
  height: 120px;
  background: url(../imgs/light.png) center;
  animation: button 3s ease  infinite;
  z-index: 19;
}

@media screen and (min-width: 1025px) {
  .site-header .title01 {
    display: block;
  }
  .site-header .title02 {
    display: inline-block;
    padding: 0 0 0 60px;
    height: 100px;
    width: 142px;
  }
  .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0);
    padding-bottom: 105px;
  }
}

@media screen and (max-width: 764px){
	  .site-header .title01 {
		  position: absolute;
     left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  
}
}

/* ----------------------------------------
       header-style only-tablet 
      */
@media screen and (max-width: 1024px) and (min-width: 640px) {
  .site-header .pc {
    display: none !important;
  }
  .site-header .sp {
    display: block !important;
  }
}

/*
       End-header-style only-tablet 
       ---------------------------------------- */
/* ----------------------------------------
       header-style tablet-sp 
      */
@media screen and (max-width: 1024px) {
  .site-header .tools li.request:after,
  .site-header .title02,
  .site-header .tools li.reserve:after {
    display: none;
  }
  .site-header {
    position: absolute;
    height: 157px;
    height: 92px;
    border-bottom: 1px solid #cbcbcb;
  }
  .site-header .title {
    padding: 0px;
    text-align: center;
  }
  .site-header .title .placeName {
    padding-bottom: 0;
  }
  .site-header .title .clio.sp {
    display: block !important;
    margin: 0 auto 10px auto;
    width: auto;
    height: 20px;
  }
  .site-header .title .placeName {
    display: inline-block;
    width: auto;
    height: 18px;
  }
  .site-header .title img {
    display: block;
    margin: 0 auto 10px auto;
    max-width: 100%;
    height: 120px;
  }
  .site-header .text {
    display: none;
  }
  .site-header .tools {
    position: static;
  }
  .site-header .tools li img {
    display: none;
  }
  .site-header .tools .sp-navi li img {
    display: inline-block;
    width: auto;
  }
  .site-header .tools .sp-navi li.top img {
    height: 11px;
  }
  .site-header .tools .sp-navi li.concept img {
    height: 11px;
  }
  .site-header .tools .sp-navi li.design img {
    height: 12px;
  }
  .site-header .tools .sp-navi li.location img {
    height: 10px;
  }
  .site-header .tools .sp-navi li.access img {
    height: 10px;
  }
  .site-header .tools .sp-navi li.equipment img {
    height: 11px;
  }
  .site-header .tools .sp-navi li.structure img {
    height: 11px;
  }
  .site-header .tools .sp-navi li.select img {
    height: 10px;
  }
  .site-header .tools .sp-navi li.plan img {
    height: 11px;
  }
  .site-header .tools .sp-navi li.outline img {
    height: 11px;
  }
  .site-header .tools .btns li.request img {
    height: 11px;
  }
  .site-header .tools .btns li.reserve img {
    height: 11px;
  }
  .site-header .menu-button {
    display: block;
  }
  .site-header .tools-base {
    position: relative;
    height: 55px;
    position: fixed;
    bottom: -200px;
    left: 0;
    width: 100%;
    z-index: 200;
  }
  .site-header .tools {
    position: absolute;
    top: auto !important;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: #fff;
    z-index: 150;
    transition: opacity .9s;
    opacity: 0;
  }
  .site-header .tools.fadeIn {
    opacity: 1;
  }
  .site-header .tools.fixed {
    position: fixed;
  }
  .site-header .tools li {
    width: 20%;
    box-sizing: border-box;
    text-align: center;
	  margin-right: 8px;
  }
  .site-header .tools .head-btns li {
    border: none;

  }
  .site-header .tools .head-btns li.sp {
    display: block !important;
  }
  .site-header .tools .head-btns li:first-child {
    border-left: none;
  }
  .site-header .tools li.links {
    padding-right: 0;
    text-align: center;
  }
  .site-header .tools .head-btns li a:hover {
    opacity: 1;
  }
  .site-header .tools li div.outline,
  .site-header .tools .head-btns li.webReserveBtn {
    display: none;
  }
  .site-header .tools .head-btns li a {
    box-sizing: border-box;
    display: block;
    width: auto;
    height: 75px;
    padding: 9px 0 6px !important;
    border: none;
    line-height: 1;
    text-indent: -10000px;
    font-size: 0;
    text-decoration: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 60px;
    overflow: hidden;
  }
  .site-header .tools li.menu-button.on {
    position: relative;
  }
  .site-header .tools li.menu-button.on:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background: #466BB0;
    background: #9f9f9f;
    background: linear-gradient(135deg, #9f9f9f 0%, #505050 100%);
  }
  .site-header .tools li.menu-button.on a {
    position: relative;
    background-color: transparent;
    z-index: 1;
  }
  .site-header .tools li.links a {
    display: block;
    margin-top: 0;
    font-size: 0;
    text-indent: -10000;
    background-image: url(../imgs/hdr-sp-map.png);
  }
  .site-header .tools .head-btns li.requestBtn a {
    background-image: url(../imgs/hdr-sp-request.png);
  }
  .site-header .tools .head-btns li.reserveBtn a {
    background-image: url(../imgs/hdr-sp-reserve.png);
  }
  .site-header .tools li.tel a {
    background-image: url(../imgs/hdr-sp-tell.png);
  }
  .site-header .tools li.menu-button a {
    background-image: url(../imgs/hdr-sp-menu.png);
  }
  .site-header .tools li.menu-button.on a {
    background-image: url(../imgs/hdr-sp-close.png);
  }
  .site-header .tools .sp-navi ul {
    margin-top: -1px;
    border-top: 1px solid #cacbcf;
  }
  .site-header .tools .sp-navi li {
    width: 100%;
    border-bottom: 1px solid #cacbcf;
  }
  .site-header .tools .sp-navi li:not(:first-child) {
    float: left;
    width: 50%;
  }
  .site-header .tools .sp-navi li a {
    line-height: 1;
  }
  /*.site-header .tools .sp-navi .navi-list li:nth-child(odd):last-child {
          width: 100%;
          border-right: none;
        }*/
  .site-header .tools .head-btns {
    position: relative;
    z-index: 20;
    background: #fff;
  }
  .sp-navi a {
    display: block;
    padding: 16px 10px;
    color: #000;
  }
  .sp-navi .value a {
    display: block;
    padding: 9px 10px;
    color: #000;
  }
  .site-header .tools .sp-navi .btns {
    clear: both;
    margin: 0 auto;
    padding: 15px 0;
    width: 70%;
    border: none;
    background: none;
  }
  .site-header .tools .sp-navi .btns li {
    float: none;
    clear: both;
    margin: 0 auto;
    padding-bottom: 10px;
    border: none;
    width: auto;
    text-align: center;
    line-height: 0;
  }
  .site-header .tools .sp-navi .btns li:last-child {
    padding-bottom: 0;
  }
  .site-header .tools .sp-navi .btns li a {
    display: block;
    box-sizing: border-box;
    width: auto;
    color: #fff;
  }
  .site-header .head-btns .requestBtn a,
  .site-header .head-btns .reserveBtn a {
    background-color: transparent;
  }
  .site-header .head-btns .requestBtn a:after,
  .site-header .head-btns .reserveBtn a:after {
    display: none !important;
  }
  .site-header .tools .sp-navi .btns a:before {
    background: none;
  }
}

/*
       End-header-style tablet-sp 
       ---------------------------------------- */
/*==================================================================================
 siteFooter
==================================================================================*/
.site-footer {
  position: relative;
  background-color: #FFF;
  z-index: 15;
}

.site-footer .infoes {
  margin-bottom: 25px;
  padding: 10px 0 4px;
  background: #fff;
}

.site-footer .infoes .infoes-base {
  position: relative;
  height: 80px;
  background: #fff;
  z-index: 20;
}

.site-footer .infoes .base {
  position: absolute;
  padding: 10px 0 6px;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  color: #202020;
  z-index: 20;
  opacity: 0;
  transition: opacity .9s;
}

.site-footer .infoes .base.fadeIn {
  opacity: 1;
}

.site-footer .infoes .base:not(.fixed) {
  opacity: 1;
  display: block;
}

.site-footer .infoes .base.fixed {
  position: fixed;
}

.site-footer .infoes .inner {
  margin: 0 auto;
  max-width: 1200px;
  text-align: left;
}

.site-footer .infoes .inner:after {
  content: "";
  width: 1px;
  height: 1px;
  display: table;
  clear: both;
}

.site-footer .infoes a:hover {
  opacity: 1;
}

.site-footer .infoes img {
  max-width: 100%;
  height: auto;
}

.site-footer .btns {
  margin: 0;
  padding-top: 8px;
  float: right;
}

.site-footer .btns li {
  box-sizing: border-box;
  position: relative;
  float: left;
  width: 150px;
  text-align: center;
}

.site-footer .btns li:not(:last-child) {
  margin-right: 1px;
}

.site-footer .btns li a {
  padding: 17px 0 18px;
}

.site-footer .btns li .caption {
  position: absolute;
  right: 1%;
  bottom: 1%;
  line-height: 1;
  font-size: 10px;
  color: #fff;
}

.site-footer .links {
  float: right;
  padding: 18px 10px 0 0;
  font-size: 11px;
  letter-spacing: .1em;
}

.site-footer .links li a {
  position: relative;
  padding-left: 8px;
  color: #4E4638;
  overflow-x: hidden;
}

.site-footer .links li a:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -2px;
  margin-top: -2px;
  width: 4px;
  height: 4px;
  border-right: 1px solid #2c6872;
  border-bottom: 1px solid #2c6872;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media (min-width: 1025px) {
  .site-footer .links li a:hover {
    opacity: 0.7;
  }
}

.site-footer .links li:first-child {
  padding-bottom: 8px;
}

.site-footer .contact {
  margin-bottom: 0;
  padding: 0 0 0;
  float: left;
  width: 33%;
  letter-spacing: .1em;
}

.site-footer .contact a {
  color: #4E4638;
}

.site-footer .contact .title {
  padding-bottom: 5px;
  font-size: 12px;
}

.site-footer .contact .number {
  padding-right: 5px;
  position: relative;
  font-size: 36px;
}

.site-footer .contact .number span.pc {
  line-height: 0.8;
}

@media screen and (min-width: 1025px) {
  .site-footer .contact .number span.pc {
    display: inline-block !important;
  }
}

.site-footer .contact .number a {
  display: inline-block;
  position: relative;
  padding-left: 40px;
}

.site-footer .contact .number a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -10px;
  width: 33px;
  height: 25px;
  background: url("../imgs/icon_freedial.png") no-repeat;
}

.site-footer .contact .businessHours {
  padding-top: 8px;
  line-height: 1.3;
  font-size: 11px;
}

.clioNav {
  clear: both;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  padding-bottom: 40px;
  margin: 0 auto;
  width: 1000px;
  max-width: 100%;
}

.clioNav ul {
  zoom: 1;
}

.clioNav ul:after {
  content: ".";
  display: block;
  height: 0px;
  clear: both;
  line-height: 0;
  visibility: hidden;
}

.clioNav ul:after {
  content: '';
  display: block;
  clear: both;
}

.clioNav ul li {
  float: left;
  width: 33%;
  text-align: center;
  vertical-align: baseline;
  zoom: 1;
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: #d6d6d6;
  padding: 5px 0;
  box-sizing: content-box;
}

.clioNav ul li a {
  text-decoration: none;
}

.clioNav ul li a img {
  margin-bottom: 5px;
}

.clioNav ul li a span {
  display: block;
  font-size: 11px;
  line-height: 18px;
  vertical-align: middle;
  color: #333;
  margin-left: 1px;
  letter-spacing: 0;
  font-family: 'メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro';
}

.clioNav ul li a span:before {
  content: "▶";
  display: inline-block;
  margin-right: 5px;
  font-size: 10px;
  line-height: 18px;
}

.clioNav ul li.num01 {
  border-left: 0;
}

.clioNav .insta {
  margin: 0 auto;
  max-width: 450px;
  padding: 20px 0;
}

.logoArea {
  clear: both;
  margin: 0 auto;
  padding-bottom: 15px;
  width: 1000px;
  max-width: 100%;
}

.logoArea .statement {
  float: left;
  margin-top: 15px;
  width: 340px;
}

.logoArea .statement img {
  width: 100%;
  height: auto;
  vertical-align: baseline;
}

.logoArea ul {
  float: right;
  font-size: 10px;
}

.logoArea ul li {
  float: left;
  padding-right: 15px;
  max-width: 148px;
}

.logoArea ul li:last-child {
  padding-right: 0;
}

.logoArea ul li.fLogo02 {
  max-width: 198px;
}

.logoArea ul li span {
  display: inline-block;
  padding-bottom: 2px;
  color: #333;
}

.logoArea ul li img {
  width: 100%;
  height: auto;
  vertical-align: baseline;
}

.logoArea ul li.fLogo01 a:hover {
  opacity: 1;
}

.logoArea ul li p {
  color: #333;
  margin-bottom: 2px;
  letter-spacing: 0.15em;
  font-family: 'メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro';
}

.copyright {
  clear: both;
  padding: 20px 0px;
  text-align: right;
  font-size: 10px;
}

.copyright img {
  vertical-align: baseline;
}

.copyright p {
  margin: 0 auto;
  width: 1000px;
  max-width: 100%;
}

.pageTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  z-index: 30;
}

/* fNav */
#fNav {
  color: #666666;
  font-size: 12px;
  line-height: 18px;
}

#fNav li {
  float: left;
  letter-spacing: 1px;
}

#fNav strong {
  font-weight: bold;
}

/* ----------------------------------------
 footer-style only-pc 
*/
@media screen and (min-width: 1025px) {
  .site-footer .infoes .bg {
    display: block;
    position: relative;
    padding-bottom: 430px;
    background: url(../imgs/footer-bg.jpg) no-repeat top center;
    background-size: cover;
  }
  .site-footer .infoes .bg .caption {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 105px;
    line-height: 20px;
    background: rgba(43, 43, 43, 0.74);
    text-align: center;
  }
  .site-footer .contact .num {
    pointer-events: none;
  }
  .site-footer .foot-navi {
    text-align: center;
    border-top: none;
    margin-bottom: 4px;
    font-feature-settings: normal;
    background: #fff;
  }
  .site-footer .foot-navi ul {
    margin: 0 auto;
    padding: 11px 0 13px;
    max-width: 1000px;
  }
  .site-footer .foot-navi ul li {
    position: relative;
    display: inline-block;
    padding-right: 10px;
    font-size: 10px;
    letter-spacing: 0;
    vertical-align: middle;
  }
  .site-footer .foot-navi ul li:last-child {
    padding-right: 0;
  }
}

@media screen and (min-width: 1025px) and (min-width: 1025px) {
  .site-footer .foot-navi ul li.pc {
    display: inline-block !important;
  }
}

@media screen and (min-width: 1025px) {
  .site-footer .foot-navi ul li a {
    position: relative;
    text-decoration: none;
    color: #4E4638;
    font-size: 10px;
    padding-bottom: 3px;
  }
}

/*
 END-footer-style only-pc 
---------------------------------------- */
/* ----------------------------------------
       footer-style only-tablet 
      */
@media screen and (max-width: 1024px) and (min-width: 640px) {
  .site-footer .pc {
    display: none !important;
  }
  .site-footer .sp {
    display: block !important;
  }
}

/* 
       End-footer-style only-tablet 
      ---------------------------------------- */
/* ----------------------------------------
       footer-style tablet-sp
      */
@media screen and (max-width: 1024px) {
  .site-footer .infoes {
    margin-bottom: 0;
    text-align: center;
    background: none;
  }
  .site-footer .infoes .infoes-base {
    height: auto;
    background: none;
  }
  .site-footer .infoes .links {
    display: none;
  }
  .site-footer .infoes .btns {
    float: none;
    margin: 0 auto;
    padding-top: 0;
    width: 70%;
  }
  .site-footer .infoes .btns li {
    float: none;
    margin-right: 0 !important;
  }
  .site-footer .infoes .btns li a {
    width: auto;
    color: #fff;
  }
  .site-footer .infoes .base {
    position: static !important;
    background: none;
  }
  .site-footer .infoes .contact {
    float: none;
    margin: 0 auto;
    width: 94%;
    text-align: center;
    color: #000;
  }
  .site-footer .infoes .contact .title {
    float: none;
    width: auto;
    line-height: 1.4;
  }
  .site-footer .infoes .contact .title img {
    margin-bottom: 0;
  }
  .site-footer .infoes .contact .businessHours {
    padding-top: 0;
    float: none;
    width: auto;
  }
  .site-footer .infoes .contact .businessHours span.sp {
    display: inline !important;
  }
  .site-footer .infoes .contact .businessHours br {
    display: none;
  }
  .site-footer .contact .businessHours img {
    margin: 0 auto;
    height: auto;
  }
	#gFooter{
		font-family: "源ノ明朝", serif;
	}
	
  #gFooter img {
    max-width: 100%;
  }
  #gFooter .meiwaLink {
    margin-top: 0;
    border-top: 1px solid #E1E1E1;
    margin-bottom: 0;
  }
  #gFooter .meiwaLink li {
    border: 1px solid #E1E1E1;
    border-width: 0 0 1px 0;
    width: 100%;
  }
  #gFooter .ftrCompanyLink {
    text-align: center;
    padding: 20px 10px 0 10px;
    border-bottom: 1px solid #E1E1E1;
    margin-bottom: 0;
  }
  #gFooter .ftrCompanyLink .companyLink {
    position: static;
    margin-top: 20px;
  }
  #gFooter .ftrCompanyLink .companyLink li {
    float: none;
    margin: 10px 0;
  }
  #gFooter .ftrCopy {
    text-align: center;
  }
  .foot-navi {
    height: auto;
    overflow: hidden;
    background: #fff;
  }
  .foot-navi li {
    box-sizing: border-box;
    display: block;
    float: left;
    width: 50%;
    margin-right: 0;
    border-bottom: 1px solid #efefef;
    text-align: center;
    font-size: 10px;
  }
  .foot-navi li:first-child {
    width: 100%;
  }
  /*.foot-navi li:nth-child(odd):last-child {
          width: 100%;
        }*/
  .foot-navi li a {
    display: block;
    position: relative;
    padding: 17px 0 15px;
    color: #282828;
    line-height: 14px;
  }
  .foot-navi li.value a {
    padding: 9px 0;
  }
  .foot-navi li.current a {
    position: relative;
    /*&:after {
            @include after_given;
            position: absolute;
            bottom: 10px;
            width: 50%;
            left: 25%;
            border-bottom: 1px solid #aaa;
          }*/
  }
  .foot-navi li.new a:before {
    display: inline-block;
    position: absolute;
    top: 3px;
    left: 50%;
    color: #887955;
    font-size: 10px;
    font-family: 'Cardo',serif;
    transform: translateX(-50%);
    font-style: itelic;
  }
  .foot-navi li.premium a:before {
    display: inline-block;
    position: absolute;
    top: 3px;
    left: 50%;
    color: #887955;
    font-size: 10px;
    font-family: 'Cardo',serif;
    transform: translateX(-50%);
    font-style: itelic;
  }
  .foot-navi li a:hover {
    text-decoration: none;
  }
  .site-footer .btns {
    padding-bottom: 30px;
  }
  .site-footer .btns li {
    float: none;
    width: auto;
    height: auto;
  }
  .site-footer .btns li:not(:last-child) {
    margin-bottom: 10px;
    padding: 0;
  }
  .site-footer .btns li img {
    margin: 0  0 0 auto;
  }
  .site-footer .contact {
    float: none;
    clear: both;
    width: auto;
  }
  .site-footer .contact .title {
    padding-bottom: 10px;
  }
  .site-footer .contact .title .pc {
    display: none !important;
  }
  .site-footer .contact .title .sp {
    display: block !important;
  }
  .site-footer .contact .number {
    float: none;
    clear: both;
    padding: 0 0px 10px 0;
    position: relative;
    font-size: 36px;
  }
}

@media screen and (max-width: 1024px) and (min-width: 1025px) {
  .site-footer .contact .number span.pc {
    display: inline-block !important;
  }
}

@media screen and (max-width: 1024px) {
  .site-footer .contact .number a {
    box-sizing: border-box;
    padding: 18px 0 18px 28px;
    width: 100%;
    color: #fff;
    font-size: 15px;
    background: #9f9f9f;
    background: linear-gradient(90deg, #9f9f9f 0%, #505050 100%);
  }
  .site-footer .contact .number a .sp {
    display: inline-block !important;
    width: auto;
  }
  .site-footer .contact .number a:before {
    left: 50%;
    margin: -14px 0 0 -110px;
    width: 28px;
    height: 27px;
    background-image: url("../imgs/icon_tel.png");
    background-size: 100% auto;
  }
  .site-footer .contact .businessHours {
    font-size: 10px;
  }
  .site-footer .clioNav {
    width: auto;
    padding-bottom: 20px;
  }
  .site-footer .clioNav li {
    float: none;
    clear: both;
    padding: 0;
    width: auto;
    border-bottom: 1px solid #e2e2e2;
  }
  .site-footer .clioNav li a {
    display: block;
    padding: 10px 0;
  }
  .site-footer .logoArea {
    padding-bottom: 21px;
    width: auto;
    text-align: center;
  }
  .site-footer .logoArea .statement,
  .site-footer .logoArea ul {
    float: none;
    clear: both;
    margin: 0 auto;
    text-align: center;
  }
  .site-footer .logoArea .statement {
    padding-bottom: 30px;
    width: 94%;
  }
  .site-footer .logoArea .statement img {
    width: 100%;
    max-width: 340px;
  }
  .site-footer .logoArea ul li {
    display: block;
    float: none;
    clear: both;
    text-align: left;
    margin: 0 auto 11px;
  }
  .site-footer .logoArea ul li:last-child {
    margin-bottom: 0;
  }
  .site-footer .logoArea ul li span {
    display: inline-block;
    vertical-align: baseline;
  }
  .site-footer .copyright {
    text-align: center;
  }
  .site-footer .copyright p {
    width: 94%;
  }
  .site-footer .copyright img.sp {
    display: inline-block !important;
  }
  .pageTop {
    width: 30px;
    right: 0;
    bottom: 0;
  }
}

/* 
       End-footer-style tablet-sp
      ---------------------------------------- */
/*==================================================================================
 navi
==================================================================================*/
.global-navi-base {
  position: absolute;
  top: 15px;
	left: 260px;
  width: 40%;
  height: 40px;
  font-feature-settings: normal;
  z-index: 30;
}

.global-navi {
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0);
  color: #fff;
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.8), 0 0 3px rgba(0, 0, 0, 0.8), 0 0 3px rgba(0, 0, 0, 0.8);
  z-index: 30;
}

.global-navi .bar {
  display: none;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 4px;
  background: #fff;
  transition: 0.5s all;
}

@media screen and (min-width: 1025px) {
  .global-navi .bar {
    display: block !important;
  }
}

.global-navi.fixed {
  position: fixed;
  background: rgba(255, 255, 255, 0.5);
}

.global-navi.fixed .links > li > a {
  color: #79839e;
  color: #000;
	text-shadow:none;
}

.global-navi.fixed .links > li > a:after {
  background: linear-gradient(90deg, #456098 60%, #5E91CE);
  background: #171B33;
}

@media (min-width: 1025px) {
  .global-navi.fixed .links > li > a:hover {
    color: #BCA33B;
  }
}

.global-navi.fixed .links > li.current > a {
  color: #000 !important;
}

.global-navi .links {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1280px;
  height: 100%;
  letter-spacing: 0;
}

.global-navi .links > li {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
  vertical-align: middle;
}

.global-navi .links > li > a {
  box-sizing: border-box;
  display: block;
  position: relative;
  padding: 20px 2px 8px;
  color: #e2e2e2;
  text-decoration: none;
  transition: color .3s;
}

.global-navi .links > li > a:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 4px;
  background: #fff;
  transform: translateX(-50%);
  transition: width .3s;
}

.global-navi .links > li > a:hover {
  opacity: 1;
}

@media (min-width: 1025px) {
  .global-navi .links > li > a:hover {
    color: #fff;
  }
  .global-navi .links > li > a:hover:after {
    width: calc(100% - 4px);
  }
}

.global-navi .links > li .en {
  display: inline-block;
  padding-top: 5px;
  font-size: 11px;
}

.global-navi .links > li.current > a {
  color: #fff !important;
}

.global-navi .links > li.current > a:after {
  width: calc(100% - 4px);
}

.global-navi .links > li.disable a {
  color: #BABABA !important;
  opacity: 1 !important;
}

.sp-navi li a {
  position: relative;
  line-height: 1.4;
}

.global-navi .links li.new > a:before {
  content: "NEW";
  display: inline-block;
  position: absolute;
  top: 2px;
  right: 0;
  left: 0;
  text-align: center;
  font-size: 14px;
  color: #4E4638;
}

.global-navi .links li.premium > a:before {
  content: "PREMIUM";
  display: inline-block;
  position: absolute;
  top: 2px;
  right: 0;
  left: -15px;
  text-align: center;
  font-size: 13px;
  color: #BCA33B;
}

.global-navi {
  font-size: 0;
}

.global-navi .links {
  max-width: 1000px;
  text-align: justify;
}

.global-navi .links > li:not(:last-child) {
  margin-right: 2.2%;
}

.global-navi .links .other a img {
  margin-left: 2px;
}

/* ----------------------------------------
  navi-style only-pc 
*/
@media screen and (min-width: 1025px) {
  .sp-navi {
    display: none !important;
  }
  .global-navi-base {
    z-index: 101;
  }
}

/* ----------------------------------------
  navi-style tablet-sp
*/
@media screen and (max-width: 1024px) {
  .global-navi-base {
    display: none;
  }
  .global-navi {
    display: none;
  }
  .global-navi.fd_fixed {
    top: 80px;
  }
  .sp-navi {
    display: none;
    position: fixed;
    box-sizing: border-box;
    top: auto !important;
    bottom: 0 !important;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 10px;
    background: rgba(255, 255, 255, 0.95);
    z-index: 101;
  }
  .sp-navi .inner {
    overflow: auto;
  }
  .sp-navi .close {
    display: none;
  }
  .sp-navi .close a {
    display: block;
    box-sizing: border-box;
    border: 1px solid #333;
    background-color: #FFF;
  }
  .sp-navi .close a span {
    display: inline-block;
    line-height: 50px;
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 30px;
    font-size: 24px;
    color: #333;
    background-image: url(../imgs/gNav-close-icn.png);
  }
  .sp-navi .navi-list {
    margin-bottom: 20px;
  }
  .sp-navi .navi-list li {
    min-height: 33px;
    margin-bottom: 4px;
    float: left;
    width: 50%;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  }
  .sp-navi .navi-list li:first-child {
    width: auto;
    float: none;
  }
  .sp-navi .navi-list li:nth-child(2n) {
    clear: both;
  }
  .sp-navi .navi-list li.current a {
    box-sizing: border-box;
  }
  .sp-navi .btns {
    margin: 0 auto;
    width: 80%;
  }
  .sp-navi .btns li {
    margin-bottom: 10px;
  }
  .sp-navi .btns li a {
    color: #fff;
  }
  .sp-navi .btns .color04 {
    margin: 0 auto;
  }
  .sp-navi .btns .color04 img {
    width: 290px;
  }
  .site-footer {
    padding-bottom: 60px;
  }
  .sp-navi li.new a:before,
  .global-navi .links li.new a:before {
    content: "New";
    display: inline-block;
    position: absolute;
    top: 2px;
    right: 0;
    left: 0;
    text-align: center;
    font-size: 12px;
    color: #FF0000;
  }
  .sp-navi li.premium a:before,
  .global-navi .links li.premium a:before {
    content: "PREMIUM";
    display: inline-block;
    position: absolute;
    top: 2px;
    right: 0;
    left: 0;
    text-align: center;
    font-size: 11px;
    color: #BCA33B;
  }
}

/*==================================================================================
 print
==================================================================================*/
@media print {
  .site-header,
  .global-navi-base,
  .site-footer,
  .printBtn,
  .btns,
  .pageTop,
  .sp,
  .mainVisual,
  .printBtn,
  .pageAnnotation {
    display: none !important;
  }
  #map .main {
    width: 850px !important;
  }
}

@media screen and (min-width: 1025px) {
  body > .app-bnr {
    display: none !important;
  }
}

/*==================================================================================
 sp
==================================================================================*/
@media (max-width: 640px) {
  /*

snipets

@mixin after-given {
  content: "";
  display: block;
}
example:
@include after-given;

@mixin abs-topce($top: 0) {
  position: absolute;
  top: $top;
  left: 50%;
  transform: translate(-50%,0);
}
example:
@include abs-topce();
@include abs-topce($top: 10%);

@mixin abs-cece {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
example:
@include abs-cece;

@mixin abs-cele($left:0) {
  position: absolute;
  top: 50%;
  left: $left;
  transform: translate(0,-50%);
}
example:
@include abs-cele();
@include abs-cele($left:10%);


@mixin abs-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
example:
@include abs-cover;

@mixin tac {
  text-align: center;
}
example:
@include tac;

@mixin tar {
  text-align: right;
}
example:
@include tar;

@mixin tal {
  text-align: left;
}
example:
@include tal;


*/
  /*==================================================================================
 common
==================================================================================*/
  main {
    padding-bottom: 120px;
  }
  .pageAnnotation {
    padding-bottom: 20px;
    font-size: 10px;
  }
  .commonButton01 {
    width: auto;
    font-size: 12px;
  }
  .commonButton02 {
    width: 80%;
    font-size: 14px;
  }
  .commonButton02 a,
  .commonButton02 span {
    padding: 16px 0 18px;
  }
  .commonBannerArea {
    padding: 30px 0;
  }
  .commonBannerArea .slick-slide {
    margin: 0 20px;
    width: 90%;
    margin: auto;
  }
  .commonBannerArea .slick-arrow {
    width: 20px;
    height: 36px;
    background-image: url(../imgs/button-arrow02.png);
  }
  .commonCaption01 {
    padding: 4px 8px;
    font-size: 10px;
  }
  /*==================================================================================
 site-header
==================================================================================*/
  .site-header {
    height: 136px;
    height: 92px;
  }
  .site-header .tools .head-btns li a {
    height: 55px;
    background-size: auto 40px;
  }
  .site-header .tools li.links a {
    background-image: url(../imgs/hdr-sp-map.png);
  }
  .site-header .tools li.tel a {
    background-image: url(../imgs/hdr-sp-tell.png);
  }
  .site-header .tools li.menu-button a {
    background-image: url(../imgs/hdr-sp-menu.png);
  }
  .site-header .tools li.menu-button.on a {
    background-image: url(../imgs/hdr-sp-close.png);
  }
  /*==================================================================================
 siteFooter
==================================================================================*/
  .site-footer .copyright {
    padding: 16px 0px 28px;
  }
  .logoArea {
    padding-bottom: 13px;
  }
  .site-footer .clioNav {
    padding-bottom: 14px;
  }
  .site-footer .clioNav .insta {
    margin: 0 auto;
    max-width: 330px;
    padding: 40px 0;
  }
  .site-footer .logoArea .statement {
    padding-bottom: 14px;
  }
  .site-footer .clioNav li a {
    padding: 8px 0 8px 17px;
  }
  .site-footer .contact {
    padding: 0;
  }
  .site-footer .contact .title img {
    width: 70%;
    height: auto;
  }
  .site-footer .contact .businessHours img {
    width: 50%;
    height: auto;
  }
  .site-footer .clioNav li {
    border-bottom: 1px solid #ccc;
  }
  /*==================================================================================
 navi
==================================================================================*/
  .sp-navi {
    top: 55px;
  }
  .sp-navi .gNavSPcv a span {
    line-height: 25px;
    padding-left: 40px;
    font-size: 14px;
    background-size: auto 25px;
  }
  .sp-navi .global-naviClose a span {
    line-height: 25px;
    padding-left: 30px;
    font-size: 14px;
    color: #333;
    background-size: 15px auto;
  }
  .googleMap-request {
    margin: 0 19px;
    padding: 35px 19px 35px;
  }
  .googleMap-request .select {
    margin-bottom: 9px;
  }
  .googleMap-request select {
    font-size: 12px;
  }
  .googleMap-request .input-text {
    margin-bottom: 9px;
  }
  .googleMap-request .input-text:after {
    font-size: 12px;
    line-height: 40px;
  }
  .googleMap-request input {
    display: block;
    box-sizing: border-box;
    padding: 13px 30px 13px 10px;
    font-size: 12px;
  }
  .googleMap-request .common-link-button a {
    margin: 0 22%;
    width: auto;
  }
}

/*# sourceMappingURL=style.css.map */


	
	
	
	
	
	.pageDirection {
  background-color: #fff;
  border-bottom:#000 1px solid;
    border-top:#000 1px solid;
		font-family: "源ノ明朝", serif;
}

.pageDirection__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

@media screen and (min-width: 768px) {
  .pageDirection__inner {
    margin: 0 auto;
    max-width: 1000px;
    padding: 18px 0;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .pageDirection__inner {
    padding: 15px 0%;
  }
}

.pageDirection__inner:before {
  background-color: #000;
  content: '';
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) {
  .pageDirection__inner:before {
    height: 50px;
    width: 1px;
  }
}

@media screen and (max-width: 768px) {
  .pageDirection__inner:before {
    height: 50px;
    width: 1px;
  }
}

.pageDirection__link {
  color: #000;
  display: block;
  letter-spacing: .1em;
  line-height: 1.2;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (min-width: 768px) {
  .pageDirection__link {
    font-size: 22px;
  }
  .pageDirection__link:hover {
    opacity: .7;
  }
}

@media screen and (max-width: 768px) {
  .pageDirection__link {
    font-size: 16px;
  }
}

.pageDirection__link:before {
  background-color: #000;
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

@media screen and (min-width: 768px) {
  .pageDirection__link:before {
  }
}

@media screen and (max-width: 768px) {
  .pageDirection__link:before {
  }
}

@media screen and (min-width: 768px) {
  .pageDirection__link--previous {
    padding:15px 80px 30px;
	background-image: url("top_page/arrow_left.svg");
	background-repeat:no-repeat;
	background-size: 10% 100%;
	background-position: left center;
	color: #000;
	display: block;
	text-align: left;
	line-height: 140%;
  }
  .pageDirection__link--previous span{font-family: "EB Garamond"!important;letter-spacing: 0.15em;font-size: 14px;}
}

@media screen and (max-width: 768px) {
  .pageDirection__link--previous {
    padding:22px 0 30px 7%;
	background-image: url("top_page/arrow_left.svg");
		background-repeat:no-repeat;
	background-size:15px 100%;
	background-position: left 5px center;
	color: #000;
	display: block;
	text-align: left;
	line-height: 140%;
  }
  .pageDirection__link--previous span{font-family: "EB Garamond"!important;letter-spacing: 0.15em;font-size: 10px;}
}

.pageDirection__link--previous:before {
  left: 0;
}

@media screen and (min-width: 768px) {
  .pageDirection__link--next {
    padding:15px 80px 30px;
	background-image: url("top_page/arrow_right.svg");
	background-repeat:no-repeat;
	background-size: 10% 100%;
	background-position: right center;
	color: #000;
	display: block;
	text-align: right;
	line-height: 140%;
  }
  .pageDirection__link--next span{font-family: "EB Garamond"!important;letter-spacing: 0.15em;font-size: 14px;}
  
}

@media screen and (max-width: 768px) {
  .pageDirection__link--next {
    padding:22px 7% 30px 0;
	background-image: url("top_page/arrow_right.svg");
	background-repeat:no-repeat;
	background-size:15px 100%;
	background-position: right 5px center;
	color: #000;
	display: block;
	text-align: right;
	line-height: 140%;
  }
  .pageDirection__link--next span{font-family: "EB Garamond"!important;letter-spacing: 0.15em;font-size: 10px;}
}

.pageDirection__link--next:before {
  right: 0;
}

.footer-contact {
  background-color: #ffff;
  color: #000;
	font-family: "源ノ明朝", serif;
}

@media screen and (min-width: 768px) {
  .footer-contact {
    padding: 75px 80px 80px;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .footer-contact {
    padding: 60px 40px 65px;
  }
}

@media screen and (min-width: 768px) {
  .footer-contact__title {
    font-size: 16px;
    letter-spacing: .15em;
    line-height: 1.5;
  }
  .footer-contact__title:before {
    content: '';
    margin-top: calc((1 - 1.5) * .5em);
  }
  .footer-contact__title:after {
    margin-bottom: calc((1 - 1.5) * .5em);
  }
  .footer-contact__title:before, .footer-contact__title:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

@media screen and (max-width: 768px) {
  .footer-contact__title {
    font-size: 10px;
    letter-spacing: .02em;
    line-height: 1.5;
  }
  .footer-contact__title:before {
    content: '';
    margin-top: calc((1 - 1.5) * .5em);
  }
  .footer-contact__title:after {
    margin-bottom: calc((1 - 1.5) * .5em);
  }
  .footer-contact__title:before, .footer-contact__title:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

.footer-contact__tel {
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Cormorant Infant", serif;
  letter-spacing: .11em;
  line-height: .75;
	text-decoration: none;
	text-align: center;
}

@media screen and (min-width: 768px) {
  .footer-contact__tel {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 26px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 40px;
    pointer-events: none;
  }
}

@media screen and (max-width: 768px) {
  .footer-contact__tel {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 25px;
	  text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .footer-contact__tel img {
    margin-right: 14px;
    width: 16px;
  }
}

@media screen and (max-width: 768px) {
  .footer-contact__tel img {
    margin-right: 11px;
    width: 15px;
  }
}

.footer-contact__schedule {
  color: #000;
  letter-spacing: .15em;
  font-size:14px;
}

@media screen and (min-width: 768px) {
  .footer-contact__schedule {
    line-height: 1.6;
    font-size: 16px;
    margin-top: 30px;
  }
  .footer-contact__schedule:before {
    content: '';
    margin-top: calc((1 - 1.6) * .5em);
  }
  .footer-contact__schedule:after {
    margin-bottom: calc((1 - 1.6) * .5em);
  }
  .footer-contact__schedule:before, .footer-contact__schedule:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

@media screen and (max-width: 768px) {
  .footer-contact__schedule {
    font-size: 10px;
    margin-top: 20px;
    line-height: 1.5;
  }
  .footer-contact__schedule:before {
    content: '';
    margin-top: calc((1 - 1.5) * .5em);
  }
  .footer-contact__schedule:after {
    margin-bottom: calc((1 - 1.5) * .5em);
  }
  .footer-contact__schedule:before, .footer-contact__schedule:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

.footer-contact__closed {
  color: #eb6877;
  letter-spacing: .15em;
}

@media screen and (min-width: 768px) {
  .footer-contact__closed {
    line-height: 1.6;
    font-size: 10px;
    margin-top: 20px;
  }
  .footer-contact__closed:before {
    content: '';
    margin-top: calc((1 - 1.6) * .5em);
  }
  .footer-contact__closed:after {
    margin-bottom: calc((1 - 1.6) * .5em);
  }
  .footer-contact__closed:before, .footer-contact__closed:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

@media screen and (max-width: 768px) {
  .footer-contact__closed {
    font-size: 8px;
    margin-top: 20px;
    line-height: 1.625;
  }
  .footer-contact__closed:before {
    content: '';
    margin-top: calc((1 - 1.625) * .5em);
  }
  .footer-contact__closed:after {
    margin-bottom: calc((1 - 1.625) * .5em);
  }
  .footer-contact__closed:before, .footer-contact__closed:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

.footer-contact__intro {
  display: block;
}

@media screen and (max-width: 768px) {
  .footer-contact__about {
    display: inline-block;
  }
}

@media screen and (max-width: 768px) {
  .footer-contact .site-heading {
    display: inline-block;
  }
}

@media screen and (min-width: 768px) {
  .footer-landline {
    margin-top: 65px;
  }
}

@media screen and (max-width: 768px) {
  .footer-landline {
    margin-top: 50px;
  }
}

.footer-landline__txt {
  color: #000;
}

@media screen and (min-width: 768px) {
  .footer-landline__txt {
    font-size: 10px;
    letter-spacing: .15em;
    line-height: 1.6;
  }
  .footer-landline__txt:before {
    content: '';
    margin-top: calc((1 - 1.6) * .5em);
  }
  .footer-landline__txt:after {
    margin-bottom: calc((1 - 1.6) * .5em);
  }
  .footer-landline__txt:before, .footer-landline__txt:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

@media screen and (max-width: 768px) {
  .footer-landline__txt {
    font-size: 8px;
    line-height: 1.625;
  }
  .footer-landline__txt:before {
    content: '';
    margin-top: calc((1 - 1.625) * .5em);
  }
  .footer-landline__txt:after {
    margin-bottom: calc((1 - 1.625) * .5em);
  }
  .footer-landline__txt:before, .footer-landline__txt:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

.footer-landline__tel {
  color: #000;
  display: block;
  font-family: "Cormorant Infant", serif;
  letter-spacing: .11em;
}

@media screen and (min-width: 768px) {
  .footer-landline__tel {
    font-size: 20px;
    margin-top: 5px;
    pointer-events: none;
    line-height: 1.5;
  }
  .footer-landline__tel:before {
    content: '';
    margin-top: calc((1 - 1.5) * .5em);
  }
  .footer-landline__tel:after {
    margin-bottom: calc((1 - 1.5) * .5em);
  }
  .footer-landline__tel:before, .footer-landline__tel:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

@media screen and (max-width: 768px) {
  .footer-landline__tel {
    font-size: 20px;
    margin-top: 5px;
    line-height: 1.5;
  }
  .footer-landline__tel:before {
    content: '';
    margin-top: calc((1 - 1.5) * .5em);
  }
  .footer-landline__tel:after {
    margin-bottom: calc((1 - 1.5) * .5em);
  }
  .footer-landline__tel:before, .footer-landline__tel:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

@media screen and (min-width: 768px) {
  .footer-subNav {
    margin-top: 75px;
  }
}

@media screen and (max-width: 768px) {
  .footer-subNav {
    margin-top: 50px;
  }
}

.footer-subNav__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media screen and (min-width: 768px) {
  .footer-subNav__link {
    display: inline-block;
    font-size: 16px;
    letter-spacing: .1em;
    padding-left: 20px;
    -webkit-transition: .3s;
    transition: .3s;
    line-height: 1.5;
  }
  .footer-subNav__link:before {
    content: '';
    margin-top: calc((1 - 1.5) * .5em);
  }
  .footer-subNav__link:after {
    margin-bottom: calc((1 - 1.5) * .5em);
  }
  .footer-subNav__link:before, .footer-subNav__link:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
  .footer-subNav__link:hover {
    opacity: .7;
  }
}

@media screen and (max-width: 768px) {
  .footer-subNav__link {
    font-size: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    letter-spacing: .1em;
    padding-left: 22.5px;
    line-height: 1.4;
  }
  .footer-subNav__link:before {
    content: '';
    margin-top: calc((1 - 1.4) * .5em);
  }
  .footer-subNav__link:after {
    margin-bottom: calc((1 - 1.4) * .5em);
  }
  .footer-subNav__link:before, .footer-subNav__link:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

@media screen and (min-width: 768px) {
  .footer-subNav__link:not(:last-of-type) {
    margin-right: 35px;
  }
}

@media screen and (max-width: 768px) {
  .footer-subNav__link:not(:last-of-type) {
    margin-bottom: 20px;
  }
}

.footer-subNav__icon {
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

@media screen and (min-width: 768px) {
  .footer-subNav__icon {
    width: 11px;
  }
}

@media screen and (max-width: 768px) {
  .footer-subNav__icon {
    width: 12px;
	  	    left: 40%;
	    position: absolute;
  }
}

.footer-contact h1.site-heading{
	padding-top: 10px;
	font-size:18px;
	font-weight: 100;
}

.kusitu_btn p.btn_under{
	width:300px;
	margin:0 auto;
	text-align:center;
	font-size:12px;
}

a.anchor{
    display: block;
    margin-top: 70px;
}

.kusitu_btn{
	width:300px;
	  margin:40px auto;
}

.kusitu_btn .button01{
	display:block;
	width:300px;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
  background-color: #D7005B;
  color: #fff;

}

.kusitu_btn .button01:hover {
  background-color: #333;
}
.kusitu_btn .button01::before,
.kusitu_btn .button01::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.kusitu_btn .button01,
.kusitu_btn .button01::before,
.kusitu_btn .button01::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}


 /* footer */
 
#footer{
	width:100%;
	height:auto;
	background-color:#002339;
	margin-top:40px;
}

#footer .footer_nav{
	width:100%;
	margin:0 auto;
	text-align:center;
	padding-top:20px;
}

#footer .footer_nav li{
	display:inline-block;
	padding:5px;
	font-size:12px;
	color:#FFF;
}

#footer .footer_nav li a{	color:#FFF;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    }

#footer .footer_nav li a:hover{
	color:#9c7d42;
}

#footer .comapny{
	width:100%;
	margin-top:20px;
	padding-bottom:50px;
	text-align:center;
}

#footer .comapny .left{
	margin-left:10px;
	display:inline-block;
}

#footer .comapny .right{
	color:#FFF;
	font-size:10px;
	margin-right:10px;
}



