@charset "UTF-8";
/* CSS Document */
.header {
  /*height: 100px;*/
  background-color: #f2eafe;
  position: fixed; /*headerを固定している*/
  width: 100%;
  z-index: 1
}
.logo {
  margin-top: 15px;
  height: 75px;
  width: auto;
}
.name {
  margin-top: 15px;
  height: 75px;
  width: auto;
}
.header__header {
  width: 1080px;
  margin: 0 auto;
  /*float: left;*/
  /*margin-left: 15px;*/
}
.header__header img {
  float: left;
}
.header__tel {
  display: flex;
  justify-content: flex-end;
  font-size: 1.375rem;
  margin-right: 10%;
  margin-top: 10px;
}
.header__tel-text {
  padding: 0.3em;
  color: white;
  background-color: #904597; /*背景色*/
  border: solid 1px #c7a2cb; /*線*/
  border-radius: 5px; /*角の丸み*/
  text-align: center;
}
.header__tel span {
  color: yellow; /*電話番号の文字の色*/
  font-size: 2.0rem;
  font-weight: 1000;
}
.header__navigation {
  justify-content: flex-end;
}
.header nav {
  margin-left: auto;
  margin-right: 5%;
  width: 50%;
  font-weight: 700;
}
.header__nav-kanko-plan {
  /*padding: 0.5em 1em;
	margin:2em 0;
	font-weight: bold;/*どちらでもいいかも　後で調整する*/
  /*color: #6091d3;/*文字色*/
  /*background-color: #FFF;/*背景色*/
  /*border: solid 1px #6091d3;/*線*/
  /*border-radius: 5px;/*角の丸み*/
  /*display: inline-block;*/
  padding: 0.3em 1em;
  text-decoration: none;
  color: #333; /*文字色*/
  background: #faf894;
  border: solid 5px #faf894; /*線*/
  border-radius: 5px; /*角の丸み*/
  transition: 0.5s;
}
.header__nav-kanko-plan:hover /*ナビゲーションの動きの後の色指定*/ {
  background: #faf894;
  color: #904597;
}
.header__nav-outline {
  /*display: inline-block;*/
  padding: 0.3em 1em;
  text-decoration: none;
  color: #333; /*文字色*/
  background: #faf894;
  border: solid 5px #faf894; /*線*/
  border-radius: 5px; /*角の丸み*/
  transition: 0.5s;
}
.header__nav-outline:hover /*ナビゲーションの動きの後の色指定*/ {
  background: #faf894;
  color: #904597;
}
.header__nav-company {
  /*display: inline-block;*/
  padding: 0.3em 1em;
  text-decoration: none;
  color: #333; /*文字色*/
  background: #faf894;
  border: solid 5px #faf894; /*線*/
  border-radius: 5px; /*角の丸み*/
  transition: 0.5s;
}
.header__nav-company:hover /*ナビゲーションの動きの後の色指定*/ {
  background: #faf894;
  color: #904597;
}
.header ul {
  display: flex;
  justify-content: flex-end;
  list-style-image: none;
}
.header li {
  margin: 5px;
  padding: 10px;
}
h2 {
  display: inline-block;
  background: linear-gradient(transparent 70%, yellow 70%);
  margin-top: 30px;
  margin-left: 3%;
  margin-bottom: 20px;
}
.main {
  width: 1400px;
  height: auto;
  margin: 0 auto;
}
/* ------ 新スライドショー ------- */

.hero-slide__img {
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-name: slideAnime;
  animation-timing-function: ease;
  display: block;
  min-height: 100vh;
  object-fit: cover;
  opacity: 0;
  width: 100%;
}

.hero-slide__item:nth-of-type(1) .hero-slide__img {
  animation-delay: 0s;
}

.hero-slide__item:nth-of-type(2) .hero-slide__img {
  animation-delay: 5s;
}

.hero-slide__item:nth-of-type(3) .hero-slide__img {
  animation-delay: 10s;
}

@keyframes slideAnime {
  0% {
    opacity: 0;
  }

  16% {
    opacity: 1;
  }

  33% {
    opacity: 1;
  }

  49% {
    opacity: 0;
  }

  100% {
    opacity: 0;
/*  transform: translateX(-10%); */
  }
}

/* ------ hero erea ------- */
.hero {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero__inner {
  margin: 0 auto;
  width: 1100px;
}

/* ------ hero title ------- */
.hero__title {
  font-size: 50px;
  font-weight: bold;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 45%;
  transform: translateY(-50%);
  width: 100%;
}

.hero-slide__item {
  bottom: 0;
  height: 100%;
  position: absolute;
  right: -10%;
  width: 110%;
}

/* ------ 新スライドショー終わり ------- */

.section-top {
  padding-top: 100px;
  height: 650px;
  width: 100%;
  position: relative; /*重ねるテキストの設置位置がdivの中で基準になる*/
  text-align: center;
  background-position: center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  /*background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
    /*background-image: url("../images/main-bg.jpg");
	min-height: 100vh;*/
  /*応用③　アニメーション設定（bg-imagesはkeyframesの名称　秒数やイージング設定を調整してみよう）*/
  animation: bg-images 12s ease infinite;
}
/*CSSのみで実装するシンプルなスライドショー（％指定を増減させたり画像を変更して表示を調整してみよう）*/
@keyframes bg-images {
  0% {
    background: url("../images/unkaicastle.jpg");
    background-size: 100%;
    background-repeat: no-repeat;
  }
  50% {
    background: url("../images/castle.jpg");
    background-size: 100%;
    background-repeat: no-repeat;
  }
  100% {
    background: url("../images/fukiya.jpg");
    background-size: 100%;
    background-repeat: no-repeat;
  }
}
.section-top p {
  position: absolute; /*親要素relativeに対してabsoluteでimgの上に文字を配置*/
  bottom: 10%; /*絶対値で位置の指定*/
  right: 5%; /*絶対値で位置の指定*/
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.7); /*背景を白　70％透明度に指定*/
  color: #333; /*文字色*/
  border-radius: 5px; /*角の丸み*/
}
.section-top__text-pione {
  font-weight: bold;
  color: #904597;
}
.section-top__text-tel {
  font-weight: bold;
  color: red;
}
.section-top__kanko-plan {
  /*margin-top: 30px;*/
}
.section-top__kanko-plan ul {
  display: flex;
  justify-content: space-evenly;
}
.section-top__kanko-plan ul li {
  background-color: #FFF;
  /*margin-bottom: 40px;*/
  border-radius: 5px;
  /*text-align: left;*/
  list-style: none;
  margin: 10px;
  font-size: 1.4rem;
  width: 400px;
  height: 300px;
}
.section-top__kanko-plan img {
  width: auto;
  object-fit: cover;
  ocject-position: 0 0;
  border-radius: 5px;
  border: none;
}
.section-top__kanko-plan p {
  padding: 0 20px 20px 20px;
  text-align: center;
}
.other {
  display: flex;
  justify-content: flex-end;
  margin: inherit;
}
.otherplan {
  padding: 0.5em 1em;
  margin-top: 4em;
  font-weight: bold; /*どちらでもいいかも　後で調整する*/
  color: #333; /*文字色*/
  background-color: #faf894; /*背景色*/
  border: solid 1px #faf894; /*線*/
  border-radius: 5px; /*角の丸み*/
  display: inline-block;
}
.otherplan span {
  color: red;
}
.section-top__otoku {
  margin-bottom: 30px;
}
.section-top__otoku-description {
  margin-left: 5%;
}
.price {
  table-layout: auto;
  width: 50%;
}
.h2__top {
  border-top: dotted;
  border-top-width: medium;
  border-top-color: purple;
  margin-top: 30px;
}
h3 {
  margin-left: 5%;
}
table, th, td {
  border: solid 1px #666;
  text-align: center;
  padding: 10px;
  vertical-align: middle;
}
table {
  border: solid 2px #333; /*表全体を線で囲う*/
  margin-top: 20px;
}
th {
  background-color: #904597; /*背景色*/
  color: white; /*文字色*/
}
.otokuprice {
  color: red;
  font-size: 2.0rem;
}
.yellow_underline {
  display: inline-block;
  background: linear-gradient(transparent 70%, yellow 70%);
}
.section-top__otoku-description-smalltext {
  font-size: 1.2rem;
  text-align: match-parent;
}
/*.section-top__otoku-description-comment{
	display: flex;
}*/
.section-top__carlineup {
  position: relative;
  margin-bottom: auto;
  height: auto;
}
.section-top__carlineup-description {
  margin-left: 5%;
}
.section-top__carlineup ul {
  display: flex;
  justify-content: space-evenly;
}
.section-top__carlineup ul li {
  background-color: #FFF;
  /*margin-bottom: 40px;*/
  border-radius: 5px;
  /*text-align: left;*/
  list-style: none;
  margin: 10px;
  font-size: 1.4rem;
  width: 400px;
}
.section-top__carlineup img {
  width: auto;
  /*height: 300px;*/
  object-fit: cover;
  ocject-position: 0 0;
  border-radius: 5px;
  border: none;
}
.section-top__carlineup-text {
  padding: 0 20px 20px 20px;
}
.section-top__carlineup-text span {
  font-size: 1.4rem;
  font-weight: normal;
  color: red;
}
.section-top__carlineup-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
}
.section-top__information {
  position: relative;
  margin-top: auto;
}
.section-top__information-1 {
  margin: 2em auto;
  padding: 1em;
  width: 90%;
  color: #666; /*文字色指定*/
  background-color: #f2eafe; /*背景色指定*/
  border: 1px solid #333; /*枠線*/
  border-radius: 10px; /*角の丸み*/
}
.section-top__information-1 h4 {
  color: red;
  padding-left: 10px;
  font-size: 1.8rem;
}
.section-top__information-1 p {
  padding-left: 10px;
  line-height: 1.5em;
  width: auto;
}
.section-top__information-1 ol {
  counter-reset: list;
  list-style-type: none;
}
.section-top__information-1 li {
  position: relative;
  line-height: 30px;
  margin: 5px 0 0px 30px;
  /*padding-left: 10px;*/
  /*font-weight: bold;*/
  /*font-size:14px;*/
}
.section-top__information-1 li:before {
  counter-increment: list;
  content: counter(list);
  position: absolute;
  top: 0;
  left: -35px;
  width: 30px;
  height: 30px;
  text-align: center;
  color: #FFF;
  line-height: 30px;
  z-index: 1;
}
.section-top__information-1 li:after {
  content: "";
  position: absolute;
  top: 3px;
  left: -32px;
  width: 25px;
  height: 25px;
  background: #904597;
  color: #FFF;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.footer {
  width: 100%;
  margin: 0 auto;
  min-width: 1400px;
  background-color: #f2eafe;
  text-align: center;
  padding: 20px 0;
  font-weight: 600;
}
.footer_purple {
  color: #904597;
}
.footer_red {
  color: red;
}
.footer small {
  font-size: 1.2rem;
}
/* 600px以下に適用されるCSS（スマホ用） */

@media screen and (max-width: 600px) {
	.header{width:100%;}
	.logo {
  margin-top: 5px;
  height: 30px;
  width: auto;
}
	.name {
  margin-top: 5px;
  height: 30px;
  width: auto;
}
.header__header {
  width: 100%;
  margin: 0 auto;
}
 .header__tel {
  display: flex;
  justify-content: flex-end;
  font-size: 1rem;
  margin-right: 5%;
  margin-top: 10px;
}

.header__tel span {
  color: yellow; /*電話番号の文字の色*/
  font-size: 1.5rem;
  font-weight: 1000;
}
.header__tel a[href^="tel:0866222755"]{
    pointer-events: none;
  }
	.header__navigation {
  justify-content: flex;
}
	.header nav {
  display: inline-block;
		
		width:100%;
		font-size: 1.2rem;
}
	.header ul{
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.header li{
    list-style: none;
}
.header li {
  display: flex;
  padding: 10px;
}
.header__nav-kanko-plan {
  /*padding: 0.5em 1em;
	margin:2em 0;
	font-weight: bold;/*どちらでもいいかも　後で調整する*/
  /*color: #6091d3;/*文字色*/
  /*background-color: #FFF;/*背景色*/
  /*border: solid 1px #6091d3;/*線*/
  /*border-radius: 5px;/*角の丸み*/
  display: inline-block;
  padding: 0.3em 1em;
  text-decoration: none;
  color: #333; /*文字色*/
  background: #faf894;
  border: solid 5px #faf894; /*線*/
  border-radius: 5px; /*角の丸み*/
  transition: 0.5s;
}
.header__nav-outline {
  display: inline-block;
  padding: 0.3em 1em;
  text-decoration: none;
  color: #333; /*文字色*/
  background: #faf894;
  border: solid 5px #faf894; /*線*/
  border-radius: 5px; /*角の丸み*/
  transition: 0.5s;
}

.header__nav-company {
  display: inline-block;
  padding: 0.3em 1em;
  text-decoration: none;
  color: #333; /*文字色*/
  background: #faf894;
  border: solid 5px #faf894; /*線*/
  border-radius: 5px; /*角の丸み*/
  transition: 0.5s;
}
	.section-top p {
		display: inline-block;
 width: auto;
  padding: 10px;
  /*background-color: rgba(255, 255, 255, 0.7); /*背景を白　70％透明度に指定*/
  color: #333; /*文字色*/
  border-radius: 5px; /*角の丸み*/
		
}
.section-top__text-pione {
  font-weight: bold;
  color: #904597;
}
.section-top__text-tel {
  font-weight: bold;
  color: red;
}

.main {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.h2__top{
  text-align: center;
  margin-top: 10px;
 font-size: 1.6rem;
	}
	.section-top__kanko-plan ul{
	 flex-direction: column; 
		align-items: center;}
	.section-top__kanko-plan p{
		margin: 0px 20px 0px 20px;
		text-align: center;
	}
	.other{
		justify-content: center;
	}
.otherplan {
  padding: 0.5em;
  margin-top: 1em;
  display: inline-block;
}
	h3{
		text-align: center;
	}
	.section-top__otoku-description {
  margin-left: 10%;
		margin-right: 5%;
}
	.section-top__carlineup-description {
		margin-left: auto;
	}
	.section-top__carlineup ul {
		display: block;
	}
 .footer {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
  font-weight: 600;
	 min-width: auto;
}
.footer small {
  font-size: 1.2rem;
}
  /*padding-top: 100px;
  height: 650px;
  width: 100%;
  position: relative; /*重ねるテキストの設置位置がdivの中で基準になる*/
  /*text-align: center;
  background-position: center;
  background-size: auto 100%;
  background-repeat: no-repeat; */
  /*background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
    /*background-image: url("../images/main-bg.jpg");
		min-height: 100vh;*/
}
