@charset "utf-8";

/* ----------------------------------------------
    reset
---------------------------------------------- */
*, ::before, ::after {
	box-sizing: border-box;
	border-style: solid;
	border-width: 0;
}
html {
	line-height: 1.15;
	/*-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;*/
}
body {
	margin: 0;
}
main {
	display: block;
}
p, table, blockquote, address, pre, iframe, form, figure, dl {
	margin: 0;
} 
h1, h2, h3, h4, h5, h6 {
	font-size: inherit;
	font-weight: inherit;
	margin: 0;
}
ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}
dd {
	margin-left: 0;
}
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
	border-top-width: 1px;
	margin: 0;
	clear: both;
	color: inherit;
}
pre {
	font-family: monospace, monospace;
	font-size: inherit;
}
address {
	font-style: inherit;
}
a {
	background-color: transparent;
	text-decoration: none;
	color: inherit;
}
abbr[title] {
	text-decoration: underline dotted;
}
b, strong {
	font-weight: bolder;
}
code, kbd, samp {
	font-family: monospace, monospace;
	font-size: inherit;
}
small {
	font-size: 80%;
}
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
svg, img, embed, object, iframe {
	vertical-align: bottom;
}
button, input, optgroup, select, textarea {
	-webkit-appearance: none;
	appearance: none;
	vertical-align: middle;
	color: inherit;
	font: inherit;
	background: transparent;
	padding: 0;
	margin: 0;
	border-radius: 0;
	text-align: inherit;
	text-transform: inherit;
}
button, [type="button"], [type="reset"], [type="submit"] {
	cursor: pointer;
}
button:disabled, [type="button"]:disabled, [type="reset"]:disabled, [type="submit"]:disabled {
	cursor: default;
}
:-moz-focusring {
	outline: auto;
}
select:disabled {
	opacity: inherit;
}
option {
	padding: 0;
}
fieldset {
	margin: 0;
	padding: 0;
	min-width: 0;
}
legend {
	padding: 0;
}
progress {
	vertical-align: baseline;
}
textarea {
	overflow: auto;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
[type="search"] {
	outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}
[type="number"] {
	/*-moz-appearance: textfield;*/
}
label[for] {
	cursor: pointer;
}
details {
	display: block;
}
summary {
	display: list-item;
}
[contenteditable]:focus {
	outline: auto;
}
table {
	border-color: inherit;
	border-collapse: collapse;
}
caption {
	text-align: left;
}
td, th {
	vertical-align: top;
	padding: 0;
}
th {
	text-align: left;
	font-weight: normal;
}

/* ----------------------------------------------
    common
---------------------------------------------- */
:root {
	--color-Black:   #231815;
	--color-Green:   #8abb91;
	--color-Brown:   #7e3c26;
	--color-Pink:    #f09bad;
	--color-Red:     #e6326e;
	--font-Sans:     "Noto Sans JP", sans-serif;
	--font-Serif:    "Noto Serif JP", serif;
}
html {
	font-size: 62.5%;
    scroll-behavior: smooth;
    touch-action: manipulation;
}
body {
	color: var(--color-Black);
	font: 600 1.8rem / 1.75 var(--font-Serif);
	font-feature-settings: "path";
}
svg, img, embed, object, iframe {
	max-width: 100%;
	height: auto;
}
i {
    display: block;
}
#wrap {
	width: 100%;
    min-width: 1200px;
    margin: 0 auto;
}
@media (hover: hover) {
	a {
		transition: opacity ease .3s;
	}
	a:hover {
		opacity: .6;
	}
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.4rem;
	}
	#wrap {
		width: 100%;
	    min-width: 100%;
	}
}
/* ------------------------------------------- */
.w-90 {
	width: 90%;
}
.w-100 {
	width: 100%;
}
.max-w-900 {
	max-width: 900px;
}
.max-w-1160 {
	max-width: 1160px;
}
.mx-auto {
	margin-left: auto;
	margin-right: auto;
}
.mb-1 {
	margin-bottom: 1em;
}
.mb-2 {
	margin-bottom: 2em;
}
.mb-3 {
	margin-bottom: 3em;
}
.mb-4 {
	margin-bottom: 4em;
}
.pt-6 {
	padding-top: 6em;
}
.pb-6 {
	padding-bottom: 6em;
}
.text-center {
	text-align: center;
}
.fw-700 {
    font-weight: 700;
}
.text-white {
	color: #fff;
}
.text-pink {
	color: var(--color-Pink);
}
.text-red {
	color: var(--color-Red);
}
.text-green {
	color: var(--color-Green);
}
.text-brown {
	color: var(--color-Brown);
}
.back-white {
	background: #fff;
}
.back-pink {
	background: var(--color-Pink);
}
.back-green {
	background: var(--color-Green);
}
.text-16 {
	font-size: 1.6rem;
}
.text-20 {
	font-size: 2.0rem;
}
.text-26 {
	font-size: 2.6rem;
}
.text-28 {
	font-size: 2.8rem;
}
.text-40 {
	font-size: 4.0rem;
}
.text-60 {
	font-size: 6.0rem;
}
.pos-relative {
	position: relative;
}
.z-1 {
	z-index: 1;
}
@media screen and (min-width: 769px) {
	.desk-hidden {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.mobile-hidden {
		display: none !important;
	}
	.pt-6 {
		padding-top: 4em;
	}
	.pb-6 {
		padding-bottom: 4em;
	}
	.text-12-sm {
		font-size: 1.2rem;
	}
	.text-14-sm {
		font-size: 1.4rem;
	}
	.text-16-sm {
		font-size: 1.6rem;
	}
	.text-20-sm {
		font-size: 2.0rem;
	}
	.text-22-sm {
		font-size: 2.2rem;
	}
	.text-28-sm {
		font-size: 2.8rem;
	}
	.text-30-sm {
		font-size: 3.0rem;
	}
	.text-40-sm {
		font-size: 4.0rem;
	}
}

/* ----------------------------------------------
    header
---------------------------------------------- */
#header {
    background: #fceded;
    overflow: hidden;
}
#header .inner .box {
    display: grid;
    gap: 2em;
    grid-template-columns: 1fr 1fr;
}
#header .inner .box .left .title h1 {
    display: grid;
    gap: 1em;
    place-items: center;
}
#header .inner .box .left .title h1 .text01 {
	margin: 0 0 .5em;
    padding: 0 .5em 0 .8em;
    letter-spacing: .2em;
}
#header .inner .box .left .title h1 .text02 {
    padding: 4px 0;
    border-top: 2px solid;
    border-bottom: 2px solid;
}
#header .inner .box .left .title h1 .text02 span {
    padding: 0 0 .1em .5em;
    border-top: 1px solid;
    border-bottom: 1px solid;
    letter-spacing: .5em;
    display: block;
}
#header .inner .box .left .title h1 .text03 {
    text-indent: .5em;
    letter-spacing: .5em;
}
#header .inner .box .left .text p {
    line-height: 1.8;
    letter-spacing: .1em;
    text-shadow: 0 0 .5em #fff, 0 0 .5em #fff, 0 0 .4em #fff, 0 0 .4em #fff,
    			 0 0 .5em #fff, 0 0 .5em #fff, 0 0 .4em #fff, 0 0 .4em #fff,
    			 0 0 .5em #fff, 0 0 .5em #fff, 0 0 .4em #fff, 0 0 .4em #fff,
			 	 0 0 .5em #fff, 0 0 .5em #fff, 0 0 .4em #fff, 0 0 .4em #fff;
}
#header .inner .box .left .period dl {
    display: flex;
    gap: 0 2em;
    flex-wrap: wrap;
}
#header .inner .box .right .pop {
    filter: drop-shadow(0 0 .2em rgb(0 0 0 / 50%));
    position: absolute;
    right: 0;
    bottom: 0;
}
#header .frame {
    position: absolute;
}
#header .frame01 {
    top: 0;
    left: 0;
}
#header .frame02 {
    right: 0;
    bottom: 0;
}
@media screen and (max-width: 768px) {
	#header .inner .box {
	    display: flex;
	    flex-direction: column-reverse;
	}
	#header .inner .box .left .title h1 {
	    gap: .5em;
	}
	#header .inner .box .right .pop {
	    width: 120px;
	}
	#header .frame {
	    width: 90%;
	}
}

/* ----------------------------------------------
    itemList
---------------------------------------------- */
.itemList {
    display: grid;
    gap: 2em;
}
.itemList.clm02 {
    grid-template-columns: repeat(2, 1fr);
}
.itemList.clm03 {
    grid-template-columns: repeat(3, 1fr);
}
.itemList.clm04 {
    grid-template-columns: repeat(4, 1fr);
}
.itemList li a dl dt {
    margin: 0 0 .5em;
    padding: 0 0 .5em;
    border-bottom: 1px solid var(--color-Black);
    display: flex;
    gap: 0 .5em;
    flex-wrap: wrap;
    align-items: baseline;
    position: relative;
}
.itemList li dl dt::before,
.itemList li dl dt::after {
    content: "";
    width: 5px;
    height: 5px;
    background: var(--color-Black);
    border-radius: 100%;
    position: absolute;
    left: 0;
    bottom: -3px;
}
.itemList li dl dt::after {
    left: auto;
    right: 0;
    bottom: -3px;
}
.itemList li dl dt .label {
    padding: 0 .5em;
}
@media screen and (max-width: 768px) {
	.itemList {
	    gap: 1em .5em;
	}
	.itemList.clm02,
	.itemList.clm03,
	.itemList.clm04 {
	    grid-template-columns: repeat(2, 1fr);
	}
}

/* ----------------------------------------------
    limit
---------------------------------------------- */
.limit {
    background: #fceded;
    overflow: hidden;
}
.limit .inner .box01 {
    display: flex;
    gap: 2em;
    flex-direction: row-reverse;
}
.limit .inner .box02 {
	width: fit-content;
    padding: 2em;
    border: 2px solid var(--color-Green);
    display: grid;
    gap: .5em;
}
.limit .itemList li a dl dt {
    border-bottom: 1px solid var(--color-Brown);
}
.limit .itemList li dl dt::before,
.limit .itemList li dl dt::after {
    background: var(--color-Brown);
}
.limit .inner .period {
    width: fit-content;
}
.limit .inner .period dl {
    padding: 2em;
    border: 2px solid var(--color-Green);
    display: flex;
    gap: 1em 2em;
}
.limit .frame {
    position: absolute;
}
.limit .frame01 {
    top: 0;
    left: 0;
}
.limit .frame02 {
    right: 0;
    bottom: 0;
}
@media screen and (min-width: 769px) {
	.limit .inner .box01 .title {
	    font-feature-settings: initial;
	    writing-mode: vertical-rl;
	    flex-shrink: 0;
	}
	.limit .inner .box01 .title h2 {
	    display: grid;
	    gap: .5em;
	    place-items: flex-start;
	}
	.limit .inner .box01 .title h2 .text01 {
	    padding: 1em 0;
	}
	.limit .inner .box01 .title h2 .text02 {
	    padding: 0 4px;
	    border-left: 2px solid;
	    border-right: 2px solid;
	}
	.limit .inner .box01 .title h2 .text02 span {
	    padding: .3em 0 0;
	    border-left: 1px solid;
	    border-right: 1px solid;
	    letter-spacing: .3em;
	    display: block;
	}
}
@media screen and (max-width: 768px) {
	.limit .inner .box01 {
	    gap: 0;
	    flex-direction: column;
	}
	.limit .inner .box01 .title {
	    margin: 0 0 2em;
	}
	.limit .inner .box01 .title h2 {
		display: grid;
	    gap: .5em;
	    place-items: center;
	}
	.limit .inner .box01 .title h2 .text01 {
	    margin: 0 0 .5em;
	    padding: 0 .5em 0 .8em;
	    letter-spacing: .2em;
	}
	.limit .inner .box01 .title h2 .text02 {
	    padding: 4px 0;
	    border-top: 2px solid;
	    border-bottom: 2px solid;
	}
	.limit .inner .box01 .title h2 .text02 span {
	    padding: 0 0 .1em .5em;
	    border-top: 1px solid;
	    border-bottom: 1px solid;
	    letter-spacing: .5em;
	    display: block;
	}
	.limit .inner .box01 .img {
	    width: 100vw;
	    margin: 0 calc(50% - 50vw);
	}
	.limit .inner .box02 {
	    width: 100%;
	    padding: 1em;
	}
	.limit .inner .period {
	    width: 100%;
	}
	.limit .inner .period dl {
	    padding: 1em;
	    gap: 1em;
	}
	.limit .frame {
	    width: 90%;
	}
}

/* ----------------------------------------------
    teapack
---------------------------------------------- */
.teapack {
    background: #e9f3e3;
}
.teapack .inner .box01 {
    display: flex;
    gap: 2em;
    flex-direction: row-reverse;
    justify-content: space-between;
}
.teapack .inner .box01 .title {
    font-feature-settings: initial;
    writing-mode: vertical-rl;
    flex-shrink: 0;
}
.teapack .inner .box01 .title h2 {
    display: grid;
    gap: 1em;
    place-items: flex-start;
}
.teapack .inner .box01 .title h2 .text01 {
    padding: 1em 0;
    text-orientation: upright;
}
.teapack .inner .box01 .title h2 .text02 {
    color: #00863c;
    line-height: 1;
    text-shadow: 0 0 .5em #fff, 0 0 .5em #fff, 0 0 .4em #fff, 0 0 .4em #fff,
    			 0 0 .5em #fff, 0 0 .5em #fff, 0 0 .4em #fff, 0 0 .4em #fff,
    			 0 0 .5em #fff, 0 0 .5em #fff, 0 0 .4em #fff, 0 0 .4em #fff,
			 	 0 0 .5em #fff, 0 0 .5em #fff, 0 0 .4em #fff, 0 0 .4em #fff;
}
.teapack .inner .box01 .tea {
    margin: 0 0 0 auto;
}
.teapack .inner .box01 .text {
    display: flex;
    flex-direction: column;
}
.teapack .inner .box01 .text p {
    font-feature-settings: initial;
    line-height: 2.5;
    writing-mode: vertical-rl;
    text-shadow: 0 0 .5em #fff, 0 0 .5em #fff, 0 0 .4em #fff, 0 0 .4em #fff,
    			 0 0 .5em #fff, 0 0 .5em #fff, 0 0 .4em #fff, 0 0 .4em #fff,
    			 0 0 .5em #fff, 0 0 .5em #fff, 0 0 .4em #fff, 0 0 .4em #fff,
			 	 0 0 .5em #fff, 0 0 .5em #fff, 0 0 .4em #fff, 0 0 .4em #fff;
}
.teapack .inner .box01 .text .period {
    margin: auto 0 0;
}
.teapack .frame {
    position: absolute;
    opacity: .7;
}
.teapack .frame01 {
    bottom: 0;
    left: 0;
}
.teapack .frame02 {
    right: 0;
    top: 0;
}
@media screen and (max-width: 768px) {
	.teapack .frame {
	    width: 90%;
	}
	.teapack .inner .box01 {
	    flex-wrap: wrap;
	}
	.teapack .inner .box01 .title h2 {
	    gap: .5em;
	}
	.teapack .inner .box01 .title h2 img {
	    width: 30px;
	}
	.teapack .inner .box01 .text p {
	    line-height: 1.7;
	    letter-spacing: .1em;
	}
	.teapack .inner .box01 .tea {
	    max-width: 60%;
	    margin: -4em 0 0 auto;
	    order: 5;
	}
}

/* ----------------------------------------------
    matcha
---------------------------------------------- */
.matcha  {
    background: url(../../img/spring2026/back-matcha.jpg) bottom right / cover no-repeat;
}
.matcha .inner .box01 {
    display: flex;
    gap: 2em;
    flex-direction: row-reverse;
    justify-content: space-between;
}
.matcha .inner .box01 .title {
	text-align: right;
}
.matcha .inner .box01 .title h2 {
	margin: 0 0 1em;
    filter: invert(100%) grayscale(100%) brightness(200%) drop-shadow(0 0 .5em #000);
}
.matcha .inner .box01 .title .new {
    padding: .1em .6em;
    border-radius: .3em;
    text-indent: .3em;
    letter-spacing: .3em;
    display: inline-block;
}
.matcha .inner .box01 .item {
    display: flex;
    flex-direction: row-reverse;
}
.matcha .inner .box01 .item .medal {
	margin-left: -2em;
    text-align: right;
    filter: drop-shadow(0 .3em .3em rgb(0 0 0 / 50%));
}
.matcha .inner .box01 .item .itemList {
    max-width: 280px;
    margin: 6em 0 0;
}
.matcha .inner .box01 .item .itemList li .img {
    width: 70%;
    max-width: 200px;
}
.matcha .inner .box01 .item .itemList li dl {
    filter: drop-shadow(0 0 .1em #fff) drop-shadow(0 0 .1em #fff) drop-shadow(0 0 .1em #fff)
    		drop-shadow(0 0 .1em #fff) drop-shadow(0 0 .1em #fff) drop-shadow(0 0 .1em #fff);
}
.matcha .inner .box01 .text {
    display: flex;
    flex-direction: column;
}
.matcha .inner .box01 .text p {
    font-feature-settings: initial;
    line-height: 3;
    text-shadow: 0 0 0.5em #000, 0 0 0.5em #000;
    writing-mode: vertical-rl;
}
.matcha .inner .box01 .text .period {
    margin: auto 0 0;
}
@media screen and (max-width: 768px) {
	.matcha .inner .box01 {
	    gap: 0;
	    flex-wrap: wrap;
	}
	.matcha .inner .box01 .title h2 {
	    width: 120px;
	}
	.matcha .inner .box01 .text {
	    align-items: flex-start;
	}
	.matcha .inner .box01 .text p {
	    line-height: 2;
	    letter-spacing: .1em;
	}
	.matcha .inner .box01 .item {
	    width: 100%;
	    order: 5;
	    flex-direction: column;
	}
	.matcha .inner .box01 .item .itemList {
	    max-width: 100%;
	    margin: 0;
	}
	.matcha .inner .box01 .item .medal {
	    width: 200px;
	    margin: 0 0 -1em auto;
	}
	.matcha .inner .box01 .item .itemList li dl {
	    width: fit-content;
	    margin: 0 auto;
	}
}

/* ----------------------------------------------
    period
---------------------------------------------- */
.period dl div dd .text-40 {
    line-height: 1;
}
@media screen and (max-width: 768px) {
}

/* ----------------------------------------------
    hatsu
---------------------------------------------- */
.hatsu {
    background: linear-gradient(160deg, #fbdfb9 0%, #fff 30%, #fff 70%, #fbdfb9 100%);
}
.kaori {
    background: linear-gradient(160deg, #e4c1db 0%, #fff 30%, #fff 70%, #e4c1db 100%);
}
.satsuki {
    background: linear-gradient(160deg, #bedfc2 0%, #fff 30%, #fff 70%, #bedfc2 100%);
}
/* ------------------------------------------- */
:is(.hatsu, .kaori, .satsuki) .frame {
	opacity: .8;
	mix-blend-mode: overlay;
	position: absolute;
	left: 0;
}
:is(.hatsu, .kaori, .satsuki) .frame01 {
	top: 0;
}
:is(.hatsu, .kaori, .satsuki) .frame02 {
	bottom: 0;
}
/* ------------------------------------------- */
:is(.hatsu, .kaori, .satsuki) .period {
    width: 160px;
    aspect-ratio: 1;
    border-radius: 100vmax;
    display: grid;
    place-items: center;
}
.hatsu .period {
	background: #f4b0a1;
}
.kaori .period {
	background: #d79fc5;
}
.satsuki .period {
	background: #a7d081;
}
@media screen and (max-width: 768px) {
	:is(.hatsu, .kaori, .satsuki) .period {
	    width: 110px;
	}
}
/* ------------------------------------------- */
.hatsu .circle {
	color: #f4b0a1;
}
.kaori .circle {
	color: #d79fc5;
}
.satsuki .circle {
	color: #a7d081;
}
/* ------------------------------------------- */
:is(.hatsu, .kaori, .satsuki) .inner .box {
    display: flex;
    gap: 2em 6em;
    align-items: flex-start;
    flex-direction: row-reverse;
    justify-content: center;
}
:is(.hatsu, .kaori, .satsuki) .inner .box .title,
:is(.hatsu, .kaori, .satsuki) .inner .box .title h2 {
	filter: drop-shadow(0 0 .5em #fff);
    flex-shrink: 0;
}
:is(.hatsu, .kaori, .satsuki) .inner .box .text p {
	font-feature-settings: initial;
    line-height: 2.5;
    writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
	:is(.hatsu, .kaori, .satsuki) .inner .box {
	    gap: 2em;
	    justify-content: space-between;
	}
	:is(.hatsu, .kaori, .satsuki) .inner .box .text p {
	    line-height: 2;
	    letter-spacing: .1em;
	}
	:is(.hatsu, .kaori, .satsuki) .inner .box .title h2 {
	    width: 90px;
	}
}

/* ----------------------------------------------
    calendar
---------------------------------------------- */
.calendar {
    background: #fbebf2;
}
@media screen and (max-width: 768px) {
}

/* ----------------------------------------------
    revision
---------------------------------------------- */
.revision {
	background: linear-gradient(0deg, rgba(228, 241, 229, 1) 0%, rgba(255, 255, 255, 1) 15%, rgba(255, 255, 255, 1) 85%, rgba(228, 241, 229, 1) 100%);
}
.revision .inner h2 {
    text-decoration: 1px underline;
    text-underline-offset: .5em;
}
@media screen and (max-width: 768px) {
}


/* ----------------------------------------------
    footer
---------------------------------------------- */
#footer {
    background: url(../../img/spring2026/sakura01.svg) top left / 60% no-repeat,
    			#fceded url(../../img/spring2026/sakura02.svg) bottom right / 60% no-repeat;
}
@media screen and (max-width: 768px) {
	#footer .inner .logo {
	    width: 200px;
	}
}


