@charset "utf-8";

/*----ヒーローヘッダー文字----*/
.headline {
  position: relative;
  top: 50%;
  left: 51%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 13;
  text-shadow: 3px 3px 6px #0a0a0a;
  font-family: 'Shippori Mincho', serif;
}



.headline h2 {
  margin: 0;
  font-size: 50px;
  color: #fff;
  font-weight: 100;
  line-height: 1.9em;
  text-align: center;
}

.headline p {
  color: #fff;
  font-weight: 100;
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  line-height: 1.2em;
  text-align: center;
}

/*----ENDヒーローヘッダー----*/

/*---------- ヒーローヘッダースライダー ------------*/
.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.slider-hero {
  position: absolute;
  top: 15px;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: #000;
}

.slider-hero .image {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: anime 10s 0s infinite;
  /* ②で設定したanimation-delayをスライド数で割った時間をdelay(15s)に入れる */
  animation-duration:20s; /*1秒間でアニメーションを完了する*/
  animation-delay:0s; /*1秒後にアニメーション開始*/
  opacity: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.overlay-1 {
  background: #03162f47;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
}
/*
    ②画像の数ごとに animation-delay を設定します。
  　下記では、5秒間隔で切り替わるように設定しています。
  */
.slider-hero .image:nth-of-type(1) {
  background-image: url(./img/sl-1.jpg);
}

.slider-hero .image:nth-of-type(2) {
  animation-delay: 5s;/*アニメーション開始までの時間(秒)*/
  background-image: url(./img/sl-2.jpg);
}
.slider-hero .image:nth-of-type(3) {
  animation-delay: 10s;/*アニメーション開始までの時間(秒)*/
  background-image: url(./img/sl-3.jpg);
}
.slider-hero .image:nth-of-type(4) {
  animation-delay: 15s;/*アニメーション開始までの時間(秒)*/
  background-image: url();
}
.slider-hero .image:nth-of-type(5) {
  animation-delay: 20s;/*アニメーション開始までの時間(秒)*/
  background-image: url();
}


@keyframes anime {
	0% {opacity: 0;}
	10% {opacity: 1;}
	40% {opacity: 1;}
	50% {opacity: 1;}
	60% {opacity: 0;}
	100% {opacity: 0;}
}

/*------END ヒーローヘッダースライダー--------*/

/*---メインコンテンツ---*/
#main_contents {
  width: 100%;
  position: relative;
  z-index: 10;
}

.clearfix {
  display: block;
}

/* .section{
	height: 400px;
	width: 100%;
	background-image: url(img/index/bg.png);
	background-position: left top;
	background-repeat: no-repeat;
	    background-size: cover;
} */
.section-header-1 {
  text-align: center;
  padding-top: 90px;
  padding-bottom: 50px;
  background-repeat: no-repeat;
  background-position: center top;
}

.section-header {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 20px;
  background-repeat: no-repeat;
  background-position: center top;
}

h2.title.section-title_jp {
  /* font-size: 15px; */
  padding-top: 5px;
  width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

/*---コンテナ1---*/
.season-container {
  display: flex;
  padding-top: 5px;
}

/*---season-block-1---*/
.season-block-1 {
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 300px;
  padding-top: 15px;
  padding-right: 0;
  padding-bottom: 10px;
  padding-left: 0;
}

.season-block-1:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  /* background: url(/sd/wp-content/themes/website/img/index/con1.jpg) no-repeat center center; */
  background-color: #041562;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  /*    -webkit-transition: all .3s ease-out;*/
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  /*transition: all .3s ease-out;*/
  transform: scale(1.3);
  transition: .3s ease-in-out;
}

.season-block-1:hover:after {
  opacity: .8;
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

/*---右予約box---*/
.inner-box {
  width: 100%;
  position: absolute;
  margin-left: 1%;
  /* background-color: #0e4b63; */
}

.season-block-1 .inner {
  z-index: 1;
  text-align: center;
  position: relative;
  padding-top: 80px;
  padding-right: 30px;
  padding-bottom: 20px;
  padding-left: 30px;
  display: block;
}

/*---END　season-block-1---*/
/*---season-block-2---*/
.season-block-2 {
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 300px;
  margin-left: 5px;
  padding-top: 15px;
  padding-right: 0;
  padding-bottom: 10px;
  padding-left: 0;
}

.season-block-2:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  /* background: url(/sd/wp-content/themes/website/img/index/con2.jpg) no-repeat center center; */
  background-color: #11468F;

  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  /*    -webkit-transition: all .3s ease-out;*/
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  /*transition: all .3s ease-out;*/
  transform: scale(1.3);
  transition: .3s ease-in-out;
}

.season-block-2:hover:after {
  opacity: .8;
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.season-block-2 .inner {
  z-index: 1;
  text-align: center;
  position: relative;
  padding-top: 80px;
  padding-right: 30px;
  padding-bottom: 20px;
  padding-left: 30px;
  display: block;
}

/*---season-block-3---*/
.season-block-3 {
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 300px;
  margin-left: 5px;
  padding-top: 15px;
  padding-right: 0;
  padding-bottom: 10px;
  padding-left: 0;
}

.season-block-3:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  /* background: url(/sd/wp-content/themes/website/img/index/con3.jpg) no-repeat center center; */
  background-color: #3f5e83;

  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  /*    -webkit-transition: all .3s ease-out;*/
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  /*transition: all .3s ease-out;*/
  transform: scale(1.3);
  transition: .3s ease-in-out;
}

.season-block-3:hover:after {
  opacity: .8;
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.season-block-3 .inner {
  z-index: 1;
  text-align: center;
  position: relative;
  padding-top: 80px;
  padding-right: 30px;
  padding-bottom: 20px;
  padding-left: 30px;
  display: block;
}

/*---左予約box---*/
.inner-box-R {
  width: 450px;
  position: absolute;
  margin-left: 5%;
  margin-top: 70px;
}

.h2 .top-event__title {
  font-size: 60px;
  line-height: 1px;
  color: #000;
  margin: 10px;
}

.top-event__title {
  color: #FFF;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0.05em;
  margin: 0 0 12px;
  font-weight: 500;
}

p.top-event__subtitle {
  color: white;
  width: 100%;
  height: 100px;
  /* font-size: 18px; */
  padding-top: 15px;
  text-align: center;
  text-shadow: 3px 3px 6px #0a0a0a;
  font-weight: 600;
}

/*---END season-block-2---*/
/*---ボタン---*/
.btn04 {
  position: relative;
  display: inline-block;
  border-radius: 4px;
  color: #FFFFFF !important;
  text-decoration: none;
  /* font-size: 18px; */
  transition: .8s;
  background-color: #9f9a9aa1;
  /* margin-top: 80px; */
  padding-top: 10px;
  padding-right: 32px;
  padding-bottom: 10px;
  padding-left: 32px;
}

.btn04 span {
  position: relative;
  z-index: 1;
}

.btn04::before,
.btn04::after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 50%;
  height: 100%;
  background-color: #82c1ea3b;
  /*-webkit-transition: .2s;
  transition: .2s;*/

}

.btn04::before {
  left: 0;
}

.btn04::after {
  right: 0;
}

.btn04:hover::before,
.btn04:hover::after {
  width: 0;
  background: #ffffff;
}

.btn04:hover {
  color: #fcfafa8f;
}

.btn04:visited {
  color: #fdfcfc;
}

/*---ENDボタン---*/

/*---top-news---*/
.widget-meta {
  text-align: center;
  color: #222;
}

section#index-news {
  width: 100%;
  margin-bottom: 200px;
}

div#index-news-title {
  display: block;
  width: 50%;
  text-align: right;
  margin-left: auto;
  margin-right: auto;
}

.news-inner {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

li.time {
  width: 100%;
  padding-top: 8px;
  display: flex;
  padding-bottom: 8px;
  /* width: 790px; */
  border-bottom: solid 1px #ddd;
  margin: 0;
  font-size: 14px;
}

.new {
  width: 40px;
  color: red;
}
span.index-news-title {
  color: #333;
}
span.index-news-date {
  padding-right: 50px;
  color: #da2408;
}

ol,
ul {
  list-style: none;
}

h2.front-tit,
.content h2.widgettitle {
  /* font-size: 24px; */
  /* text-align: center; */
  /* margin-top: 150px; */
  /* font-family: "游明朝体", "Yu Mincho", YuMincho, "ＭＳ Ｐ明朝", "MS PMincho", "ＭＳ 明朝", "MS Mincho", "ヒラギノ明朝 Pro W6", HiraMinPro-W6, sans-serif; */
}

/*---END top-news---*/







/*--セカンドセクション--*/
/* ボタン */
/* section {
  max-width: 300px; 
   margin: 0 auto;
  display: inline-block;
  width: 600px;
} */

/* a.btn_04 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  position: relative;
  background: #228bc8;
  border: 1px solid #228bc8;
  box-sizing: border-box;
  padding: 0 25px 0 40px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
}

a.btn_04:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 25px;
  margin-top: -6px;
}

a.btn_04:hover {
  background: #fff;
  color: #228bc8;
}

a.btn_04:hover:before {
  border-top: 2px solid #228bc8;
  border-right: 2px solid #228bc8;
} */

/* ENDボタン */



/* footer */
.footer_logo_text_area {
  position: absolute;
  display: block;
  width: 250px;
  font-size: 12px;
  padding-top: 10px;
}

h3#footer_logo_text {
  color: white;
}

h4#footer_description {
  color: white;
  font-size: 12px;
  line-height: 1.7;
  padding-top: 10px;
}

.footer-widget-box {}

.footer a:link {
  color: rgb(255 255 255);
}

/* end footer */
/* 会社概要 */
.div_table {
  margin: 20px 0;
}
.div_tr {
  width: 100%;
  border-bottom: 1px solid #e8e8e8;
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 10px;
  padding-left: 0px;
}
.div_th {
  width: 20%;
  max-width: 185px;
  vertical-align: top;
  display: inline-block;
  font-weight: bold;
  padding: 0 0 0 15px;
}
.div_td {
  display: inline-block;
  width: 80%;
  max-width: 582px;
}
h3.corp{
  width: 100%;
  font-weight: bold;
  border-left-width: 5px;
  border-left-style: solid;
  border-left-color: rgb(91 184 179);
    padding: 5px 0 5px 20px;
  font-size: 12pt;
  margin: 20px 0 0 0;
}
h2.corp {
  background-color: #253472b8;  
  /* width: 100%; */
  /* height: 50px; */
  font-weight: bold;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  font-size: 14pt;
  color: #fff;
}
.con_box {
  display: block;
  padding-top: 20px;
}
.l {
  /* padding-right: 60px; */
  line-height: 2.0em;
  width: 100%;
  padding-bottom: 20px;
}
img.face {
  width: 100%;
}
p.co-txt {
  padding-top: 90px;
  font-size: 12px;
  text-align: right;
}







section#index-contact {
  width: 100%;
  background-color: #fafafa;
  margin-bottom: -32px;
}

.contact {
  width: 80%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.su-animate.slideInLeft.animated {
  font-size: 24px;
  color: black;
  text-align: center;
  margin-top: 150px;
  padding-bottom: 5px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ＭＳ Ｐ明朝", "MS PMincho", "ＭＳ 明朝", "MS Mincho", "ヒラギノ明朝 Pro W6", HiraMinPro-W6, sans-serif;
}

section#slider {
  width: 100%;
  margin-top: 150 px;
  max-width: 100%;
  background-color: #021138;
}

h2.goods {
  font-size: 24px;
  color: white;
  padding-bottom: 5px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ＭＳ Ｐ明朝", "MS PMincho", "ＭＳ 明朝", "MS Mincho", "ヒラギノ明朝 Pro W6", HiraMinPro-W6, sans-serif;
}

.blog {
  width: 100%;
}

.footer a:link,
a:visited {
  color: rgb(255 255 255);
}














.item_text {text-align: center;
color: #FFF;
font-size: 15px;
margin-bottom: 50px;
padding-top: 10px;
}

img.main_logo {
  /* margin-left: auto; */
  /* margin-right: auto; */
  /* text-align: center; */
  /* display: block; */
  position: absolute;
  z-index: 9999;
  top: -150px;
  right: 30px;
}
address {
  text-align: right;
  width: 500px;
  float: right;
  margin-top: -20px;
  padding-right: 20px;
}
/* .header-inner, .container, .footer-inner {
  box-sizing: border-box;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 10px;
} */
h2.pr {
    padding: 1rem 2rem;
    border-left: 4px solid #58994f;
}

img.wppsac-post-image-bg {
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.wppsac-post-content {
  display: none;
}
.wppsac-post-date {
  display: none;
}
.wppsac-post-carousel.design-1 .wppsac-post-title a {color: #FFF;
}
.wppsac-post-slider h2.wppsac-post-title a, .wppsac-post-carousel h2.wppsac-post-title a{font-size: 12px;}
