@charset "UTF-8";

#fv {
	position: relative;
}

#fv img.back_wrap {
	object-fit: cover;
	height: 100vh;
	width: 100%;
	filter: brightness(80%);
   object-position: 50% 80%;
}

@media screen and (max-width: 1024px) {
	#fv img.back_wrap {
		height: 99vh;
    object-position: 25% 0%;
    filter: brightness(90%);
	}
}

#fv .msg_wrap {
	position: absolute;
	top: 40%;
	left: 35%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	z-index: 1;
	width: fit-content;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  #fv .msg_wrap {
    top: 50%;
    left: 35%;
  }
}

/*
#fv .msg_wrap p {
	color: #ffffff;
	letter-spacing: 0.1em;
	font-size: min(2.0vw,32px);
	text-align: center;
	margin-bottom: 3.125vw;
}

@media screen and (max-width: 1024px) {
	#fv .msg_wrap p {
		font-size: 18px;
		margin-bottom: 20px;
	}
}
*/

#fv .msg_wrap h1 {
  font-family: 'Noto Sans', source-sans-pro, sans-serif;
	letter-spacing: 3px;
	font-size: 50px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
	white-space: nowrap;
  animation-name:fadeInAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
/*
	animation-name: fadeUpAnime;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	animation-delay: 1.5s;
*/
	opacity: 0;
  text-shadow: 0 0 10px rgba(0,0,0,0.21);
}

@media screen and (max-width: 1024px) {
	#fv .msg_wrap h1 {
		font-size: 30px;
    text-align: left;
	}
}

#fv .msg_wrap h1 span {
/*	font-weight: 300;*/
	color: #ffffff;
	display: inline-block;
}

#fv .msg_wrap h1 span.subep {
  font-size: 15px;
  padding: 5% 0 0 2%;
}
@media screen and (max-width: 1024px) {
  #fv .msg_wrap h1 span.subep {
    font-size: 12px;
    padding: 5% 0 0 2%;
  }
}

#fv .logo_wrap{
  width: 200px;
	position: absolute;
	bottom: 10%;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}

#fv .logo_wrap img{
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
	overflow: hidden;
	position: relative;
}

@media screen and (max-width: 1024px) {
  #fv .logo_wrap{
    width: 170px;
    bottom: 15%;
  }
}

@keyframes show {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


/* スクロールダウンの位置 */
.scroll {
  position: absolute;
  right: 25%;
  bottom: 15%;
  writing-mode: vertical-rl;
  color: white;
}
@media screen and (max-width: 1024px) {
  .scroll {
    right: 10%;
    bottom: 15%;
  }
}
  
/* 線のアニメーション部分 */
.scroll::before {
  animation: scroll 2s infinite;
  background-color: white;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/*トピックタイトル*/
.topic_tittle {
  width: 100%;
  padding: 10% 0 3% 0;
}
.topic_tittle h2.ttl_c,
.topic_tittle h2.ttl_c2,
.topic_tittle h2.ttl_w {
  font-size: 40px;
  font-weight: bold;
  text-align: left;
  margin: 0 auto 10px;
  letter-spacing: 2px;
  line-height: 1;
  font-family: Arial;
}
.topic_tittle h2.ttl_c {color: #6E5589;}
.topic_tittle h2.ttl_c2 {color: #2F3962;}
.topic_tittle h2.ttl_w {color: white;}

.topic_tittle .sub_jp {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 3px;
}
@media screen and (max-width:768px) {
  .topic_tittle {
    width: 100%;
    padding: 20% 0 0 0;
  }
  .topic_tittle h2.ttl_c,
  .topic_tittle h2.ttl_w{
    font-size: 38px;
  }
}

/*TOPコピー用リスト*/
ul.checklist {
  list-style-type: none;
}
ul.checklist li {
  position: relative;
  line-height: 2;
  left: 30px;
  font-weight: bold;
}
ul.checklist li::after {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  left: -30px;
  width: 20px;
  height: 10px;
  border-left: 3px solid #6E5589;
  border-bottom: 3px solid #6E5589;
  transform: rotate(-45deg);
}

img.row_cut {
  object-fit: cover;
  width: 100%;
  height: 600px;
  object-position: 0% 25%;
}
@media screen and (max-width:768px) {
  img.row_cut {
    height: 250px;
    object-position: 50% 50%;
  }
}

img.img_sign {
  text-align: right;
  max-width: 180px;
  margin: 0 0 0 auto;
}
@media screen and (max-width:768px) {
  img.img_sign {
    max-width: 150px;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 80px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}
.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 30px;
  border: 1px solid #888;
  width: 90%;
  max-width: 500px;
  border-radius: 6px;
}
.close {
  float: right;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
}
.close:hover {
  color: red;
}

/*
.ytube {
overflow: hidden;
padding-bottom: 56.24%;
position: relative;
margin: 0 auto;
	width: 100%;
}
.ytube iframe {
position: absolute;
left: 0;
top: 0;
width: 100%;
}

@media screen and (max-width: 767px) {
	.ytube {width: 100%;padding-bottom: 60%;}
}
*/

/*.tag_ye,
.tag_gr{
	padding:6px 0px;
	margin:3px 0;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px; 
	font-size:11px;
	text-align:center;
	width: 30%;
  color: #ECEAE3;
}

.tag_ye{background: #D7AE37;}
.tag_gr{border-color: #64864F;}




.horizontal-list {
  vertical-align: top;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.horizontal-list ul {
  margin: 0 auto 20px;
}

.horizontal-list::-webkit-scrollbar{
  width: 10px;
}
.horizontal-list::-webkit-scrollbar-track{
  background: #fff;
  border: none;
  border-radius: 10px;
}
.horizontal-list::-webkit-scrollbar-thumb{
  background: #433A34;
  border-radius: 10px;
  box-shadow: none;
}

li.item { 
  vertical-align: top;
  display: inline-block;
  width: 35%;
  height: auto;
  margin: 16px 20px 16px 20px;
}
li.item:first-child { 
  vertical-align: top;
  display: inline-block;
  width: 35%;
  height: auto;
  margin: 16px 40px 16px 0px;
}
li.item:last-child { 
  vertical-align: top;
  display: inline-block;
  width: 35%;
  height: auto;
  margin: 16px 0px 16px 40px;
}

.item .datebox{
  font-size: 15px;
  font-weight: bold;
  display: block;
  white-space: pre-wrap;
  padding:5px 5px 0 5px;
  color: #343434;
}
.item .textbox{
  font-size: 14px;
  display: block;
  white-space: pre-wrap;
  padding:5px;
  color: #343434;
}

.item img {
  height: auto;
  object-fit: cover;
}

@media screen and (max-width: 769px) {
    .horizontal-list  {
      margin-bottom: 20px;
        }
     li.item {
      display: inline-block;
      width: 70%;
      height: auto;
      margin: 12px 15px 12px 15px;
    }
     li.item:first-child {
      display: inline-block;
      width: 70%;
      height: auto;
      margin: 12px 30px 12px 0px;
    }
     li.item:last-child {
      display: inline-block;
      width: 70%;
      height: auto;
      margin: 12px 0px 12px 30px;
    }

    li.item img {
    height: auto;
    object-fit: cover;
}


.tag_ye{
 width: 40%;}
 
.tag_gr{
 width: 40%;}
}*/


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

@media screen and (max-width: 767px) {
	.gmap {padding-bottom: 60%;}
}*/


/* 前への矢印 */
.swiper-button-prev {
  left: -30px;
}
/* 次への矢印 */
.swiper-button-next {
  right: -30px;
}
/* ページネーション */

.swiper-pagination {
  display: block !important;
  position: absolute;
  bottom: 10px; /* 位置調整 */
  width: 100%;
  z-index: 10;
  text-align: center;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -25px;
}
.swipe-container {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  width: 100%;
  max-width: 800px;
  position: relative;
}

.swiper-slide{
  width: 100%;
  margin: 0 auto;
  padding: 10px;
}

.swiper-slide img {
  height: auto;
  width: 100%;
}

.swiper {
  width: 100%;
  max-width: 500px;
  padding: 0 16px; /* 左右に余白をつけて中央に見せる */
  box-sizing: border-box;
}

.swiper-wrapper {
  display: flex;
  /* スマホではjustify-contentは指定しない */
}

.swiper-slide {
  text-align: center;
  width: 100%; /* 中身のサイズに応じる */
  margin: 0 auto;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  color: #6E5589;;
  font-size: 25px !important;
}

.shopping {
  position: relative;
  background-color:#f5f5f5;
  border-radius: 5px;
  padding: 50px;
  margin: 30px auto 50px;
}
@media screen and (max-width: 767px) {
  .shopping {
    border-radius: 5px;
    padding: 10px;
    margin: 20px auto;
  }
}