@charset "UTF-8";
/* CSS Document */
:root {
    --width: 100vw;
    --height: 100vh;
    --green: #009944;

}
@media only screen and (max-width: 1280px) {
    :root {
        --width: 1280;
    }
}
@media only screen and (max-width: 769px) {
    :root {
        --width: 375;
    }
}
/*----------------------------------------------------------------
* reset
----------------------------------------------------------------*/
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,main,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font-family:inherit;vertical-align:baseline;box-sizing:border-box;}ul,ol,li{list-style:none;}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,main,summary{display:block;}
/*----------------------------------------------------------------
* setting
----------------------------------------------------------------*/
body {
    line-height: 1.5;
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    font-size: calc(14 / var(--width)* 100vw);
    font-weight: 400;
   
    -webkit-font-smoothing: antialiased;
    text-size-adjust: 100%;
	color: #000;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    image-rendering: -webkit-optimize-contrast;
}

svg {
    width: 100%;
    height: auto;
}

a {
    color: #000;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    outline: none;
}

.headerArea{
	background-color: #fff;
}
.header_logo {
    display: block;
    width: calc(144 / var(--width)* 100vw);
    transition: .3s ease;
    transition-property: width, height, opacity, visibility;
    margin-bottom: calc(1 / var(--width)* 100vw);
}


/**
 *
 * @wrapper
 *
 */

/*----------------------------------------------------------------
* container
----------------------------------------------------------------*/
.container {
    max-width: calc(1280 / var(--width) * 100vw);
    margin: 0 auto;
    padding: 0 calc(40 / var(--width) * 100vw);
	font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
	
}
@media only screen and (max-width: 769px) {
    .container {
        width: 94%;
        padding: 0 calc(20 / var(--width) * 100vw);
    }
}


.header{
	height: calc(104 / var(--width)* 100vw);
	display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer{
	padding: 8em 0 2em;
}
.footer .footer_logo{
	display: block;
	width: calc(144 / var(--width)* 100vw);
	margin: 0 auto 5em;;
}
.footer p.copy{
	font-size: calc(12 / var(--width)* 100vw);
	text-align: center;
}
/*----------------------------------------------------------------
* title
----------------------------------------------------------------*/
.mainTitle{
	text-align: center;
	margin-bottom: 5em;
	font-family: "Zen Maru Gothic", serif;
	line-height: 1;
	font-weight: 600;
	
}
.mainTitle h3{
	font-size: 2.4rem;
	background-color:  #fff;
	display: inline-block;
	border-radius: .2em;
	padding: .2em .8em .3em;
}
.mainTitle p.t1{
	font-size: 1.2rem;
}
.mainTitle p.t1 span{
	background-color:  #fff;
	border-radius: 1em;
	position:relative;
	letter-spacing: -.02em;
	padding: .2em 1.5em;
}
.mainTitle p.t1 span::after,.mainTitle p.t1 span::before{
    border: solid transparent;
    content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    top:99%;
    left:50%;
	
}
.mainTitle p.t1 span::after{
    border-color: rgba(0, 0, 255, 0);
    border-top-width:15px;
    border-bottom-width:15px;
    border-left-width:10px;
    border-right-width:10px;
    margin-left: -10px;
    border-top-color:#fff;
}

/*----------------------------------------------------------------
* main
----------------------------------------------------------------*/

.main{
	background-color: #bef0ff;
	padding: 15em 0 25em;
	background-image: url("../img/main_bg.png");
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: top center;
}
.main h2{
	width: 70%;
	margin: 0 auto;
}

/*----------------------------------------------------------------
* news
----------------------------------------------------------------*/
.news{
	background-image: url("../img/sub_bg.png");
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: top center;
	padding-top: 15em;
	margin-top: -15em;
	padding-bottom: 15em;
	position: relative;
}
.news .container{
	position: relative;
	z-index: 1;
}
.news p.kazari{
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
}
.news .mainTitle{
	color: #009900;
}
.news p.xtx{
	width: 65%;
	margin: 0 auto 10em;
}
.news p.xtx img.spim{
	display: none;
}
.news .newsArea{
	width: 84%;
	margin: 0 auto;
}
.news .newsBox{
	background-color: #fff;
	padding: 3em 5em;
	border-radius: 1em;
}
.news .newsBox dl{
	display: flex;
	column-gap: 2em;
	margin-bottom: 1em;
	font-size: 1rem;
}
.news .newsBox dl:last-child{
	margin-bottom: 0;
}
.news .newsBox a:link{
	color: #000;
	text-decoration: underline;
}
.news .newsBox a:visited{
	color: #000;
	text-decoration: underline;
}
.news .newsBox a:hover{
	color: #000;
	text-decoration: none;
}

/*----------------------------------------------------------------
* concept
----------------------------------------------------------------*/
.concept{
	background-color: #ffeed2;
	padding: 15em 0 10em;
	background-image: url("../img/concept_bg.jpg");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100%;
	position: relative;
}
.concept .container{
	position: relative;
	z-index: 1;
}
.concept p.kazari{
	position: absolute;
	width: 85%;
	top: -5em;
	right: 0;
}
.concept .mainTitle{
	color: #fff;
}
.concept .mainTitle h3{
	background-color:  #ea5017;

}

.concept .mainTitle p.t1 span{
	background-color:  #ea5017;

}

.concept .mainTitle p.t1 span::after{
    border-top-color:#ea5017;
}
.concept p.jr{
	width: 70%;
	margin: 0 auto 5em;
}
.concept p.tx,.program p.tx{
	text-align: center;
	line-height: 2;
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 4em;
	color:  #333;
}
.concept .pro{
	margin-top: 5em;
	width: 80%;
	margin: 0 auto;
	background-color: #fff;
	border-radius: 1em;
	padding: 3em 2em;
	position: relative;
}
.concept .pro p.t1{
	font-family: "Zen Maru Gothic", serif;
	line-height: 1;
	font-weight: 600;
	text-align: center;
	color: #ea5017;
	font-size: 1.8rem;
	margin-bottom: 1em;
}
.concept .pro ul{
	display: flex;
	justify-content: space-between;
}
.concept .pro ul li{
	width: 32%;
	

}
.concept .pro dl{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
}
.concept .pro dt{
	background-color: #ea5017;
	color: #fff;
	line-height: 2;
	padding: 1em 0;
	font-weight: bold;
	font-size: 1rem;
	border-radius: 1em 1em 0 0;
	border: 2px solid #000;
	border-bottom: none;
}
.concept .pro dd{
	height: 120px;
	position: relative;
	font-size: 1.2rem;
	font-weight: bold;
	border-radius: 0 0 1em 1em;
	border: 2px solid #000;
	border-top: none;
}
.concept .pro dd p{
	position: relative;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.concept .pro dt,.concept .pro dd{
	width: 100%;
	text-align: center;
}
.concept .pro dd span{
	display: block;
	line-height: 1.4;
	font-size: .8rem;
	font-weight: normal;
}
.concept p.kazari2{
	position: absolute;
	width: 15%;
	left: -3em;
	top: -6em;
}
.concept p.kazari3{
	position: absolute;
	width: 5%;
	bottom: 5%;
	left: 5%
}
.concept p.kazari4{
	position: absolute;
	width: 6%;
	bottom: 20%;
	right: 5%;	
}
/*----------------------------------------------------------------
* program
----------------------------------------------------------------*/
.program{
	background-color: #c2e6ff;
	padding: 15em 0 10em;
	background-image: url("../img/pro_bg.jpg");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100%;
	position: relative;
}
.program .container{
	position: relative;
	z-index: 1;
}
.program p.kazari{
	position: absolute;
	z-index: 2;
	
}
.program p.kazari1{
	top: 15em;
	width: 15%;
	left: 5%;	
}
.program p.kazari2{
	top: 12em;
	width: 8%;
	right: 5%;	
}
.program p.kazari3{
	top: 30%;
	width: 8%;
	left: 2%;	
}
.program p.kazari4{
	top: 50%;
	width: 10%;
	left: 0%;	
}
.program p.kazari5{
	top: 40%;
	width: 10%;
	right: 0%;	
}
.program p.kazari6{
	top: 60%;
	width: 7%;
	right: 2%;	
}
.program p.kazari7{
	top: 80%;
	width: 10%;
	left: 2%;	
}
.program .mainTitle{
	color: #fff;
}
.program .mainTitle h3{
	background-color:  #0084d6;

}

.program .mainTitle p.t1 span{
	background-color:  #0084d6;

}

.program .mainTitle p.t1 span::after{
    border-top-color:#0084d6;
}
.programArea{
	background-color: #fff;
	border-radius: 1em;
	padding: 5em;
	margin-bottom: 10em;
}
.program .programArea:last-child{
	margin-bottom: 0;
}
.programArea p.title{
	color: #fff;
	background-color:#0084d6;
	display: inline-block;
	border-radius: .5em;
	font-size: 1.3rem;
	padding: 0 2em;
	line-height: 2;
	font-weight: bold;
	margin-bottom: 2em;
}
.programArea p.txx{
	font-size: 1rem;
	line-height: 2.2;
}
.programArea p.tt{
	width: 85%;
	margin-bottom: 3em;
}
.programArea p.tt img.spim{
	display: none;
}
.programArea p.ttt{
	font-family: "Zen Maru Gothic", serif;
	line-height: 1;
	font-weight: 600;
	color: #0084d6;
	font-size: 1.5rem;
}
.programArea dl.tx{
	display: flex;
}
.programArea dl.tx dt,.programArea dl.tx dd{
	width: 50%;
}

.programArea dl.tx dd.t1 img{
	margin-left: 3em;
	margin-bottom: 3em;
	
}
.programArea dl.tx dt.t1 img{
	width: 90%;
}
.programArea .gaiyo{
	padding: 8em 0 3em;
	border-top: 5px dotted #0084d6;
	margin-top: 8em;
}
.programArea .gaiyo.no{
	border: none;
	margin-top: 0;
}
.programArea .gaiyo p.gaiyoTitle{
	color: #0084d6;
	font-weight: bold;
	text-align: center;
	font-size: 1.3rem;
	margin-bottom: 2em;
	
}
.programArea .gaiyo p.gaiyoTitle span{
	border: 2px solid #0084d6;
	border-radius: .5em;
	padding: .5em 2em;
	
}
.program p.tx span{
	display: block;
	font-size: 130%;
}
.gaiyoArea{
	width: 80%;
	margin: 0 auto 5em;
}
.gaiyoArea dl{
	display: flex;
	align-items: center;
	margin-bottom: 2em;
	color:  #333;
	line-height: 1.8;
}
.gaiyoArea dl:last-child{
	margin-bottom: 0;
}
.gaiyoArea dl dt{
	color: #0084d6;
	
	width: 15%;
	text-align: right;
	padding-right: 2em;
	font-size: 1.2rem;
	font-weight: bold;
	
}
.gaiyoArea dl dd{
	width: 85%;
	border-left: 1px solid #0084d6;
	padding: 1em 0 1em 2em;
	position: relative;
}

.gaiyoArea dl dd p.man{
	position: absolute;
	right: 0;
	top: 0;
	width: 25%;
}
.gaiyoArea p.t1{
	font-weight: bold;
	font-size: 1.4rem
}
.gaiyoArea p.t1 span{
	font-size: 80%;
}
.gaiyoArea p.t2{
	font-weight: bold;
	font-size: 1.2rem
}
.gaiyoArea p.t2 br{
	display: none;
}
.gaiyoArea p.t2 span{
	font-size: 80%;
}
.gaiyoArea p.t2 span.ss{
	color: #fff;
	background-color: #333;
	padding: .3em .7em;
	margin-right: .3em;
	
}
.gaiyoArea p.t3{
	font-weight: bold;
	font-size: 1rem;
}
.gaiyo p.att{
	line-height: 2;
	font-size: .9rem;
	
}
.gaiyo p.att2{
	line-height: 2;
	font-size: 1.2rem;
	text-align: center;
	font-weight: bold;
	color: #333;
	padding-top: 2em;

	
}
.gaiyo p.att2 span{
	background: linear-gradient(transparent 70%, #feff6a 70%);
}

.p-homeTopics__btn {
    text-align: center;
	padding-top: 5em;
}
.p-homeTopics__btn a:link{
	color: #fff;
}
.p-homeTopics__btn a:visited{
	color: #fff;
	text-decoration: none;
}
.p-homeTopics__btn a:hover{
	color: #fff;
	text-decoration: none;
}
.c-btnStyle1 {
    display: inline-block;
    padding: 1.55em 3.33em 1.55em;
    position: relative;
    text-align: center;
    line-height: 1.3;
    margin: 0;
    background-color: #ff68a2;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    color: #424242;
    z-index: 1;
    letter-spacing: 0.05em;
    transition: background-color 0.2s;
	min-width: 420px;
    font-size: 18px;
}
.c-btnStyle1::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0.89em;
    margin: auto;
    width: 2.67em;
    height: 2.67em;
    border-radius: 50%;
    background: #fff url(../img/ico_arrow.svg) no-repeat center center;
    background-size: 1.1em;
    transition: 0.2s;
}
/*----------------------------------------------------------------
* access
----------------------------------------------------------------*/
.access{
	padding: 15em 0 10em;
	background-image: url("../img/access_bg.jpg");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100%;
}
.access .mainTitle{
	color: #fff;
}
.access .mainTitle h3{
	background-color:  #009900;

}

.access .mainTitle p.t1 span{
	background-color:  #009900;

}

.access .mainTitle p.t1 span::after{
    border-top-color:#009900;
}
.access p.tx{
	color: #009900;

	text-align: center;
	font-size: 2rem;
	font-family: "Zen Maru Gothic", serif;
	line-height: 1.4;
	font-weight: 600;
	margin-bottom: 3em;
}
.access p.tx span{
	display: block;
	font-size: 70%;
}
.access ul{
	text-align: right;
	padding-top: 2em;
}
.alink {
    display: inline-block;
    padding: 0.5em 2em 0.5em 0;
    position: relative;
    text-align: right;
    line-height: 1.3;
    margin: 0;
    text-decoration: none;
    font-weight: bold;
    color: #ff68a2;
    z-index: 1;
    letter-spacing: 0.05em;
    transition: background-color 0.2s;
    font-size: 1.1rem;
}
.alink::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    background: #ff68a2 url(../img/ico_arrow_wh.svg) no-repeat center center;
    background-size: .5em;
    transition: 0.2s;
}
.alink:visited{
	text-decoration: none;
    color: #ff68a2;
}
.alink:hover{
	opacity: .8;
}
/*----------------------------------------------------------------
* other
----------------------------------------------------------------*/
.other{
	padding: 15em 0 10em;
	background-color: #fbf8d6;
	background-image: url("../img/other_bg.jpg");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100%;
}
.other .mainTitle{
	color: #fff;
}
.other .mainTitle h3{
	background-color:  #009900;

}

.other .mainTitle p.t1 span{
	background-color:  #009900;

}

.other .mainTitle p.t1 span::after{
    border-top-color:#009900;
}
.other .otherArea{
	background-color: #fff;
	border-radius: 1em;
	width: 70%;
	margin: 0 auto;
	position: relative;
}
.other dl{
	display: flex;
	align-items: center;
}
.other dt{
	width: 55%;
	padding-left: 8%;
	font-size: 1rem;
	line-height: 1.6;
}
.other dt p{
	margin-bottom: 1em;
}
.other dd{
	width: 45%;
}
.other dd img{
	border-radius: 1em;
}
.other .otherArea p.kazari{
	position: absolute;
	width: 17%;
	left: 10%;
	top: -10em;
}

/*-----------------------------------------------
	fade
-----------------------------------------------*/
.fadeIn_up {
	opacity:0;
	transition: all .5s;
}
.fadeIn_up.is-show {
	animation: fadeIn .5s ease-out forwards;
	animation-delay: .5s;
}
@keyframes fadeIn{
	0%{
		opacity:0;
		transform: translate(0, 40px);
	}
	50%{
		opacity:0.5;
		transform: translate(0, 20px);
	}
	100%{
		opacity:1;
		transform: translate(0, 0);
	}
}