@charset "utf-8";

body {
    /*******************************　01　layout　*/

    /*******************************　02　area　*/
    width: 100%;
    min-width: 300px;
    /*******************************　03　background　*/

    /*******************************　04　border　*/

    /*******************************　05　typography　*/
    font-family: "Roboto", "Noto Sans JP", sans-serif;
    /* font-family: "Roboto", "Noto Serif JP", sans-serif; */
    font-weight: 300;
    font-style: normal;
    /*******************************　06　others　*/
}

header {
    /*******************************　01　layout　*/
    display: grid;
    place-content: center;
    /*******************************　02　area　*/
    width: 100%;
    height: 101svh;
    margin-bottom: 50vh;
    /*******************************　03　background　*/

    /*******************************　04　border　*/
    border-bottom: 1px solid #000;
    /*******************************　05　typography　*/

    /*******************************　06　others　*/
}

header h1 {
	/*******************************　01　layout　*/
    position: fixed;
    z-index: 100;
    right: 0.5rem;
    bottom: 0.5rem;
	/*******************************　02　area　*/
    width: 8rem;
    height: 2.3rem;
	/*******************************　03　background　*/
    background-color: #fff;
	/*******************************　04　border　*/
    border-radius: 1.2rem;
    border: 0.05rem solid #000;
	/*******************************　05　typography　*/
    font-size: 0.8rem;
    text-align: center;
    color: #000;
	/*******************************　06　others　*/
}

header h1 a {
	/*******************************　01　layout　*/
    display: grid;
    place-items: center;
	/*******************************　02　area　*/
    width: 100%;
    height: 100%;
	/*******************************　03　background　*/

	/*******************************　04　border　*/

	/*******************************　05　typography　*/

	/*******************************　06　others　*/
}

header h2 {
	/*******************************　01　layout　*/

	/*******************************　02　area　*/
    padding-bottom: 0.3rem;
	/*******************************　03　background　*/

	/*******************************　04　border　*/
    border-bottom: 1px solid #000;
	/*******************************　05　typography　*/
	font-size: 1.2rem;
	text-align: center;
	/*******************************　06　others　*/
}

header h2 mark {
	/*******************************　01　layout　*/

	/*******************************　02　area　*/
    display: block;
    /*******************************　03　background　*/

	/*******************************　04　border　*/

    /*******************************　05　typography　*/
	font-size: 0.7rem;
	text-align: center;
    padding-bottom: 0.3rem;
	/*******************************　06　others　*/
}

header p {
	/*******************************　01　layout　*/
	position: relative;
	/*******************************　02　area　*/
    margin-top: 1rem;
	/*******************************　03　background　*/

	/*******************************　04　border　*/

	/*******************************　05　typography　*/
	font-size: 0.9rem;
	text-align: center;
	/*******************************　06　others　*/
}

header p::before {
	/*******************************　01　layout　*/
	content: "start";
	position: absolute;
	bottom: -2.5rem;
	right: -1.5rem;
	left: 0;

	margin: auto;
	/*******************************　02　area　*/
	width: fit-content;
	height: fit-content;
	/*******************************　03　background　*/

	/*******************************　04　border　*/

	/*******************************　05　typography　*/

	/*******************************　06　others　*/
	transform: rotate(90deg);
}

@keyframes scrollAnimation {
	0% {
		transform: scaleY(0);
		transform-origin: top;
	}

	50% {
		transform: scaleY(1);
		transform-origin: top;
	}

	50.1% {
		transform: scaleY(1);
		transform-origin: bottom;
	}

	100% {
		transform: scaleY(0);
		transform-origin: bottom;
	}
}

header p::after {
	/*******************************　01　layout　*/
	content: "";
	position: absolute;
	bottom: -3.5rem;
	right: 0;
	left: 0;
	margin-inline: auto;
	/*******************************　02　area　*/
	width: 0.035rem;
	height: 3rem;
	/*******************************　03　background　*/
	background-color: #000;
	/*******************************　04　border　*/

	/*******************************　05　typography　*/

	/*******************************　06　others　*/
	animation-name: scrollAnimation;
	animation-duration: 1.8s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

footer {
	/*******************************　01　layout　*/
	display: grid;
	place-content: center;
	/*******************************　02　area　*/
	width: 100%;
	min-height: 100vh;
	margin-top: 50vh;
	/*******************************　03　background　*/
	background-color: #000;
	/*******************************　04　border　*/

	/*******************************　05　typography　*/
	color: #fff;
	/*******************************　06　others　*/
}

footer p {
	/*******************************　01　layout　*/
	position: relative;
	/*******************************　02　area　*/
    margin-bottom: 1rem;
	/*******************************　03　background　*/

	/*******************************　04　border　*/
    border-top: 1px solid #000;
	/*******************************　05　typography　*/
	font-size: 0.9rem;
	text-align: center;
	/*******************************　06　others　*/
}

footer p::before {
	/*******************************　01　layout　*/
	content: "end";
	position: absolute;
	top: -2.5rem;
	right: -1.5rem;
	left: 0;

	margin: auto;
	/*******************************　02　area　*/
	width: fit-content;
	height: fit-content;
	/*******************************　03　background　*/

	/*******************************　04　border　*/

	/*******************************　05　typography　*/

	/*******************************　06　others　*/
	transform: rotate(90deg);
}

@keyframes scrollAnimation {
	0% {
		transform: scaleY(0);
		transform-origin: top;
	}

	50% {
		transform: scaleY(1);
		transform-origin: top;
	}

	50.1% {
		transform: scaleY(1);
		transform-origin: bottom;
	}

	100% {
		transform: scaleY(0);
		transform-origin: bottom;
	}
}

footer p::after {
	/*******************************　01　layout　*/
	content: "";
	position: absolute;
	top: -3.5rem;
	right: 0;
	left: 0;
	margin-inline: auto;
	/*******************************　02　area　*/
	width: 0.035rem;
	height: 3rem;
	/*******************************　03　background　*/
	background-color: #fff;
	/*******************************　04　border　*/

	/*******************************　05　typography　*/

	/*******************************　06　others　*/
	animation-name: scrollAnimation;
	animation-duration: 1.8s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}


/***********************************************************
試作
***********************************************************/

.a02 .b01 {
	/*******************************　01　配置　*/

	/*******************************　02　領域　*/
	width: 100%;
	min-height: 100vh;
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/

	/*******************************　05　文字　*/

	/*******************************　06　其他　*/
	container-type: inline-size;
}

.a02 .b01 .c01 {
	/*******************************　01　配置　*/
	display: flex;
	/*******************************　02　領域　*/
	width: max(490px, 70vw);
	margin: 0 auto;

	overflow: auto;
	/* 横スクロールバーを隠す MSのブラウザ　*/
	scrollbar-width: none;
	-ms-overflow-style: none;
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/
	border-bottom: 0.05rem solid #000;
	/*******************************　05　文字　*/

	/*******************************　06　其他　*/
}

.a02 .b01 .c01::-webkit-scrollbar {
	/* 横スクロールバーを隠す MS以外のブラウザ　*/
	display: none;
}

@media screen and (max-width: 490px) {
	.a02 .b01 .c01 {
		width: 100%;
	}
}

.a02 .b01 .c01 li {
	/*******************************　01　配置　*/
	flex: 1;
	/*******************************　02　領域　*/
	padding: max(9px, 0.9cqw);
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/

	/*******************************　05　文字　*/
	font-weight: 400;
	font-size: max(16px, 1.6cqw);
	text-wrap: nowrap;
	text-align: center;
	/*******************************　06　其他　*/
	cursor: pointer;
	transition: 0.5s;
}

.a02 .b01 .c01 li:first-child {
	/*******************************　01　配置　*/

	/*******************************　02　領域　*/
	margin-left: 0.5rem;
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/

	/*******************************　05　文字　*/

	/*******************************　06　其他　*/
}

.a02 .b01 .c01 li:last-child {
	/*******************************　01　配置　*/

	/*******************************　02　領域　*/
	margin-right: 0.5rem;
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/

	/*******************************　05　文字　*/

	/*******************************　06　其他　*/
}

.a02 .b01 .c01 li.is-active {
	/*******************************　01　配置　*/

	/*******************************　02　領域　*/

	/*******************************　03　背景　*/
	background: #000;
	/*******************************　04　境界　*/

	/*******************************　05　文字　*/
	color: #fff;
	/*******************************　06　其他　*/
	transition: 0.5s;
}

.a02 .b01 .c02 {
	/*******************************　01　配置　*/

	/*******************************　02　領域　*/
	width: max(490px, 70vw);
	margin: 0 auto;
	padding: 1rem 0.5rem;
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/

	/*******************************　05　文字　*/

	/*******************************　06　其他　*/
}

@media screen and (max-width: 490px) {
	.a02 .b01 .c02 {
		width: 100%;
	}
}

.a02 .b01 .c02 li {
	/*******************************　01　配置　*/

	/*******************************　02　領域　*/
	display: none;
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/

	/*******************************　05　文字　*/
	line-height: 1.6;
	font-size: max(16px, 1.6cqw);
	/*******************************　06　其他　*/
}

.a02 .b01 .c02 li.is-active {
	/*******************************　01　配置　*/

	/*******************************　02　領域　*/
	display: block;
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/

	/*******************************　05　文字　*/

	/*******************************　06　其他　*/
}

.a02 .b01 .c02 li .f01 {
	/*******************************　01　配置　*/
	display: grid;
	grid-template-columns: max(30%, 7rem) 1fr;
	/*******************************　02　領域　*/

	/*******************************　03　背景　*/

	/*******************************　04　境界　*/

	/*******************************　05　文字　*/

	/*******************************　06　其他　*/
}


.a02 .b01 .c02 li .f01 dt {
	/*******************************　01　配置　*/

	/*******************************　02　領域　*/
	padding: 0.5rem;
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/
	border-right: 0.035rem solid #000;
	border-left: 0.035rem solid #000;
	border-bottom: 0.035rem solid #000;
	/*******************************　05　文字　*/

	/*******************************　06　其他　*/
}

.a02 .b01 .c02 li .f01 dt:first-of-type {
	/*******************************　01　配置　*/

	/*******************************　02　領域　*/

	/*******************************　03　背景　*/

	/*******************************　04　境界　*/
	border-top: 0.035rem solid #000;
	/*******************************　05　文字　*/

	/*******************************　06　其他　*/
}


.a02 .b01 .c02 li .f01 dd {
	/*******************************　01　配置　*/

	/*******************************　02　領域　*/
	padding: 0.5rem;
	/* height: max-content; */
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/
	border-right: 0.035rem solid #000;
	border-bottom: 0.035rem solid #000;
	/*******************************　05　文字　*/

	/*******************************　06　其他　*/
}

.a02 .b01 .c02 li .f01 dd:first-of-type {
	/*******************************　01　配置　*/

	/*******************************　02　領域　*/

	/*******************************　03　背景　*/

	/*******************************　04　境界　*/
	border-top: 0.035rem solid #000;
	/*******************************　05　文字　*/

	/*******************************　06　其他　*/
}


.a02 .b01 .c02 li .f01 .g01 {
	/*******************************　01　配置　*/
	position: relative;
	/*******************************　02　領域　*/
	padding-right: 1rem;
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/

	/*******************************　05　文字　*/

	/*******************************　06　其他　*/
}

.a02 .b01 .c02 li .f01 .g01::after {
	/*******************************　01　配置　*/
	content: "→";
	position: absolute;
	top: 0;
	bottom: 0.25rem;
	right: -0.3rem;
	margin-block: auto;

	display: grid;
	place-content: center;
	/*******************************　02　領域　*/
	width: 1.1rem;
	height: 1.1rem;
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/
	border: 0.05rem solid #000;
	border-radius: 50%;
	/*******************************　05　文字　*/
	font-size: 0.6rem;
	/*******************************　06　其他　*/
	rotate: -45deg;
}

.a02 .b01 .c02 li .f02 {
	/*******************************　01　配置　*/

	/*******************************　02　領域　*/
	padding: 0.5rem;
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/

	/*******************************　05　文字　*/
	font-weight: 500;
	font-size: 1rem;
	text-align: center;
	/*******************************　06　其他　*/
}

.a02 .b01 .c02 li .f03 {
	/*******************************　01　配置　*/

	/*******************************　02　領域　*/
	padding: 0.5rem 0 2rem;
	width: fit-content;
	margin: 0 auto;
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/

	/*******************************　05　文字　*/
	line-height: 2;
	/*******************************　06　其他　*/
}

.a02 .b01 .c02 li .f03 dt {
	/*******************************　01　配置　*/

	/*******************************　02　領域　*/

	/*******************************　03　背景　*/

	/*******************************　04　境界　*/

	/*******************************　05　文字　*/
	font-weight: 400;
	/*******************************　06　其他　*/
}


.a02 .b01 .c02 li .f03 dd {
	/*******************************　01　配置　*/

	/*******************************　02　領域　*/
	padding: 0 0 0 1rem;
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/

	/*******************************　05　文字　*/

	/*******************************　06　其他　*/
}

.a02 .b01 .c02 li .f04 {
	/*******************************　01　配置　*/

	/*******************************　02　領域　*/

	/*******************************　03　背景　*/

	/*******************************　04　境界　*/

	/*******************************　05　文字　*/
	text-align: right;
	font-weight: 300;
	/*******************************　06　其他　*/
}


.a02 .b01 .c02 li .f05 {
	/*******************************　01　配置　*/
	display: grid;
	grid-template-columns: max(25%, 5rem) 1fr;
	/*******************************　02　領域　*/

	/*******************************　03　背景　*/

	/*******************************　04　境界　*/

	/*******************************　05　文字　*/

	/*******************************　06　其他　*/
}

.a02 .b01 .c02 li .f05 dt {
	/*******************************　01　配置　*/

	/*******************************　02　領域　*/
	padding: 0.5rem;
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/
	border-bottom: 0.035rem solid #000;
	/*******************************　05　文字　*/

	/*******************************　06　其他　*/
}

.a02 .b01 .c02 li .f05 dt:last-of-type {
	/*******************************　01　配置　*/

	/*******************************　02　領域　*/

	/*******************************　03　背景　*/

	/*******************************　04　境界　*/
	border-bottom: unset;
	/*******************************　05　文字　*/

	/*******************************　06　其他　*/
}


.a02 .b01 .c02 li .f05 dd {
	/*******************************　01　配置　*/

	/*******************************　02　領域　*/
	padding: 0.5rem;
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/
	border-bottom: 0.035rem solid #000;
	/*******************************　05　文字　*/

	/*******************************　06　其他　*/
}

.a02 .b01 .c02 li .f05 dd:last-of-type {
	/*******************************　01　配置　*/

	/*******************************　02　領域　*/

	/*******************************　03　背景　*/

	/*******************************　04　境界　*/
	border-bottom: unset;
	/*******************************　05　文字　*/

	/*******************************　06　其他　*/
}


.a02 .b01 .c02 li .f05 a {
	/*******************************　01　配置　*/
	position: relative;
	/*******************************　02　領域　*/
	padding-right: 1rem;
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/

	/*******************************　05　文字　*/

	/*******************************　06　其他　*/
}

.a02 .b01 .c02 li .f05 a::after {
	/*******************************　01　配置　*/
	content: "→";
	position: absolute;
	top: 0;
	bottom: 0.25rem;
	right: -0.3rem;
	margin-block: auto;

	display: grid;
	place-content: center;
	/*******************************　02　領域　*/
	width: 1.1rem;
	height: 1.1rem;
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/
	border: 0.05rem solid #000;
	border-radius: 50%;
	/*******************************　05　文字　*/
	font-size: 0.6rem;
	/*******************************　06　其他　*/
	rotate: -45deg;
}



/*

* {
    outline: 0.1px solid #ff0000;
}

*::before {
    outline: 0.1px solid #ff0000;
}

*::after {
    outline: 0.1px solid #ff0000;
}

<!-- guide css -->
<!-- <link rel="stylesheet" href="css/guide_*.css"> -->
<!-- <link rel="stylesheet" href="css/guide_color.css"> -->
<!-- <link rel="stylesheet" href="css/guide_culumn.css"> -->
<!-- <link rel="stylesheet" href="css/guide_row.css"> -->

<div class="guide01"></div>
<div class="guide02"></div>
<div class="guide03"></div>
<div class="guide04"></div>
<div class="guide05"></div>
<div class="guide06"></div>
<div class="guide07"></div>
<div class="guide08"></div>
<div class="guide09"></div>
<div class="guide10"></div>

<div class="guide11"></div>
<div class="guide12"></div>
<div class="guide13"></div>
<div class="guide14"></div>
<div class="guide15"></div>
<div class="guide16"></div>
<div class="guide17"></div>
<div class="guide18"></div>
<div class="guide19"></div>
<div class="guide20"></div>

*/
