@charset "UTF-8";

/* ========================================
	基本
======================================== */
html, body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}
.potato,
.poyon,
.poyon2,
.purun,
.link_button,
.lshake,
.rshake {
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ========================================
	ヘッダー
======================================== */
.head {
	background-color: #000;
	height: 150px;
	display: flex;
	justify-content: center;
    align-items: center;
	z-index: 999;
	position: relative;
}
.head img {
	width: 100%;
	max-width: 1050px;
	height: auto;
}

/* ========================================
	枠
======================================== */
.frame-section {
	position: relative;
}
.frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}
.frame div {
	position: absolute;
}
.red.t {
	top: 0;
	left: 0;
	width: 100%;
	height: 5.9vmin;
	background: #e50012;
}
.red.b {
	bottom: 0;
	left: 0;
	width: 100%;
	height: 5.9vmin;
	background: #e50012;
}
.red.l {
	top: 0;
	left: 0;
	width: 5.9vmin;
	height: 100%;
	background: #e50012;
}
.red.r {
	top: 0;
	right: 0;
	width: 5.9vmin;
	height: 100%;
	background: #e50012;
}
.blue.t {
	top: 5.9vmin;
	left: 5.9vmin;
	width: calc(100% - 11.8vmin);
	height: 4.2vmin;
	background: #1f2774;
}
.blue.b {
	bottom: 5.9vmin;
	left: 5.9vmin;
	width: calc(100% - 11.8vmin);
	height: 4.2vmin;
	background: #1f2774;
}
.blue.l {
	top: 5.9vmin;
	left: 5.9vmin;
	width: 4.2vmin;
	height: calc(100% - 11.8vmin);
	background: #1f2774;
}
.blue.r {
	top: 5.9vmin;
	right: 5.9vmin;
	width: 4.2vmin;
	height: calc(100% - 11.8vmin);
	background: #1f2774;
}

/* ========================================
   枠アニメーション
======================================== */
.frame .red.t,
.frame .red.b,
.frame .blue.t,
.frame .blue.b {
    transform: scaleX(0);
}
.frame .red.l,
.frame .red.r,
.frame .blue.l,
.frame .blue.r {
    transform: scaleY(0);
}
.frame .red.t,
.frame .blue.t {
    transform-origin: left center;
}
.frame .red.r,
.frame .blue.r {
    transform-origin: top center;
}
.frame .red.b,
.frame .blue.b {
    transform-origin: right center;
}
.frame .red.l,
.frame .blue.l {
    transform-origin: bottom center;
}
.frame.animate .red.t {
    animation: drawX 0.225s ease-out forwards;
}
.frame.animate .red.r {
    animation: drawY 0.225s ease-out 0.225s forwards;
}
.frame.animate .red.b {
    animation: drawX 0.225s ease-out 0.45s forwards;
}
.frame.animate .red.l {
    animation: drawY 0.225s ease-out 0.675s forwards;
}
.frame.animate .blue.t {
    animation: drawX 0.175s ease-out 0.9s forwards;
}
.frame.animate .blue.r {
    animation: drawY 0.175s ease-out 1.075s forwards;
}
.frame.animate .blue.b {
    animation: drawX 0.175s ease-out 1.25s forwards;
}
.frame.animate .blue.l {
    animation: drawY 0.175s ease-out 1.425s forwards;
}

/* キーフレーム */
@keyframes drawX {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes drawY {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}

/* ========================================
	ポテト
======================================== */
.frame-potato {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	pointer-events: none;
}
.potato {
	position: absolute;
}
.potato.lt {
	top: 0;
	left: 0;
	transform: translate(-8%, -17%);
	max-width: 1786px;
}
.potato.rb {
	bottom: 0;
	right: 0;
	transform: translate(8%, 17%);
	max-width: 1786px;
}
.frame-potato-back {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.potato.back {
	opacity: 0;
	animation-duration: 1.6s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	animation-delay: 0.8s;
}
.potato.rt.back {
	animation-name: potatoBackFadeRt;
}
.potato.lb.back {
	animation-name: potatoBackFadeLb;
}
.potato.rt {
	top: 0;
	right: 0;
	transform: translate(5%, -12%) scale(1.1);
	max-width: 1200px;
}
.potato.lb {
	bottom: 0;
	left: 0;
	transform: translate(5%, 12%) scale(1.1);
	max-width: 1200px;
}
@keyframes potatoBackFadeRt {
	from {
		opacity: 0;
		transform: translate(8%, -12%) scale(1.1);
	}
	to {
		opacity: 0.8;
		transform: translate(5%, -12%) scale(1.1);
	}
}
@keyframes potatoBackFadeLb {
	from {
		opacity: 0;
		transform: translate(2%, 12%) scale(1.1);
	}
	to {
		opacity: 0.8;
		transform: translate(5%, 12%) scale(1.1);
	}
}

/* ========================================
   ポテトアニメーション
======================================== */
.potato {
    opacity: 0;
}
.potato.lt {
    transform: translate(-15%, -15%) scale(0.95);
    animation: potatoLtIn 1.6s ease-out forwards;
    animation-delay: 0.5s;
}
.potato.rb {
    transform: translate(15%, 15%) scale(0.95);
    animation: potatoRbIn 1.6s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes potatoLtIn {
    from {
        opacity: 0;
        transform: translate(-15%, -15%) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translate(-8%, -17%) scale(1);
    }
}
@keyframes potatoRbIn {
    from {
        opacity: 0;
        transform: translate(15%, 15%) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translate(8%, 17%) scale(1);
    }
}

/* ========================================
	メインコンテンツ
======================================== */
.frame-top {
	position: relative;
	z-index: 4;
	text-align: center;
	width: 100%;
	max-width: 100%;
}
.top {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.top.c {
	text-align: center;
	position: relative;
}
.top.c .logo01 {
	max-width: 636px;
	margin: 20px 0;
}
.top.c .donpen-wrap {
	position: relative;
	display: inline-block;
	width: 100%;
}
.top.c .donpen-wrap .manekineko-donpen {
	display: block;
	width: 471px;
	height: auto;
	position: relative;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
.top.c .donpen-wrap .lshake {
	position: absolute;
	left: 5%;
	bottom: -40px;
	width: auto;
	height: auto;
	max-width: 330px;
	transform-origin: bottom right;
	animation: lshakeHorizontalMid 2.8s infinite;
}
.top.c .donpen-wrap .rshake {
	position: absolute;
	right: 5%;
	top: -40px;
	width: auto;
	height: auto;
	max-width: 301px;
	transform-origin: bottom left;
	animation: rshakeHorizontalMid 2.6s infinite;
}
@keyframes lshakeHorizontalMid {
	0% { transform: translate(0, 0) rotate(0deg); }
	12% { transform: translate(0, 0) rotate(0deg); }
	15% { transform: translate(-7px, 2px) rotate(-1deg); }
	18% { transform: translate(7px, -2px) rotate(1deg); }
	21% { transform: translate(-6px, 2px) rotate(-0.8deg); }
	24% { transform: translate(6px, -2px) rotate(0.8deg); }
	27% { transform: translate(-4px, 1px) rotate(-0.4deg); }
	30% { transform: translate(4px, -1px) rotate(0.4deg); }
	33% { transform: translate(0, 0) rotate(0deg); }
	60% { transform: translate(0, 0) rotate(0deg); }
	63% { transform: translate(-6px, 2px) rotate(-0.9deg); }
	66% { transform: translate(6px, -2px) rotate(0.9deg); }
	69% { transform: translate(-5px, 1px) rotate(-0.7deg); }
	72% { transform: translate(5px, -1px) rotate(0.7deg); }
	75% { transform: translate(0, 0) rotate(0deg); }
	100% { transform: translate(0, 0) rotate(0deg); }
}
@keyframes rshakeHorizontalMid {
	0% { transform: translate(0, 0) rotate(0deg); }
	10% { transform: translate(0, 0) rotate(0deg); }
	13% { transform: translate(7px, 2px) rotate(1deg); }
	16% { transform: translate(-7px, -2px) rotate(-1deg); }
	19% { transform: translate(6px, 2px) rotate(0.8deg); }
	22% { transform: translate(-6px, -2px) rotate(-0.8deg); }
	25% { transform: translate(4px, 1px) rotate(0.4deg); }
	28% { transform: translate(-4px, -1px) rotate(-0.4deg); }
	31% { transform: translate(0, 0) rotate(0deg); }
	58% { transform: translate(0, 0) rotate(0deg); }
	61% { transform: translate(6px, 2px) rotate(0.9deg); }
	64% { transform: translate(-6px, -2px) rotate(-0.9deg); }
	67% { transform: translate(5px, 1px) rotate(0.7deg); }
	70% { transform: translate(-5px, -1px) rotate(-0.7deg); }
	73% { transform: translate(0, 0) rotate(0deg); }
	100% { transform: translate(0, 0) rotate(0deg); }
}
.top.c .txt01 {
	max-width: 848px;
}
.top.c .logo02 {
	max-width: 1069px;
    margin: 60px 0 40px;
}
.top.c .txt02 {
	max-width: 942px;
	margin-bottom: 40px;
}
.top.c .txt04 {
	font-size: clamp(18px, 3.5vw, 32px);
	font-family: "ruika", sans-serif;
	font-weight: 100;
	font-style: normal;
	margin: 0;
	-webkit-text-stroke: 8px #FFF000;
	paint-order: stroke fill;
	text-shadow:
		-4px -4px 0 #FFF000,
		4px -4px 0 #FFF000,
		-4px 4px 0 #FFF000,
		4px 4px 0 #FFF000;
}
.frame-inner {
	padding: calc(5.9vmin + 4.2vmin);
	background: #fff000;
	text-align: center;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	overflow-x: hidden;
}
.top img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
}
.link_button {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.2em;
	margin: 20px 0;
	padding: 28px 60px;
	background: #e50012;
	color: #fff;
	font-size: clamp(20px, 3.5vw, 36px);
	text-decoration: none;
	border-radius: 999px;
	box-shadow: 0 10px 0 #b4000e;
	transition: all 0.2s ease;
	font-family: "ruika", sans-serif;
	font-weight: 100;
	font-style: normal;
	max-width: 534px;
	line-height: 1;
}
.link_button span {
	white-space: nowrap;
}
.link_button:hover {
	transform: translateY(3px);
	box-shadow: 0 3px 0 #b4000e;
}
.link_button:active {
	transform: translateY(6px);
	box-shadow: none;
}
.btn_wrapper {
	display: flex;
	flex-direction: column;
	margin-bottom: 60px;
}
.btn_wrapper .txt04 {
	font-size: clamp(12px, 2vw, 20px)!important;
	-webkit-text-stroke: 4px #FFF000!important;
	text-shadow:
	-2px -2px 0 #FFF000,
	2px -2px 0 #FFF000,
	-2px 2px 0 #FFF000,
	2px 2px 0 #FFF000!important;
}
.attention {
	max-width: 1200px;
	margin: 0 auto 40px;
	text-align: left;
	font-size: 80%;
	font-family: "ruika", sans-serif;
	color: #333;
	text-shadow:
	-1px -1px 0 #fff,
	1px -1px 0 #fff,
	-1px  1px 0 #fff,
	1px  1px 0 #fff;
}
.right {
	text-align: right;
}

/* ========================================
   ぽよん
======================================== */
.poyon,
.poyon2 {
    opacity: 0;
    transform: translateY(-40px) scale(0.8);
}
.poyon.show,
.poyon2.show {
    animation: poyonIn 0.7s cubic-bezier(0.68, -0.6, 0.32, 1.6) forwards;
}
@keyframes poyonIn {
    0% {
        opacity: 0;
        transform: translateY(-60px) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateY(10px) scale(1.1);
    }
    80% {
        transform: translateY(-5px) scale(0.97);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* ========================================
	ぷるん
======================================== */
.purun {
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.5s cubic-bezier(1,-0.69,0.2,2.03), 
                transform 0.5s cubic-bezier(1,-0.69,0.2,2.03);
}
.purun.in-view {
    opacity: 1;
    transform: scale(1);
}

/* ========================================
	フレーバー
======================================== */
.flavor-section {
	padding: 100px 20px;
	background: #fff;
	background-image: url("images/img_bg01.png"), url("images/img_bg02.png");
	background-position: center top, center top;
	background-size: auto, auto;
	background-repeat: repeat, repeat;
	position: relative;
    z-index: 999;
	text-align: center;
}
.txt05 {
	max-width: 1200px;
	margin-bottom: 40px;
}
.txt05 img {
	max-width: 1200px;
	width: 100%;
    margin-bottom: 15px;
}
.flavor-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin: 0 auto 40px;
	max-width: 1200px;
}
.flavor-list img {
	width: 100%;
	height: auto;
	display: block;
	max-width: 761px;
}
.flavor-list a {
	display: block;
}
.flavor-list a img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.2s ease;
}
.flavor-list a:hover img {
	animation: flavorShake 0.5s ease-in-out;
}
@keyframes flavorShake {
	0% { transform: translate(0, 0) rotate(0deg); }
	20% { transform: translate(-6px, 2px) rotate(-1deg); }
	40% { transform: translate(6px, -2px) rotate(1deg); }
	60% { transform: translate(-5px, 1px) rotate(-0.8deg); }
	80% { transform: translate(5px, -1px) rotate(0.8deg); }
	100% { transform: translate(0, 0) rotate(0deg); }
}
.flavor-section .link_button {
	background: #333;
	box-shadow: 0 10px 0 #000;
}
.flavor-section .link_button:hover {
	transform: translateY(3px);
	box-shadow: 0 3px 0 #000;
}
.flavor-section .link_button:active {
	transform: translateY(10px);
	box-shadow: none;
}
.x-logo {
	width: 30px;
	height: auto;
	vertical-align: middle;
    margin: -7px 4px 0 6px;
}

/* ========================================
	フッター
======================================== */
footer {
	background-color: #000;
	display: flex;
	justify-content: center;
    align-items: center;
	padding: 20px;
	color: #fff;
}

/* ========================================
	レスポンシブ
======================================== */
/* ～1400px */
@media (max-width: 1400px) {
	.head {
		height: 130px;
	}
	.top.c .logo01 {
		max-width: 520px;
	}
	.top.c .donpen-wrap .manekineko-donpen {
		width: 400px;
	}
	.top.c .donpen-wrap .lshake {
		left: 0;
	}
	.top.c .donpen-wrap .rshake {
		right: 0;
	}
}

/* ～1200px */
@media (max-width: 1200px) {
	.head {
		height: 120px;
	}
	.flavor-list {
		grid-template-columns: repeat(2, 1fr);
		max-width: 900px;
	}
	.top.c .donpen-wrap .manekineko-donpen {
		width: 360px;
		margin-bottom: 20px;
	}
	.top.c .donpen-wrap .lshake {
        left: -5%;
        max-width: 300px;
    }
	.top.c .donpen-wrap .rshake {
        right: -5%;
        max-width: 300px;
    }
	.txt05 {
		width: 100%;
	}
    .top.c .logo02 {
        max-width: 100%;
    }
	.frame-potato-back {
		animation: potatoBackFadeOut 0.6s ease-out forwards;
	}
}
@keyframes potatoBackFadeOut {
	from {
		opacity: 0.8;
	}
	to {
		opacity: 0;
	}
}

/* ～1000px */
@media (max-width: 1000px) {
	.head {
		height: 110px;
	}
	.head img {
		max-width: 800px;
	}
	.frame-inner {
    	padding: calc(1vmin + 4.2vmin);
	}
	.link_button,
	.flavor-section .link_button {
		padding: 22px 44px;
	}
	.top.c .txt01 {
		max-width: 600px;
	}
	.top.c .logo02 {
        max-width: 800px;
    }
	.top.c .txt02 {
    	max-width: 700px;
	}
	.potato.lt {
		max-width: 1000px;
	}
	.potato.rb {
		max-width: 1000px;
	}
	.top.c .txt04 {
		-webkit-text-stroke: 4px #fff;
		text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff;
	}
}

/* ～900px */
@media (max-width: 900px) {
	.top.c .donpen-wrap .rshake {
        max-width: 260px;
    }
    .top.c .donpen-wrap .lshake {
        max-width: 260px;
    }
}

/* ～800px */
@media (max-width: 800px) {
	.head {
		height: 100px;
	}
	.frame-inner {
		padding: calc(4vmin + 3vmin);
	}
	.top.c .donpen-wrap .manekineko-donpen {
		width: 320px;
	}
	.top.c .donpen-wrap .lshake {
		max-width: 220px;
		bottom: -20px;
	}
	.top.c .donpen-wrap .rshake {
		max-width: 200px;
		top: -20px;
	}
    .head img {
        max-width: 600px;
    }
	.top.c .logo02 {
        max-width: 600px;
		margin: 30px 0 20px;
    }
	.top.c .txt02 {
		max-width: 600px;
	}
	.link_button,
	.flavor-section .link_button {
		font-size: clamp(20px, 4vw, 36px);
	}
	.txt05 img {
		max-width: 600px;
		margin-bottom: 20px;
		width: 100%;
	}
	.flavor-section {
    	padding: 70px 20px;
	}
	.flavor-section .link_button {
		padding: 35px 60px;
	}
}

/* ～700px */
@media (max-width: 700px) {
	.top.c .donpen-wrap .rshake {
        right: -8%;
		max-width: 180px;
    }
	.top.c .donpen-wrap .lshake {
        left: -8%;
		max-width: 180px;
    }
}

/* ～600px */
@media (max-width: 600px) {
	.head {
		height: 80px;
	}
    .top.c .logo01 {
        max-width: 480px;
		margin: 0;
    }
	.top.c .donpen-wrap .rshake {
        right: -15%;
		max-width: 185px;
    }
	.top.c .donpen-wrap .lshake {
        left: -15%;
		max-width: 185px;
    }
    .head img {
        max-width: 480px;
    }
    .top.c .donpen-wrap .manekineko-donpen {
        margin: 40px 0px;
	}
	.link_button,
	.flavor-section .link_button {
		font-size: clamp(27px, 4vw, 24px);
		padding: 18px 28px;
	}
	.top.c .txt04 {
		font-size: clamp(16px, 4vw, 24px);
	}
	.footer__copyright {
		text-align: center;
	}
	.top.c .txt01 {
		max-width: 540px;
	}
	.top.c .logo02 {
        max-width: 540px;
    }
	.top.c .txt02 {
    	max-width: 540px;
	}
	.x-logo {
		width: 26px;
	}
}

/* ～500px */
@media (max-width: 500px) {
	.top.c .txt01 {
		max-width: 440px;
	}
	.top.c .logo02 {
        max-width: 440px;
    }
	.top.c .txt02 {
    	max-width: 440px;
	}
	.flavor-list {
		grid-template-columns: 1fr;
		max-width: 420px;
	}
}

/* ～480px */
@media (max-width: 480px) {
	.head {
		height: 70px;
	}
	.head img {
        max-width: 420px;
    }
	.top.c .logo01 {
        max-width: 420px;
    }
	.frame-inner {
		padding: calc(3vmin + 2vmin);
	}
	.top.c .logo01 {
		margin: 10px 0;
	}
	.top.c .donpen-wrap .manekineko-donpen {
		width: 260px;
	}
	.top.c .donpen-wrap .lshake {
		max-width: 160px;
		right: -10%;
	}
	.top.c .donpen-wrap .rshake {
		max-width: 150px;
		right: -10%;
	}
	.top.c .txt01 {
		max-width: 420px;
	}
	.top.c .logo02 {
        max-width: 420px;
    }
	.top.c .txt02 {
    	max-width: 420px;
	}
	.flavor-section {
        padding: 70px 20px 40px;
    }
}

/* ～440px */
@media (max-width: 440px) {
    .head img {
        max-width: 360px;
    }
	.top.c .txt01 {
		max-width: 360px;
	}
    .top.c .logo01 {
        max-width: 360px;
    }
	.top.c .logo02 {
        max-width: 360px;
    }
	.top.c .txt02 {
    	max-width: 360px;
		margin-bottom: 10px;
	}
	.top.c .txt04 {
        font-size: clamp(19px, 4vw, 24px);
    }
	.flavor-list {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin: 0 auto 20px;
	}
	.link_button {
        font-size: clamp(24px, 4vw, 24px);
        padding: 18px 28px;
        line-height: 1.1;
	    margin: 20px 0;
	}
	.flavor-section .link_button {
        font-size: clamp(24px, 4vw, 24px);
        padding: 18px 28px;
        line-height: 1.1;
	    margin: 20px 0 80px;
    }
	.btn_wrapper {
		margin-bottom: 80px;
	}
}

/* ～380px */
@media (max-width: 380px) {
	.head {
		height: 60px;
	}
	.top.c .txt04 {
        font-size: clamp(19px, 4vw, 24px);
	}
	.link_button,
	.flavor-section .link_button {
		font-size: 21px;
		padding: 14px 20px;
	}
	.top.c .donpen-wrap .manekineko-donpen {
		width: 220px;
	}
	.head img {
        max-width: 320px;
    }
	.top.c .logo01 {
        max-width: 320px;
    }
    .top.c .donpen-wrap .rshake {
        max-width: 120px;
        right: 0%;
    }
    .top.c .donpen-wrap .lshake {
        max-width: 120px;
        left: 0%;
    }
    .top.c .txt01 {
        max-width: 320px;
    }
	.top.c .logo02 {
        max-width: 320px;
    }
    .top.c .txt02 {
        max-width: 320px;
    }
    .footer__copyright {
        font-size: 14px;
    }
}

/* ～320px */
@media (max-width: 320px) {
	.head img {
        max-width: 280px;
    }
	.top.c .logo01 {
        max-width: 280px;
    }
	.top.c .donpen-wrap .rshake {
        right: -10%;
    }
    .top.c .donpen-wrap .lshake {
        left: -10%;
    }
	.top.c .txt01 {
        max-width: 280px;
    }
    .top.c .logo02 {
        max-width: 280px;
    }
	.link_button {
		margin: 20px 0;
	}
	.flavor-section .link_button {
		margin: 20px 0 40px;
	}
	.btn_wrapper {
		margin-bottom: 40px;
	}
    .flavor-section {
        padding: 40px 20px 40px;
    }
	.footer__copyright {
        font-size: 12px;
    }
}














