@charset "UTF-8";
/*//////////////////////////////////////////////////////

STYLE

//////////////////////////////////////////////////////*/
/*------------------------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Noto+Serif:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700");
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700");
@import url("https://fonts.googleapis.com/css?family=Lato:300,400,700,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Oswald:300,400,500,600&display=swap");
/*------------------------------------------------------------------------------------------*/
/*////////////////////////////////////////////////////////////////////////////

base scss

////////////////////////////////////////////////////////////////////////////*/
html.wrap-overflow, body.wrap-overflow {
  overflow-x: auto;
}

html.wrap-overflow #header-section,
html.wrap-overflow #project-main,
html.wrap-overflow #mobile-menu,
html.wrap-overflow #footer-section,
body.wrap-overflow #header-section,
body.wrap-overflow #project-main,
body.wrap-overflow #mobile-menu,
body.wrap-overflow #footer-section {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-overflow-scrolling: touch;
}

* {
  margin: 0;
  padding: 0;
}
*::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background: #fff;
  margin: 0;
  line-height: 24px;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media screen and (max-width: 479px) {
  body {
    font-size: 13px;
    line-height: 1.5;
  }
}

html {
  -webkit-overflow-scrolling: touch;
}

::selection,
::-webkit-selection,
::-moz-selection {
  color: #fff;
  text-shadow: none;
  background: #03A9F4;
}

a {
  color: #2355a5;
  text-decoration: none;
  padding: 0;
  margin: 0;
  -webkit-transition: background-color .4s linear, color .4s linear;
  -moz-transition: background-color .4s linear, color .4s linear;
  -o-transition: background-color .4s linear, color .4s linear;
  -ms-transition: background-color .4s linear, color .4s linear;
  transition: background-color .4s linear, color .4s linear;
}
a:hover, a:focus {
  color: #03A9F4;
  -webkit-transition: all 700ms ease 0s;
  transition: all 700ms ease 0s;
  text-decoration: none;
  outline: none;
}

img {
  height: auto;
  max-width: 100%;
}

a img {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a img:hover {
  filter: brightness(60%) saturate(1);
  -webkit-filter: brightness(60%) saturate(1);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a.bright:hover img {
  filter: brightness(60%) saturate(1);
  -webkit-filter: brightness(60%) saturate(1);
}

a[href^="tel:"] {
  cursor: default;
}
a[href^="tel:"] img:hover {
  filter: none;
}

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

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: block;
  clear: both;
}

.centered {
  text-align: center;
}

div#preloader {
  overflow: hidden;
  background-color: #fff;
  background-image: url(../img/core/loading.gif);
  background-repeat: no-repeat;
  background-position: center center;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999999999;
}

.owl-thumbs {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  text-align: center;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.owl-carusel-item {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 5px;
  overflow: hidden;
}

.owl-thumbs div {
  margin-bottom: 5px;
}

.owl-carousel {
  overflow: hidden;
}

.owl-dot {
  background-color: #999;
  display: inline-block;
  height: 8px;
  margin: 0 5px;
  position: relative;
  width: 8px;
  z-index: 1;
  border-radius: 50%;
}

.owl-dots {
  text-align: center;
}

.owl-dot.active {
  background-color: #03A9F4;
  height: 10px;
  width: 10px;
}

.owl-dot.active:before {
  border: 1px solid #03A9F4;
  content: "";
  height: 16px;
  left: -3px;
  position: absolute;
  top: -3px;
  width: 16px;
  z-index: 9;
  border-radius: 50%;
}

.fade-in {
  animation-name: fade-in1;
  animation-duration: 4s;
  animation-timing-function: ease-out;
  animation-delay: 1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*////////////////////////////////////////////////////////////////////////////

typography scss

////////////////////////////////////////////////////////////////////////////*/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin: 0;
  padding: 0;
  font-weight: 300;
  line-height: 1;
  color: inherit;
}

h1, .h1 {
  font-size: 30px;
  line-height: 42px;
}

h2 {
  font-size: 24px;
}

h3, .h3 {
  font-size: 20px;
  line-height: 32px;
}

h4, .h4 {
  font-size: 16px;
  line-height: 28px;
}

h5, .h5 {
  font-size: 16px;
  line-height: 24px;
  color: #333;
  font-weight: bold;
}

h6, .h6 {
  font-size: 12px;
  line-height: 24px;
}

p {
  padding: 0;
  line-height: 1.8;
  font-size: 14px;
}

blockquote p {
  font-size: 14px;
}

.p-serif {
  font-family: "Noto Serif", serif !important;
  font-weight: 400;
}

.p-serif-noto {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: normal;
}

.p-sans-serif {
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: normal;
}

.p-open-sans {
  font-family: "Open Sans", sans-serif !important;
}

.p-roboto {
  font-family: "Roboto", sans-serif !important;
}

.p-lato {
  font-family: "Lato", sans-serif !important;
}

.p-lead {
  font-size: 16px;
}

@media screen and (max-width: 479px) {
  .p-left {
    text-align: left !important;
  }
}

.p-letter-spacing {
  letter-spacing: 1px;
}

.p-no-margin-bottom {
  margin-bottom: 0 !important;
}

.p-first:first-letter {
  font-family: inherit;
  margin-right: 0;
  font-size: 1.3em;
  font-weight: 400;
}
@media screen and (max-width: 479px) {
  .p-first:first-letter {
    font-size: 1.4em;
  }
}

.p-white {
  color: #FFF !important;
}

.p-mid-blue {
  color: #278CAC !important;
}

.p-marine {
  color: #434da2 !important;
}

.p-red {
  color: #e8383d !important;
}

.p-green {
  color: #016A6B !important;
}

.p-gray {
  color: #444 !important;
}

.p-pink {
  color: #D44F76 !important;
}

.p-red-warning {
  color: #e8383d !important;
}
.p-red-warning::before {
  font-family: 'FontAwesome';
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f071";
  margin-right: 5px;
}

.p-weight500 {
  font-weight: 500;
}

.p-weight700 {
  font-weight: 700;
}

.text-85 {
  font-size: 85% !important;
}

.text-90 {
  font-size: 90% !important;
}

.text-110 {
  font-size: 110% !important;
}

.text-120 {
  font-size: 120% !important;
}

.text-130 {
  font-size: 130% !important;
}

.text-140 {
  font-size: 140% !important;
}

.text-150 {
  font-size: 150% !important;
}

.text-p20 {
  font-size: 20px !important;
}

.text-p24 {
  font-size: 24px !important;
}

.text-p30 {
  font-size: 30px !important;
}

.text-p40 {
  font-size: 40px !important;
}

.text-shadow {
  text-shadow: 0 0 10px #333;
}

.text-shadow-w {
  text-shadow: 0px 0px 1px #FFF;
}

ul, ol {
  margin: 0;
  padding: 0;
}
ul li, ol li {
  margin: 0;
  padding: 0;
}

ul.list-disc li {
  margin-left: 1.5em;
  line-height: 1.8;
  list-style: disc;
}

ul.list-inline {
  padding: 0;
}
ul.list-inline li {
  padding-right: 0px;
}

ol.list-num li, ol.list-alpha li {
  margin-left: 1.5em;
  margin-bottom: 1em;
  line-height: 1.8;
}

ol.list-num li {
  list-style: decimal;
}

ol.list-alpha li {
  list-style: lower-alpha;
}

@media screen and (max-width: 479px) {
  ul.list-disc li,
  ol.list-num li,
  ol.list-alpha li {
    line-height: 1.6;
  }
}
ol.list-decimal {
  margin-left: 20px;
}
ol.list-decimal li {
  list-style: decimal;
  margin-left: 0;
  margin-bottom: 10px;
}

.icon-map,
.icon-facebook,
.icon-access {
  font-family: "Open Sans", sans-serif;
}
.icon-map::before,
.icon-facebook::before,
.icon-access::before {
  font-family: 'icofont';
  font-size: 1.2em;
  line-height: 1;
  padding-right: 2px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-map::before {
  content: "\ed42";
}

.icon-facebook::before {
  content: "\ed37";
}

.icon-access::before {
  content: "\ee1e";
}

.h-border {
  width: 60px;
  height: 3px;
  background: rgba(0, 0, 0, 0.3);
  margin-left: -30px;
  left: 50%;
  bottom: 0;
  position: absolute;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .h-border {
    margin-bottom: -10px;
  }
}
@media screen and (max-width: 479px) {
  .h-border {
    margin-bottom: -10px;
  }
}
.col-border {
  border: solid 1px rgba(0, 0, 0, 0.2);
}

h2.h2-title {
  font-size: 30px;
  font-weight: bold;
  color: #444;
  letter-spacing: 2px;
}

@media screen and (max-width: 479px) {
  h2.h2-title {
    font-size: 22px;
    letter-spacing: 0px;
  }
}
.h2-line {
  font-size: 24px;
  position: relative;
  border-bottom: 4px solid #ccc;
  letter-spacing: 1px;
  font-weight: bold;
  padding: 0;
  margin-bottom: 20px;
}
.h2-line::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  z-index: 2;
  content: '';
  width: 20%;
  height: 4px;
  background-color: #ED6F1F;
}
.h2-line span {
  font-size: 75%;
  font-weight: normal;
  margin-left: 10px;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: 0;
}

.h3-line, .h3-line-left {
  font-size: 24px;
  font-weight: 500;
  position: relative;
  border-bottom: 3px solid #DDD;
  color: #111;
  letter-spacing: 1px;
}
@media screen and (max-width: 479px) {
  .h3-line, .h3-line-left {
    font-size: 16px !important;
    letter-spacing: 0px;
    padding-bottom: .1em;
  }
}
.h3-line::after, .h3-line-left::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: 2;
  content: '';
  width: 10%;
  height: 3px;
  background-color: #333;
}

.h3-line-left::after {
  width: 20%;
}

.h3-first:first-letter {
  font-family: "Roboto", sans-serif;
  margin-right: 0em;
  font-size: 1.5em;
}
@media screen and (max-width: 479px) {
  .h3-first:first-letter {
    font-size: 1.4em;
  }
}

.h3-line span {
  font-size: .8em;
}

.h4-line {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  border-bottom: 3px solid #BFBFBF;
  margin-bottom: 20px;
}

.h4-line:after {
  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: 2;
  content: '';
  width: 20%;
  height: 3px;
  background-color: #606060;
}

.h3-left-cross {
  font-size: 20px !important;
  text-align: center;
  position: relative;
  padding: 0.25em 1em;
  border-top: solid 1px #444;
  border-bottom: solid 1px #444;
}
.h3-left-cross::before, .h3-left-cross::after {
  content: '';
  position: absolute;
  top: -7px;
  width: 1px;
  height: -webkit-calc(100% + 14px);
  height: calc(100% + 14px);
  background-color: #444;
}
.h3-left-cross::before {
  left: 7px;
}
.h3-left-cross::after {
  right: 7px;
}

.h-line {
  position: relative;
  padding-bottom: .3em;
  border-bottom: 2px solid #BFBFBF;
}

.h-line:after {
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 2;
  content: '';
  width: 20%;
  height: 2px;
  background-color: #606060;
}

.has-lines {
  font-weight: 400;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 25px;
}

.has-lines:before,
.has-lines:after {
  content: '';
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 1px;
  background: #aaaab0;
  min-width: 20px;
  display: inline-block;
  vertical-align: middle;
}

.has-lines:before {
  margin-right: 8px;
}

.has-lines:after {
  margin-left: 8px;
}

@media screen and (max-width: 479px) {
  .has-lines:before,
  .has-lines:after {
    margin-right: 0px;
    margin-left: 0px;
  }
}
.has-headding {
  margin: 0 auto;
  padding: 10px 0;
  font-family: sans-serif;
  font-size: 20px;
}
.has-headding .has-line-short {
  color: #222;
  text-align: center;
  overflow: hidden;
  margin: 10px 0;
}
.has-headding .has-line-short span {
  display: inline-block;
  position: relative;
}

.has-headding .has-line-short span::before, .has-headding .has-line-short span::after {
  content: "";
  border-bottom: 2px solid #666;
  width: 50px;
  margin: 0 10px;
  position: absolute;
  bottom: 13px;
}
.has-headding .has-line-short span::before {
  right: 100%;
}
.has-headding .has-line-short span::after {
  left: 100%;
}

.has-fade {
  color: #333;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 10px;
}
.has-fade::before, .has-fade::after {
  content: '';
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 1px;
  background: #7d7b83;
  min-width: 20px;
  display: inline-block;
  vertical-align: middle;
}

.has-fade::before {
  margin-right: 15px;
  background: -webkit-linear-gradient(-45deg, transparent, #ccc 10%, #ccc 90%, transparent);
  background: linear-gradient(-45deg, transparent, #999 10%, #ccc 90%, transparent);
}

.has-fade::after {
  margin-left: 15px;
  background: -webkit-linear-gradient(-45deg, transparent, #ccc 10%, #ccc 90%, transparent);
  background: linear-gradient(-45deg, transparent, #ccc 10%, #999 90%, transparent);
}

@media screen and (max-width: 479px) {
  .has-fade {
    display: block;
  }

  .has-fade::before,
  .has-fade::after {
    margin-right: 0px;
    display: none;
  }
}
.has-lines-left {
  margin-bottom: 20px;
  font-weight: bold;
}

.has-lines-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.has-lines-left::after {
  content: '';
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 1px;
  min-width: 20px;
  display: inline-block;
  vertical-align: middle;
  background: -webkit-linear-gradient(left, #818078, transparent);
  background: linear-gradient(to right, #818078, transparent);
}

.has-lines-left::after {
  margin-left: 15px;
}

@media screen and (max-width: 479px) {
  .has-lines-left {
    font-size: 100%;
    display: block;
  }

  .hhas-lines-left::after {
    margin-right: 0px;
    display: none;
    background: none;
  }
}
.has-oblic {
  margin: 20px 0px;
  font-weight: bold;
}
@media screen and (max-width: 479px) {
  .has-oblic {
    font-size: 100%;
  }
}

.has-oblic {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.has-oblic::after {
  content: '';
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 6px;
  min-width: 20px;
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
  background: url(../img/core/hr-oblic.png) repeat-x 0 0;
}
@media screen and (max-width: 479px) {
  .has-oblic::after {
    margin-right: 0px;
    display: none;
  }
}

/*////////////////////////////////////////////////////////////////////////////

property scss

////////////////////////////////////////////////////////////////////////////*/
.clr,
.clear {
  clear: both;
  display: block;
  font-size: 0;
  height: 0;
  line-height: 0;
  width: 100%;
}

.p-spacer {
  clear: both;
  position: relative;
  border: none;
  padding: 0;
  margin: 0;
}

.p-spacer-xlg {
  height: 150px;
}

.p-spacer-lg {
  height: 100px;
}

.p-spacer-md {
  height: 80px;
}

.p-spacer-sm {
  height: 50px;
}

.p-spacer-xs {
  height: 30px;
}

.p-spacer-xxs {
  height: 15px;
}

.spacer-s {
  height: 10px;
}

@media screen and (max-width: 479px) {
  .p-spacer-xlg {
    height: 70px;
  }

  .p-spacer-lg {
    height: 60px;
  }

  .p-spacer-md {
    height: 50px;
  }

  .p-spacer-sm {
    height: 30px;
  }

  .p-spacer-xs {
    height: 20px;
  }

  .p-spacer-xxs {
    height: 10px;
  }

  .spacer-s {
    height: 5px;
  }
}
.flexiblebox {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid rgba(92, 63, 62, 0.2);
}

hr.hr-white {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

hr.space10,
hr.space20,
hr.space30 {
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-top: 1px dotted #ccc;
}

hr.space10 {
  margin-top: 10px;
  margin-bottom: 30px;
}

hr.space20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

hr.space30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

hr.hr-dot {
  border: 0;
  border-top: thick dotted #5DABBF;
  margin: 25px 0;
  display: block;
  float: none;
  clear: both;
}

@media screen and (max-width: 479px) {
  hr.hr-dot {
    margin: 20px;
  }
}
.well-amber {
  margin-bottom: 20px;
  background: #FFF9F5;
  border: 1px solid #E6C0C0;
  padding: 12px 20px 5px;
  border-radius: 4px;
}

@media screen and (max-width: 479px) {
  .well-amber {
    padding: 10px 5px 5px;
  }
}
.well-amber h4 {
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 20px;
}

.nopadding {
  padding: 0px !important;
  margin: 0px !important;
}

.row--nopadding {
  margin-left: 0;
  margin-right: 0;
}

.row--nopadding > [class*="col-"] {
  padding-left: 0 !Important;
  padding-right: 0 !Important;
}

.row--padding {
  padding-left: 5px !Important;
  padding-right: 5px !Important;
}
@media screen and (max-width: 479px) {
  .row--padding {
    padding-left: 5px !Important;
    padding-right: 5px !Important;
  }
}

.row--padding > [class*="col-"] {
  padding-left: 5px !Important;
  padding-right: 5px !Important;
}

.row--m05 {
  margin-left: 0;
  margin-right: 0;
}
.row--m05 > [class*="col-"] {
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 10px;
}

.row--m10 {
  margin-left: 0;
  margin-right: 0;
}
@media screen and (max-width: 479px) {
  .row--m10 {
    margin-left: 0;
    margin-right: 0;
  }
}
.row--m10 > [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 15px;
}
@media screen and (max-width: 479px) {
  .row--m10 > [class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
  }
}

.md-nopadding {
  padding: 0px !important;
}
@media screen and (max-width: 479px) {
  .md-nopadding {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

.md-padding {
  padding-left: 5px !important;
  padding-right: 5px !important;
  padding-bottom: 10px;
}
@media screen and (max-width: 479px) {
  .md-padding {
    padding: 2px !important;
  }
}

.sm-padding {
  padding-left: 5px !important;
  padding-right: 5px !important;
  padding-bottom: 10px;
}
@media screen and (max-width: 479px) {
  .sm-padding {
    padding: 5px !important;
  }
}

@media screen and (max-width: 479px) {
  .xs-nopadding {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}

.mt {
  margin-top: 50px;
}

.mb {
  margin-bottom: 50px;
}

.mtb {
  margin-top: 50px;
  margin-bottom: 50px;
}

.mtb20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mtb30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.mtb50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.mA10 {
  margin: 10px;
}

.mT0 {
  margin-top: 0px !important;
}

.mT10 {
  margin-top: 10px;
}

.mT20 {
  margin-top: 20px;
}

.mT30 {
  margin-top: 30px;
}

.mT40 {
  margin-top: 40px;
}

.mT50 {
  margin-top: 50px;
}

.mB0 {
  margin-bottom: 0px !important;
}

.mB10 {
  margin-bottom: 10px !important;
}

.mB15 {
  margin-bottom: 15px !important;
}

.mB20 {
  margin-bottom: 20px;
}

.mR10 {
  margin-right: 10px;
}

.mR15 {
  margin-right: 15px;
}

.mR20 {
  margin-right: 20px;
}

.mL10 {
  margin-left: 10px;
}

.mL15 {
  margin-left: 15px;
}

.mL20 {
  margin-left: 20px;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.shadow-box {
  -webkit-box-shadow: 0px 2px 10px -1px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 2px 10px -1px rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0px 2px 10px -1px rgba(0, 0, 0, 0.3);
  -o-box-shadow: 0px 2px 10px -1px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 10px -1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}

.sp-hide {
  display: block !important;
}

@media only screen and (min-width: 320px) {
  .sp-hide {
    display: none !important;
  }
}
@media only screen and (min-width: 480px) {
  .sp-hide {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .pc-hide {
    display: none !important;
  }

  .sp-hide {
    display: block !important;
  }
}
/* ////////////////////////////////////////////////////////////////////////////

section scss

//////////////////////////////////////////////////////////////////////////// */
.section-divider {
  z-index: 999;
  width: 100%;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 25px;
  padding-bottom: 25px;
  background-position: center center;
  -webkit-background-size: 100% cover;
  -moz-background-size: 100% cover;
  -o-background-size: 100% cover;
  background-size: 100% cover;
  background-attachment: relative;
  overflow: hidden;
}
@media screen and (max-width: 479px) {
  .section-divider {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.section-divider.padding-sm {
  padding-bottom: 30px;
  padding-top: 30px;
}
.section-divider.padding-xs {
  padding-bottom: 15px;
  padding-top: 15px;
}
.section-divider.padding-title {
  padding-bottom: 0;
}
@media screen and (max-width: 479px) {
  .section-divider.padding-title {
    margin-top: 40px;
  }
}

.section-divider-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 479px) {
  .section-divider-50 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 479px) {
  .section-divider.padding-sm {
    padding-bottom: 20px;
    padding-top: 30px;
  }
}
.section-divider-head {
  z-index: 999;
  width: 100%;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 0px;
  padding-bottom: 30px;
  background-position: center center;
  -webkit-background-size: 100% cover;
  -moz-background-size: 100% cover;
  -o-background-size: 100% cover;
  background-size: 100% cover;
  background-attachment: relative;
  overflow: hidden;
}

.bg {
  width: 100%;
  -webkit-background-size: 100% cover;
  -moz-background-size: 100% cover;
  -o-background-size: 100% cover;
  background-size: 100% cover;
  overflow: hidden;
}

.bg-blue {
  background: #e0efff;
  color: #000;
}

.bg-blue1 {
  background: #82cddd;
}

.bg-gray {
  background-color: #f4f5f7;
}

.bg-b-gray {
  background: #f6f9fc;
}

.bg-gray2 {
  background: #EEEFF1;
  padding-bottom: 0px;
  padding-top: 0px;
  color: #000;
}

.bg-white {
  background: #FFFFFF;
}

.bg-overlay-white {
  background: rgba(255, 255, 255, 0.8);
  color: #000;
}

.bg-overlay-navy {
  background: rgba(35, 41, 57, 0.8);
}

/*////////////////////////////////////////////////////////////////////////////

main_menu scss

////////////////////////////////////////////////////////////////////////////*/
body.mobile-menu-visible #project-main, body.mobile-menu-visible #main-logo-mobile-wrap {
  -moz-transform: translateX(275px);
  -webkit-transform: translateX(275px);
  -ms-transform: translateX(275px);
  transform: translateX(275px);
}
body.mobile-menu-visible #mobile-menu {
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

#header-section {
  width: 100%;
  padding: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: fixed;
  top: 0;
  left: 0 !important;
  right: 0;
  z-index: 103;
  background-color: rgba(255, 255, 255, 0);
}

#main-logo {
  margin: 10px 0 5px 20px;
  padding: 0;
  width: 120px;
}
@media screen and (max-width: 768px) {
  #main-logo {
    text-align: center;
    margin: 0px auto 0;
    float: none !important;
  }
}
@media screen and (max-width: 479px) {
  #main-logo img {
    width: 160px;
    height: auto;
  }
}

#main-logo img {
  -webkit-filter: grayscale(1) invert(100%);
  -moz-filter: grayscale(1) invert(100%);
  -o-filter: grayscale(1) invert(100%);
  -ms-filter: grayscale(1) invert(100%);
  filter: grayscale(1) invert(100%);
}
@media all and (-ms-high-contrast: none) {
  #main-logo img {
    background: rgba(255, 255, 255, 0.8);
  }
}

#header-section.p-scrolled #main-logo img {
  -webkit-filter: invert(0%);
  -moz-filter: invert(0%);
  -o-filter: invert(0%);
  -ms-filter: invert(0%);
  filter: invert(0%);
}
@media all and (-ms-high-contrast: none) {
  #header-section.p-scrolled #main-logo img {
    background: rgba(255, 255, 255, 0);
  }
}

#header-section #p-menu-wrap .sf-menu a {
  color: #EEE;
}
#header-section #p-menu-wrap .sf-menu a.active {
  color: #999;
  font-weight: 500;
}

#header-section.p-scrolled {
  padding: 0;
  background: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0 0.125em 0.125em 0 rgba(0, 0, 0, 0.125);
  -moz-box-shadow: 0 0.125em 0.125em 0 rgba(0, 0, 0, 0.125);
  -ms-box-shadow: 0 0.125em 0.125em 0 rgba(0, 0, 0, 0.125);
  -o-box-shadow: 0 0.125em 0.125em 0 rgba(0, 0, 0, 0.125);
  box-shadow: 0 0.125em 0.125em 0 rgba(0, 0, 0, 0.125);
  position: fixed;
  top: 0;
}

#header-section.p-scrolled #p-menu-wrap .sf-menu a {
  color: #2e2e2e;
  border-bottom: none !important;
}
#header-section.p-scrolled #p-menu-wrap .sf-menu a.active {
  color: #999;
}

#header-section.p-scrolled .top-header-area {
  display: none;
}

#header-section #p-menu-wrap .sf-menu a:hover,
#header-section.p-scrolled #p-menu-wrap .sf-menu a:hover {
  color: #03A9F4 !important;
  background-color: inherit;
}

#header-section.p-scrolled #p-menu-wrap .sf-menu li.active > a {
  color: #03A9F4;
}

#header-section.p-scrolled #p-menu-wrap > .sf-menu > li > a {
  padding-top: 2em;
  padding-bottom: 2em;
}

#header-section #p-menu-wrap .sf-menu li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #03A9F4;
}
#header-section #p-menu-wrap .sf-menu li:hover::before {
  width: 100%;
  margin: auto;
  left: 0;
}

#header-section #p-menu-wrap li a,
#header-section #p-menu-wrap li::before {
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
}

#header-section #p-menu-wrap .btn-head {
  color: white !important;
  background-color: #00608d;
  margin-bottom: 0;
  margin-right: 0;
  border-radius: 0px;
  padding-left: 12px !important;
  padding-right: 12px !important;
}
#header-section #p-menu-wrap .btn-head:hover {
  color: #FFF !important;
  background-color: #03A9F4;
  text-decoration: none !important;
}

#header-section #p-menu-wrap .btn-head::before {
  font-family: 'icofont';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\ef14";
}

/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
.sf-menu {
  margin: 0 25px 0 0;
  float: right;
}

.sf-menu ul {
  box-shadow: none;
  border: transparent;
  min-width: 8em;
}

.sf-menu a {
  color: white;
  padding: 5px 10px;
  letter-spacing: 1px;
  border-left: none;
  border-top: none;
  text-decoration: none;
  zoom: 1;
  font-size: 13px;
  border-bottom: none !important;
}

.sf-menu li, .sf-menu ul li, .sf-menu ul ul li, .sf-menu li:hover, .sf-menu li.sfHover {
  background: transparent;
}

.sf-menu ul li a, .sf-menu ul ul li a {
  text-transform: none;
  padding: .75em 1.5em;
  letter-spacing: 1px;
}

.sf-menu li:hover a, .sf-menu li.sfHover a, .sf-menu ul li:hover a, .sf-menu ul li.sfHover a, .sf-menu li.active a {
  color: #28bbf8;
}

.sf-menu ul li:hover, .sf-menu ul li.sfHover {
  background: transparent;
}

.sf-menu ul li {
  background: transparent;
}

.sf-menu li.home {
  display: none;
}

#p-menu-wrap .sf-menu a {
  padding: 2.5em 1.2em;
}

#p-primary-menu > li.active > a {
  background: rgba(0, 0, 0, 0.2);
}

#p-primary-menu > li > ul li.active > a {
  color: #FC4887 !important;
}

#p-primary-menu .p-sub-menu a:hover {
  color: #FC4887 !important;
}

#p-primary-menu > li > .sf-with-ul::after {
  border: none !important;
  font-family: 'icofont';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  float: right;
  margin-right: 0px;
  top: 50%;
  margin-top: -7px;
  content: "\eac8";
  color: rgba(255, 255, 255, 0.7);
}

#p-primary-menu > li > ul li > .sf-with-ul::after {
  border: none !important;
  font-family: 'themify';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  float: right;
  margin-right: 10px;
  top: 13px;
  font-size: 12px;
  content: "\e649";
  color: rgba(255, 255, 255, 0.3);
}

#p-primary-menu .p-sub-menu {
  padding: 7px 0 3px;
  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

#p-primary-menu .p-sub-menu:before {
  position: absolute;
  top: -9px;
  right: 20px;
  width: 0;
  height: 0;
  content: '';
}

#p-primary-menu .p-sub-menu:after {
  position: absolute;
  top: -8px;
  right: 21px;
  width: 0;
  height: 0;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #28bbf8;
  border-bottom: 8px solid rgba(0, 0, 0, 0.8);
  border-left: 8px solid transparent;
  content: '';
}

#p-primary-menu .p-sub-menu .p-sub-menu:before {
  top: 6px;
  right: 100%;
}

#p-primary-menu .p-sub-menu .p-sub-menu:after {
  top: 7px;
  right: 100%;
  border: none !important;
}

.site-header.has-image #primary-menu .sub-menu {
  border-color: #ebebeb;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.19);
}

.site-header.has-image #primary-menu .sub-menu:before {
  display: none;
}

#p-primary-menu .p-sub-menu a {
  letter-spacing: 0;
  padding: 0 15px;
  font-size: 14px;
  line-height: 26px;
  color: #ffffff !important;
  text-transform: none;
  background: none;
}

#mobile-menu-btn {
  padding: 0 10px;
  z-index: 1001;
  position: absolute;
  top: 0;
  left: 0;
  background: #43407A;
  height: 44px;
  display: table;
}

#mobile-menu-btn i {
  line-height: 25px;
  display: table-cell;
  vertical-align: middle;
  font-size: 22px;
  color: #fff;
}

#mobile-menu {
  -moz-transform: translateX(-275px);
  -webkit-transform: translateX(-275px);
  -ms-transform: translateX(-275px);
  transform: translateX(-275px);
  display: block;
  height: 100%;
  left: 0;
  overflow-y: auto;
  position: fixed;
  top: 0;
  width: 275px;
  z-index: 10002;
  background: #232939;
  padding: 0.75em 1.25em;
}

#mobile-menu #mobile-menu-ul {
  padding: 0;
  margin: 0;
}

#mobile-menu #mobile-menu-ul li {
  text-align: left !important;
  list-style: none;
}

#mobile-menu #mobile-menu-ul li.active > a {
  color: white;
}

#mobile-menu #mobile-menu-ul a {
  padding: 10px 0;
  display: block;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
}
#mobile-menu #mobile-menu-ul a::after {
  font-family: 'icofont';
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\eaa0";
  float: right;
}

#mobile-menu #mobile-menu-ul a:hover {
  color: #FFF;
}

#mobile-menu #mobile-menu-ul .btn {
  padding-left: 0 !important;
  text-align: left;
}

#main-logo-mobile-wrap {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  height: 44px;
  left: 0;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 10001;
  background: white;
  color: #2e2e2e;
  -webkit-box-shadow: 0 0.125em 0.125em 0 rgba(0, 0, 0, 0.125);
  -moz-box-shadow: 0 0.125em 0.125em 0 rgba(0, 0, 0, 0.125);
  -ms-box-shadow: 0 0.125em 0.125em 0 rgba(0, 0, 0, 0.125);
  -o-box-shadow: 0 0.125em 0.125em 0 rgba(0, 0, 0, 0.125);
  box-shadow: 0 0.125em 0.125em 0 rgba(0, 0, 0, 0.125);
}

#main-logo-mobile-wrap h1 {
  padding: 0;
  margin: 0;
}
#main-logo-mobile-wrap h1 img {
  height: 35px;
}

/*////////////////////////////////////////////////////////////////////////////

header scss

////////////////////////////////////////////////////////////////////////////*/
.top-header-area {
  background-color: #012438;
  height: 40px;
  width: 100%;
  color: #fff;
  text-align: right;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 959px) {
  .top-header-area {
    display: none;
  }
}

.top-header-bar {
  display: inline-block;
  vertical-align: middle;
  padding-right: 15px;
}

.top-header-bar .btn-rsv {
  color: white;
  background: #0bbff2;
  padding: 10px 20px;
  margin-bottom: 0;
  letter-spacing: 1px;
  height: 40px;
}

.top-header-area a {
  color: #fff;
}

.header-vsl {
  width: 100%;
  background-size: cover;
  position: relative;
  background-position: center 100%;
  z-index: 1;
}
.header-vsl::after {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  background-color: rgba(35, 41, 57, 0.5);
}

.header-vsl {
  background-position: center center;
}
.header-vsl.type--01 {
  background-image: url(../img/bg/bg_type01.jpg);
}
.header-vsl.type--news {
  background-image: url(../img/bg/bg_type01.jpg);
}
.header-vsl.type--contact {
  background-image: url(../img/bg/bg_type01.jpg);
  background-position: center 90%;
}
.header-vsl.type--contact::after {
  background-color: rgba(35, 41, 57, 0.6);
}
.header-vsl.type--hotel {
  background-image: url(../img/bg/head_hotel.jpg);
}
.header-vsl.type--room {
  background-image: url(../img/bg/head_room.jpg);
}
.header-vsl.type--room::after {
  background-color: rgba(35, 41, 57, 0.6);
}
.header-vsl.type--rest {
  background-image: url(../img/bg/head_rest.jpg);
}
.header-vsl.type--rest::after {
  background-color: rgba(35, 41, 57, 0.6);
}
.header-vsl.type--access {
  background-image: url(../img/bg/head_access.jpg);
}
.header-vsl.type--access::after {
  background-color: rgba(35, 41, 57, 0.6);
}
.header-vsl.type--tourism {
  background-image: url(../img/bg/head_tourism.jpg);
}
.header-vsl.type--event {
  background-image: url(../img/bg/head_tourism2.jpg);
}
.header-vsl.type--course {
  background-image: url(../img/bg/head_course.jpg);
  background-position: center 30%;
}
.header-vsl.type--lobby {
  background-image: url("../img/bg/head_lobby.jpg");
}
.header-vsl.type--eco {
  background-image: url("../img/bg/hd_eco.jpg");
  background-position: center;
}

.header-vsl-section {
  position: relative;
  margin-top: 100px;
  width: 100%;
}
@media screen and (max-width: 479px) {
  .header-vsl-section {
    display: none;
  }
}

.header-vsl-section.normal {
  position: relative;
  margin-top: 100px;
  margin-bottom: 30px;
  width: 100%;
}

.title-section {
  position: relative;
  margin-top: 0px;
  height: 80px;
}
@media screen and (max-width: 768px) {
  .title-section {
    height: 60px;
  }
}

.page-title {
  margin-top: 0;
  position: relative;
  z-index: 99;
}
@media screen and (max-width: 479px) {
  .page-title {
    display: none;
  }
}
.page-title > h1 {
  color: #FFF;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 2px;
  padding-right: 20px;
  text-align: center;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 479px) {
  .page-title > h1 {
    font-size: 20px;
    letter-spacing: 1px;
    padding: 20px 0 0;
  }
}

@media screen and (max-width: 479px) {
  .header-vsl-section.normal .page-title {
    display: block;
  }
}

.page-nav {
  width: 100%;
  -webkit-background-size: 100% cover;
  -moz-background-size: 100% cover;
  -o-background-size: 100% cover;
  background-size: 100% cover;
  overflow: hidden;
}

.page-pagination {
  font-size: 12px;
  display: inline-block;
  padding: 10px 0;
  margin-left: 20px;
}
@media screen and (max-width: 479px) {
  .page-pagination {
    margin: 40px 0 0;
  }
}
.page-pagination ul > li {
  margin: 0;
  padding: 0;
  display: inline-block;
  text-transform: capitalize;
  color: #999;
}
.page-pagination ul > li > a {
  color: #444;
  letter-spacing: 1px;
  display: inline-block;
}
.page-pagination ul > li > a:hover {
  color: #03A9F4;
  text-decoration: underline;
}

.page-pagination ul > li::after {
  font-family: 'icofont';
  display: inline-block;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\eab8";
  margin-left: 5px;
}
@media screen and (max-width: 479px) {
  .page-pagination ul > li::after {
    margin-left: 0;
  }
}

.page-pagination ul > li:last-child::after {
  content: "";
}

.overlay-B {
  background-color: rgba(0, 0, 0, 0.3);
}

.overlay-R {
  background-color: rgba(234, 85, 80, 0.3);
}

.overlay-V {
  background-color: rgba(90, 68, 152, 0.3);
}

.overlay-P {
  background-color: rgba(222, 130, 137, 0.5);
}

.overlay-Ch {
  background-color: rgba(148, 108, 69, 0.5);
}

.overlay-Naby {
  background-color: rgba(32, 47, 85, 0.3);
}

/*////////////////////////////////////////////////////////////////////////////

footer scss

////////////////////////////////////////////////////////////////////////////*/
.bg-flink {
  background: #2f374d;
  padding: 5px 0;
}

.bg-inverse {
  background: #2f374d;
  color: #F0F0F0;
}

.bg-foot-end {
  padding: 10px 0 25px;
  margin-top: 15px;
  text-align: center;
}

#flink {
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 990px) {
  #flink {
    padding: 15px 0;
  }
}

.flink-nav {
  margin: 10px;
  padding: 0;
  position: relative;
  left: 50%;
  float: left;
  font-size: 12px;
}
@media only screen and (max-width: 990px) {
  .flink-nav {
    left: auto;
    float: none;
  }
}

.flink-nav li {
  font-size: 12px;
  font-weight: 300;
  float: left;
  position: relative;
  left: -50%;
  box-sizing: border-box;
  list-style-type: none;
  margin-bottom: 0;
}
@media only screen and (max-width: 990px) {
  .flink-nav li {
    display: inline-block;
    width: 33.333%;
    left: 0;
    list-style-type: none;
    border-left: none;
    margin-bottom: 10px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .flink-nav li {
    width: 50%;
  }
}

.flink-nav li a {
  color: white;
  padding: .3em 1.5em;
}
.flink-nav li a:hover {
  background: #03A9F4;
}
@media only screen and (max-width: 990px) {
  .flink-nav li a {
    color: white;
    margin: 0 5px;
    padding: 5px;
    display: block;
    background-color: rgba(255, 255, 255, 0.2);
  }
}
@media screen and (max-width: 767px) {
  .flink-nav li a {
    padding: 5px;
  }
}

#footer-section {
  background-image: url(../img/bg/bg_foot_nagasaki.jpg);
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1;
  padding-top: 40px;
  text-align: center;
}
#footer-section::after {
  background-color: rgba(0, 0, 0, 0.75);
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  z-index: -1;
}

/*.bg-foot{
    background-position: center center;
    
    width: 100%;
    background-size: cover;
    position: relative;
    background-position: center 100%;
    z-index: 1;
    
     &::after {
        content: "";
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: -1;
        background-color: rgba(35, 41, 57, .9);
    }
}*/
#footer-section a {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
}
#footer-section a:hover, #footer-section a:focus, #footer-section a:active {
  outline: none;
  text-decoration: none;
  color: white;
}

#footer-section h2.footer-section-logo {
  margin-bottom: 10px;
}
#footer-section h2.footer-section-logo img {
  width: 150px;
}

#footer-section p {
  font-size: 13px;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 5px;
}
#footer-section .p-name {
  font-size: 16px;
  font-weight: 400;
}

#footer-section .p-phone {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
}
#footer-section .p-phone::before {
  font-family: 'icofont';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #000;
  font-size: 16px;
  background: #FFF;
  margin-right: 10px;
  padding: 1px;
  border-radius: 4px;
}
#footer-section .p-phone span {
  padding-right: 10px;
}
@media screen and (max-width: 479px) {
  #footer-section .p-phone span {
    font-size: 1.3em;
  }
}
@media screen and (max-width: 479px) {
  #footer-section .p-phone {
    font-size: 15px;
  }
  #footer-section .p-phone span {
    color: white;
    display: block;
    padding-right: 0;
    padding-bottom: 15px;
  }
}

@media screen and (max-width: 479px) {
  .p-phone::before {
    font-size: 20px;
  }
}
.bg-foot-end .copyright {
  color: #DDD;
  font: 300 14px/20px "Roboto", sans-serif;
  text-align: center;
  letter-spacing: 2px;
}
@media screen and (max-width: 479px) {
  .bg-foot-end .copyright {
    font-size: 10px;
    padding-top: 10px;
  }
}

/*////////////////////////////////////////////////////////////////////////////

layout scss

////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////
Home contents
////////////////////////////////////////////////////////////////////////////*/
.gmap-wrap {
  width: 100%;
  overflow: hidden;
  height: 400px;
  z-index: -1;
}
@media screen and (max-width: 479px) {
  .gmap-wrap {
    height: 250px;
  }
}
.gmap-wrap > iframe {
  width: 100%;
  border: 0;
  height: 700px;
  margin-top: -150px;
}
@media screen and (max-width: 479px) {
  .gmap-wrap > iframe {
    height: 550px;
  }
}

.facebook-wrap {
  max-width: 500px;
  min-height: 400px;
  margin: 0 auto;
}
.facebook-wrap iframe {
  height: 400px;
}
@media screen and (max-width: 479px) {
  .facebook-wrap iframe {
    width: 90%;
  }
}

.nav-flex-sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 10px 0 0;
}

.nav-flex-sns li {
  text-align: center;
  list-style: none;
  display: table;
  line-height: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 50%;
}
.nav-flex-sns li a {
  font-size: 13px;
  color: #333;
  display: block;
  padding: 4px 15px;
  margin: 5px;
  transition: all 0.5s ease 0s;
  border-radius: 0;
  border: 1px solid rgba(35, 41, 57, 0.7);
}
@media screen and (max-width: 479px) {
  .nav-flex-sns li a {
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.nav-flex-sns li a:hover, .nav-flex-sns li a.active {
  color: white;
  background-color: #232939;
  border: 1px solid #232939;
  text-decoration: none;
}

.nav-flex-sns li:first-child a {
  margin-left: 0;
  margin-top: 0;
}

.nav-flex-sns li:nth-child(2) a {
  margin-right: 0;
  margin-top: 0;
}

@media screen and (max-width: 479px) {
  .facebook-wrap .nav-flex li {
    width: 50%;
    margin-bottom: 20px;
  }
}

/*////////////////////////////////////////////////////////////////////////////

Home scss

////////////////////////////////////////////////////////////////////////////*/
#v-head {
  text-align: center;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  color: #FFF;
  overflow: hidden;
}
#v-head .v-head-wrap {
  width: 100%;
  text-align: center;
  display: table;
  height: 75vh;
}
#v-head .v-head-wrap h1 {
  display: table-cell;
  vertical-align: middle;
  font: 400 40px "Oswald", sans-serif;
  color: white;
  letter-spacing: 6px;
  text-transform: uppercase;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 768px) {
  #v-head .v-head-wrap {
    height: 60vh;
  }
  #v-head .v-head-wrap h1 {
    padding-top: 10vh;
    display: table-cell;
    vertical-align: middle;
  }
}
@media screen and (max-width: 479px) {
  #v-head .v-head-wrap {
    height: 50vh;
  }
  #v-head .v-head-wrap h1 {
    font-size: 24px;
    letter-spacing: 3px;
  }
}
ul.flex-plan {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin-bottom: 5px;
}
ul.flex-plan li {
  list-style: none;
  margin: 0;
  width: 25%;
  text-align: center;
  line-height: none;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  ul.flex-plan li {
    width: 33.3333%;
  }
}
@media screen and (max-width: 479px) {
  ul.flex-plan li {
    width: 50%;
  }
}
ul.flex-plan li a {
  color: #000;
  display: block;
  transition: all 0.5s ease 0s;
  font-size: 13px;
  padding: 5px;
}
ul.flex-plan li a img {
  display: block;
  margin-bottom: 5px;
}
ul.flex-plan li a:hover {
  color: #FFF;
  background-color: #232939;
  text-decoration: none;
}

.home-topic {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home-topic li {
  width: 32%;
  text-align: center;
}
@media only screen and (max-width: 479px) {
  .home-topic li {
    width: 90%;
    margin: 10px auto;
  }
}
.home-topic li img {
  display: block;
}
.home-topic span.label {
  display: inline-block;
  font-size: 12px;
  padding: 3px 6px !important;
  color: white;
  background: #34325A;
  border-radius: 2px;
  margin-right: 3px;
}
@media only screen and (max-width: 479px) {
  .home-topic span.label {
    font-size: 10px;
  }
}

.plan-monthly02 {
  padding: 5px;
}

.plan-monthly {
  margin-bottom: 15px;
  position: relative;
}
.plan-monthly a {
  color: #000;
  background-color: #F9F9F9;
  transition: all 0.5s ease 0s;
}
.plan-monthly a:hover {
  color: #FFF;
  background-color: #232939;
}
.plan-monthly .inner-block {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid rgba(35, 41, 57, 0.3);
}
.plan-monthly .plan-visual {
  width: 25%;
  padding: 2px;
}
@media screen and (max-width: 640px) {
  .plan-monthly .plan-visual {
    width: 45%;
  }
}
.plan-monthly .plan-name {
  width: 75%;
  text-align: center;
  font-family: "Noto Serif", serif;
  font-size: 24px;
}
@media screen and (max-width: 640px) {
  .plan-monthly .plan-name {
    width: 55%;
    font-size: 18px;
  }
}

.plan-type-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.plan-type-wrap .type-block {
  width: 32%;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .plan-type-wrap .type-block {
    width: 100%;
  }
}
.plan-type-wrap .type-block h3 {
  font-family: "Noto Serif", serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: .5em;
}
.plan-type-wrap .type-block ul li {
  margin-bottom: 10px;
}
.plan-type-wrap .type-block ul li a {
  display: block;
}

.news-wrap {
  border-top: 1px dotted #CCC;
  display: flex;
  flex-wrap: wrap;
}

dl.dl-news {
  width: 50%;
  border-bottom: 1px dotted #CCC;
  margin-bottom: 0;
  padding-right: 20px;
}
@media only screen and (max-width: 479px) {
  dl.dl-news {
    width: 100%;
    padding-right: 0;
  }
}
dl.dl-news a {
  color: #666;
}
dl.dl-news.first {
  border-top: 1px dotted #CCC;
}

dl.dl-news dt, dl.dl-news dd {
  margin: 0;
  padding: 0;
  padding: 1em 0;
}
@media only screen and (max-width: 479px) {
  dl.dl-news dt, dl.dl-news dd {
    font-size: 12px;
  }
}

dl.dl-news dt {
  width: 150px;
  float: left;
  clear: left;
  position: relative;
}
@media only screen and (max-width: 479px) {
  dl.dl-news dt {
    width: 100px;
  }
}
dl.dl-news dt img {
  width: 150px;
  display: block;
}
@media only screen and (max-width: 479px) {
  dl.dl-news dt img {
    width: 90px;
    height: 90px;
    object-fit: cover;
  }
}

dl.dl-news dd {
  font-size: 12px;
  margin-left: 170px;
  line-height: normal;
}
@media only screen and (max-width: 479px) {
  dl.dl-news dd {
    font-size: 11px;
    margin-left: 100px;
    text-overflow: ellipsis;
  }
}
dl.dl-news dd span.label {
  display: table;
  font-size: 12px;
  padding: 2px 6px !important;
  color: white;
  background: #34325A;
  border-radius: 0;
  margin-bottom: 3px;
}
@media only screen and (max-width: 479px) {
  dl.dl-news dd span.label {
    font-size: 10px;
    display: none;
  }
}
dl.dl-news dd span.title {
  color: #333;
  font-size: 1.2em;
  font-weight: 500;
  display: block;
}

dl.dl-news dd br {
  display: none;
}

dl.dl-news a {
  display: block;
}
dl.dl-news a:hover {
  color: #03A9F4;
  text-decoration: underline;
}
dl.dl-news a:hover span.title {
  color: #03A9F4;
}
dl.dl-news a:hover span.label {
  background: #03A9F4;
  text-decoration: none;
}

#future p {
  margin-bottom: 10px;
}

#future .panel-feature {
  margin: 0;
  padding: 15px 15px;
  background-color: white;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 479px) {
  #future .panel-feature {
    margin: 5px;
    padding: 10px;
  }
}
#future .panel-feature h3 {
  font-size: 15px;
  text-align: center;
  font-weight: 500;
  margin: 0 0 10px;
  font-family: "Noto Serif", serif;
}
@media screen and (max-width: 479px) {
  #future .panel-feature h3 {
    font-size: 14px;
  }
}
#future .panel-feature img {
  max-width: 90%;
  margin: 0 auto;
  filter: grayscale(10%);
  opacity: 1;
}
@media screen and (max-width: 479px) {
  #future .panel-feature img {
    max-width: 100%;
  }
}
#future .panel-feature .p-lead {
  font-size: 12px;
  display: block;
  max-width: 80%;
  margin: 0 auto;
  height: 3em;
}
@media screen and (max-width: 479px) {
  #future .panel-feature .p-lead {
    text-align: center;
    max-width: 80%;
    height: auto;
    padding-bottom: 10px;
  }
}

#future a .panel-feature {
  color: #333;
}

#future a:hover .panel-feature {
  background-color: rgba(0, 0, 0, 0.4);
  color: #FFF;
}
#future a:hover .panel-feature h3 {
  color: #FFF;
}
#future a:hover .panel-feature img {
  filter: grayscale(80%);
  opacity: 1;
}

.h-side {
  color: #FFF;
  text-align: center;
  margin-bottom: 15px;
}
.h-side::before, .h-side::after {
  content: '─';
  font-weight: 300;
  display: inline-block;
  padding: 0 .5em;
  color: rgba(255, 255, 255, 0.6);
}

ul.ul-school {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  margin: 0;
  padding: 0;
}
ul.ul-school li {
  width: 33.3333%;
}
@media screen and (max-width: 479px) {
  ul.ul-school li {
    width: 100%;
    margin: 2px 5px;
  }
}
ul.ul-school li a {
  display: block;
  text-align: center;
  color: #222;
  font-weight: 400;
  background: #f4f9ff;
  margin: 5px;
  padding: 1em;
  border: 1px solid #f4f9ff;
}
ul.ul-school li a::before {
  font-family: 'icofont';
  content: "\eb1e";
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  padding-right: .6em;
}
ul.ul-school li a:hover {
  color: #FFF;
  background: #232939;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/*////////////////////////////////////////////////////////////////////////////

pase scss

////////////////////////////////////////////////////////////////////////////*/
.page-heading {
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 479px) {
  .page-heading {
    margin-bottom: 10px;
  }
}
.page-heading h1, .page-heading h2 {
  color: #222;
  text-transform: uppercase;
  font: 400 24px/1.5 "Noto Serif", serif;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 479px) {
  .page-heading h1, .page-heading h2 {
    font-size: 20px;
    letter-spacing: 1px;
  }
}
.page-heading h1.h2-party, .page-heading h2.h2-party {
  font-size: 28px;
  font-weight: 500;
}
@media screen and (max-width: 479px) {
  .page-heading h1.h2-party, .page-heading h2.h2-party {
    font-size: 24px;
  }
}
.page-heading h1.h2-goto, .page-heading h2.h2-goto {
  text-transform: none;
  letter-spacing: 0;
}

.page-heading .p-title {
  font-family: "Open Sans", sans-serif;
  color: rgba(35, 41, 57, 0.7);
  text-transform: uppercase;
  font-size: 15px !important;
  letter-spacing: 2px;
}
@media screen and (max-width: 479px) {
  .page-heading .p-title {
    font-size: 15px !important;
    letter-spacing: 0;
  }
}

.page-heading .p-lead {
  font-size: 16px;
  text-align: left;
}
@media screen and (max-width: 479px) {
  .page-heading .p-lead {
    font-size: 14px;
  }
}

.page-heading .p-normal {
  letter-spacing: 0px;
}

.page-heading .color-border {
  background-color: rgba(35, 41, 57, 0.4);
  height: 3px;
  width: 60px;
  position: relative;
  z-index: 1;
  margin: -5px auto 5px;
}

.gmap-access {
  width: 100%;
  overflow: hidden;
  height: 500px;
  z-index: -1;
}
@media screen and (max-width: 479px) {
  .gmap-access {
    height: 250px;
  }
}
.gmap-access > iframe {
  width: 100%;
  border: 0;
  height: 700px;
  margin-top: -150px;
}
@media screen and (max-width: 479px) {
  .gmap-access > iframe {
    height: 550px;
  }
}

.panel-header {
  background-color: #012438;
  background-size: cover;
  position: relative;
  color: white;
  padding: 20px 0;
}
@media screen and (max-width: 479px) {
  .panel-header {
    padding: 0;
  }
}
.panel-header .page-heading {
  margin-bottom: 20px;
  margin-top: 20px;
}
.panel-header .page-heading h2 {
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  color: white;
  font-weight: 300;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
}
.panel-header .page-heading h3 {
  font-family: "Noto Serif", serif;
  font-size: 24px;
}
@media screen and (max-width: 479px) {
  .panel-header .page-heading h3 {
    font-size: 18px;
  }
}
.panel-header .page-heading p {
  font-weight: 300;
}
.panel-header .page-heading .color-border {
  background-color: rgba(255, 255, 255, 0.4);
}

@media screen and (max-width: 479px) {
  .panel-header > [class*="container-"] {
    padding: 0px !important;
    margin: 0px !important;
  }
}

.panel-header .panel-vsl, .panel-header .panel-text {
  background-size: cover;
  background-position: center center;
  position: relative;
  height: 250px;
  display: flex;
  width: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 479px) {
  .panel-header .panel-vsl, .panel-header .panel-text {
    height: 100px !important;
  }
}

.panel-header .panel-vsl {
  z-index: 1;
}
.panel-header .panel-vsl::after {
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  z-index: -1;
}
.panel-header .panel-vsl.vsl-01 {
  background-image: url(../../stay/img/stay_plan01.jpg);
}
.panel-header .panel-vsl.vsl-02 {
  background-image: url(../../stay/img/stay_plan02.jpg);
}
.panel-header .panel-vsl.vsl-03 {
  background-image: url(../../stay/img/stay_plan03.jpg);
}
.panel-header .panel-vsl.vsl-04 {
  background-image: url(../../stay/img/stay_plan04.jpg);
}
.panel-header .panel-vsl.vsl-05 {
  background-image: url(../../stay/img/stay_plan05.jpg);
}
.panel-header .panel-vsl.vsl-06 {
  background-image: url(../../stay/img/stay_plan06v.jpg);
}

.flex-plan-point {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0;
  margin-bottom: 30px;
}

.flex-plan-point .plan-inner {
  font-size: 13px;
  margin: 10px 0;
  line-height: none;
  overflow: hidden;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .flex-plan-point .plan-inner {
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .flex-plan-point .plan-inner {
    width: 100%;
  }
}

.flex-plan-point .plan-inner:nth-child(odd) {
  padding-right: 15px;
}
@media screen and (max-width: 768px) {
  .flex-plan-point .plan-inner:nth-child(odd) {
    padding-right: 0;
  }
}
.flex-plan-point .plan-inner:nth-child(even) {
  padding-left: 15px;
}
@media screen and (max-width: 768px) {
  .flex-plan-point .plan-inner:nth-child(even) {
    padding-left: 0;
  }
}

.flex-plan-point .plan-inner h4 {
  font-size: 20px;
  font-weight: 500;
  border-bottom: 2px solid #CCC;
  margin-bottom: 10px;
}
.flex-plan-point .plan-inner h4:first-letter {
  font-family: "Roboto", sans-serif;
  font-size: 1.5em;
  color: orangered;
}
.flex-plan-point .plan-inner figure {
  width: 30%;
  float: left;
  display: inline-block;
}
.flex-plan-point .plan-inner figure img {
  width: auto;
}
.flex-plan-point .plan-inner div.point-exp {
  width: 70%;
  display: inline-block;
  padding-left: 15px;
}
.flex-plan-point .plan-inner div.point-exp ul li {
  list-style: disc;
  margin-left: 15px;
}
.flex-plan-point .plan-inner p {
  font-size: 13px;
  line-height: 1.1;
  margin-top: 5px;
  margin-bottom: 5px;
}
@media screen and (max-width: 479px) {
  .flex-plan-point .plan-inner p {
    font-size: 11px;
  }
}
.flex-plan-point .plan-inner span {
  display: inline;
  font-size: inherit;
  color: inherit;
  letter-spacing: 1px;
  margin: 0;
}
.flex-plan-point .plan-inner span.label, .flex-plan-point .plan-inner span.label-other {
  color: white;
  font-size: .85em !important;
  background: #D00;
  padding: 1px 8px 1px;
}
.flex-plan-point .plan-inner span.label-other {
  background: white;
}
@media screen and (max-width: 479px) {
  .flex-plan-point .plan-inner span {
    font-size: 11px;
  }
}

.room-name {
  font-size: 24px;
  font-family: "Noto Serif", serif;
  margin-bottom: 15px;
  font-weight: 500;
  color: #333;
}
.room-name span {
  font-family: "Open Sans", sans-serif;
  color: #666;
  font-weight: 300;
  font-size: .7em;
  padding-left: 1em;
}

.p-plan-name {
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  border-bottom: 1px dotted #34325A;
}
.p-plan-name::before {
  content: attr(data-content);
  font-size: 80%;
  line-height: 1;
  text-align: center;
  color: white;
  background-color: #34325A;
  font-weight: 300;
  display: inline-block;
  padding: 4px 5px;
  margin-right: 5px;
}

ul.ul-plan-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0;
  margin-bottom: 15px;
}

ul.ul-plan-link li {
  font-size: 13px;
  list-style: none;
  margin: 0;
  display: table;
  line-height: none;
  overflow: hidden;
}
ul.ul-plan-link li a {
  margin-right: 10px;
}

.room-spec-item, .room-spec-item2 {
  padding-top: 20px;
  margin-bottom: 20px;
}

.room-spec-item li, .room-spec-item2 li {
  position: relative;
}
.room-spec-item li::before, .room-spec-item2 li::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #CCC;
  position: absolute;
  right: 0;
  top: 0;
}
.room-spec-item li:first-child, .room-spec-item2 li:first-child {
  padding-right: 10px;
}
.room-spec-item li:last-child:before, .room-spec-item2 li:last-child:before {
  display: none;
}

.list-inline-item {
  display: inline-block;
}

.room-spec-item li + li {
  padding-left: 15px;
  padding-right: 20px;
}

.room-spec-item li span {
  font-weight: 500;
  text-align: center;
  display: block;
  font-family: 'Noto Serif', serif;
}
.room-spec-item li span.text {
  color: #777;
  font-size: 12px;
}
.room-spec-item li span.number {
  font-size: 1.2em;
}

.room-spec-item2 li + li {
  padding-left: 10px;
  padding-right: 10px;
}

.room-spec-item2 li span {
  font-weight: 500;
  text-align: center;
  display: block;
  font-family: 'Noto Serif', serif;
}
.room-spec-item2 li span.text {
  color: #777;
  font-size: 12px;
}
.room-spec-item2 li span.number {
  font-size: 1.2em;
}

.access-wrap .detail {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px　0;
}
.access-wrap .detail h3 {
  margin-bottom: 20px;
  margin-top: 5px;
}
.access-wrap .detail h4 {
  font-weight: 400;
  margin-bottom: 10px;
}
.access-wrap .detail .label-dsp {
  font-size: 13px;
  border: 1px solid #232939;
  color: #232939;
}

.access-wrap .detail dl {
  margin: 10px 0 20px;
}
.access-wrap .detail dt, .access-wrap .detail dd {
  font-weight: normal;
  line-height: normal;
  margin-bottom: 5px;
}
.access-wrap .detail dt {
  width: 5em;
  font-size: .9em;
  float: left;
  clear: left;
  text-align: center;
  white-space: nowrap;
  border: 1px solid #CCC;
}
.access-wrap .detail dd {
  margin-left: 5.5em;
}

@media (min-width: 768px) {
  .dl-access dt {
    float: left;
    clear: left;
    width: 14em;
    overflow: hidden;
    text-overflow: ellipsis;
    /* white-space: nowrap;*/
  }

  .dl-access dd {
    float: left;
    margin-left: 1em;
  }
}
@media screen and (max-width: 768px) {
  .dl-access {
    margin-bottom: 0.5em;
    margin-left: 0;
  }

  .dl-access dt {
    float: left;
  }

  .dl-access dd {
    /*clear: left;*/
    margin-left: 15em;
  }
}
.icon-airport::before,
.icon-bus::before,
.icon-train::before,
.icon-car::before,
.icon-taxi::before,
.icon-tram::before,
.icon-walk::before,
.icon-parking::before {
  font-family: 'icofont';
  display: inline-block;
  font-size: 1.1em;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #34325A;
  color: white;
  padding: 5px;
  margin-right: 5px;
}

.icon-airport::before {
  content: "\ee0e";
}

.icon-bus::before {
  content: "\ee18";
}

.icon-train::before {
  content: "\ee38";
}

.icon-car::before {
  content: "\ee1f";
}

.icon-taxi::before {
  content: "\ee36";
}

.icon-tram::before {
  content: "\ee3a";
}

.icon-walk::before {
  content: "\ee4e";
}

.icon-parking::before {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  content: "P";
  padding: 5px 8px;
}

.detail .flexslider {
  margin: 0 0 30px !important;
}

.detail .flexslider .slides img {
  height: 400px;
  position: relative;
  object-fit: contain;
  object-position: 0% 0%;
  margin: auto 0;
}
@media screen and (max-width: 479px) {
  .detail .flexslider .slides img {
    height: 280px;
    padding: 10px;
  }
}

.detail .flex-control-thumbs img {
  width: 100%;
  height: 70px;
  object-fit: contain;
  padding: 5px;
  overflow: hidden;
  border: 1px solid #FFF;
}

.flex-control-thumbs li {
  width: 20% !important;
  float: left;
  margin: 0;
}

.flex-control-thumbs img:hover {
  opacity: 1;
  border: 1px solid #999;
}

.flex-control-thumbs .flex-active img {
  opacity: 1;
}

.facility-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  border-bottom: 1px dotted #CCC;
}
.facility-wrap .facility-ph {
  width: 40%;
  display: table;
}
@media screen and (max-width: 479px) {
  .facility-wrap .facility-ph {
    width: 100%;
    margin-bottom: 10px;
  }
}
.facility-wrap .facility-ph img {
  width: 100%;
  height: auto;
}
.facility-wrap .facility-text {
  width: 60%;
  display: table;
  padding-left: 25px;
}
@media screen and (max-width: 479px) {
  .facility-wrap .facility-text {
    width: 100%;
    padding-left: 0;
  }
}

.facility-wrap .flexslider {
  margin: 0 0 30px;
}

.facility-wrap .facility-text h3 {
  font-family: "Noto Serif", serif;
}
.facility-wrap .facility-text h3::before {
  content: "■";
  color: #00608d;
}

.facility-wrap ul.ul-data {
  display: block;
  position: relative;
}
.facility-wrap ul.ul-data li {
  text-align: left;
}
.facility-wrap ul.ul-data li::before {
  content: attr(data-content);
  font-size: 85%;
  line-height: 1;
  width: 6em;
  text-align: center;
  color: white;
  background-color: #8da0b6;
  display: inline-block;
  padding: 3px 5px;
  margin-right: .8em;
}
.facility-wrap ul.ul-data li a {
  font-family: "Open Sans", sans-serif;
}
.facility-wrap ul.ul-data li a::after {
  font-family: 'icofont';
  content: "\ef1f";
  font-style: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 5px;
}

ul.index-overview {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0;
  margin-bottom: 30px;
}

ul.index-overview li {
  text-align: center;
  font-size: 15px;
  list-style: none;
  margin: 0;
  width: 33.3333%;
  display: table;
  line-height: none;
  overflow: hidden;
}
ul.index-overview li img {
  display: block;
  width: 100%;
  margin: 0 auto 5px;
}
@media screen and (max-width: 479px) {
  ul.index-overview li img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  ul.index-overview li {
    width: 33.3333%;
  }
}
@media screen and (max-width: 479px) {
  ul.index-overview li {
    width: 50%;
    font-size: 13px;
  }
}

ul.index-overview li a {
  color: #000;
  display: block;
  transition: all 0.5s ease 0s;
  line-height: normal;
  padding: 10px;
  margin: 15px;
  border: 1px solid #FFF;
}
@media screen and (max-width: 479px) {
  ul.index-overview li a {
    padding: 5px;
    margin: 5px;
  }
}
ul.index-overview li a:hover {
  opacity: .8;
  color: white;
  background: #232939;
}
ul.index-overview li a:hover img {
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -o-filter: grayscale(1);
  -ms-filter: grayscale(1);
  filter: grayscale(1);
}
ul.index-overview li a:hover p, ul.index-overview li a:hover span.size {
  color: #03A9F4;
  text-decoration: underline;
}

#overview h2 {
  line-height: 1.6;
}
@media screen and (max-width: 479px) {
  #overview h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 479px) {
  #overview h3 {
    font-size: 16px;
  }
}
#overview ul, #overview li {
  margin: 0;
  padding: 0;
  list-style: none;
}
#overview figure.ceo img {
  width: 90%;
}
@media screen and (max-width: 479px) {
  #overview figure.ceo img {
    width: 80%;
  }
}

#overview ul.ul-profile {
  margin: 10px;
  font-weight: 300;
  margin-bottom: 20px;
}
#overview ul.ul-profile li {
  line-height: 1.6;
}
#overview .h4-square {
  color: #192f60;
  font-weight: 500;
}
#overview .h4-square::before {
  font-family: 'icofont';
  content: "\effc";
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-right: 3px;
}

ul.flex-floor {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0;
  margin-bottom: 10px;
}

ul.flex-floor li {
  list-style: none;
  margin: 0;
  width: 46%;
  margin: 2%;
  display: inline-block;
  text-align: center;
  line-height: none;
  overflow: hidden;
  padding: 20px 30px 20px 10px;
  border-bottom: 1px dotted #ccc;
  border-right: 1px dotted #CCC;
}
@media screen and (max-width: 479px) {
  ul.flex-floor li {
    width: 100%;
    border-right: none;
  }
}

#policy h4 {
  margin-top: 20px !important;
  font-weight: 500;
}
@media screen and (max-width: 479px) {
  #policy h4 {
    font-size: 16px;
  }
}
#policy blockquote {
  border-left: none;
}

/*==========================================================================
  NEWS page block
==========================================================================*/
.news-section {
  margin: 0 15px;
}
@media only screen and (max-width: 479px) {
  .news-section {
    margin: 0 10px;
  }
}

.news-section .news-block {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.news-section .news-block h3 {
  font-family: "Noto Serif", serif;
  font-display: block;
  width: 100%;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid #666;
}
@media only screen and (max-width: 479px) {
  .news-section .news-block h3 {
    font-size: 18px;
    line-height: 1.3;
  }
}
.news-section .news-block h3::before {
  content: attr(data-content);
  font-family: "Open Sans", sans-serif;
  color: white;
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  color: white;
  background-color: #34325A;
  display: table;
  padding: 3px 6px;
  margin-right: .5em;
}
@media only screen and (max-width: 479px) {
  .news-section .news-block h3::before {
    display: table;
  }
}
.news-section .news-block .p-lead {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 479px) {
  .news-section .news-block .p-lead {
    font-size: 15px;
  }
}

@media all and (-ms-high-contrast: none) {
  .news-section .news-block h3::before {
    display: inline-block;
  }
}
.news-section .news-block .news-thums {
  width: 30%;
  display: table;
}
@media screen and (max-width: 479px) {
  .news-section .news-block .news-thums {
    width: 100%;
    margin-bottom: 10px;
  }
}
.news-section .news-block .news-thums img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 479px) {
  .news-section .news-block .news-thums img {
    height: 180px;
    object-fit: cover;
    object-position: 0 50%;
  }
}
@media screen and (max-width: 479px) {
  .news-section .news-block .news-thums.thums-top img {
    object-position: 0 top;
    height: auto;
  }
}

.news-section .news-block .news-text {
  width: 70%;
  display: table;
  padding-left: 25px;
}
@media screen and (max-width: 479px) {
  .news-section .news-block .news-text {
    display: block;
    width: 100%;
    padding-left: 0;
  }
  .news-section .news-block .news-text p {
    line-height: 1.3;
  }
}
.news-section .news-block .news-text ul.ul-data {
  display: block;
  position: relative;
  margin: 10px 0;
}
@media screen and (max-width: 479px) {
  .news-section .news-block .news-text ul.ul-data {
    width: 100%;
  }
}
.news-section .news-block .news-text ul.ul-data li {
  text-align: left;
}
.news-section .news-block .news-text ul.ul-data li::before {
  content: attr(data-content);
  font-size: 85%;
  line-height: 1;
  width: 6em;
  text-align: center;
  color: white;
  background-color: #34325A;
  display: inline-block;
  padding: 3px 5px;
  margin-right: .8em;
}

.covid-wrap {
  padding: 0 20px;
}
@media screen and (max-width: 479px) {
  .covid-wrap {
    padding: 10px;
  }
}
.covid-wrap .covid-block {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  margin-bottom: 20px;
  padding: 20px;
  position: relative;
  background-color: #E9F5FC;
}
@media screen and (max-width: 479px) {
  .covid-wrap .covid-block {
    padding: 10px;
  }
}
.covid-wrap .covid-block .icon {
  width: 10%;
  padding: 10px;
  display: table;
}
@media screen and (max-width: 479px) {
  .covid-wrap .covid-block .icon {
    width: 25%;
    margin: auto;
  }
}
.covid-wrap .covid-block .caption {
  width: 90%;
  padding: 10px 20px;
}
@media screen and (max-width: 479px) {
  .covid-wrap .covid-block .caption {
    width: 100%;
    padding: 5px;
  }
}
.covid-wrap .covid-block .caption p {
  font-size: 16px;
}
.covid-wrap .covid-block .caption p::first-letter {
  font-family: "Lato", sans-serif;
  font-size: 2em;
  font-weight: 300;
  color: #4496d3;
  padding-right: .2em;
}

.dejima1, .dejima2 {
  padding: 10px 15px;
  position: relative;
  margin: 10px 0;
}
.dejima1 h4, .dejima2 h4 {
  font-weight: 500;
}
.dejima1 .table-auto, .dejima2 .table-auto {
  margin: 10px 0 15px;
  border: 1px solid #CCC;
}
.dejima1 .table-auto th, .dejima1 .table-auto td, .dejima2 .table-auto th, .dejima2 .table-auto td {
  padding: .2em 1em;
  border-bottom: 1px dotted #DDD;
}
@media screen and (max-width: 479px) {
  .dejima1 .table-auto th, .dejima1 .table-auto td, .dejima2 .table-auto th, .dejima2 .table-auto td {
    padding: .2em .5em;
  }
}
.dejima1 .table-auto thead tr.tr01, .dejima2 .table-auto thead tr.tr01 {
  background: #fff4ea;
}
.dejima1 .table-auto thead tr.tr02, .dejima2 .table-auto thead tr.tr02 {
  background: #dbedff;
}
.dejima1 .table-auto thead th, .dejima2 .table-auto thead th {
  font-weight: normal;
  white-space: nowrap;
}
.dejima1 .table-auto tbody th, .dejima2 .table-auto tbody th {
  font-weight: normal;
}
.dejima1 .table-auto tbody td, .dejima2 .table-auto tbody td {
  text-align: center;
  white-space: nowrap;
}

.dejima1 {
  background-color: #FFF;
  border: 2px solid #e5f2ff;
}

.dejima2 {
  background-color: #FFF;
  border: 2px solid #f2e5ff;
}

/*////////////////////////////////////////////////////////////////////////////

GoTo travel

////////////////////////////////////////////////////////////////////////////*/
.bg-home-goto {
  padding: 2em;
  line-height: 1.8;
  background: #e5f2ff;
  width: 100%;
  -webkit-background-size: 100% cover;
  -moz-background-size: 100% cover;
  -o-background-size: 100% cover;
  background-size: 100% cover;
  overflow: hidden;
}
@media screen and (max-width: 479px) {
  .bg-home-goto {
    padding: 1em;
  }
}

.h-goto {
  font-family: 'Oswald', sans-serif !important;
  color: #00608d !important;
  font-weight: 600 !important;
  margin-bottom: .5em;
  font-size: 26px;
  letter-spacing: 2px;
}
.h-goto span {
  font-size: .8em;
}
@media screen and (max-width: 479px) {
  .h-goto {
    font-size: 20px;
    letter-spacing: 0;
  }
}

.link-goto {
  width: 60%;
  display: block;
  margin: 10px auto 0;
}

.link-goto img {
  display: block;
}

.notes-inline {
  position: relative;
  display: inline-block;
  background: #FFF;
  padding: .5em 4em;
  border: 2px solid #a2c2e6;
}
@media screen and (max-width: 479px) {
  .notes-inline {
    padding: .5em;
  }
}
.notes-inline strong {
  font-weight: 600;
}

.home-goto-bnr {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  padding: 0;
  margin: 20px 15px;
}
.home-goto-bnr div {
  width: 50%;
  text-align: center;
  font-size: 16px;
}
.home-goto-bnr div img {
  display: block;
  padding-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .home-goto-bnr div {
    width: 80%;
  }
}
@media screen and (max-width: 479px) {
  .home-goto-bnr div {
    width: 100%;
    font-size: 15px;
  }
}
.home-goto-bnr div a {
  color: #333;
  font-family: "Noto Serif", serif;
}

.goto-guide {
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 479px) {
  .goto-guide {
    width: 100%;
  }
}
.goto-guide .guide-block {
  text-align: center;
  position: relative;
  display: inline-block;
  margin: 1em 0;
  padding: 10px 10px;
  width: 100%;
  color: #333;
  background: #e0edff;
  border: solid 2px #88b5d3;
  box-sizing: border-box;
}
.goto-guide .guide-block:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 13px solid transparent;
  border-top: 13px solid #e0edff;
  z-index: 2;
}
.goto-guide .guide-block:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -18px;
  border: 16px solid transparent;
  border-top: 14px solid #88b5d3;
  z-index: 1;
}
.goto-guide .guide-block p {
  font-size: 18px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 479px) {
  .goto-guide .guide-block p {
    font-size: 14px;
    line-height: 1.4;
  }
}
.goto-guide .guide-block p::first-letter {
  font-size: 24px;
  line-height: 1;
  font-style: normal;
  color: #00afcc;
  font-family: "Oswald", sans-serif;
  padding-right: .2em;
}
@media screen and (max-width: 479px) {
  .goto-guide .guide-block p::first-letter {
    display: block;
  }
}

.goto-guide .guide-block a {
  text-decoration: underline !important;
}

.bnr-goto {
  position: relative;
  text-align: center;
  margin: 20px auto;
}
.bnr-goto a {
  color: #FFF;
  display: block;
  padding: 1em 2em 0.5em;
  background-color: #03A9F4;
}
@media screen and (max-width: 479px) {
  .bnr-goto a {
    padding: 10px 5px;
  }
}
.bnr-goto a:hover {
  color: #FFF;
  background-color: #222;
}
.bnr-goto h4 {
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
}
.bnr-goto h4::after {
  font-family: 'icofont';
  content: "\ea67";
  line-height: 1;
  display: block;
  color: inherit;
  padding: 5px;
  font-size: 1.4em;
}
@media screen and (max-width: 479px) {
  .bnr-goto h4 {
    font-size: 13px;
  }
}

/*	.ul-gude{
	    margin-left: 0;
    	padding-left: 0;
		display: flex;
    	flex-wrap: wrap;
		position: relative;
		
		.guide-text{
			
		}
		
		li{
			display: block;
			width: 100%;
			font-size: 18px;
			line-height: 30px;
			border: 1px solid #CCC;
			padding: 1em 2em;
			margin: 10px 0;
			border-radius: 5px;
			box-shadow: 0 0.125em 0.125em 0 rgba(0, 0, 0, 0.2);
			
			
			&::first-letter{
				font-size: 30px;
				color: #00afcc;
			}
			&::after{
				position: absolute;
				content: "↓";
				margin-top: 50px;
				text-align: center;
			}
		}
		
	}*/
/*////////////////////////////////////////////////////////////////////////////

Restaurant scss

////////////////////////////////////////////////////////////////////////////*/
.rest-index {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0;
  margin-bottom: 0px;
}

.rest-index .rest-detail {
  width: 50%;
  padding: 15px;
  display: table;
  text-align: left;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .rest-index .rest-detail {
    width: 50%;
  }
}
@media screen and (max-width: 479px) {
  .rest-index .rest-detail {
    width: 100%;
  }
}
.rest-index .rest-detail h4 {
  font-family: "Noto Serif", serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}

@media all and (-ms-high-contrast: none) {
  .rest-index .rest-detail {
    display: inline-block;
  }
}
.rest-index ul.ul-data {
  display: block;
  position: relative;
}
.rest-index ul.ul-data li {
  text-align: left;
}
.rest-index ul.ul-data li::before {
  content: attr(data-content);
  font-size: 85%;
  line-height: 1;
  width: 6em;
  text-align: center;
  color: white;
  background-color: #34325A;
  display: inline-block;
  padding: 3px 5px;
  margin-right: .8em;
}

.rest-detail .lead-exp {
  min-height: 6em;
  overflow: hidden;
  margin-bottom: 10px;
}
@media screen and (max-width: 479px) {
  .rest-detail .lead-exp {
    min-height: auto;
  }
}
.rest-detail .lead-exp p {
  font-weight: 300;
  line-height: 1.5;
}

.party-index {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin-bottom: 0px;
}

.party-index .party-detail {
  width: 33.3333%;
  padding: 15px;
  display: table;
  text-align: left;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .party-index .party-detail {
    width: 50%;
  }
}
@media screen and (max-width: 479px) {
  .party-index .party-detail {
    width: 100%;
  }
}
.party-index .party-detail h5 {
  font-family: "Noto Serif", serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 5px;
}
.party-index .party-detail h5:hover {
  color: #03A9F4;
  text-decoration: underline;
}

@media all and (-ms-high-contrast: none) {
  .party-index .party-detail {
    display: inline-block;
  }
}
.menu-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.menu-wrap.party-plan {
  padding-bottom: 0;
}
.menu-wrap .menu-ph {
  width: 40%;
  display: table;
}
.menu-wrap .menu-ph.party {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .menu-wrap .menu-ph {
    width: 100%;
    margin-bottom: 10px;
  }
  .menu-wrap .menu-ph.party {
    width: 100%;
  }
}
.menu-wrap .menu-ph img {
  width: 100%;
  height: auto;
}
.menu-wrap .menu-text {
  width: 60%;
  display: table;
  padding-left: 25px;
}
.menu-wrap .menu-text.party {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .menu-wrap .menu-text {
    width: 100%;
    padding-left: 0;
  }
  .menu-wrap .menu-text.party {
    width: 100%;
  }
}

.menu-wrap .flexslider {
  margin: 0 0 20px;
  background-color: inherit;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  box-shadow: initial;
}

.menu-text h3 {
  font-family: "Noto Serif", serif;
  margin-bottom: 10px;
}
.menu-text h3::before {
  content: "■";
  color: #6b395f;
}
.menu-text h3.h3-pink::before {
  color: #D44F76;
}

.menu-wrap ul.ul-data {
  display: block;
  position: relative;
  margin-bottom: 15px;
}
.menu-wrap ul.ul-data li {
  text-align: left;
}
.menu-wrap ul.ul-data li::before {
  content: attr(data-content);
  font-size: 85%;
  line-height: 1;
  width: 6em;
  text-align: center;
  color: white;
  background-color: #6b395f;
  display: inline-block;
  padding: 3px 5px;
  margin-right: .8em;
}
.menu-wrap ul.ul-data li a {
  font-family: "Open Sans", sans-serif;
}
.menu-wrap ul.ul-data li a::after {
  font-family: 'icofont';
  content: "\ef1f";
  font-style: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 5px;
}

.plan-price-item {
  padding-top: 20px;
  margin-bottom: 10px;
  border-left: 1px solid #CCC;
}

.plan-price-item li {
  position: relative;
}
.plan-price-item li::before, .plan-price-item li::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #CCC;
  position: absolute;
  right: 0;
  top: 0;
}
.plan-price-item li:first-child {
  padding-right: 15px;
  padding-left: 15px;
}
.plan-price-item li:last-child:before {
  display: none;
}

.list-inline-item {
  display: inline-block;
}

.plan-price-item li + li {
  padding-left: 15px;
  padding-right: 20px;
}

.plan-price-item li span {
  font-weight: 500;
  text-align: center;
  display: block;
  font-family: 'Noto Serif', serif;
}
.plan-price-item li span.text {
  color: #444;
  font-size: 14px;
}
.plan-price-item li span.price {
  font-size: 1.4em;
  font-family: "Open Sans", sans-serif;
  color: #D00;
}
.plan-price-item li span.price::after {
  content: attr(data-content);
  font-size: .8em;
}

.table-menu {
  width: auto;
  margin-bottom: 5px;
}
.table-menu caption {
  font-size: .8em;
  color: inherit;
  caption-side: bottom;
  text-align: right;
  padding: 0;
}
.table-menu th, .table-menu td {
  text-align: center;
  font-weight: 400;
  padding: 4px 20px;
}
.table-menu .p-price {
  color: #D00;
  font-size: 1.4em;
  font-family: "Open Sans", sans-serif;
}
.table-menu .p-price::after {
  content: attr(data-content);
  font-size: .7em;
  margin-left: 2px;
}

.notes-purple,
.notes-amber,
.notes-green {
  padding: 10px 15px;
  position: relative;
  margin: 10px 0;
}
.notes-purple.off,
.notes-amber.off,
.notes-green.off {
  margin-top: 0;
}

.notes-purple {
  background-color: #f9f4ff;
}

.notes-amber {
  background-color: rgba(246, 229, 204, 0.5);
  border: 1px solid #f6e5cc;
}

.notes-green {
  background-color: rgba(190, 224, 194, 0.4);
  border: 1px solid #bee0c2;
}

/* tourism Scss Document */
.tour-spot {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0;
  margin-bottom: 0px;
}

.tour-spot.index h4 {
  text-align: center;
}

.tour-spot .spot-detail {
  width: 33.3333%;
  padding: 15px;
  display: table;
  text-align: left;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .tour-spot .spot-detail {
    width: 50%;
  }
}
@media screen and (max-width: 479px) {
  .tour-spot .spot-detail {
    width: 100%;
  }
}
.tour-spot .spot-detail h4 {
  font-family: "Noto Serif", serif;
  font-size: 18px;
  font-weight: 500;
}

@media all and (-ms-high-contrast: none) {
  .tour-spot .spot-detail {
    display: inline-block;
  }
}
.spot-detail .lead-exp {
  min-height: 4em;
  margin-bottom: 10px;
}
@media screen and (max-width: 479px) {
  .spot-detail .lead-exp {
    min-height: auto;
  }
}
.spot-detail .lead-exp p {
  font-weight: 300;
  line-height: 1.5;
}

.spot-detail ul.ul-exp {
  display: block;
}
.spot-detail ul.ul-exp li {
  line-height: 1.5;
}
.spot-detail ul.ul-exp li.address, .spot-detail ul.ul-exp li.walk, .spot-detail ul.ul-exp li.access {
  font-size: 13px;
  padding: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.spot-detail ul.ul-exp li.address::before, .spot-detail ul.ul-exp li.walk::before, .spot-detail ul.ul-exp li.access::before {
  font-weight: 300;
  width: 4em;
  font-size: .9em;
  margin-bottom: 3px;
  text-align: center;
  display: inline-block;
  background-color: #016A6B;
  color: white;
  margin-right: 5px;
}

li.address::before {
  content: "住所";
}

li.walk::before {
  content: "徒歩";
}

li.access::before {
  content: "交通";
}

.spot-detail ul.ul-exp li.url {
  margin-top: 5px;
}

.spot-detail ul.ul-exp li.url a {
  width: 100%;
  display: block;
  text-align: center;
  border-radius: 0;
  color: inherit;
  border: 1px solid #666;
  padding: 5px 10px;
  transition: all 0.3s ease 0s;
  background: rgba(255, 255, 255, 0.5);
}
.spot-detail ul.ul-exp li.url a:hover, .spot-detail ul.ul-exp li.url a:active, .spot-detail ul.ul-exp li.url a:focus {
  background-color: #232939;
  color: #FFF;
}
.spot-detail ul.ul-exp li.url a::after {
  font-family: 'icofont';
  content: "\ef1f";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  float: right;
}

div.border {
  border-bottom: 2px solid #43407A;
  margin-bottom: 10px;
  position: relative;
}

h2.event-month {
  font-size: 30px;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  margin-bottom: 0;
  display: inline-block;
  background: #43407A;
  color: white;
  padding: 3px 10px 3px 10px;
}
h2.event-month::after {
  content: "月";
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  margin-left: 3px;
}
h2.event-month.mitei::after {
  content: "";
}

.event-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.event-wrap .event-ph {
  width: 30%;
  display: table;
}
@media screen and (max-width: 479px) {
  .event-wrap .event-ph {
    width: 100%;
    margin-bottom: 10px;
  }
}
.event-wrap .event-ph img {
  width: 100%;
  height: auto;
}
.event-wrap .event-text {
  width: 70%;
  display: table;
  padding-left: 15px;
}
@media screen and (max-width: 479px) {
  .event-wrap .event-text {
    width: 100%;
    padding-left: 0;
  }
}

.event-wrap .event-text h3 {
  font-family: "Noto Serif", serif;
}
.event-wrap .event-text h3::before {
  content: "■";
  color: #008db7;
}

.event-wrap ul.ul-data {
  display: block;
  position: relative;
}
.event-wrap ul.ul-data li {
  text-align: left;
}
.event-wrap ul.ul-data li::before {
  content: attr(data-content);
  font-size: 85%;
  line-height: 1;
  width: 6em;
  text-align: center;
  background-color: #cce5ff;
  display: inline-block;
  padding: 3px 5px;
  margin-right: .8em;
}
.event-wrap ul.ul-data li a {
  font-family: "Open Sans", sans-serif;
}
.event-wrap ul.ul-data li a::after {
  font-family: 'icofont';
  content: "\ef1f";
  font-style: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 5px;
}

.nav-flex-course {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.nav-flex-course li {
  text-align: center;
  list-style: none;
  display: table;
  line-height: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 25%;
}
.nav-flex-course li span {
  display: block;
  font-size: .9em;
  color: #666;
}
@media screen and (max-width: 479px) {
  .nav-flex-course li {
    width: 50%;
  }
}
.nav-flex-course li a {
  font-size: 13px;
  color: #333;
  display: block;
  margin: 5px;
  padding: 4px 6px;
  transition: all 0.5s ease 0s;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  border: 1px solid rgba(35, 41, 57, 0.6);
}
@media screen and (max-width: 479px) {
  .nav-flex-course li a {
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.nav-flex-course li a:hover, .nav-flex-course li a.active {
  color: white;
  background-color: #232939;
  border: 1px solid #232939;
  text-decoration: none;
}

.route-course {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0;
  margin-bottom: 15px;
  text-align: center;
}
.route-course li {
  list-style: none;
  display: table;
  line-height: 1;
  overflow: hidden;
  width: 100%;
}
@media screen and (max-width: 479px) {
  .route-course li {
    margin: 0 5px;
  }
}
.route-course li span {
  text-align: center;
  display: table;
  margin: 0;
  padding: 10px 15px;
  margin-bottom: 2px;
  border: 1px solid #CCC;
  width: 100%;
}
.route-course li::before {
  font-family: 'icofont';
  content: "\ea67";
  color: #666;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.3em;
  display: block;
  text-align: center;
}
@media screen and (max-width: 479px) {
  .route-course li::before {
    margin-right: 5px;
  }
}
.route-course li:first-child::before {
  content: "";
  margin-right: 0;
}

.route-course li span.route01 {
  background-color: #c85554;
  border-color: #c85554;
  color: white;
  display: block;
}
.route-course li span.route02 {
  background-color: #6c9bd2;
  border-color: #6c9bd2;
  color: white;
  display: block;
}
.route-course li span.route03 {
  background-color: #69b076;
  border-color: #69b076;
  color: white;
  display: block;
}
.route-course li span.route04 {
  background-color: #867ba9;
  border-color: #867ba9;
  color: white;
  display: block;
}

@media all and (-ms-high-contrast: none) {
  .route-course li {
    display: inline-block;
  }
}
.img-flex-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
}

.img-flex-2 li {
  text-align: center;
  list-style: none;
  display: table;
  line-height: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 50%;
}
@media screen and (max-width: 479px) {
  .img-flex-2 li {
    width: 50%;
  }
}

/*//////////////////////////////////////////////////////

eco

//////////////////////////////////////////////////////*/
.bg-eco-green {
  background-image: url("../img/bg/bg_eco_green2.jpg");
  background-position: center 25vh;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  position: relative;
}
.bg-eco-green::after {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.8);
}

.eco-heading {
  margin: 20px 0;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .eco-heading {
    margin: 10px 5px;
  }
}
.eco-heading h1 {
  color: #004d25;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 640px) {
  .eco-heading h1 {
    font-size: 26px;
    letter-spacing: 0;
  }
}
.eco-heading h1 span {
  font-size: .8em;
}
.eco-heading .p-before {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: .5em;
}
@media screen and (max-width: 640px) {
  .eco-heading .p-before {
    font-size: 18px;
  }
}
.eco-heading .p-caption {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 640px) {
  .eco-heading .p-caption {
    font-size: 15px;
    text-align: left;
  }
}

.eco-green-wrap {
  padding: 0 1em;
}
@media screen and (max-width: 640px) {
  .eco-green-wrap {
    padding: 1em;
  }
}
.eco-green-wrap .caption p {
  font-size: 16px !important;
  text-align: center;
  margin: 1em 0 2em;
}
@media screen and (max-width: 640px) {
  .eco-green-wrap .caption p {
    text-align: left;
  }
}

.h-eco-icon {
  font-size: 26px;
  position: relative;
  padding: 1rem;
  box-shadow: 5px 5px #54917f;
  border: 2px solid #54917f;
  color: #54917f;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.6);
  text-align: center;
  width: 80%;
  margin: 1em auto;
  /*&:before, &::after{
  	font-family: "icofont";
  	//content: "\";
  }*/
}
@media screen and (max-width: 768px) {
  .h-eco-icon {
    width: 100%;
    font-size: 20px;
  }
}
.h-eco-icon::before {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  height: 10px;
  width: 20px;
  background-color: #fff;
  content: "";
}
.h-eco-icon::after {
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translateX(-50%);
  height: 20px;
  width: 2px;
  background-color: #54917f;
  content: "";
}

.marker-red {
  background: linear-gradient(transparent 80%, #ffadad 80%);
  font-weight: 600;
}

.marker-green {
  background: linear-gradient(transparent 80%, rgba(44, 180, 173, 0.7) 80%);
  font-weight: 600;
}

.table-eco {
  width: auto;
  margin: 15px auto;
}
.table-eco thead tr th {
  font-size: 14px;
  padding: 10px;
  background: #004d25;
  color: #FFF;
  text-align: center;
  vertical-align: middle !important;
  font-weight: 300;
  border-right: 1px solid #777e41;
}
.table-eco thead tr td {
  background: none !important;
}
.table-eco tbody th, .table-eco tbody td {
  width: 25%;
  font-size: 14px;
  padding: 10px !important;
  line-height: 1;
  vertical-align: top;
  border-top: none;
  text-align: center;
  border-right: 1px solid #777e41;
  background: rgba(255, 255, 255, 0.5);
}
.table-eco tbody th:first-child, .table-eco tbody td:first-child {
  border-left: 1px solid #777e41;
  font-weight: 400;
}
.table-eco tbody td {
  border-bottom: 1px solid #777e41;
  font-weight: 700 !important;
}
.table-eco tbody th:first-child {
  border-top: 1px solid #777e41;
}
.table-eco tbody tr:last-child th,
.table-eco tbody tr:last-child td {
  border-bottom: 1px solid #777e41;
}

/*////////////////////////////////////////////////////////////////////////////

Error 404

////////////////////////////////////////////////////////////////////////////*/
.error-page {
  padding-top: 25vh;
  padding-bottom: 30vh;
  overflow: hidden;
  text-align: center;
}
@media screen and (max-width: 479px) {
  .error-page {
    padding-top: 20vh;
    padding-bottom: 50px;
  }
}
.error-page::after {
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  z-index: -1;
}

.error-page .not-found-text h2 {
  color: rgba(0, 161, 233, 0.6);
  font-size: 130px;
  font-weight: 700;
  letter-spacing: 3px;
  font-family: 'Open Sans', sans-serif;
}
@media screen and (max-width: 479px) {
  .error-page .not-found-text h2 {
    font-size: 60px;
  }
}

.error-page .not-found-text h3 {
  color: #FFF;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 5px;
  margin-top: 15px;
  margin-bottom: 15px;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 479px) {
  .error-page .not-found-text h3 {
    font-size: 24px;
  }
}

.error-page p {
  color: #FFF;
  line-height: 2;
}

.not-found-text > a {
  background-color: rgba(255, 255, 255, 0);
  display: inline-block;
  margin-top: 15px;
  padding: 15px 30px;
  border-radius: 0;
}

.not-found-text > a:hover,
.not-found-text > a:focus {
  background-color: rgba(255, 255, 255, 0.3);
  color: #2c3e50;
}

.error-page .btn-detail {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(0, 0, 0, 0.3);
}
.error-page .btn-detail:hover, .error-page .btn-detail:focus, .error-page .btn-detail:active {
  background-color: #03A9F4;
}

.btn:hover, .btn:focus, .btn:active {
  box-shadow: none;
  outline: none !important;
  border-color: transparent;
}

/*////////////////////////////////////////////////////////////////////////////International Resort Hotel Yurakujo SLIDE

////////////////////////////////////////////////////////////////////////////*/
#v-head-slider {
  text-align: center;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  margin-top: 0 auto;
}
@media screen and (max-width: 1024px) {
  #v-head-slider {
    margin-top: 44px;
  }
}
#v-head-slider .v-head-wrap {
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #v-head-slider {
    margin-top: 44px;
  }
}

.v-head-wrap h1 {
  font: 300 40px "Oswald", sans-serif;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 3rem;
  color: white;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(0, 30, 67, 0.4);
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .v-head-wrap h1 {
    font-size: 24px;
    letter-spacing: 0;
    margin-top: 20%;
  }
}
.v-head-wrap h1 span {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  text-shadow: none;
}
.v-head-wrap h1 span a {
  color: #FFF;
  font-weight: 700;
}
.v-head-wrap .plan-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.slider {
  margin: 0 auto;
  width: 100%;
  opacity: 0;
  transition: 3s;
  text-align: center;
}

.slick-initialized {
  opacity: 1;
}

.slider--v,
.topic-slider,
.single-fade {
  display: none;
}

.slider--v.slick-initialized,
.topic-slider.slick-initialized,
.single-fade.slick-initialized {
  display: block;
}

.slider--v {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}
.slider--v.mask::after {
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  z-index: 1;
}
.slider--v img {
  width: 100%;
  margin: auto;
}

.sld--text,
.sld--sub,
.sld--button {
  position: absolute;
  width: 100%;
  left: 0;
  text-align: center;
  color: white;
  z-index: 2;
}
.sld--text img,
.sld--sub img,
.sld--button img {
  width: 20%;
}

.sld--text {
  top: 45%;
  font-family: "Noto Serif", serif;
  font-size: 40px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 991px) {
  .sld--text {
    font-size: 40px;
    top: 45%;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 640px) {
  .sld--text {
    font-size: 20px;
    top: 45%;
    letter-spacing: 0;
  }
}

.sld--sub {
  top: 60%;
  font-size: 18px;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 991px) {
  .sld--sub {
    top: 50%;
  }
}
@media screen and (max-width: 640px) {
  .sld--sub {
    font-size: 14px;
    top: 50%;
  }
}

.sld--button {
  top: 70%;
  left: calc( 50% - 100px );
  display: block;
  width: 200px;
  padding: 5px 15px;
  box-sizing: border-box;
  background: #ffdc00;
  color: #000;
  text-align: center;
  text-decoration: none;
  transition: all .25s ease;
}
.sld--button:hover {
  color: #FFF;
  background: #007c92;
}
@media screen and (max-width: 991px) {
  .sld--button {
    top: 70%;
  }
}
@media screen and (max-width: 479px) {
  .sld--button {
    top: 70%;
  }
}
.sld--button.btn-cyan {
  background: #00a1e9;
  color: #FFF;
  border: 1px solid #00a1e9;
}
.sld--button.btn-cyan:hover {
  color: #FFF;
  background: #222;
  border: 1px solid #222;
}

.slick-current .sld--text {
  animation: slideFromRight 1.5s ease 0s 1 normal;
}

.slick-current .sld--sub {
  animation: slideFromRightSub 2.0s ease 0s 1 normal;
}

.slick-current .sld--button {
  animation: slideFromRightBtn 2.5s ease 0s 1 normal;
}

@keyframes slideFromRight {
  0%, 25% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes slideFromRight {
  0%, 25% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes slideFromRightSub {
  0%, 45% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes slideFromRightBtn {
  0%, 65% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.sld--img {
  top: 30%;
  position: absolute;
  width: 100%;
  left: 0;
  text-align: center;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  .sld--img {
    top: 20%;
  }
}
@media screen and (max-width: 479px) {
  .sld--img {
    top: 20%;
  }
}
.sld--img img {
  width: 40%;
}
@media screen and (max-width: 991px) {
  .sld--img img {
    width: 50%;
  }
}
@media screen and (max-width: 479px) {
  .sld--img img {
    width: 60%;
  }
}

.slick-current .sld--img {
  animation: slideFromRight 1.5s ease 0s 1 normal;
}

.topic-slider {
  margin: 5px auto 0;
  padding: 0 10px;
  position: relative;
  opacity: 0;
  transition: 3s;
}
@media screen and (max-width: 479px) {
  .topic-slider {
    padding: 0;
    margin: 0;
  }
}
.topic-slider div .topic-bnr {
  text-align: center;
  font-size: 14px;
  margin: 0 10px;
}
@media screen and (max-width: 479px) {
  .topic-slider div .topic-bnr {
    font-size: 11px;
    margin: 0 5px;
  }
}
.topic-slider div img {
  width: auto;
  display: block;
}
.topic-slider div a {
  color: rgba(0, 0, 0, 0.6);
}
.topic-slider div a:hover {
  color: #222;
  text-decoration: underline;
}

.topic-slider .slick-next {
  right: 0;
  z-index: 100;
  top: 45%;
}
.topic-slider .slick-prev {
  left: 0;
  z-index: 100;
  top: 45%;
}
.topic-slider .slick-prev::before,
.topic-slider .slick-next::before {
  color: white;
  font-family: 'icofont';
  font-size: 25px;
  line-height: 1;
  opacity: .75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.topic-slider .slick-prev:before {
  content: '\ea9d';
}
.topic-slider .slick-next:before {
  content: '\eaa0';
}
.topic-slider .slick-prev:hover:before,
.topic-slider .slick-prev:focus:before,
.topic-slider .slick-next:hover:before,
.topic-slider .slick-next:focus:before {
  opacity: 1;
}
.topic-slider .slick-slide {
  transition: .3s ease;
}

.slick-initialized {
  opacity: 1;
}

.slick-dots li button::before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button::before {
  opacity: .8;
  color: deepskyblue;
}

/*--------------------------------------------------------------------
 R-whith
--------------------------------------------------------------------*/
.rsv-wrap {
  padding-top: 20px;
}
.rsv-wrap h3 {
  text-align: center;
  color: white;
  font-weight: 300;
  margin-bottom: 15px;
}
.rsv-wrap h4 {
  color: white;
  text-align: center;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 10px;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.rsv-wrap .color-border {
  background-color: #666;
  height: 3px;
  width: 60px;
  position: relative;
  z-index: 1;
  margin: -5px auto 5px;
  margin-bottom: 25px;
}
.rsv-wrap iframe {
  width: 100%;
  min-height: 180px;
}
@media screen and (max-width: 768px) {
  .rsv-wrap iframe {
    min-height: 250px;
  }
}
@media only screen and (max-width: 479px) {
  .rsv-wrap {
    display: none;
  }
}

.bg-rsv hr {
  margin: 0 20px 10px;
  border: 0;
  border-top: 1px solid #666;
}
@media only screen and (max-width: 479px) {
  .bg-rsv hr {
    display: none;
  }
}

.rwith-nav {
  margin: 10px;
  padding: 0;
  position: relative;
  left: 50%;
  float: left;
  font-size: 12px;
}
@media only screen and (max-width: 990px) {
  .rwith-nav {
    left: auto;
    float: none;
  }
}

.rwith-nav li {
  font-size: 12px;
  font-weight: 300;
  float: left;
  position: relative;
  left: -50%;
  box-sizing: border-box;
  list-style-type: none;
  margin-bottom: 0;
}
@media only screen and (max-width: 990px) {
  .rwith-nav li {
    display: inline-block;
    width: 33.333%;
    left: 0;
    list-style-type: none;
    border-left: none;
    margin-bottom: 10px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .rwith-nav li {
    width: 50%;
  }
}

.rwith-nav li a {
  color: white;
  padding: .3em 1.5em;
}
.rwith-nav li a::before {
  font-family: 'icofont';
  content: "\ea69";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-right: 3px;
  display: inline-block;
}
.rwith-nav li a:hover {
  color: #28bbf8;
  text-decoration: underline;
}
@media only screen and (max-width: 990px) {
  .rwith-nav li a {
    color: white;
    margin: 0 5px;
    padding: 5px;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .rwith-nav li a {
    padding: 5px;
  }
}

.bg-rsv {
  background: rgba(35, 41, 57, 0.8);
  color: #EEE;
}

.rsv-frame {
  display: flex;
  justify-content: center;
}
.rsv-frame .p-title {
  font-size: .9em;
  color: #CCC;
  display: inline-block;
  border: 1px solid #666;
  padding: 0 5px;
}

.bg-rsv-iframe {
  background: rgba(47, 55, 77, 0);
}

.flex-rsv {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  color: #F0F0F0;
}
.flex-rsv .form-group {
  margin-bottom: 5px;
  margin-top: 5px;
  position: relative;
}
.flex-rsv .form-control {
  box-shadow: none !important;
  border: none;
  margin-bottom: 0;
  height: 1;
  display: inline-block;
  padding: 3px 4px;
  text-align: center;
  border-radius: 2px !important;
}

.flex-rsv .rsv-item-wrap {
  display: table;
  padding-right: 20px;
}
.flex-rsv .rsv-item-wrap::before {
  content: attr(data-content);
  font-size: .9em;
  line-height: 1;
  text-align: left;
  display: block;
  padding-bottom: 3px;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 479px) {
  .flex-rsv .rsv-item-wrap {
    width: 100%;
    display: inline-block;
  }
}

.flex-rsv .rsv-item {
  margin: 0;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  padding-right: .5em;
}

.flex-rsv .btn {
  margin-top: 10px;
  margin-left: 20px;
  background: #28bbf8;
  border: 1px solid #28bbf8;
  transition: all 0.3s ease 0s;
}
.flex-rsv .btn:hover, .flex-rsv .btn:active, .flex-rsv .btn:focus {
  background-color: #333;
  border: 1px solid #28bbf8;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .flex-rsv .btn {
    margin: auto;
  }
}

.flex-rsv select {
  text-align: center;
  margin-right: 4px;
  color: #2f374d;
  background-color: rgba(255, 255, 255, 0.9);
  border: thin solid #FFF;
  border-radius: 0px;
  display: inline-block;
  font: inherit;
  line-height: 1.5;
  padding: 0.4em 3.5em 0.4em .8em;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.flex-rsv select.minimal {
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
}

.flex-rsv select.minimal:focus {
  background-image: linear-gradient(45deg, green 50%, transparent 50%), linear-gradient(135deg, transparent 50%, green 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em, calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
  outline: 0;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

#rsv-fix {
  position: fixed;
  top: 25vh;
  right: 0px;
  font-size: 12px;
  z-index: 1;
  display: none;
}
@media only screen and (max-width: 1024px) {
  #rsv-fix {
    font-size: 10px;
    top: 0;
    z-index: 10005;
    height: 44px;
    display: table;
  }
}

#rsv-fix a {
  color: white;
  background: #0073a8;
  text-align: center;
  line-height: 3;
  display: table-cell;
  zoom: 1;
  padding: 12px 15px;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 1024px) {
  #rsv-fix a {
    padding: 5px 10px !important;
  }
}

#rsv-fix a:hover {
  background: #0bbff2;
  padding: 12px 25px;
}

#rsv-fix .icon-bed {
  line-height: 1;
}
#rsv-fix .icon-bed::before {
  font-family: 'icofont';
  display: block;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\eeb7";
  font-size: 30px;
}
@media only screen and (max-width: 1024px) {
  #rsv-fix .icon-bed::before {
    font-size: 20px;
  }
}

/*////////////////////////////////////////////////////////////////////////////

nav scss

////////////////////////////////////////////////////////////////////////////*/
.link-arrow-right {
  font-weight: 400;
}
.link-arrow-right::after {
  font-family: 'icofont';
  content: "\ea6d";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-left: 5px;
}

.p-nav-links ul {
  padding: 0;
  margin: 0;
}
.p-nav-links ul li {
  padding: 0;
  margin: 0 0 .5em 0;
  list-style: none;
}
.p-nav-links ul li.active a {
  color: #2e2e2e;
  border-bottom: 2px solid #28bbf8;
}

ul.ul-link li {
  list-style: none;
}
ul.ul-link li::before {
  font-family: 'FontAwesome';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f054";
  letter-spacing: 5px;
}

.ul-sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 10px 0;
}
.ul-sns li {
  text-align: center;
  list-style: none;
  display: table;
  line-height: none;
  overflow: hidden;
  margin: 5px;
  padding: 0;
}
.ul-sns li img {
  width: 35px;
}

.nav-flex-5 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.nav-flex-5 li {
  text-align: center;
  list-style: none;
  display: table;
  line-height: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 20%;
}
@media screen and (max-width: 479px) {
  .nav-flex-5 li {
    width: 50%;
  }
}
.nav-flex-5 li a {
  font-size: 13px;
  color: #333;
  display: block;
  margin: 5px;
  padding: 4px 15px;
  transition: all 0.5s ease 0s;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  border: 1px solid rgba(35, 41, 57, 0.3);
}
@media screen and (max-width: 479px) {
  .nav-flex-5 li a {
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.nav-flex-5 li a:hover, .nav-flex-5 li a.active {
  color: white;
  background-color: #232939;
  border: 1px solid #232939;
  text-decoration: none;
}

.nav-flex-6 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.nav-flex-6 li {
  text-align: center;
  list-style: none;
  display: table;
  line-height: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 16.6666%;
}
@media screen and (max-width: 479px) {
  .nav-flex-6 li {
    width: 50%;
  }
}
.nav-flex-6 li a {
  font-size: 13px;
  color: #333;
  display: block;
  margin: 5px;
  padding: 4px 10px;
  transition: all 0.5s ease 0s;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  border: 1px solid rgba(35, 41, 57, 0.3);
}
@media screen and (max-width: 479px) {
  .nav-flex-6 li a {
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.nav-flex-6 li a:hover, .nav-flex-6 li a.active {
  color: white;
  background-color: #232939;
  border: 1px solid #232939;
  text-decoration: none;
}

#scrollUp {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 0px;
  color: #fff;
  font-size: 22px;
  padding: 8px 10px;
  bottom: 20px;
  right: 10px;
  opacity: 0.9;
}
#scrollUp:hover {
  background-color: #03A9F4;
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  #scrollUp {
    bottom: 0;
    padding: 5px 12px;
    right: 0;
    opacity: 0.8;
  }
}
@media print {
  #scrollUp {
    display: none;
  }
}

.pagination > li > a,
.pagination > li > span {
  color: #34325A;
  background-color: #FFF;
  padding: 6px 12px;
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  color: #FFF;
  background-color: #232939;
  border-color: #232939;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  color: #ffffff;
  background-color: #999;
  border-color: #999;
  cursor: default;
}

.pagination > li:first-child > a::before,
.pagination > li:last-child > a::before {
  font-family: 'icofont';
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.pagination > li:first-child > a::before {
  content: "\ea7b";
}

.pagination > li:last-child > a::before {
  content: "\ea7c";
}

.anchorlink {
  position: relative;
  top: -100px;
  display: block;
  z-index: -9999;
}
@media screen and (max-width: 479px) {
  .anchorlink {
    top: -50px;
  }
}

/* Scss Document */
.Google-Map {
  width: 100%;
  overflow: hidden;
  height: 300px;
}

.Google-Map > iframe {
  width: 100%;
  height: 640px;
  border: 0;
  margin-top: -170px;
}

.my-Map {
  width: 100%;
  overflow: hidden;
  height: 600px;
  margin-bottom: 15px;
}

.my-Map > iframe {
  width: 100%;
  height: 600px;
  border: 0;
}

.route-Map {
  width: 100%;
  overflow: hidden;
  height: 800px;
  margin-bottom: 15px;
}
@media screen and (max-width: 479px) {
  .route-Map {
    height: 300px;
  }
}

.route-Map > iframe {
  width: 100%;
  height: 800px;
  border: 0;
}
@media screen and (max-width: 479px) {
  .route-Map > iframe {
    height: 300px;
  }
}

.gmap iframe {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 300px;
}
@media screen and (max-width: 479px) {
  .gmap iframe {
    height: 200px;
  }
}

/*////////////////////////////////////////////////////////////////////////////

btn scss

////////////////////////////////////////////////////////////////////////////*/
.btn--section {
  padding-top: 20px;
  text-align: center;
}

.btn {
  border-radius: 0px;
  padding: 10px 40px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .btn {
    padding: 10px 15px;
  }
}
@media screen and (max-width: 479px) {
  .btn {
    padding: 10px 5px;
    letter-spacing: 0;
  }
}
.btn:hover, .btn:focus, .btn:active {
  box-shadow: none;
  outline: none !important;
  border-color: transparent;
}

.btn-md {
  padding: 12px 40px;
}
@media screen and (max-width: 479px) {
  .btn-md {
    padding: 12px 12px;
  }
}

.radius-4 {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}

.btn-cyan {
  background-color: #28bbf8;
}
.btn-cyan:hover, .btn-cyan:active, .btn-cyan:focus {
  background-color: #232939;
  color: #FFF;
}
@media screen and (max-width: 479px) {
  .btn-cyan {
    font-size: .9em;
  }
}

.btn-detail,
.btn-map {
  color: inherit;
  font-size: 15px;
  border: 1px solid #666 !important;
  transition: all 0.3s ease 0s;
  background: white;
}
.btn-detail:hover, .btn-detail:active, .btn-detail:focus,
.btn-map:hover,
.btn-map:active,
.btn-map:focus {
  background-color: #232939;
  color: #FFF;
  border: 1px solid #666;
}

.btn-mov {
  background: #ea5550;
  color: white;
}
.btn-mov i {
  font-size: 1.2em;
}
.btn-mov:hover, .btn-mov:active, .btn-mov:focus {
  background-color: #232939;
  color: #FFF;
}

.btn-plan-link {
  font-size: 14px;
  padding: 5px 40px;
  transition: all 0.3s ease 0s;
  background: #0073a8;
  color: #FFF;
}
.btn-plan-link:hover, .btn-plan-link:active, .btn-plan-link:focus {
  background-color: #0bbff2;
  color: #FFF;
}

.btn-next,
.btn-back,
.btn-mail,
.btn-mobile,
.btn-map {
  transition: all 0.3s ease 0s;
}

.btn-arrow::before,
.btn-next::after,
.btn-back::before,
.btn-mail::before,
.btn-mobile::before,
.btn-map::before,
.btn-plan-link::after {
  font-family: 'icofont';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.2em;
}

.btn-next::after {
  content: "\eab8";
  margin-left: 1em;
  margin-right: -1em;
}

.btn-back::before {
  content: "\eab5";
  margin-right: 1em;
  margin-left: -1em;
}

.btn-mail {
  font-size: 18px;
}
.btn-mail::before {
  content: "\ef14";
  margin-right: 15px;
}

.btn-map::before {
  content: "\ed42";
  font-size: 1em;
}

.btn-mobile {
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
}
.btn-mobile::before {
  content: "\ea3b";
  margin-right: 15px;
  display: inline-block;
}

.btn-plan-link::after {
  content: "\ed11";
  font-size: 1em;
  margin-left: 5px;
  opacity: 1.0;
}

@media only screen and (min-width: 768px) {
  .btn-mobile:hover, .btn-mobile:focus, .btn-mobile:active {
    background-color: inherit;
    border: 1px solid #666;
    pointer-events: none;
    cursor: default;
  }
  .btn-mobile span {
    color: #333 !important;
  }
}
.links {
  margin: 15px 0;
  padding-left: 0;
  list-style: none;
}
.links li {
  text-align: center;
  margin: 0 10px 10px 0;
  display: inline-block;
  float: left;
}
@media screen and (max-width: 479px) {
  .links li {
    display: block;
  }
}

.btn-arrow, .btn-arrow:focus, .btn-arrow:active,
.btn-links, .btn-links:focus, .btn-links:active,
.btn-pdf, .btn-pdf:focus {
  border-radius: 0;
  color: #282e3c;
  background-color: #FFF;
  border: 1px solid #555;
  padding: 8px 25px 8px 15px;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}
@media screen and (max-width: 479px) {
  .btn-arrow, .btn-arrow:focus, .btn-arrow:active,
  .btn-links, .btn-links:focus, .btn-links:active,
  .btn-pdf, .btn-pdf:focus {
    padding: 8px 5px;
    font-size: 13px;
  }
}

.btn-arrow:hover,
.btn-links:hover,
.btn-pdf:hover {
  border: 1px solid transparent;
  background-color: #282e3c;
  color: #FFF;
}

.btn-arrow::before,
.btn-links::before,
.btn-pdf:before {
  font-family: 'icofont';
  color: inherit;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.2em;
  margin-right: 5px;
}

.btn-links::before {
  content: "\ef1f";
  padding-left: 10px;
}

.btn-pdf:before {
  content: "\eb1e";
  padding-left: 10px;
}

.btn-arrow::before {
  content: "\eaa0";
  padding-left: 10px;
}

.label {
  font-weight: normal;
  border-radius: 2px;
  margin-right: 2px;
  padding: 3px 6px;
}

.label-red {
  background-color: #e8383d;
  color: white;
}

/*////////////////////////////////////////////////////////////////////////////

table scss

////////////////////////////////////////////////////////////////////////////*/
.table-auto {
  width: auto;
}

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: none;
}

.table-default > tbody > tr {
  border-bottom: 1px dotted #DDD;
}
.table-default > tbody > tr:first-child {
  border-top: 1px dotted #DDD;
}
@media screen and (max-width: 479px) {
  .table-default > tbody > tr {
    border-bottom: none;
  }
}
.table-default > tbody > tr > th, .table-default > tbody > tr > td {
  padding: 10px 6px;
}
@media screen and (max-width: 479px) {
  .table-default > tbody > tr > th, .table-default > tbody > tr > td {
    empty-cells: hide !important;
  }
}
@media screen and (max-width: 479px) {
  .table-default .border {
    border-bottom: 1px dotted #DDD;
  }
}
@media screen and (max-width: 479px) {
  .table-default .hide-cell {
    display: none;
  }
}

.table-default > tbody > tr > th {
  width: 20%;
  font-weight: 400;
  white-space: nowrap;
}
.table-default > tbody > tr > th::before {
  content: "";
  ine-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 479px) {
  .table-default > tbody > tr > th {
    width: 100%;
    float: left;
    clear: left;
    background: #F5F5F5;
    padding: 5px 8px;
  }
}

.table-default > tbody > tr > td {
  font-weight: 300;
}
@media screen and (max-width: 479px) {
  .table-default > tbody > tr > td {
    width: 100%;
    float: left;
    clear: left;
    background: #FFF;
    padding: 5px 8px;
  }
}

.table-profile {
  margin-top: 15px;
}
.table-profile > tbody > tr {
  border-bottom: 1px dotted #DDD;
  font-size: 15px;
}
.table-profile > tbody > tr:first-child {
  border-top: 1px dotted #DDD;
}
@media screen and (max-width: 479px) {
  .table-profile > tbody > tr {
    border-bottom: none;
    font-size: 13px;
  }
}
.table-profile > tbody > tr > th, .table-profile > tbody > tr > td {
  padding: 10px 6px;
}
@media screen and (max-width: 479px) {
  .table-profile > tbody > tr > th, .table-profile > tbody > tr > td {
    empty-cells: hide !important;
  }
}
@media screen and (max-width: 479px) {
  .table-profile .border {
    border-bottom: 1px dotted #DDD;
  }
}
@media screen and (max-width: 479px) {
  .table-profile .hide-cell {
    display: none;
  }
}

.table-profile > tbody > tr > th {
  width: 20%;
  font-weight: 400;
  white-space: nowrap;
}
.table-profile > tbody > tr > th::before {
  content: "";
  ine-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 479px) {
  .table-profile > tbody > tr > th {
    width: 100%;
    float: left;
    clear: left;
    background: #F5F5F5;
    padding: 5px 8px;
  }
}

.table-profile > tbody > tr > td {
  font-weight: 300;
}
@media screen and (max-width: 479px) {
  .table-profile > tbody > tr > td {
    width: 100%;
    float: left;
    clear: left;
    background: #FFF;
    padding: 5px 8px;
  }
}

.news .editor table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #dddddd;
}
.news .editor table th, .news .editor table td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border: 1px solid #dddddd !important;
}
.news .editor table th {
  font-weight: 400;
  background: #F9F9F9;
}

@media screen and (max-width: 479px) {
  .news .editor table th, .news .editor table td {
    empty-cells: hide;
  }
  .news .editor table th {
    float: left;
    clear: left;
    width: 100%;
    padding: 5px !important;
    border: none !important;
    background: #F5F5F5;
  }
  .news .editor table td {
    float: left;
    width: 100%;
    padding: 8px 5px !important;
    text-align: left;
    border: none !important;
    background-color: #FFF;
  }
}
/* ========================================= 
::: Histry Table
========================================= */
.history > tbody > tr > th {
  /*border-top: 5px solid rgba(98,51,60, .4);*/
}

.history th,
.history td {
  font-weight: 400;
  padding: 8px 5px;
}

.history th {
  white-space: nowrap;
}

.history tr:last-child {
  border-bottom: 1px dotted #DDD;
}

@media screen and (max-width: 479px) {
  .history th,
  .history td {
    empty-cells: hide;
  }

  .history th {
    float: left;
    clear: left;
    width: 100%;
    padding: 5px !important;
    background: #F0F0F0;
    border-top: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
  }

  .history td {
    float: left;
    width: 100%;
    padding: 8px 5px !important;
    text-align: left;
    border: none !important;
    /*white-space: nowrap;*/
  }
}
/*////////////////////////////////////////////////////////////////////////////

form scss

////////////////////////////////////////////////////////////////////////////*/
#form-val .form-group {
  margin-bottom: 20px;
  margin-top: 10px;
  position: relative;
}

.form-group lebel > input {
  margin-right: 2em !important;
}

.form-group input {
  position: relative;
  vertical-align: middle;
  top: 5px;
  margin-right: 5px;
}
@media screen and (max-width: 479px) {
  .form-group input {
    top: 0;
  }
}

#form-val .panel {
  margin-bottom: 20px;
  background-color: #ffffff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 479px) {
  #form-val .panel {
    margin-left: -5px;
    margin-right: -5px;
  }
}

#form-val .panel-heading {
  font-weight: 500;
  padding: 10px 15px;
  background-color: #34325A;
  color: white;
  text-align: center;
}

#form-val .panel-body {
  padding: 15px;
}
@media screen and (max-width: 479px) {
  #form-val .panel-body {
    padding: 5px;
  }
}

.form-group input[type="radio"] {
  display: inline-block;
  margin: 0;
  padding-right: 2px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  cursor: pointer;
}

@media screen and (max-width: 479px) {
  .form-group .radio {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

.form-control {
  box-shadow: none !important;
  border: 1px solid #ccc;
  margin-bottom: 5px;
  display: inline-block;
}
.form-control:hover, .form-control:focus, .form-control:active {
  outline: none;
}

.form-control-static {
  border-bottom: 1px solid #CCC;
  color: #000;
}

input {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.control-label {
  color: #666;
  font-weight: 500;
}

.label-required::before {
  content: '必須';
  padding: 4px .5em;
  font-size: 12px;
  font-weight: normal;
  line-height: 1;
  margin-right: .5em;
  display: inline-block;
  color: #FFF;
  border-radius: 2px;
  background-color: #e95464;
  float: left;
}
@media screen and (max-width: 479px) {
  .label-required::before {
    font-size: 11px;
    margin-top: 0;
  }
}

#form-val.confirm .label-required::before {
  display: none;
}
#form-val.confirm .control-label {
  color: #999;
}

.btn-confirm, .btn-confirm:focus,
.btn-back, .btn-back:focus,
.btn-send, .btn-send:focus {
  border-radius: 0;
  color: #282e3c;
  background-color: #FFF;
  border: 1px solid #555;
  padding: 8px 25px;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.btn-confirm:hover,
.btn-back:hover,
.btn-send:hover {
  background-color: #282e3c;
  color: #FFF;
}

.btn-confirm::after,
.btn-send::after,
.btn-back::before {
  font-family: 'icofont';
  color: inherit;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.3em;
}

.btn-confirm::after {
  content: "\eaa0";
  padding-left: 5px;
}

.btn-send::after {
  content: "\efb4";
  padding-left: 5px;
}

.btn-back::before {
  content: "\eab5";
  padding-right: 5px;
}

.thanks {
  text-align: center;
  line-height: 2;
}

@media screen and (max-width: 479px) {
  .thanks {
    text-align: left;
  }
}
/* Form Order */
.vertical-align-em input,
.vertical-align-em select {
  vertical-align: middle;
}

label.normal {
  font-weight: normal;
}

label.normal input {
  margin-left: 5px;
  margin-right: 5px;
}

/*////////////////////////////////////////////////////////////////////////////

print scss

////////////////////////////////////////////////////////////////////////////*/
@media print {
  a[href]:after {
    content: "" !important;
  }

  abbr[title]:after {
    content: "" !important;
  }
}
@media print {
  body {
    animation: none !important;
    transform: none !important;
  }

  header, footer {
    display: none;
  }

  .header-vsl {
    display: none;
  }

  .bg-flink {
    display: none;
  }

  .nav-flex-course,
  .nav-flex-5 {
    display: none;
  }
}
@media print {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-sm-11 {
    width: 91.66666667%;
  }

  .col-sm-10 {
    width: 83.33333333%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-8 {
    width: 66.66666667%;
  }

  .col-sm-7 {
    width: 58.33333333%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-5 {
    width: 41.66666667%;
  }

  .col-sm-4 {
    width: 33.33333333%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-2 {
    width: 16.66666667%;
  }

  .col-sm-1 {
    width: 8.33333333%;
  }

  .col-sm-pull-12 {
    right: 100%;
  }

  .col-sm-pull-11 {
    right: 91.66666667%;
  }

  .col-sm-pull-10 {
    right: 83.33333333%;
  }

  .col-sm-pull-9 {
    right: 75%;
  }

  .col-sm-pull-8 {
    right: 66.66666667%;
  }

  .col-sm-pull-7 {
    right: 58.33333333%;
  }

  .col-sm-pull-6 {
    right: 50%;
  }

  .col-sm-pull-5 {
    right: 41.66666667%;
  }

  .col-sm-pull-4 {
    right: 33.33333333%;
  }

  .col-sm-pull-3 {
    right: 25%;
  }

  .col-sm-pull-2 {
    right: 16.66666667%;
  }

  .col-sm-pull-1 {
    right: 8.33333333%;
  }

  .col-sm-pull-0 {
    right: auto;
  }

  .col-sm-push-12 {
    left: 100%;
  }

  .col-sm-push-11 {
    left: 91.66666667%;
  }

  .col-sm-push-10 {
    left: 83.33333333%;
  }

  .col-sm-push-9 {
    left: 75%;
  }

  .col-sm-push-8 {
    left: 66.66666667%;
  }

  .col-sm-push-7 {
    left: 58.33333333%;
  }

  .col-sm-push-6 {
    left: 50%;
  }

  .col-sm-push-5 {
    left: 41.66666667%;
  }

  .col-sm-push-4 {
    left: 33.33333333%;
  }

  .col-sm-push-3 {
    left: 25%;
  }

  .col-sm-push-2 {
    left: 16.66666667%;
  }

  .col-sm-push-1 {
    left: 8.33333333%;
  }

  .col-sm-push-0 {
    left: auto;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-sm-offset-0 {
    margin-left: 0%;
  }

  .visible-xs {
    display: none !important;
  }

  .hidden-xs {
    display: block !important;
  }

  table.hidden-xs {
    display: table;
  }

  tr.hidden-xs {
    display: table-row !important;
  }

  th.hidden-xs,
  td.hidden-xs {
    display: table-cell !important;
  }

  .hidden-xs.hidden-print {
    display: none !important;
  }

  .hidden-sm {
    display: none !important;
  }

  .visible-sm {
    display: block !important;
  }

  table.visible-sm {
    display: table;
  }

  tr.visible-sm {
    display: table-row !important;
  }

  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
