@charset "utf-8";



/*############################################################################*/
/*

KVで使うcss定義

１：一つの画像サイズは画面幅に対して5/7
２：画像比率はPC→1.8 : 1（1000 * 550）、SP→1.5 : 1（600 * 400）
３：座標はjs管理
*/
/*############################################################################*/




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝

KVで使うcss定義

＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.kv_area {
  position: relative;
  padding-bottom: 50px;
  background: url(../img/kv/kv_bg_photo.jpg), url(../img/kv/kv_bg_img.jpg);
  background-size: auto 700px, auto 700px;
  background-repeat: no-repeat, repeat-x;
  background-position: right bottom, right bottom;
  background-color: #1a6197;
}

.kv::before {
  content: '';
  display: block;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: #FFFFFF;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0) 100%);
}

#kv_photo {
	position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
	height: 500px; /*jsで再定義*/
	overflow: hidden;
  list-style: none;
}

#kv_photo ul {
	position: absolute;
	top:0;
	left: calc((100% / 7)); /*jsで再定義*/
	width: 100%;
	z-index: 1;
}

#kv_photo li {
	position: absolute;
  display: block;
  margin: 0;
  padding: 0;
  aspect-ratio: 1.8 / 1;
  overflow: hidden;
  width: calc((100% / 7) * 5);
}

#kv_photo img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1.7 / 1;
}


/*現在地のアイコン*/

.photo_pos {
  position: absolute;
  bottom: 5px;
  left: calc((100% / 7) - 70px);
  width: 12px;
  z-index: 2;
}

.photo_pos .pos,
.photo_pos .thispos {
  display: block;
  width: 10px;
  height: 10px;
  margin: 7px auto 0 auto;
  border-radius: 50%;
  background-color: #000000;
  border: 2px solid #ffffff;
}

.photo_pos .thispos {
  background-color: #ffffff;
  border: 2px solid #000000;
}



/*タイトル*/

.kv h1 {
  position: absolute;
  top: 5px;
  left: 0;
  z-index: 3;
  display: block;
  overflow: hidden;
  margin: 0;
  padding-top: 32%;
  height: 0 !important;
  line-height: 250%;
  width: 32%;
  background: url(../img/common/55_logo.png) center center no-repeat;
  background-size: auto 100%;
}

/*説明文のタイトル*/
.kv_area h2 {
  box-sizing: border-box;
  margin: 0 auto 0 auto;
  padding: 50px 10px 30px 10px;
  max-width: 1000px;
  color: #ffffff;
  font-size: 130%;
}

.kv_area .info,
.kv_area .note {
  box-sizing: border-box;
  margin: 0 auto 0 auto;
  padding: 0 0 0 0;
  max-width: 980px;
  width: 100%;
  color: #ffffff;
}

.kv_area .info p {
  width: 50%;
  font-size: 105%;
}

.kv_area .note {
  margin-top: 50px;
}

.kv_area .note .note_info {
  position: relative;
  margin: 0;
  padding: 20px;
	margin-left: -20px;
  width: 50%;
  background-color: #ffffff;
  color: #000000;
}

.kv_area .note .note_info::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -25px;
  right: 10px;
  width: 2px;
  height: 80px;
  background-color: #007da9;
  transform: rotate(45deg);
}

.kv_area .note .note_info h3 {
  font-weight: bold;
  font-size: 110%;
  margin-bottom: 5px;
  color: #007da9;
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*SP調整*/

@media (max-width: 767px) {

.kv_area {
  background: url(../img/kv/kv_bg_photo.jpg), url(../img/kv/kv_bg_img.jpg);
  background-size: auto 400px, auto 400px;
  background-repeat: no-repeat, repeat-x;
  background-position: right bottom, right bottom;
  background-color: #1a6197;
}


/*スライド箇所関連*/

#kv_photo li {
  aspect-ratio: 1.5 / 1;
}
#kv_photo img {
  aspect-ratio: 1.5 / 1;
}
.photo_pos .pos,
.photo_pos .thispos {
  width: 6px;
  height: 6px;
	margin-top: 2px;
}
.photo_pos {
  left: calc((100% / 7) - 40px);
}


/*テキスト*/
.kv_area h2 {
  font-size: 100%;
}

.kv_area .info p {
  width: 80%;
  font-size: 90%;
	margin-left: 10px;
}

.kv_area .note .note_info {
  padding: 10px;
	margin-left: 10px;
  width: 55%;
	font-size: 65%;
}

.kv_area .note .note_info h3 {
  font-size: 100%;
	line-height: 1.5;
}


} /*SP調整　ここまで*/



/*以上です*/