@charset "UTF-8";
@import url('reset.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Tomorrow:ital,wght@0,400;0,500;1,400;1,500&display=swap');
@import url('menu.css');
@import url('latest-next.css');
@import url('message.css');
@import url('subpage.css');

/* =========================================================
	basic style
========================================================= */
*,
*:before,
*:after {
	box-sizing: inherit;
}

html{
	height: 100%;
	overflow-x: hidden;
	font-size: 62.5%;
	box-sizing: border-box;
	scroll-behavior: smooth;
	scroll-padding-top: 50px;
}

body{
	margin: 0;
	padding: 0;
	height: 100%;
	background-color: #cecece;
	color: #343434;
	font-size: 1.6rem;
	font-family: -apple-system, blinkMacSystemFont, YuGothic-M, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";
	font-style: normal;
	text-align: center;
	line-height: 1.8;
	letter-spacing: 1px;
}

body.page-message {
	background-size: 100%;
}

.pc{
	display: block;
}
	@media (width <= 959px){
		.pc {
			display: none;
		}
	}
	@media (width <= 768px){
		.pc {
			display: none;
		}
	}


.pc_tablet{
	display: block;
}
	@media (width <= 959px){
		.pc_tablet {
			display: block;
		}
	}
	@media (width <= 768px){
		.pc_tablet {
			display: none;
		}
	}

.tablet_sp	{
	display: none;
}
	@media (width <= 959px){
		.tablet_sp {
			display: block;
		}
	}
	@media (width <= 768px){
		.tablet_sp {
			display: block;
		}
	}

.tablet	{
	display: none;
}
	@media (width <= 959px){
		.tablet {
			display: block;
		}
	}
	@media (width <= 428px){
		.tablet {
			display: none;
		}
	}

.sp	{
	display: none;
}
	@media (width <= 959px){
		.sp {
			display: none;
		}
	}
	@media (width <= 428px){
		.sp {
			display: block;
		}
	}

ul{
	margin: 0;
	padding: 0;
	}

a	{
	overflow: hidden;
	outline: none;
	border: none;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

a:focus {
	outline: none;
}

a:link {
	color: #c1399c;
	text-decoration: none;
}

a:visited {
	color: #982c7c;
	text-decoration: none;
}

a:hover {
	color: #e27dc7;
	text-decoration: none;
}

a:active {
	color: #b64e9a;
	text-decoration: none;
}

img {
	width: 100%;
	margin: 0;
	border: 0;
}

a img {
	margin: 0;
	border: 0;
}

p	{
	margin: 1.4em 0 1.4em 0;
}

.relative {
	position: relative;
}


/* =========================================================
	header
========================================================= */
header {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 90vh;
	margin: 0;
	text-align: center;
	background-image: url(../img/header_bg.gif);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-attachment: -webkit-fixed;
	z-index: 0;
}
	@media (width <=1000px) {
		header {
			height: 80vh;
			margin: 0;
			background-image: url(../img/header_bg_tablet.gif);
			background-size: 100% auto;
		}
	}
	@media (orientation: landscape) {
		header {
			background-image: url(../img/header_bg_tablet.gif);
			background-size: 100%;
		}
	}
	@media (width <= 768px) {
		header {
			height: 80vh;
			margin: 0 0 50px;
			background-image: url(../img/header_bg_sp.gif);
			background-size: 100% auto;
		}
	}
	@media (orientation: landscape) and (width <= 768px) {
		header {
			height: 600px;
			margin: 0 0 50px;
			background-image: url(../img/header_bg_sp.gif);
			background-size: contain;
		}
	}
	@media (width <= 428px) {
		header {
			min-height: auto;
			margin: 0 0 20px;
		}
	}

.header__inner {
	width: 100%;
	margin: 80px 0 0;
	padding: 50px 0 150px;
}
	@media (width <= 768px) {
		.header__inner {
			margin: 50px 0 0;
		}
	}

.header__bottom {
	overflow: hidden;
	position: absolute;
	content: "";
	bottom: 0;
	display: block;
	height: 100px;
	width: 100%;
	background-image: url("../img/pattern_triangle.png");
	background-repeat: repeat-x;
	background-position: top center;
	background-size: 70%;
	z-index: 10;
	/* filter:blur(0); */
}
	@media (width <= 768px) {
		.header__bottom {
			bottom: 0;
			background-size: 100%;
		}
	}
	@media (width <= 428px){
		.header__bottom {
			height: 100px;
			bottom: 0;
			background-size: 120%;
		}
	}



h1 {
	overflow: hidden;
	width: calc(100% - 20px * 2);
	max-width: 1200px;
	height: auto;
	margin: 0 0 20px;
	margin-inline: auto;
	aspect-ratio: 1200 / 148;
	background-image: url("../img/header_title.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
	text-indent: 100%;
	mix-blend-mode: normal;
	white-space: nowrap;
}
	@media (width <= 428px) {
		h1 {
			aspect-ratio: 600 / 278;
			background-image: url("../img/header_title_sp.svg");
		}
	}

.header__time {
	display: inline-block;
	overflow: hidden;
	width: 500px;
	height: auto;
	margin: 0 0 60px;
	aspect-ratio: 1000 / 97;
	background-image: url("../img/header_time.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
	text-indent: 100%;
	mix-blend-mode: normal;
	white-space: nowrap;
}
	@media (width <= 768px) {
		.header__time {
			width: 70%;
			margin: 0 0 40px;
		}
	}


/* =========================================================
	header sns
========================================================= */
.header-sns {
	display: flex;
	padding: 20px;
	justify-content: center;
	align-items: center;
	width: 80%;
	max-width: 600px;
	margin-inline: auto;
	background-color: #fff;
	border-radius: 60px;
}
	@media (width <= 768px) {
		.header-sns {
			display: block;
			width: calc(100% - 30px * 2);
			max-width: 500px;
			padding: 10px;
		}
	}

p.header-sns__text {
	display: inline-block;
	margin: 0;
	padding: 0 20px 0 0;
	font-size: 2.2rem;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	line-height: 1.0;
}
	@media (width <= 768px) {
		p.header-sns__text {
			display: block;
			margin: 0 0 15px;
			padding: 0;
			font-size: 1.6rem;
		}
	}
	@media (width <= 428px) {
		p.header-sns__text {
			display: block;
			margin: 0 0 15px;
			padding: 0;
			font-size: 1.4rem;
		}
	}

.header-sns__list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 10px;
	height: 30px;
}
	@media (width <= 768px) {
		.header-sns__list {
				height: auto;
		}
	}

.header-sns__item {
}

.header-sns__image{
	width: auto;
	height: 25px;
}
	@media (width <= 768px) {
		.header-sns__image{
			width: auto;
			height: 30px;
		}
	}


/* =========================================================
	main structure
========================================================= */
.area-contents {
	width: 100%;
	margin: 0 0 30px;
}

.area-contents__inner {
	width: calc(100% - 15px * 2);
	max-width: 900px;
	margin-inline: auto;
	padding: 40px 0;
}
	@media (width <= 768px){
		.area-contents__inner {
			padding: 20px 0;
		}
	}


/* =========================================================
	accordion
========================================================= */
.area-accordion {
	margin: 0 0 30px;
}
	@media (width <= 768px){
		.area-accordion {
			margin: -60px 0 30px;
		}
	}

.area-accordion  > .area-contents__inner {
	padding: 0;
}

.accordion {
	margin: 0 0 20px;
}

.accordion-summary {
	position: relative;
	display: block;
	padding: 20px;
	color: #fff;
	font-size: 1.8rem;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	line-height: 1.0;
	text-align: center;
	background-color: #c1399c;
}
	@media (width <= 768px) {
		.accordion-summary {
			padding: 15px;
			font-size: 1.6rem;
		}
	}

.accordion-summary:hover {
	cursor: pointer;
	opacity: 0.8;
}

.accordion-summary .btn-accordion {
	position: absolute;
	top: calc(50% - 8px);
	right: 2%;
	width: 18px;
	height: 18px;
	transform-origin: center center;
	transition-duration: 0.2s;
}
	@media (width <= 768px) {
		.accordion-summary .btn-accordion {
			top: calc(50% - 6px);
			right: 2%;
			width: 12px;
			height: 12px;
		}
	}

.accordion-summary .btn-accordion:before, .accordion-summary .btn-accordion:after {
	content: "";
	background-color: #fff;
	width: 18px;
	height: 2px;
	position: absolute;
	top: 8px;
	left: 0;
	transform-origin: center center;
}
	@media (width <= 768px) {
		.accordion-summary .btn-accordion:before, .accordion-summary .btn-accordion:after {
			content: "";
			background-color: #fff;
			border-radius: 10px;
			width: 12px;
			height: 2px;
			position: absolute;
			top: 5px;
			left: 0;
			transform-origin: center center;
		}
	}

.accordion-summary .btn-accordion:before {
	width: 2px;
	height: 18px;
	top: 0;
	left: 8px;
}
	@media (width <= 768px) {
		.accordion-summary .btn-accordion:before {
			width: 2px;
			height: 12px;
			top: 0;
			left: 5px;
		}
	}

	
.accordion-summary.is-active .btn-accordion {
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.accordion-summary.is-active .btn-accordion:before {
	content: none;
}

.accordion-summary::-webkit-details-marker {
	display: none;
}

.accordion-content {
	padding: 20px;
	background-color: #fff;
	border-left: 2px solid #c1399c;
	border-bottom: 2px solid #c1399c;
	border-right: 2px solid #c1399c;
}
	@media (width <= 768px) {
		.accordion-content {
			padding: 10px;
			border-left: 1px solid #c1399c;
			border-bottom: 1px solid #c1399c;
			border-right: 1px solid #c1399c;
		}
	}

.accordion-content p {
	margin: 0 0 20px;
	text-align: left;
}

.accordion-content p:last-of-type {
	margin: 0;
}


/* =========================================================
	archive top
========================================================= */
.area-archive-top {
	position: relative;
	top: -100px;
	overflow: hidden;
	width: 100%;
	margin: 0;
	padding: 120px 0 70px;
}
	@media (width <= 768px){
		.area-archive-top {
			padding: 120px 0 50px;
		}
	}

.area-archive-top::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #c1399c;
	transform: skewY(-5deg) translateY(90px);
	z-index: -1;
}

/* bottom */
.area-archive-top__bottom {
	overflow: hidden;
	position: absolute;
	content: "";
	bottom: -10px;
	display: block;
	height: 60px;
	width: 100%;
	background-image: url("../img/pattern_triangle.png");
	background-repeat: repeat-x;
	background-position: top center;
	background-size: 80%;
	z-index: 10;
}
	@media (width <= 768px) {
		.area-archive-top__bottom {
			background-size: 100%;
		}
	}
	@media (width <= 428px) {
		.area-archive-top__bottom {
			bottom: 0;
			height: 30px;
			background-size: 120%;
		}
	}

.area-archive-top__info {
	text-align: left;
}

/* Head */
.area-archive-top__head {
	padding-bottom: 20px;
}

.area-archive-top__head .area-archive-top__date {
	margin-bottom: 10px;
	color: #fff;
	text-align: left;
}

.area-archive-top__head .area-archive-top__title {
	margin-bottom: 10px;
	color: #fff;
	font-size: 2.2rem;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	text-align: left;
	line-height: 1.4;
}
	@media (width <= 768px){
		.area-archive-top__head .area-archive-top__title {
			font-size: 1.8rem;
		}
	}


/* Body */
.area-archive-top__body .area-archive-top__comment {
	padding: 0;
	color: #fff;
	/* white-space: pre-wrap; */
	font-size: 1.4rem;
	text-align: left;
}

.area-archive-top__body .area-archive-top__image {
	margin-bottom: 30px;
	margin-right: 20px;
}

.area-archive-top__body .area-archive-top__image img {
	max-width: 480px;
	width: 100%;
	margin: 0 auto;
	display: block;
}

.area-archive-top__body {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
	@media (width <= 768px){
		.area-archive-top__body {
			display: block;
			justify-content: space-between;
			align-items: flex-start;
		}
	}

.area-archive-top__body .area-archive-top__image {
	order: 1;
	width: 45%;
}
	@media (width <= 768px) {
		.area-archive-top__body .area-archive-top__image {
			width: 100%;
			margin: 0 auto 2.0rem;
		}
		.area-archive-top__body .area-archive-top__image img {
			margin: 0 auto;
		}
	}

.area-archive-top__body .area-archive-top__comment {
	order: 2;
	width: 52%;
}
	@media (width <= 768px){
		.area-archive-top__body .area-archive-top__comment {
			width: 100%;
		}
	}

/* button top more */
.button-top-more {
	margin: 1.6rem 0 0;
	margin: 20px 0;
}

a.button-top-more__link {
	display: inline-block;
	position: relative;
	padding: 5px 30px 5px 40px;
	text-align: center;
	font-size: 1.6rem;
	font-family: "Tomorrow", sans-serif;
	font-weight: 400;
	line-height: 1.0;
	border: 1px solid #fff;
}
	@media (width <= 768px){
		a.button-top-more__link {
			display:inline-block;
			padding: 10px 10px 10px 40px;
			font-size: 1.4rem;
		}
	}
	@media (width <= 428px){
		a.button-top-more__link {
			width:100%;
		}
	}

a.button-top-more__link::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 5%;
	width: 10px;
	height: 10px;
	margin: auto;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
	box-sizing: border-box;
}

a:hover.button-top-more__link {
	opacity: 0.8;
}

a:link.button-top-more__link,
a:visited.button-top-more__link,
a:hover.button-top-more__link,
a:active.button-top-more__link
 {
	color: #fff;
}

/* button top archive */
.button-top-archive {
	width: 100%;
	max-width: 600px;
	margin: 20px auto;
}

a.button-top-archive__link {
	position: relative;
	display: block;
	padding: 10px 30px;
	background-color: #153448;
	text-align: center;
	font-size: 2.2rem;
	font-family: "Tomorrow", sans-serif;
	font-weight: 400;
	line-height: 1.0;
}
	@media only screen and (max-width : 768px){
		a.button-top-archive__link {
			padding: 10px 10px 10px 40px ;
		}
	}

a.button-top-archive__link::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 30%;
	width: 10px;
	height: 10px;
	margin: auto;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
	box-sizing: border-box;
}
	@media (width <= 768px){
		a.button-top-archive__link::before {
			left: 20%;
		}
	}

a:hover.button-top-archive__link {
	opacity: 0.8;
}

a:link.button-top-archive__link,
a:visited.button-top-archive__link,
a:hover.button-top-archive__link,
a:active.button-top-archive__link
 {
	color: #fff;
}


/* =========================================================
	title-sub
========================================================= */
h2.title-sub-pink,h2.title-sub-white {
	margin: 0 0 50px;
	list-style: none;
	text-decoration: none;
	font-size: 3.0rem;
	font-family: "Tomorrow", sans-serif;
	font-weight: 400;
	font-style: italic;
}
	@media (width <= 768px){
		h2.title-sub-pink,h2.title-sub-white {
			margin: 0 0 10px;
			font-size: 2.2rem;
		}
	}

h2.title-sub-pink {
	color: #c1399c;
}

h2.title-sub-white {
	color: #fff;
}

 h2.title-sub-pink::before, h2.title-sub-white::before{
	content: "";
	display: inline-block;
	width: 50px;
	height: 50px;
	background-position: left;
	background-size: contain;
	vertical-align: middle;
	transform: translate(-10px, -12px);
}

h2.title-sub-pink::before {
	background-image: url('../img/star_pink.svg');
}

h2.title-sub-white::before {
	background-image: url('../img/star_white.svg');
}


/* =========================================================
	message
========================================================= */
#anchor_message {
	margin: -80px 0 0;
	padding: 0 0 30px;
}
	@media (width <= 768px){
		#anchor_message {
			margin: -100px 0 0;
			padding: 0 0 10px;
		}
	}


/* =========================================================
	accordion - message
========================================================= */
.area_message .area-accordion  > .area_message .area-contents__inner {
	padding: 0;
}

.area_message .accordion {
	margin: 50px 0 30px;
}

.area_message .accordion-summary {
	position: relative;
	display: block;
	padding: 20px;
	color: #343434;
	font-size: 1.8rem;
	font-family: "Open Sans", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-variation-settings: "wdth" 100;
	line-height: 1.0;
	text-align: center;
	background-color: #efefef;
	border-top: 2px solid #999;
	border-bottom: 2px solid #999;
}
	@media (width <= 768px) {
		.accordion-summary {
			padding: 15px;
			font-size: 1.6rem;
		}
	}

.area_message .accordion-summary:hover {
	cursor: pointer;
	opacity: 0.8;
}

.area_message .accordion-summary .btn-accordion {
	position: absolute;
	top: calc(50% - 8px);
	right: 2%;
	width: 18px;
	height: 18px;
	transform-origin: center center;
	transition-duration: 0.2s;
}
	@media (width <= 768px) {
		.area_message .accordion-summary .btn-accordion {
			top: calc(50% - 6px);
			right: 2%;
			width: 12px;
			height: 12px;
		}
	}

.area_message .accordion-summary .btn-accordion:before, .area_message .accordion-summary .btn-accordion:after {
	content: "";
	background-color: #c1399c;
	width: 18px;
	height: 2px;
	position: absolute;
	top: 8px;
	left: 0;
	transform-origin: center center;
}
	@media (width <= 768px) {
		.area_message .accordion-summary .btn-accordion:before, .area_message .accordion-summary .btn-accordion:after {
			content: "";
			background-color: #153448;
			border-radius: 10px;
			width: 12px;
			height: 2px;
			position: absolute;
			top: 5px;
			left: 0;
			transform-origin: center center;
		}
	}

.area_message .accordion-summary .btn-accordion:before {
	width: 2px;
	height: 18px;
	top: 0;
	left: 8px;
}
	@media (width <= 768px) {
		.area_message .accordion-summary .btn-accordion:before {
			width: 2px;
			height: 12px;
			top: 0;
			left: 5px;
		}
	}

	
.area_message .accordion-summary.is-active .btn-accordion {
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.area_message .accordion-summary.is-active .btn-accordion:before {
	content: none;
}

.area_message .accordion-summary::-webkit-details-marker {
	display: none;
}

.area_message .accordion-content {
	padding: 20px;
	background-color: #fff;
	border-left: none;
	border-bottom: none;
	border-right: none;
}
	@media (width <= 768px) {
		.area_message .accordion-content {
			padding: 10px;
		}
}


/* =========================================================
	About
========================================================= */
#anchor_about {
	background-image: url("../img/pattern_stripe.svg");
	background-size: 60px 60px;
}

#anchor_about .area-contents__inner {
	padding: 50px 30px;
	background-color: #f2f2f2;
}
	@media (width <= 768px){
		#anchor_about .area-contents__inner {
			padding: 30px 20px;
		}
	}

h3.headline-about {
	display: inline-block;
	margin: 0;
	padding: 10px 0 20px;
	font-size: 3.0rem;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	line-height: 1.0;
}
	@media (width <= 768px) {
		h3.headline-about {
			font-size: 2.4rem;
			line-height: 1.5;
		}
}

.headline-about__pink {
	color: #c1399c;;
}

@media (width <= 768px) {
	.headline-about__text {
		text-align: left;
	}
}

.area-profile {
	margin: 50px 0 0;
}

.area-profile__image {
	width: 100%;
	max-width: 300px;
	height: auto;
	margin: 0 0 20px;
	border-radius: 100%;
}

.area-profile__position {
	color: #c1399c;
	font-size: 1.4rem;
	font-family: "Tomorrow", sans-serif;
	font-weight: 400;
}

.area-profile__name {
	font-size: 1.8rem;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}

/* =========================================================
	footer
========================================================= */
footer {
	display: flex;
	justify-content: space-between;
	width: calc(100% - 20px * 2);
	max-width: 1000px;
	margin-inline: auto;
	padding: 100px 0 80px;
}
	@media (width <= 768px){
		footer {
			width: 90%;
			margin: 0 auto 60px;
			padding: 20px 0 100px;
		}
	}

	@media (width <= 428px){
		footer {
			display: block;
			padding: 20px 0 150px;
		}
		
	}

.area-gotohome {
	width: 100px;
}
	@media (width <= 1000px) {
		.area-gotohome {
			width: 100%;
			margin: 0 0 35px 0;
			text-align: left;
		}
	}
	@media (width <= 768px) {
		.area-gotohome {
			width: 100%;
			margin: 0 0 35px 0;
		}
	}
	@media (width <= 428px){
		.area-gotohome {
			text-align: center;
		}
	}

.area-gotohome__image {
	width: 100%;
	max-width: 100px;
	height: auto;
}
	@media (width <= 768px) {
		.area-gotohome__image {
			width: 30%;
		}
	}

.area-credit {
	width: calc(100% - 100px);
	text-align: right;
}
	@media (width <= 1000px) {
		.area-credit{
			text-align: right;
		}
		
	}
	@media (width <= 768px) {
		.area-credit{
			width: 100%;
		}
	}
	@media (width <= 428px) {
		.area-credit{
			text-align: center;
		}
	}

.area-credit__image {
	width: 250px;
	height: auto;
	margin: 0 0 10px;
}
	@media (width <= 768px) {
		.area-credit__image{
			width: 60%;
			max-width: 400px;
		}
	}

.area-credit__text {
	display: block;
	color: #343434;
	font-size: 10px;
}