@charset "utf-8";

html, body {
  overflow-x: hidden;
}

body {
	font-family: "zen-maru-gothic", sans-serif;
font-style: normal;
  background-color: #fff;
  background-image: radial-gradient(circle, #d71718 1px, transparent 1px);
  background-size: 18px 18px;
}

html {
    scroll-behavior: smooth;
}
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fcd5d6;
    border: solid 4px #d71718;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 4px solid #d71718;
    border-right: 4px solid #d71718;
	
    transform: translateY(20%) rotate(-45deg);
}

/******************************/
/* SLIDER */
/******************************/
/* === スライダー全体 === */
.slider,
#top-slider {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

/* slickのリスト（前後はみ出し許可） */
#top-slider .slick-list {
  overflow: visible;
}

/* 各スライド */
#top-slider .slick-slide {
  padding: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#top-slider .slick-slide:not(.slick-center)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 237, 244, 0.7);
  pointer-events: none;
  z-index: 1;
}

/* 画像 */
#top-slider img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

/* === slick ナビゲーションボタン（書き換え後）=== */
#top-slider .slick-prev,
#top-slider .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 0;
  width: 45px;
  height: 45px;
  cursor: pointer;
  z-index: 10;
  user-select: none;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}

/* ボタン内の矢印と背景 */
#top-slider .slick-prev::before,
#top-slider .slick-next::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  content: ''; /* 個別に下で指定 */
  font-size: 25px;
  color: #fff;
  font-family: 'Arial Rounded MT Bold', 'Helvetica Rounded', Arial, sans-serif;
  font-weight: bold;
  
  background-color: #d71718; /* ピンク系背景 */
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;

  text-indent: 0;
  overflow: visible;
  white-space: nowrap;
}

/* 個別に矢印を指定 */
#top-slider .slick-prev::before {
  content: '＜';
}

#top-slider .slick-next::before {
  content: '＞';
}

/* ボタンの位置調整 */
#top-slider .slick-prev {
  left: 30px;
}

#top-slider .slick-next {
  right: 30px;
}

#top-slider {
  position: relative;
}

/* === スマホ用調整 === */
@media screen and (max-width : 390px ){
  #top-slider .slick-prev {
    left: 0;
    transform: none;
  }

  #top-slider .slick-next {
    right: 0;
    transform: none;
  }

  #top-slider .slick-prev::before,
  #top-slider .slick-next::before {
    font-size: 20px;
    width: 35px;
    height: 35px;
  }

  #top-slider .slick-slide {
    padding: 0;
    height: auto;
  }

  #top-slider img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 0px;
  }
}

.menu {
	font-size: 30px;
	font-family: "quinella", sans-serif;
font-style: normal;
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 50px;
}


.menu li a {
  display: inline-block;
  padding: 10px 40px;
  text-decoration: none;
  color: #d71718;
  background-color: #fcd5d6;
  border-radius: 40px;
  transition: all 0.2s ease;
	border:4px solid #d71718;
	box-shadow: 5px 8px;
}

@media screen and (max-width: 768px) {
	.menu li a {
	 border:3px solid #d71718;
	box-shadow: 3px 7px;
	}
 }


.menu li a:hover {
  background-color: #d71718;
  color: #fff;
	border:4px solid #fcd5d6;
	box-shadow: 5px 8px 0 #fcd5d6;
}

@media screen and (max-width: 768px) {
	.menu li a:hover {
	 border:3px solid #fcd5d6;
	box-shadow: 3px 7px 0 #fcd5d6;
	}
 }

@media screen and (max-width: 390px) {
	.menu {
    display: flex;
    flex-direction: column;     /* 縦並び */
    align-items: center;        /* 横中央 */
    gap: 20px;
  }
	
	.menu li {
  width: 250px;               /* ← 固定幅にする方が安定 */
}
	
	.menu li a {
	padding: 5px 0;
    font-size: 20px;
    border: 2px solid #d71718;
    box-shadow: 2px 6px 0 #d71718;
    display: block;
    width: 100%;
    text-align: center;
}
	
	.menu li a:hover {
	 border: 2px solid #fcd5d6;
    box-shadow: 2px 6px 0 #fcd5d6;
	}
}

.dot-background {
  background-color: #fff;
  background-image: radial-gradient(#d71718 1px, transparent 1px);
  background-size: 16px 16px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px; /* 画面端の余白 */
}

.info-bal{
  position: absolute;
  top: -50px;     /* 上に少しはみ出す */
  left: 40px;     /* 左から固定 */
}

.info-bal img{
  width: 230px;
  height: auto;
}

@media screen and (max-width: 768px) {
   .info-bal{
    top: -60px;
    left: 20px;
  }

  .info-bal img{
    width: 170px;
  }
 }


.info-box{
	position: relative;
	text-align: center;
	background: #fcd5d6;
	border-radius: 30px;
	border: 4px solid #d71718;
	margin: 70px 0;
	margin: 70px auto;
  max-width: 1100px; /* about_bと同じ値にする */
  padding: 20px;
}

.info-label{
font-family: "quinella", sans-serif;
font-style: normal;
font-size: 40px;
color: #d71718;
}

.info-item{
  font-size: 15px;
  margin: 0 auto 0 100px;  /* ← 左を40pxに */
}

.info-item dd{
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 2;
  color: #4d4d4d;
}

.info-item a{
  color: #4d4d4d;
  text-decoration: none;
}

.info-item a:hover{
  color: #d71718;
}

.info-date{
  min-width: 120px;
  text-align: right;
}

.info-text{
  flex: 1;
  margin-left: 20px;
  text-align: left;
}

.btn11 {
	font-size: 20px;
  text-align: right;   /* 右寄せ */
  margin-right: 20px;
  margin-top: -20px;
}

@media screen and (max-width: 768px) {
	.info-item {
		margin: 0px;
	}
	
 .btn11 {
	 margin-bottom: 0;
	 text-align: center;
	 margin: 5px 0;
	}
}

.btn11 a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #d71718;
  padding-bottom: 5px;
}

/* 下線（最初は見えない） */
.btn11 a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #d71718;

  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

/* ホバーで中央から左右に伸びる */
.btn11 a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

@media screen and (max-width: 390px) {
    .info-bal{
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
  }

  .info-bal img{
    width: 130px;
  }
	.info-box{
    border-radius: 30px;
    border: 3px solid #d71718;
    margin: 80px 20px 0 20px;
    padding: 10px;
  }

  .info-item{
    font-size: 12px;
    margin: 0 10px;
    text-align: left;
  }

  .info-item dd{
    display: flex;
    flex-direction: column;  /* ← 縦並びにする */
    align-items: flex-start;
	margin-bottom: 15px;
  }

  .info-date{
    text-align: left;     /* ← これが重要 */
    min-width: auto;      /* ← 固定幅を解除 */
    width: 100%;
  }

  .info-text{
    margin-left: 0;
  }

  .info-label{
    font-size: 25px;
  }

  dd{
    margin: 0;
  }
 }

.about{
	max-width: 1100px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
	.about{
	margin: 0 20px;
}
}

.about-label{
font-family: "quinella", sans-serif;
font-style: normal;
font-size: 40px;
color: #d71718;
text-align: center;
margin: 50px 0;
}

@media screen and (max-width: 768px) {
	.about-label{
    margin: 30px 0;
}
}

.about_a,
.about_b{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.about_1,
.about_2,
.text_a,
.text_2{
  flex: 1;
}

.about_1 img,
.about_2 img{
  width: 100%;
  height: auto;
}

.text_a{
	font-size: 70px;
	color: #d71718;
	line-height: 1.7;
	letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
	.text_a{
		font-size: 40px;
		line-height: 2;
}
}

.text_1{
	font-size: 15px;
	color: #d71718;
	line-height: 2.5;
	margin-bottom: 10px;
	width: 550px;
	margin-left: 0;
}

@media screen and (max-width: 768px) {
	.text_1{
	 margin-bottom: 30px;
		width: auto;	
  }
}

.highlight {
  background-color: #fff; /* 背景色 */
  padding: 2px 4px;       /* 文字の周りに少し余白を付ける */
  border-radius: 3px;     /* 角を少し丸くする（任意） */
}


.text_2{
	font-size: 15px;
	color: #d71718;
	line-height: 2.5;
	margin: 0;
}

@media screen and (max-width: 768px) {
	.text_2{
	margin-bottom: 20px;
}
}

@media screen and (max-width: 390px) {
.about-label{
    font-size: 25px;
}
	
.about_a,
  .about_b{
    display: block;
    width: 100%;
    margin: 0 auto;
  }
	
  .about_1,
  .about_2,
  .text_a,
  .text_2{
    flex: none;
  }

  .about_1,
  .about_2{
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .about_1 img,
  .about_2 img{
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .text_a{
    text-align: center;
	line-height: 1.5em;
  }

  .text_1{
    margin: 20px 0;
  }
	.text_2{
    margin: 20px 0;
  }
}

.slide-container {
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.slide-wrapper {
  display: flex;
  animation: slide-flow 30s infinite linear 1s both;
}
.slide{
  width: 150px;
  object-fit:cover;
  border: 1px solid #ddd;
}

	
@keyframes slide-flow {
     0% {transform: translateX(0);}
 100% {transform: translateX(-100%);}
}

.check-background {
  background-color: #fcd5d6; /* ベースの薄ピンク */

  background-image:
    linear-gradient(45deg, #fac3c5 25%, transparent 25%, transparent 75%, #fac3c5 75%),
    linear-gradient(45deg, #fac3c5 25%, transparent 25%, transparent 75%, #fac3c5 75%);

  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
}

.lineup-label{
font-family: "quinella", sans-serif;
font-style: normal;
font-size: 40px;
color: #d71718;
text-align: center;
padding: 50px 0;
}

.lineup-box{
	background: #fff;
	border-radius: 30px;
	border: 4px solid #d71718;
	margin: 0 auto 50px;
	max-width: 1050px; /* about_bと同じ値に */
	padding: 20px;
}

@media screen and (max-width: 768px) {
	.lineup-box{
	margin: 0 20px 30px 30px;
	padding: 20px;
}
}

.lineup_a{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

@media screen and (max-width: 768px) {
	.lineup_a{
	display: block;
  justify-content: center;   /* ← 横中央 */
  align-items: center;       /* ← 縦中央 */
  text-align: center;
}
}

.m_heart img{
	width: 250px;
	height: auto;
}

.text_3{
	font-size: 15px;
	color: #d71718;
	line-height: 1.5;
	margin-left: 20px;
}

@media screen and (max-width: 768px) {
	.text_3{
	margin: 0 0 0 20px;
}
}

.m_heart_bal img{
 max-width:  100%;
  width: 1000px;
  height: auto;
  display: block;     /* ← これ追加 */
  margin: 0 auto;     /* ← 横だけauto */
}

@media screen and (max-width: 768px) {
	.m_heart_bal img{
  width: 600px;
  margin-top: 20px;
}
}

.s_heart img{
	width: 250px;
	height: auto;
}

.s_heart_bal img{
	max-width:  100%;
  width: 1000px;
  height: auto;
  display: block;     /* ← これ追加 */
  margin: 0 auto;     /* ← 横だけauto */
}

@media screen and (max-width: 768px) {
	.s_heart_bal img{
  width: 600px;
  margin-top: 20px;
}
}

.wing img{
	width: 400px;
	height: auto;
}

.wing_bal img{
  max-width:  100%;
  width: 1000px;
  height: auto;
  display: block;     /* ← これ追加 */
  margin: 0 auto;     /* ← 横だけauto */
}

@media screen and (max-width: 768px) {
	.wing_bal img{
  width: 600px;
  margin-top: 20px;
}
}

.lineup_main img{
	max-width: 100%;
	width: 1200px;
	height: auto;
	display: block;     /* ← これ追加 */
  margin: 0 auto 80px auto;
}

@media screen and (max-width: 768px) {
	.lineup_main img{
    width: 700px;
}
}
	
@media screen and (max-width: 390px) {
	.lineup-label{
    font-size: 25px;
	padding: 0;
	padding: 20px;
}
	.m_heart img{
	width: 150px;
	height: auto;
}
	.s_heart img{
	width: 150px;
	height: auto;
}
	.wing img{
	width: 220px;
	height: auto;
}
	.lineup_main img{
	width: 370px;
  margin: 0 auto 80px auto;
}
	.text_3 {
		font-size: 12px;
	}
}

.card_a{
  display: flex;
  justify-content: center; /* 左寄せ */
  gap: 220px;                   /* 画像の間隔 */
}

@media screen and (max-width: 768px) {
  .card_a {
  gap: 50px;
}
}

.card_a img{
  width: 200px;   /* お好みサイズ */
  height: auto;
}

@media screen and (max-width: 768px) {
  .card_a img{
  width: 200px;   /* お好みサイズ */
  height: auto;
}
}

.card_b{
  display: flex;
  justify-content: center; /* 左寄せ */
  gap: 220px;                   /* 画像の間隔 */
  margin: -200px 0 10px 0;
}

@media screen and (max-width: 768px) {
  .card_b {
  gap: 50px;
  margin: 20px 0 10px 0;
}
}

.card_b img{
  width: 200px;   /* お好みサイズ */
  height: auto;
}

@media screen and (max-width: 768px) {
  .card_b img{
  width: 200px;   /* お好みサイズ */
  height: auto;
}
}

.rectangle {
	width: 100%;
	height: 150px;
	background-color: #d71718;
	margin: -130px 0 -20px 0;
}

.grid-background {
  background-color: #ffffff;

  background-image:
    linear-gradient(#d71718 1px, transparent 1px),
    linear-gradient(90deg, #d71718 1px, transparent 1px);

  background-size: 30px 30px;
}

@media screen and (max-width: 768px) {
  .grid-background {
  background-image:
    linear-gradient(#d71718 1px, transparent 1px),
    linear-gradient(90deg, #d71718 1px, transparent 1px);

  background-size: 20px 20px;
}
}

.anim-box_a {
  animation: floating-y 2.3s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(5%);
  }
}

.anim-box_b {
  animation: floating-y 2s ease-in-out infinite alternate-reverse;
}

@media screen and (max-width: 390px) {
	.card_a {
  gap: 10px;
  margin: -50px 0 5px 0;
}
	
  .card_a img{
  width: 100px;   /* お好みサイズ */
  height: auto;
}
	
	.card_b {
  gap: 10px;
  margin: 10px 0 5px 0;
}
	
  .card_b img{
  width: 100px;   /* お好みサイズ */
  height: auto;
}
	
	.rectangle {
	height: 90px;
	margin: -50px 0 -20px 0;
}
}
	
.shopping-box{
	text-align: center;
	background: #fff;
	border-radius: 30px;
	border: 4px solid #d71718;
	margin: 50px auto;
  max-width: 1000px;  /* about_bと同じ値にする */
  padding: 50px;
}

@media screen and (max-width: 768px) {
  .shopping-box{
	margin: 50px 30px;
	padding: 50px;
}
}

.shop-label{
font-family: "quinella", sans-serif;
font-style: normal;
font-size: 40px;
color: #d71718;
}

.shop {
  list-style: none;   /* ← これで丸が消える */
  padding: 0;         /* ← 左の余白も消す */
  margin: 0;
}

.shop-a{
	margin: 20px 0 20px 0;
}

.shop-btn {
  position: relative;          /* ← これが基準 */
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 18px 20px;
  text-align: center;
  background: #e11111;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
}

/* 共通指定 */
.shop-btn img {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 90px;
  height: auto;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .shop-btn img {
    width: 95px;
    top: -15px;
    left: -10px;
  }
}

.shop li a {
 font-size: 20px;
  display: block;          /* inline-block → block */
  text-align: center;
  padding: 15px 0;
  text-decoration: none;
  color: #d71718;
  background-color: #fcd5d6;
  border-radius: 40px;
  border: 2px solid #d71718;
  transition: 0.2s;
}

.shop li a:hover {
  background-color: #d71718;
  color: #fff;
}

.right-img img {
 width: 70px;
  left: auto;     /* 左を無効化 */
  right: -20px;   /* 右に配置 */
}

@media (max-width: 390px) {
.shop li a {
 font-size: 15px;
}
	
  .shop-btn img {
    width: 70px;
    top: -15px;
    left: -10px;
  }
	
	.shop-label{
font-size: 25px;
}
  .shopping-box{
	margin: 50px 20px;
	padding: 30px;
}
	.right-img img {
 width: 50px;
}
}

@media (max-width: 768px) {
  .right-img img {
    left: auto;
    right: -10px;
  }
}

.footer-background {
	background-color: #d71718;
	padding: 10px 100px;
	margin-top: -20px;
}

@media (max-width: 768px) {
  .footer-background {
	padding: 10px 30px;
	margin-top: -22px;
}
}

.footer {
  background: #d71718;
  color: #fff;
  padding: 0px 40px 30px;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

@media (max-width: 768px) {
  .footer-inner {
  flex-direction: column;
  align-items: center;
    text-align: center;
	gap: 20px;
}
}

/* 左ロゴ */
.footer-logo {
  width: 220px;
  height: auto;
	margin-top: 20px;
}

@media (max-width: 768px) {
  .footer-logo {
  width: 140px;
  height: auto;
	margin: 10px 0 -10px 0;
}
}

/* 中央テキスト */
.footer-center {
 font-size: 20px;
  max-width: 600px;
  line-height: 1.8;
}

.address {
	font-size: 15px;
	margin: 0;
}

/* 右SNS */
.footer-right {
  display: flex;
  gap: 20px;
	align-items: flex-end;	
}

.footer-right img {
  width: 35px;
  height: auto;
  transition: 0.2s;
}

.footer-right img:hover {
  opacity: 0.7;
}

/* コピーライト */
.footer-copy {
  text-align: center;
  margin-top: 100px;
  font-size: 13px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-copy {
  margin-top: 70px;
  font-size: 15px;
  opacity: 0.8;
}
}

@media (max-width: 390px) {
	.footer-background {
	padding: 10px 20px;
	}
	
	.address {
		font-size: 12px;
	}
	
  .footer-center {
 font-size: 16px;
}
	
	.footer-logo {
  width: 120px;
}
}