@import url(https://fonts.googleapis.com/css?family=Lusitana:400,700);
@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,700,900);

@charset "UTF-8";

/*----------------------
 * 1. GENERAL
 *   1.1  Grids
 *   1.2  Margin
 *   1.3  Text
 *   1.4  Titles and Subtitles
 *   1.5  Tables
 *   1.6  Breadcrumb
 *   1.7  Buttons
 *   1.8  Lists
 *   1.9  Forms
 *   1.10 Div Wraps
 *   1.11 Animations
 *   1.12 Other Elements
 *        1.12.1 plugins
 *        1.12.2 page top
 * 2. HEADER
 * 	  2.1 Main Menu
 *        2.1.1 sns Icon
 *    2.2 Language
 * 3. MAIN VISUAL
 *   3.1 Scroll Icon
 * 4. TOP PAGE
 *    4.1 News
 *    4.2 Calendar
 *    4.3 Link
 * 5. CONTENT
 *    5.1 Slider
 *    5.2 Cate Main
 * 	  5.3 Block Img Wrap
 *    5.4 Quality
 *    5.5 Menu
 *    5.6 News
 *    5.7 Contact
 *    5.8 Box
 * 6. FOOTER
 * 7. INTERACTIONS
 * 8. FULL CALENDER
 * 9. LANGUAGR PAGE(English / Chinese)
 * 10.Twitterと中国語を一旦非表示 250929
 */

/*-------------------------------
 * 1.GENERAL
 * ----------------------------*/
html,
body {
	overflow-x: hidden;
}
body {
    font-family: "游ゴシック",YuGothic, sans-serif;
    margin: 0;
    padding: 0;
    font-size: 14px;
	letter-spacing: 0.02em;
	background: #000;
	color: #fff;
	line-height: 1.8;
	overflow: hidden;
}
@media only screen and (max-width: 767px) {
    body {
        font-size: 13px;
    }
}

a {
    /*color: #CE0D00;*/
    color: #fff;
}
a:hover,
a:visited {
    cursor: pointer;
    /*color: #CE0D00;*/
    color: #fff;
}
a:hover {
  cursor: pointer;
}
a:focus {
  outline: none;
  overflow: hidden;
  text-decoration: none;
}

a[href^="tel:"] {
	cursor: default;
	text-decoration: none;
}
a[href^="tel:"]:hover {
	text-decoration: none;
}
@media screen and (max-width: 767px) {
	a[href^="tel:"] {
		cursor: pointer;
	}
}

hr {
     border-top: 1px solid #666;
     margin-top: 20px;
     margin-bottom: 20px;
}
hr.line-point {
    padding: 0 0 10px;
    position:  relative;
    border-top: none;
    border-bottom: solid 4px rgba(175,145,77,0.6);
    border-radius: 0px 0px 160px 180px/0px 0px 20px 4px;
}
.line-dot {
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #fff;
}
@media screen and (max-width: 767px) {
    hr {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

strong {
    font-weight: 500;
}
strong.bold60 {
    font-weight: 600;
}

.section-wrap {
    margin-top: 30px;
    margin-bottom: 80px;
}
body#top-page .section-wrap {
    margin-top: 100px;
    margin-bottom: 100px;
}
.read-section-wrap {
    margin-top: 30px;
    margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
    .section-wrap {
        margin-top: 0;
        margin-bottom: 40px;
    }
    body#top-page .section-wrap {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    .read-section-wrap {
        margin-top: 0;
        margin-bottom: 40px;
    }
}

@media (min-width: 1200px) {
  .container {
    width: 1130px;
  }
}

main {
    width: 100%;
    margin: 0;
    padding: 0;
}

.flex-start {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
}
.flex-center {
    display: flex;
    flex-flow: row wrap;
    /*justify-content: center;*/
    align-items: center;
    align-content: center;
}

.waku-box {
    border: 1px solid #ccc;
    margin: 40px 0 10px;
    padding: 10px 20px 7px;
    z-index: 20;
}
@media only screen and (max-width: 767px) {
    .waku-box {
        margin-top: 30px;
        padding: 5px 20px 3px;
    }
}

.gold-box {
	border: 1px solid #af914d;
	margin: 0 0 30px;
	padding: 20px 20px 10px;
}
@media only screen and (max-width: 767px) {
    .gold-box {
        padding: 10px 10px 0;
        margin-bottom: 20px;
    }
}

/* 1.1 Grids
 * ------------------------------*/
.row-flex {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
}
.row-flex + .row-flex {
    padding-top: 20px;
}
@media only screen and (max-width: 767px) {
    .row-flex {
        flex-wrap: wrap;
    }
    .row-flex .order1 {
        order: 1;
    }
    .row-flex .order2 {
        order: 2;
    }
}

/*** 1.1.1 Base 10 Grids ***/
.col-base10-xs-0 {
  width: 0%;
}

.col-base10-xs-1 {
  width: 10%;
}

.col-base10-xs-2 {
  width: 20%;
}

.col-base10-xs-3 {
  width: 30%;
}

.col-base10-xs-4 {
  width: 40%;
}

.col-base10-xs-5 {
  width: 50%;
}

.col-base10-xs-6 {
  width: 60%;
}

.col-base10-xs-7 {
  width: 70%;
}

.col-base10-xs-8 {
  width: 80%;
}

.col-base10-xs-9 {
  width: 90%;
}

.col-base10-xs-10 {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .col-base10-sm-0 {
    width: 00%;
  }
}

@media only screen and (min-width: 992px) {
  .col-base10-md-0 {
    width: 00%;
  }
}

@media only screen and (min-width: 1200px) {
  .col-base10-lg-0 {
    width: 00%;
  }
}

@media only screen and (min-width: 768px) {
  .col-base10-sm-1 {
    width: 10%;
  }
}

@media only screen and (min-width: 992px) {
  .col-base10-md-1 {
    width: 10%;
  }
}

@media only screen and (min-width: 1200px) {
  .col-base10-lg-1 {
    width: 10%;
  }
}

@media only screen and (min-width: 768px) {
  .col-base10-sm-2 {
    width: 20%;
  }
}

@media only screen and (min-width: 992px) {
  .col-base10-md-2 {
    width: 20%;
  }
}

@media only screen and (min-width: 1200px) {
  .col-base10-lg-2 {
    width: 20%;
  }
}

@media only screen and (min-width: 768px) {
  .col-base10-sm-3 {
    width: 30%;
  }
}

@media only screen and (min-width: 992px) {
  .col-base10-md-3 {
    width: 30%;
  }
}

@media only screen and (min-width: 1200px) {
  .col-base10-lg-3 {
    width: 30%;
  }
}

@media only screen and (min-width: 768px) {
  .col-base10-sm-4 {
    width: 40%;
  }
}

@media only screen and (min-width: 992px) {
  .col-base10-md-4 {
    width: 40%;
  }
}

@media only screen and (min-width: 1200px) {
  .col-base10-lg-4 {
    width: 40%;
  }
}

@media only screen and (min-width: 768px) {
  .col-base10-sm-5 {
    width: 50%;
  }
}

@media only screen and (min-width: 992px) {
  .col-base10-md-5 {
    width: 50%;
  }
}

@media only screen and (min-width: 1200px) {
  .col-base10-lg-5 {
    width: 50%;
  }
}

@media only screen and (min-width: 768px) {
  .col-base10-sm-6 {
    width: 60%;
  }
}

@media only screen and (min-width: 992px) {
  .col-base10-md-6 {
    width: 60%;
  }
}

@media only screen and (min-width: 1200px) {
  .col-base10-lg-6 {
    width: 60%;
  }
}

@media only screen and (min-width: 768px) {
  .col-base10-sm-7 {
    width: 70%;
  }
}

@media only screen and (min-width: 992px) {
  .col-base10-md-7 {
    width: 70%;
  }
}

@media only screen and (min-width: 1200px) {
  .col-base10-lg-7 {
    width: 70%;
  }
}

@media only screen and (min-width: 768px) {
  .col-base10-sm-8 {
    width: 80%;
  }
}

@media only screen and (min-width: 992px) {
  .col-base10-md-8 {
    width: 80%;
  }
}

@media only screen and (min-width: 1200px) {
  .col-base10-lg-8 {
    width: 80%;
  }
}

@media only screen and (min-width: 768px) {
  .col-base10-sm-9 {
    width: 90%;
  }
}

@media only screen and (min-width: 992px) {
  .col-base10-md-9 {
    width: 90%;
  }
}

@media only screen and (min-width: 1200px) {
  .col-base10-lg-9 {
    width: 90%;
  }
}

@media only screen and (min-width: 768px) {
  .col-base10-sm-10 {
    width: 100%;
  }
}

@media only screen and (min-width: 992px) {
  .col-base10-md-10 {
    width: 100%;
  }
}

@media only screen and (min-width: 1200px) {
  .col-base10-lg-10 {
    width: 100%;
  }
}

/* 1.2  Margin
 * ------------------------------*/
.mt00 { margin-top: 0 !important; }
.mt05 { margin-top: 5px !important; }
.mt10 { margin-top: 10px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt40 { margin-top: 40px !important; }
.mt50 { margin-top: 50px !important; }
.mt60 { margin-top: 60px !important; }
.mt70 { margin-top: 70px !important; }
.mt80 { margin-top: 80px !important; }

.mb00 { margin-bottom: 0 !important; }
.mb05 { margin-bottom: 5px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb60 { margin-bottom: 60px !important; }
.mb70 { margin-bottom: 70px !important; }
.mb80 { margin-bottom: 80px !important; }

.mr30 { margin-right: 30px !important; }

.pt00 { padding-top: 0 !important; }
.pt10 { padding-top: 10px !important; }
.pt20 { padding-top: 20px !important; }

.pb00 { padding-bottom: 0 !important; }
.pb10 { padding-bottom: 10px !important; }
.pb20 { padding-bottom: 20px !important; }

@media only screen and (max-width: 767px) {
    .mt00-xs {
        margin-top: 0 !important;
    }
    .mt05-xs {
        margin-top: 5px !important;
    }
    .mt10-xs {
        margin-top: 10px !important;
    }
    .mt20-xs {
        margin-top: 20px !important;
    }
    .mt30-xs {
        margin-top: 30px !important;
    }
    .mt40-xs {
        margin-top: 40px !important;
    }
    .mt50-xs {
        margin-top: 50px !important;
    }
    .mt60-xs {
        margin-top: 60px !important;
    }
    .mb00-xs {
        margin-bottom: 0 !important;
    }
    .mb05-xs {
        margin-bottom: 5px !important;
    }
    .mb10-xs {
        margin-bottom: 10px !important;
    }
    .mb20-xs {
        margin-bottom: 20px !important;
    }
    .mb30-xs {
        margin-bottom: 30px !important;
    }
    .mb40-xs {
        margin-bottom: 40px !important;
    }
    .mb50-xs {
        margin-bottom: 50px !important;
    }
    .mb60-xs {
        margin-bottom: 60px !important;
    }
    .mr00-xs {
        margin-right: 0 !important;
    }
    .pt00-xs {
        padding-top: 0 !important;
    }
    .pt10-xs {
        padding-top: 10px !important;
    }
    .pb00-xs {
        padding-bottom: 0 !important;
    }
    .pb10-xs {
        padding-bottom: 10px !important;
    }
}

/* 1.3 Text
 * ------------------------------*/
p {
    line-height: 2;
}
.line-height235 {
    line-height: 2.35 !important;
}
.line-height3 {
    line-height: 3 !important;
}
.text-left {
    text-align: left !important;
}
.text-center {
    text-align: center !important;
}
.text-right {
    text-align: right !important;
}
@media only screen and (max-width: 767px) {
    p {
        line-height: 1.8 !important;
    }
    .line-height235,
    .line-height3 {
        line-height: 1.8 !important;
    }
     .text-left-xs {
        text-align: left !important;
    }
    .text-center-xs {
        text-align: center !important;
    }
    .text-right-xs {
        text-align: right !important;
    }
}

.letter-spacing00 {
    letter-spacing: 0 !important;
}

.txt-min {
    font-family: '游明朝', YuMincho, serif !important;
}
.txt-gothic {
    font-family: "游ゴシック",YuGothic, sans-serif !important;
}

.txt-lusitana {
    font-family: 'Lusitana', serif !important;
    font-weight: 400;
    letter-spacing: 0.08em;
}
.txt-lusitana.bold70 {
    font-weight: 700 !important;
}

.txt-roboto {
    font-family: 'Roboto', sans-serif !important;
    letter-spacing: 0.05em;
    font-weight: 400;
}
.txt-roboto.bold50 {
    font-weight: 500 !important;
}
.txt-roboto.bold70 {
    font-weight: 700 !important;
}
.txt-roboto.bold90 {
    font-weight: 900 !important;
}

.txt-red,
.txt-red a,
.txt-red a:hover {
    color: #e50012 !important;
}
.txt-gold,
.txt-gold a,
.txt-gold a:hover {
    color: #af914d !important;
}
.txt-gray,
.txt-gray a,
.txt-gray a:hover {
    color: #a6a6a7 !important;
}
.txt-white,
.txt-white a,
.txt-white a:hover {
    color: #fff !important;
}

a.txt-underline,
.txt-underline {
    text-decoration: underline !important;
}
a.txt-underline:hover {
    text-decoration: none !important;
}

.txt-comming-soon {
    font-family: 'Lusitana', serif !important;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    font-size: 30px;
}
@media only screen and (max-width: 767px) {
    .txt-comming-soon {
        font-size: 20px;
    }
}

.txt-long-url {
    word-break: break-all;
}

.f10 { font-size: 10px !important; }
.f11 { font-size: 11px !important; }
.f12 { font-size: 12px !important; }
.f13 { font-size: 13px !important; }
.f14 { font-size: 14px !important; }
.f15 { font-size: 15px !important; }
.f16 { font-size: 16px !important; }
.f17 { font-size: 17px !important; }
.f18 { font-size: 18px !important; }
.f19 { font-size: 19px !important; }
.f20 { font-size: 20px !important; }
.f21 { font-size: 21px !important; }
.f22 { font-size: 22px !important; }
.f23 { font-size: 23px !important; }
.f24 { font-size: 24px !important; }
.f25 { font-size: 25px !important; }
@media only screen and (max-width: 991px) {
    .f18, .f19 {
        font-size: 16px !important;
    }
    .f20, .f21 {
        font-size: 17px !important;
    }
    .f22, .f23 {
        font-size: 18px !important;
    }
    .f24, .f25 {
        font-size: 20px !important;
    }
}
@media only screen and (max-width: 767px) {
    .f13, .f14 {
        font-size: 12px !important;
    }
    .f15, .f16 {
        font-size: 13px !important;
    }
    .f17, .f18 {
        font-size: 14px !important;
    }
    .f19, .f20, .f21 {
        font-size: 15px !important;
    }
    .f22, .f23, .f24, .f25 {
        font-size: 16px !important;
    }
    .f15-xs {
        font-size: 15px !important;
    }
    .f14-xs {
        font-size: 14px !important;
    }
    .f13-xs {
        font-size: 13px !important;
    }
    .f12-xs {
        font-size: 12px !important;
    }
}

/* 1.4 Titles and Subtitles
 * ------------------------------*/
h1, h2, h3, h4 {
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
}

.section-ttl {
    display: block;
    margin: 0 0 40px;
    font-size: 36px;
    font-family: '游明朝', YuMincho, serif !important;
    letter-spacing: 0.2em;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    overflow: hidden;
}
.section-ttl.en {
    font-family: 'Lusitana', serif !important;
    letter-spacing: 0.2em !important;
}
@media only screen and (max-width: 991px) {
    .section-ttl {
        font-size: 35px;
    }
}
@media only screen and (max-width: 767px) {
    .section-ttl {
        margin-bottom: 25px;
        font-size: 22px;
    }
}

.section-sub {
    margin: 0 0 40px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .section-sub {
        font-size: 12px;
        margin: 5px 0 30px;
    }
}

.sub-point {
    margin: 0 0 20px;
    padding: 0 0 10px;
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-family: '游明朝', YuMincho, serif !important;
    letter-spacing: 0.08em;
    position:  relative;
    border-bottom: solid 4px rgba(175,145,77,0.6);
    border-radius: 0px 0px 160px 180px/0px 0px 20px 4px;
}
p + .sub-point {
    margin-top: 70px;
}
@media only screen and (max-width: 767px) {
    .sub-point {
        margin-bottom: 15px;
        font-size: 15px;
    }
    p + .sub-point {
    	margin-top: 40px;
    }
}

.sub-catch {
    margin: 0 0 25px;
    text-align: center;
    font-size: 23px;
    font-family: '游明朝', YuMincho, serif !important;
    line-height: 2;
}
@media only screen and (max-width: 991px) {
    .sub-catch {
        font-size: 20px;
    }
}
@media only screen and (max-width: 767px) {
    .sub-catch {
        margin-bottom: 15px;
        font-size: 15px;
        text-align: left;
    }
}

.sub-bg {
    margin: 0 0 10px;
    padding: 8px 15px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    background: #af914d;
    color: #fff;
}
@media only screen and (max-width: 767px) {
    .sub-bg {
        font-size: 14px;
        padding: 6px 10px 7px;
    }
}

.sub-square {
	margin: 0;
}
.sub-square span {
	display: inline-block;
	position: relative;
	background: #af914d;
	padding: 10px 20px;
	font-size: 18px;
	font-weight: 600;
	line-height: 20px;
	color: #fff;
	font-family: '游明朝', YuMincho, serif !important;
	letter-spacing: 0.05em;
}
.sub-square span:after {
	content: " ";
	position: absolute;
	top: 0;
	left: 100%;
	width: 0;
	height: 0;
	border-width: 0 10px 40px 0;
	border-style: solid;
	border-color: transparent;
	border-bottom-color: #af914d;
}
@media only screen and (max-width: 767px) {
    .sub-square span {
        padding: 8px 10px;
        line-height: 16px;
        font-size: 14px;
    }
    .sub-square span:after {
        border-width: 0 10px 32px 0;
    }
}

/* 1.5 Tables
 * ------------------------------*/
table {
    width: 100%;
    border-collapse: collapse;
	border-spacing: 0;
	margin: 0 auto;
	border-top: 1px solid #fff;
}
table th {
	width: 30%;
	padding: 20px 10px;
	vertical-align: middle;
	font-weight: normal;
	border-bottom: 1px solid #fff;
}
table td {
	width: 70%;
	padding: 20px 10px;
	vertical-align: middle;
	border-bottom: 1px solid #fff;
}

/* 1.6 Breadcrumb
 * ------------------------------*/
/* 1.7 Buttons
 * ------------------------------*/
.btn {
    display: block;
    width: 220px;
    margin: 60px 0 0;
    border-radius: 0;
    font-size: 16px;
    line-height: 1;
    padding: 20px 10px;
    box-sizing: border-box;
    border: none;
    border: 1px solid #fff;
    background: #000;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.btn:hover {
    color: #000;
    background: #fff;
    transition: .7s;
}
.btn:focus {
    outline: none;
    overflow: hidden;
    text-decoration: none;
    color: #000 !important;
}
.btn:hover:before,
.btn:focus:before,
.btn:active:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}
.btn.black {
    color: #000;
    background: #fff;
    border: 1px solid #000;
}
.btn.black::before {
    background: #000;
}
.btn.black:hover {
    color: #fff;
    background: #000;
}
.btn.black:focus {
    color: #fff !important;
}
.btn.btn-center {
    margin-left: auto;
    margin-right: auto;
}
.btn i {
    font-size: 12px;
    display: inline-block;
    vertical-align: 6%;
}
.btn i.icon-right {
    margin-right: 10px;
}
.btn i.icon-left {
    margin-left: 10px;
}
.news-detail-wrap + .btn {
    margin-top: 0;
    margin-bottom: 80px;
}
.btn.en {
    font-family: 'Lusitana', serif !important;
    letter-spacing: 0.1em !important;
    font-size: 18px;
}
@media only screen and (max-width: 991px) {
    .btn {
        margin: 40px auto 0;
    }
}
@media only screen and (max-width: 767px) {
    .btn {
        width: 180px;
        padding: 15px 10px;
        margin-top: 30px;
        font-size: 14px;
    }
    .news-detail-wrap + .btn {
        margin-top: -20px;
        margin-bottom: 40px;
    }
    .btn.en {
        font-size: 16px;
    }
}

/* 1.8 Lists
 * ------------------------------*/
dl.dl-list {
    width: 100%;
    display: table;
    margin: 0;
    padding: 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
dl.dl-list + dl.dl-list,
.waku-box + dl.dl-list {
    border-top: none;
}
dl.dl-list.bdnone {
    margin-top: -10px;
    border-top: none;
}
dl.dl-list dt {
    width: 28%;
    display: table-cell;
    padding: 20px 10px;
    /*background: #e5e4dd;*/
    font-weight: normal;
    line-height: 1.8;
    vertical-align: middle;
}
dl.dl-list dd {
    width: 72%;
    display: table-cell;
    padding: 20px 10px;
    line-height: 1.8;
    vertical-align: middle;
}
dl.dl-list.dl-message:first-of-type {
    margin-top: 15px;
}
dl.dl-list.dl-message dt {
    width: 10%;
    padding: 10px;
}
dl.dl-list.dl-message dd {
    width: 90%;
    padding: 10px;
}
dl.dl-list.dl-message dd ul.disc-list {
	margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
    dl.dl-list.dl-message dt {
        width: 17%;
        font-size: 12px;
        padding: 10px 5px;
    }
    dl.dl-list.dl-message dd {
        width: 83%;
        padding: 10px 5px;
    }
}
@media only screen and (max-width: 767px) {
    dl.dl-list dt,
    dl.dl-list dd {
        display: block;
        width: 100% !important;
    }
    dl.dl-list dt {
        padding: 10px 0 5px;
    }
    dl.dl-list dd {
        padding: 5px 0 10px;
    }
    dl.dl-list.bdnone-xs {
        border-top: none;
    }
    dl.dl-list.dl-message dt {
        padding: 10px 0 3px;
    }
    dl.dl-list.dl-message dd {
        padding: 0 0 10px;
        font-size: 12px;
    }
}

ul.list-base {
    line-height: 1.9;
}
ul.list-base li {
    margin-bottom: 2px;
}
ul.disc-list {
    list-style: disc;
    margin: 0 0 30px 20px;
}
@media only screen and (max-width: 767px) {
    ul.disc-list {
        margin-bottom: 20px;
    }
}

ol.ol-list {
    padding: 0;
    margin: 0 0 30px 22px;
    line-height: 1.9;
}
@media only screen and (max-width: 767px) {
    ol.ol-list {
        margin-bottom: 20px;
    }
}

/* 1.9 Forms
 * ------------------------------*/
form {
	margin: 20px 0;
	padding: 0;
}
form .hissu {
	display: inline-block;
	height: 16px;
	line-height: 16px;
	margin-left: 10px;
	padding: 0 8px;
	/*background: #e60012;*/
	background: #c3a561;
	color: #fff;
	font-size: 10px;
	vertical-align: 10%;
	border-radius: 10px;
}
form input,
form textarea,
form select {
	background: #fff;
	border: none;
	padding: 2px 10px;
	font-size: 14px;
	color: #000;
	border-radius: 0;
	box-shadow: none;
	-webkit-appearance: none;
	border: 1px solid #9e9e9f;
}
form input.formTbox {
	width: 80%;
}
form .formTbox-m {
	width: 60%;
}
form .formTbox-s {
	width: 30%;
}
form .formTbox-ss {
	width: 10%;
}
form textarea.formTarea {
	width: 80%;
	height: 100px;
}
form label {
	font-weight: normal;
}
form input::-webkit-input-placeholder {
    color: #ccc;
    font-weight: normal;
}
form input:-ms-input-placeholder {
    color: #ccc;
    font-weight: normal;
}
form input::-moz-placeholder {
    color: #ccc;
    font-weight: normal;
}
input[type=radio],
input[type=checkbox] {
	margin-right: 5px;
}
form input[type=checkbox] {
	-webkit-appearance: checkbox !important;
}
form input[type=radio] {
	-webkit-appearance: radio !important;
}
@media screen and (max-width: 991px) {
    form .formTbox-s {
	    width: 50%;
	}
}
@media screen and (max-width: 767px) {
	form input,
	form textarea,
	form select {
		font-size: 12px;
		padding: 5px 10px;
	}
	form input.formTbox {
	    width: 98%;
	}
	form .formTbox-s {
	    width: 40%;
    }
	form .formTbox-ss {
	    width: 20%;
    }
	form input.formTbox-sp {
		width: 80%;
	}
	form textarea.formTarea {
	    width: 98%;
	}
	form .hissu {
	    margin-left: 7px;
	    vertical-align: 5%;
	}
}
/*Chrome、Safari*/
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/*Firefox、IE*/
input[type="number"] {
    -moz-appearance:textfield;
}

/*--------- btn-submit / btn-error --------- */
.btn-submit,
.btn-error {
    width: 300px;
    height: 48px;
	margin: 40px auto 20px;
	padding: 13px 5px;
	font-size: 15px;
	cursor: pointer;
	transition: .7s;
	text-align: center;
	line-height: 1;
	box-sizing: border-box;
	border: none;
}
.btn-submit {
    /*background: #e60012;*/
    background: #c3a561;
    color: #fff;
}
.btn-error {
    background: #dddddd;
    color: #000;
}
.btn-submit:hover {
	/*background: #d20000;*/
	background: #af914d;
}
.btn-error:hover {
	background: #ccc;
}
@media screen and (max-width: 767px) {
    .btn-submit,
    .btn-error {
        width: 200px;
	    margin: 30px auto;
	    padding-top: 13px;
	}
	.btn-error {
	    margin-top: -10px;
	}
}

/* 1.10 DIV Wraps
 * ------------------------------*/
/* 1.11 Animations
 * ------------------------------*/
/* 1.12 Other Elements
 * ------------------------------*/
/* 1.12.1 plugins ------------*/
.map-custmomize {
    margin: 0;
    width: 100%;
    height: 400px;
}
@media screen and (max-width: 767px) {
    .map-custmomize {
        height: 250px;
    }
}

.google-maps iframe {
	margin: 0;
	padding: 0;
}
@media screen and (max-width: 767px) {
	.google-maps {
		position: relative;
		padding-bottom: 75%;
		height: 0;
		overflow: hidden;
	}
	.google-maps iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100% !important;
		height: 100% !important;
	}
}

.fb_iframe_widget, .fb_iframe_widget span, .fb_iframe_widget span iframe[style] {
  width: 100% !important;
}
.fb_iframe_widget {
  margin: 20px 0;
}

/* 1.12.2 page top ------------*/
#pagetop {
    position: fixed;
    bottom: 60px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 22px;
    z-index: 10;
    transition: background-color 400ms;
    background: rgba(0,0,0,0.7) url(../image/pagetop.png) 50% 45% no-repeat;
    text-indent: 100% !important;
	white-space: nowrap;
	overflow: hidden;
}
#pagetop:hover {
    cursor: pointer;
    background: rgba(0,0,0,0.5) url(../image/pagetop.png) 50% 45% no-repeat;
}
@media only screen and (max-width: 767px) {
    #pagetop {
        width: 40px;
        height: 40px;
        border-radius: 20px;
    }
}

/*-------------------------------
 * 2. HEADER
 * ----------------------------*/
header {
    margin: 0;
    padding: 0;
    display: none;
}
@media only screen and (max-width: 991px) {
    header {
        display: block;
        width: 100%;
        height: 50px;
        background: #fff;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 10;
    }
    header h1 {
        width: 120px;
        margin: 0;
        padding: 4px 0 0 10px;
        line-height: 1;
    }
    header h1 img {
        width: 120px;
        height: auto;
    }
}
@media only screen and (max-width: 380px) {
    header h1 {
        padding-top: 3px;
        padding-left: 7px;
        width: 105px;
    }
    header h1 img {
        width: 105px;
    }
}
@media only screen and (max-width: 320px) {
    header h1 {
        width: 80px;
    }
    header h1 img {
        width: 80px;
    }
}

.navbar {
    margin: 0;
}

/* 2.1 Main Menu
 * ------------------------------*/
#main-nav {
    width: 102%;
    height: 70px;
    margin: -1px -1px 0;
    background: #fff;
    color: #000;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
}

#main-nav .navbar-collapse {
    max-width: 1000px !important;
    display: block !important;
    margin: 0 auto;
}
@media only screen and (max-width: 1199px) {
    #main-nav .navbar-collapse {
        width: 100% !important;
    }
}

#main-nav a {
    color: #000;
}
#main-nav a:hover,
#main-nav .active a {
    color: #fff;
    background: #000;
}
#main-nav a:focus {
    background-color: transparent;
    overflow: inherit;
}

#main-nav ul.nav {
    margin: 0 auto;
    text-align: center;
    font-size: 15px;
    color: #000;
    font-family: '游明朝', YuMincho, serif !important;
    letter-spacing: 0.15em;
    font-weight: 500;
}
#main-nav ul.nav li {
    display: inline-block;
    position: relative;
    text-align: center;
}
#main-nav ul.nav > li > a {
    display: inline-block;
    padding-left: 17px;
    padding-right: 17px;
    padding-top: 26px;
    height: 70px;
    transition: 0.7s;
}
@media only screen and (max-width: 1199px) {
    #main-nav ul.nav {
        font-size: 13px;
        padding-left: 155px;
    }
    #main-nav ul.nav > li > a {
        padding-left: 10px;
        padding-right: 10px;
    }
}
@media only screen and (max-width: 991px) {
    #main-nav {
        display: none;
    }
}

#main-nav #logo {
    width: 160px;
    height: auto;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 22px;
    left: 30px;  
}
@media only screen and (max-width: 1199px) {
    #main-nav #logo {
        width: 150px;
        left: 20px;
    }
}

/* 2.1.1 main-nav-xs (sp-only) ------------*/
body#top-page #main-menu {
    display: block;
}
#main-menu {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 20;
}
#main-menu .hamburger {
    position: absolute;
    top: 0;
    right: 0;
    margin: 40px;
    z-index: 2000 !important;
    cursor: pointer;
}
#main-menu .hamburger .line {
    display: block;
    width: 30px;
    height: 2px;
    background: #000;
    margin-bottom: 7px;
}
body#top-page #main-menu .hamburger .line {
    background: #fff;
}
@media only screen and (max-width: 991px) {
    #main-menu {
        display: block;
    }
    #main-menu .hamburger {
        margin: 18px;
    }
    #main-menu .hamburger .line {
        width: 20px;
        margin-bottom: 4px;
    }
}

#main-menu .nav-menu {
  width: 240px;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  right: -240px;
  transition: right .7s;
  z-index: 1000;
}
@media only screen and (max-width: 991px) {
    #main-menu .nav-menu {
        width: 200px;
        right: -200px;
    }
}
@media only screen and (max-width: 767px) {
    #main-menu .nav-menu {
        width: 180px;
        right: -180px;
    }
}

#main-menu .menu--open {
  right: 0;
}

#main-menu .menu-item:first-child {
  margin-top: 100px;
}
#main-menu .menu-item {
    color: #fff;
    width: 100%;
    margin: 0;
    transition: .7s;
    font-weight: 500;
    font-size: 15px;
    font-family: '游明朝', YuMincho, serif !important;
    letter-spacing: 0.15em;
}
#main-menu .menu-item a {
    display: block;
    width: 100%;
    padding: 15px 30px;
    box-sizing: border-box;
    color: #fff;
    transition: .7s;
}
#main-menu .menu-item:hover {
  background: #000;
  cursor: pointer;
}
#main-menu .menu-item a:hover {
    color: #fff;
    text-decoration: none;
}
@media only screen and (max-width: 991px) {
    #main-menu .menu-item {
        font-size: 13px;
    }
}
@media only screen and (max-width: 767px) {
    #main-menu .menu-item:first-child {
        margin-top: 60px;
    }
    #main-menu .menu-item {
        font-size: 12px;
        line-height: 1.6;
    }
}
@media only screen and (max-width: 320px) {
    #main-menu .menu-item a {
        padding: 5px 30px;
    }
}

/* 2.1.1 sns Icon ------------*/
.icon-fb,
.icon-instagram,
.icon-twitter,
.icon-mail {
    display: block;
	width: 30px;
	height: 30px;
	border-radius: 15px;
    background: #000;
    text-align: center;
    position: absolute;
    margin: 0;
	top: 85px;
    padding-top: 3px;
    padding-left: 1px;
    text-align: center;
    box-sizing: border-box;
    z-index: 10;
}
.icon-fb { right: 160px; padding-top: 4px; }
.icon-instagram { right: 120px; }
.icon-twitter { right: 80px; }
.icon-mail { right: 40px; padding-top: 4px; }

body#top-page .icon-fb,
body#top-page .icon-instagram,
body#top-page .icon-twitter,
body#top-page .icon-mail {
    top: 37px;
}
body#top-page .icon-fb {
    right: 245px;
}
body#top-page .icon-instagram {
    right: 200px;
}
body#top-page .icon-twitter {
    right: 155px;
}
body#top-page .icon-mail {
    right: 110px;
}

.icon-fb .fa-facebook,
.icon-instagram .fa-instagram,
.icon-twitter .fa-twitter,
.icon-mail .fa-envelope {
	font-size: 24px !important;
    color: #fff !important;
}
.icon-mail .fa-envelope {
	font-size: 21px !important;
}
.icon-fb:hover,
.icon-instagram:hover,
.icon-twitter:hover,
.icon-mail:hover {
    opacity: 0.7;
    text-decoration: none !important;
    transition: 0.7s;
}
@media only screen and (max-width: 991px) {
    .icon-fb,
    .icon-instagram,
    .icon-twitter,
    .icon-mail {
        width: 28px;
	    height: 28px;
	    border-radius: 14px;
	    top: 12px !important;
    }
    .icon-fb {
        right: 180px !important;
    }
    .icon-instagram {
        right: 140px !important;
    }
    .icon-twitter {
        right: 100px !important;
    }
    .icon-mail {
        right: 60px !important;
    }
    .icon-fb .fa-facebook,
    .icon-instagram .fa-instagram,
    .icon-twitter .fa-twitter,
    .icon-mail .fa-envelope {
        font-size: 22px !important;
    }
    .icon-mail .fa-envelope {
        font-size: 19px !important;
    }
}

/* 2.2 Language
 * ------------------------------*/
ul.language-box {
    margin: 0;
	padding: 0;
	width: 220px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    position: absolute;
    top: 25px;
    right: 20px;
    margin: 0;
    z-index: 10;
}
#top-page ul.language-box {
    width: 280px;
    top: 41px;
    right: 280px;
    color: #fff !important;
    font-weight: 600;
    font-size: 13px;
}
ul.language-box .en {
    font-family: 'Lusitana', serif !important;
    letter-spacing: 0.05em !important;
}
ul.language-box li {
    margin: 0;
	display: inline-block;
}
#top-page ul.language-box li a {
	color: #fff !important;
}
ul.language-box li::after {
    content: ' | ';
    padding: 0 1px;
}
ul.language-box li:first-of-type::before {
    content: ' | ';
    padding-right: 1px;
}
#top-page ul.language-box li::after {
    padding: 0 6px;
}
#top-page ul.language-box li:first-of-type::before {
    padding-right: 6px;
}
#top-page ul.language-box li a:hover,
ul.language-box li a:hover,
#top-page ul.language-box li.active a,
ul.language-box li.active a {
	color: #C4A546 !important;
	text-decoration: none;
	background: none !important;
}
@media only screen and (min-width: 1300px) {
    ul.language-box {
        right: 40px;
    }
}
@media only screen and (max-width: 1199px) {
    ul.language-box {
        right: 10px;
    }
    #top-page ul.language-box li::after {
        padding: 0 3px;
    }
    #top-page ul.language-box li:first-of-type::before {
        padding-right: 4px;
    }
}
@media only screen and (max-width: 991px) {
    ul.language-box {
        top: 14px;
        right: 40px;
        color: #000 !important;
    }
    ul.language-box li a {
	    color: #000 !important;
    }
    #top-page ul.language-box {
        top: 15px;
        right: 200px;
    }
}
@media only screen and (max-width: 767px) {
    ul.language-box {
        width: 220px;
        font-size: 12px;
        right: 35px;
        top: 15px;
    }
    #top-page ul.language-box {
        top: 55px;
        right: 20px;
    }
}
@media only screen and (max-width: 380px) {
    ul.language-box {
        width: 200px;
        right: 30px;
        font-size: 11px;
    }
    ul.language-box li::after {
        padding: 0;
    }
    ul.language-box li:first-of-type::before {
        padding-right: 0;
    }
}
@media only screen and (max-width: 320px) {
    ul.language-box {
        top: 15px;
        right: 10px;
        font-size: 10px;
    }
    #top-page ul.language-box {
        right: -10px;
        font-size: 12px;
    }
    #top-page ul.language-box li::after {
        padding: 0 2px;
    }
    #top-page ul.language-box li:first-of-type::before {
        padding-right: 2px;
    }
}

/*-------------------------------
 * 3. MAIN VISUAL
 * ----------------------------*/
#main-visual {
    width: 100%;
    height: 100%;
	height: 100vh;
    padding: 0;
    margin: 0;
    position: relative;
    opacity: 0.25;
    -webkit-animation: fadeIn 2s linear both;
    -moz-animation: fadeIn 2s linear both;
    -ms-animation: fadeIn 2s linear both;
    animation: fadeIn 2s linear both;
    z-index: 0;
}

#main-visual h1 {
    width: 500px;
    height: 150px;
    display: block;
    padding: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 100;
}
#main-visual #logo {
    width: 500px;
    height: auto;
}
@media only screen and (max-width: 991px) {
    #main-visual h1 {
        width: 400px;
    }
    #main-visual #logo {
        width: 400px;
    }
}
@media only screen and (max-width: 767px) {
    #main-visual h1 {
        width: 200px;
        height: 100px;
        transform: translateY(-30%);
    }
    #main-visual #logo {
        width: 200px;
    }
}

#main-visual .btn {
    position: absolute;
    bottom: 30px;
    right: 45px;
    background: inherit;
    margin: 0;
}
@media only screen and (max-width: 991px) {
    #main-visual .btn {
        bottom: 20px;
        right: 35px;
    }
}
@media only screen and (max-width: 767px) {
    #main-visual .btn {
        bottom: 100px;
        right: 0;
        left: 0;
        margin: auto;
    }
}

/*----- Main Slider -----*/
#main-visual .main-slider {
    width: 100%;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
#main-visual .main-slider li {
    width: 100%;
	height: 100vh;
    display: block;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

/*3.2 Scroll Icon
 *------------------------------*/
#scrollIcon-wrap {
    width: 36px;
    height: 57px;
    position: absolute;
    box-sizing: content-box;
    margin-left: -15px;
    bottom: 10px;
    left: 50%;
    z-index: 44;
}
#scrollIcon {
    width: 36px;
    height: 46px;
    position: relative;
}
#scrollIcon .arrow {
    width: 30px;
	height: 15px;
	position: absolute;
	top: -5px;
	left: 0;
	right: 0;
	margin: auto;
	-webkit-animation: scrollIcon 1.8s infinite;
	animation: scrollIcon 1.8s infinite;
	box-sizing: border-box;
}
@-webkit-keyframes scrollIcon {
	0% {
		-webkit-transform: translate(0, 0);
		opacity: 1;
	}
	50% {
		opacity: 1;
	}
	75% {
		opacity: 1;
	}
	90% {
		opacity: 0;
		transform: translate(0, 15px);
	}
	100% {
		opacity: 0;
	}
}
@keyframes scrollIcon {
	0% {
		transform: translate(0, 0);
		opacity: 1;
	}
	50% {
		opacity: 1;
	}
	75% {
		opacity: 1;
	}
	90% {
		opacity: 0;
		transform: translate(0, 15px);
	}
	100% {
		opacity: 0;
	}
}

/*-------------------------------
 * 4. TOP PAGE
 * ----------------------------*/
/* 4.1 News
 * ------------------------------*/
#tp-news {
    margin-top: 120px !important;
    margin-bottom: 100px !important;
}
#tp-news .section-ttl {
    letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
    #tp-news {
        margin-top: -15px !important;
        margin-bottom: 60px !important;
    }
}

#tp-news .btn {
    margin-top: 40px;
}
@media only screen and (max-width: 1199px) {
    #tp-news .btn {
        width: auto;
    }
}
@media only screen and (max-width: 767px) {
    #tp-news .btn {
        width: 180px;
        margin-top: 35px;
    }
}

.news-cont {
    margin: 0;
}
#tp-news .news-cont {
    height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
}
#tp-news .news-cont {
  scrollbar-base-color: #666;
}
#tp-news .news-cont::-webkit-scrollbar {
  width: 5px;
  height: auto;
}
#tp-news .news-cont::-webkit-scrollbar-track {
  background: #000;
}
#tp-news .news-cont::-webkit-scrollbar-thumb {
  background: #666;
}
@media only screen and (max-width: 767px) {
    #tp-news .news-cont {
        height: 330px;
    }
}

.news-cont ul.list li {
    width: 100%;
    display: table;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
    line-height: 2.3;
}
#tp-news .news-cont ul.list li {
    padding: 25px 20px 25px 0;
}
.news-cont ul.list li:first-of-type {
    border-top: 1px solid #ccc;
}
.news-cont ul.list li a {
    display: block;
    text-decoration: underline;
}
.news-cont ul.list li a:hover {
    text-decoration: none;
}
.news-cont ul.list li .day {
    display: table-cell;
    width: 110px;
    font-family: 'Lusitana', serif;
    letter-spacing: 0.15em;
}
.news-cont ul.list li .txt {
    display: table-cell;
}
@media only screen and (max-width: 767px) {
    .news-cont ul.list li {
        padding: 10px 0 !important;
        line-height: 2;
    }
    #tp-news .news-cont ul.list li {
        padding: 10px 10px 10px 0 !important;
    }
    .news-cont ul.list li .day {
        width: 85px;
        letter-spacing: 0.08em;
    }
}

/* 4.2 Calendar
 * ------------------------------*/
#tp-calendar .calendar-txt-box .sub-catch {
    margin: 20px 0 10px;
    font-size: 18px;
    text-align: center;
}
#tp-calendar .calendar-txt-box .sub-catch:first-of-type {
    margin-top: 0;
}
@media only screen and (max-width: 767px) {
    #tp-calendar .calendar-txt-box .sub-catch {
        font-size: 15px;
    }
    #tp-calendar .calendar-txt-box .sub-catch:first-of-type {
        margin-top: 20px;
    }
}

/* 4.3 Link
 * ------------------------------*/
#tp-link {
    margin-top: 40px;
}
#tp-link ul.btn-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: 0;
}
#tp-link ul.btn-list li {
    width: calc(100% / 2 );
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
}
#tp-link ul.btn-list li:nth-of-type(odd) {
	border-right: none;
}
#tp-link ul.btn-list li:nth-of-type(1),
#tp-link ul.btn-list li:nth-of-type(2) {
	border-top: 1px solid #fff;
}
#tp-link ul.btn-list li .btn {
    width: 100%;
    border: none;
    margin: 0;
}
#tp-link ul.btn-list li .btn.link-none {
	cursor: not-allowed;
}
#tp-link ul.btn-list li .btn.link-none::before {
	display: none;
}
#tp-link ul.btn-list li .btn.link-none:hover {
	color: #fff;
    background: #000;
}
@media only screen and (max-width: 767px) {
    #tp-link ul.btn-list li .btn {
        font-size: 13px;
    }
    #tp-link ul.btn-list li .btn i {
        margin-right: 5px;
        font-size: 11px;
    }
}
@media only screen and (max-width: 480px) {
	#tp-link ul.btn-list li {
		width: 100%;
	}
	#tp-link ul.btn-list li:nth-of-type(odd) {
		border-right: 1px solid #fff;
	}
	#tp-link ul.btn-list li:nth-of-type(2) {
		border-top: none;
	}
}
@media only screen and (max-width: 320px) {
    #tp-link ul.btn-list li .btn {
        font-size: 12px;
    }
    #tp-link ul.btn-list li .btn i {
        display: none;
    }
}

/*-------------------------------
 * 5. CONTENT
 * ----------------------------*/
/* 5.1 Slider
 * ------------------------------*/
.menu-slider {
    display:none;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.menu-slider.slick-initialized {
    display: block;
}
@media only screen and (max-width: 767px) {
    .menu-slider {
        margin-top: 20px;
    }
}

.menu-slider .slick-slide {
    margin: 0 1px;
}

.slide-arrow.prev-arrow,
.slide-arrow.next-arrow {
    width: 14px;
    height: auto;
    position: absolute;
    top: 43%;
    cursor: pointer;
    z-index: 10010;
}
.slide-arrow.prev-arrow {
    left: 20px;
}
.slide-arrow.next-arrow {
    right: 20px;
}
@media only screen and (max-width: 767px) {
    .slide-arrow.prev-arrow,
    .slide-arrow.next-arrow {
        display: none !important;
    }
}

.slick-prev:before,
.slick-next:before {
    color: #000 !important;
}

.slick-dots {
    bottom: -45px;
}
.slick-dots li button:before {
    font-size: 12px;
}
.slick-dots li.slick-active button:before,
.slick-dots li button:hover:before {
    color: #30b5a9;
}
@media only screen and (max-width: 767px) {
    .slick-dots li button:before {
        font-size: 6px;
    }
}

/* 5.2 Cate Main
 * ------------------------------*/
#cate-main {
    width: 100%;
    height: 100%;
	height: 100vh;
    padding: 0;
    margin: 0;
    position: relative;
    opacity: 0.25;
    -webkit-animation: fadeIn 2s linear both;
    -moz-animation: fadeIn 2s linear both;
    -ms-animation: fadeIn 2s linear both;
    animation: fadeIn 2s linear both;
    z-index: 0;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}
#cate-main.message {
    background-image: url(../../message/image/main.jpg?=v2);
}
#cate-main.quality {
    background-image: url(../../quality/image/main.jpg?=v2);
}
#cate-main.menu {
    background-image: url(../../menu/image/main.jpg?=v2);
}
#cate-main.access {
    background-image: url(../../access/image/main.jpg?=v2);
}
#cate-main.gallery {
    background-image: url(../../gallery/image/main.jpg?=v2);
}
#cate-main.h-small {
    height: 400px;
    background-position: 50% 20% !important;
}
@media only screen and (max-width: 767px) {
    #cate-main {
        height: 400px;
    }
    #cate-main.h-small {
        height: 220px;
    }
}

#cate-main .cate-ttl {
    width: 100%;
    height: 100px;
    position: absolute;
    top: 47%;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 10;
    text-align: center;
    color: #fff;
    font-size: 50px;
    font-family: '游明朝', YuMincho, serif !important;
    letter-spacing: 0.15em;
    font-weight: 500;
}
#cate-main.h-small .cate-ttl {
    top: 200px;
    font-size: 45px;
}
@media only screen and (max-width: 991px) {
    #cate-main .cate-ttl {
        top: 43%;
    }
    #cate-main.h-small .cate-ttl {
        top: 180px;
    }
}
@media only screen and (max-width: 767px) {
    #cate-main .cate-ttl {
        font-size: 28px;
        top: 49%;
    }
    #cate-main.h-small .cate-ttl {
        top: 110px;
        font-size: 26px;
    }
}

#cate-main .btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: inherit;
    margin: 0;
    z-index: 20;
}
@media only screen and (max-width: 991px) {
    #cate-main .btn {
        bottom: 20px;
        right: 20px;
    }
}
@media only screen and (max-width: 767px) {
    #cate-main .btn {
        display: none;
    }
}

/* 5.3 Block Img Wrap
 * ------------------------------*/
.block-img-wrap {
    margin-bottom: 80px;
}
.block-img-wrap .block-cont {
    width: 100%;
    margin: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
}
.block-img-wrap .block-cont .left,
.block-img-wrap .block-cont .right {
    width: 50%;
    height: 400px;
    background-size: cover !important;
    overflow: hidden;
    position: relative;
}
.block-img-wrap .block-cont .h-full {
    height: 100vh !important;
}
@media screen and (max-width: 991px) {
    .block-img-wrap .block-cont .left,
    .block-img-wrap .block-cont .right {
        height: 450px;
    }
}
@media screen and (max-width: 767px) {
    .block-img-wrap .block-cont .left,
    .block-img-wrap .block-cont .right {
        width: 100%;
        height: auto !important;
    }
    .block-img-wrap .block-cont .h-full {
        height: auto !important;
    }
    .block-img-wrap .block-cont .img-bg {
        height: 400px !important;
    }
    .block-img-wrap .block-cont .order1 {
        order: 1;
    }
    .block-img-wrap .block-cont .order2 {
        order: 2;
    }
}
@media screen and (max-width: 480px) {
    .block-img-wrap .block-cont .img-bg {
        height: 250px !important;
    }
}

.block-img-wrap .block-cont .inner {
    width: 550px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    z-index: 10;
    position: relative;
    box-sizing: border-box;
}
@media only screen and (max-width: 1199px) {
    .block-img-wrap .block-cont .inner {
        width: 470px;
    }
}
@media only screen and (max-width: 991px) {
    .block-img-wrap .block-cont .inner {
        width: 370px;
    }
}
@media only screen and (max-width: 767px) {
    .block-img-wrap .block-cont .inner {
        width: 100%;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/*----- Top Message / Message Page -----*/
#tp-message.block-img-wrap .block-cont.message-cont .left {
    height:  400px;
    background: url(../image/img-message.jpg?=v2) top center no-repeat;
    background-size: contain !important;
}
#tp-message.block-img-wrap .block-cont.message-cont .right {
    height: 400px;
}
#tp-message.block-img-wrap .block-cont .inner {
    padding-top: 0;
    padding-right: 50px;
}
#tp-message.message-wrap .block-cont.message-cont .left {
    height: 400px;
    background: url(../../message/image/img01.jpg?=v4) top center no-repeat;
    background-size: contain !important;
}
#tp-message.message-wrap .block-cont.message-cont .right {
    height: auto;
}
#tp-message.message-wrap .block-cont .inner {
    padding-top: 0;
    padding-right: 30px;
}
#tp-message.message-wrap .block-cont .inner p {
    line-height: 1.8;
    margin: 8px 0;
}
@media only screen and (max-width: 1199px) {
    #tp-message.block-img-wrap .block-cont .inner {
        padding-right: 20px !important;
    }
    #tp-message.message-wrap .block-cont.message-cont .left,
    #tp-message.block-img-wrap .block-cont.message-cont .right {
        height: 330px;
    }
}
@media only screen and (max-width: 991px) {
    #tp-message.block-img-wrap .block-cont.message-cont .left {
        background-position: center center;
        background-size: cover !important;
    }
    #tp-message.block-img-wrap .block-cont.message-cont .right {
        height: auto;
    }
    #tp-message.block-img-wrap .block-cont .inner {
        padding-top: 20px;
        padding-right: 15px !important;
    }
    #tp-message.message-wrap .block-cont.message-cont .left {
        background-size: contain !important;
        height: 300px;
    }
}

/*----- Top Menu -----*/
#tp-menu.block-img-wrap .block-cont.menu-cont .left {
    height: auto;
}
#tp-menu.block-img-wrap .block-cont.menu-cont .right {
    background: url(../image/img-menu.jpg) center center no-repeat;
}
#tp-menu.block-img-wrap .block-cont .inner {
    padding-top: 50px;
}
@media only screen and (max-width: 991px) {
    #tp-menu.block-img-wrap .block-cont.menu-cont .right {
        height: 400px;
    }
    #tp-menu.block-img-wrap .block-cont .inner {
        padding-top: 30px;
    }
}

/*----- Top Access -----*/
#tp-access.block-img-wrap .block-cont.access-cont01 .left {
    height: 400px;
    background: url(../image/img-access.jpg?=v2) top left no-repeat;
}
#tp-access.block-img-wrap .block-cont.access-cont01 .right,
#tp-access.block-img-wrap .block-cont.access-cont02 .left,
#tp-access.block-img-wrap .block-cont.access-cont02 .right {
    height: auto;
}
#tp-access.block-img-wrap .block-cont .inner {
    padding-top: 20px;
}
#tp-access.block-img-wrap .block-cont .inner .btn {
    margin-top: 30px;
}
@media only screen and (max-width: 1199px) {
    #tp-access.block-img-wrap .block-cont.access-cont01 .left {
        height: 450px;
    }
}
@media only screen and (max-width: 991px) {
    #tp-access.block-img-wrap .block-cont.access-cont01 .left {
        background-position: center center;
        height: 500px;
    }
}
@media only screen and (max-width: 767px) {
    #tp-access.block-img-wrap .block-cont.access-cont02 .inner {
        padding-top: 0;
    }
}

/*----- Top Quality -----*/
#tp-quality.block-img-wrap .block-cont.quality-cont .left {
    background: url(../image/img-quality.jpg) center center no-repeat;
}
#tp-quality.block-img-wrap .block-cont .inner {
    padding-top: 50px;
}
@media only screen and (max-width: 991px) {
    #tp-quality.block-img-wrap .block-cont .left,
    #tp-quality.block-img-wrap .block-cont .right {
        height: 400px;
    }
    #tp-quality.block-img-wrap .block-cont .inner {
        padding-top: 30px;
    }
}

/*----- Quality Page -----*/
.quality-wrap.block-img-wrap {
    margin-top: 60px;
}
.quality-wrap.block-img-wrap .block-cont.quality01-cont .left {
    background: url(../../quality/image/img01.jpg?=v2) center center no-repeat;
}
.quality-wrap.block-img-wrap .block-cont.quality01-cont .right {
    height: auto;
    padding-bottom: 50px;
}
.quality-wrap.block-img-wrap .block-cont.quality02-cont .right {
    background: url(../../quality/image/img02.jpg?=v2) center center no-repeat;
}
.quality-wrap.block-img-wrap .block-cont .inner {
    padding-top: 75px;
}
@media only screen and (max-width: 1199px) {
    .quality-wrap.block-img-wrap .block-cont .inner {
        padding-top: 55px;
    }
}
@media only screen and (max-width: 991px) {
    .quality-wrap.block-img-wrap .block-cont .inner {
        padding-top: 45px;
    }
}
@media only screen and (max-width: 767px) {
    .quality-wrap.block-img-wrap {
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .quality-wrap.block-img-wrap .block-cont .inner {
        padding-top: 30px;
        padding-bottom: 20px;
    }
    .quality-wrap.block-img-wrap .block-cont.quality01-cont .right {
        padding-bottom: 0;
    }
}

/*----- Gallery Page -----*/
.gallery-wrap.block-img-wrap {
    margin-top: 60px;
}
.gallery-wrap.block-img-wrap .block-cont.gallery01-cont .left {
    background: url(../../gallery/image/img01.jpg?=v2) center center no-repeat;
}
.gallery-wrap.block-img-wrap .block-cont.gallery02-cont .right {
    background: url(../../gallery/image/img02.jpg?=v2) center center no-repeat;
    background-size: contain !important;
}
.gallery-wrap.block-img-wrap .block-cont.gallery03-cont .left {
    background: url(../../gallery/image/img03.jpg?=v2) center center no-repeat;
}
.gallery-wrap.block-img-wrap .block-cont.gallery04-cont .right {
    background: url(../../gallery/image/img04.jpg?=v2) center center no-repeat;
}
.gallery-wrap.block-img-wrap .block-cont.gallery05-cont .left {
    background: url(../../gallery/image/img05.jpg?=v2) center center no-repeat;
}
.gallery-wrap.block-img-wrap .block-cont.gallery06-cont .right {
    background: url(../../gallery/image/img06.jpg?=v2) center center no-repeat;
}
.gallery-wrap.block-img-wrap .block-cont.gallery07-cont .left {
    background: url(../../gallery/image/img07.jpg?=v2) center center no-repeat;
}
.gallery-wrap.block-img-wrap .block-cont .inner {
    padding-top: 20px;
}
@media only screen and (max-width: 1199px) {
    .gallery-wrap.block-img-wrap .block-cont .inner {
        padding-top: 0;
    }
    .gallery-wrap.block-img-wrap .block-cont .left,
    .gallery-wrap.block-img-wrap .block-cont .right {
        height: 350px;
    }
}
@media only screen and (max-width: 991px) {
    .gallery-wrap.block-img-wrap .block-cont .left,
    .gallery-wrap.block-img-wrap .block-cont .right {
        height: 300px;
    }
}
@media only screen and (max-width: 767px) {
    .gallery-wrap.block-img-wrap {
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .gallery-wrap.block-img-wrap .block-cont .inner {
        padding-top: 15px;
        padding-bottom: 20px;
    }
}

/*5.4 Quality
 *------------------------------*/
#tp-quality .sub,
.quality-wrap .sub,
#tp-menu .sub,
#tp-message .sub,
.gallery-wrap .sub {
    margin: 0 0 20px;
    font-size: 21px;
    font-family: '游明朝', YuMincho, serif !important;
    letter-spacing: 0.08em;
    line-height: 1.8;
    text-align: center;
}
.quality-wrap .sub {
    text-align: left;
    margin-bottom: 60px;
}
@media screen and (max-width: 1199px) {
    .quality-wrap .sub {
        margin-bottom: 50px;
        font-size: 19px;
    }
}
@media only screen and (max-width: 991px) {
    #tp-quality .sub,
    #tp-menu .sub,
    #tp-message .sub {
        margin-bottom: 10px;
        font-size: 18px;
    }
    .quality-wrap .sub {
        margin-bottom: 30px;
        font-size: 18px;
        letter-spacing: 0.05em;
    }
}
@media only screen and (max-width: 767px) {
     #tp-quality .sub,
     #tp-menu .sub,
     .gallery-wrap .sub {
        font-size: 14px;
    }
    #tp-message .sub {
         font-size: 15px;
    }
    .quality-wrap .sub {
        margin-bottom: 25px;
        font-size: 14px;
    }
}

.quality-wrap .number {
    display: block;
    position: absolute;
    top: 0;
    left: 45px;
    margin: 0;
    font-size: 170px;
    color: #4a4a4a;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 700;
    line-height: 1;
    z-index: 0;
    opacity: 0.8;
}
@media screen and (max-width: 1199px) {
    .quality-wrap .number {
        font-size: 140px;
    }
}
@media screen and (max-width: 991px) {
    .quality-wrap .number {
        font-size: 120px;
        left: 25px;
    }
}
@media screen and (max-width: 767px) {
    .quality-wrap .number {
        left: 15px;
        font-size: 80px;
    }
}

.quality-wrap .container-fluid .row {
    margin-left: 0;
    margin-right: 0;
}
.quality-wrap .container-fluid,
.quality-wrap .container-fluid .col-xs-12 {
    padding-left: 0;
    padding-right: 0;
}

/*5.5 Menu
 *------------------------------*/
.menu-wrap .row {
    margin-left: 0;
    margin-right: 0;
}
.menu-wrap .row .col-xs-12 {
    padding-left: 0;
    padding-right: 0;
}
.menu-wrap .bg-menu-pdf {
    background: #fff;
}

.read-section-wrap + .menu-wrap {
    margin-top: -20px;
}

/*5.6 News
 *------------------------------*/
.news-wrap .news-cont ul.list li:first-of-type {
    border-top: none;
}
.news-wrap .sub-point {
    font-size: 23px;
    margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
    .news-wrap .sub-point {
        font-size: 20px;
    }
}
@media only screen and (max-width: 767px) {
    .news-wrap .sub-point {
        font-size: 15px;
    }
}

.news-detail-wrap .day {
    display: block;
    font-size: 14px;
    color: #727171;
    font-family: 'Lusitana', serif;
    letter-spacing: 0.17em;
    line-height: 1;
}
.news-detail-wrap p {
    margin-top: 20px;
}
@media only screen and (max-width: 767px) {
    .news-detail-wrap .day {
        font-size: 11px;
        letter-spacing: 0.08em;
    }
    .news-detail-wrap p {
        margin-top: 10px;
    }
}

/*5.7 Contact
 *------------------------------*/
#contact-wrap .wbox {
    background: #fff;
    padding: 20px 15px 15px;
    margin: 20px auto 30px;
    text-align: center;
}
@media only screen and (max-width: 767px) {
    #contact-wrap {
        padding-bottom: 30px;
    }
    #contact-wrap .wbox {
        margin: 0 auto 20px;
        padding: 15px 10px 10px;
    }
}

/*--------- Thaks Page--------- */
#contact-wrap.thanks {
    margin: 0;
    padding: 40px 0 60px;
}
#contact-wrap.thanks #logo {
    width: 260px;
    height: auto;
    margin: 0 auto 40px;
}
@media only screen and (max-width: 991px) {
    #contact-wrap.thanks #logo {
        width: 210px;
    }
}
@media only screen and (max-width: 767px) {
    #contact-wrap.thanks {
        padding: 20px 0 10px;
    }
    #contact-wrap.thanks #logo {
        width: 150px;
        margin-bottom: 20px;
    }
}

/*--------- Table--------- */
#contact-wrap table.sendmail-table {
    width: 90%;
    margin-top: 20px;
}
#contact-wrap table.sendmail-table th,
#contact-wrap table.sendmail-table td {
	padding: 12px 10px;
	vertical-align: middle;
	font-weight: normal;
	text-align: left;
	font-size: 14px;
}
@media screen and (max-width: 767px) {
    #contact-wrap table.sendmail-table {
        width: 100%;
        border-top: 1px solid #fff;
    }
    #contact-wrap table.sendmail-table th {
	    padding: 5px 0 0;
	    font-size: 12px;
	}
    #contact-wrap table.sendmail-table td {
	    padding: 0 0 5px;
	    font-size: 12px;
	    border-bottom: 1px solid #fff;
	}
}

/*-------------------------------
 * 6. FOOTER
 * ----------------------------*/
footer {
  margin: 0;
  padding: 30px 0 0;
  background: #fff;
  color: #000;
}
footer a {
    color: #000;
    text-decoration: underline;
}
footer a:hover {
    color: #000;
    text-decoration: none;
}
@media only screen and (max-width: 767px) {
    footer {
        padding-top: 20px;
    }
}

footer .logo {
    width: 220px;
    margin-bottom: 10px;
    text-align: center;
}
footer .logo img {
    width: 220px;
    height: auto;
    margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
    footer .logo,
    footer .logo img {
        width: 180px;
    }
}
@media only screen and (max-width: 767px) {
    footer .logo {
        margin: 10px auto 0;
    }
}

footer dl.tel-list {
    width: 100%;
    display: table;
    margin: 10px 0 20px;
    font-size: 15px;
}
footer dl.tel-list dt {
    width: 25%;
    display: table-cell;
    vertical-align: middle;
    font-weight: 400;
}
footer dl.tel-list dd {
    width: 75%;
    display: table-cell;
    vertical-align: middle;
}
footer dl.tel-list .tel {
    font-family: 'Roboto', sans-serif !important;
    letter-spacing: 0.05em;
    font-weight: 600;
    font-size: 24px;
}
footer dl.tel-list .btn {
    margin: 0;
    width: 180px;
    padding: 15px 10px;
    color: #fff;
    border: 1px solid #000;
}
footer dl.tel-list .btn:hover {
    color: #000;
}
footer dl.tel-list .btn:focus {
    color: #fff;
}
footer .txt-box p {
    margin: 0;
    line-height: 1.7;
}
@media only screen and (max-width: 991px) {
    footer dl.tel-list,
    footer dl.tel-list dt,
    footer dl.tel-list dd {
        width: 100%;
        display: block;
    }
    footer dl.tel-list {
        margin: 10px 0 15px;
    }
    footer dl.tel-list dt {
        margin-bottom: 10px;
    }
    footer .txt-box p {
        font-size: 13px;
    }
}
@media only screen and (max-width: 767px) {
    footer .txt-box {
        width: 200px;
        margin: 0 auto 20px;
    }
    footer dl.tel-list {
        text-align: center;
    }
    footer dl.tel-list .btn {
        width: 250px;
        margin: 0 auto 20px;
    }
    footer .txt-box p {
        font-size: 12px;
    }
}

footer .btn {
    margin-top: 20px;
    text-decoration: none;
}
@media only screen and (max-width: 991px) {
    footer .btn {
        margin: 10px 0 20px;
    }
}
@media only screen and (max-width: 767px) {
    footer .btn {
        margin: 0 auto 10px;
    }
}

footer .btn.footer-reservation {
    position: absolute;
    top: 0;
    right: 10px;
    margin: 0;
    width: 250px;
}
footer .btn.footer-consulting {
    position: absolute;
    top: 75px;
    right: 10px;
    margin: 0;
    font-size: 15px;
    letter-spacing: 0;
    width: 250px;
}
footer .btn.footer-consulting.en {
    font-size: 17px;
}
@media only screen and (max-width: 767px) {
    footer .btn.footer-reservation {
        position: relative;
        top: 0;
        left: 0;
        margin: 0 auto 20px;
    }
    footer .btn.footer-consulting {
        position: relative;
        top: 0;
        left: 0;
        margin: 20px auto 10px;
        font-size: 14px;
    }
    footer .btn.footer-consulting.en {
        font-size: 15px;
    }
}

footer ul.sns-list {
    display: none;
}
@media only screen and (max-width: 767px) {
    footer ul.sns-list {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-items: flex-start;
        align-content: flex-start;
        margin: 0 auto;
        padding: 10px 0;
    }
    footer ul.sns-list li {
        margin: 0 8px;
    }
    footer ul.sns-list .icon-fb,
    footer ul.sns-list .icon-instagram,
    footer ul.sns-list .icon-twitter,
    footer ul.sns-list .icon-mail {
        width: 28px;
	    height: 28px;
	    border-radius: 14px;
	    position: relative;
	    margin: 0;
	    top: 0;
	    left: 0;
	    padding-top: 4px;
    }
}

footer #copyright {
    margin-top: 30px;
    font-size: 11px;
    text-align: center;
    background: #000;
    color: #fff;
    padding: 15px 10px;
}
@media only screen and (max-width: 767px) {
    footer #copyright {
        font-size: 10px;
        padding: 10px;
    }
}

/*-------------------------------
 * 7. INTERACTIONS
 * ----------------------------*/
.opacity:hover {
  opacity: 0.75;
  transition: 0.7s;
}

/*-------------------------------
 * 8. FULL CALENDER
 * ----------------------------*/
#calendar {
    width: 100%;
    margin: 0 auto;
    border: 1px solid #000;
    background: #fff;
    color: #000 !important;
}

#calendar .fc-toolbar h2 {
    /*margin: 10px 0;*/
    margin: 13px 0 -10px;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    font-family: 'Roboto', sans-serif !important;
    letter-spacing: 0.05em;
    /*padding-right: 70px;*/
    padding-right: 15px;
}
@media only screen and (max-width: 991px) {
    #calendar .fc-toolbar h2 {
        font-size: 17px;
    }
}
@media only screen and (max-width: 767px) {
    #calendar .fc-toolbar h2 {
        font-size: 15px;
        margin-top: 15px;
    }
}

#calendar table {
    padding: 0;
    margin: 0;
    border: none;
}
#calendar table th,
#calendar table td {
    width: 14.2% !important;
    font-size: 16px;
    line-height: 1.6;
    padding: 0;
    border: none;
    text-align: center;
}
#calendar table th {
    padding: 3px 0;
    border-top: 1px solid #000;
    /*border-bottom: 1px solid #000;*/
}
#calendar table td {
    padding: 3px 0;
    padding: 0 5px;
    border-top: 1px solid #000;
}
@media only screen and (max-width: 1199px) {
    #calendar table th,
    #calendar table td {
        font-size: 14px;
    }
}
@media only screen and (max-width: 480px) {
    #calendar table th,
    #calendar table td {
        font-size: 13px;
    }
}

#calendar .fc-sun {
    color: #e50012;
}
#calendar .fc-sat {
    /*color: #0CC2FF;*/
    color: #3A53F4;
}
#calendar .fc-event {
    font-size: 18px;
    color: #e50012 !important;
    background: #fff !important;
    border: none !important;
}
@media only screen and (max-width: 991px) {
    #calendar .fc-event {
        font-size: 16px;
    }
}
@media only screen and (max-width: 480px) {
    #calendar .fc-event {
        font-size: 15px;
    }
}

#calendar button {
    float: left;
    height: 28px;
    line-height: 25px;
    padding: 0 8px;
    /*margin-top: 1px;*/
    margin-top: 14px;
    margin-left: 10px;
    margin-right: 10px;
    background: none;
    border: 1px solid #000;
}
#calendar .fc-icon-left-single-arrow:after {
    content: '\f053';
    font-family: fontAwesome;
    font-size: 12px;
    font-weight: 400;
}
#calendar .fc-icon-right-single-arrow:after {
    content: '\f054';
    font-family: fontAwesome;
    font-size: 12px;
    font-weight: 400;
}
@media only screen and (max-width: 991px) {
    #calendar button {
        height: 25px;
        line-height: 20px;
        padding: 0 5px;
        /*margin-top: 0;*/
    }
    #calendar .fc-icon-left-single-arrow:after,
    #calendar .fc-icon-right-single-arrow:after {
        font-size: 10px;
    }
}

/*-------------------------------
 * 9. LANGUAGR PAGE(English / Chinese)
 * ----------------------------*/
body.language-page .en {
    font-family: 'Lusitana', serif !important;
}
body.language-page .en.letter-spacing {
    letter-spacing: 0.12em;
}

body.language-page #calendar table {
    margin: 0 auto;
}
body.language-page #calendar .fc-toolbar h2 {
    margin: 10px 0;
    padding-right: 100px;
}
body.language-page #calendar button {
    margin-top: 1px;
    margin-right: 0;
}
@media only screen and (max-width: 991px) {
    body.language-page #calendar .fc-toolbar h2 {
        padding-right: 70px;
    }
    body.language-page #calendar button {
        margin-top: 0;
    }
}
@media only screen and (max-width: 767px) {
    body.language-page #calendar .fc-toolbar h2 {
        padding-right: 60px;
    }
}

body.language-page #tp-menu .block-img-wrap {
    margin-bottom: 0 !important;
}
body.language-page #tp-menu.block-img-wrap .block-cont.menu-cont .left {
    height: auto;
}
body.language-page #tp-menu.block-img-wrap .block-cont.menu-cont .right {
    height: 350px;
}
@media only screen and (max-width: 1199px) {
    body.language-page #tp-menu.block-img-wrap .block-cont.menu-cont .right {
        height: 300px;
    }
}
@media only screen and (max-width: 991px) {
    body.language-page #tp-menu.block-img-wrap .block-cont.menu-cont .right {
        height: 250px;
    }
}

body.language-page #tp-menu-pdf {
    margin-top: -50px;
}
body.language-page #tp-menu-pdf .row {
    margin-left: 0;
    margin-right: 0;
}
body.language-page #tp-menu-pdf .row .col-xs-12 {
    padding-left: 0;
    padding-right: 0;
}
body.language-page #tp-menu-pdf .bg-menu-pdf {
    background: #fff;
}

body.language-page .quality-wrap.block-img-wrap .block-cont.quality01-cont .right .inner {
    padding-top: 55px;
}
body.language-page .quality-wrap.block-img-wrap .block-cont.quality01-cont .right .sub {
    margin-bottom: 40px;
}
@media only screen and (max-width: 1199px) {
    body.language-page .quality-wrap.block-img-wrap .block-cont.quality01-cont .right .inner {
        padding-top: 40px;
    }
    body.language-page .quality-wrap.block-img-wrap .block-cont.quality01-cont .right .sub {
        margin-bottom: 30px;
    }
}
@media only screen and (max-width: 991px) {
    body.language-page .quality-wrap.block-img-wrap .block-cont.quality01-cont .right .inner {
        padding-top: 30px;
    }
    body.language-page .quality-wrap.block-img-wrap .block-cont.quality01-cont .right .sub {
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 767px) {
    body.language-page .quality-wrap.block-img-wrap .block-cont.quality01-cont .right .inner {
        padding-top: 20px;
    }
    body.language-page .quality-wrap.block-img-wrap .block-cont.quality01-cont .right .sub {
        margin-bottom: 15px;
    }
}

body.language-page #tp-access.block-img-wrap .block-cont.access-cont01 .left {
    height: 300px;
}

body.language-page #tp-access dl.dl-list:first-of-type {
    margin-top: 40px;
}
body.language-page #tp-access dl.dl-list dt {
    width: 20%;
    padding: 15px 10px;
}
body.language-page #tp-access dl.dl-list dd {
    width: 80%;
    padding: 15px 10px;
}
body.language-page #tp-access dl.dl-list dd p:last-of-type,
body.language-page #tp-access dl.dl-list dd ul:last-of-type {
    margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
    body.language-page #tp-access dl.dl-list:first-of-type {
        margin-top: 5px;
    }
    body.language-page #tp-access dl.dl-list dt {
        padding: 10px 0 5px;
    }
    body.language-page #tp-access dl.dl-list dd {
        padding: 5px 0 10px;
    }
}

/*-------------------------------
 * 10.Twitterと中国語を一旦非表示 250929
 * ----------------------------*/
/*----- twitter -----*/
.icon-fb { right: 120px; }
.icon-instagram { right: 80px; }
.icon-mail { right: 40px; padding-top: 4px; }

body#top-page .icon-fb {
    right: 200px;
}
body#top-page .icon-instagram {
    right: 155px;
}
body#top-page .icon-mail {
    right: 110px;
}

@media only screen and (max-width: 991px) {
    .icon-fb {
        right: 140px !important;
    }
    .icon-instagram {
        right: 100px !important;
    }
    .icon-mail {
        right: 60px !important;
    }
}

/*----- language-box -----*/
ul.language-box {
	width: 160px;
}
#top-page ul.language-box {
    width: 220px;
    right: 215px;
}
@media only screen and (max-width: 767px) {
    ul.language-box {
        width: 160px;
    }
    #top-page ul.language-box {
    	width: auto;
        right: 0;
        left: 0;
        margin: auto;
        text-align: center;
    }
}
@media only screen and (max-width: 380px) {
    ul.language-box {
        width: 150px;
    }
}
