@charset "UTF-8";

/******************/
/******************/
/* RESET CSS */

:root {
	--color-black:#1a1a1a;
	--color-white:#faf6ee;
	--color-orange:#f6846a;
	--font-medium: 400;
	--font-bold: 500;
	--font-main: "Noto Sans JP", sans-serif;
}
	

*,*::before,*::after{box-sizing:border-box}*{border:0;margin:0;outline:0;padding:0;font:inherit;font-family:inherit;font-size:100%;font-style:inherit;font-weight:inherit;text-decoration:none;vertical-align:baseline}article,aside,footer,header,main,nav,article,section{display:block}img,picture,audio,canvas,video,svg{display:block;max-width:100%;height:auto;width:100%}br,hr{display:block}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}input,select{vertical-align:middle}body{line-height:1;line-break:strict;overflow-wrap:break-word;overflow-wrap:anywhere;word-break:normal;font-feature-settings:"palt";-webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased}a{-webkit-tap-highlight-color:transparent}


/******************/
/******************/
/* html format ****/


html {
	font-size: 62.5%;
}
html {
	font-size: clamp(7px, calc(100vw / 1600 * 4 + 6px), 11px);
	scroll-behavior: smooth;
}
@media screen and (min-width: 1600px) {
	html {
		font-size: 62.5%;
	}
}
@media screen and (max-width: 700px) {
	html {
		font-size: clamp(7px, calc(100vw / 1600 * 4 + 8px), 11px);
	}
}

body {
	background-color:var(--color-white);
	color:var(--color-black);
	font-family: var(--font-main);
	font-weight: var(--font-light);
	font-size:17px;
	font-size:1.7rem;
	line-height:1;
	position:relative;
	text-align:left;
	text-size-adjust:100%;
	font-feature-settings:"palt";
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	-webkit-tap-highlight-color:transparent;
	width: 100%;
	height: auto;
	margin: 0 auto;
	letter-spacing: 0.1em;

	background-image: url("../images/background-noise.webp");
	background-repeat: repeat;
	background-size: 2rem;
	background-position: left top;

	transition: filter 0.3s;
}

a,
a:link,
a:visited,
a:hover,
a:active {
	color: inherit;
	-webkit-tap-highlight-color: transparent rgba(0, 0, 0, 0);
	text-decoration: none;
	-webkit-text-decoration-skip: objects;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	display: block;
	line-height: 1.3;
}
b {
	font-weight: bold;
}
i {
	font-style: normal;
}
u {
	text-decoration: underline;
}
em {
	font-weight: bold;
}
strong {
	font-weight: bold;
	font-size: 1.4em;
}
mark {
	background: transparent;
}
q {}
q:before,
q:after {
	content: '"';
}
s {
	text-decoration: underline;
}
del {
	text-decoration: line-through;
}
ins {}
iframe {}
ruby {}
rt {
	font-size: 0.5em;
}
sup {
	vertical-align: super;
	font-size: smaller;
}
sub {
	vertical-align: sub;
	font-size: smaller;
}
details {
	margin: 0 0 40px 0;
}
hr {
	margin: 0;
	border: 0;
	border-top: 1px solid #000000;
	height: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
	border: 0;
	width: 100%;
	margin: 0;
	border-top: 1px solid #000000;
}
table th,
table td {
	padding: 1.5em 1em;
	vertical-align: top;
	border-bottom: 1px solid #000000;
}
table caption {
	text-align: left;
}
::-moz-selection {
	background-color: var(--color-orange);
	color: #ffffff;
}
::selection {
	background-color: var(--color-orange);
	color: #ffffff;
}


/******************/
/* shortcodes *****/
.text-small {
	font-size: 0.8em;
}
.pc {
	display: block;
}
.sp {
	display: none;
}
@media screen and (max-width: 700px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
}


/* 共通スタイル */
.image-wrapper{
	height: fit-content;
	width: 100%;
	display: block;
	line-height: 1;
}
.image-wrapper img {
	width: 100%;
	height: auto;
	line-height: 0;
}

.site-main {
	padding: 0;
	line-height: 1.6;
	text-align: left;
	margin: 0;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}
.section {
	position: relative;
	display: block;
	padding: 0 0 10rem 0;
	margin: 0;
}
.inner {
	max-width: 1600px;
	clear: both;
	display: block;
	margin: 0 auto;
	position: relative;
	width: 100%;
	padding: 0 100px;
}
@media screen and (max-width: 700px) {
	.inner {
		padding: 0 5%;
	}
}

.button-wrapper {
	width: fit-content;
}
.button-wrapper a {
	display: flex;
	align-items: center;
	column-gap: 2rem;
	font-weight: var(--font-bold);
	font-size: 1.9rem;
	position: relative;
	transition: color 0.3s;
}
@media screen and (min-width: 700px) {
	.button-wrapper a:hover {
		color: var(--color-orange);
	}
}
.button-wrapper a::after {
	content: "";
	display: block;
	background-image: url("../images/arrow-right-black.svg");
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
	width: 3em;
	height: 3em;
	background-color: var(--color-orange);
	border: 2px solid var(--color-black);
	border-radius: 50%;
	transition: transform 0.3s;
}
@media screen and (min-width: 700px) {
	.button-wrapper a:hover::after {
		transform: scale(0.9);
	}
}
/* アニメーション */
.animation-hoge {}

/* 固有スタイル */
.site-header {
	padding: 25px;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}
.site-header .header-navi {
	display: flex;
	justify-content: space-between;
}
.site-header .header-logo {
	width: 22rem;
}
.site-header nav ul {
	display: flex;
	justify-content: space-between;
	column-gap: 5rem;
}
.site-header nav ul li a {
	font-size: 1.8rem;
	text-transform: uppercase;
	transition: color 0.3s;
	position: relative;
}
@media screen and (min-width: 700px) {
	.site-header nav ul li a:hover {
		color: var(--color-orange);
	}
}
.site-header nav ul li a::after {
	content: "";
	position: absolute;
	top: 105%;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 0;
	height: 2px;
	background-color: var(--color-black);
	transition: 0.3s;
}
@media screen and (min-width: 700px) {
	.site-header nav ul li a:hover::after {
		width: 100%;
		background-color: var(--color-orange);
	}
}
.site-header .site-description {
	height: 0;
	overflow: hidden;
}
.site-header .navi-toggle {
	width: 5rem;
	height: 5rem;
	position: fixed;
	top: 1rem;
	right: 1rem;
	z-index: 1000;
	display: none;
	cursor: pointer;
}
.site-header .navi-toggle::before,
.site-header .navi-toggle::after {
	content: "";
	position: absolute;
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--color-black);
	transform: translateY(-50%);
	transition: 0.3s;
}
.site-header .navi-toggle::before {
	top: 33%;
}
.site-header .navi-toggle::after {
	top: 67%;
}
.site-header.navi-active .navi-toggle::before {
	transform: translate(-50%, -50%) rotate(45deg);
	left: 50%;
	top: 50%;
}
.site-header.navi-active .navi-toggle::after {
	transform: translate(-50%, -50%) rotate(-45deg);
	left: 50%;
	top: 50%;
}
@media screen and (max-width: 700px) {
	.site-header {
		width: 100%;
		padding: 0;
	}
	.site-header .header-logo {
		position: fixed;
		top: 1rem;
		left: 1rem;
		width: 50%;
		z-index: 999;
	}
	.site-header .navi-wrapper {
		position: fixed;
		width: 100%;
		height: 100dvh;
		top: 0;
		left: 100vw;
		z-index: 1000;
		pointer-events: none;
		transition: 0.5s;
		background-color: var(--color-white);
	}
	.site-header.navi-active .navi-wrapper {
		left: 0;
		pointer-events: all;
	}
	.site-header nav {
		width: 100%;
		height: 100dvh;
		display: block;
		overflow-y: auto;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	.site-header nav::-webkit-scrollbar{
		display: none;
	}
	.site-header nav ul {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		min-height: 100dvh;
		height: fit-content;
		padding: 7rem 0;
	}
	.site-header nav ul li + li {
		margin-top: 2em;
	}
	.site-header nav ul li a {
		font-size: 2rem;
	}
	.site-header .navi-toggle {
		display: block;
	}
}





.section-top-hero {
	background-image: url("../images/top-hero-background.webp");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: right bottom;
	aspect-ratio: 1600 / 1100;
	padding-bottom: 0;
	z-index: 2;
}
.section-top-hero .background-decoration {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	display: block;
	width: 100%;
	aspect-ratio: 1600 / 1100;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: right bottom;
}
.section-top-hero .background-decoration-01 {
	background-image: url("../images/top-hero-background-decoration-01.webp");
}
.section-top-hero .background-decoration-02 {
	background-image: url("../images/top-hero-background-decoration-02.webp");
}
.section-top-hero .title {
	position: absolute;
	top: 50%;
	left: 8%;
	transform: translateY(-50%);
	width: 33%;
}
.section-top-hero .title h1 {
	display: flex;
	align-items: center;
	margin-bottom: 3vw;
}
.section-top-hero .title h1  {
	display: flex;
	align-items: center;
	white-space: nowrap;
	font-weight: 300;
}
.section-top-hero .title h1 .name {
	width: 46%;
	padding-right: 2.5em;
}
.section-top-hero .title h1 .caption {
	border-left: 1px solid var(--color-black);
	padding-left: 2.5em;
	width: 53%;
}
@media screen and (max-width: 700px) {
	.section-top-hero {
		aspect-ratio: 375 / 450;
		background-size: auto 100%;
		background-position: 35% bottom;
	}
	.section-top-hero .background-decoration {
		aspect-ratio: 375 / 450;
		background-size: auto 80%;
		background-position: 90% bottom;
	}
	.section-top-hero .title {
		top: 35%;
		left: 5%;
		transform: none;
		width: 53%;
	}
	.section-top-hero .title h1 .name {
		padding-right: 1.6rem;
	}
	.section-top-hero .title h1 .caption {
		padding-left: 1.6rem;
	}
}

.section-top-belt {
	border-top: 2px solid var(--color-black);
	border-bottom: 2px solid var(--color-black);
	padding: 5px 0;
	z-index: 1;
}
.section-top-belt .slide-wrapper {
	border-top: 2px solid var(--color-black);
	border-bottom: 2px solid var(--color-black);
	width: 100%;
	overflow: hidden;
	display: flex;
}
.section-top-belt .slide-wrapper .slide {
	flex-shrink: 0;
	aspect-ratio: 150 / 11;
	width: 120%;
}
.section-top-belt .slide-wrapper .slide:nth-child(odd) {
	animation: beltMove-1 120s -60s infinite linear;
}
.section-top-belt .slide-wrapper .slide:nth-child(even) {
	animation: beltMove-2 120s infinite linear;
}
@keyframes beltMove-1 {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(-100%);
	}
}
@keyframes beltMove-2 {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-200%);
	}
}
@media screen and (max-width: 700px) {
	.section-top-belt .slide-wrapper .slide {
		width: 200%;
	}
}


.section-top-pick {
	padding-top: 15rem;
}
.section-top-pick .section-title {
	height: 0;
	overflow: hidden;
}
.section-top-pick .content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.section-top-pick .content .comic {
	flex-basis: 30%;
	position: relative;
	filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.15));
}
.section-top-pick .content .comic::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	border: 2px solid var(--color-black);
}
.section-top-pick .content .comic::after {
	content: "";
	position: absolute;
	top: 1.5rem;
	left: 1.5rem;
	display: block;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: var(--color-orange);
	border: 2px solid var(--color-black);
}
.section-top-pick .content .description {
	flex-basis: 60%;
}
.section-top-pick .content .description .caption {
	width: 55%;
	max-width: 300px;
}
.section-top-pick .content .description .title {
	font-size: 3.8rem;
	margin-top: 1rem;
	width: fit-content;
}
.section-top-pick .content .description .title::after {
	content: "";
	display: block;
	background-image: url("../images/background-dot-line.svg");
	background-repeat: repeat;
	background-size: contain;
	background-position: left top;
	width: calc(100% + 3rem);
	height: 3px;
	margin-top: 1rem;
}
.section-top-pick .content .description p {
	margin-top: 3rem;
}
.section-top-pick .content .description .button-wrapper {
	margin-top: 3rem;
}
@media screen and (max-width: 700px) {
	.section-top-pick {
		padding-top: 7rem;
	}
	.section-top-pick .content {
		display: block;
	}
	.section-top-pick .content .comic {
		width: 65%;
		margin: 0 auto;
	}
	.section-top-pick .content .comic::after {
		top: 1rem;
		left: 1rem;
	}
	.section-top-pick .content .description {
		margin-top: 5rem;
	}
	.section-top-pick .content .description .caption {
		width: 70%;
	}
}

.section-top-about {
	padding: 25% 0;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 1600px;
	max-height: 1300px;
	margin: 0 auto;
}
.section-top-about .background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.section-top-about .background .decoration {
	position: absolute;
	background-color: var(--color-white);
	border: 2px solid #d4cfc8;
	opacity: 0;
	transform: translateY(50%);
	transition: 2s;
}
.section-top-about .background .decoration.is-active {
	opacity: 1;
	transform: translateY(0);
}
.section-top-about .background .decoration img {
	opacity: 0.2;
}

.section-top-about .background .decoration-01 {
	top: 10%;
	left: 5%;
	width: 20%;
}
.section-top-about .background .decoration-02 {
	top: 15%;
	left: 40%;
	width: 15%;
}
.section-top-about .background .decoration-03 {
	top: 0;
	right: 5%;
	width: 20%;
}
.section-top-about .background .decoration-04 {
	bottom: 5%;
	left: 0;
	width: 15%;
}
.section-top-about .background .decoration-05 {
	bottom: 0;
	left: 20%;
	width: 35%;
}
.section-top-about .background .decoration-06 {
	bottom: 10%;
	right: 0;
	width: 30%;
}
.section-top-about .section-title {
	display: none;
}
.section-top-about .content-wrapper {
	transform: rotate(-4deg);
	width: fit-content;
	height: fit-content;
	max-width: 900px;
	width: 60%;
	filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.15));
}
.section-top-about .content {
	position: relative;
	aspect-ratio: 10 / 6;
	background-color: var(--color-white);
	border: 2px solid var(--color-black);
	padding: 4rem;
	display: flex;
	align-items: center;
}
.section-top-about .content::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	transform: rotate(-4deg);
	background-color: var(--color-orange);
	border: 2px solid var(--color-black);
	display: block;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.section-top-about .content .decoration {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
}
.section-top-about .content .decoration::before {
	content: "";
	position: absolute;
	bottom: 100%;
	left: 0;
	display: block;
	width: 18rem;
	aspect-ratio: 150 / 44;
	background-image: url("../images/top-about-decoration-top.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom left;
}
.section-top-about .content .decoration::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 18rem;
	aspect-ratio: 106 / 75;
	background-image: url("../images/top-about-decoration-bottom.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top left;
}
.section-top-about .content .thumbnail {
	width: 35%;
	position: absolute;
	top: 4rem;
	left: -3rem;
	z-index: 1;
}
.section-top-about .content .thumbnail::after {
	content: "";
	position: absolute;
	top: 2rem;
	left: -2rem;
	transform: rotate(-5deg);
	display: block;
	background-color: #f9f8f7;
	border: 2px solid var(--color-black);
	background-image: url("../images/background-check-gray.svg");
	background-repeat: repeat;
	background-size: 22%;
	background-position: center;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.section-top-about .content .thumbnail::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	border: 2px solid var(--color-black);
	width: 100%;
	height: 100%;
}
.section-top-about .content .description {
	margin: 0 0 0 auto;
	width: 60%;
}
.section-top-about .content .description .caption {
	width: 70%;
}
.section-top-about .content .description .title {
	width: 45%;
	margin-top: 1rem;
}
.section-top-about .content .description p {
	margin-top: 2rem;
}
.section-top-about .content .description .sns-button {
	margin-top: 2rem;
}
.section-top-about .content .description .sns-button a {
	display: flex;
	align-items: center;
	font-size: 2rem;
	font-weight: var(--font-bold);
	column-gap: 1rem;
	letter-spacing: 0;
}
.section-top-about .content .description .sns-button a::before {
	content: "";
	display: block;
	background-image: url("../images/icon-x.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 2em;
	height: 2em;
}
.section-top-about .content .description .sns-button a::after {
	content: "";
	display: block;
	background-image: url("../images/icon-external.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 1em;
	height: 1em;
}
@media screen and (max-width: 700px) {
	.section-top-about {
		overflow: hidden;
		padding: 45vw 0 55vw 0;
	}
	.section-top-about .content-wrapper {
		width: 100%;
	}
	.section-top-about .content {
		padding: 5vw 10vw 10vw 10vw;
		aspect-ratio: auto;
		display: block;
	}
	.section-top-about .content .description {
		width: 100%;
		margin-top: 5rem;
	}
	.section-top-about .content .description .caption {
		width: 85%;
	}
	.section-top-about .content .thumbnail {
		position: relative;
		top: 0;
		left: 0;
		margin: 2rem 0 0 3rem;
		width: 50%;
	}
	.section-top-about .content .decoration::before {
		width: 16rem;
	}
	.section-top-about .content .decoration::after {
		width: 16rem;
	}
	.section-top-about .content .description .title {
		width: 60%;
	}

	.section-top-about .background .decoration-01 {
		width: 30%;
		top: 5%;
		left: 0;
	}
	.section-top-about .background .decoration-02 {
		width: 20%;
		top: 10%;
	}
	.section-top-about .background .decoration-03 {
		right: 0;
		width: 25%;
	}
	.section-top-about .background .decoration-04 {
		width: 20%;
	}
	.section-top-about .background .decoration-05 {
		left: 30%;
	}
	.section-top-about .background .decoration-06 {
		bottom: 8%;
		width: 40%;
	}
}

.section-top-works {
	overflow: hidden;
	position: relative;
}
.section-top-works::before {
	transform: translateY(20%);
	opacity: 0;
	transition: 2s;
	max-width: 1600px;
	margin: 0 auto;
}
@media screen and (min-width: 1600px) {
	.section-top-works::after {
		content: "";
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		display: block;
		width: 100%;
		height: 100%;
		max-width: 1602px;
		z-index: -1;
		background: linear-gradient(90deg, rgba(245, 240, 230, 1) 1%, rgba(0, 0, 0, 0.0) 15%, rgba(0, 0, 0, 0.0) 85%, rgba(245, 240, 230, 1) 99%);
	}
}
.section-top-works.is-active::before {
	transform: translateY(0);
	opacity: 1;
}
.section-top-works .section-title {
	border: 2px solid var(--color-black);
	background-color: var(--color-white);
	border-bottom: none;
	padding: 2rem 4rem;
	display: block;
}
.section-top-works .content {
	width: 80%;
	max-width: 1200px;
	margin: -30vw auto 0 auto;
	position: relative;
	filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.15));
}
@media screen and (min-width: 1600px) {
	.section-top-works .content {
		margin: -500px auto 0 auto;
	}
}
.section-top-works h3.title {
	border-right: 2px solid var(--color-black);
	border-bottom: 2px solid var(--color-black);
	width: fit-content;
	font-size: 2rem;
	padding: 0.7em 1.75em 0.8em 1.75em;
	line-height: 1;
	background-color: var(--color-white);
	position: absolute;
	top: 0;
	left: 0;
}
.section-top-works .content .swiper-container {
	width: 100%;
	border: 2px solid var(--color-black);
	background-color: var(--color-white);
	position: relative;
	user-select: none;
	background-image: url("../images/background-check-gray.svg");
	background-repeat: repeat;
	background-size: 5rem;
	background-position: center;
	padding: 10rem 0 10rem 0;
}
.section-top-works .content .swiper-container::before {
	content: "";
	position: absolute;
	top: 2rem;
	left: 2rem;
	display: block;
	width: 100%;
	height: 100%;
	background-color: var(--color-orange);
	border: 2px solid var(--color-black);
	z-index: -1;
}
.section-top-works .content .swiper-container .swiper-slide {
	width: 420px;
	padding: 0 2rem;
	transition: transform 0.3s;
}
@media screen and (min-width: 700px) {
	.section-top-works .content .swiper-container .swiper-slide:hover {
		transform: scale(0.97);
	}
}

.section-top-works .content .swiper-container .swiper-slide .thumbnail {
	aspect-ratio: 1 / 1;
	padding: 3rem;
	border: 2px solid var(--color-black);
	background-color: var(--color-white);
	position: relative;
}
.section-top-works .content .swiper-container .swiper-slide .thumbnail::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	display: block;
	width: 4rem;
	height: 4rem;
	background-image: url("../images/icon-zoom.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	background-color: var(--color-orange);
	border-top: 2px solid var(--color-black);
	border-left: 2px solid var(--color-black);
	cursor: zoom-in;
}
.section-top-works .content .swiper-container .swiper-slide .thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(4px 4px 12px rgba(0, 0, 0, 0.15));
}
.section-top-works .content .swiper-container .swiper-slide .caption {
	padding: 0.5em 1em;
	border: 2px solid var(--color-black);
	border-bottom: none;
	width: fit-content;
	background-color: var(--color-white);
}
.section-top-works .content .swiper-container .button-next,
.section-top-works .content .swiper-container .button-prev {
	content: "";
	position: absolute;
	top: 50%;
	display: block;
	background-color: var(--color-white);
	border: 2px solid var(--color-black);
	border-radius: 50%;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 7rem;
	height: 7rem;
	z-index: 3;
	cursor: pointer;
	transition: transform 0.3s;
}
.section-top-works .content .swiper-container .button-prev {
	left: 0;
	transform: translate(-50%, -50%);
	background-image: url("../images/arrow-left-black.svg");
}
@media screen and (min-width: 700px) {
	.section-top-works .content .swiper-container .button-prev:hover {
	transform: translate(-50%, -50%) scale(0.95);
	}
}
.section-top-works .content .swiper-container .button-next {
	right: 0;
	transform: translate(50%, -50%);
	background-image: url("../images/arrow-right-black.svg");
}
@media screen and (min-width: 700px) {
	.section-top-works .content .swiper-container .button-next:hover {
		transform: translate(50%, -50%) scale(0.95);
	}
}


.section-top-comic {
	margin-top: 15rem;
}
.section-top-comic::before {
	content: "";
	display: block;
	width: 100%;
	aspect-ratio: 1600 / 1320;
	background-image: url("../images/top-comic-background.webp");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center bottom;
	z-index: -2;
	position: relative;
}
.section-top-comic .section-title {
	width: 35%;
}

.section-top-illust {
	margin-top: 10rem;
}
.section-top-illust::before {
	content: "";
	display: block;
	width: 100%;
	aspect-ratio: 1600 / 1260;
	background-image: url("../images/top-illust-background.webp");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center bottom;
	z-index: -2;
	position: relative;
}
.section-top-illust .section-title {
	width: 55%;
}
@media screen and (max-width: 700px) {
	.section-top-works::before {
		width: 130%;
		left: -10%;
	}
	.section-top-works .content {
		width: 90%;
	}
	.section-top-works .content .swiper-container {
		padding: 10rem 0 5rem 0;
	}
	.section-top-works .content .swiper-container::before {
		top: 1rem;
		left: 1rem;
	}
	.section-top-works .section-title {
		padding: 1.5rem 3rem;
	}
	.section-top-works h3.title {
		font-size: 1.6rem;
	}
	.section-top-works .content .swiper-container .swiper-slide {
		width: 290px;
		padding: 0 1rem;
	}
	.section-top-works .content .swiper-container .swiper-slide .caption {
		font-size: 1.4rem;
	}
	.section-top-works .content .swiper-container .swiper-slide .thumbnail {
		padding: 1.5rem;
	}
	.section-top-works .content .swiper-container .button-next, .section-top-works .content .swiper-container .button-prev {
		width: 5rem;
		height: 5rem;
	}
	.section-top-works .content .swiper-container .button-next {
		right: 5%;
	}
	.section-top-works .content .swiper-container .button-prev {
		left: 5%;
	}
	.section-top-comic {
		margin-top: 7rem;
	}
	.section-top-comic .section-title {
		width: 70%;
	}
	.section-top-illust {
		margin-top: 2rem;
	}
	.section-top-illust .section-title {
		width: 90%;
	}
}
@media screen and (max-width: 370px) {
	.section-top-works .content .swiper-container .swiper-slide {
		width: 250px;
	}
}



/* コンタクトフォーム */
.section-top-contact {
	padding-top: 15rem;
	padding-bottom: 7rem;
}
.section-top-contact .section-title {
	width: 50%;
	max-width: 500px;
	margin: 0 auto;
}
.section-top-contact .title {
	text-align: center;
	font-size: 2.4rem;
	margin-top: 2rem;
}
.section-top-contact .contact-description {
	margin-bottom: 3rem;
	font-weight: var(--font-bold);
}
.section-top-contact .content {
	max-width: 850px;
	margin: 10rem auto 0 auto;
	border: 2px solid var(--color-black);
	position: relative;
	padding: 5rem;
	background-color: var(--color-white);
	filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.15));
}
.section-top-contact .content::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	pointer-events: none;
	width: calc(100% + 2rem);
	height: calc(100% + 2rem);
	border: 2px solid var(--color-black);
}
.section-top-contact form table {
	border: none;
}
.section-top-contact form td,
.section-top-contact form th {
	padding: 0;
	display: block;
}
.section-top-contact form th {
	font-size: 2rem;
	border: none;
	white-space: nowrap;
	text-align: left;
	vertical-align: middle;
	font-weight: var(--font-bold);
	padding-top: 0;
	padding-bottom: 0.5rem;
}
.section-top-contact form th b {
	font-size: 1.4rem;
	background-color: var(--color-orange);
	padding: 0.1em 0.5em;
	display: inline-block;
	margin-left: 1.5rem;
	color: var(--color-black);
	white-space: nowrap;
	border: 2px solid var(--color-black);
}
.section-top-contact form td {
	border: none;
	vertical-align: middle;
	padding-top: 0.5rem;
	padding-bottom: 3rem;
}
.section-top-contact form input {
	font-size: 1.7rem;
	padding: 0.5em 1em;
	width: 100%;
	border: 2px solid var(--color-black);
	background-color: #ffffff;
	border-radius: 0;
	transition: 0.3s;
}
.section-top-contact form input::placeholder {
	color: #b4b4b4;
}
.section-top-contact form input:focus {
	border: 2px solid var(--color-orange);
}
.section-top-contact form textarea {
	font-size: 1.7rem;
	padding: 0.5em 1em;
	width: 100%;
	border: 2px solid var(--color-black);
	background-color: #ffffff;
	min-height: 6em;
	resize: vertical;
	transition: 0.3s;
	border-radius: 0;
}
.section-top-contact form textarea::placeholder {
	color: #b4b4b4;
}
.section-top-contact form textarea:focus {
	border: 2px solid var(--color-orange);
}
.section-top-contact .submit {
	position: relative;
	margin-top: 5rem;
	width: 100%;
}
.section-top-contact .submit input {
	background-color: var(--color-green);
	text-align: center;
	display: block;
	padding: 0.75em;
	font-size: 2.2rem;
	color: var(--color-white);
	width: 100%;
	letter-spacing: 0.1em;
	cursor: pointer;
	border: 2px solid var(--color-black);
	transition: 0.3s;
	background-color: var(--color-orange);
	color: var(--color-black);
}
.section-top-contact .submit input:disabled {
	background-color: var(--color-white);
	color: #a1a1a1;
	border: 2px solid #a1a1a1;
	cursor: not-allowed;
}


.section-top-contact .privacy {
	margin-top: 1rem;
}
.section-top-contact .privacy-text {
	height: 150px;
	overflow-y: scroll;
	padding: 0 3rem;
	background-color: #eae7df;
}
.section-top-contact .privacy-text .title {
	font-size: 2rem;
	margin: 3rem auto;
	display: block;
	font-weight: var(--font-bold);
}
.section-top-contact .privacy-text dl {
	text-align: left;
	margin-bottom: 3rem;
}
.section-top-contact .privacy-text dt {
	font-weight: var(--font-bold);
	margin-top: 3rem;
	margin-bottom: 1rem;
}
.section-top-contact .privacy-text dd {
	font-size: 1.5rem;
}
.section-top-contact .privacy-text ul {
	margin-top: 0.5rem;
}
.section-top-contact .privacy-text ul li {
	padding-left: 1.5em;
	position: relative;
}
.section-top-contact .privacy-text ul li::before {
	content: "";
	position: absolute;
	top: 0.8em;
	left: 0;
	display: block;
	width: 1em;
	height: 1px;
	background-color: var(--color-black);
}
.section-top-contact .privacy .agree-button {
	margin-top: 2rem;
}
.section-top-contact .privacy label {
	cursor: pointer;
	width: fit-content;
	margin: 0 auto;
	display: block;
	position: relative;
	font-size: 2rem;
	padding-left: 1.5em;
	font-weight: var(--font-bold);
	letter-spacing: 0;
	white-space: nowrap;
}
.section-top-contact .privacy label::before {
	border: 1px solid var(--color-black);
	display: block;
	content: "";
	width: 1em;
	height: 1em;
	position: absolute;
	left: 0;
	top: 0.4em;
}
.section-top-contact .privacy label::after {
	border-right: 3px solid var(--color-orange);
	border-bottom: 3px solid var(--color-orange);
	display: block;
	content: "";
	width: 1.2rem;
	height: 1.5em;
	position: absolute;
	top: -0.2em;
	left: 0.55em;
	opacity: 0;
	transform: rotate(45deg);
}
.section-top-contact .privacy input[type=checkbox]:checked+label::after {
	opacity: 1;
}
.section-top-contact .privacy input {
	display: none;
}



.section-top-contact .buttons {
	display: flex;
	gap: 3rem;
	justify-content: space-between;
}
.section-top-contact .button-wrapper {
	position: relative;
	width: fit-content;
	flex-basis: 48%;
}
.section-top-contact .button-wrapper .button {
	background-color: var(--color-orange);
	text-align: center;
	display: block;
	padding: 0.5em 0 0.6em 0;
	font-size: 2.2rem;
	color: var(--color-black);
	letter-spacing: 0.1em;
	cursor: pointer;
	border: 2px solid var(--color-black);
}
.section-top-contact .button-wrapper.back .button {
	background-color: var(--color-white);
	color: var(--color-black);
}
.section-top-contact .button-wrapper .button::after {
	display: none;
}
@media screen and (max-width: 700px) {
	.section-top-contact {
		padding-top: 2rem;
	}
	.section-top-contact .section-title {
		width: 75%;
	}
	.section-top-contact .title {
		font-size: 1.8rem;
	}
	.section-top-contact .content {
		margin-top: 5rem;
		padding: 5%;
	}
	.section-top-contact .privacy {
		padding-top: 2rem;
	}
	.section-top-contact .privacy label {
		font-size: 1.8rem;
	}
}

.site-footer {
	margin-top: 10rem;
	padding: 1rem 0;
	border-top: 2px solid;
	border-bottom: 2px solid;
	position: relative;
}
.site-footer .button {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}
.site-footer .button::after {
	background-image: url("../images/arrow-top-black.svg");
	background-color: var(--color-white);
}
.site-footer small {
	padding: 8rem 0;
	display: block;
	margin: 0 auto;
	text-align: center;
	border-top: 2px solid;
	border-bottom: 2px solid;
}
@media screen and (max-width: 700px) {
	.site-footer {
		margin-top: 5rem;
	}
	.site-footer small {
		padding: 7rem 0;
	}
}

body .site-header,
body .site-main,
body .site-footer{
	transition: filter 0.3s;
}
body:has(#modal.modal-active) .site-header,
body:has(#modal.modal-active) .site-main,
body:has(#modal.modal-active) .site-footer{
	filter: blur(15px);
}
body:has(#modal.modal-active) {
	overflow: hidden;
}
#modal {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	padding: 5%;
	opacity: 0;
	pointer-events: none;
	z-index: 99999;
	transition: 0.3s;
	cursor: zoom-out;
	background-color: rgba(0, 0, 0, 0.15);
}
#modal.modal-active {
	opacity: 1;
	pointer-events: all;
}
#modal .modal-wrapper{
	width: 100%;
	height: 100%;
}
#modal .modal-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transform: scale(0.75);
	opacity: 0;
	transition: 0.5;
}
#modal.modal-active .modal-wrapper img {
	transform: scale(1);
	opacity: 1;
}

.section-read-content {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100dvh;
	overflow: hidden;
	padding: 0;
}
.section-read-content .content {
	width: 100%;
	height: auto;
	aspect-ratio: 315 / 440;
	overflow: hidden;
}
.section-read-content .content .swiper-slide.swipe-slide {
	position: relative;
}
.section-read-content .content .swiper-slide.swipe-slide .swipe {
	position: absolute;
	bottom: 2%;
	left: 5%;
	padding: 0.5em 0;
	text-align: center;
	font-size: 1.8rem;
	color: var(--color-white);
	background-color: rgba(0, 0, 0, 0.5);
	font-weight: var(--font-bold);
	display: block;
	width: 90%;
	border-radius: 999px;
	overflow: hidden;
}
.section-read-content .content .swiper-slide.swipe-slide .swipe::after {
	content: "";
	position: absolute;
	transform: translateX(-50%);
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	aspect-ratio: 2/1;
	background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 1) 70%);
	border-radius: 0 999px 999px 0;
	opacity: 0;
	animation-name: pick-swipe;
	animation-fill-mode: forwards;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: ease;
	animation-delay: 0;
	animation-direction: normal;
}
.section-read-content .content .read-button-next,
.section-read-content .content .read-button-prev {
	position: absolute;
	top: 0;
	width: 30%;
	height: 100%;
	z-index: 99;
	cursor: pointer;
}
.section-read-content .content .read-swiper {
	position: relative;
}
.section-read-content .content .read-button-next {
	left: 0;
}
.section-read-content .content .read-button-prev {
	right: 0;
}
.section-read-content .content .scrollbar-wrapper {
	position: absolute;
	bottom: -100%;
	left: 5%;
	width: 90%;
	height: fit-content;
	padding: 5% 5%;
	border-radius: 999px;
	z-index: 100;
	background-color: var(--color-white);
	border: 2px solid var(--color-orange);
	filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.25));
	transition: 0.5s;
}
.section-read-content .content .scrollbar-wrapper.scrollbar-active {
	bottom: 10%;
}
.section-read-content .content .read-scrollbar {
	height: 20px;
	width: 100%;
	border-radius: 999px;
	background-color: #cccccc;
}
.section-read-content .content .read-scrollbar .swiper-scrollbar-drag {
	background-color: transparent;
	position: relative;
}
.section-read-content .content .read-scrollbar .swiper-scrollbar-drag::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	border-radius: 50%;
	width: 4rem;
	height: 4rem;
	background-color: var(--color-orange);
	cursor: pointer;
}
.section-read-content .content .scrollbar-toggle {
	width: 5%;
	aspect-ratio: 1;
	position: absolute;
	bottom: 2rem;
	right: 2rem;
	z-index: 99;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.25);
}
@keyframes pick-swipe {
	0% {
		opacity: 0;
		left: 0;
	}
	10% {
		opacity: 0.5;
	}
	90% {
		opacity: 0.5;
	}
	100% {
		opacity: 0;
		left: 100%;
	}
}
@media (min-aspect-ratio: 315/440) {
	.section-read-content .content {
		width: auto;
		height: 100%;
	}
}


/* end ************/
/******************/
/******************/
