@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@400;700&display=swap");
/*
*ローディングアニメーション 
*/
.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
}

.logo {
	opacity: 0;
	transition: opacity 1s ease;
	position: relative;
	margin: 10px 0;
}

.logo1 {
	width: 250px;
}

/* 表示アニメーション */
.logo1.fade-in {
  opacity: 1;
}

.logo1.slide-up {
  animation: slideUp 0.4s ease forwards;
}

@keyframes slideUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-40px); }
}

.logo2.fade-in {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1s ease, transform 1s ease;
}

/* メインコンテンツは非表示にしておく */
.container {
  opacity: 0;
  transition: opacity 1s ease;
}
.home {
	width: 100%;
}
/*
* 立ち上がりフェードインの記載
*/
/*フェードアニメーション*/
.open-fade-up {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUP 1s ease forwards;
}
.open-fade-right {
	opacity: 0;
	transform: translateX(30px);
	animation: fadeInRight 1s ease forwards;
}
.open-fade-left {
	opacity: 0;
	transform: translateX(-30px);
	animation: fadeInLeft 1s ease forwards;
}
.open-fade-in {
	opacity: 0;
	animation: fadeIn 1s ease forwards;
}
.delay-1 {
	animation-delay: 0.3s;
}
.delay-2 {
	animation-delay: 0.8s;
}
.delay-3 {
	animation-delay: 1.3s;
}
.delay-4 {
	animation-delay: 1.8s;
}
.delay-5 {
	animation-delay: 2.3s;
}

@keyframes fadeInUP {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
/*
 * メインビジュアル-スライダー
*/

.slide-media,.thumb-media {
	 position: relative;
	 overflow: hidden;
}
.slide-media img,.thumb-media img {
	position: absolute;
	top: 0;
    left: 0;
    width: 100%;
    /*height: 100%;*/
    -o-object-fit: cover;
       object-fit: cover;
}
.swiper-button-prev,.swiper-button-next {
	display: grid;
    place-content: center;
    width: 6.4rem;
    height: 6.4rem;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.swiper-button-prev::before, .swiper-button-next::before {
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    border-radius: 50%;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}
.swiper-button-prev::after, .swiper-button-next::after {
	width: 1.2rem;
    height: 1.2rem;
    content: "";
    border: solid var(--color-gray);
    border-width: 3px 3px 0 0;
}
.swiper-button-prev::after {
	margin-left: 0.4rem;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
}
.swiper-button-next::after {
	margin-right: 0.4rem;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
.swiper-button-disabled {
    pointer-events: none;
	opacity: 0;
}
.visual {
	margin-bottom: 0;
	margin:0 auto;
	padding: 0 1rem;
	max-width:1200px;
	height:auto;
}
.visual .l-section {
    padding-bottom: 0;
}
.visual .swiper-fade .swiper-slide {
    -webkit-transition-property: opacity, -webkit-transform !important;
    transition-property: opacity, -webkit-transform !important;
    transition-property: opacity, transform !important;
    transition-property: opacity, transform, -webkit-transform !important;
    pointer-events: none;
}
.visual .swiper-fade .swiper-slide-active {
    pointer-events: auto;
}
.visual .swiper-pagination {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 3.2rem;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    margin: auto;
}
.visual .swiper-pagination-bullet {
    display: block;
    width: 3px;
    height: 4rem;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.4);
  }
  .visual .swiper-pagination-bullet:not(:first-child) {
    margin-top: 0.8rem;
  }
  .visual .swiper-pagination-bullet-active {
    background-color: var(--color-theme);
  }
  .visual .slide-media {
	  aspect-ratio: 1489 / 775;
  }
  .visual .slide-media img {
    -webkit-transition: 5s 1s ease-out;
    transition: 5s 1s ease-out;
	  border-radius:16px;
  }
/*タイトル共通
------------------------------------*/

h3 {
	position:relative;
	font-size:24px;
	font-weight:700;
	color:#263575;
	padding-left:25px;
}
h3::before {
	position:absolute;
	content:"";
	top:50%;
	transform: translateY(-50%);
	left:0;
	width: 22px;
	height:20px;
	background-image:url("../images/common/icon_title.png");
	background-repeat:no-repeat;
}

/*イベントバナー
------------------------------------*/
.event {
	max-width:calc(1200px - 2rem);
	margin: 0 auto;
	padding:3rem 0;
	
}
.event .content_wrap {
	display:flex;
	justify-content:space-between;
}
.event .content_area {
	display:flex;
	align-items:center;
	width:100%;
}
.event .content_title {
	width: 15%;
}
.event .content {
	width:90%;
	display:flex;
	align-items: stretch;
	box-shadow:0 0 10px rgb(0,0,0,0.16);
	background:#fff;
	border-radius:20px 20px 20px 20px;
	padding: 0 1rem;
}
.event .banner_area {
	width:50%;
	display:flex;
	justify-content:flex-end;
	
	
}
.event .banner {
	position:relative;
	overflow: hidden;
}

.event .event_end_screen {
  position: absolute;
  inset: 0; /* top:0; left:0; right:0; bottom:0; と同じ */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  z-index: 2;
}
.event .event_text {
	width: 50%;
	padding: 1rem;
	display:flex;
	flex-flow:column;
	justify-content:space-between;
}
.event .date {
	padding-bottom: 0.5rem;
}
.event .infotitle {
	font-size:32px;
	font-weight:600;
	margin-bottom:0.3rem;
}
.event .subtitle {
	margin-bottom:1rem;
	font-size:1.1em;
	font-weight:500;
}

/*Read more ボタン
------------------------------------*/

.more_btn {
	text-align:right;
}
.more_btn .submit {
	position: relative;
	display: inline-block;
	padding-right: 40px; /* 矢印分の余白 */
	color: #263575;
	text-decoration: none;
	font-size: 16px;
	transition: color 0.3s ease;
}
.more_btn .submit::after {
	content: '';
	position: absolute;
	top: 60%;
	right: 0;
	width: 30px;  /* ←ホバー前の線の長さ */
	height: 1px;
	background-color: #263575;
	transform: translateY(-50%);
	transition: width 0.4s ease;
}
.more_btn .submit::before {
	content: '';
	position: absolute;
	top: calc(50% - 1px);
	right: 0;
	width: 8px;
	height: 8px;
	border-top: 1.5px solid #263575;
	/*border-right: 1.5px solid #333;*/
	transform: rotate(45deg);
	transition: all 0.4s ease;
}
.more_btn .submit:hover {
	color: #263575;
}

.more_btn .submit:hover::after {
	width: 20px; /* 線が伸びる */
}

.more_btn .submit:hover::before {
	right: 3px; /* 少し右に動かすと自然 */
	border-color: #263575;
}

/*TOPICS
------------------------------------*/
.topics {
	padding: 3rem 0;
}
.topics .content_wrap{
	display: flex;
}
.topics .content_wrap > div {
	box-shadow: 0 0 16px rgb(0,0,0,0.16);
	width:30%;
	background-color:#fff;
	border-radius:20px;
	height:320px;
	background-repeat:no-repeat;
	background-position: center center;
	background-size: contain;
	border: solid 5px #F8EEEE;
	transition:0.5s;
}
.topics a {
	display: flex;
	height:100%;
	flex-flow: column;
	justify-content:space-between;
}
.topics .topic_title {
	padding: 1rem;
}
.topics p {
	background:#F8EEEE;
	padding: 1rem;
	font-weight:600;
	transition:0.5s;
}
.topics .about {
	background-image: url('../images/index/img_top01.png');
}
.topics .joinus {
	background-image: url('../images/index/img_top02.png');
}
.topics .activity {
	background-image: url('../images/index/img_top03.png');
}
.topics .content_wrap > div:hover {
	border: solid 5px #F01C3E
}
.topics .content_wrap > div:hover p {
	background:#F01C3E;
	color:#fff;
}

/*GREETING
------------------------------------*/
.greeting {
	position:relative;
}

.greeting .titile_area {
	padding:2rem 0;
	display:flex;
	flex-flow:column;
	justify-content:center;
	align-items:center;
}
.greeting .titile_area p {
	text-align: center;
	padding-top:0.5rem;
}

.greeting .greeting_wrap {
	position:relative;
}
.greeting .greeting_wrap::before {
	position:absolute;
	content:"";
	width:68%;
	height:100%;
	top:0;
	left:0;
	background-color:#F3EEEE;
	z-index:-1;
	border-radius: 0 20px 20px 0;
}
.greeting .content_wrap {
	display:flex;
	align-items:center;
	max-width:800px;
}
.greeting .text_wrap {
	padding: 1rem 0;
	width:70%;
}
.greeting .image {
	width:25%;
}
.greeting .text_wrap p {
	line-height: 2;
	padding-right:3rem;
}
.greeting .chairman {
	padding-top:1rem;
}
.greeting .division {
	font-size:0.9em;
	padding-bottom:0.5rem;
}
.greeting .chairman  span {
	font-size:0.95em;
	padding-right:1rem;
}

/*お知らせ
------------------------------------*/
.information {
	padding: 3rem 0;
}
.information .info_wrap {
	display:flex;
	justify-content:space-between;
	align-items:center;
}
.information .title_area {
	width:20%;
	display:flex;
	flex-flow:column;
}
.information .title_area p {
	padding-left: 1rem;
}

.information .text_wrap {
	width:80%;
}
.information .text_wrap ul {
	padding:1rem;
}
.information .text_wrap li {
	display:flex;
	align-items:flex-end;
	line-height:2;
	padding-top:1rem;
	padding-bottom: 1rem;
	border-bottom: dotted 2px #707070;
}
.information .date {
	font-size: 14px;
	color:#3D3D3D;
	width: 10%;
}
.information .infotitle a{
	color:#263575;
	font-weight:600;
	font-size:16px;
	position:relative;
}
.information .infotitle a::before {
	position:absolute;
	content:"";
	bottom:0;
	left:0;
	width:100%;
	height:2px;
	transition:0.5s;
	border-bottom:solid 2px #263575;
	opacity:0;
}
.information .infotitle a:hover::before {
	opacity:1;
}

.information .more_btn {
	text-align:left;
	padding: 2rem 0 0;
}
@-webkit-keyframes mv01-fadeIn {
	0% {
		-webkit-transform: scale(0.5);
		        transform: scale(0.5);
		opacity: 0;
		-webkit-filter: blur(300px);
		        filter: blur(300px);
	}
	100% {
      -webkit-transform: scale(1);
	          transform: scale(1);
      opacity: 1;
      -webkit-filter: blur(0);
              filter: blur(0);
	}
}
@keyframes mv01-fadeIn {
	0% {
      -webkit-transform: scale(0.5);
              transform: scale(0.5);
      opacity: 0;
      -webkit-filter: blur(300px);
              filter: blur(300px);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
      -webkit-filter: blur(0);
              filter: blur(0);
	}
}
.content_wrap {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	justify-content:space-between;
}
@media screen and (max-width: 1200px) {
	
}
@media screen and (max-width: 1024px) {
	
}
@media screen and (max-width: 960px) {
	
}
@media screen and (max-width: 919px) {
	.visual {
		padding-top:65px;
	}
	.information .text_wrap {
		width:100%;
	}
	.information .text_wrap li {
		flex-flow:column;
		align-items:flex-start;
	}
	.information .date {
		width: 100%;
	}
}
@media screen and (max-width: 768px) {
	.event .content_area {
		flex-flow:column;
	}
	.event .content_title {
		width:100%;
		display:flex;
		align-items:center;
		justify-content:center;
		margin-bottom:1rem;
	}
	.event .content_title h3 {
		margin-right:1rem;
	}
	.topics .content_wrap {
		flex-flow:column
	}
	.topics .content_wrap > div {
		width: 100%;
		margin-bottom:2rem;
	}
	.greeting .titile_area {
		flex-flow:row;
		justify-content: center;
		align-items: center;
	}
	.greeting .titile_area h3 {
		margin-right:1rem;
	}
	.information .info_wrap {
		flex-flow:column;
	}
	.information .title_area {
		width: 100%;
		flex-flow:row;
		align-items: center;
	}
	.information .title_area h1{
		flex:2;
	}
	.information .title_area p {
		flex:2;
	}
	.information .more_btn {
		flex:1;
		padding: 0;
	}
	.event .content {
		flex-flow:column;
	}
	.event .event_text,.event .banner_area {
		width:100%;
	}
}
@media screen and (max-width: 720px){
	.visual {
		padding-top:30px;
	}
}
@media screen and (max-width: 560px) {
	.visual {
		padding-top:10px;
	}
	.greeting .content_wrap {
		flex-flow:column-reverse;
	}
	.greeting .image {
		width:50%;
	}
	.greeting .text_wrap {
		margin-top:1rem;
		width:100%;
		padding:1rem;
		background-color: #F3EEEE;
		border-radius:20px;
	}
	.greeting .greeting_wrap::before{
		width:0;
	}
}
@media screen and (max-width: 428px) {
	
}
@media screen and (max-width: 375px) {
	
}