@charset "utf-8";
:root{
	--font-sans: "Noto Sans JP", sans-serif;
    --font-serif: "Noto Serif JP", serif;
    --font-mincho: "Shippori Mincho", "Noto Serif JP", serif;
    --main: #ec5571;
	--main-blue:#028DBA;
	--main-purple:#B56EF9;
    --accent: #f19db5;
	--link-color:#304DE2;
	--label-pink:#e6897f;
	--label-blue:#9dc3fc;
	--label-green:#c1db81;
    --bg1: #f5f5f5;
    --bg2: #ededed;
    --bg-red: #FFC1D9;
    --brown: #c69c6d;
    --gray: #d7d7d7;
	--gray2:#A3A3A3;
	--dark-gray:#2B2B2B;
    --black: #231815;
	--orange:#EC7F55;
}
html {
    scroll-behavior: smooth;
}
html::-webkit-scrollbar{
	width: 1rem;
}
html::-webkit-scrollbar-track{
	background: #DCDCDC;
}
html::-webkit-scrollbar-thumb{
	background: var(--accent);
	border-radius: 50px;
}
body {
	font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
	font-size: clamp(0.875rem, 0.816rem + 0.29vw, 1rem);
	line-height: 1.6;
	letter-spacing: 1px;
	position: relative;
	background: var(--bg1);
}
a {
  color: var(--link-color);
}
button {
	background-color: transparent;
	border: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	padding: 0;
	font-family: inherit;
	font-size: 100%;
	&:focus-visible {
		outline:2px solid #361908;
  }
}
i{
	margin-right: 0.2rem;
}
h1 {
	text-align: center;
    padding: 1rem 0.5rem 0.5rem;
    color: var(--main);
	font-weight: bold;
	font-size: 150%;
	margin-top: 3rem;
	border-width: 0;
	border-style: solid;
	border-bottom: solid 3px var(--main);
	border-image: linear-gradient(to right,  var(--bg1) 0%, var(--main) 50%, var(--bg1) 100%);
	border-image-slice: 1;
	width: 50%;
	margin: 0 auto;
}
h2{
	color: #fff;
    background: var(--accent);
    padding: 0.5rem;
    margin: 0;
	font-weight: bold;
	font-size: 110%;
}
h3{
	background: var(--main);
	color: #fff;
	font-size: 120%;
	padding: 0.5rem;
}
h4 {
    font-size: 110%;
    border-bottom: 2px solid var(--accent);
    border-left: 8px solid var(--accent);
    padding-left: 1rem;
	margin: 1rem 0;
	font-weight: bold;
}
ul li{
	text-indent: -1em;
	padding-left: 1em;
}
main {
    display: block;
}
.lead{
	font-size: 110%;
	text-align: center;
	word-break: keep-all;
	padding: 1rem;
}
/*スライド*/
#topic_swiper{
	margin-top: 0;
}
.swiper-container-parent {
	width: 100%;
	margin: 2rem 0;
  }
.swiper-wrapper{
	padding: 0;
	display: flex;
	align-content: center;
}
.swiper-slide {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-self: center;
}
.slide_ph {
	display: flex;
	width: 100%;
	position: relative;
	align-items: center;
	height: 100%;
}
.slide_ph img {
	width: 100%;
	max-width: 100%;
	/* height: auto; */
	height: 100%;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    color: #fff;
	width: 50px;
	opacity: 0.7;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	outline: none;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    color: #fff;
	width: 50px;
	opacity: 0.7;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	outline: none;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next i {
    font-size: 50px;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev i {
    font-size: 50px;
}
/*スライドここまで*/
/* モーダルここから */
.info-area{
	text-align: center;
    padding: 1rem;
    width: 50%;
    margin: 1rem auto;
    background: var(--bg-red);
}
.modalDialog {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	width: 100%;
	height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: calc(infinity);
    opacity:0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}
.modalDialog:target {
    opacity:1;
    pointer-events: auto;
}
html:has(.modalDialog:target) {
	overflow: hidden;
}
.modal-content {
    max-width: 800px;
	height: 80vh;
	overflow-y: scroll;
    position: relative;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #fff;
	text-align: left;
}
.modal-close{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 5rem;
	height: 2rem;
	color: #fff;
	background: var(--main);
	border-radius: 5px;
	cursor: pointer;
	margin: 1rem auto;
	gap:0.1rem;
}
.modal-content p{
	margin: 1em 0;
}
.modal-content ul li{
	list-style: none;
	&::before{
		content: "・"
	}
}
/*モーダルここまで*/
/*検索ここから*/
#serch{
	width: 100%;
	margin: 0 auto;
}
#top-serch{
	text-align: center;
	overflow: hidden;
	border-radius: 3px;
	width: 90%;
	margin: 0 auto;
	
}
.search-area{
	display: flex;
	gap:1rem;
	justify-content: center;
}
.textarea{
	width: 100%;
	height: 2rem;
	padding: 0.2rem;
	border: var(--main);
	background: #fff;
	border-radius: 5px;
	outline: none;
	caret-color: var(--accent);
	&::placeholder{
		color: var(--main);
	}
	&:focus-visible {
		outline:2px solid #361908;
	}
}
.serch-btn{
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	font-size: 1.2rem;
	border: none;
	background-color: var(--main);
	border-radius: 3px;
	outline : none;
	width: 3rem;
	height: 1.9em;
	text-align: center;
	&::after{
		font: var(--fa-font-solid);
		content: "\f002";
		font-weight: 600;
		color: #fff;
	}
}
/*検索ここまで*/
/*新着情報ここから*/
.pickup_h {
	margin: 1.5rem 0;
	background: var(--main);
	text-align: center;
	font-size: 130%;
	font-weight: bold;
	color: #fff;
}
.pickup {
  max-width: 70vw;
  margin: 1.5rem auto 4rem;
}
.pickup iframe {
	display: block;
	margin: 0 auto;
	border: 2px solid var(--accent);
	width: 100%;
	height: 9rem;
}
.title-list{
	display: flex;
	padding: 0.5rem;
	border-bottom: 1px dotted var(--accent);
	align-items: center;
	&:last-child{
		border-bottom: none;
	}
}
.topics-wrap{
	display: flex;
	gap:1rem;
}
.update {
	color: #2E2E2E;
	font-size: 95%;
	width: 5rem;
}
.topics_text{
	width: 100%;
}
.label {
	border-radius: 3px;
	color: #fff;
	padding: 0.1rem;
	font-size: 90%;
	width: 2.5rem;
	text-align: center;
	margin-right: 1rem;
	word-break: keep-all;
}
.l_new {
	background:var(--label-pink);
}
.l_info {
	background-color: var(--label-blue);
}
/*新着情報ここまで*/
/*タイルここから*/
.per_box_parent {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin: 2rem;
	justify-content: center;
  }
.per_box {
	width: auto;
	box-shadow: 2px 2px 4px gray;
	background: #fff;
}
.event_ph {
	display: flex;
	height: 300px;
	width: 100%;
	position: relative;
	justify-content: center;
	align-items: center;
	background: #333;
}
.event_ph img {
	max-width: 100%;
	max-height: 100%;
}
.event_text{
	text-align: center;
	padding: 1rem;
	& p{
		margin-bottom: 0.5rem;
	}
}
.title{
	font-size: 110%;
	font-weight: bold;
	color: #BB002E;
}
.site{
	color: var(--main);
	font-weight: bold;
	font-size: 110%;
}
.per_info{
	font-size: 90%;
}
.recep{
	color: var(--dark-gray);
	font-weight: bold;
}
.recepsion-label img{
	height: 1.5rem;
}
.recepsion01, .recepsion02, .entry-btn{
	display: block;
    border-radius: 10px;
    padding: 0.8rem;
    margin: 1rem auto 0;
    font-size: 110%;
    color: #fff;
	font-weight: bold;
    text-align: center;
}
.recepsion01, .recepsion02{
	width: 80%;
}
.recepsion01{
	background: var(--main);
}
.recepsion02{
	background: #999999;
}
.entry-btn{
	width: 50%;
	background: var(--main);
}
/*タイルここまで*/
.o-wrap {
    display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	padding: 2rem 0;
	gap:1.5rem;
}
.o-wrap .btn{
	align-self: center;
}
.o-wrap img{
	width: 100%;
}
.box {
    background: #fff;
    border: 3px solid var(--bg-red);
    padding: 2rem;
    max-width: 70%;
	margin: 1rem auto;
}
.box2{
	background-color: #fff;
    border: 3px solid var(--accent);
    margin: 2rem auto;
    border-radius: 10px;
	& div{
		padding: 1rem;
	}
	& ul{
		margin: 1rem 0 0 0.5rem;
	}
}
.link-title {
    font-weight: bold;
    color: var(--black);
}
.note-area{
    padding: 1rem!important;
    margin: 1rem auto;
    background: var(--bg-red);
	&:first-of-child p{
		margin-bottom: 1rem;
	}
}
/*テーブルここから*/
table {
	box-sizing: border-box;
    table-layout: fixed;
    margin-bottom: 10px;
    border: 1px solid #000000;
	width: 100%;
}
table td, table th {
    text-align: center;
    vertical-align: middle;
    padding: 5px;
	width: 5rem;
	border: 1px solid #000000;
	font-size: 85%;
}
table th {
    left: 0;
	width: 17%;
}
table tr {
    background: #fff;
}
table tr:first-child {
    border-top: none;
}
table td {
    border: 1px solid #000000;
}
table td:first-child {
    border-top: none;
}
/*テーブルここまで*/
/*フッターここから*/
footer {
    background: var(--gray);
    font-size: 12px;
	margin-top: 80px;
	text-align: center;
	padding: 0 0.5rem 0.5rem;
	position: relative;
}
.footer_menue {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 50%;
	margin: 0 auto;
}
.footer_menue li{
	margin: 0.5rem;
}
.footer_menue li a{
	color: var(--black);
	padding: 0.2rem;
	transition: .3s;
}
.pagetop {
	right: 1rem;
	width: 50px;
	height: 50px;
	display: block;
	background: rgba(181,110,249,0.6);
	color: #fff;
	text-decoration: none;
	text-align: center;
	padding: 1rem;
    border-radius: 10px;
	z-index: 999;
	&::before {
		font-family: 'Font Awesome 6 Free';
		font-weight: 900;
		content: '\f102';
		font-size: 150%;
		inset:0;
		margin: auto;
	}
	&::after {
		content: 'TOP';
		font-weight: bold;
		position: absolute;
		bottom: 2px;
        right: 0.8rem;
	}
}
.is-hidden {
	visibility: hidden;
	opacity: 0;
	transition: .3s;
}
.copyright{
	padding: 0.5rem 0;
}
/*フッターここまで*/
.at{
	font-size: 85%;
}
.em{
	font-weight: bold;
}
.under{
	border-bottom: solid 2px red;
}
.red{
	color: red;
}
/*ここからPC用*/
@media screen and (min-width: 641px) {
.sp {
	display: none;
}
html:has(.modalDialog:target) {
	padding-right: 1rem;
}
}
/*ここからスマホ用*/
@media screen and (max-width:640px) {
.PC {
    display: none;
}
h1{
	width: 90%;
}
#contents_wrap{
	padding: 0 1rem;	
}
.modal-content{
	height: 75svh;
	margin: 2rem 1rem;
	verscroll-behavior-y: contain;
}
.info-area, .pickup{
	max-width: 90%;
	width: 90%;
}
.pickup iframe {
	height: 15rem;
}
.title-list{
	flex-direction: column;
    align-items: flex-start;
}
.per_box_parent{
	grid-template-columns: repeat(1, 1fr);
	margin: 2rem 0;
}
.box{
	max-width: 90%;
	padding: 1rem;
}
.scroll {
	overflow-x: scroll;
	margin-bottom: 0.5rem;
}
table {
    width: 160%;
  }
.footer_menue {
	width: 100%;
}
}
@media (any-hover: hover) {
 /* リンクの場合 */
a:hover {
    text-decoration: none;
}
.slide_ph:hover, .o-wrap a:hover{
	opacity: 0.8;
}
.footer_menue li a:hover{
	color: #fff;
	background: var(--main);
	text-decoration: none;
}
  /* ボタンの場合 */
.login-btn:hover, .serch-btn:hover, .recepsion01:hover, .entry-btn:hover {
    background: var(--accent);
}
.official-btn:hover{
	background: #41B2D7;	
}
.pagetop:hover {
    background: #B56EF9;
    transition: .3s;
}
	}