@charset "UTF-8";
/* CSS Document */
html {
  scroll-behavior: smooth;
	scroll-padding-top: 74px;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.8;
  color: #191919;
  font-size: 16px;
overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: auto;
}
/* 共通 */
.wrapper {overflow-x: hidden;}
.content {overflow-x: hidden;}

img {
  max-width: 100%;
  
}
picture {
  display: block;
}
a {
  transition: all 0.5s;
  text-decoration: none;
}
a:hover {}
a.link_l img, a.link_opa img {
  transition: all 0.5s;
}
a.link_l img:hover {
  transform: scale(1.1); /* 拡大 */
}
a.link_opa img:hover {
  opacity: 0.7;
}
section {
  padding: 100px 0;
}
.section-title {
  font-size: 2rem;
  font-weight: bold;
}
.t-center {
  text-align: center;
}
.t-left {
  text-align: left;
}
.t-right {
  text-align: right;
}
.mt-5 {
  margin-top: 80px;
}
.mb-5 {
  margin-bottom: 80px;
}
/* フェードイン用のCSS */
.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition-property: transform, opacity;
  transition-duration: 1.5s;
  transition-delay: 0s;
}
.fadein_late {
  transition-delay: 0.5s !important;
}
.fadein.is-active {
  opacity: 1;
  transform: translateY(0);
}
/* main */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header {
  position: fixed;
  padding: 20px 0;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease;
  z-index: 999;
  transform: translateY(-100%); /* 初期は非表示 */
}
.header.is-visible {
  transform: translateY(0); /* 表示 */
}
.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1001;
  margin: 0 30px;
}
.logo {
  z-index: 999;
  width: 120px;
}
/* ハンバーガーメニュー */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}
.hamburger span {
width: 30px;  
  display: block;
  height: 2px;
  background: #e3007f;
  border-radius: 2px;
  transition: 0.3s ease;
}
/* ×マーク変化 */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}
/* モバイルナビ（初期は非表示） */
#nav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 990;
}
#nav-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#nav-menu a {
  font-size: 1.5rem;
  color: #603813;
  text-decoration: none;
  transition: 0.3s;
  font-weight: bold;
}
#nav-menu a:hover {
  opacity: 0.7;
}
.sp_sns {
  display: none;
}
/* PC表示（576px以上） */
@media (min-width: 576px) {
  .hamburger {
    display: none;
  }
  #nav-menu {
    position: static;
    flex-direction: row;
    height: auto;
    width: auto;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    gap: 30px;
    background: none;
  }
  #nav-menu a {
    font-size: 1rem;
  }
}
section.section01 {
  padding: 0 !important;
	
}
.slideshow {
  position: relative;
  width: 100%;

  overflow: hidden;
}
.slideshow > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}
.slideshow img {
  
}
.slideshow > div.active {
  opacity: 1;
  position: relative;
}
.mv_bg {
  background-image: url("../img/mv_bg.png");
	background-image: image-set(
    "../img/mv_bg.webp" type("image/webp"),
    "../img/mv_bg.png" type("image/jpeg")
  );
  background-size: cover;
	background-position: center;
}
.mv01, .mv02 {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.mv01_copy{
	position: relative;
	
}
.mv01_copy img,.mv02_copy img{
	max-height: 100vh;
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto; /* 横中央寄せ */
}
.mv01_bg01 {
  position: absolute;
  left: 0;
  top: 20%;
}
.mv01_bg02 {
  position: absolute;
  left: -8%;
  top: 40%;
}
.mv01_bg03 {
  position: absolute;
  right: 0;
  top: 15%;
}
.mv01_bg04 {
  position: absolute;
  right: -10%;
  top: 40%;
}
.mv01_bg05 {
  position: absolute;
  right: -5%;
  bottom: -5%;
}


.mv02 {
  background: url("../img/mv02_bg.png");
  background-size: 100% 100%;
}


section.section02 {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  position: relative;
	overflow: hidden;
}
.message_bg01 {
  position: absolute;
  left: -5%;
  top: 10%;
}
.message_bg02 {
  position: absolute;
  left: 0;
  bottom: 0;
}
.message_ame02 {
  position: absolute;
  left: 3%;
  top: 10%;
}
.message_ame04 {
  position: absolute;
  left: 8%;
  bottom: 0;
}
.message_bg03 {
  position: absolute;
  right: -10%;
  top: 10%;
}
.message_bg04 {
  position: absolute;
  right: -5%;
  bottom: -5%;
}
.message_ame01 {
  position: absolute;
  right: 10%;
  top: 5%;
}
.message_ame03 {
  position: absolute;
  right: 3%;
  bottom: 25%;
}
.message_bg05,
.message_bg06{
	position: absolute;
	display: none;
}

.message_copy {
  text-align: center;
  margin: 0 auto 60px;
  display: block;
}
.message_copy img {
  width: 50%;
}
.message_t {
  text-align: center;
  color: #603813;
  font-size: 20px;
	font-weight:500;
}
section.section03 {
  background-image: url("../img/lineup_bg.png");
  background-size: cover;
  mix-blend-mode: multiply;
}
.lineup_title {
  text-align: center;
  margin: 0 auto 60px;
  display: block;
}
.lineup_title img {
  width: 50%;
}
.lineup_navbg {
  position: relative;
  margin: 100px 0;
}
.lineup_navbg::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 60%;
  background-color: #f7931e;
  mix-blend-mode: multiply;
  z-index: -1;
}
.lineup_nav {
  display: flex;
  padding-bottom: 40px;
  justify-content: center;
}
.lineup_btn {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  margin: 0 30px;
}
.lineup_btn img {
  width: 58%;
  height: auto;
  display: inline-block;
  margin-bottom: 10px;
  margin-top: -50px;
	transition: transform 0.4s ease;
}
.lineup_btn:hover img {
  transform: translateY(-10px); /* 上に15px動かす */
}
.lineup_btn i {
  font-size: 30px;
}
.lineup_btn01 {
  background: #fbb03b;
}
.lineup_btn02 {
  background: #29abe2;
}
.lineup_btn03 {
  background: #d15a24;
}
.lineup_btn04 {
  background: #0067a9;
}
.lineup_copy {
  text-align: center;
  margin: 0 auto 150px;
}
.lineup_copy img {
  width: 70%;
}

#nikkiame{
	padding-top: 240px;
}
.nikkiame_box {
  background-image: url("../img/lineup_nikki_bg.png");
  background-size: cover;
  border-radius: 20px;
  padding: 50px 80px;
  color: #603813;
  
  position: relative;
	margin-bottom: 120px;
}
.nikkiame_ame_a {
  position: absolute;
  bottom: -10%;
  left: -5%;
}
.nikkiame_ame_b {
  position: absolute;
  top: -25%;
  right: -10%;
}
.nikkiame_t, .hakkaame_t {
  width: 65%;
  margin-top: 40px;
}
.ame_text {
  font-size: 30px;
  margin: 30px 0;
}
a .btn01 {
  font-size: 20px;
  background: #e7002b;
  padding: 10px 40px;
  border-radius: 30px;
  display: inline-block;
  color: #fff;
  letter-spacing: 4px;
	transition: all 0.3s ease;
}
/* PCだけ hover 有効 */
@media (hover: hover) and (pointer: fine) {
a .btn01:hover{
	background: #fff;
	color: #e7002b;
}
}
a .btn01:active{
	background: #fff;
	color: #e7002b;
}
#hakkaame{
	padding-top: 220px;
}
.hakkaame_box {
  background-image: url("../img/lineup_hakka_bg.png");
  background-size: cover;
  border-radius: 20px;
  padding: 50px 80px;
  color: #603813;
  
  position: relative;
}
.hakkaame_ame_a {
  position: absolute;
  bottom: -10%;
  right: -5%;
}
.hakkaame_ame_b {
  position: absolute;
  top: -25%;
  left: -10%;
}
a .btn02 {
  font-size: 20px;
  background: #0066b2;
  padding: 10px 40px;
  border-radius: 30px;
  display: inline-block;
  color: #fff;
  letter-spacing: 4px;
	transition: all 0.3s ease;
}
/* PCだけ hover 有効 */
@media (hover: hover) and (pointer: fine) {
a .btn02:hover{
	background: #fff;
	color: #0066b2;
}
}
a .btn02:active{
	background: #fff;
	color: #0066b2;
}
.nikkiame_pc, .hakkaame_pc {
  text-align: center;
  display: block;
  margin-top: -290px;
}
.nikkiame_pc img, .hakkaame_pc img {
  width: 80%;
}
section.section04 {
  background: #281a12;
  color: #fff;
}
.choso_copy {
  text-align: center;
  display: block;
  margin: 0 auto 30px;
}
.choso_copy img {
  width: 80%;
}
.lineup_sugarfree {
  text-align: center;
  display: block;
  margin: 0 auto 40px;
}
.lineup_sugarfree img {
  width: 30%;
}
.chosonikkiame_t {
  width: 75%;
}
.chosohakkaame_t {
  width: 85%;
}
.chosonikki_box {
  background-image: linear-gradient(0deg, #e5650f, #281a12 50%);
  padding: 50px 60px;
  position: relative;
}
.chosonikki_ame {
  position: absolute;
  bottom: 0;
  right: 0;
}
.chosohakka_box {
  background-image: linear-gradient(0deg, #027dce, #281a12 50%);
  padding: 50px 60px;
  position: relative;
}
.chosohakka_ame {
  position: absolute;
  bottom: 0;
  left: 0;
}
.chosonikkiame_pc, .chosohakkaame_pc {
  text-align: center;
  display: block;
}
.chosonikkiame_pc img, .chosohakkaame_pc img {
  width: 80%;
}
a .btn03 {
  font-size: 20px;
  background: #281a12;
  padding: 10px 40px;
  border-radius: 30px;
  display: inline-block;
  color: #fff;
  letter-spacing: 4px;
	transition: all 0.3s ease;
}

/* PCだけ hover 有効 */
@media (hover: hover) and (pointer: fine) {
a .btn03:hover{
	background: #fff;
	color: #281a12;
}
}
a .btn03:active{
	background: #fff;
	color: #281a12;
}


/* トップへ戻るボタン */
.topbtn {
  display: none;
  /*最初は隠す*/
  width: 70px;
  height: 70px;
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 888;
}
.topbtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-decoration: none;
  background-color: #c69c6d;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
  -webkit-tap-highlight-color: transparent; /* iOSタップ時の青い枠を消す */
}

/* PCだけ hover 有効 */
@media (hover: hover) and (pointer: fine) {
  .topbtn a:hover {
    background-color: #fff;
    color: #c69c6d;
  }
}

/* スマホではタップ中だけ白 */
.topbtn a:active {
  background-color: #fff;
  color: #c69c6d;
}

footer {
  background: #281a12;
  color: #fff;
  padding: 40px 0 40px;
}
footer a:hover{
	transition: 0.3s;
	opacity: 0.7;
}
.f_sns{
	display: flex;
	margin-bottom: 40px;
	justify-content: center;
	align-items: center;
}
.f_sns div{
	margin: 0 20px;
	
}
.f_sns div img{
	height: 40px;
}
.f_logo {
  width: 150px;
      margin-top: -50px;
}
ul.f_nav {
  display: flex;
  justify-content: center;
	padding-left: 0;
}
ul.f_nav li {
  list-style: none;
}
ul.f_nav li a {
  list-style: none;
  padding: 0 20px;
	color: #fff;
}
ul.f_nav li + li {
  border-left: 1px solid #fff;
}
.pcnone {
  display: none;
}
.spnone{
		display: block;
	}
@media (max-width: 1599.98px) {

}
@media (max-width: 1399.98px) {
	.lineup_copy {

    margin: 0 auto 150px;
}
#nikkiame {
    padding-top: 200px;
}	
	
	.nikkiame_box {

    margin-bottom: 120px;
}
	#hakkaame {
    padding-top: 175px;
}
	
}
@media (max-width: 1300.98px) {

	
}
@media (max-width: 1199.98px) {



	.mv01_bg01 img, .mv01_bg02 img, .mv01_bg03 img, .mv01_bg04 img, .mv01_bg05 img {
    width: 70%;
  }
	.mv01_bg03, .mv01_bg04, .mv01_bg05 {
    text-align: right;
  }
  .message_bg01 img, .message_bg02 img, 
	.message_bg05 img, .message_ame02 img, .message_ame04 img, .message_bg03 img, .message_bg04 img,
	.message_bg06 img,
	.message_ame01 img, .message_ame03 img {
    width: 70%;
  }
  .message_bg03, .message_bg04, .message_ame01, .message_ame03 {
    text-align: right;
  }

  .ame_text {
    font-size: 24px;
  }
  .nikkiame_ame_a img, .nikkiame_ame_b img {
    width: 85%;
  }
  .nikkiame_ame_b {
    text-align: right;
  }
  .hakkaame_ame_a img, .hakkaame_ame_b img {
    width: 85%;
  }
  .hakkaame_ame_a {
    text-align: right;
  }
	
	
		.lineup_copy {

    margin: 0 auto 100px;
}
#nikkiame {
    padding-top: 165px;
}	
	
	.nikkiame_box {

    margin-bottom: 80px;
}
	#hakkaame {
    padding-top: 145px;
}
	
	
	
	
}
@media (max-width: 991.98px) {



  .mv01_bg01 img, .mv01_bg02 img, .mv01_bg03 img, .mv01_bg04 img, .mv01_bg05 img {
    width: 70%;
  }
  .mv01_bg03, .mv01_bg04, .mv01_bg05 {
    text-align: right;
  }
  .message_bg01 img, .message_bg02 img, 
	.message_bg05 img, .message_ame02 img, .message_ame04 img, .message_bg03 img, .message_bg04 img,
	.message_bg06 img,
	.message_ame01 img, .message_ame03 img {
    width: 70%;
  }
  .message_bg03, .message_bg04,
	.message_bg06,
	.message_ame01, .message_ame03 {
    text-align: right;
  }
  .lineup_btn {
    width: 150px;
    height: 150px;
    margin: 0 20px;
  }

  .nikkiame_box, .hakkaame_box {
    padding: 30px 50px;
  }
  .ame_text {
    font-size: 20px;
  }
  .nikkiame_ame_a img, .nikkiame_ame_b img {
    width: 75%;
  }
  .hakkaame_ame_a img, .hakkaame_ame_b img {
    width: 75%;
  }
  .nikkiame_pc, .hakkaame_pc {
    margin-top: -150px;
  }
  .chosonikki_ame img, .chosohakka_ame img {
    width: 70%;
  }
  .chosonikki_ame {
    text-align: right;
  }
	ul.f_nav li a{
		font-size: 14px;
	}
	
			.lineup_copy {

    margin: 0 auto 100px;
}
#nikkiame {
    padding-top: 75px;
}	
	
	.nikkiame_box {

    margin-bottom: 80px;
}
	#hakkaame {
    padding-top: 155px;
}
	
	
}
@media (max-width: 767.98px) {


  .mv01_bg01 img, .mv01_bg02 img, .mv01_bg03 img, .mv01_bg04 img, .mv01_bg05 img {
    width: 40%;
  }
	
	.message_t{
		font-size: 18px;
	}
	.message_bg01 img, .message_bg02 img, 
	.message_bg05 img, .message_ame02 img, .message_ame04 img, .message_bg03 img, .message_bg04 img,
	.message_bg06 img,
	.message_ame01 img, .message_ame03 img {
    width: 50%;
  }
	
	.lineup_btn {
    width: 120px;
    height: 120px;
    margin: 0 10px;
  }
	.nikkiame_ame_a img, .nikkiame_ame_b img {
    width: 55%;
  }
  .hakkaame_ame_a img, .hakkaame_ame_b img {
    width: 55%;
  }
	.nikkiame_ame_a{
		bottom: 0%;
	}
	.hakkaame_ame_a{
		bottom: 0%;
		
	}

	.nikkiame_box, .hakkaame_box {
    padding: 30px 30px;
    
  }
	.nikkiame_pc, .hakkaame_pc{
		margin-top: -100px;
	}
	.nikkiame_pc img, .hakkaame_pc img{
		width: 100%;
	}
	.nikkiame_t, .hakkaame_t {
		margin-top: 20px;
	}
	.ame_text{
		font-size: 16px;
		margin: 20px 0;
	}
	a .btn01,
	a .btn02,
	a .btn03{
		font-size: 14px;
        padding: 5px 30px;
		
	}
.chosonikki_ame img, .chosohakka_ame img {
    width: 60%;
  }
	.f_logo{
		margin: 20px 0 20px 20px;

	}
	
				.lineup_copy {

    margin: 0 auto 60px;
}
#nikkiame {
    padding-top: 45px;
}	
	
	.nikkiame_box {

    margin-bottom: 80px;
}
	#hakkaame {
    padding-top: 30px;
}
}
@media (max-width: 575.98px) {
html {
  scroll-behavior: smooth;
	scroll-padding-top: 70.5px;
}
  .pcnone {
    display: block;
  }
	.spnone{
		display: none;
	}
  body.no-scroll {
    overflow: hidden;
  }
  .hamburger {
    display: flex;
  }
  .sp_sns {
    display: flex;
	  margin-top: 60px;
  }
	.sp_sns div{
		margin: 0 20px;
	}
	.sp_sns div img{
		height: 40px;
	}
	.logo {
  width: 30%;
}
	
	section{
		padding: 60px 0;
	}
	
	.mv01,
	.mv02{
		height: 100svh;
		position: relative;
	}
	.mv01_copy img,
	.mv02_copy img{
		position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  height: auto;
		
	}
	.mv01_copy{
		position: inherit;
	}
  .mv01_bg01 img, .mv01_bg02 img, .mv01_bg03 img, .mv01_bg04 img, .mv01_bg05 img {
    width: 45%;
  }
	.mv01_bg01 {

  left: 0;
  top: 30%;
}
.mv01_bg02 {

  left: -8%;
  top: 50%;
}
.mv01_bg03 {

  right: 0;
  top: 20%;
}
.mv01_bg04 {

  right: -10%;
  top: 30%;
}
.mv01_bg05 {

  right: 0;
  bottom: 20%;
}


	
	.message_t{
		font-size: 16px;
	}
	.message_bg01 img, .message_bg02 img, 
	.message_bg05 img, .message_ame02 img, .message_ame04 img, .message_bg03 img, .message_bg04 img,
	.message_bg06 img,
	.message_ame01 img, .message_ame03 img {
    width: 50%;
  }

	.message_bg01 {

  left: -2%;
  top: inherit;
		bottom: 2%;
}
.message_bg02 {

  left: -5%;
  bottom: 30%;
}
	.message_bg05 {
display: block;
  left: -2%;
top: 5%;
}
.message_ame02 {

  left: 3%;
  top: 25%;
}
.message_ame04 {

  left: 8%;
  bottom: 3%;
}
.message_bg03 {

  right: -10%;
  top: -5%;
}
.message_bg04 {

  right: -10%;
  bottom: 0%;
}
	.message_bg06 {
display: block;
  right: 0%;
  bottom: 40%;
}
.message_ame01 {

  right: 5%;
  top: 20%;
}
.message_ame03 {

  right: 10%;
  bottom: 5%;
}
	.message_copy img{
		width: 80%;
	}
	.lineup_title img{
		width: 80%;
	}
	.lineup_nav{
		flex-wrap: wrap;

		margin: -50px 60px 0;
	}

	.lineup_navbg{
		margin: 100px 0 40px;
	}
	.lineup_navbg::after{
		bottom: 25%;
		height: 50%;
	}
	.lineup_btn{
		margin-top: 50px;
	}
	.lineup_copy img{
		width: 90%;
		margin-bottom: 40px;
	}
	
	.nikkiame_pc img, .hakkaame_pc img{
		width: 60%;
	}
	.nikkiame_t, .hakkaame_t{
		margin: 40px auto 20px;
	}
	.ame_text{
		text-align: center;
	}
.nikkiame_ame_a img, .nikkiame_ame_b img {
    width: 45%;
  }
  .hakkaame_ame_a img, .hakkaame_ame_b img {
    width: 45%;
  }
	.nikkiame_ame_a{
		bottom: 50%;
	}
	.nikkiame_ame_b{
		top: -20%;
		right: 0%;
	}
	
	.hakkaame_ame_a{
		bottom: 50%;
	}
	.hakkaame_ame_b{
		top: -20%;
		left: 0%;
	}
	.choso_copy img{
		width: 90%;
	}
	.lineup_sugarfree{
		margin: 0 auto;
	}
	.lineup_sugarfree img{
		width: 70%;
	}
	
	.chosonikkiame_t,
	.chosohakkaame_t{
		margin: 40px auto 20px;
	}
	.chosonikki_ame img, .chosohakka_ame img {
    width: 40%;
  }
	.chosonikki_ame{
		bottom: 45%;
	}
	.chosohakka_ame{
		bottom: 45%;
	}
	a .btn01,
	a .btn02,
	a .btn03{
font-size: 16px;
        padding: 10px 30px;
		width: 80%;
	}
	ul.f_nav li a{
		font-size: 12px;
    padding: 0 8px;
}
.f_logo {
  width: 80px;
}
	
					.lineup_copy {

    margin: 0 auto 0px;
}
#nikkiame {
    padding-top: 120px;
}	
	
	.nikkiame_box {

    margin-bottom: 120px;
}
	#hakkaame {
    padding-top: 120px;
}

}

@media (max-width: 438.98px) {
	
	  .mv01_bg01 img, .mv01_bg02 img, .mv01_bg03 img, .mv01_bg04 img, .mv01_bg05 img {
    width: 35%;
  }
	.message_bg01 img, .message_bg02 img,
	.message_bg05 img,
	.message_ame02 img, .message_ame04 img, .message_bg03 img, .message_bg04 img,
	.message_bg06 img,
	.message_ame01 img, .message_ame03 img {
    width: 40%;
  }
	.message_t{
		letter-spacing: -0.5px;
	}
		.lineup_nav{

		margin: -50px 0px 0;
	}
	
						.lineup_copy {

    margin: 0 auto 0px;
}
#nikkiame {
    padding-top: 90px;
}	
	
	.nikkiame_box {

    margin-bottom: 60px;
}
	#hakkaame {
    padding-top: 90px;
}

}
