@charset "utf-8";
/* CSS関数設定 */
:root {
	/* カラーパレット */
	--WHITE: #FFFFFF;
	--WHITE_OP50: rgba(255, 255, 255, 0.5);
	--BLACK: #000000;

	--GRAY01: #F5F5F5;
	--GRAY02: #DEDEDE;
	--GRAY03: #A7A7A7;

	--DARK01: #666666;

	--RED01: #c4424e;
  --PINK: #FF779F;
  --BLUE: #beedff;

	/* テキストカラー */
	--TXT_COLOR_BASE: var(--DARK01);
	--TXT_COLOR_WHITE: var(--WHITE);

	/* ボーダーカラー */
	--BDCOLOR_GRAY_1: var(--GRAY02);

	/* 背景カラー */
	--BGCOLOR_GRAY_1: var(--GRAY01);

	/* ランキングカラー */
	--RANKING_1ST: #BA9700;
	--RANKING_2ND: #A7A7A7;
	--RANKING_3RD: #B75400;
	--RANKING_OTHER: #002C1B;

	/* 共通角丸 */
	--COMMON_BDRS_S: 5px;
	--COMMON_BDRS_M: 10px;
	--COMMON_BDRS_L: 20px;

	/* 共通ボックス影 */
	--COMMON_BXSD: 0px 0px 15px -5px var(--GRAY03);
	--COMMON_BXSD_BTM: 0px 5px 15px -5px var(--GRAY03);

	/* ベース文字間隔 */
	--LETTER_SPACING: 0.1em;

	/* フォント */
	/* --FF_BASE: "M PLUS Rounded 1c", sans-serif; */

	/* 英数字フォント */
	--FF_EN: var(--FF_BASE);
	--FF_NUM: var(--FF_BASE);

	/* フォントウェイト */
	--FF_WEIGHT_BASE: 500;
	
	/* アニメーション */
	--ANIME_FADEIN: fadeIn .5s ease-in-out 0s forwards;
	--ANIME_FADEOUT: fadeOut .5s ease-in-out 0s forwards;

	/* フォトサイズ */
	--FZ_9: clamp(8px, 0.8vw, 9px);
	--FZ_10: clamp(8px, 0.8vw, 10px);
	--FZ_11: clamp(10px, 1.1vw, 11px);
	--FZ_12: clamp(10px, 1.1vw, 12px);
	--FZ_13: clamp(11px, 1vw, 13px);
	--FZ_14: clamp(12px, 1.2vw, 14px);
	--FZ_15: clamp(13px, 1.4vw, 15px);
	--FZ_16: clamp(14px, 1.5vw, 16px);
	--FZ_18: clamp(15px, 1.6vw, 18px);
	--FZ_20: clamp(16px, 1.8vw, 20px);
	--FZ_22: clamp(18px, 2vw, 22px);
	--FZ_25: clamp(20px, 2vw, 25px);
	--FZ_28: clamp(22px, 2.5vw, 28px);
	--FZ_30: clamp(25px, 3vw, 30px);
	--FZ_35: clamp(25px, 3vw, 35px);
	--FZ_38: clamp(30px, 3.5vw, 38px);
	--FZ_40: clamp(30px, 3.5vw, 40px);
	--FZ_43: clamp(30px, 4vw, 43px);
	--FZ_50: clamp(30px, 4vw, 50px);
	--FZ_60: clamp(40px, 5vw, 60px);
	--FZ_70: clamp(50px, 6vw, 70px);
	--FZ_10_CONST: 10px;
	--FZ_12_CONST: 12px;
	--FZ_14_CONST: 14px;
	--FZ_15_CONST: 15px;
	--FZ_16_CONST: 16px;
	--FZ_18_CONST: 18px;
	--FZ_20_CONST: 20px;

	/* ブロック間 */
	--GAP_10: clamp( 5px, 1.1vw, 10px);
	--GAP_15: clamp( 10px, 1.2vw, 15px);
	--GAP_20: clamp( 15px, 1.7vw, 20px);
	--GAP_25: clamp( 15px, 1.7vw, 25px);
	--GAP_35: clamp( 20px, 2.5vw, 35px);
	--GAP_30: clamp( 20px, 2.5vw, 30px);
	--GAP_40: clamp( 30px, 3.5vw, 40px);
	--GAP_50: clamp( 30px, 3.5vw, 50px);
	--GAP_60: clamp( 40px, 4.5vw, 60px);
	--GAP_65: clamp( 50px, 5.5vw, 65px);
	--GAP_75: clamp( 60px, 6.5vw, 75px);
	--GAP_80: clamp( 50px, 5.5vw, 80px);
	--GAP_90: clamp( 60px, 6.5vw, 90px);
	--GAP_100: clamp( 70px, 7.5vw, 100px);
	--GAP_5_CONST: 5px;
	--GAP_10_CONST: 10px;
	--GAP_15_CONST: 15px;
	--GAP_20_CONST: 20px;
	--GAP_30_CONST: 30px;
	--GAP_40_CONST: 40px;

	/* PCマックス幅 */
	--PC_MAX_WIDTH: var(--PC_MAX_WIDTH_M);
	--PC_MAX_WIDTH_SS: 800px;
	--PC_MAX_WIDTH_S: 1000px;
	--PC_MAX_WIDTH_M: 1200px;
	--PC_MAX_WIDTH_L: 1440px;

	/* 親要素を超えて幅100% */
	--FULL_WIDTH: calc(50% - 50vw);

	/* セクション間隔半分 */
	--GENERALSEC_HALF: calc(var(--GENERALSEC) / 2);
}

@media screen and (min-width: 768px){
	:root{
		--INNER_WIDTH: 95%;
		--GENERALSEC: clamp(70px, 8vw, 100px);
	}
}
@media screen and (max-width: 767px){
	:root{
	--INNER_WIDTH: 87.201%;
	--GENERALSEC: 50px;
	}
}

/* リセットCSS */
*{margin:0;padding:0;min-height: 0;min-width: 0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
html {height:100%;scroll-behavior: smooth;}
ul li ,ol li{list-style:none;}
h1,h2,h3,h4,h5,h6{font-weight: var(--FF_WEIGHT_BASE);font-size: 100%;margin: 0;}
p{margin: 0;}
strong{font-weight: inherit;}
a:focus, *:focus{ outline:none; }
article, header, footer, aside, figure, figcaption, nav, section,main{ 
  display:block;
}
body{
	font-family: var(--FF_BASE);
	font-weight: var(--FF_WEIGHT_BASE);
	font-feature-settings: "palt" 1;
	letter-spacing: var(--LETTER_SPACING);
	width:100%;
	color: var(--TXT_COLOR_BASE);
	position:relative;
	z-index: 0;
	overflow-x: clip;
}
a{
	text-decoration: none;
	outline: none;
	word-wrap: break-word;
	color: var(--TXT_COLOR_BASE);
}
a:visited{
	color: var(--TXT_COLOR_BASE);
}
a img,a{
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all  0.5s;
}
img{
	height: auto;
	max-width: 100%;
	box-sizing: unset;
	vertical-align: bottom;
}
/* imgリセット */
.imgauto{
	height: auto;
	width: 100%;
	box-sizing: unset;
	line-height: 1rem;
	display: block;
}

/* ↑↑↑リセット↑↑↑◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎ */
/* ======================共通====================== */
body{
  color: var(--TXT_COLOR_BASE);
}
h1,h2,h3,h4{
  font-family:"bc-alphapipe";
  font-size: var(--FZ_35);
  font-weight: bold;
}
section{
  margin-bottom: 0;
}
@media (hover: hover){
  a:hover{
    opacity: 0.8;
  }
  .custom-navigation button:hover {
    transform: scale(1.2);
  }
}
/* フォント */
.ryo-gothic-plusn{
  font-family: "ryo-gothic-plusn", sans-serif;
}
/* 打ち消し */
main.fs-l-main{
  margin: 0;
  padding-inline: 0 !important;
  max-width: unset;
}
section.fs-l-pageMain{
  margin-bottom: 0;
  padding-inline: 0 !important;
}
.fs-l-page{
  overflow: unset;
}
/* メイン */
.summer-lp {
  font-family: "ryo-gothic-plusn", sans-serif;
}

/* 宇宙 */
.summer-universe {
  background: url(../images/universe-bg01.jpg) no-repeat center center fixed;
  background-size: cover;
  color: var(--TXT_COLOR_WHITE);
}

.summer-inner {
  max-width: 600px;
  margin-inline: auto;
}

.universe-content {
  background-image: url(../images/universe-bg02.jpg);
  background-repeat: repeat-y;
  background-size: 100%;
}

.universe-intro {
  padding-top: 40px;
  padding-bottom: 20px;
}

.universe-intro__text {
  text-align: center;
}

.universe-intro__deco01 {
  width: 75px;
  margin-left: 5%;
}

.universe-intro__deco02 {
  width: 85px;
  margin-top: 30px;
  margin-right: 5%;
  margin-left: auto;
}

.universe-intro__text {
  font-size: 13px;
}

.universe-item01 {
  display: flex;
  width: 80%;
  margin: 60px auto 0;
}

.universe-item__img01 {
  width: 52%;
}

.universe-product {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.universe-item01 .universe-product li {
  justify-content: flex-end;
}

.universe-product li {
  display: flex;
  column-gap: 15px;
}

.universe-product li p {
  width: fit-content;
  font-size: 14px;
  letter-spacing: normal;
}

.universe-product__name {
  min-width: 50px;
}

.universe-product__btn a {
  display: block;
  color: var(--TXT_COLOR_WHITE);
  background-color: #F3DF43;
  padding: 0 20px;
  border-radius: 20px;
}

.universe-item02 {
  padding-top: 40px;
  padding-bottom: 10px;
  position: relative;
}

.universe-item__img02 {
  width: 70%;
  margin-right: 0;
  margin-left: auto;
}

.universe-item__img03 {
  width: 80%;
  margin-right: 0;
  margin-left: auto;
  padding-top: 80px;
}

.universe-item__img04 {
  width: 85%;
  margin: 0 auto;
  padding-top: 20px;
}

.universe-item__locket {
  width: 20%;
  margin-left: 10%;
  padding: 40px 0;
}

.universe-item__found {
  width: 65%;
}

.universe-item__img05 {
  margin-right: 5%;
  margin-left: auto;
  width: 60%;
  margin-top: 20px;
}

.universe-item03 .universe-product {
  margin-left: 10%;
}

.universe-item04 {
  margin-top: 80px;
  padding-top: 140px;
  position: relative;
}

.universe-item__img06 {
  position: relative;
  width: 85%;
  margin: 0 auto;
}

.universe-item__img06-deco {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  z-index: 1;
}

.universe-item__shooting {
  position: absolute;
  width: 20%;
  top: -4%;
  right: -5%;
}

.universe-item04 .universe-product {
  margin-top: 20px;
}

.universe-item04 .universe-product li {
  justify-content: center;
}

.universe-item05 {
  margin-top: 80px;
}

.universe-item05 .universe-product {
  margin-top: 40px;
}

.universe-item05 .universe-product li {
  justify-content: center;
}

.universe-slider {
  width: 70%;
  margin: 60px auto 0;
}

.universe-item06 .universe-product {
  margin-top: 20px;
}

.universe-item06 .universe-product li {
  justify-content: center;
}

.universe-novelty {
  margin: 100px auto 0;
  width: 95%;
}

.universe-bottom {
  margin-top: 80px;
  padding-bottom: 40px;
}

.universe-bottom__sns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 220px;
  gap: 20px;
  margin-inline: auto;
}

.universe-bottom__link {
  max-width: 220px;
  margin: 20px auto 0;
  width: 40%;
}

@media screen and (min-width: 768px) {
  .universe-item01 {
    align-items: flex-end;
  }

  .universe-item01 .universe-product {
    flex: 1;
    padding-bottom: 25%;
  }

  .universe-item02 .universe-product {
    position: absolute;
    left: 5%;
    bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .universe-item01 {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .universe-item02 .universe-product {
    margin-top: 10px;
    margin-left: 10%;
  }

}

/* フルーツ */
.summer-fruit {
  background: url(../images/fruit-bg.jpg) no-repeat center center fixed;
  background-size: cover;
  color: #231815;
}

.fruit-content {
  background-color: var(--WHITE);
  padding-top: 80px;
}

.fruit-item01__title {
  width: 50%;
  margin-left: 10px;
}

.fruit-item__img01 {
  width: 85%;
  margin-top: -20px;
  margin-right: 0;
  margin-left: auto;
}

.fruit-item01 .universe-product {
  margin-left: 15%;
  justify-content: space-around;
  margin-right: 0;
  margin-top: 20px;
}

.universe-product__btn.pink a {
  background-color: #EA6B99;
}

.fruit-item02 {
  margin-top: 80px;
}

.fruit-item__img02 {
  display: flex;
  align-items: flex-end;
}

.fruit-item__img02-main {
  width: 70%;
}

.fruit-item__img02-deco {
  flex: 1;
  margin: 0 5%;
}

.fruit-item__img03 {
  margin-top: 60px;
  margin-left: 10%;
  margin-right: 0;
}

.fruit-item__img04 {
  margin-top: 60px;
  position: relative;
}

.fruit-item02 .universe-product {
  position: absolute;
  left: 5%;
  bottom: 15%;
}

.fruit-item03 {
  margin-top: 60px;
}

.fruit-item03 .universe-product {
  justify-content: space-between;
  width: 80%;
  margin: 20px auto 0;
}

.fruit-item__img06 {
  position: relative;
  width: 90%;
  margin: 80px auto 0;
}

.fruit-item__img06-main {
  width: 90%;
  padding-top: 50px;
}

.fruit-item__img06-deco01 {
  position: absolute;
  top: 0;
  right: 0;
  width: 11%;
}

.fruit-item__img06-deco02 {
  position: absolute;
  bottom: 0;
  left: -2%;
  width: 8%;
}

.fruit-item04 .universe-product {
  margin-left: 5%;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.fruit-item__img07 {
  position: relative;
  margin-top: -10%;
}

.fruit-item__img07-main {
  width: 58%;
  margin-right: 0;
  margin-left: auto;
}

.fruit-item__img07-deco {
  width: 90%;
  position: absolute;
  top: -5%;
  left: 5%;
  box-sizing: border-box;
}

.fruit-item05 {
  background-color: rgba(234, 107, 154, 0.15);
  padding: 80px 0;
  position: relative;
}

.fruit-item__img08 {
  width: 58%;
  margin-left: 5%;
  position: relative;
}

.fruit-item__img08-deco {
  position: absolute;
  top: -2%;
  right: -15%;
  width: 23%;
}

.fruit-item__img09 {
  width: 48%;
  margin-left: 5%;
  margin-top: 20%;
}

.fruit-item05 .universe-product {
  justify-content: center;
  margin-top: 20px;
}

.fruit-item__img10 {
  width: 40%;
  position: absolute;
  bottom: 2%;
  right: 2%;
}

.fruit-item06 {
  margin-top: 20px;
  position: relative;
}

.fruit-item06__title {
  background: url(../images/bubble-deco.png) no-repeat center center;
  background-size: contain;
  width: 30%;
  margin-left: 4%;
  padding: 5% 3% 4% 5%;
  position: relative;
  z-index: 1;
}

.fruit-item__img11 {
  width: 90%;
  margin: -8% auto 0;
}

.fruit-item06 .universe-product {
  align-items: center;
  margin-top: 20px;
}

.fruit-item07 {
  margin-top: 80px;
}

.fruit-item07 .universe-product {
  align-items: flex-end;
  margin-top: 20px;
  margin-right: 5%;
}

.fruit-tetris {
  position: relative;
  padding: 10% 0;
}

.fruit-tetris__top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.fruit-tetris__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.fruit-tetris__img01 {
  position: absolute;
  top: 9.5%;
  left: 10%;
  width: 5%;
}

.fruit-tetris__img02 {
  position: absolute;
  top: 9.5%;
  left: 20%;
  width: 15%;
}

.fruit-tetris__img03 {
  position: absolute;
  top: 6.3%;
  left: 45%;
  width: 15%;
}

.fruit-tetris__img04 {
  position: absolute;
  top: 9.5%;
  right: 0;
  width: 15%;
}

.tetris-anime {
  transition: top 10s linear;
}

.fruit-tetris__img01.fall {
  top: 68.6%;
}

.fruit-tetris__img02.fall {
  top: 87.3%;
}

.fruit-tetris__img03.fall {
  top: 87.3%;
}

.fruit-tetris__img04.fall {
  top: 87.3%;
}

.fruit-tetris__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  background-color: #303334;
  padding: 5% 0;
}

.fruit-tetris__title img {
  width: 60%;
  padding-left: 5%;
}

.fruit-bottom {
  margin-top: 20px;
  padding-bottom: 20px;
}

.fruit-bottom__continue {
  max-width: 240px;
  margin: 0 auto;
  width: 60%;
}

.fruit-bottom__link {
  display: flex;
  margin: 40px auto;
  justify-content: space-between;
  max-width: 390px;
  width: 80%;
  gap: 10%;
}

.fruit-bottom__link a {
  display: block;
  background-color: #C4C9B7;
  padding: 10px 20px;
}

.fruit-bottom__tetris {
  max-width: 100px;
  margin: 40px auto 0;
  width: 20%;
}

.fruit-bottom__completed {
  max-width: 210px;
  margin: 20px auto 0;
  position: relative;
}

.fruit-bottom__completed::before {
  content: "";
  display: inline-block;
  background: url(../images/completed-deco01.svg) no-repeat;
  background-size: contain;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  margin-right: 10px;
}

.fruit-bottom__completed::after {
  content: "";
  display: inline-block;
  background: url(../images/completed-deco02.svg) no-repeat;
  background-size: contain;
  width: 32px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  margin-left: 10px;
}

.fruit-bottom__sns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 200px;
  gap: 20px;
  margin: 60px auto 0;
}

@media screen and (min-width: 768px) {
  .universe-product.flex-row {
    flex-direction: row;
  }
}

@media screen and (max-width: 767px) {
  .fruit-item03 .universe-product {
    align-items: center;
  }

  .fruit-item05 .universe-product {
    width: 90vw;
  }
}

/* タブ */
.float-tab-area {
  position: relative;
  height: 100px;
}

.float-tab {
  position: absolute;
  top: 0;
  max-width: 600px;
  width: 100%;
  z-index: 1000;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.float-tab.fixed {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.float-tab a {
  display: block;
  color: var(--TXT_COLOR_WHITE);
  padding: 30px 0;
  text-align: center;
  line-height: 1.2;
  letter-spacing: normal;
}

.float-tab__universe a {
  background-color: #3B58A5;
  border-radius: 20px 20px 0 0;
  }

.float-tab__fruit a {
  background-color: #00A983;
  border-radius: 20px 20px 0 0;
}

#universe {
  scroll-margin-top: -120px;
}

@media screen and (min-width: 768px) {
  #fruit {
    scroll-margin-top: -120px;
  }
}

@media screen and (max-width: 767px) {
  #fruit {
    scroll-margin-top: -20px;
  }
}

@media screen and (hover: hover) {
  .float-tab a:hover {
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
  .float-tab .en {
    font-size: 20px;
  }

  .float-tab .jp {
    font-size: 11px;
  }
}

@media screen and (max-width: 767px) {
  .float-tab .en {
    font-size: 16px;
  }

  .float-tab .jp {
    font-size: 10px;
  }
}

/* アニメーション */
.UpDown-anime {
  animation: UpDown 2s ease-in-out infinite;
}

@keyframes UpDown {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.fade-text path {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.fade-text path.visible {
  opacity: 1;
}

.fall-image {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 2s ease, transform 2s ease;
}

.fall-image.show {
  opacity: 1;
  transform: translateY(0);
}

.blinking-image {
  animation: blink 3s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}