@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;
}


/***********************************************************
試作
***********************************************************/


/***********************************　main.a02 > section.b03 */
.a02 .b03 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    padding: 0 1rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b03 > details.c02 */
.a02 .b03 .c02 {
    /*******************************　01　配置　*/
    margin: 0 auto 1rem;
    /*******************************　02　領域　*/
    width: max(610px, 70vw, 70vh);
    max-width: 100%;

    overflow: hidden;
    /*******************************　03　背景　*/
    box-shadow: 0.05rem 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
    /*******************************　04　境界　*/
    border: 0.01rem solid rgba(0, 0, 0, 0.5);
    /*******************************　05　文字　*/
    font-family: "Roboto", "Noto Sans JP", sans-serif;
    text-align: justify;
    /*******************************　06　其他　*/
    container-type: inline-size;
}

.a02 .b03 .c02:last-child {
    /*******************************　01　配置　*/
    margin: 0 auto 0;
}

@media screen and (max-width: 650px) {
    .a02 .b03 .c02 {
        /***************************　02　領域　*/
        width: 100%;
    }
}

@media screen and (max-aspect-ratio: 650/1000) {
    .a02 .b03 .c02 {
        /***************************　02　領域　*/
        width: 100%;
    }
}

/***********************************　main.a02 > section.b03 > details.c02 > summary.d01 */
.a02 .b03 .c02 .d01 {
    /*******************************　01　配置　*/
    position: relative;
    /* デフォルトの▲アイコンを非表示 display: block;の代替 */
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*******************************　02　領域　*/
    padding: 0.75rem 2.5rem 0.75rem 0.75rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: min(1.1rem, 6cqw);
    font-weight: 400;
    /*******************************　06　其他　*/
    cursor: pointer;
    user-select: none;
}

.a02 .b03 .c02 .d01::-webkit-details-marker {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    /* デフォルトの▲アイコンを非表示 */
    display: none;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

.a02 .b03 .c02 .d01::after {
    /*******************************　01　配置　*/
    content: "";
    position: absolute;
    right: 1rem;
    top: 0;
    bottom: 0;
    margin-block: auto;
    /*******************************　02　領域　*/
    display: block;
    width: 1rem;
    height: 1rem;
    /*******************************　03　背景　*/
    background-color: #000;
    /*******************************　04　境界　*/
    clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    transition: transform 0.3s;
}

/***********************************　main.a02 > section.b03 > details.c02.is-opened > summary.d01 */
.a02 .b03 .c02.is-opened .d01::after {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 */
.a02 .b03 .c02 .d02 {
    /*******************************　01　配置　*/

    /******************************　02　領域　*/
    padding: 1rem 0.5rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border-top: 0.01rem solid rgba(0, 0, 0, 0.8);
    /*******************************　05　文字　*/
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.5;
    /*******************************　06　其他　*/
    list-style-type: none;
}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > li.e01 */
.a02 .b03 .c02 .d02 .e01 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-weight: 500;
    /*******************************　06　其他　*/

}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > li.e02 */
.a02 .b03 .c02 .d02 .e02 {
    /*******************************　01　配置　*/
    margin-bottom: 2rem;
    /*******************************　02　領域　*/
    padding-left: 0.85rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-weight: 300;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > li.e02 > ul.f01 */
.a02 .b03 .c02 .d02 .e02 .f01 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/

}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > li.e02 > ul.f01 > li.g01 */
.a02 .b03 .c02 .d02 .e02 .f01 .g01 {
    /*******************************　01　配置　*/
    margin-top: 0.5rem;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > li.e02 > ul.f01 > li.g01 > dl.h01とul.h01 */
.a02 .b03 .c02 .d02 .e02 .f01 .g01 .h01 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > li.e02 > ul.f01 > li.g01 > dl.h01とul.h01 > li.i01 */
.a02 .b03 .c02 .d02 .e02 .f01 .g01 .h01 .i01 {
    /*******************************　01　配置　*/
    margin-top: 0.5rem;
    margin-left: 0.85rem;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > li.e02 > ul.f01 > li.g01 > dl.h01とul.h01 > li.i01 > ul.j01 */
.a02 .b03 .c02 .d02 .e02 .f01 .g01 .h01 .i01 .j01 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > li.e02 > ul.f01 > li.g01 > dl.h01とul.h01 > li.i01 > ul.j01 > li.k01 */
.a02 .b03 .c02 .d02 .e02 .f01 .g01 .h01 .i01 .j01 .k01 {
    /*******************************　01　配置　*/
    margin-top: 0.5rem;
    margin-left: 0.85rem;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > li.e02 > ul.f01 > li.g01 > dl.h01とul.h01 > li.i01 > ul.j01 > li.k01 > ul.l01 */
.a02 .b03 .c02 .d02 .e02 .f01 .g01 .h01 .i01 .j01 .k01 .l01 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > li.e02 > ul.f01 > li.g01 > dl.h01とul.h01 > li.i01 > ul.j01 > li.k01 > ul.l01 > li.m01 */
.a02 .b03 .c02 .d02 .e02 .f01 .g01 .h01 .i01 .j01 .k01 .l01 .m01 {
    /*******************************　01　配置　*/
    margin-top: 0.5rem;
    margin-left: 0.85rem;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}


/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > .increment */
.a02 .b03 .c02 .d02 .increment {
    /*******************************　01　配置　*/
    position: relative;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    /* カウンターをインクリメント */
    counter-increment: list-counter;
}

.a02 .b03 .c02 .d02 .increment::before {
    /*******************************　01　配置　*/
    /* 番号の位置を調整 */
    position: absolute;
    left: -0.85rem;
    /*******************************　02　領域　*/
    width: 0.85rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    text-align: left;
    font-weight: 600;
    font-size: 0.75rem;
    line-height: 1.75;
    /*******************************　06　其他　*/
    /* カウンター番号を表示 */
    content: counter(list-counter) ")";
}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > .katakana-iroha */

.katakana-iroha {
    /*******************************　01　配置　*/
    position: relative;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    /* デフォルトのリストスタイルを無効化 */
    list-style: none;
    /* カウンターをインクリメント */
    counter-increment: iroha-counter;
}

.katakana-iroha::before {
    /*******************************　01　配置　*/
    /* 番号の位置を調整 */
    position: absolute;
    left: -0.85rem;
    /*******************************　02　領域　*/
    width: 0.85rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    text-align: left;
    font-weight: 600;
    font-size: 0.65rem;
    line-height: 1.95;
    /*******************************　06　其他　*/
    /* カタカナイロハ形式で表示 */
    content: counter(iroha-counter, katakana-iroha);
}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > .decimal */
.decimal_01 {
    /*******************************　01　配置　*/
    position: relative;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    /* デフォルトのリストスタイルを無効化 */
    list-style: none;
    /* カウンターをインクリメント */
    counter-increment: section-counter;
}

.decimal_01::before {
    /*******************************　01　配置　*/
    /* 番号の位置を調整 */
    position: absolute;
    left: -0.85rem;
    /*******************************　02　領域　*/
    width: 0.85rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    text-align: left;
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 1.65;
    /*******************************　06　其他　*/
    /* 算用数字を表示 */
    content: counter(section-counter);
}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > .decimal_02 */
.decimal_02 {
    /*******************************　01　配置　*/
    position: relative;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    /* デフォルトのリストスタイルを無効化 */
    list-style: none;
    /* カウンターをインクリメント */
    counter-increment: section-counter;
}

.decimal_02::before {
    /*******************************　01　配置　*/
    /* 番号の位置を調整 */
    position: absolute;
    left: -0.85rem;
    /*******************************　02　領域　*/
    width: 0.85rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    text-align: left;
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 1.65;
    /*******************************　06　其他　*/
    /* 算用数字を表示 */
    content: counter(section-counter);
}

.decimal_02:first-child::before {
    color: #fff;
}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > .decimal */
.decimal_03 {
    /*******************************　01　配置　*/
    position: relative;
    /*******************************　02　領域　*/
    padding-left: 1em;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    /* デフォルトのリストスタイルを無効化 */
    list-style: none;
    /* カウンターをインクリメント */
    counter-increment: section-counter;
}

.decimal_03::before {
    /*******************************　01　配置　*/
    /* 番号の位置を調整 */
    position: absolute;
    left: 0;
    /*******************************　02　領域　*/
    width: 1em;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    text-align: left;
    font-weight: 600;
    font-size: 1em;
    /* line-height: 1.65; */
    /*******************************　06　其他　*/
    /* 算用数字を表示 */
    content: counter(section-counter);
}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > .cjk-ideographic */
.cjk-ideographic {
    /*******************************　01　配置　*/
    position: relative;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    /* デフォルトのリストスタイルを無効化 */
    list-style: none;
    /* カウンターをインクリメント */
    counter-increment: kanji-counter;
}

.cjk-ideographic::before {
    /*******************************　01　配置　*/
    /* 番号の位置を調整 */
    position: absolute;
    left: -0.85rem;
    /*******************************　02　領域　*/
    width: 0.85rem;
    height: 100%;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    text-align: left;
    font-weight: 600;
    font-size: 0.65rem;
    line-height: 1.95;
    /*******************************　06　其他　*/
    /* 漢数字を表示 */
    content: counter(kanji-counter, cjk-ideographic);
}

.disc {
    /*******************************　06　其他　*/
    list-style-type: disc;
}

.disclosure-closed {
    /*******************************　06　其他　*/
    list-style-type: disclosure-closed;
}

/***********************************　main.a02 > section.b03 > details.c02 > > dl */
.a02 .b03 .c02 dl {
    /*******************************　01　配置　*/
    display: grid;
    grid-template-columns: 35% 65%;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b03 > details.c02 > > dl > dt */
.a02 .b03 .c02 dl dt {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    padding: 0.2rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border-top: 0.04rem solid #000;
    border-right: 0.04rem solid #000;
    border-left: 0.04rem solid #000;
    /*******************************　05　文字　*/
    font-size: 0.8rem;
    /*******************************　06　其他　*/
}

.a02 .b03 .c02 dl dt:first-of-type {
    /*******************************　05　文字　*/
    font-weight: 500;
    text-align: center;
}

.a02 .b03 .c02 dl dt:last-of-type {
    /*******************************　04　境界　*/
    border-bottom: 0.04rem solid #000;
}

/***********************************　main.a02 > section.b03 > details.c02 > > dl > dd */
.a02 .b03 .c02 dl dd {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    padding: 0.2rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border-top: 0.04rem solid #000;
    border-right: 0.04rem solid #000;
    /*******************************　05　文字　*/
    font-size: 0.8rem;
    /*******************************　06　其他　*/
}

.a02 .b03 .c02 dl dd:first-of-type {
    /*******************************　05　文字　*/
    font-weight: 500;
    text-align: center;
}

.a02 .b03 .c02 dl dd:last-of-type {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border-bottom: 0.04rem solid #000;
    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}



















