@charset "UTF-8";
/* -------------------------------- 

PC Wide

-------------------------------- */
.sp-view{display: none;}
.tablet-view{display: none;}
#nav-drawer {display: none;}

/* ヘッダー */
#head{
	width: 100%;
    height: 84px;
    background-color: rgba(254, 247, 232, 1); 
    position: relative;
    z-index: 3;
}

.head-wrap{
	width: 90%;
	max-width: 1200px;
	margin:0 auto 0;
	position: relative;
}

.head-logo{
	width: 160px;
	background-color: #159abd;
	padding:10px 10px 10px 10px;
	border-bottom-right-radius: 8px;
	border-bottom-left-radius: 8px;
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
	position: absolute;
	top:0;
	left: 0;
}

.head-logo img{
	width: 100%;
	height: auto;
}

.haed-logo-jp{
	width: 230px;
	position: absolute;
	top:10px;
	left: 180px;
	z-index: 2;
}

.haed-logo-jp img{
	width: 100%;
	height: auto;
}

.head-copy{
    font-size: 0.875rem;
    font-weight: normal;
    position: absolute;
    top:10px;
    left: 200px;
}

.head-contact-box{
    width: 220px;
    display: block;
    color: #fff;
    line-height: 1.2;
    text-align: center;
    background-image: linear-gradient(90deg, rgba(182, 140, 218, 1), rgba(224, 131, 164, 1) 50%, rgba(238, 180, 125, 1));
    padding: 7px 0px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
	position: absolute;
	right: 0;
	top: 0;	
}


ul.pc-menu{
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-wrap:wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
	position: absolute;
	right: 0;
	top: 26px;
}

ul.pc-menu li{
	margin-right: 20px;
}

ul.pc-menu li::after{
	content: '|';
	margin-left: 20px;
}

ul.pc-menu li:last-child{
	margin-right: 0;
}

ul.pc-menu li:last-child::after{
	content: '';
	margin-left: 0;
}

.pc-navi-link {
    font-size: 1rem;
    line-height: 1.7;
    color: #111;
    padding-bottom: 3px;
    position: relative
}

.pc-navi-link:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    z-index: 3;
    background: #159abd;
    width: 100%;
    height: 2px;
    transition: transform .6s cubic-bezier(.8,0,.2,1) 0s;
    transform: scale(0,1);
    transform-origin: right top
}

.pc-navi-link:hover {
    color: #159abd;
}

.pc-navi-link:hover:after {
    transform-origin: left top;
    transform: scale(1,1)
}

/* ナビゲーションメニュー */
.nav-menu {
  position: absolute;
  top:70px;
  right: 0;
}
.menu-list {
  display: flex;
  justify-content: flex-end; /* メニューアイテムを中央揃えに */
}
.menu-item {
    margin-right: 24px;
  position: relative;
}
.menu-item:last-child {
    margin-right: 0px;
}

/* メニューアイテムのホバースタイル */
.menu-item:hover .drop-menu-list {
  opacity: 1; /* 不透明度を最大に */
  transition: opacity .3s, visibility .3s; /* アニメーション設定 */
  visibility: visible; /* 下層メニューを表示 */
}

.menu-item a {
  align-items: center;
  display: flex;
  text-decoration: none; /* リンクの下線を非表示 */
}

/* ドロップダウンメニュー */
.drop-menu {
  position: relative;
}
.drop-menu-list {
  background: rgba(255,255,255,1); /* ドロップダウンメニューの背景色 */
  border-radius: 6px;
  left: 0;
  opacity: 0; /* 不透明度を最小に */
  position: absolute;
  top: 100%;
  transition: opacity .6s, visibility .6s; /* アニメーション設定 */
  visibility: hidden; /* 下層メニューを非表示 */
  width: max-content;
  z-index: 1;
  box-shadow: 0 0 2px 0 rgba(0,0,0,0.3);
}

.drop-menu-list a{
    display: block;
    padding: 10px 20px;
}

.drop-menu-list a:hover{
    color: #009abe;
}

.pc-sub-menu{
    width: 100%;
    background: #FFF;
    position: fixed;
    top:0;
    left: 0;
    display: none;
}

.head-sub-logo{
    width:100px;

}

/* フッター */
#footer{
	width: 100%;
	background-color: #f3effc;
}

.foot-menu-block{
    width: 100%;
    background-image: linear-gradient(90deg, rgba(244, 231, 211, 1), rgba(239, 207, 224, 1) 50%, rgba(222, 212, 245, 1));
    padding: 24px 0px;
}

ul.foot-menu{
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-wrap:wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
	justify-content: flex-end;
}

ul.foot-menu li{
	margin-right: 20px;
}

ul.foot-menu li::after{
	content: '|';
	margin-left: 20px;
}

ul.foot-menu li:last-child{
	margin-right: 0;
}

ul.foot-menu li:last-child::after{
	content: '';
	margin-left: 0;
}

.fotter-navi-link {
    font-size: 1rem;
    line-height: 1.7;
    color: #111;
    padding-bottom: 3px;
    position: relative
}

.fotter-navi-link:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 3;
    background: #111;
    width: 100%;
    height: 1px;
    transition: transform .6s cubic-bezier(.8,0,.2,1) 0s;
    transform: scale(0,1);
    transform-origin: right top
}

.fotter-navi-link:hover {
    color: #111;
}

.fotter-navi-link:hover:after {
    transform-origin: left top;
    transform: scale(1,1)
}

.foot-logo-block{
    width: 25%;
    padding-top: 20px;
}

.foot-logo{
    width: 230px;
}

.foot-logo img{
    width: 100%;
    height: auto;
}

.foot-text-block{
    width: 55%;
    padding-top: 40px;
}

.foot-text{
    font-size: 0.875rem;
    line-height: 1.7;
    text-align: center;
}

.foot-contact-block{
    width: 20%;
}

.foot-contact{
    width: 100%;
    display: block;
    color: #fff;
    line-height: 1.2;
    text-align: center;
    background-image: linear-gradient(90deg, rgba(182, 140, 218, 1), rgba(224, 131, 164, 1) 50%, rgba(238, 180, 125, 1));
    padding: 7px 0px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.telno{
    font-family: futura;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.copyright{
	font-size: 0.75rem;
	line-height: 1.5;
	text-align: center;
    padding: 20px 0px;
}



/* 共通 */
#breadcrumb{
	width: 100%;
	padding: 10px 0px;
    background-color: #fdeeac;
}

#breadcrumb ul{
    width: 90%;
    max-width: 1200px;
    margin:0 auto 0;
    display: flex;
    justify-content: flex-end;
}

#breadcrumb ul li{
    font-size: 0.875rem;
    margin-right: 10px;
    line-height: 1.5;
}

#breadcrumb ul li:last-child{
    margin-right: 0;
}

#breadcrumb ul li::after{
    content: '/';
    margin-left: 10px;
}

#breadcrumb ul li:last-child::after{
    content: '';
    margin-left: 0;
}

#breadcrumb ul li a{
    text-decoration: underline;
}

.flex-box{
	width: 100%;
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-wrap:wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
}

.flex-box-center{
	width: 100%;
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-wrap:wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
	align-items: center;
}

.flex-box-center-right{
	width: 100%;
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-wrap:wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
	align-items: center;
	justify-content: flex-end;
}


ul.list-2-wide{
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-wrap:wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
}

ul.list-2-wide li{
	width: 50%;
}

ul.list-3-wide{
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-wrap:wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
}

ul.list-3-wide li{
	width: 33.33333%;
}

ul.list-4-wide{
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-wrap:wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
}

ul.list-4-wide li{
	width: 25%;
}

ul.list-5-wide{
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-wrap:wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
}

ul.list-5-wide li{
	width: 20%;
}

ul.list-2{
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-wrap:wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;	
}

ul.list-2 li{
	width: 48.5%;
	margin-right: 3%;
	margin-bottom: 3%;
}

ul.list-2 li:nth-of-type(2n){
	margin-right: 0;
}

ul.list-3{
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-wrap:wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;	
}

ul.list-3 li{
	width: 31.3%;
	margin-right: 3%;
	margin-bottom: 3%;
}

ul.list-3 li:nth-of-type(3n){
	margin-right: 0;
}

ul.list-4{
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-wrap:wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;	
}

ul.list-4 li{
	width: 22.7%;
	margin-right: 3%;
	margin-bottom: 2%;
}

ul.list-4 li:nth-of-type(4n){
	margin-right: 0;
}

ul.activity-list{
    display:-ms-flexbox;
    display:-webkit-flex;
    display: flex;
    -ms-flex-wrap:wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap:wrap; 
}

ul.activity-list li{
    width: 22.7%;
    margin-right: 3%;
    margin-bottom: 2%;
}

ul.activity-list li:nth-of-type(4n){
    margin-right: 0;
}

ul.list-5{
	display:-ms-flexbox;
	display:-webkit-flex;
	display: flex;
	-ms-flex-wrap:wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;	
}

ul.list-5 li{
	width: 17.5%;
	margin-right: 3%;
	margin-bottom: 3%;
}

ul.list-5 li:nth-of-type(5n){
	margin-right: 0;
}

.text-marker {
  position: relative;
  z-index: 1;
  padding: 0 5px 2px 5px;
}

.text-marker::before {
  background: #f7eb00;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform: scale(1, 1);
  z-index: -1;
}

.yellow-round{
	display: inline-block;
	font-weight: bold;
	background-color: #eee929;
	padding: 3px 30px 5px 30px;
	border-radius: 60px;
}

.pink-round{
	display: inline-block;
	font-weight: bold;
	background-color: #e484b8;
	padding: 3px 30px 5px 30px;
	border-radius: 60px;
}

.green-round{
	display: inline-block;
	font-weight: bold;
	background-color: #88c76e;
	padding: 3px 30px 5px 30px;
	border-radius: 60px;
}

.main-bk{
	width: 100%;
    background: linear-gradient(360deg, rgba(243, 239, 252, 1), rgba(253, 237, 240, 1) 50%, rgba(254, 247, 232, 1));
}

.contents-wrap{
	width: 90%;
	max-width: 1200px;
	margin:0 auto 0;
}

.main-title-box{
	text-align: center;
}

.main-title-en{
	display: inline-block;
	font-size: 1.5rem;
	line-height: 1.5;
	letter-spacing: 2px;
	border-bottom: 1px solid #000;
	padding: 0px 20px 10px 20px;
	margin-bottom: 5px;
}

.sub-title-jp{
	font-size: 0.875rem;
	line-height: 1.5;
}

/* メインイメージ */
#main-image{
	width: 100%;
	height: 70vh;
    background-image: url(../img/main_bk.jpg);
    background-size: cover;
    background-position: center;
	position: relative;
	z-index: 1;
}

.main-image-wrap{
	width: 90%;
	max-width: 1200px;
	position: absolute;
	top:50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
    z-index: 4;
}

.main-copy{
	width: 120px;
    margin-left: auto;
    margin-right: 10%;
}

.main-copy-en{
    width: 320px;
    position: absolute;
    bottom: 10px;
}

.bk-video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top:0;
    left:0;
    z-index: 2;
}

.bk-dot{
    width: 100%;
    height: 100%;
    background-image: url(../img/dot.png);
    position: absolute;
    top:0;
    left:0;
    z-index: 3;
}

#scroll-down {
    display: block;
    position: absolute;
    padding-top: 50px;
  	text-align:center;
  	bottom: -50px;
  	left: 50%;
	transform: translateX(-50%);
    z-index: 5;
}
.arrow-down {
    display: block;
    margin: 0 auto;
    width: 10px;
    height: 20px;
}
.arrow-down:after {
    content: '';
    display: block;
    margin: 0;
    padding: 0;
    width: 8px;
    height: 8px;
    border-top: 2px solid #009abe;
    border-right: 2px solid #009abe;
    behavior: url(-ms-transform.htc);
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}
#scroll-title {
    display: block;
    text-transform: uppercase;
    color: #000;
  font-family: Helvetica Neue, Helvetica, Arial;
  font-size:10px;
  font-weight:bold;
  letter-spacing:.1em;
  color: #009abe;
}
#scroll-down::before {
    -webkit-animation: elasticus 2s cubic-bezier(1, 0, 0, 1) infinite;
    /* Safari 4+ */
    
    -moz-animation: elasticus 2s cubic-bezier(1, 0, 0, 1) infinite;
    /* Fx 5+ */
    
    -o-animation: elasticus 2s cubic-bezier(1, 0, 0, 1) infinite;
    /* Opera 12+ */
    
    animation: elasticus 2s cubic-bezier(1, 0, 0, 1) infinite;
    /* IE 10+, Fx 29+ */
    
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -2px;
    width: 2px;
    height: 56px;
    background: #009abe;
    content: ' ';
}
@-webkit-keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}
@-moz-keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}
@-o-keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}
@keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}

/* 最新記事 */
#newcontnts{
	width: 100%;
	padding-top: 100px;
}

.news-box{
	width: 100%;
	background-color: #FFF;
	border-radius: 8px;
	overflow: hidden;
	transition: all .5s ease;
}

.news-box:hover{
	transform: scale(0.95);
}

.news-photo-area{
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  overflow: hidden;
}

.news-photo-area　img{
	width: 100%;
	height: auto;
}

.news-text-area{
	width: 100%;
	padding: 15px;
	position: relative;
}

.icon-area{
	width: 50px;
	position: absolute;
	right: 20px;
	top:-26px;
}

.icon-event{
	width: 50px;
	height: 50px;
	background-color: #8dd8ee;
	border-radius: 4px;
	transform: rotate(45deg);
	position: relative;
}

.icon-info{
	width: 50px;
	height: 50px;
    color: #FFF;
	background-color: #0a97cc;
	border-radius: 4px;
	transform: rotate(45deg);
	position: relative;
}

.icon-topic{
	width: 50px;
	height: 50px;
    color: #FFF;
	background-color: #f4a959;
	border-radius: 4px;
	transform: rotate(45deg);
	position: relative;
}

.icon-activity{
    width: 50px;
    height: 50px;
    background-color: #f2f386;
    border-radius: 4px;
    transform: rotate(45deg);
    position: relative;
}

.icon-text{
	width: 50px;
	transform: rotate(-45deg);
	font-size: 0.75rem;
	text-align: center;
	position: absolute;
	top:14px;
}

.post-day{
	font-size: 0.75rem;
	line-height: 1.5;
	margin-bottom: 5px;
}

.news-title{
	width: 100%;
    height: 48px;
	font-size: 1rem;
	line-height: 1.5;
	color: #0289c1;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	/* ブラウザがサポートしていない場合のフェールセーフ */
	max-height: 48px;
	margin-bottom: 10px;
}

.news-read{
	width: 100%;
	font-size: 0.875rem;
	line-height: 1.5;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	/* ブラウザがサポートしていない場合のフェールセーフ */
	max-height: 60px;
}

/* トピック */
#topic{
	width: 100%;
	padding-top: 60px;
}

.topic-box{
	width: 100%;
	overflow: hidden;
}

.topic-image-area{
	width: 70%;
	aspect-ratio: 16 / 8;
	object-fit: cover;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
	overflow: hidden;
    position: relative;
}

.topic-image-area img{
	width: 100%;
	height: auto;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.topic-text-area{
	width: 30%;
	background: linear-gradient(120deg, rgba(244, 231, 211, 1), rgba(239, 207, 224, 1) 50%, rgba(222, 212, 245, 1));
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
	padding: 30px;
}

.topic-date{
	font-size: 0.875rem;
	line-height: 1.5;
	margin-bottom: 40px;
}

.topic-title{
	font-size: 1.2rem;
	line-height: 1.5;
	font-weight: bold;
	margin-bottom: 10px;
}

.topic-read{
	font-size: 0.875rem;
	line-height: 1.7;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	/* ブラウザがサポートしていない場合のフェールセーフ */
	max-height: 120px;
}

.more-btn-blue{
	width: 100%;
	background-color: #009abe;
    border-radius: 6px;
	position: relative;
	transition: all .5s ease;
}

.more-btn-blue:hover{
	width: 100%;
	background-color: #4ab8cf;
}

.more-btn-blue i{
	position: absolute;
	top:18px;
	right: 20px;
	opacity: 0;
	transition: all .5s ease;
}

.more-btn-blue:hover i{
	position: absolute;
	top:18px;
	right: 15px;
	opacity: 1;

}

.more-btn-blue a{
	display: block;
	font-size: 1rem;
	text-align: center;
	padding: 12px 0px;
}

.more-btn-yellow{
    width: 100%;
    background-color: #f2f386;
    border-radius: 6px;
    position: relative;
    transition: all .5s ease;
}

.more-btn-yellow:hover{
    width: 100%;
    background-color: #f3e286;
}

.more-btn-yellow i{
    position: absolute;
    top:18px;
    right: 20px;
    opacity: 0;
    transition: all .5s ease;
}

.more-btn-yellow:hover i{
    position: absolute;
    top:18px;
    right: 15px;
    opacity: 1;

}

.more-btn-yellow a{
    display: block;
    font-size: 1rem;
    text-align: center;
    padding: 12px 0px;
}

.view-link{
	font-size: 1rem;
	line-height: 1.5;
}

.view-link:hover{
	color: #009abe;
}

.white-box{
	width: 100%;
	background-color: #FFF;
	border-radius: 10px;
	overflow: hidden;
	padding: 30px 20px;
}

.info-box{
	width: 100%;
	border-bottom: 1px solid #7f7f7f;
	padding: 20px 0px;
}

.post-date{
    width: 8%;
    font-size: 0.875rem;
}

.info-box-icon{
    width: 10%;
}

.info-icon-info{
    width: 80%;
    display: block;
    font-size: 0.75rem;
    color: #FFF;
    text-align: center;
    background-color: #009abe;
    padding: 3px 0px 4px 0px;
}

.info-icon-topic{
    width: 80%;
    display: block;
    font-size: 0.75rem;
    color: #FFF;
    text-align: center;
    background-color: #f4a959;
    padding: 3px 0px 4px 0px;
}

.info-box-link{
    width: 80%;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;	
}

.info-box-link a{
	text-decoration: underline;
}

.info-box-link a:hover{
    color: #009abe;
}

.info-box-image{
	width: 25%;
}

.info-box-image img{
	width: 100%;
	height: auto;
}

.info-box-text{
	width: 75%;
	padding-left: 20px;
}

.info-box-link2{
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	/* ブラウザがサポートしていない場合のフェールセーフ */
	max-height: 52px;
    margin-top: 5px;
}

.info-box-link2 a{
	text-decoration: underline;
}


/* メンバー */
#member{
	width: 100%;
	padding-top: 60px;
}

.member-box-1{
	width: 100%;
	height: 200px;
	background: linear-gradient(120deg, rgba(131, 204, 210, 0.5), rgba(255, 232, 147, 0.5));
	padding: 30px;
	border-radius: 10px;
}

.member-box-2{
	width: 100%;
	height: 200px;
	background: linear-gradient(120deg, rgba(64, 77, 197, 0.5), rgba(189, 0, 243, 0.5));
	padding: 30px;
	border-radius: 10px;
}

.js-image{
	width: 200px;
}

.js-login-btn{
	width: 200px;
	margin-left: auto;
	margin-right: 0;
	border:1px solid #000;
    position: relative;
    transition: all .5s ease;
}

.js-login-btn:hover{
	background: rgba(255,255,255,0.5);
}

.js-login-btn i{
    position: absolute;
    top:16px;
    right: 20px;
    opacity: 0;
    transition: all .5s ease;
}

.js-login-btn:hover i{
    position: absolute;
    top:16px;
    right: 15px;
    opacity: 1;

}

.js-login-btn a{
	display: block;
	text-align: center;
	padding: 10px 0px;
}


/* 概要 */
#activity{
    width: 100%;
    padding-top: 60px; 
}

#overview{
	width: 100%;
	padding-top: 60px;
}

.overview-text-area-left{
	width: 78%;
    font-size: 1.2rem;
    line-height: 1.8;
	margin-left: auto;
	margin-right: 0;
}

.overview-text-area-right{
	width: 78%;
    font-size: 1.2rem;
    line-height: 1.8;
}

.overview-title{
	display: inline-block;
	font-size: 1.5rem;
	line-height: 1;
	background-color: #8ccddf;
	padding: 15px 30px 17px 30px;
    border-radius: 6px;
}


.overview-sub-title{
    font-family: futura;
	font-size: 1rem;
    line-height: 1;
    letter-spacing: 1px;
    padding-left: 5px;
    position: relative;
    bottom: -10px;
}

.overview-sub-title span{
    font-size: 2rem;
}

/* 設立趣旨 */
#history{
    width: 100%;
    padding-top: 60px;
}

.history-area{
    width: 100%;
    position: relative;
}

.history-copy{
    width: 580px;
    font-size: 1.2rem;
    line-height: 1.7;
    position: absolute;
    top:50%;
    right: 40px;
    transform: translateY(-50%);
    z-index: 3;
}

.history-message{
    width: 670px;
    position: absolute;
    top:50%;
    right: 0;
    transform: translateY(-50%);
}

/* アクセス */
#access{
	width: 100%;
	background-color: #f3effc;
	padding-top: 60px;
}



/* セカンドページ */
#second-head-title{
    width: 100%;
    background-color: #fdeeac;
    text-align: center;
    padding: 60px 0px 80px 0px;
}

#second-head-title h2{
    font-size: 2.2rem;
    line-height: 1.7;
    letter-spacing: 2px;
}

.second-wrap{
    width: 90%;
    max-width: 1200px;
    min-height: 300px;
    background-color: #FFF;
    padding: 40px;
    margin:0 auto 0;
    position: relative;
    top:-30px;
}

.second-list-wrap{
    width: 90%;
    max-width: 1200px;
    margin:0 auto 0;
    position: relative;
    top:-30px;
}

.second-main-title{
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: bold;
    color: #159abd;
    border-bottom: 3px solid #159abd;
    padding-bottom: 10px;

}

.riji-photo{
    width: 240px;
    margin:0 auto 10px;
    border-radius: 600px;
    overflow: hidden;
}

.riji-photo img{
    width: 100%;
    height: auto;
}

.riji-name{
    font-size: 1.5rem;
    line-height: 1.5;
    text-align: center;
}

.riji-name-en{
    font-size: 0.75rem;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 10px;
}

.riji-text{
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: center;
}

.riji-photo-box{
    width: 30%;
}

.greeting-text-box{
    width: 68%;
    font-size: 1rem;
    line-height: 1.7;
    margin-left: auto;
    margin-right: 0;
}

.greeting-title{
    font-size: 1.5rem;
    line-height: 1.5;
    color: #002d40;
    font-weight: normal;
    border-left: 3px solid #009abe;
    padding: 5px 10px;
    margin-bottom: 20px;
}

.activity-link-area{
    width: 100%;
    background-color: #FFF;
    border-radius: 10px;
    overflow: hidden;
    transition: all .5s ease;
}

.activity-link-area:hover{
    transform: scale(0.95);
}

.activity-photo-box{
    aspect-ratio: 1 / 1;
    object-fit: contain;
    overflow: hidden;
    position: relative;
}

.activity-photo-box img{
    width: 100%;
    height: auto;
    position: absolute;
    top:50%;
    transform: translateY(-50%);
}

.activity-text-box{
    width: 100%;
    padding: 20px;
}

.blog-time{
    font-size: 0.875rem;
    line-height: 1.5;
}

.blog-title{
    width: 100%;
    height: 48px;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: bold;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* ブラウザがサポートしていない場合のフェールセーフ */
    max-height: 48px;
}

.guidance-box{
    width: 100%;
    border:1px solid #009abe;
    padding: 20px;
}

.guidance-sub-title{
    font-size: 1.2rem;
    line-height: 1.5;
    color: #002d40;
    border-bottom: 1px solid #009abe;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.guidance-box-error{
    width: 100%;
    border:1px solid #eb72ab;
    padding: 20px;
}

.guidance-sub-title-error{
    font-size: 1.2rem;
    line-height: 1.5;
    color: #dd41a0;
    border-bottom: 1px solid #eb72ab;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

ul.guidance-list{
    list-style: disc;
    padding-left: 1em;
}

ul.guidance-list li{
    margin-bottom: 10px;
}

ul.guidance-list li:last-child{
    margin-bottom: 0;
}

.kaiin-title{
    width: 10em;
    font-size: 1.2rem;
    color: #FFF;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    background-color: #70BCCB;
    padding: 15px 0px;
}

.border-line{
    width: 100px;
    height: 2px;
    border-top:2px solid #70BCCB;
    margin-right: 10px;
}

.kaihi-box{
    width: 100%;
    border:1px solid #70BCCB;
}

.kaihi-title{
    width: 100%;
    color: #FFF;
    font-weight: bold;
    text-align: center;
    background-color: #70BCCB;
    padding: 5px;
}

.fee-area{
    width: 100%;
    padding: 20px;
}

.fee-box{
    width: 50%;
}

.fee-title{
    width: 6em;
    text-align: center;
    background-color: #ffe893;
    padding: 10px 0px;
    border-radius: 6px;
}

.fee-title-green{
    width: 6em;
    text-align: center;
    background-color: #9be3ac;
    padding: 10px 0px;
    border-radius: 6px;
}

.fee-text{
    font-size: 2rem;
    text-align: right;
}

.fee-text span{
    font-size: 1.2rem;
}

.nyukai-btn{
    width: 400px;
    margin:0 auto 0;
    position: relative;
}

.nyukai-btn i{
    position: absolute;
    right: 30px;
    top:22px;
    opacity: 0;
    transition: all .5s ease;
}

.nyukai-btn:hover i{
    position: absolute;
    right: 20px;
    top:22px;
    opacity: 1;
}

.nyukai-btn a{
    display: block;
    font-size: 1.2rem;
    color: #FFF;
    text-align: center;
    background-color: #009abe;
    padding: 15px;
}

.nyukai-btn a:hover{
    background-color: #418daa;
}

.btn_submit{
    width: 400px;
    margin:0 auto 0;
}

.btn_submit input[type="submit"]{
    width: 100%;
    display: block;
    font-size: 1.2rem;
    color: #FFF;
    text-align: center;
    background-color: #009abe;
    padding: 15px;
    border:0;
    cursor: pointer;
    transition: all .5s ease;
}

.btn_submit input[type="submit"]:hover{
    background-color: #418daa;
}

.btn_back{
    width: 100px;
    display: block;
    font-size: 1.2rem;
    color: #FFF;
    text-align: center;
    background-color: #666;
    padding: 15px;
    border:0;
    cursor: pointer;
    transition: all .5s ease;    
}

.btn_back:hover{
    background-color: #999;
}

table.law-table{
    width: 100%;
    border-collapse:collapse;
}

table.law-table th{
    width: 20%;
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
    font-weight: normal;
    padding: 15px;
    border:1px solid #ccc;
}

table.law-table td{
    width: 80%;
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
    font-weight: normal;
    padding: 15px;
    border:1px solid #ccc;
}

#blog-area{
    width: 75%;
    background-color: #FFF;
    margin:30px 0px;
    position: relative;
}

#blog-area h2{
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: bold;
    border-left: 4px solid #009abe;
    background-color: #f2f2f2;
    padding: 10px 15px;
    margin-bottom: 20px;
}

#blog-area p{
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1em;
}

#blog-area p:last-of-type{
    margin-bottom: 0;
}

.blog-wrap{
    width: 100%;
    padding: 30px;
}

#side-area{
    width: 20%;
    margin-left: auto;
    margin-right: 0;
    margin-top: 30px;
}

.category-title{
    display: block;
    color: #FFF;
    font-weight: bold;
    background-color: #009abe;
    padding: 10px 15px;
}

ul.category-list{
    width: 100%;
}

ul.category-list li{
    border-left:1px solid #009abe;
    border-right:1px solid #009abe;
    border-bottom:1px solid #009abe;
    background-color: #FFF;
}

ul.category-list li a{
    display: block;
    padding: 10px 15px;
}

ul.category-list li a:hover{
    color: #009abe;
}

ul.kanren-list{
    width: 100%;
}

ul.kanren-list li{
    margin-bottom: 20px;
}


#form-area{
    width: 100%;
}

.form-box{
    width: 50%;
    padding: 10px;
    margin-bottom: 10px;
}

.form-box-long{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

.required-text{
    display: inline-block;
    font-size: 0.75rem;
    color: #FFF;
    background-color: #e5699b;
    padding: 3px 10px;
    margin-left: 10px;
    border-radius: 4px;
}

.post{
    width: 100%;
    min-height: 300px;
}

.post a{
    color: #009abe;
    text-decoration: underline;
}

.post img{
    max-width: 100%;
    margin:0.5em 0px;
}

.post ul{
    list-style: disc;
    padding-left: 1em;
}

.post ul li{
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 7px;
}

.post ol{
    list-style: decimal;
    padding-left: 1em;
}

.post ol li{
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 7px;
}

.postLinks{
  width: 100%;
  display: flex;
  align-items: center;
  border-top:1px dotted #d2d2d2;
}

.postLink-prev{
  width: 50%;
  border-right: 1px dotted #d2d2d2;
  text-align: left;
}

.postLink-next{
  width: 50%;
  text-align: right;
}

.postLink a{
  display: block;
  padding: 20px;
}

.postLink a:hover{
  color: #009abe;
}

ol.no-list{
    list-style-type: decimal;
    padding-left: 1.5em;
}

ol.no-list li{
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

table.syain-table{
    width: 100%;
    margin:0;
    padding: 0;
    border-collapse: collapse;
}

table.syain-table thead th{
    font-size: 0.875rem;
    line-height: 1.5;
    padding-bottom: 5px;
    border-bottom: 2px solid #333;
}

table.syain-table tbody td{
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    border-bottom: 1px solid #ccc;
    padding:10px; 
}
