@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;
}


/***********************************************************
試作
***********************************************************/
.js-modal-open {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    cursor: pointer;
}

.js-modal {
    /*******************************　01　配置　*/
    z-index: 200;
    /* 自要素を上下・左右の中央配置 */
    position: fixed;
    inset: 0;
    margin: auto;
    /*******************************　02　領域　*/
    width: 100%;

    overflow: scroll;
    /*******************************　03　背景　*/
    background: rgba(0, 0, 0, 0.7);
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;

    display: none;
}

.js-modal.is-active {
    /*******************************　01　配置　*/
    z-index: 300;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    opacity: 1;
    visibility: visible;

    display: block;
}

.js-modal.is-active .js-modal-close {
    display: block;
    /* モーダルがアクティブになったときに表示 */
}

.js-modal-close {
    /*******************************　01　配置　*/
    /* 「.modal_content　z-index」よりも上に配置 */
    z-index: 500;
    /* ボタンの表示位置 */
    position: fixed;
    top: 1%;
    right: 1%;
    /*******************************　02　領域　*/
    width: 2.5rem;
    height: 2.5rem;
    /*******************************　03　背景　*/
    background-color: #fff;
    /*******************************　04　境界　*/
    border: 0.2rem solid #000;
    border-radius: 50%;
    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    cursor: pointer;
    /* 初期状態で非表示 */
    display: none;

}

.js-modal-close::before,
.js-modal-close::after {
    /*******************************　01　配置　*/
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    /*******************************　02　領域　*/
    width: 0.2rem;
    height: 80%;
    /*******************************　03　背景　*/
    background-color: #000;
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

.js-modal-close::before {
    /*******************************　01　配置　*/
    /* 角度調整 */
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

.js-modal-close::after {
    /*******************************　01　配置　*/
    /* 角度調整 */
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

.js-no-scroll {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    overflow: hidden;
    height: 100vh;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    touch-action: none;
}

/***********************************　main.a02 > section.b03（section.b02～section.b06） */
.a02 .b03 {
    /*******************************　01　配置　*/

	/*******************************　02　領域　*/
    width: 100%;
    padding: 0 0.5rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}


/***********************************　main.a02 > section.b03 > dl.c02 */
.a02 .b03 .c02 {
    /*******************************　01　配置　*/

	/*******************************　02　領域　*/
    width: max(590px, 80vw);
	margin: 0 auto;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

@media screen and (max-width: 610px) {
	.a02 .b03 .c02 {
        /***************************　02　領域　*/
        width: 100%;
    }
}

/***********************************　main.a02 > section.b03 > dl.c02 > dt.d01 */
.a02 .b03 .c02 .d01 {
    /*******************************　01　配置　*/

	/*******************************　02　領域　*/
	padding: 2.5rem 0 1rem;
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/
	border-bottom: 0.05rem solid #000;
	/*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b03 > dl.c01 > dt.d02 > p.e01 */
.a02 .b03 .c02 .d01 .e01 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    width: 100%;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-weight: 600;
    letter-spacing: 0.2cqw;
	text-align: center;
	font-size: 1.2rem;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b03 > dl.c02 > dt.d01 > p.e03 */
.a02 .b03 .c02 .d01 .e02 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
	padding: 1rem 0 0.5rem;
	/*******************************　03　背景　*/

    /*******************************　04　境界　*/

	/*******************************　05　文字　*/
    font-weight: 500;
	font-size: 0.9rem;
	/*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b03 > dl.c02 > dt.d01 > p.e04 */
.a02 .b03 .c02 .d01 .e03 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
	padding: 0 0 0rem 0;
	/*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
	font-size: 0.8rem;
	line-height: 2;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b03 > dl.c02 > dt.d01 > p.e05 */
.a02 .b03 .c02 .d01 .e04 {
    /*******************************　01　配置　*/
    /* position: absolute; */
	position: relative;
    /*******************************　02　領域　*/
    width: fit-content;
	margin-left: auto;
	padding: 0.5rem 2.5rem 0.5rem 0;
    /* padding: 0 15cqw 2cqw 0; */
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
	font-size: 0.9rem;
    text-align: right;
    letter-spacing: 0.05rem;
    /* 英語を大文字 */
    text-transform: capitalize;
    /*******************************　06　其他　*/
}

.a02 .b03 .c02 .d01 .e04::after {
    /*******************************　01　配置　*/
    content: "→";
    position: absolute;
    right: 0;
	top: 0;
	bottom: 0;
	margin-block: auto;

	/* 子要素の上下位置の中央寄せ */
    display: grid;
    align-content: center;
    /*******************************　02　領域　*/
    width: 2rem;
    height: 2rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border: 0.05rem solid #000;
    border-radius: 50%;
    /*******************************　05　文字　*/
    text-align: center;
	font-size: 1.2rem;
    /*******************************　06　其他　*/
}


/***********************************　main.a02 > section.b03 > dl.c02 > dd.d02 */
.a02 .b03 .c02 .d02 {
    /*******************************　01　配置　*/

	/*******************************　02　領域　*/
	padding: 0 0.5rem;
	/*******************************　03　背景　*/

	/*******************************　04　境界　*/

	/*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b03 > dl.c02 > dd.d02 > h3.e01 */
.a02 .b03 .c02 .d02 .e01 {
    /*******************************　01　配置　*/
	position: relative;
    z-index: 500;

    margin: 5rem auto 0;
    /*******************************　02　領域　*/
    width: max(590px, 80vw);
    padding: 0.5rem;
    /*******************************　03　背景　*/
    background-color: #fff;
    /*******************************　04　境界　*/
    border-top: 0.2rem solid #000;
    border-left: 0.2rem solid #000;
    border-right: 0.2rem solid #000;
    /*******************************　05　文字　*/
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.03rem;
    /* 英語を大文字 */
    text-transform: uppercase;
    /*******************************　06　其他　*/
    cursor: default;
}

@media screen and (max-width: 610px) {
    .a02 .b03 .c02 .d02 .e01 {
        /***************************　02　領域　*/
        width: 100%;
    }
}


/***********************************　main.a02 > section.b03 > dl.c02 > dd.d02 > dl.e02*/
.a02 .b03 .c02 .d02 .e02 {
    /*******************************　01　配置　*/
    z-index: 400;
    margin: 0 auto 5rem;
    /*******************************　02　領域　*/
    width: max(590px, 80vw);
    min-height: 100vh;
    padding: 1rem 1rem 2rem;
    /*******************************　03　背景　*/
    background-color: #fff;
    /*******************************　04　境界　*/
    border-bottom: 0.2rem solid #000;
    border-left: 0.2rem solid #000;
    border-right: 0.2rem solid #000;
    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    cursor: default;
}

@media screen and (max-width: 610px) {
    .a02 .b03 .c02 .d02 .e02 {
        /***************************　02　領域　*/
        width: 100%;
    }
}

/**********************************　main.a02 > section.b03 > dl.c02 > dd.d02 > dl.e02 > dt.f01 */
.a02 .b03 .c02 .d02 .e02 .f01 {
    /*******************************　01　配置　*/

	/*******************************　02　領域　*/
    padding: 0.5rem;
	/*******************************　03　背景　*/

    /*******************************　04　境界　*/
	border-top:  0.05rem solid #000;
	border-right:  0.05rem solid #000;
	border-left:  0.05rem solid #000;
    /*******************************　05　文字　*/
    font-weight: 400;
	font-size: 0.95rem;
    /* 英語の先頭文字を大文字 */
    text-transform: capitalize;
    /*******************************　06　其他　*/
}


/***********************************　main.a02 > section.b03 > dl.c02 > dd.d02 > dl.e02 > dd.f02 */
.a02 .b03 .c02 .d02 .e02 .f02 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
	margin-bottom: 1rem;
    padding: 0 0.5rem 0.5rem;
	line-height: 1.5;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
	border-bottom:  0.05rem solid #000;
	border-right:  0.05rem solid #000;
	border-left:  0.05rem solid #000;
    /*******************************　05　文字　*/
	font-size: 0.85rem;
	/*******************************　06　其他　*/
}


/* 
<!-- 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"> -->
*/

/*
* {
    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>
*/