@import url(https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700);
@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,700,900);
@import url(https://fonts.googleapis.com/css2?family=Lusitana:wght@400;700);

@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
 *        1.12.3 raindrops
 *        1.12.4 showmore
 * 2. HEADER
 * 	  2.1 Main Nav
 *        2.1.1 main-nav (pc-only)
 *        2.1.2 main-nav-xs (sp-only)
 *        2.1.3 sns Icon
 * 3. MAIN VISUAL
 * 4. TOP PAGE
 *    4.1 Enjoy
 *    4.2 News
 * 5. CONTENT
 *    5.1 Slider
 *    5.2 Cate Main
 *    5.3 Cate Ichiran Top
 * 	  5.4 Block Img Wrap
 *    5.5 Img Area hover
 *    5.6 Img BG Area hover
 *    5.7 News Flash
 *    5.8 Box
 *    5.9 Menu List
 *    5.10 Contact
 *    5.11 Lightgallery
 *    5.12 Img Gallery List
 * 6. SIDEBAR
 * 7. FOOTER
 * 8. INTERACTIONS
 * 9. MERGE
 * 10. language-nav追加 210730
 * 11. header telをmailに変更 220603
 * 12. ジャングルクルーズslider 220630
 * 13. CTA V2 230919
 * 14. ヘッダー スタッフ募集追加 231024
 * 15. 貸切クルーズ各詳細 コンシェルジュセクション追加 20240123
 * 16. ヘッダーボタンの修正 20241007
 * 17. お問いわせフォームの修正 20241007
 */

/*-------------------------------
 * 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: #fff;
	color: #000;
	line-height: 1.8;
	overflow: hidden;
}
@media only screen and (max-width: 767px) {
    body {
        font-size: 13px;
    }
}

a {
    /*color: #CE0D00;*/
    color: #000;
}
a:hover {
    cursor: pointer;
    /*color: #CE0D00;*/
    color: #000;
}
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 #dedede;
     margin-top: 20px;
     margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
    hr {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

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

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

.section-wrap {
    margin-top: 80px;
    margin-bottom: 100px;
}
#naka-main .lower-wrap {
    margin-top: 40px;
    margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
    .section-wrap {
        margin-top: 40px;
        margin-bottom: 50px;
    }
    #naka-main .lower-wrap {
        margin-top: 20px;
        margin-bottom: 30px;
    }
}

@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;
}

.img-right {
    float: right;
}
.img-left {
    float: left;
}

/* 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
 * ------------------------------*/
.mt-10 { margin-top: -10px !important; }
.mt-20 { margin-top: -20px !important; }
.mt-30 { margin-top: -30px !important; }
.mt00 { margin-top: 0 !important; }
.mt05 { margin-top: 5px !important; }
.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !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; }
.mb15 { margin-bottom: 15px !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; }

.mr10 { margin-right: 10px !important; }
.mr20 { margin-right: 20px !important; }
.mr30 { margin-right: 30px !important; }
.ml30 { margin-left: 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;
    }
    .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;
    }
    .mb00-xs {
        margin-bottom: 0 !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;
    }
    .mr00-xs {
        margin-right: 0 !important;
    }
    .ml00-xs {
        margin-left: 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: "A1明朝", serif !important;
    letter-spacing: 0.08em;
}
.txt-gothic {
    font-family: "游ゴシック",YuGothic, sans-serif !important;
}

.txt-source-sans {
    font-family: 'Source Sans Pro', sans-serif !important;
    letter-spacing: 0.05em;
    font-weight: 300;
}
.txt-source-sans.bold40 {
    font-weight: 400 !important;
}
.txt-source-sans.bold60 {
    font-weight: 600 !important;
}
.txt-source-sans.bold70 {
    font-weight: 700 !important;
}

.txt-montserrat {
    font-family: 'Montserrat', sans-serif !important;
    letter-spacing: 0.03em;
    font-weight: 400;
}
.txt-montserrat.bold50 {
    font-weight: 500 !important;
}
.txt-montserrat.bold60 {
    font-weight: 600 !important;
}
.txt-montserrat.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-lusitana {
    font-family: 'Lusitana', serif !important;
    letter-spacing: 0.08em;
    font-weight: 400;
}
.txt-lusitana.bold70 {
    font-weight: 700 !important;
}

.txt-red,
.txt-red a,
.txt-red a:hover {
    color: #e50012 !important;
}
.txt-blue,
.txt-blue a,
.txt-blue a:hover {
    color: #2098D1 !important;
}
.txt-dark-blue,
.txt-dark-blue a,
.txt-dark-blue a:hover {
    color: #1c2a52 !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-black,
.txt-black a,
.txt-black a:hover {
    color: #000 !important;
}

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

.txt-indent {
    margin: 0;
    text-indent: -1em !important;
    padding-left: 1em !important;
}

.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;
    }
    .f11-xs {
        font-size: 11px !important;
    }
    .f10-xs {
        font-size: 10px !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;
    font-size: 50px;
    font-family: 'Source Sans Pro', sans-serif !important;
    letter-spacing: 0.05em;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    overflow: hidden;
}
.section-ttl.ja,
.section-ttl .ja {
    font-size: 33px;
    font-family: "A1明朝", serif !important;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: -10px;
}
.section-ttl .ja {
    font-size: 40px;
}
.section-ttl.small {
    font-size: 40px;
}
.section-ttl.txt-gothic {
    font-size: 35px;
    font-family: "游ゴシック",YuGothic, sans-serif !important;
}
.section-ttl div {
    display: inline-block;
    margin: 0 10px;
    vertical-align: 5%;
}
@media only screen and (max-width: 991px) {
    .section-ttl {
        font-size: 40px;
    }
    .section-ttl.small {
        font-size: 33px;
    }
}
@media only screen and (max-width: 767px) {
    .section-ttl {
        font-size: 25px;
    }
    .section-ttl.ja {
        font-size: 18px;
        margin-bottom: 0;
    }
    .section-ttl.small {
        font-size: 23px;
    }
    .section-ttl.txt-gothic {
        font-size: 18px;
    }
}

.section-sub {
    margin: 10px 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.03em;
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .section-sub {
        margin-top: 7px;
        font-size: 13px;
        line-height: 1.7;
    }
}

.section-line {
    width: 88px;
    height: 1px;
    border-top: 1px solid #000;
    margin: 40px auto;
}
@media only screen and (max-width: 767px) {
    .section-line {
        margin: 20px auto;
    }
}

.ttl {
    margin: 0 0 30px;
    text-align: center;
    font-size: 18px;
    line-height: 1.9;
    font-weight: 500;
}
.ttl.large {
    font-size: 25px;
    margin-bottom: 50px;
    font-family: "A1明朝", serif !important;
    letter-spacing: 0.08em;
}
@media only screen and (max-width: 991px) {
    .ttl.large {
        font-size: 22px;
    }
}
@media only screen and (max-width: 767px) {
    .ttl {
        margin-bottom: 20px;
        font-size: 13px;
        letter-spacing: 0.02em;
    }
    .ttl.large {
        margin-bottom: 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

.sub-line {
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #ccc;
  font-size: 22px;
  line-height: 1.5;
}
.sub-line::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: 2;
  content: '';
  width: 25%;
  height: 3px;
  background-color: #1c2a52;
}
dl + .sub-line,
p + .sub-line,
ul + .sub-line,
ol + .sub-line {
    margin-top: 40px;
}
@media only screen and (max-width: 767px) {
    .sub-line {
        font-size: 15px;
        margin-bottom: 10px;
    }
    dl + .sub-line,
    p + .sub-line,
    ul + .sub-line,
    ol + .sub-line {
        margin-top: 25px;
    }
}

.sub-center-line {
    overflow: hidden;
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
    margin: 30px auto 15px;
}
.sub-center-line.left {
    text-align: left;
}
.sub-center-line div {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0 15px;
  text-align: center;
}
.sub-center-line.left div {
    text-align: left;
    padding-left: 0;
}
.sub-center-line div::before,
.sub-center-line div::after {
  position: absolute;
  top: 50%;
  content: '';
  width: 400%;
  height: 1px;
  background-color: #000;
}
.sub-center-line div::before {
  right: 100%;
}
.sub-center-line div::after {
  left: 100%;
}
@media only screen and (max-width: 767px) {
    .sub-center-line {
        margin: 20px auto 10px;
        font-size: 14px;
    }
    .sub-center-line div {
        padding: 0 8px;
    }
}

.sub-bg {
    margin: 0 0 20px;
    padding: 5px 10px;
    background: #af914d;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}
dl + .sub-bg,
p + .sub-bg,
ul + .sub-bg,
ol + .sub-bg {
    margin-top: 40px;
}
.sub-bg .inline-small {
    display: inline-block;
    font-size: 13px;
    margin: 0 10px;
    vertical-align: 4%;
}
@media only screen and (max-width: 767px) {
    .sub-bg {
        margin-bottom: 10px;
        padding-bottom: 6px;
        font-size: 14px;
    }
    dl + .sub-bg,
    p + .sub-bg,
    ul + .sub-bg,
    ol + .sub-bg {
        margin-top: 25px;
    }
    .sub-bg .inline-small {
        font-size: 11px;
        margin: 0 10px 0 0;
        vertical-align: 1%;
    }
}

.sub-ribon {
  position: relative;
  padding: 15px 10px 15px 90px;
  background: #1c2a52;
  color: #fff;
  font-size: 23px;
  line-height: 1.6;
  margin: 30px 0;
}
.sub-ribon::before {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 15px transparent;
  border-right: solid 20px #7b98a7;
}
@media only screen and (max-width: 991px) {
    .sub-ribon {
        font-size: 19px;
        padding: 10px 10px 12px 90px;
    }
}
@media only screen and (max-width: 767px) {
    .sub-ribon {
        font-size: 14px;
        padding: 9px 10px 11px 80px;
        line-height: 1.5;
        margin: 20px 0 25px;
    }
}

.sub-ribon .balloon {
  position: absolute;
  display: block;
  margin: 0;
  padding: 19px 5px 0;
  width: 85px;
  height: 85px;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  background: #af914d;
  border-radius: 50%;
  box-sizing: border-box;
  top: -15px;
  left: -10px;
  font-family: 'Roboto', sans-serif !important;
  letter-spacing: 0.08em;
  font-weight: 700;
  transform: rotate( 45deg );
}
.sub-ribon .balloon .txt {
    display: block;
    transform: rotate( -90deg );
}
.sub-ribon .balloon:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -25px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #af914d;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
    .sub-ribon .balloon {
        width: 70px;
        height: 70px;
        font-size: 13px;
        padding-top: 17px;
        left: -5px;
    }
    .sub-ribon .balloon:before {
        margin-top: -10px;
        border: 10px solid transparent;
        border-left: 10px solid #af914d;
        right: -19px;
    }
}

/* 1.5 Tables
 * ------------------------------*/
table {
    width: 100%;
    border-collapse: collapse;
	border-spacing: 0;
	margin: 0 auto;
	border: 1px solid #ccc;
}
table th {
	padding: 10px;
	vertical-align: middle;
	font-weight: normal;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
	background: #e5e4dd;
}
table td {
	padding: 10px;
	vertical-align: middle;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
}
table.unko-table th,
table.unko-table td {
    padding: 2px;
    font-size: 13px;
    text-align: center;
    width: 16%;
}
table.unko-table .day {
    width: 20%;
}
@media screen and (max-width: 767px) {
    table th,
    table td {
        padding: 5px;
    }
	table.unko-table th,
	table.unko-table td {
	    font-size: 10px;
	    width: 15%;
	}
	table.unko-table .day,
	table.unko-table .day {
	    width: 25%;
	}
}

/* 1.6 Breadcrumb
 * ------------------------------*/
#breadcrumb {
    margin: 20px 0;
    font-size: 12px;
    line-height: 1;
}
@media only screen and (max-width: 767px) {
    #breadcrumb {
        display: none;
    }
}

#breadcrumb ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
#breadcrumb ul li {
    display: inline-block;
}
#breadcrumb ul li:after {
    padding: 0 4px;
    content: " > ";
}
#breadcrumb ul li:last-of-type:after {
    content: "";
}
#breadcrumb ul li a {
    color: #000;
    text-decoration: underline;
}
#breadcrumb ul li a:hover {
    text-decoration: none;
}

/* 1.7 Buttons
 * ------------------------------*/
.btn {
    display: block;
    max-width: 400px;
    margin: 30px auto 0;
    border-radius: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    padding: 20px 10px;
    box-sizing: border-box;
    position: relative;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    border: none;
    color: #fff;
    background: #1c2a52;
}
.btn:before {
  content: '';
  position: absolute;
  border: #1c2a52 solid 6px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
.btn:hover,
.btn:focus,
.btn:active {
    color: #fff;
}
.btn:focus {
    outline: none;
    overflow: hidden;
    text-decoration: none;
}
.btn:hover:before,
.btn:focus:before,
.btn:active:before {
  -webkit-animation-name: btn-anime;
  animation-name: btn-anime;
}
.btn.btn-white {
    margin: 30px auto;
    color: #1c2a52;
    background: #fff;
    border: #1c2a52 solid 2px;
}
.btn.btn-white:before {
  border: #1c2a52 solid 2px;
}
.btn.btn-white:hover,
.btn.btn-white:focus,
.btn.btn-white:active {
    color: #1c2a52;
}

.btn.btn-gold {
    margin: 30px auto;
    color: #af914d;
    background: #fff;
    border: #af914d solid 2px;
}
.btn.btn-gold:before {
  border: #af914d solid 2px;
}
.btn.btn-gold:hover,
.btn.btn-gold:focus,
.btn.btn-gold:active {
    color: #af914d;
}

.btn.btn-back {
    width: 300px;
    margin: 60px auto 80px;
}
.row + .btn.btn-back {
    margin-top: 0;
}
@media only screen and (max-width: 1199px) {
    .col-lg-6 .btn.btn-white,
    .col-lg-6 .btn.btn-gold {
        margin: 30px auto 0;
    }
    .row + .btn.btn-back {
        margin-top: 30px;
    }
}
@media only screen and (max-width: 767px) {
    .btn {
        max-width: 280px;
        padding: 15px 10px;
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.5;
    }
    .btn.btn-white,
    .btn.btn-gold {
        margin: 15px auto;
    }
    .col-lg-6 .btn.btn-white,
    .col-lg-6 .btn.btn-gold {
        margin: 15px auto 0;
    }
    .btn.btn-white:before,
    .btn.btn-gold:before {
        border-width: 1px;
    }
    .btn.btn-back {
        width: 280px;
        margin: 15px auto 30px;
    }
}

.btn i {
    font-size: 14px;
    display: inline-block;
    vertical-align: 6%;
}
.btn i.icon-right,
.icon-right {
    margin-right: 10px;
}
.btn i.icon-left,
.icon-left {
    margin-left: 10px;
}
@media only screen and (max-width: 767px) {
    .btn i {
        font-size: 12px;
    }
}

/* motion(btn) */
@-webkit-keyframes btn-anime {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
@keyframes btn-anime {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}

/* 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 dt {
    width: 25%;
    display: table-cell;
    padding: 15px 20px;
    background: #e5e4dd;
    font-weight: normal;
    line-height: 1.8;
    vertical-align: middle;
    text-align: center;
}
dl.dl-list dd {
    width: 75%;
    display: table-cell;
    padding: 15px 20px;
    line-height: 1.8;
    vertical-align: middle;
}
dl.dl-list.w-half dt,
dl.dl-list.w-half dd {
    width: 50%;
}
dl.dl-list.h-small dt {
    padding: 5px 10px;
}
dl.dl-list.h-small dd {
    padding: 5px 10px;
}
dl.dl-list dd p {
    margin-top: 0;
}
dl.dl-list dd ul {
    margin-left: 20px;
}
@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: 5px 0;
    }
    dl.dl-list dd {
        padding: 8px 0;
    }
    dl.dl-list.bdnone-xs {
        border-top: none !important;
    }
}

ul.list-base {
    line-height: 1.9;
}
ul.list-base li {
    margin-bottom: 2px;
}

ul.disc-list {
    list-style: disc;
    margin: 0 0 10px 25px;
}

ol.ol-list {
    padding: 0;
    margin: 0 0 10px 22px;
    line-height: 1.9;
}

ul.line-list li {
    padding: 20px 10px 15px 20px;
    border-bottom: 1px solid #000;
}
ul.line-list li a {
    display: block;
    text-decoration: underline;
}
ul.line-list li a:hover {
    text-decoration: none;
}
ul.line-list li ul li {
    padding: 10px 10px 0 16px;
    border-bottom: none;
}
@media only screen and (max-width: 767px) {
    ul.line-list {
        margin-top: 10px;
    }
    ul.line-list li {
        padding: 20px 10px 10px;
    }
    ul.line-list li ul li {
        padding: 10px 10px 5px 14px;
    }
}

/* 1.9 Forms
 * ------------------------------*/
form {
	margin: 20px 0 0;
	padding: 0;
}
form .hissu {
	display: inline-block;
	height: 16px;
	line-height: 16px;
	margin-left: 10px;
	padding: 0 8px;
	background: #e50012;
	/*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 .formTbox {
	width: 80%;
}
form .formTbox-m {
	width: 60%;
}
form .formTbox-s {
	width: 30%;
}
form .formTbox-ss {
	width: 10%;
}
form .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 {
        margin-top: 10px;
    }
	form input,
	form textarea,
	form select {
		font-size: 12px;
		padding: 5px 10px;
	}
	form .formTbox {
	    width: 98%;
	}
	form .formTbox-s {
	    width: 40%;
    }
	form .formTbox-ss {
	    width: 20%;
    }
	form .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: 35px auto 20px;
	padding: 13px 5px;
	font-size: 16px;
	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;
}
.btn-submit:focus,
.btn-error:focus {
  outline: none;
  overflow: hidden;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
    .btn-submit,
    .btn-error {
        width: 200px;
	    margin: 25px auto 10px;
	    padding-top: 13px;
	    font-size: 15px;
	}
	.btn-error {
	    margin-top: 0;
	}
}

/* 1.10 DIV Wraps
 * ------------------------------*/
/* 1.11 Animations
 * ------------------------------*/
/* 1.12 Other Elements
 * ------------------------------*/
/* 1.12.1 plugins ------------*/
.movie iframe {
	margin: 0;
	padding: 0;
}
@media screen and (max-width: 767px) {
	.movie {
		position: relative;
		padding-bottom: 75%;
		height: 0;
		overflow: hidden;
	}
	.movie 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 {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 22px;
    z-index: 10;
    transition: background-color 400ms;
    background: rgba(28,42,82,0.85) url(../image/pagetop.png) 50% 45% no-repeat;
    text-indent: 100% !important;
	white-space: nowrap;
	overflow: hidden;
}
#pagetop:hover {
    cursor: pointer;
    background: rgba(28,42,82,1) url(../image/pagetop.png) 50% 45% no-repeat;
}
@media only screen and (max-width: 767px) {
    #pagetop {
        width: 40px;
        height: 40px;
        border-radius: 20px;
    }
}

/* 1.12.3 raindrops ------------*/
.wave {
    margin: 20px 0 0;
    padding: 10px 0;
}
.wave-footer {
    margin: 20px 0 0;
    padding: 10px 0;
}
.wave-dark {
    margin: -10px 0 0;
    padding: 20px 0;
}
@media only screen and (max-width: 767px) {
    .wave,
    .wave-footer {
        margin-top: 10px;
    }
}

/* 1.12.4 showmore ------------*/
.showmore_content {
    position: relative;
    overflow: hidden;
    -webkit-animation: fadeIn 2.0s ease 0s 1 normal;
    animation: fadeIn 2.0s ease 0s 1 normal;
}
.showmore_trigger {
    width: 100%;
    cursor: pointer;
}
.showmore_trigger span	{
    display: block;
}
.less {
    display: none !important;
}

/*-------------------------------
 * 2. HEADER
 * ----------------------------*/
header {
    width: 100%;
    height: 110px;
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #fff;
    -webkit-animation: fadeIn 2s linear both;
    animation: fadeIn 2s linear both;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
/*body#top-page header {
    -webkit-animation-delay: 5.5s;
    animation-delay: 5.5s;
}*/
@media only screen and (max-width: 767px) {
    header {
        height: 100px;
    }
}

header .tel-box {
    position: absolute;
    top: 4px;
    right: 20px;
    margin: 0;
    z-index: 10020 !important;
    color: #1c2a52;
}
header .tel-box a {
    display: block;
    color: #1c2a52;
}
header .tel-box .txt {
    display: block;
    margin: -8px 3px 0 0;
    text-align: right;
    font-size: 12px;
    color: #1c2a52;
}
header .contact-box {
    position: absolute;
    top: 12px;
    /*right: 230px;*/
    right: 220px;
    margin: 0;
    font-size: 12px;
    z-index: 10020 !important;
    letter-spacing: 0.08em;
}
header .contact-box a {
    display: block;
    width: 165px;
    float: left;
    background: #1c2a52;
    padding: 5px 10px;
    color: #fff;
    text-align: center;
    position: relative;
}
header .contact-box a {
    margin-left: 15px;
}
header .contact-box a:hover {
    text-decoration: none;
}
header .contact-box a:before {
  content: '';
  position: absolute;
  border: #1c2a52 solid 6px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
header .contact-box a:hover:before,
header .contact-box a:focus:before,
header .contact-box a:active:before {
  -webkit-animation-name: btn-anime;
  animation-name: btn-anime;
}
@media only screen and (max-width: 1199px) {
    header .tel-box {
        right: 10px;
    }
    header .contact-box {
        right: 210px;
    }
    header .contact-box a {
        margin-left: 10px;
    }
}
@media only screen and (max-width: 991px) {
    header .contact-box {
        width: 100%;
        display: flex;
        flex-flow: row;
        justify-content: flex-start;
        align-items: center;
        align-content: flex-start;
        position: absolute;
        top: 0;
        left: 0;
        margin: 0;
    }
    header .contact-box a {
        width: 50%;
        margin: 0;
    }
    header .contact-box a:last-of-type {
        border-left: 1px solid #fff;
    }
    header .tel-box {
        right: 110px;
        top: 42px;
    }
}
@media only screen and (max-width: 767px) {
    header .contact-box a {
        padding-bottom: 6px;
    }
    header .tel-box {
        right: 75px;
        top: 40px;
    }
    header .tel-box .txt {
        margin-top: -4px;
        font-size: 11px;
    }
}
@media only screen and (max-width: 320px) {
    header .contact-box {
        font-size: 11px;
    }
}

.tel {
    display: inline-block;
    font-size: 22px;
    font-family: 'Lusitana', serif;
    font-weight: 700;
    letter-spacing: 0.08em;
}
i.fa-phone {
    display: inline-block;
    margin-right: 8px;
    font-size: 18px;
}
i.fa-envelope {
    display: inline-block;
    margin-right: 8px;
    vertical-align: -12%;
    font-size: 18px;
}
i.fa-chevron-circle-right {
    display: inline-block;
    margin-right: 6px;
    vertical-align: -8%;
    font-size: 14px;
}
@media only screen and (max-width: 767px) {
    .tel {
        font-size: 18px;
    }
    i.fa-phone {
        font-size: 15px;
    }
    i.fa-envelope {
        font-size: 14px;
        vertical-align: -6%;
    }
    i.fa-chevron-circle-right {
        font-size: 11px;
        vertical-align: -2%;
    }
}

header .bnr {
    width: 300px;
    height: 31px;
    position: absolute;
    top: 12px;
    right: 581px;
    margin: 0;
    /*border: 1px solid #1c2a52;*/
    background: #E5C63F;
    z-index: 10020 !important;
}
header .bnr a {
    display: block;
    width: 300px;
    height: 31px;
    position: relative;
}
header .bnr a:before {
  content: '';
  position: absolute;
  border: #E5C63F solid 6px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
header .bnr a:hover:before,
header .bnr a:focus:before,
header .bnr a:active:before {
  -webkit-animation-name: btn-anime;
  animation-name: btn-anime;
}
@media only screen and (max-width: 1199px) {
    header .bnr {
        right: 561px;
    }
}
@media only screen and (max-width: 991px) {
    header .bnr {
        top: 55px;
        right: 330px;
    }
}
@media only screen and (max-width: 767px) {
    header .bnr {
        display: none;
    }
}

.bnr-sp {
    display: none;
}
@media only screen and (max-width: 767px) {
    .bnr-sp {
        display: block;
        margin: -10px auto 30px;
    }
    .bnr-sp a {
        display: block;
        width: 100%;
        height: 68px;
        box-sizing: border-box;
        padding-top: 12px;
        background: #E5C63F;
        /*background: #fff;
        border: 1px solid #1c2a52;*/
        margin: 0 auto 10px;
    }
    .bnr-sp a:hover {
        background: #c7a821;
        /*background: #f1f1f1;*/
        transition: 0.7s;
    }
}

header .bnr-clubbleu {
    width: 110px;
    position: absolute;
    right: 20px;
    top: 59px;
}

/* 2.1 Main Nav
 * ------------------------------*/
.navbar {
    width: 100%;
    height: 110px;
    margin: 0;
}
.navbar-header {
    margin: 0;
    padding: 0;
}
.navbar-brand {
    display: block;
    width: 80px;
    height: 91px;
    position: relative;
    top: 3px;
    left: 30px;
    margin: 0;
    padding: 0;
    z-index: 11000 !important;
}
.navbar-brand img {
    display: block;
    width: 80px;
    height: 91px;
}
@media only screen and (max-width: 991px) {
    .navbar-brand {
        width: 55px;
        height: 63px;
        top: 35px !important;
        left: 10px;
    }
    .navbar-brand img {
        width: 55px;
        height: 63px;
    }
}
@media only screen and (max-width: 767px) {
    .navbar {
        height: 100px;
    }
    .navbar-brand {
        width: 50px;
        height: 57px;
    }
    .navbar-brand img {
        width: 50px;
        height: 57px;
    }
}

.navbar-brand-txt {
    position: absolute;
    top: 20px;
    left: 110px;
    margin: 0;
    padding: 0;
    font-size: 15px;
    color: #192950;
    font-family: "A1明朝", serif !important;
    letter-spacing: 0.08em;
    font-weight: 600;
}
@media only screen and (max-width: 1199px) {
    .navbar-brand-txt {
        display: none;
    }
}
/*@media only screen and (max-width: 991px) {
    .navbar-brand-txt {
        left: 85px;
        top: 60px;
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px) {
    .navbar-brand-txt {
        display: none;
    }
}*/

/* 2.1.1 main-nav (pc-only) ------------*/
#main-nav {
    width: 80%;
    position: absolute;
    top: 60px;
    right: 135px;
    margin: 0;
    z-index: 10010 !important;
}
@media only screen and (max-width: 1199px) {
    #main-nav {
        width: 75%;
    }
}

#main-nav a {
    text-decoration: none;
    color: #000;
}
#main-nav a:hover .ja span,
#main-nav a:hover .en span {
    -webkit-animation: letter-glow 0.7s 0s ease both;
          animation: letter-glow 0.7s 0s ease both;
}
#main-nav a:hover .ja span:nth-child(1),
#main-nav a:hover .en span:nth-child(1) {
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
}
#main-nav a:hover .ja span:nth-child(2),
#main-nav a:hover .en span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
#main-nav a:hover .ja span:nth-child(3),
#main-nav a:hover .en span:nth-child(3) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
#main-nav a:hover .ja span:nth-child(4),
#main-nav a:hover .en span:nth-child(4) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
#main-nav a:hover .ja span:nth-child(5),
#main-nav a:hover .en span:nth-child(5) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
#main-nav a:hover .ja span:nth-child(6),
#main-nav a:hover .en span:nth-child(6) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
#main-nav a:hover .ja span:nth-child(7),
#main-nav a:hover .en span:nth-child(7) {
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}
#main-nav a:hover .ja span:nth-child(8),
#main-nav a:hover .en span:nth-child(8) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
#main-nav a:hover .ja span:nth-child(9),
#main-nav a:hover .en span:nth-child(9) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
#main-nav a:hover .ja span:nth-child(10),
#main-nav a:hover .en span:nth-child(10) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
#main-nav a:hover .ja span:nth-child(11),
#main-nav a:hover .en span:nth-child(11) {
  -webkit-animation-delay: 0.55s;
          animation-delay: 0.55s;
}
#main-nav a:hover .ja span:nth-child(12),
#main-nav a:hover .en span:nth-child(12) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
#main-nav a:hover .ja span:nth-child(13),
#main-nav a:hover .en span:nth-child(13) {
  -webkit-animation-delay: 0.65s;
          animation-delay: 0.65s;
}
#main-nav a:hover .ja span:nth-child(14),
#main-nav a:hover .en span:nth-child(14) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
#main-nav a:hover .ja span:nth-child(15),
#main-nav a:hover .en span:nth-child(15) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
#main-nav a:hover .ja span:nth-child(16),
#main-nav a:hover .en span:nth-child(16) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
#main-nav a:hover .ja span:nth-child(17),
#main-nav a:hover .en span:nth-child(17) {
  -webkit-animation-delay: 0.85s;
          animation-delay: 0.85s;
}
#main-nav a:hover .ja span:nth-child(18),
#main-nav a:hover .en span:nth-child(18) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
#main-nav a:hover .ja span:nth-child(19),
#main-nav a:hover .en span:nth-child(19) {
  -webkit-animation-delay: 0.95s;
          animation-delay: 0.95s;
}
#main-nav a:hover .ja span:nth-child(20),
#main-nav a:hover .en span:nth-child(20) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

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

#main-nav ul.nav {
    width: 100%;
    height: 39px;
    display: flex;
    flex-flow: row;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    margin: 0;
    padding: 0;
    font-size: 13px;
    text-align: center;
    letter-spacing: 0.08em;
}
#main-nav ul.nav li .en {
    font-size: 12px;
}
#main-nav ul.nav li {
    border-right: 1px solid #000;
}
#main-nav ul.nav li:first-of-type {
    border-left: 1px solid #000;
}
#main-nav ul.nav li a {
    display: block;
    height: 39px;
    padding: 2px 28px;
    box-sizing: border-box;
}
#main-nav ul.nav li a:hover {
    text-decoration: none;
}
@media only screen and (max-width: 1400px) {
    #main-nav ul.nav li a {
        padding-right: calc(28 / 1400 * 100vw);
        padding-left: calc(28 / 1400 * 100vw);
    }
}
@media only screen and (max-width: 1280px) {
    #main-nav ul.nav li a {
        padding-right: calc(20 / 1280 * 100vw);
        padding-left: calc(20 / 1280 * 100vw);
    }
}
@media only screen and (max-width: 1199px) {
    #main-nav ul.nav li a {
        padding-right: calc(12 / 1199 * 100vw);
        padding-left: calc(12 / 1199 * 100vw);
    }
}
@media only screen and (max-width: 991px) {
    #main-nav {
        display: none;
    }
}

/* motion (main-nav) */
@-webkit-keyframes letter-glow {
  0% {
    opacity: 0;
    text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.1);
  }
  66% {
    opacity: 1;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.9);
  }
  77% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0);
  }
}

@keyframes letter-glow {
  0% {
    opacity: 0;
    text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.1);
  }
  66% {
    opacity: 1;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.9);
  }
  77% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0);
  }
}

/* dropmenu ------------*/
.dropmenu {
}
.dropmenu li {
    position: relative;
}
.dropmenu li a {
    display: block;
}
.dropmenu li ul {
    width: 0;
    margin: 0;
    position: absolute;
    z-index: 10020 !important;
    top: 25px;
    left: 35%;
    padding-top: 24px;
    font-size: 13px;
    overflow: hidden;
}
 .dropmenu li ul li {
    background-color: rgba(28,42,82,0.9);
    position: relative;
    transition: 0.25s linear;
    margin-bottom: 1px;
    border: none !important;
}
.dropmenu li ul li a {
    display: table;
    width: 220px;
    height: 36px !important;
    box-sizing: border-box;
    padding: 10px 12px !important;
    text-align: left;
    color: #fff !important;
    line-height: 1.3;
    font-weight: 600;
}
.dropmenu li ul.h-size-large li a {
    height: 50px !important;
    line-height: 1.4;
    padding: 0 12px !important;
}
.dropmenu li ul.h-size-large li a div {
    display: table-cell;
    vertical-align: middle;
    height: 50px;
}
.dropmenu li ul li a span {
    font-size: 10px;
}
.dropmenu li:hover ul {
    width: 220px;
}
.dropmenu li ul li a:hover {
    text-decoration: none;
}
.dropmenu li ul li:hover {
    background-color: rgba(28,42,82,1);
}
.dropmenu li:hover ul li a {
    white-space: nowrap;
}
.dropmenu li ul li.bg {
    background-color: rgba(32,152,209,0.8);
}
.dropmenu li ul li.bg:hover {
    background-color: rgba(32,152,209,1);
}
.dropmenu li:hover ul li:nth-child(1) {
     -webkit-animation: dropmenu-fadeIn 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-animation: dropmenu-fadeIn 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    -ms-animation: dropmenu-fadeIn 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: dropmenu-fadeIn 0.2s lcubic-bezier(0.215, 0.61, 0.355, 1);
}
.dropmenu li:hover ul li:nth-child(2) {
     -webkit-animation: dropmenu-fadeIn 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-animation: dropmenu-fadeIn 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    -ms-animation: dropmenu-fadeIn 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: dropmenu-fadeIn 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.dropmenu li:hover ul li:nth-child(3) {
     -webkit-animation: dropmenu-fadeIn 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-animation: dropmenu-fadeIn 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    -ms-animation: dropmenu-fadeIn 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: dropmenu-fadeIn 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.dropmenu li:hover ul li:nth-child(4) {
     -webkit-animation: dropmenu-fadeIn 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-animation: dropmenu-fadeIn 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    -ms-animation: dropmenu-fadeIn 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: dropmenu-fadeIn 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.dropmenu li:hover ul li:nth-child(5) {
     -webkit-animation: dropmenu-fadeIn 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-animation: dropmenu-fadeIn 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    -ms-animation: dropmenu-fadeIn 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: dropmenu-fadeIn 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.dropmenu li:hover ul li:nth-child(6) {
     -webkit-animation: dropmenu-fadeIn 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-animation: dropmenu-fadeIn 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    -ms-animation: dropmenu-fadeIn 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: dropmenu-fadeIn 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.dropmenu li:hover ul li:nth-child(7) {
     -webkit-animation: dropmenu-fadeIn 1.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-animation: dropmenu-fadeIn 1.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    -ms-animation: dropmenu-fadeIn 1.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: dropmenu-fadeIn 1.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.dropmenu li:hover ul li:nth-child(8) {
     -webkit-animation: dropmenu-fadeIn 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-animation: dropmenu-fadeIn 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    -ms-animation: dropmenu-fadeIn 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: dropmenu-fadeIn 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.dropmenu li:hover ul li:nth-child(9) {
     -webkit-animation: dropmenu-fadeIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-animation: dropmenu-fadeIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    -ms-animation: dropmenu-fadeIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: dropmenu-fadeIn 1.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.dropmenu li:hover ul li:nth-child(10) {
     -webkit-animation: dropmenu-fadeIn 2s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-animation: dropmenu-fadeIn 2s cubic-bezier(0.215, 0.61, 0.355, 1);
    -ms-animation: dropmenu-fadeIn 2s cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: dropmenu-fadeIn 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.dropmenu li:hover ul li:nth-child(11) {
     -webkit-animation: dropmenu-fadeIn 2.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-animation: dropmenu-fadeIn 2.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    -ms-animation: dropmenu-fadeIn 2.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: dropmenu-fadeIn 2.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.dropmenu li:hover ul li:nth-child(12) {
     -webkit-animation: dropmenu-fadeIn 2.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-animation: dropmenu-fadeIn 2.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    -ms-animation: dropmenu-fadeIn 2.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: dropmenu-fadeIn 2.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.dropmenu li:hover ul li:nth-child(13) {
     -webkit-animation: dropmenu-fadeIn 2.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-animation: dropmenu-fadeIn 2.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    -ms-animation: dropmenu-fadeIn 2.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: dropmenu-fadeIn 2.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.dropmenu li:hover ul li:nth-child(14) {
     -webkit-animation: dropmenu-fadeIn 2.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-animation: dropmenu-fadeIn 2.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    -ms-animation: dropmenu-fadeIn 2.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: dropmenu-fadeIn 2.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.dropmenu li:hover ul li:nth-child(15) {
     -webkit-animation: dropmenu-fadeIn 3s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-animation: dropmenu-fadeIn 3s cubic-bezier(0.215, 0.61, 0.355, 1);
    -ms-animation: dropmenu-fadeIn 3s cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: dropmenu-fadeIn 3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* English版 */
#main-nav.en ul.nav li .en {
  font-size: 14px;
}
#main-nav.en ul.nav li a {
  padding-top: 10px;
}
#main-nav.en .dropmenu li ul li a,
#main-nav.en .dropmenu li:hover ul {
  width: 255px;
}

/* motion (dropmenu) */
@-webkit-keyframes dropmenu-fadeIn {
    0% {
        opacity: 0;
        left: -100px;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        opacity: 1;
        left: 0px;
    }
}
@keyframes dropmenu-fadeIn {
    0% {
        opacity: 0;
        left: -100px;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        opacity: 1;
        left: 0px;
    }
}

/* 2.1.2 main-nav-xs (sp-only) ------------*/
#main-nav-xs {
    display: none;
}
@media only screen and (max-width: 991px) {
    #main-nav-xs {
        display: block;
    }
    #main-nav-xs .hamburger {
        position: absolute;
        top: 20px;
        right: 0;
        margin: 40px;
        z-index: 2000 !important;
        cursor: pointer;
    }
    #main-nav-xs .hamburger .line {
        display: block;
        width: 30px;
        height: 2px;
        background: #1c2a52;
        margin-bottom: 7px;
    }
    #main-nav-xs .nav-menu {
        width: 240px;
        height: 100%;
        background: rgba(28,42,82,0.9);
        position: fixed;
        top: 0;
        right: -240px;
        transition: right .7s;
        z-index: 1000;
    }
    #main-nav-xs .menu--open {
        right: 0;
    }
    #main-menu .menu--open .hamburger .line {
        background: #1c2a52;
    }
    #main-nav-xs .menu-item:first-child {
        margin-top: 80px;
    }
    #main-nav-xs .menu-item {
        color: #fff;
        width: 100%;
        margin: 0;
        transition: .7s;
        letter-spacing: 0.08em;
        font-weight: 400;
        font-size: 13px;
    }
    #main-nav-xs .menu-item a {
        display: block;
        width: 100%;
        padding: 12px 25px;
        box-sizing: border-box;
        color: #fff;
        transition: .7s;
    }
    #main-nav-xs .menu-item:hover {
        background: #1c2a52;
        cursor: pointer;
    }
    #main-nav-xs .menu-item a:hover {
        color: #fff;
        text-decoration: none;
    }
}
@media only screen and (max-width: 767px) {
    #main-nav-xs .hamburger {
        top: 35px;
        margin: 20px;
    }
    #main-nav-xs .menu-item:first-child {
        margin-top: 90px;
    }
    #main-nav-xs .menu-item {
        font-size: 12px;
        line-height: 1.6;
    }
}
@media only screen and (max-width: 320px) {
    #main-nav-xs .menu-item a {
        padding: 5px 30px;
    }
}

/* 2.1.3 sns Icon ------------*/
.icon-fb,
.icon-instagram,
.icon-twitter,
.icon-youtube {
    display: block;
	width: 30px;
	height: 30px;
	border-radius: 15px;
    background: none;
    text-align: center;
    position: absolute;
    margin: 0;
	top: 68px;
    padding: 0;
    text-align: center;
    box-sizing: border-box;
    z-index: 10;
}
.icon-fb { right: 115px; }
.icon-instagram { right: 86px; }
.icon-twitter { right: 53px; }
.icon-youtube { right: 19px; }

.icon-fb .fa-facebook,
.icon-instagram .fa-instagram,
.icon-twitter .fa-twitter,
.icon-youtube .fa-youtube {
	font-size: 24px !important;
    color: #1c2a52 !important;
}
.icon-fb:hover,
.icon-instagram:hover,
.icon-twitter:hover,
.icon-youtube:hover {
    text-decoration: none !important;
    transition: 0.7s;
}
@media only screen and (max-width: 767px) {
    .icon-fb,
    .icon-instagram,
    .icon-twitter,
    .icon-youtube {
        width: 28px;
	    height: 28px;
	    border-radius: 14px;
	    top: 16px;
    }
    .icon-fb {
        right: 180px;
    }
    .icon-instagram {
        right: 140px;
    }
    .icon-twitter {
        right:100px;
    }
    .icon-youtube {
        right: 60px;
    }
    .icon-fb .fa-facebook,
    .icon-instagram .fa-instagram,
    .icon-twitter .fa-twitter,
    .icon-youtube .fa-youtube {
        font-size: 22px !important;
    }
}

#instafeed {
    margin-left: 0;
    margin-right: 0;
    margin-top: 30px;
}
#instafeed .insta-box {
    padding-left: 1px;
    padding-right: 1px;
    padding-bottom: 1px;
}
#instafeed .insta-box img {
    width: 100%;
    height: 99px;
    object-fit: cover;
    object-position: 50% 50%;
    overflow: hidden;
}
@media screen and (max-width: 767px) {
	#instafeed {
	    margin-top: 20px;
	}
}
@media screen and (max-width: 480px) {
	#instafeed .insta-box img {
	    height: 70px;
	}
}
@media screen and (max-width: 320px) {
	#instafeed .insta-box img {
	    height: 60px;
	}
}

/*-------------------------------
 * 3. MAIN VISUAL
 * ----------------------------*/
#main-logo {
    width: 100%;
	height: 100%;
	height: 100vh;
    padding: 0;
    margin: 0;
    z-index: -1;
    background: #fff;
    position: absolute;
}
#main-logo div {
    position: absolute;
    width: 600px;
    top: 45%;
    left: 0;
    right: 0;
    transform: translateY(-45%);
    margin: auto;
    z-index: 100;
    opacity: 0;
    -webkit-animation: fadeOut-0 1s linear both;
    animation: fadeOut-0 1s linear both;
    -webkit-animation-delay: 4.5s;
    animation-delay: 4.5s;
    text-align: center;
}
#main-logo #logo-first {
    width: 280px;
    height: auto;
}
#main-logo .main-logo-txt {
    margin: 30px 0 0;
    font-size: 30px;
    color: #192950;
    font-family: "A1明朝", serif !important;
    letter-spacing: 0.15em;
    font-weight: 500;
}
#main-logo .main-logo-txt span:nth-child(1) {
    -webkit-animation: slideTextFade 2.0s ease 0s 1 normal;
    animation: slideTextFade 2.0s ease 0s 1 normal;
}
#main-logo .main-logo-txt span:nth-child(2) {
    -webkit-animation: slideTextFade 2.3s ease 0s 1 normal;
    animation: slideTextFade 2.3s ease 0s 1 normal;
}
#main-logo .main-logo-txt span:nth-child(3) {
    -webkit-animation: slideTextFade 2.6s ease 0s 1 normal;
    animation: slideTextFade 2.6s ease 0s 1 normal;
}
#main-logo .main-logo-txt span:nth-child(4) {
    -webkit-animation: slideTextFade 2.9s ease 0s 1 normal;
    animation: slideTextFade 2.9s ease 0s 1 normal;
}
#main-logo .main-logo-txt span:nth-child(5) {
    -webkit-animation: slideTextFade 3.2s ease 0s 1 normal;
    animation: slideTextFade 3.2s ease 0s 1 normal;
}
#main-logo .main-logo-txt span:nth-child(6) {
    -webkit-animation: slideTextFade 3.5s ease 0s 1 normal;
    animation: slideTextFade 3.5s ease 0s 1 normal;
}
#main-logo .main-logo-txt span:nth-child(7) {
    -webkit-animation: slideTextFade 3.8s ease 0s 1 normal;
    animation: slideTextFade 3.8s ease 0s 1 normal;
}
#main-logo .main-logo-txt span:nth-child(8) {
    -webkit-animation: slideTextFade 4.1s ease 0s 1 normal;
    animation: slideTextFade 4.1s ease 0s 1 normal;
}
#main-logo .main-logo-txt span:nth-child(9) {
    -webkit-animation: slideTextFade 4.4s ease 0s 1 normal;
    animation: slideTextFade 4.4s ease 0s 1 normal;
}
#main-logo .main-logo-txt span:nth-child(10) {
    -webkit-animation: slideTextFade 4.7s ease 0s 1 normal;
    animation: slideTextFade 4.7s ease 0s 1 normal;
}
#main-logo .main-logo-txt span:nth-child(11) {
    -webkit-animation: slideTextFade 5.0s ease 0s 1 normal;
    animation: slideTextFade 5.0s ease 0s 1 normal;
}
#main-logo .main-logo-txt span:nth-child(12) {
    -webkit-animation: slideTextFade 5.3s ease 0s 1 normal;
    animation: slideTextFade 5.3s ease 0s 1 normal;
}
#main-logo .main-logo-txt span:nth-child(13) {
    -webkit-animation: slideTextFade 5.6s ease 0s 1 normal;
    animation: slideTextFade 5.6s ease 0s 1 normal;
}
#main-logo .main-logo-txt span:nth-child(14) {
    -webkit-animation: slideTextFade 5.9s ease 0s 1 normal;
    animation: slideTextFade 5.9s ease 0s 1 normal;
}
#main-logo .main-logo-txt span:nth-child(15) {
    -webkit-animation: slideTextFade 6.2s ease 0s 1 normal;
    animation: slideTextFade 6.2s ease 0s 1 normal;
}
#main-logo .main-logo-txt span:nth-child(16) {
    -webkit-animation: slideTextFade 6.5s ease 0s 1 normal;
    animation: slideTextFade 6.5s ease 0s 1 normal;
}
#main-logo .main-logo-txt span:nth-child(17) {
    -webkit-animation: slideTextFade 6.8s ease 0s 1 normal;
    animation: slideTextFade 6.8s ease 0s 1 normal;
}
#main-logo .main-logo-txt span:nth-child(18) {
    -webkit-animation: slideTextFade 7.1s ease 0s 1 normal;
    animation: slideTextFade 7.1s ease 0s 1 normal;
}
#main-logo .main-logo-txt span:nth-child(19) {
    -webkit-animation: slideTextFade 7.4s ease 0s 1 normal;
    animation: slideTextFade 7.4s ease 0s 1 normal;
}
#main-logo .main-logo-txt span:nth-child(20) {
    -webkit-animation: slideTextFade 7.7s ease 0s 1 normal;
    animation: slideTextFade 7.7s ease 0s 1 normal;
}
#main-logo .main-logo-txt span:nth-child(21) {
    -webkit-animation: slideTextFade 8.0s ease 0s 1 normal;
    animation: slideTextFade 8.0s ease 0s 1 normal;
}
#main-logo .main-logo-txt span:nth-child(22) {
    -webkit-animation: slideTextFade 8.3s ease 0s 1 normal;
    animation: slideTextFade 8.3s ease 0s 1 normal;
}
#main-logo .main-logo-txt span:nth-child(23) {
    -webkit-animation: slideTextFade 8.3s ease 0s 1 normal;
    animation: slideTextFade 8.3s ease 0s 1 normal;
}
#main-logo .main-logo-txt span:nth-child(24) {
    -webkit-animation: slideTextFade 8.6s ease 0s 1 normal;
    animation: slideTextFade 8.6s ease 0s 1 normal;
}
#main-logo .main-logo-txt span:nth-child(25) {
    -webkit-animation: slideTextFade 8.9s ease 0s 1 normal;
    animation: slideTextFade 8.9s ease 0s 1 normal;
}
@media only screen and (max-width: 991px) {
    #main-logo div {
        width: 500px;
    }
    #main-logo #logo-first {
        width: 220px;
    }
    #main-logo .main-logo-txt {
        font-size: 25px;
    }
}
@media only screen and (max-width: 767px) {
    #main-logo div {
        width: auto;
        margin-right: 15px;
        margin-left: 15px;
        top: 30%;
        transform: translateY(-28%);
    }
    #main-logo #logo-first {
        width: 160px;
    }
    #main-logo .main-logo-txt {
        margin-top: 20px;
        font-size: 18px;
        letter-spacing: 0.1em;
    }
}
@media only screen and (max-width: 320px) {
    #main-logo #logo-first {
        width: 130px;
    }
    #main-logo .main-logo-txt {
        font-size: 16px;
    }
}

#main-visual {
    width: 100%;
    height: 100%;
	height: 100vh;
    padding: 0;
    margin: 0;
    position: relative;
    opacity: 0.25;
    -webkit-animation: fadeIn 2s linear both;
    animation: fadeIn 2s linear both;
    /*-webkit-animation-delay: 4.8s;
    animation-delay: 4.8s;*/
    z-index: 0;
}
@media only screen and (max-width: 767px) {
    #main-visual {
        margin-top: 100px;
        height: 500px;
    }
}

#main-visual .logo {
    display: block;
    margin: 0;
    position: absolute;
}
#main-visual .logo.reservedcruise {
    width: 500px;
    height: auto;
    bottom: 60px;
    right: 100px;
}
@media only screen and (max-width: 767px) {
    #main-visual .logo.reservedcruise {
        width: 250px;
        bottom: 30px;
        right: 0;
        left: 0;
        margin: auto;
    }
}

#main-visual .txt {
    display: block;
    position: absolute;
    bottom: 60px;
    right: 60px;
    margin: 0;
    font-size: 20px;
    text-align: center;
    line-height: 2.1;
    font-family: "A1明朝", serif !important;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: #fff;
}
#main-visual .txt.txt-center {
    top: calc(120 / 1280 * 100vw);
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
    font-size: calc(23px + 27 * (100vw - 320px) / 1600);
    letter-spacing: 0.1em;
    font-weight: 500;
    -webkit-animation: fadeIn 1s linear both;
    animation: fadeIn 1s linear both;
}
@media only screen and (max-width: 991px) {
    #main-visual .txt {
        bottom: 40px;
        right: 40px;
        font-size: 16px;
        letter-spacing: 0.05em;
    }
}
@media only screen and (max-width: 767px) {
    #main-visual .txt {
        left: 0;
        right: 0;
        margin: auto;
        font-size: 13px;
        line-height: 1.8;
        letter-spacing: 0;
    }
}
@media only screen and (max-width: 480px) {
    #main-visual .txt {
        top: 0;
        padding-top: 20px;
        line-height: 1.7;
        background: rgba(0,0,0,0.2)
    }
    #main-visual .txt.txt-center {
        background: none;
    }
}
@media only screen and (max-width: 320px) {
    #main-visual .txt {
        font-size: 12px;
    }
}

/*----- Main Slider -----*/
#main-visual .main-slider {
    display: none;
}
#main-visual .main-slider.slick-initialized {
    display: block;
}

#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;
}
#main-visual .main-slider li a {
    display: block;
    width: 100%;
    height: 100%;
}
#main-visual .main-slider li.main01 {
    background-image: url(../image/main01.jpg);
}
#main-visual .main-slider li.main02 {
    background-image: url(../image/main02.jpg);
}
#main-visual .main-slider li.main03 {
    background-image: url(../image/main03.jpg);
}
#main-visual .main-slider li.main04 {
    background-image: url(../image/main04.jpg);
}
#main-visual .main-slider li.main05 {
    background-image: url(../image/main05.jpg);
}
#main-visual .main-slider li.main06 {
    background-image: url(../image/main08.jpg);
}
#main-visual .main-slider li.main07 {
    background-image: url(../image/main07.jpg?=200403-2);
}
#main-visual .main-slider li.main09 {
    background-image: url(../image/main09.jpg);
}
@media only screen and (max-width: 1199px) {
    #main-visual .main-slider li.main09 {
        background-position: 43% 100% !important;
    }
}
@media only screen and (max-width: 767px) {
    #main-visual .main-slider li {
        height: 500px;
    }
    #main-visual .main-slider li.main01 {
        background-position: 20% 50% !important;
    }
    #main-visual .main-slider li.main03 {
        background-position: 45% 50% !important;
    }
    #main-visual .main-slider li.main05 {
        background-position: 60% 0% !important;
    }
}

#main-visual .main-slider li .logo-fact {
    display: block;
    position: absolute;
    top: 150px;
    left: 0;
    right: 0;
    width: 400px;
    height: auto;
    margin: auto;
}
#main-visual .main-slider li .logo-cafe {
    display: block;
    position: absolute;
    top: 150px;
    left: 20px;
    width: 280px;
    height: auto;
    margin: 0;
}
#main-visual .main-slider li .logo-yokohama-style {
    display: block;
    position: absolute;
    top: 150px;
    left: 40px;
    width: 250px;
    height: auto;
    margin: 0;
}
#main-visual .main-slider li .txt-yokohama-style {
    display: block;
    position: absolute;
    top: 150px;
    right: 40px;
    width: 500px;
    height: auto;
    margin: 0;
}
@media only screen and (max-width: 991px) {
    #main-visual .main-slider li .logo-fact {
        width: 300px;
        top: 140px;
    }
    #main-visual .main-slider li .logo-yokohama-style {
        width: 200px;
        top: 140px;
    }
    #main-visual .main-slider li .txt-yokohama-style {
        width: 400px;
        top: 140px;
    }
}
@media only screen and (max-width: 767px) {
    #main-visual .main-slider li .logo-fact {
        width: 190px;
        top: 40px;
    }
    #main-visual .main-slider li .logo-cafe {
        width: 180px;
        top: 20px;
        left: 0;
        right: 0;
        margin: auto;
    }
    #main-visual .main-slider li .logo-yokohama-style {
        width: 150px;
        top: 40px;
        left: 0;
        right: 0;
        margin: auto;
    }
    #main-visual .main-slider li .txt-yokohama-style {
        width: 280px;
        top: 110px;
        left: 0;
        right: 0;
        margin: auto;
    }
}

/*#main-visual .slick-current {
  -webkit-animation: increase 10s ease -2s alternate;
  animation: increase 10s ease -2s alternate;
}
@-webkit-keyframes increase {
  0% {-webkit-transform: scale(1, 1);}
  100% {-webkit-transform: scale(1.1, 1.1);}
}
@keyframes increase {
  0% { transform: scale(1, 1);}
  100% { transform: scale(1.1, 1.1);}
}*/

/*-------------------------------
 * 4. TOP PAGE
 * ----------------------------*/
/* 4.1 Enjoy
 * ------------------------------*/
ul.enjoy-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    margin: 30px auto 0;
}
ul.enjoy-list li {
    width: 50%;
    color: #fff;
    margin: 0;
    border-bottom: 1px solid #fff;
}
ul.enjoy-list li:nth-last-of-type(1),
ul.enjoy-list li:nth-last-of-type(2) {
    border-bottom: 1px solid #af914d;
}
ul.enjoy-list li:nth-of-type(odd) {
    border-right: 1px solid #fff;
}
ul.enjoy-list li a {
    display: block;
    height: 180px;
    text-decoration: none;
    overflow: hidden;
}
ul.enjoy-list li a:hover {
    text-decoration: none;
}
ul.enjoy-list li hr {
    border-top: 1px dashed #000;
    margin: 10px 0;
}
@media only screen and (max-width: 1199px) {
    ul.enjoy-list li a {
        height: 200px;
    }
}
@media only screen and (max-width: 991px) {
    ul.enjoy-list {
        margin-top: 20px;
    }
    ul.enjoy-list li {
        width: 100%;
    }
    ul.enjoy-list li a {
        height: 180px;
    }
}
@media only screen and (max-width: 767px) {
    ul.enjoy-list {
        margin-top: 10px;
    }
    ul.enjoy-list li a {
        height: 160px;
    }
}
@media only screen and (max-width: 380px) {
    ul.enjoy-list li a {
        height: 180px;
    }
}
@media only screen and (max-width: 320px) {
    ul.enjoy-list li a {
        height: 190px;
    }
}

ul.enjoy-list li .img-box {
    width: 33%;
    position: relative;
}
ul.enjoy-list li .img-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    overflow: hidden;
}
ul.enjoy-list li .txt-box {
    width: 67%;
    padding: 0 0 15px;
    position: relative;
}
ul.enjoy-list li .sub {
    margin: 0 0 5px;
    font-size: 15px !important;
    font-weight: 500;
    line-height: 1.5 !important;
    letter-spacing: 0 !important;
    color: #fff;
    background: #af914d;
    padding: 5px 10px;
}
ul.enjoy-list li .txt {
    padding: 5px 10px 0;
    font-size: 13px !important;
    line-height: 1.6 !important;
}
@media only screen and (max-width: 1199px) {
    ul.enjoy-list li .img-box img {
        height: 200px;
    }
}
@media only screen and (max-width: 991px) {
    ul.enjoy-list li .img-box img {
        height: 180px;
    }
}
@media only screen and (max-width: 767px) {
    ul.enjoy-list li .img-box {
        width: 30%;
    }
    ul.enjoy-list li .img-box img {
        height: 160px;
    }
    ul.enjoy-list li .txt-box {
        width: 70%;
        padding-bottom: 10px;
    }
    ul.enjoy-list li .sub {
        margin-bottom: 2px;
        padding-top: 4px;
        font-size: 13px !important;
    }
    ul.enjoy-list li .txt {
        font-size: 11px !important;
    }
}
@media only screen and (max-width: 380px) {
    ul.enjoy-list li .img-box img {
        height: 180px;
    }
}
@media only screen and (max-width: 320px) {
    ul.enjoy-list li .img-box img {
        height: 190px;
    }
}

ul.enjoy-list li .txt-box dl {
    width: 100%;
    display: table;
    margin: 0;
    padding: 0 10px;
}
ul.enjoy-list li .txt-box dl dt {
    width: 40px;
    display: table-cell;
    font-size: 13px;
    line-height: 1.7;
    font-weight: 400;
}
ul.enjoy-list.en li .txt-box dl dt {
    width: 50px;
}
ul.enjoy-list li .txt-box dl dd {
    display: table-cell;
    font-size: 13px;
    line-height: 1.7;
}
ul.enjoy-list.en li .txt-box dl dd {
    line-height: 1.4;
}
@media only screen and (max-width: 767px) {
    ul.enjoy-list li .txt-box dl dt {
        width: 30px;
        font-size: 10px;
        line-height: 1.5;
    }
    ul.enjoy-list.en li .txt-box dl dt {
        width: 40px;
    }
    ul.enjoy-list li .txt-box dl dd {
        font-size: 10px;
        line-height: 1.5;
    }
}

/* 4.2 News
 * ------------------------------*/
.news-cont {
    height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    margin: 30px 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}
#news-wrap .news-cont {
    height: auto;
    border-bottom: none;
    margin: 10px 0 0;
}
.news-cont {
  scrollbar-base-color: #1c2a52;
}
.news-cont::-webkit-scrollbar {
  width: 5px;
  height: auto;
}
.news-cont::-webkit-scrollbar-track {
  background: #fff;
}
.news-cont::-webkit-scrollbar-thumb {
  background: #1c2a52;
}
@media only screen and (max-width: 767px) {
    .news-cont {
        height: 345px;
        margin-top: 20px;
    }
}

.news-cont ul.list li {
    padding: 12px 25px 12px 0;
    border-bottom: 1px dashed #000;
    position: relative;
}
/*.news-cont ul.list li:last-of-type {
    border-bottom: none;
}*/
.news-cont ul.list li a {
    display: block;
}
.news-cont ul.list li a:hover {
    text-decoration: none;
    opacity: 0.7;
}
.news-cont ul.list li .icon {
    display: inline-block;
    width: 80px;
    height: 22px;
    border-radius: 4px;
    background: #2098D1;
    color: #fff;
    font-size: 11px;
    padding: 1px 3px;
    font-weight: 600;
    margin-right: 5px;
    text-align: center;
    box-sizing: border-box;
}
.news-cont ul.list li .icon.event {
    background: #20c936;
}
.news-cont ul.list li .icon.info {
    background: #2098D1;
}
.news-cont ul.list li .icon.charter-cruise {
    background: #1c2a52;
}
.news-cont ul.list li .icon.yokohama-cruise {
    background: #FF9900;
}
.news-cont ul.list li .txt {
    margin: 7px 0 0;
    line-height: 1.7;
}
.news-cont ul.list li .day {
    display: block;
    font-family: 'Montserrat', sans-serif !important;
    letter-spacing: 0.05em;
    font-size: 12px;
    color: #a6a6a7;
    position: absolute;
    top: 12px;
    right: 0;
    margin: 0;
}
@media only screen and (max-width: 767px) {
    .news-cont ul.list li {
        padding: 10px 0 !important;
    }
    .news-cont ul.list li .icon {
        height: 20px;
        width: 60px;
        font-size: 10px;
    }
    .news-cont ul.list li .txt {
        font-size: 12px;
        margin-top: 5px;
    } 
    .news-cont ul.list li .day {
        font-size: 11px;
    }
}

/*-------------------------------
 * 5. CONTENT
 * ----------------------------*/
/* 5.1 Slider
 * ------------------------------*/
.slide-arrow.prev-arrow,
.slide-arrow.next-arrow {
    width: 30px;
    height: auto;
    position: absolute;
    top: 51%;
    cursor: pointer;    
    z-index: 100100 !important;
}
.slide-arrow.prev-arrow {
    left: 20px;
}
.slide-arrow.next-arrow {
    right: 20px;
}
.slide-arrow:hover {
    opacity: 0.7;
    transition: 0.5s;
}
@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: 550px;
    position: relative;
    margin: 110px 0 0;
    padding: 0;
    z-index: 0;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}
#cate-main.h-small {
    height: 490px;
}
@media only screen and (max-width: 1199px) {
    #cate-main.h-small {
        height: 400px;
    }
}
@media only screen and (max-width: 991px) {
    #cate-main {
        height: 450px;
    }
    #cate-main.h-small {
        height: 300px;
    }
}
@media only screen and (max-width: 767px) {
    #cate-main {
        margin-top: 100px;
        height: 250px;
    }
    #cate-main.h-small {
        height: 250px;
    }
}

/*-- Yokohama Cruise --*/
#cate-main.yokohama-cruise {
    background-image: url(../../yokohama-cruise/image/main.jpg?=200411);
}
#cate-main.yokohama-cruise-cafe {
    background-image: url(../../yokohama-cruise/cafe/image/main.png?=200411);
}
#cate-main.yokohama-cruise-fcafe {
    background-image: url(../../yokohama-cruise/fcafe/image/main.jpg?=200210);
}
#cate-main.yokohama-cruise-fact {
    background-image: url(../../yokohama-cruise/fact/image/main.jpg?=200511);
}
#cate-main.yokohama-cruise-adventure {
    background-image: url(../../yokohama-cruise/adventure/image/main.jpg);
}
#cate-main.yokohama-cruise-teikibin {
    background-image: url(../../yokohama-cruise/teikibin/image/main.jpg);
}
#cate-main.yokohama-cruise-teikibin02 {
    background-image: url(../../yokohama-cruise/teikibin/image/main02.jpg);
}
#cate-main.yokohama-cruise-y-tour {
    background-image: url(../../yokohama-cruise/y-tour/image/main.jpg);
}
#cate-main.yokohama-cruise-bills {
    background-image: url(../../yokohama-cruise/bills-cafe/image/main.jpg);
}
#cate-main.yokohama-cruise-yamucha {
    background-image: url(../../yokohama-cruise/yamucha/image/main.jpg?=200607-3);
}
#cate-main.yokohama-cruise-afternoon {
    background-image: url(../../yokohama-cruise/afternoon-tea/image/main.jpg);
}
#cate-main.yokohama-cruise-dreamdoor-bbq {
    background-image: url(../../yokohama-cruise/dreamdoor-bbq/image/main.jpg);
}
#cate-main.wharfhouse-bbq {
    background-image: url(../../yokohama-cruise/wharfhouse-bbq/image/main.jpg);
}

@media only screen and (max-width: 767px) {
    #cate-main.yokohama-cruise {
        background-position: 17% 50% !important;
    }
    #cate-main.yokohama-cruise-cafe {
        height: 300px;
        background-image: url(../../yokohama-cruise/cafe/image/main-xs.png);
        background-position: top center !important;
    }
    #cate-main.yokohama-cruise-bills {
        background-image: url(../../yokohama-cruise/bills-cafe/image/main-xs.jpg);
        background-position: 50% 60% !important;
    }
    #cate-main.yokohama-cruise-yamucha {
        background-image: url(../../yokohama-cruise/yamucha/image/main-xs.jpg);
        background-position: 50% 100% !important;
    }
	#cate-main.yokohama-cruise-afternoon {
        background-image: url(../../yokohama-cruise/afternoon-tea/image/main-xs.jpg);
        background-position: 50% 60% !important;
    }
    #cate-main.yokohama-cruise-dreamdoor-bbq {
        background-image: url(../../yokohama-cruise/dreamdoor-bbq/image/main-xs.jpg);
        background-position: 50% 60% !important;
    }
    #cate-main.wharfhouse-bbq {
        background-image: url(../../yokohama-cruise/wharfhouse-bbq/image/main-xs.jpg);
    }

}

/*-- Charter Cruise --*/
#cate-main.charter-cruise {
    background-image: url(../../charter-cruise/image/main.jpg);
}
#cate-main.charter-cruise-party {
    background-image: url(../../charter-cruise/party/image/main.jpg);
}
#cate-main.charter-cruise-wedding {
    background-image: url(../../charter-cruise/wedding/image/main.jpg);
}
#cate-main.charter-cruise-private {
    background-image: url(../../charter-cruise/private/image/main.jpg);
}
#cate-main.charter-cruise-season {
    background-image: url(../../charter-cruise/season/image/main.jpg);
}
#cate-main.charter-cruise-smart {
    background-image: url(../../charter-cruise/smart/image/main.jpg);
}
#cate-main.charter-cruise-attraction {
    background-image: url(../../charter-cruise/attraction/image/main.jpg);
}
#cate-main.charter-cruise-wscene {
    background-image: url(../../charter-cruise/wscene/image/main.jpg);
}
#cate-main.charter-cruise-family {
    background-image: url(../../charter-cruise/private-family/image/main.jpg);
}
#cate-main.charter-cruise-memorial {
    background-image: url(../../charter-cruise/memorial/image/main.jpg);
}
#cate-main.charter-cruise-yokohama {
    /* background-image: url(../../charter-cruise/yokohama-style/image/main.jpg); */
    background-image: url(../../charter-cruise/yokohama-style/image/main_20231226.jpg);
}
#cate-main.charter-cruise-monaco {
    background-image: url(../../charter-cruise/monaco-style/image/main.jpg);
}
#cate-main.charter-cruise-vacation {
    background-image: url(../../charter-cruise/vacation/image/main.jpg);
}
@media only screen and (max-width: 767px) {
    #cate-main.charter-cruise-yokohama {
        /* background-image: url(../../charter-cruise/yokohama-style/image/main-xs.jpg); */
        background-image: url(../../charter-cruise/yokohama-style/image/main-xs_20231226.jpg);
        background-position: 50% 100% !important;
    }
}

/*-- Cruiser --*/
#cate-main.cruiser {
    background-image: url(../../cruiser/image/main.jpg);
}

/*-- Access --*/
#cate-main.access {
    background-image: url(../../access/image/main.jpg);
}

/*-- Staff --*/
#cate-main.staff {
    background-image: url(../../staff/image/main.jpg);
}

/*-- Company --*/
#cate-main.company {
    background-image: url(../../company/image/main.jpg);
}

/*-- Recruit --*/
#cate-main.recruit {
    background-image: url(../../recruit/image/main.jpg);
}

/*-- Other --*/
#cate-main.other {
    height: 380px;
    background-position: 50% 50% !important;
    background-image: url(../image/main-other.jpg?=200411);
}
@media only screen and (max-width: 991px) {
    #cate-main.other {
        height: 330px;
        background-position: 50% 40% !important;
    }
}
@media only screen and (max-width: 767px) {
    #cate-main.other {
        height: 130px;
        background-position: 50% 50% !important;
    }
}

/*-- New Normal On The Sea --*/
#cate-main.new-normal {
    height: 400px;
    background-image: none !important;
    background: #f7f8f8; 
}
#cate-main.new-normal .img-ship {
    width: 700px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
#cate-main.new-normal-vacation2020 {
    background-image: url(../../new-normal/vacation/image/main.jpg?=200619);
}
#cate-main.new-normal-simple {
    background-image: url(../../new-normal/simple/image/main.jpg);
}
#cate-main.new-normal-private {
    background-image: url(../../new-normal/private/image/main.jpg?=200619);
}
#cate-main.new-normal-business {
    background-image: url(../../new-normal/business/image/main.jpg);
}
@media only screen and (max-width: 991px) {
    #cate-main.new-normal {
        height: 350px;
    }
    #cate-main.new-normal .img-ship {
        width: 600px;
    }
}
@media only screen and (max-width: 767px) {
    #cate-main.new-normal {
        height: 200px;
    }
    #cate-main.new-normal .img-ship {
        width: 300px;
    }
    #cate-main.new-normal-vacation2020 {
        background-image: url(../../new-normal/vacation/image/main-xs.jpg?=200619);
    }
}
@media only screen and (max-width: 320px) {
    #cate-main.new-normal .img-ship {
        width: 270px;
    }
}

#cate-main .cate-ttl {
    width: 100%;
    height: 80px;
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 10;
    text-align: center;
    color: #fff;
    font-size: 55px;
    font-family: 'Roboto', sans-serif !important;
    letter-spacing: 0.12em;
    font-weight: 500;
}
#cate-main .cate-ttl.center {
    top: 14%;
}
#cate-main .cate-ttl.text-shadow {
    text-shadow: 2px 2px 1px #000;
}
#cate-main .cate-ttl .ja {
    font-size: 45px;
    font-family: "A1明朝", serif !important;
    letter-spacing: 0.08em;
    font-weight: 600;
}
#cate-main .cate-ttl .small {
    font-size: 40px;
}
#cate-main .cate-ttl div {
    display: inline-block;
    margin: 0 10px;
    vertical-align: 5%;
}
#cate-main .cate-ttl.dark-blue {
    color: #1c2a52;
}
#cate-main.other .cate-ttl {
    top: 37%;
}
@media only screen and (max-width: 991px) {
    #cate-main .cate-ttl {
        height: 60px;
        font-size: 40px;
    }
    #cate-main .cate-ttl .small {
        font-size: 33px;
    }
    #cate-main.other .cate-ttl {
        top: 40%;
    }
}
@media only screen and (max-width: 767px) {
    #cate-main .cate-ttl {
        font-size: 25px;
    }
    #cate-main .cate-ttl .ja {
        font-size: 18px;
        margin-bottom: 0;
    }
    #cate-main .cate-ttl .small,
    #cate-main .cate-ttl.small-xs {
        font-size: 23px;
    }
    #cate-main.other .cate-ttl {
        top: 35%;
    }
}

#cate-main .cate-ttl span:nth-child(1),
#cate-main .cate-sub span:nth-child(1) {
    -webkit-animation: slideTextFade 2.0s ease 0s 1 normal;
    animation: slideTextFade 2.0s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(2),
#cate-main .cate-sub span:nth-child(2) {
    -webkit-animation: slideTextFade 2.1s ease 0s 1 normal;
    animation: slideTextFade 2.1s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(3),
#cate-main .cate-sub span:nth-child(3) {
    -webkit-animation: slideTextFade 2.2s ease 0s 1 normal;
    animation: slideTextFade 2.2s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(4),
#cate-main .cate-sub span:nth-child(4) {
    -webkit-animation: slideTextFade 2.3s ease 0s 1 normal;
    animation: slideTextFade 2.3s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(5),
#cate-main .cate-sub span:nth-child(5) {
    -webkit-animation: slideTextFade 2.4s ease 0s 1 normal;
    animation: slideTextFade 2.4s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(6),
#cate-main .cate-sub span:nth-child(6) {
    -webkit-animation: slideTextFade 2.5s ease 0s 1 normal;
    animation: slideTextFade 2.5s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(7),
#cate-main .cate-sub span:nth-child(7) {
    -webkit-animation: slideTextFade 2.6s ease 0s 1 normal;
    animation: slideTextFade 2.6s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(8),
#cate-main .cate-sub span:nth-child(8) {
    -webkit-animation: slideTextFade 2.7s ease 0s 1 normal;
    animation: slideTextFade 2.7s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(9),
#cate-main .cate-sub span:nth-child(9) {
    -webkit-animation: slideTextFade 2.8s ease 0s 1 normal;
    animation: slideTextFade 2.8s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(10),
#cate-main .cate-sub span:nth-child(10) {
    -webkit-animation: slideTextFade 2.9s ease 0s 1 normal;
    animation: slideTextFade 2.9s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(11),
#cate-main .cate-sub span:nth-child(11) {
    -webkit-animation: slideTextFade 3.0s ease 0s 1 normal;
    animation: slideTextFade 3.0s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(12),
#cate-main .cate-sub span:nth-child(12) {
    -webkit-animation: slideTextFade 3.1s ease 0s 1 normal;
    animation: slideTextFade 3.1s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(13),
#cate-main .cate-sub span:nth-child(13) {
    -webkit-animation: slideTextFade 3.2s ease 0s 1 normal;
    animation: slideTextFade 3.2s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(14),
#cate-main .cate-sub span:nth-child(14) {
    -webkit-animation: slideTextFade 3.3s ease 0s 1 normal;
    animation: slideTextFade 3.3s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(15),
#cate-main .cate-sub span:nth-child(15) {
    -webkit-animation: slideTextFade 3.4s ease 0s 1 normal;
    animation: slideTextFade 3.4s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(16),
#cate-main .cate-sub span:nth-child(16) {
    -webkit-animation: slideTextFade 3.5s ease 0s 1 normal;
    animation: slideTextFade 3.5s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(17),
#cate-main .cate-sub span:nth-child(17) {
    -webkit-animation: slideTextFade 3.6s ease 0s 1 normal;
    animation: slideTextFade 3.6s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(18),
#cate-main .cate-sub span:nth-child(18) {
    -webkit-animation: slideTextFade 3.7s ease 0s 1 normal;
    animation: slideTextFade 3.7s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(19),
#cate-main .cate-sub span:nth-child(19) {
    -webkit-animation: slideTextFade 3.8s ease 0s 1 normal;
    animation: slideTextFade 3.8s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(20),
#cate-main .cate-sub span:nth-child(20) {
    -webkit-animation: slideTextFade 3.9s ease 0s 1 normal;
    animation: slideTextFade 3.9s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(21),
#cate-main .cate-sub span:nth-child(21) {
    -webkit-animation: slideTextFade 4.0s ease 0s 1 normal;
    animation: slideTextFade 4.0s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(22),
#cate-main .cate-sub span:nth-child(22) {
    -webkit-animation: slideTextFade 4.1s ease 0s 1 normal;
    animation: slideTextFade 4.1s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(23),
#cate-main .cate-sub span:nth-child(23) {
    -webkit-animation: slideTextFade 4.2s ease 0s 1 normal;
    animation: slideTextFade 4.2s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(24),
#cate-main .cate-sub span:nth-child(24) {
    -webkit-animation: slideTextFade 4.3s ease 0s 1 normal;
    animation: slideTextFade 4.3s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(25),
#cate-main .cate-sub span:nth-child(25) {
    -webkit-animation: slideTextFade 4.4s ease 0s 1 normal;
    animation: slideTextFade 4.4s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(26),
#cate-main .cate-sub span:nth-child(26) {
    -webkit-animation: slideTextFade 4.5s ease 0s 1 normal;
    animation: slideTextFade 4.5s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(27),
#cate-main .cate-sub span:nth-child(27) {
    -webkit-animation: slideTextFade 4.6s ease 0s 1 normal;
    animation: slideTextFade 4.6s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(28),
#cate-main .cate-sub span:nth-child(28) {
    -webkit-animation: slideTextFade 4.7s ease 0s 1 normal;
    animation: slideTextFade 4.7s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(29),
#cate-main .cate-sub span:nth-child(29) {
    -webkit-animation: slideTextFade 4.8s ease 0s 1 normal;
    animation: slideTextFade 4.8s ease 0s 1 normal;
}
#cate-main .cate-ttl span:nth-child(30),
#cate-main .cate-sub span:nth-child(30) {
    -webkit-animation: slideTextFade 4.9s ease 0s 1 normal;
    animation: slideTextFade 4.9s ease 0s 1 normal;
}

#cate-main .cate-sub {
    width: 100%;
    height: 80px;
    position: absolute;
    top: 38%;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 10;
    text-align: center;
    color: #fff;
    font-size: 38px;
    font-family: 'Roboto', sans-serif !important;
    letter-spacing: 0.12em;
    font-weight: 500;
}
#cate-main .cate-sub.ja {
    font-size: 35px;
    font-family: "游ゴシック",YuGothic, sans-serif !important;
    letter-spacing: 0.08em;
    font-weight: 600;
}
#cate-main .cate-sub.dark-blue {
    color: #1c2a52;
}
@media only screen and (max-width: 991px) {
    #cate-main .cate-sub {
        height: 60px;
        font-size: 30px;
    }
    #cate-main .cate-sub.ja {
        font-size: 25px;
    }
}
@media only screen and (max-width: 767px) {
    #cate-main .cate-sub {
        font-size: 23px;
        top: 35%;
    }
    #cate-main .cate-sub.ja {
        font-size: 18px;
    }
}

#cate-tts {
    margin: -8px 0 0;
    background: #2098D1;
    color: #fff;
    padding: 0 10px 12px;
    font-size: 30px;
    text-align: center;
    letter-spacing: 0.05em;
    font-weight: 600;
    line-height: 1.5;
}
@media only screen and (max-width: 767px) {
    #cate-tts {
        font-size: 20px;
    }
}

/* 5.3 Cate Ichiran Top
 * ------------------------------*/
ul.ichiran-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    margin: 0 auto;
}
ul.ichiran-list li {
    width: 48.3%;
    color: #fff;
    margin: 20px 10px 0;
    border-bottom: 1px solid #2098D1;
}
ul.ichiran-list li a {
    display: block;
    height: 150px;
    text-decoration: none;
    overflow: hidden;
}
ul.ichiran-list li a:hover {
    text-decoration: none;
}
@media only screen and (max-width: 1199px) {
    ul.ichiran-list li {
        width: 47.8%;
    }
}
@media only screen and (max-width: 991px) {
    ul.ichiran-list li {
        width: 100%;
        margin: 10px 0 0;
    }
}
@media only screen and (max-width: 767px) {
    ul.ichiran-list li a {
        height: 120px;
    }
}

ul.ichiran-list li .img-box {
    width: 33%;
    position: relative;
}
ul.ichiran-list li .img-box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    overflow: hidden;
}
ul.ichiran-list li .txt-box {
    width: 67%;
    padding: 0 0 15px;
    position: relative;
}
ul.ichiran-list li .sub {
    margin: 0 0 5px;
    font-size: 16px !important;
    font-weight: 500;
    line-height: 1.5 !important;
    letter-spacing: 0 !important;
    color: #fff;
    background: #2098D1;
    padding: 5px 10px;
}
ul.ichiran-list li .txt {
    padding: 5px 10px 0;
    font-size: 14px !important;
    line-height: 1.6 !important;
}
@media only screen and (max-width: 767px) {
    ul.ichiran-list li .img-box {
        width: 30%;
    }
    ul.ichiran-list li .img-box img {
        height: 120px;
    }
    ul.ichiran-list li .txt-box {
        width: 70%;
        padding-bottom: 10px;
    }
    ul.ichiran-list li .sub {
        margin-bottom: 2px;
        padding-top: 4px;
        font-size: 13px !important;
    }
    ul.ichiran-list li .txt {
        font-size: 12px !important;
    }
}

/* 5.4 Block Img Wrap
 * ------------------------------*/
.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: 500px;
    background-size: cover !important;
    overflow: hidden;
    position: relative;
}
.block-img-wrap .block-cont .h-full {
    height: 100vh !important;
}
@media screen and (max-width: 1199px) {
    .block-img-wrap .block-cont .left,
    .block-img-wrap .block-cont .right {
        height: 550px;
    }
}
@media screen and (max-width: 991px) {
    .block-img-wrap .block-cont .left,
    .block-img-wrap .block-cont .right {
        height: 600px;
    }
}
@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: 250px !important;
    }
    .block-img-wrap .block-cont .order1 {
        order: 1;
    }
    .block-img-wrap .block-cont .order2 {
        order: 2;
    }
}

.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;
    }
}

/* 5.5 Img Area hover
 * ------------------------------*/
ul.img-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    margin: 40px auto 0;
}
ul.img-list.center {
    justify-content: center;
}
ul.img-list li {
    margin: 10px;
    position: relative;
}
ul.img-list.cols4 li {
    width: 23.3%;
}
ul.img-list.cols3 li {
    width: 31.5%;
}
ul.img-list li a {
    color: #000;
}
ul.img-list li a:hover {
    text-decoration: none;
}
ul.img-list li .sub {
    margin: 8px 0 10px !important;
    height: 60px;
    padding-bottom: 8px;
    font-size: 16px !important;
    font-weight: 500;
    line-height: 1.5 !important;
    text-align: center;
    letter-spacing: 0 !important;
    color: #1c2a52;
    border-bottom: 1px dashed #1c2a52;
    box-sizing: border-box;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    align-content: flex-start;
}
ul.img-list li .sub::before {
    display: inline-block;
    margin-right: 10px;
    content: '\f138';
    color: #1c2a52;
    font-size: 20px;
    font-family: fontAwesome;
}
ul.img-list li .txt {
    font-size: 14px !important;
    line-height: 1.7 !important;
    text-align: center;
}
@media only screen and (max-width: 1199px) {
    ul.img-list.cols4 li {
        width: 22.9%;
    }
    ul.img-list.cols3 li {
        width: 31%;
    }
}
@media only screen and (max-width: 991px) {
    ul.img-list.cols4 li {
        width: 22.3%;
    }
    ul.img-list.cols3 li {
        width: 30.5%;
    }
    ul.img-list li .sub {
        font-size: 14px !important;
    }
    ul.img-list li .sub::before {
        font-size: 16px;
    }
    ul.img-list li .txt {
        font-size: 13px !important;
    }
}
@media only screen and (max-width: 767px) {
    ul.img-list {
        margin-top: 20px;
    }
    ul.img-list li {
        margin: 10px 0;
    }
    ul.img-list.sp-cols2 li {
        width: 48.8%;
        margin: 10px 6px;
    }
    ul.img-list.sp-cols2 li:nth-child(odd) {
        margin-left: 0;
    }
    ul.img-list.sp-cols2 li:nth-child(even) {
        margin-right: 0;
    }
    ul.img-list li .sub {
        height: 65px;
        font-size: 13px !important;
    }
    ul.img-list li .sub::before {
        font-size: 14px;
        margin-right: 7px;
    }
    ul.img-list li .txt {
        font-size: 12px !important;
        text-align: left;
    }
    ul.img-list li .txt span.text-center-xs {
        display: block;
        margin-bottom: -15px;
        text-align: center !important;
    }
}
@media only screen and (max-width: 480px) {
    ul.img-list.sp-cols2 li {
        width: 48.3%;
    }
}
@media only screen and (max-width: 380px) {
    ul.img-list.sp-cols2 li {
        width: 48.1%;
    }
}
@media only screen and (max-width: 320px) {
    ul.img-list.sp-cols2 li {
        width: 47.8%;
    }
}

.icon-time {
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 13px;
    text-align: center;
    color: #fff;
    font-family: 'Montserrat', sans-serif !important;
    letter-spacing: 0.03em;
    font-weight: 600;
    line-height: 1;
}
.icon-time .day {
    display: inline-block;
    margin-right: 10px;
    width: 50px;
    height: 23px;
    background: #f90;
    padding: 4px 3px;
    box-sizing: border-box;
}
.icon-time .night {
    display: inline-block;
    width: 50px;
    height: 23px;
    background: #378cc6;
    padding: 4px 3px;
    box-sizing: border-box;
}
.icon-stay {
    display: block;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: 10px;
    box-sizing: border-box;
    padding: 19px 0;
    text-align: center;
    color: #fff;
    background: #af914d;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif !important;
    letter-spacing: 0.03em;
    font-weight: 600;
    line-height: 1;
}
@media only screen and (max-width: 991px) {
    .icon-time {
        font-size: 12px;
        top: 7px;
        left: 7px;
    }
    .icon-time .day,
    .icon-time .night {
        width: 40px;
        height: 20px;
        padding: 3px 2px;
    }
    .icon-stay {
        top: 7px;
        right: 7px;
        width: 45px;
        height: 45px;
        padding: 17px 0;
        font-size: 10px;
    }
}

ul.img-list.cols4 .imagearea {
    height: 220px;
    overflow: hidden;
}
ul.img-list.cols4 .imagearea-content > img {
    width: auto;
    height: 220px;
    object-fit: cover !important;
    overflow: hidden;
}
@media only screen and (max-width: 1199px) {
    ul.img-list.cols4 .imagearea,
    ul.img-list.cols4 .imagearea-content > img {
        height: 200px;
    }
}
@media only screen and (max-width: 991px) {
    ul.img-list.cols4 .imagearea,
    ul.img-list.cols4 .imagearea-content > img {
        height: 150px;
    }
}
@media only screen and (max-width: 767px) {
    ul.img-list.cols4 .imagearea,
    ul.img-list.cols4 .imagearea-content > img {
        height: 200px;
    }
}
@media only screen and (max-width: 480px) {
    ul.img-list.cols4 .imagearea,
    ul.img-list.cols4 .imagearea-content > img {
        height: 130px;
    }
}
@media only screen and (max-width: 320px) {
    ul.img-list.cols4 .imagearea,
    ul.img-list.cols4 .imagearea-content > img {
        height: 110px;
    }
}

a:hover .imagearea-content > img {
    -ms-transform: scale(1.067);
    transform: scale(1.067);
}

.imagearea {
    width: 100%;
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid #ccc;
}
.imagearea:before {
    content: "";
    display: block;
    padding-top: 66.667%;
}

.imagearea-content {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    align-content: flex-start;
}

.imagearea-content > img {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    transition: transform 600ms cubic-bezier(0.39, 0.575, 0.565, 1);
    overflow: hidden !important;
}

.imagearea-content .txt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    background-color: rgba(28,42,82,0.8);
    transition: opacity 600ms cubic-bezier(0.39, 0.575, 0.565, 1);
    color: #fff;
}
a .imagearea-content.txt-none .txt-overlay {
    opacity: 0;
}
a:hover .imagearea-content.txt-none .txt-overlay {
    opacity: 1;
}
.imagearea-content .txt-overlay {
    color: #fff;
    text-align: center;
}
.imagearea-content .txt-overlay .more {
    margin: 0;
    display: block;
    font-size: 16px;
    font-family: 'Source Sans Pro', sans-serif !important;
    letter-spacing: 0.2em;
    font-weight: 600;
}
.imagearea-content span {
    display: block;
    width: 100%;
}
.imagearea-content span i {
    display: inline-block;
    margin-right: 5px;
    vertical-align: -5%;
}
@media only screen and (max-width: 991px) {
    .imagearea-content .txt-overlay .more {
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px) {
    .imagearea-content .txt-overlay .more {
        font-size: 11px;
    }
}

/* 5.6 Img BG Area hover
 * ------------------------------*/
ul.img-bg-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    /*margin: 30px auto 0;*/
    margin: -1px auto 0;
}
ul.img-bg-list li {
    width: 50%;
    color: #fff;
    margin: 0;
}
ul.img-bg-list li a {
    display: block;
    height: 180px;
    color: #fff;
    background: #2098D1;
    text-decoration: none;
    overflow: hidden;
}
ul.img-bg-list li a:hover {
    color: #fff;
    text-decoration: none;
}
ul.img-bg-list li:hover {
    opacity: 0.8;
    transition: 0.7s;
}
ul.img-bg-list li hr {
    border-top: 1px solid #fff;
    margin: 10px 0;
}
@media only screen and (max-width: 1199px) {
    /*ul.img-bg-list {
        margin-top: 20px;
    }*/
    ul.img-bg-list li a {
        height: 200px;
    }
}
@media only screen and (max-width: 767px) {
    /*ul.img-bg-list {
        margin-top: 10px;
    }*/
    ul.img-bg-list li {
        width: 100%;
        margin-bottom: 1px;
    }
    ul.img-bg-list li a {
        height: 160px;
    }
    ul.img-bg-list li .order1 {
        order: 1;
    }
    ul.img-bg-list li .order2 {
        order: 2;
    }
    ul.img-bg-list li hr {
        border-top: 1px dashed #fff;
    }
}
@media only screen and (max-width: 480px) {
    ul.img-bg-list li a {
        height: 110px;
    }
}
@media only screen and (max-width: 320px) {
    ul.img-bg-list li a {
        height: 120px;
    }
}

ul.img-bg-list li .img-box {
    width: 50%;
    position: relative;
}
ul.img-bg-list li .img-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    overflow: hidden;
}
ul.img-bg-list li .txt-box {
    width: 50%;
    padding: 20px 30px;
    position: relative;
}
ul.img-bg-list li .sub {
    margin: 0;
    font-size: 16px !important;
    font-weight: 500;
    line-height: 1.5 !important;
    letter-spacing: 0 !important;
}
ul.img-bg-list li .sub .en {
    display: inline-block;
    font-size: 22px !important;
    font-family: 'Source Sans Pro', sans-serif !important;
    letter-spacing: 0.05em;
    margin-right: 15px;
}
ul.img-bg-list li .sub .en.f20 {
    font-size: 20px !important;
}
ul.img-bg-list li .txt {
    font-size: 14px !important;
    line-height: 1.7 !important;
}
@media only screen and (max-width: 1199px) {
    ul.img-bg-list li .img-box img {
        height: 200px;
    }
}
@media only screen and (max-width: 991px) {
    ul.img-bg-list li .sub {
        font-size: 14px !important;
    }
    ul.img-bg-list li .sub .en {
        font-size: 20px !important;
    }
    ul.img-bg-list li .sub .en.f20 {
        font-size: 18px !important;
    }
}
@media only screen and (max-width: 767px) {
    ul.img-bg-list li .img-box {
        width: 30%;
    }
    ul.img-bg-list li .img-box img {
        height: 160px;
    }
    ul.img-bg-list li .txt-box {
        width: 70%;
        padding: 10px 15px 10px 10px;
    }
    ul.img-bg-list li .sub {
        font-size: 14px !important;
    }
    ul.img-bg-list li .sub .en {
        font-size: 16px !important;
    }
    ul.img-bg-list li .sub .en.f20 {
        font-size: 15px !important;
    }
    ul.img-bg-list li .txt {
        font-size: 12px !important;
    }
}
@media only screen and (max-width: 480px) {
    ul.img-bg-list li .img-box img {
        height: 110px;
    }
}
@media only screen and (max-width: 320px) {
    ul.img-bg-list li .img-box img {
        height: 120px;
    }
    ul.img-bg-list li .sub {
        font-size: 13px !important;
    }
    ul.img-bg-list li .sub .en {
        font-size: 15px !important;
    }
    ul.img-bg-list li .sub .en.f20 {
        font-size: 14px !important;
    }
    ul.img-bg-list li .txt {
        font-size: 11px !important;
    }
}

ul.img-bg-list li .txt-box dl {
    width: 100%;
    display: table;
    margin: 0;
}
ul.img-bg-list li .txt-box dl dt {
    width: 40px;
    display: table-cell;
    font-size: 12px;
    line-height: 1.7;
    font-weight: 400;
}
ul.img-bg-list li .txt-box dl dd {
    display: table-cell;
    font-size: 12px;
    line-height: 1.7;
}
@media only screen and (max-width: 767px) {
    ul.img-bg-list li .txt-box dl dt {
        width: 30px;
        font-size: 10px;
        line-height: 1.5;
    }
    ul.img-bg-list li .txt-box dl dd {
        font-size: 10px;
        line-height: 1.5;
    }
}

ul.img-bg-list li .arrow-right {
    width: 0;
    height: 0;
    border-left: 24px solid #2098D1;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    position: absolute;
    top: 38%;
    left: 0;
}
ul.img-bg-list li .arrow-left {
    width: 0;
    height: 0;
    border-right: 24px solid #2098D1;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    position: absolute;
    top: 38%;
    right: 0;
}
@media only screen and (max-width: 767px) {
    ul.img-bg-list li .arrow-right,
    ul.img-bg-list li .arrow-left {
        display: none;
    }
}

/* 5.7 News Flash
 * ------------------------------*/
#news-flash {
    margin: 40px auto;
}

#news-flash dl {
    display: table;
    width: 100%;
    height: 50px;
    margin: 0;
    list-style-type: none;
    box-sizing: border-box;
    overflow: hidden;
}
#news-flash dl dt {
    display: table-cell;
    width: 200px;
    font-size: 19px;
    color: #fff;
    background: #1c2a52;
    text-align: center;
    font-weight: 500;
    /*font-family: "A1明朝", serif !important;
    letter-spacing: 0.08em;*/
    vertical-align: middle;
}
#news-flash.en dl dt {
    font-size: 15px;
    line-height: 1.2;
}
#news-flash dl dd {
    display: table-cell;
    background: #dedfdf;
    padding: 0 10px;
    text-align: left;
    position: relative;
    vertical-align: middle;
}
#news-flash dl dd a {
    color: #000;
}
#news-flash dl dd ul {
    margin: 0;
    padding: 0;
    font-size: 20px;
    color: #000;
}
#news-flash dl dd ul li {
    white-space:nowrap;
}
@media only screen and (max-width: 991px) {
    #news-flash dl dt {
      width: 170px;
      font-size: 18px;
    }
    #news-flash dl dd ul {
      font-size: 18px;
    }
}
@media only screen and (max-width: 767px) {
    #news-flash {
      margin-top: 25px;
    }
    #news-flash dl {
      height: 40px;
    }
    #news-flash dl dt {
      width: 140px;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.05em;
    }
    #news-flash.en dl dt {
        font-size: 11px;
    }
    #news-flash dl dd ul {
      font-size: 15px;
    }
}
@media only screen and (max-width: 480px) {
    #news-flash dl {
      height: 36px;
    }
    #news-flash dl dt {
        width: 130px;
        font-size: 13px;
        letter-spacing: 0.02em;
    }
    #news-flash dl dd ul {
      font-size: 13px;
    }
}

#news-flash dl dt span {
    -webkit-animation: letter-glow 1.5s 0s ease infinite;
    animation: letter-glow 1.5s 0s ease infinite;
}
#news-flash dl dt span:nth-child(1) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
#news-flash dl dt span:nth-child(2) {
     -webkit-animation-delay: 0.4s;
     animation-delay: 0.4s;
}
#news-flash dl dt span:nth-child(3) {
    -webkit-animation-delay: 0.6s;
     animation-delay: 0.6s;
}
#news-flash dl dt span:nth-child(4) {
    -webkit-animation-delay: 0.8s;
     animation-delay: 0.8s;
}
#news-flash dl dt span:nth-child(5) {
    -webkit-animation-delay: 1.0s;
     animation-delay: 1.0s;
}
#news-flash dl dt span:nth-child(6) {
    -webkit-animation-delay: 1.2s;
     animation-delay: 1.2s;
}
#news-flash dl dt span:nth-child(7) {
    -webkit-animation-delay: 1.4s;
     animation-delay: 1.4s;
}
#news-flash dl dt span:nth-child(8) {
    -webkit-animation-delay: 1.6s;
     animation-delay: 1.6s;
}
#news-flash dl dt span:nth-child(9) {
    -webkit-animation-delay: 1.8s;
     animation-delay: 1.8s;
}
#news-flash dl dt span:nth-child(10) {
    -webkit-animation-delay: 2.0s;
     animation-delay: 2.0s;
}

/*5.8 Box
 *------------------------------*/
.waku-box {
    border: 1px solid #ccc;
    margin: 40px 0 10px;
    padding: 10px 20px 7px;
    position: relative;
    z-index: 20;
}
.waku-box:after {
    border: 1px solid #ccc;
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 100%;
    height: 100%;
    z-index: 10;
}
@media only screen and (max-width: 767px) {
    .waku-box {
        margin-top: 30px;
        padding: 5px 20px 3px;
    }
}

.double-waku-box {
    background: none;
    border: 1px solid #af914d;
    margin: 0 0 20px;
    padding: 12px 20px 10px;
    position: relative;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    z-index: 0;
}
.double-waku-box:after {
    background: none;
    border: 1px solid #af914d;
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.double-waku-box.blue,
.double-waku-box.blue:after {
    border-color: #2098D1;
}
.double-waku-box.dark-blue,
.double-waku-box.dark-blue:after {
    border-color: #1c2a52;
}
.double-waku-box h2,
.double-waku-box h3,
.double-waku-box h4,
.double-waku-box p {
    margin: 0;
}
@media only screen and (max-width: 991px) {
    .double-waku-box {
        font-size: 15px;
    }
}
@media only screen and (max-width: 767px) {
    .double-waku-box {
        margin-bottom: 15px;
        padding: 12px 10px 8px 15px;
        font-size: 13px;
        letter-spacing: 0;
    }
}

.info-box {
    width: 800px;
    margin: 30px auto 0;
    padding: 20px 30px;
}
.info-box dl {
    width: 100%;
    display: table;
    margin: 0;
}
.info-box dt {
    width: 110px;
    display: table-cell;
    line-height: 2;
    font-weight: 400;
    font-size: 14px;
}
.info-box dd {
    display: table-cell;
    line-height: 2;
}
@media only screen and (max-width: 991px) {
    .info-box {
        width: auto;
        margin: 30px 15px 0;
    }
}
@media only screen and (max-width: 767px) {
    .info-box {
        width: auto;
        margin-top: -15px;
        padding: 15px;
    }
    .info-box dt {
        width: 75px;
        line-height: 1.8;
        font-size: 11px;
    }
    .info-box dd {
        line-height: 1.8;
    }
}

/*5.9 Menu List
 *------------------------------*/
.menu-list {
    margin: 40px 0 30px;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: flex-start;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
}
.menu-list li {
    display: table;
    padding: 0;
    text-align: center;
    font-size: 13px;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.menu-list.cols2 li {
    width: 50%;
}
.menu-list.cols3 li {
    width: 33.3333333%;
}
.menu-list.cols4 li {
    width: 25%;
}
.menu-list li a {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    color: #000;
    height: 100%;
    padding: 10px;
}
.menu-list.align-top li a {
    vertical-align: top;
}
.menu-list li a:hover {
    text-decoration: none;
    background: #f1f1f1;
}
.menu-list li i {
    display: inline-block;
    font-size: 11px;
    margin-left: 10px;
}
@media screen and (max-width: 767px) {
    .menu-list {
        margin-top: 25px;
    }
    .menu-list li {
        width: 50% !important;
        font-size: 12px;
        line-height: 1.6;
    }
    .menu-list li a {
        padding: 7px 5px;
        vertical-align: top;
    }
    .menu-list.center-xs li a {
        vertical-align: middle;
    }
    .menu-list li i {
        font-size: 10px;
    }
}

ul.menu-list li .sub {
    margin: 8px 0 10px !important;
    height: 60px;
    padding-bottom: 8px;
    font-size: 14px !important;
    font-weight: 500;
    line-height: 1.5 !important;
    text-align: center;
    letter-spacing: 0 !important;
    color: #1c2a52;
    border-bottom: 1px dashed #1c2a52;
    box-sizing: border-box;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    align-content: flex-start;
}
ul.menu-list li .sub::before {
    display: inline-block;
    margin-right: 10px;
    content: '\f138';
    color: #1c2a52;
    font-size: 14px;
    font-family: fontAwesome;
}
ul.menu-list li .sub.h-auto {
    height: auto;
    margin: 15px 0 5px !important;
    padding-bottom: 0;
    border-bottom: none;
}
ul.menu-list li .txt {
    font-size: 13px !important;
    line-height: 1.7 !important;
    text-align: center;
    margin: 10px 0 0;
}
@media only screen and (max-width: 991px) {
    ul.menu-list li .sub {
        font-size: 14px !important;
    }
    ul.menu-list li .sub::before {
        font-size: 13px;
        margin-right: 7px;
    }
}
@media only screen and (max-width: 767px) {
    ul.menu-list li .sub {
        height: 65px;
        font-size: 12px !important;
    }
    ul.menu-list li .txt {
        font-size: 12px !important;
        text-align: left;
        padding: 0 3px;
        margin-bottom: 5px;
    }
}

/*5.10 Contact
 *------------------------------*/
#contact-wrap.lower-wrap {
    margin-top: 40px;
}
#contact-wrap table.sendmail-table th {
    width: 25%;
    text-align: center;
}
#contact-wrap table.sendmail-table td {
    width: 75%;
}
@media only screen and (max-width: 767px) {
    #contact-wrap.lower-wrap {
        margin-top: 30px;
    }
    #contact-wrap table.sendmail-table th,
    #contact-wrap table.sendmail-table td {
        padding: 5px 10px;
    }
}

/*5.11 Lightgallery
 *------------------------------*/
#aniimated-thumbnials,
.aniimated-thumbnials-gallery {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    margin: 20px auto 0;
}
#aniimated-thumbnials a,
.aniimated-thumbnials-gallery a {
    display: block;
    width: 20%;
    color: #000;
    border: 1px solid #fff;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
#aniimated-thumbnials.cols3 a,
.aniimated-thumbnials-gallery.cols3 a {
    width: 33.333%;
}
#aniimated-thumbnials.cols4 a,
.aniimated-thumbnials-gallery.cols4 a {
    width: 25%;
}
#aniimated-thumbnials a img,
.aniimated-thumbnials-gallery a img {
    width: 100%;
    /*height: 100%;*/
    height: 120px;
    object-fit: cover;
    overflow: hidden;
}
#aniimated-thumbnials.cols3 a img,
.aniimated-thumbnials-gallery.cols3 a img {
    height: 160px;
}
#aniimated-thumbnials a:hover,
.aniimated-thumbnials-gallery a:hover {
    text-decoration: none;
}
#aniimated-thumbnials .view .more,
.aniimated-thumbnials-gallery .view .more {
   font-size: 18px !important;
   font-weight: 500 !important;
}
#aniimated-thumbnials .view .more i,
.aniimated-thumbnials-gallery .view .more i {
    margin: 0 !important;
}
#aniimated-thumbnials .txt,
.aniimated-thumbnials-gallery .txt {
    text-align: center;
    margin: 5px 0 10px;
}
@media only screen and (max-width: 991px) {
    #aniimated-thumbnials a img,
    .aniimated-thumbnials-gallery a img {
        height: 80px;
    }
    #aniimated-thumbnials.cols3 a img,
    .aniimated-thumbnials-gallery.cols3 a img {
        height: 140px;
    }
}
@media only screen and (max-width: 767px) {
    #aniimated-thumbnials,
    .aniimated-thumbnials-gallery {
        margin-bottom: 10px;
    }
    #aniimated-thumbnials a,
    .aniimated-thumbnials-gallery a {
        width: 25%;
    }
    #aniimated-thumbnials a img,
    .aniimated-thumbnials-gallery a img {
        height: 100px;
    }
    #aniimated-thumbnials.cols3 a img,
    .aniimated-thumbnials-gallery a img {
        height: 100px;
    }
    #aniimated-thumbnials.sp-cols2 a,
    .aniimated-thumbnials-gallery.sp-cols2 a {
        width: 50%;
    }
    #aniimated-thumbnials.sp-cols2 a img,
    .aniimated-thumbnials-gallery.sp-cols2 a img {
        height: 180px;
    }
    #aniimated-thumbnials .view .more i,
    .aniimated-thumbnials-gallery .view .more i {
        font-size: 13px !important;
    }
}
@media only screen and (max-width: 480px) {
    #aniimated-thumbnials a img,
    .aniimated-thumbnials-gallery a img {
        height: 70px;
    }
    #aniimated-thumbnials.sp-cols2 a img,
    .aniimated-thumbnials-gallery.sp-cols2 a img {
        height: 130px;
    }
}
@media only screen and (max-width: 320px) {
    #aniimated-thumbnials a img,
    .aniimated-thumbnials-gallery a img {
        height: 60px;
    }
    #aniimated-thumbnials.sp-cols2 a img,
    .aniimated-thumbnials-gallery.sp-cols2 a img {
        height: 110px;
    }
}

/*5.12 Img Gallery List
 *------------------------------*/
ul.img-gallery-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    margin: 0 auto;
}
ul.img-gallery-list.center {
    justify-content: center;
}
ul.img-gallery-list li {
    margin: 0;
    box-sizing: border-box;
    padding: 12px 5px 0;
}
ul.img-gallery-list.cols2 li {
    width: 50%;
}
ul.img-gallery-list.cols3 li {
    width: 33.333%;
}
ul.img-gallery-list.cols4 li {
    width: 25%;
}
ul.img-gallery-list li .txt {
    margin: 10px 0 0;
    text-align: center;
}
@media only screen and (max-width: 767px) {
    ul.img-gallery-list li {
        padding: 4px 2px 0;
    }
    ul.img-gallery-list.sp-cols2 li {
        width: 50%;
    }
    ul.img-gallery-list.sp-cols1 li {
        width: 100%;
    }
    ul.img-gallery-list li .txt {
        text-align: left;
        margin: 5px 0 10px;
    }
}

/*-------------------------------
 * 6. NAKAMAIN / SIDE
 * ----------------------------*/
/* 6.1 Nakamain
 * ------------------------------*/
#naka-main {
    padding-right: 40px;
}
@media only screen and (max-width: 991px) {
    #naka-main {
        padding-right: 15px;
    }
}
@media only screen and (max-width: 767px) {
    #naka-main {
        padding-bottom: 10px;
    }
}

#naka-main .lower-wrap .sub-box {
    position: relative;
}
#naka-main .lower-wrap .sub-box .sub {
    margin: 0 0 20px;
    position: relative;
    border-top: solid 2px #af914d;
    border-bottom: solid 2px #af914d;
    line-height: 1.5;
    padding: 25px 0;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #1c2a52;
}
#naka-main .lower-wrap .sub-box .icon-time {
    top: -30px;
    left: 170px;
    height: 30px;
}
#naka-main .lower-wrap .sub-box .icon-stay {
    width: 160px;
    height: 30px;
    left: 0;
    top: -30px;
    border-radius: 0;
    font-size: 15px;
    padding: 8px 5px;
}
#naka-main .lower-wrap .sub-box .icon-stay.en {
    width: 180px;
}
@media only screen and (max-width: 991px) {
    #naka-main .lower-wrap .sub-box .sub {
        font-size: 25px;
    }
}
@media only screen and (max-width: 767px) {
    #naka-main .lower-wrap .sub-box {
        padding-top: 30px;
    }
    #naka-main .lower-wrap .sub-box .sub {
        font-size: 17px;
    }
    #naka-main .lower-wrap .sub-box .icon-time {
        top: 10px;
        height: 20px;
        left: 130px;
    }
    #naka-main .lower-wrap .sub-box .icon-stay {
        top: 10px;
        font-size: 12px;
        height: 20px;
        padding: 5px 3px;
        width: 120px;
    }
    #naka-main .lower-wrap .sub-box .icon-stay.en {
        width: 140px;
    }
}

/* 6.2 Sidebar
 * ------------------------------*/
#sidebar {
    margin: 20px 0 0;
}
#sidebar .sub {
    margin: 0;
    font-size: 15px;
    color: #fff;
    background: #1c2a52;
    font-weight: 600;
    letter-spacing: 0.05em;
}
#sidebar .sub a {
    display: block;
    color: #fff;
    padding: 10px 10px 8px;
}
#sidebar .sub a:hover {
    text-decoration: none;
    opacity: 0.8;
}
@media only screen and (max-width: 767px) {
    #sidebar .sub {
        font-size: 13px;
    }
}

#sidebar ul {
    margin: 0 0 30px;
    padding: 0;
    list-style-type: none;
    /*border: 1px solid #1c2a52;*/
}
#sidebar ul li {
    margin: 0;
    border-bottom: 1px solid #ccc;
    position: relative;
}
#sidebar ul li a {
    display: block;
    padding: 10px;
}
#sidebar ul li a:hover {
    text-decoration: none;
}
#sidebar ul li:hover {
    background: #f1f1f1;
    transition: 0.7s;
}
/*#sidebar ul li.active {
    border: 7px solid #af914d;
}
#sidebar ul li.active:before {
    content: '';
    display: block;
    position: absolute;
    top: -7px;
    bottom: -7px;
    left: -7px;
    right: -7px;
    z-index: -1;
}*/

#sidebar ul li.active {
    border: 1px solid #af914d;
    position: relative;
}
#sidebar ul li.active::before {
    background-color: rgba(255,255,255,0.8);
    border-radius: 5px;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 5px;
    z-index: -1;
}
#sidebar ul li.active::after {
    background: repeating-linear-gradient(-45deg, #EDDDA3, #EDDDA3 5px, #ffffff 0, #ffffff 10px);
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -2;
}
#sidebar ul li.active:hover {
    background: inherit;
}

/*-------------------------------
 * 7. FOOTER
 * ----------------------------*/
footer {
    background: #dedfdf;
    margin: 0;
    padding: 30px 0 0;
}
footer .container-fluid {
    padding-right: 30px;
}
@media only screen and (max-width: 767px) {
    footer {
        padding-top: 20px;
    }
    footer .container-fluid {
        padding-right: 15px;
    }
}

footer .logo {
    display: block;
    width: 140px;
    height: auto;
}
@media only screen and (max-width: 991px) {
    footer .logo {
        width: 100px;
    }
}

footer ul.footer-list {
    margin: 0;
}
footer ul.footer-list li {
    line-height: 1.8;
    margin: 0;
}
footer ul.footer-list .nav-title {
    display: block;
    padding-bottom: 10px;
    margin-bottom: 12px;
    font-weight: 400;
    font-size: 14px;
    border-bottom: 1px solid #000;
}
footer ul.footer-list .nav-title span {
    display: block;
    font-size: 13px;
    letter-spacing: 0.08em;
}
footer ul.footer-list ul li {
    font-size: 12px;
    padding-bottom: 5px;
}
@media only screen and (max-width: 767px) {
    footer ul.footer-list {
        display: none;
    }
}

footer ul.bnr-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    margin: 20px auto 0;
}
footer ul.bnr-list li {
    width: 46%;
    margin: 10px;
    text-align: center;
    font-size: 12px;
}
footer ul.bnr-list li p {
    margin: 5px 0;
}
@media only screen and (max-width: 767px) {
    footer ul.bnr-list li {
        width: 60%;
        font-size: 11px;
        margin: 0 0 10px;
    }
}

footer .footer-info {
    /*margin-top: 30px;*/
    margin-top: -1px;
    text-align: center;
    padding: 15px 15px 10px;
    color: #fff;
    font-size: 12px;
    background: #1c2a52;
}
footer .footer-info a {
    color: #fff;
}
footer .footer-info p {
    margin: 5px 0;
    line-height: 1.7;
}
footer .footer-info ul.info-list {
    margin: 0 0 20px;
    font-size: 13px;
}
footer .footer-info ul.info-list li {
    display: inline-block;
}
footer .footer-info ul.info-list li:after {
    padding: 0 4px;
    content: " | ";
}
footer .footer-info ul.info-list li:last-of-type:after {
    content: "";
}
footer .footer-info .copy {
    font-size: 10px;
    margin-top: 20px;
}
@media only screen and (max-width: 767px) {
    footer .footer-info {
        font-size: 11px;
        /*margin-top: 10px;*/
    }
    footer .footer-info ul.info-list {
        font-size: 11px;
    }  
}

footer ul.sns-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    margin: 10px auto;
}
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-youtube {
    position: relative;
    margin: 0;
	top: 0;
	left: 0;
}
footer ul.sns-list .icon-fb .fa-facebook,
footer ul.sns-list .icon-instagram .fa-instagram,
footer ul.sns-list .icon-twitter .fa-twitter,
footer ul.sns-list .icon-youtube .fa-youtube {
    font-size: 22px !important;
    color: #fff !important;
}

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

.view {
   width: 100%;
   height: 100%;
   overflow: hidden;
   position: relative;
   cursor: pointer;
}

.view .mask {
   width: 100%;
   height: 100%;
   position: absolute;
   overflow: hidden;
   display: flex;
   flex-flow: row wrap;
   justify-content: center;
   align-items: center;
   align-content: center;
   top: 0;
   left: 0;
   background-color: rgba(28,42,82,0.85);
   -webkit-transition: all 0.5s linear;
   transition: all 0.5s linear;
   opacity: 0;
}
.view:hover .mask {
   opacity: 1;
}

.view img {
   display: block;
   position: relative;
   -webkit-transform: scaleY(1);
   transform: scaleY(1);
   -webkit-transition: all 0.7s ease-in-out;
   transition: all 0.7s ease-in-out;
}
.view:hover img {
   /*-webkit-transform: scale(1.05);
   transform: scale(1.05);*/
   opacity: 1;
}

.view .more {
   display: block;
   text-decoration: none;
   background: none;
   color: #fff;   
   opacity: 0;
   -webkit-transform: scale(0);
   transform: scale(0);
   -webkit-transition: all 0.5s linear;
   transition: all 0.5s linear;
   font-size: 15px;
    font-family: 'Source Sans Pro', sans-serif !important;
    letter-spacing: 0.2em;
    font-weight: 600;
}
.view:hover .more {
   -webkit-transform: scale(1);
   transform: scale(1);
   opacity: 1;
}
.view:hover .more i {
    display: inline-block;
    margin-right: 5px;
    vertical-align: -5%;
}
@media only screen and (max-width: 767px) {
    .view .more {
        font-size: 11px;
    }
}

/*--------- keyframes --------- */
/* motion */
@-webkit-keyframes slideTextFade {
    0%, 25% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes slideTextFade {
    0%, 25% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes gradient {
    0% {
        background-position: 20% 0%;
    }
    50% {
        background-position: 80% 100%;
    }
    100% {
        background-position: 20% 0%;
    }
}
@keyframes gradient {
    0% {
        background-position: 20% 0%;
    }
    50% {
        background-position: 80% 100%;
    }
    100% {
        background-position: 20% 0%;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.25;
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.25;
    }
}

@-webkit-keyframes fadeOut-0 {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes fadeOut-0 {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  30% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  30% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/* 20200608 */
.nn_info {
}
.nn_info h2 {
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    color: #1c2a52;
}
.nn_info h2 a {
    color: #1c2a52;
}
.nn_info ul {
    margin: auto;
    max-width: 600px;
    line-height: 2.2;
}
.nn_info .nm_info_box {
    margin-top: 15px;
    text-align: center;
    line-height: 2.4;
    font-weight: 600;
}
.nn_info .nm_info_box a {
    color: #1c2a52;
}

.nn-wakubox {
    border: 1px solid #1c2a52;
}
.nn-wakubox:after {
    border: 1px solid #1c2a52;
}
@media only screen and (max-width: 767px) {
    .nn-wakubox {
        margin-bottom: 40px;
    }
    .nn_info h2 {
        font-size: 15px;
        font-weight: 600;
        line-height: 1.7;
    }
    .nn_info .nm_info_box {
        font-size: 13px;
        line-height: 1.7;
        margin-top: 10px;
    }
    .nn_info .nm_info_box .col-xs-12 {
        padding-left: 5px;
        padding-right: 5px;
        margin-top: 5px;
    }
    .cp_qa dd:last-of-type {
        margin-bottom: 0 !important;
    }
}

/*-------------------------------
 * 9. MERGE
 * ----------------------------*/
/* asano
 * ------------------------------*/
.title-badge h2 {
    display: table;
    width: 100%;
    border-collapse:separate;
    border-spacing: 0px 0px;
}
.title-badge .sub-line-badge {
    width: 80px;
    padding: 8px;
    display: table-cell;
    vertical-align: middle;
    background-color: #1c2a52;
    font-size: 12px;
    color: #fff;
    text-align: center;
}

.badge_map {
    background-color: #1c2a52;
    padding: 2px 5px 2px 5px;
}
.badge_map a {
    color: #fff;
    font-size: 10px;
}
.badge_map a:hover {
    text-decoration: none;
}

.attention {
    margin-top: 20px;
    color: red;
    text-align: center;
}

.cruiser_cont {
    margin-top: -35px;
}
.cruiser_cont .btn {
    margin-top: 20px;
    max-width: 100%;
}
.cruiser_cont .btn i {
    font-size: 20px;
    vertical-align: -6%;
}

.cruiser_cont.en dl.dl-list dt {
    width: 40%;
}

.charter-colorbox img {
    width: 100%;
    margin: 10px auto 10px auto;
}

.print_pdf {
    font-size: 12px;
    letter-spacing: 0em;
    margin-left: 10px;
}

.movie_area {
    max-width: 100%;
    margin: 20px auto 0;
}
.movie_access {
    width: 100%;
    margin: 0 auto;
}
.youtube {
    position: relative;
    padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
    height: 0;
    overflow: hidden;
}
.youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    height: 100%;
}
.movie_access .youtube {
    position: relative;
    padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
}
.movie_access .youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cp_qa *, .cp_qa *:after, .cp_qa *:before {
    font-family: 'FontAwesome',"游ゴシック",YuGothic, sans-serif;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.cp_qa dt,.cp_qa dd {
    position: relative;
    padding: 5px;
    box-shadow: 0px 1px 1px rgba(229, 228, 221, 0.2);
    border-radius: 0.3em;
}
.cp_qa dt {
    margin: 0 1em 1em 3em;
    padding: 6px 10px 6px 10px;
    background: #e5e4dd;
}
.cp_qa dd {
    margin: 0 1em 3em 3em;
    background: #f3f4f4;
    padding: 10px 10px 10px 10px;
}
.cp_qa dd p {
    margin: 5px 0 10px 10px;
    line-height: 1.7;
}
.cp_qa dt::before,.cp_qa dd::before{
    position: absolute;
    z-index: 99;
    top: 0.5em;
    display: inline-block;
    width: 0;
    height: 0;
    content: '';
    border-style: solid;
}
.cp_qa dt::before {
    left: -0.5em;
    border-width: 5px 8.7px 5px 0;
    border-color: transparent #e5e4dd transparent transparent;
}
.cp_qa dd::before {
    left: -0.5em;
    border-width: 5px 8.7px 5px 0;
    border-color: transparent #f3f4f4 transparent transparent;
}
.cp_qa dt::after,.cp_qa dd::after {
    font-size: 1.1em;
    position: absolute;
    top: 0;
    color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.2em;
}
.cp_qa dt::after {
    left: -2.4em;
    margin: 0 0.5em 0 0;
    padding: 0.1em 0.3em;
    content: 'Q';
    background: #af914d;
}
.cp_qa dd::after {
    left: -2.4em;
    margin: 0 0.5em 0 0;
    padding: 0.1em 0.4em;
    content: 'A';
    background: #1c2a52;
}

.article-img {
    margin: 20px auto 8px auto;
}
.article-img img {
    width: 100%;
    padding: 0px;
    margin: 0px;
}
.article-img p {
    margin: 10px 0 20px 0;
    padding: 0px;
}
.wscene_menu .imagearea-content > img {
    object-fit: contain !important;
}

.btn-small {
    font-size: 14px;
    max-width: 240px;
    margin: 0px auto 0px 0px;
    padding: 15px 10px;
}

.logo-mv {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.logo-teiki {
    top: 160px;
    left: 70%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);

}
.logo-teiki02 {
    top: 160px;
    left: 80%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);

}
.logo-mv img {
    max-width: 360px;
    margin: auto;
}
.logo-teiki img {
    max-width: 220px;
    margin: auto;
}
.logo-teiki02 img {
    max-width: 220px;
    margin: auto;
}

@media only screen and (max-width: 991px) {
    .cruiser_cont .charter-colorbox {
        margin-bottom: 20px;
    }
    .cruiser_cont dl.dl-list:first-of-type {
        margin-top: 20px;
    }
}
@media only screen and (max-width: 767px) {
    .title-badge .sub-line-badge {
        width: 60px;
        padding: 3px;
        font-size: 10px;
    }
    .attention {
        margin-top: 10px;
        margin-bottom: 20px;
        color: red;
        text-align: center;
        font-size: 12px;
    }
    .cp_qa dt {
        margin: 0 0em 1em 3em;
    }
    .cp_qa dd {
        margin: 0 0em 3em 3em;
    }
    .btn-small {
        margin: 0px auto 0px auto;
    }
    .logo-mv {
        top: 60px;
    }
    .logo-mv img {
        max-width: 160px;
    }
    .logo-teiki {
        top: 70px;
    }
    .logo-teiki img {
        max-width: 100px;
    }
	.logo-teiki02 {
        top: 70px;
    }
    .logo-teiki02 img {
        max-width: 100px;
    }
    .cruiser_cont {
        margin-top: -10px;
    }
    .cruiser_cont .btn i {
        font-size: 18px;
        vertical-align: -8%;
    }
}

/* saito
 * ------------------------------*/
/*--------- Yokohama Cruise - Haneda --------- */
@media screen and (max-width: 767px) {
    table.unko-table th.teikibin {
        font-size: 8px;
    }
}

/*--------- Access - Google Map --------- */
.gmap {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
}
.gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

/*--------- 200805 TOP banner 追加 kuma --------- */
ul.bnr-box {
    width: 800px;
    margin: 0 auto;
}
ul.bnr-box li {
    margin: 30px 0 0;
}
@media only screen and (max-width: 991px) {
    ul.bnr-box {
        width: auto;
        margin: 0 15px;
    }
}
@media only screen and (max-width: 767px) {
    ul.bnr-box {
        width: auto;
        margin: -15px 15px 35px;
    }
    ul.bnr-box li {
        margin-top: 20px;
    }
}

.bnr-box li.two-bnr {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
}
.bnr-box li.two-bnr a {
  width: 49%;
}
.bnr-box li.two-bnr .txt {
    text-align: center !important;
    font-size: 22px;
    font-family: "A1明朝", serif !important;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin: 0 auto 15px;
}
@media only screen and (max-width: 991px) {
    .bnr-box li.two-bnr .txt {
        font-size: 19px;
    }
}
@media screen and (max-width: 767px) {
  .bnr-box li.two-bnr a {
    width: 100%;
    margin-bottom: 20px;
  }
  .bnr-box li.two-bnr a:last-of-type {
    margin-bottom: 0;
  }
  .bnr-box li.two-bnr .txt {
        font-size: 16px;
        letter-spacing: 0;
        margin-bottom: 10px;
    }
}

/*--------- 201225 toggle menu 追加 saito --------- */
.cursor-pointer{cursor: pointer;}

/*--------- 210507 New Normal Business Cruise 追加 kuma --------- */
ul.menu-list.business-cruise li .sub {
    margin: 10px 0 0 !important;
    height: auto;
    padding-bottom: 0;
}
ul.menu-list.business-cruise li strong {
    display: inline-block;
    margin-left: 20px;
    font-weight: 600;
    font-size: 22px !important;
}
@media only screen and (max-width: 1199px) {
    ul.menu-list.business-cruise li strong {
        font-size: 18px !important;
        margin-left: 10px;
    }
}
@media only screen and (max-width: 991px) {
    ul.menu-list.business-cruise li .sub {
        display: block;
    }
    ul.menu-list.business-cruise li strong {
        margin-left: 0;
        margin-top: 5px;
    }
}
@media only screen and (max-width: 767px) {
    ul.menu-list.business-cruise li strong {
        font-size: 15px !important;
    }
}

/*-------------------------------
 * 10. language-nav追加 210730
 * ----------------------------*/
#main-nav {
    right: 227px;
}
@media only screen and (max-width: 1199px) {
    #main-nav {
        right: 200px;
    }
    .navbar-brand {
        width: 65px;
        height: 74px;
        top: 20px !important;
        left: 10px;
    }
    .navbar-brand img {
        width: 65px;
        height: 74px;
    }
    header .bnr-clubbleu {
        right: 10px;
    }
}
@media only screen and (max-width: 991px) {
    .navbar-brand {
        width: 55px;
        height: 63px;
        top: 35px !important;
    }
    .navbar-brand img {
        width: 55px;
        height: 63px;
    }
    header .tel-box {
        right: 180px;
    }
    header .bnr {
        right: 380px;
    }
}
@media only screen and (max-width: 767px) {
    .navbar-brand {
        width: 50px;
        height: 57px;
    }
    .navbar-brand img {
        width: 50px;
        height: 57px;
    }
    header .tel-box {
        right: 130px;
    }
    #main-nav-xs .hamburger {
        margin: 20px 10px;
    }
}
@media only screen and (max-width: 320px) {
    header .tel-box {
        right: 112px;
    }
    header .tel-box .txt {
        font-size: 10px;
    }
    header .tel-box i {
        display: none;
    }
}

.language-nav {
    width: 80px;
    margin: 0;
    position: absolute;
    top: 68px;
    right: 141px;
    z-index: 10;
}
.language-nav ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: flex-start;
    align-content: flex-start;
}
.language-nav ul li {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    padding: 0 0.4rem;
    border-right: 1px solid #009944;
}
.language-nav ul li:last-of-type {
    border-right: none;
}
.language-nav ul li a {
    display: block;
}
.language-nav ul li a:hover {
    text-decoration: none;
}
.language-nav ul li span {
    display: block;
    padding: 0.1rem 0.4rem 0;
}
.language-nav ul li a:hover span,
.language-nav ul li.active span {
    background-color: #2098D1;
    color: #fff;
}
@media only screen and (max-width: 1199px) {
    .language-nav {
        top: 70px;
        right: 125px;
    }
    .language-nav ul li {
        font-size: 13px;
    }
}
@media only screen and (max-width: 991px) {
    .language-nav {
        top: 60px;
        right: 80px;
    }
    .language-nav ul li {
        font-size: 13px;
    }
}
@media only screen and (max-width: 767px) {
    .language-nav {
        width: 100px;
        top: 55px;
        right: 47px;
    }
    .language-nav ul li {
        font-size: 11px;
    }
    .language-nav ul li span {
        padding: 0.1rem 0.3rem;
    }
}
@media only screen and (max-width: 320px) {
    .language-nav {
        top: 57px;
        right: 45px;
    }
    .language-nav ul li {
        font-size: 10px;
    }
    .language-nav ul li span {
        padding: 0 0.2rem;
    }
}


/* 20220601 */
.sub_menu {
    padding-left: 24px;
}

/*-------------------------------
 * 11. header telをmailに変更 220603
 * ----------------------------*/
header .tel-box.mail {
    top: 7px;
    font-size: 13px;
}
header .tel-box.mail .txt {
    text-align: center;
    margin: -28px 0 0 0;
    font-size: 11px;
}
@media (max-width: 991px) {
    header .tel-box.mail {
        top: 52px;
        right: 185px;
        font-size: 12px;
    }
    header .tel-box.mail .txt {
        margin-top: -25px;
    }
}
@media (max-width: 767px) {
    header .tel-box.mail {
        top: 48px;
        right: 135px;
        font-size: 11px;
    }
    header .tel-box.mail .txt {
        margin-top: -22px;
    }
}
@media (max-width: 360px) {
    header .tel-box.mail {
        right: 130px;
    }
}
@media (max-width: 320px) {
    header .tel-box.mail {
        right: 120px;
        font-size: 10px;
    }
    header .tel-box.mail .txt {
        font-size: 10px;
    }
}

/*-------------------------------
 * * 12. ジャングルクルーズslider 220630
 * ----------------------------*/
#cate-main.yokohama-cruise-fact .logo-mv {
    z-index: 10;
}

#cate-main.yokohama-cruise-fact .main-slider {
    display: none;
}
#cate-main.yokohama-cruise-fact .main-slider.slick-initialized {
    display: block;
}
#cate-main.yokohama-cruise-fact .main-slider {
    width: 100%;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
#cate-main.yokohama-cruise-fact .main-slider li {
    width: 100%;
    height: 550px;
    display: block;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}
#cate-main.yokohama-cruise-fact .main-slider li.main02 {
    background-position: center top !important;
}
@media only screen and (min-width: 1450px) {
    #cate-main.yokohama-cruise-fact .main-slider li.main02 {
        background-position: center center !important;
    }
}
@media only screen and (max-width: 1199px) {
    #cate-main.yokohama-cruise-fact .main-slider li.main02 {
        background-position: center center !important;
    }
}
@media only screen and (max-width: 991px) {
    #cate-main.yokohama-cruise-fact .main-slider li {
        height: 450px;
    }
}
@media only screen and (max-width: 767px) {
    #cate-main.yokohama-cruise-fact .main-slider li {
        height: 250px;
    }
    #cate-main.yokohama-cruise-fact .main-slider li.main02 {
        background-position: 30% 50% !important;
    }
    #cate-main.yokohama-cruise-fact .main-slider li.main04 {
        background-position: center bottom !important;
    }
}

#cate-main.yokohama-cruise-fact .main-slider .slide-arrow.prev-arrow,
#cate-main.yokohama-cruise-fact .main-slider .slide-arrow.next-arrow {
    top: 45%;
}

#cate-main.yokohama-cruise-fact .txt {
    display: block;
    position: absolute;
    margin: 0;
    font-size: 25px;
    text-align: center;
    line-height: 1.7;
    font-family: "A1明朝", serif !important;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: #fff;
    background: rgba(175, 145, 77, 0.9);
    /*color: #000;
    background:  rgba(244, 231, 43, 0.75);*/
    padding: 10px 20px;
    border-radius: 10px;
}
#cate-main.yokohama-cruise-fact .txt span {
    font-style: italic;
}
#cate-main.yokohama-cruise-fact .main01 .txt {
    bottom: 67%;
    right: 6%;
}
#cate-main.yokohama-cruise-fact .main02 .txt {
    bottom: 19%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 500px;
}
#cate-main.yokohama-cruise-fact .main03 .txt {
    bottom: 15%;
    right: 7%;
}
#cate-main.yokohama-cruise-fact .main04 .txt {
    bottom: 30%;
    right: 9%;
}
@media only screen and (max-width: 1199px) {
    #cate-main.yokohama-cruise-fact .txt {
        font-size: 22px;
    }
    #cate-main.yokohama-cruise-fact .main01 .txt {
        bottom: 37%;
        left: 50%;
        transform: translateX(-50%);
    }
    #cate-main.yokohama-cruise-fact .main02 .txt {
        bottom: 30%;
    }
}
@media only screen and (max-width: 991px) {
    #cate-main.yokohama-cruise-fact .txt {
        font-size: 16px;
    }
    #cate-main.yokohama-cruise-fact .main01 .txt {
        bottom: 30%;
    }
    #cate-main.yokohama-cruise-fact .main02 .txt {
        bottom: 25%;
    }
}
@media only screen and (max-width: 767px) {
    #cate-main.yokohama-cruise-fact .txt {
        font-size: 13px;
        padding: 5px 5px 6px;
        width: 100%;
        border-radius: 0;
        line-height: 1.55;
        bottom: 0 !important;
        right: 0 !important;
    }
    #cate-main.yokohama-cruise-fact .main02 .txt {
        left: 0 !important;
        transform: translateX(0);
        font-size: 12px;
    }
}
@media only screen and (max-width: 320px) {
    #cate-main.yokohama-cruise-fact .txt {
        font-size: 12px;
    }
    #cate-main.yokohama-cruise-fact .main02 .txt {
        font-size: 11px;
    }
}

/*-------------------------------
 * * 12. ジャングルクルーズ ５つのポイント 220712
 * ----------------------------*/
.point {
	background-color: #af914d;
	padding:10px;
	color:#ffffff;
	font-weight:600;
	margin:0 5px 10px 0;
	border-radius: 40px;
	display:inline-block;
}
.point_b {
	background-color: #1c2a52;
	padding:10px;
	color:#ffffff;
	font-weight:600;
	margin:0 5px 10px 0;
	border-radius: 40px;
	display:inline-block;
}

/*-------------------------------
 * * 13. CTA V2 230919
 * ----------------------------*/
.ctabox_v2 {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 90px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    z-index: 9999;
}
.ctabox_v2 a {
    transition: .3s;
}
.ctabox_v2 a:hover {
    filter: brightness(1.15);
}
.ctabox_v2 img {
    max-width: 100%;
}

@media (max-width: 767px) {
    .ctabox_v2 {
        left: 10px;
        width: 260px;
    }
}

/* 2024.02.01追加 */
.ctabox_v2 img.anime-01 {
    animation: anime-01 8s infinite ease-in-out
}
@keyframes anime-01 {
    0% {
        transform: translate(0px, 0px);
    }
    21% {
        transform: translate(0px, 0px);
    }
    22% {
        transform: translate(0px, 2px);
    }
    23% {
        transform: translate(0px, -2px);
    }
    24% {
        transform: translate(0px, 2px);
    }
    25% {
        transform: translate(0px, -2px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

/*-------------------------------
 * 14. ヘッダー スタッフ募集追加 231024
 * ----------------------------*/
header {
    ---recruit-button-size: 142px;
}
header .recruit-box {
    position: absolute;
    top: 12px;
    right: 20px;
    z-index: 10020 !important;
}
header .recruit-box a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 128px;
    height: 32px;
    border: 1px solid #1c2a52;
    border-radius: 4px;
    font-size: 14px;
}
header .recruit-box a:hover {
    background-color: #1c2a52;
    color: #fff;
    text-decoration: none;
    transition : .8s;
}
header .tel-box {
    right: calc(var(---recruit-button-size) + 20px);
}
header .contact-box {
    right: calc(var(---recruit-button-size) + 220px);
}
@media only screen and (max-width: 991px) {
    header .recruit-box {
        display: none;
    }
}

/*-------------------------------
 * 15. 貸切クルーズ各詳細 コンシェルジュセクション追加 20240123
 * ----------------------------*/
@import url('https://fonts.googleapis.com/css2?family=GFS+Didot&display=swap');

.concierge {
    margin-bottom: clamp(64px, 15.15vw, 120px);
    padding: clamp(24px, 5vw, 40px) clamp(16px, 3vw, 24px);
    background-color: #f0ecdf;
}

.concierge__inner {
    position: relative;
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: clamp(24px, 3.75vw, 32px);
}

.concierge__inner::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    background:
        linear-gradient(90deg, transparent 60px, #947E32 0%) left top / 51% 1px no-repeat,
        linear-gradient(-90deg, transparent 60px, #947E32 0%) right top / 51% 1px no-repeat,

        linear-gradient(90deg, transparent 60px, #947E32 0%) left bottom / 51% 1px no-repeat,
        linear-gradient(-90deg, transparent 60px, #947E32 0%) right bottom / 51% 1px no-repeat,

        linear-gradient(180deg, transparent 60px, #947E32 0%) left top / 1px 51% no-repeat,
        linear-gradient(0deg, transparent 60px, #947E32 0%) left bottom / 1px 51% no-repeat,

        linear-gradient(180deg, transparent 60px, #947E32 0%) right top / 1px 51% no-repeat,
        linear-gradient(0deg, transparent 60px, #947E32 0%) right bottom / 1px 51% no-repeat,

        url(../image/concierge/concierge-line-01.svg) left top / 60px 60px no-repeat,
        url(../image/concierge/concierge-line-02.svg) right top / 60px 60px no-repeat,
        url(../image/concierge/concierge-line-02.svg) left bottom / 60px 60px no-repeat,
        url(../image/concierge/concierge-line-01.svg) right bottom / 60px 60px no-repeat;
}

.concierge__inner::after {
    position: absolute;
    top: 16px;
    right: 16px;
    bottom: 16px;
    left: 16px;
    content: "";
    box-shadow: 0 0 0 1px #947E32;
}

.concierge__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 16px;
    z-index: 2;
    text-align: center;
}

.concierge__content .secthion-header {
    position: relative;
    margin-bottom: clamp(12px, 2.2vw, 24px);
    color: #1C2A52;
}

.concierge__content .secthion-header::before {
    content: "";
    display: block;
    width: 80px;
    height: 100px;
    margin: 24px auto clamp(12px, 2.2vw, 24px);
    background-image: url(../image/concierge/logo.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.concierge__content .secthion-header h2 {
    font-family: 'GFS Didot', serif;
    ;
    font-size: clamp(22px, 4.55vw, 36px);
}

.concierge__content .secthion-header h2::after {
    content: "";
    display: block;
    width: 78px;
    height: 10px;
    margin: clamp(12px, 2.2vw, 24px) auto clamp(12px, 2.8vw, 32px);
    background-image: url(../image/concierge/concierge-line.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.concierge__button {
    position: relative;
    width: 550px;
    height: 64px;
}

.button-03 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #1C2A52;
    font-size: clamp(14px, 2.2vw, 22px);
    color: #f9f8f5;
}

.button-03::before {
    content: "";
    width: 12px;
    height: 12px;
    margin-top: -5px;
    border-top: solid 2px #f9f8f5;
    border-right: solid 2px #f9f8f5;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 30px;
}

.button-03:hover {
    opacity: 0.7;
    color: #f9f8f5;
    text-decoration: none;
    transition: .6s;
}

@media (max-width: 992px) {
    .concierge__outer-border {
        transform: scale(94%, 82%);
    }

    .concierge__inner {
        background-size: cover;
    }

    .concierge__button {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .concierge__outer-border {
        transform: scale(92%, 83%);
    }

    .concierge__content .secthion-header {
        padding-left: 0;
        padding-right: 0;
    }

    .concierge__content {
        margin: 16px 10px;
    }

    .concierge__button {
        width: 90%;
    }
}

@media (max-width: 576px) {
    .concierge__outer-border {
        transform: scale(90%, 86%);
    }

    .concierge__content p {
        text-align: left;
    }

    .concierge__button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .concierge__outer-border {
        transform: scale(88%, 88%);
    }

    .concierge__content .secthion-header::before {
        margin-top: 16px;
    }

    .concierge__button {
        height: 48px;
    }

    .button-03::before {
        border-top: none;
        border-right: none;
    }
}

@media (max-width: 390px) {
    .concierge__outer-border {
        transform: scale(88%, 88%);
    }
}

/*-------------------------------
 * 16. ヘッダーボタンの修正 20241007
 * ----------------------------*/
header .contact-box {
    font-size: 16px;
}
header .contact-box a {
    position: relative;
    width: 200px;
    background: linear-gradient(180deg, #1C2A52 0.37%, #102E84 44.83%, rgba(28, 42, 82, 0.00) 220%);
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.08);
    letter-spacing: 0.3em;
    transition: all 0.3s ease;
}
header .contact-box a:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.12);
    background: linear-gradient(180deg, #243661 0.37%, #1539A3 44.83%, rgba(28, 42, 82, 0.10) 220%);
}
header .contact-box a:nth-child(2) {
    background: linear-gradient(179deg, #6D5D24 0.72%, rgba(109, 93, 36, 0.00) 220%);
}
header .contact-box a:nth-child(2):hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.12);
    background: linear-gradient(179deg, #7E6D2A 0.72%, rgba(126, 109, 42, 0.10) 220%);
}
header .contact-box a::before {
    border: none;
}
header .contact-box a::after {
    content: '';
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 1px;
    left: 1px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 4px;
    pointer-events: none;
}
@media only screen and (max-width: 991px) {
    header .contact-box {
        justify-content: center;
        gap: 2px;
        font-size: 14px;
    }
    header .contact-box a {
        width: calc((100% - 2px) / 2);
        padding: 4px 10px;
    }
}


/*-------------------------------
 * 17. お問いわせフォームの修正 20241007
 * ----------------------------*/
.text-large {
    font-size: 18px;
}
.imageBox {
    position: relative;
    margin-bottom: 40px;
}
.imageBox::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color:#EFF9FE;
    ;
    z-index: -1;
}
.imageBox__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 16px;
    margin-top: 16px;
    padding-bottom: 32px;
}
.imageBox__item {
    position: relative;
    max-width: 180px;
    width: calc((100% - 32px - (16px * 4) / 5));
    padding-bottom: 6px;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
.imageBox__item:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.1);
}
.imageBox__item a {
    display: block;
    overflow: hidden;
}
.imageBox__item a:hover {
    text-decoration: none;
}
.imageBox__item img {
    width: 100%;
    transition: all 0.3s ease;
}
.imageBox__item:hover img {
    opacity: 0.9;
}
.imageBox__item span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    padding: 4px;
    background: #fff;
    font-size: clamp(11px, 0.6vw + 10.8px, 14px);
    line-height: 1.3;
    text-align: center;
}

.conciergeBox {
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 24px;
    border: 2px dashed #6D5D24;
    border-radius: 4px;
    text-align: center;
}
.conciergeBox p {
    font-size: 16px;
}
.conciergeBox p > span {
    font-weight: bold;
}
.conciergeBox__btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    width: 380px;
    height: 64px;
    margin: 0 auto;
    background: linear-gradient(179deg, #6D5D24 0.72%, rgba(109, 93, 36, 0.00) 220%);
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.08);
    font-size: 18px;
    color: #fff;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}
.conciergeBox__btn:hover {
    text-decoration: none;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.12);
    background: linear-gradient(179deg, #7E6D2A 0.72%, rgba(126, 109, 42, 0.10) 220%);
}
.conciergeBox__btn::after {
    content: '';
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 1px;
    left: 1px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 4px;
    pointer-events: none;
}

.sub-bg {
    background-color: #1c2a52;
}
.btn-submit:hover {
    background-color: #2e4ea9;
}
.btn-submit {
    background: #1c2a52;
}
@media (max-width: 767px) {
    .text-large {
        font-size: 16px;
    }
    .imageBox__list {
        flex-wrap: wrap;
    }
    .imageBox__item {
        max-width: 100px;
    }

    .conciergeBox__btn {
        font-size: 16px;
    }

    .imageBox__item {
        padding-bottom: 0;
    }
    .imageBox__item span {
        display: none;
    }

    .conciergeBox {
        padding: 24px 16px;
    }
}