@charset "utf-8";
/*/////////////////////////////////////////////
koji2025/index.html

/////////////////////////////////////////////*/
*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}
em {
	font-style: normal;
	font-weight: 700;
}
ul, ol {
	list-style: none;
}
img {
	max-width: 100%;
	width: 100%;
	height: auto;
	text-decoration: none;
}

/*block*/
/*pc display:block*/
.block_tb_sp{
    display: none;
}
.block_tb{
    display: none;
}
.block_sp{
    display: none;
}
/*-----------------------------840px-----*/
@media screen and (max-width: 840px) {
/*tb display:block*/
.block_pc{
    display: none;
}
.block_tb_sp{
    display: block;
}
.block_tb{
    display: block;
}
.block_sp{
    display: none;
}
}
/*-----------------------------660px-----*/
@media screen and (max-width: 660px) {
/*sp display:block*/
.block_pc_tb{
    display: none;
}
.block_tb{
    display: none;
}
.block_sp{
    display: block;
}
}


/*------------
content
--------------*/
body {
	font-size: 100%;
	color: #333;
	font-family:"ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	-webkit-text-size-adjust: 100%;
}


/*-----------
Anchor Links
-------------*/
#kirenkyo,
#adjust,
#conserve,
#cm,
#member{
	position: absolute;
	top: -80px;
}
/*-----------------------------840px-----*/
@media screen and (max-width: 840px) {
#kirenkyo,
#adjust,
#conserve,
#cm,
#member{
	position: absolute;
	top: -80px;
}
}
/*-----------------------------660px-----*/
@media screen and (max-width: 660px) {
#kirenkyo,
#adjust,
#conserve,
#cm,
#member{
	position: absolute;
	top: -50px;
}
}


/*--------
header
----------*/
header{
	width: 100%;
	/* background: rgba(21, 39, 134, 0.8); */
	position: fixed;
	z-index: 100;
}
.header_inner{
	width: 100%;
	height: 100px;
	background: rgba(21, 39, 134, 0.8);
	display: flex;
	justify-content: space-between;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
	padding: 0 15px 0 20px;
	position: relative;
	z-index: 200;
	transition: all 0.4s;
}
.change-nav .header_inner{
	width: 100%;
	height: 80px;
	transition: all 0.4s;
}
.header_logo{
	width: 160px;
	display: flex;
	align-items: center;
	transition: all 0.4s;
}
.change-nav .header_logo {
    width: 150px;
	transition: all 0.4s;
}
.header_logo a{
	width: 100%;
	transition: all 0.4s;
}
.header_logo a:hover{
	opacity: 0.8;
	transition: all 0.3s;
}


/* nav_link_box */
.nav_link_box{
	width: 760px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.nav_link_box li{
	width: 19.5%;
	height: 50px;
	transition: all 0.4s;
}
.change-nav .nav_link_box li{
	height: 40px;
	transition: all 0.4s;
}
.nav_link_box li a{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font-size: 0.9em;
	font-weight: 700;
    letter-spacing: 0.04em;
	line-height: 1em;
    font-feature-settings: "palt";
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 25px;
	padding: 0 0.7em 0 0;
	z-index: 2;
	color: #1a2c77;
	background: #fff;
	transition: 0.4s all;
	overflow: hidden;
}
.nav_link_box li a span{
	padding: 0 0.5em 0 0;
}
.change-nav .nav_link_box li a{
	font-size: 0.875em;
	transition: 0.4s all;
}
.nav_link_box li a::after{
	content: "";
	display: block;
	width:50%;
	padding-top: 30%;
	height: 0;
	position: absolute;
	left: -50%;
	right: -50%;
	top: -50%;
	bottom: -50%;
	margin: auto;
	background: #D1D1D1;
	color: #1a2c77;
	border-radius: 50%;
	opacity: 0;
	z-index: -1;
	-webkit-transform: scale(0.1);
	transform: scale(0.1);
	transition: 0.4s all;
}
.nav_link_box li a:hover::after{
	opacity: 1;
	z-index: -1;
	-webkit-transform: scale(2);
	transform: scale(2);
	background: #D1D1D1;
	color: #1a2c77;
	transition: 0.3s all;
}
.nav_link_box li a:hover{
	color: #1a2c77;
}

/*svg*/
.nav_link_box li a svg{
	position: absolute;
	right: 10px;
	width: 15px;
	height: 15px;
	z-index: 300;
	transition: 0.3s ease-in 0.2s;
}
.nav_link_box li a:hover svg{
	transition: 0.3s ease-in 0.2s;
}

.nav_link_box li a svg .cls-1 {
	fill: #1a2c77;
}
.nav_link_box li a svg .cls-2 {
	fill: none;
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: .85px;
}
.nav_link_box li a:hover svg .cls-1{
	fill: #1a2c77;
}
.nav_link_box li a:hover svg .cls-2 {
	stroke: #fff;
}


.menu_area{
	display: none;
}

/*-----------------------------1000px-----*/
@media screen and (max-width: 1000px) {
.header_inner{
	padding: 0 10px;
}
.header_logo {
	width: 140px;
}
.change-nav .header_logo {
	width: 130px;
}
.nav_link_box {
	width: 660px;
}
.nav_link_box li a {
	font-size: 0.85em;
	letter-spacing: 0.02em;
	padding: 0 0.5em 0 0;
}
.change-nav .nav_link_box li a {
	font-size: 0.8em;
}
.nav_link_box li a span{
	padding: 0 0.5em 0 0;
}
.nav_link_box li a svg {
	right: 5px;
}
}
/*-----------------------------840px-----*/
@media screen and (max-width: 840px) {
.header_logo{
	width: 140px;
}
.change-nav .header_logo {
    width: 130px;
}

.nav_link_box{
	display: none;
}
/*nav_open*/
.icon-animation{
	display: flex;
	width: 100px;
	height: 100px;
    background-color: #D1D1D1;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 700;
	cursor: pointer;
	justify-content: center;
	align-items: center;
	text-align: center;
	transition: all 0.4s ease 0s;
}

.change-nav .icon-animation{
	width: 80px;
	height: 80px;
	transition: all 0.4s ease 0s;
}
.icon-animation .nav_bar_inner{
	margin: auto 0 10%;
	transition: all 0.3s;
}
.icon-animation .nav_bar{
	display: block;
	width: 40px;
	height: 2px;
	background: #1a2c77;
	position: absolute;
	top: 40%;
	left: 50%;
	margin-left: -20px;
	transition: all 0.3s;
}
.change-nav .icon-animation .nav_bar{
	width: 36px;
	margin-left: -18px;
}
.icon-animation:hover .nav_bar{
	background: #1a2c77;
}
.nav_open .nav_bar{
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
.nav_open .middle {
    transform: translateX(0px);
}
.nav_open .top {
    transform: translateY(-12px);
}
.nav_open .bottom {
    transform: translateY(12px);
}
.nav_open .nav_t{
	background: transparent;
	font-size: 0.7em;
	color: #1a2c77;
    font-feature-settings: "palt";
	font-weight: 600;
	line-height: 1em;
	letter-spacing: 0.05em;
	text-align: center;
	transition: all 0.3s;
}
.change-nav .nav_open .nav_t{
	font-size: 0.65em;
}
.nav_open .nav_t:after{
	content: "MENU";
}
.nav_open.nav_close .nav_t:after{
	content: "CLOSE";
}
.icon-animation.nav_close .nav_bar{
    background: #1a2c77;
}
.nav_open.nav_close .middle {
    transform: translateX(100px);
	background: #1a2c77;
}
.nav_open.nav_close .top {
	transform: rotate(-45deg) translateY(0px);
}
.nav_open.nav_close .bottom {
	transform: rotate(45deg) translateY(0px);
}
.nav_active .header_icon_box{
    display: none;
}

/*menu_area*/
.menu_area{
	display: block;
    width: 360px;
    height: 100vh;
    background: #162260;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    overflow: scroll;
    transition: 0.3s ease-in-out;
	transform: translateX(100%);
	transition: 0.3s ease-out;
}
.nav_active .menu_area {
	opacity: 1;
    transition: 0.3s ease-in-out;
	transform: translateX(0);
}
.menu_box{
    width: 100%;
    padding: 160px 18px 100px;
}
.menu_box01{
	width: 100%;
	padding: 0 0 15px;
}
.menu_box01 li{
    width: 100%;
    height: 50px;
	margin: 0 0 8px;
}
.menu_box01 li a{
    width: 100%;
    height: 100%;
    line-height: 1em;
    color: #1a2c77;
    font-size: 0.9375em;
    font-feature-settings: "palt";
	font-weight: 600;
    letter-spacing: 0.04em;
	background: #fff;
    border-radius: 5px;
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
    padding: 0 16px;
    display: flex;
	align-items: center;
    transition: all 0.3s;
}
.menu_box01 li a img{
	width: 6px;
	margin: 0 0.8em 0 0;
}
}
/*-----------------------------660px-----*/
@media screen and (max-width: 660px) {
.header_inner{
	height: 60px;
	padding: 0 10px;
}
.change-nav .header_inner{
	height: 50px;
}
.header_logo {
	width: 100px;
}
.change-nav .header_logo {
	width: 90px;
}

.icon-animation{
	width: 60px;
	height: 60px;
}
.icon-animation .nav_bar_inner {
    margin: auto 0 4%;
}
.change-nav .icon-animation{
	width: 50px;
	height: 50px;
}
.icon-animation .nav_bar{
	width: 30px;
	height: 2px;
	top: 40%;
	left: 50%;
	margin-left: -15px;
}
.change-nav .icon-animation .nav_bar{
	width: 30px;
	margin-left: -15px;
}

.nav_open .top {
    transform: translateY(-8px);
}
.nav_open .bottom {
    transform: translateY(8px);
}
.nav_open .nav_t{
	font-size: 0.6em;
}
.change-nav .nav_open .nav_t{
	font-size: 0.57em;
}

.menu_box {
    padding: 120px 18px 100px;
}
}
/*-----------------------------480px-----*/
@media screen and (max-width: 480px) {
/*menu_area*/
.menu_area{
    width: 100%;
}
}



/*--------
main
----------*/
.main_area{
	width: 100%;
	position: relative;
}
.main_img{
	width: 100%;
}
.main_img img{
	width: 100%;
}
.main_area_inner{
	width: 84.9%;
	height: 100%;
	padding: 50px 0 0;
	margin: 0 auto;
	display: flex;
	align-items: center;
	position: absolute;
	left: 7.55%;
	top: 0;
}
.main_t_box{
	width: 55%;
}
.main_title{
	width: 64.8%;
	padding: 8.5% 0;
}
.main_text{
	font-size: 1.34vw;
	color: #fff;
	line-height: 2.55em;
    font-feature-settings: "palt";
	letter-spacing: 0.1em;
}
.main_text br.block_meintext{
	display: none;
}

/*-----------------------------1050px-----*/
@media screen and (max-width: 1050px) {
.main_text {
	font-size: 1.6vw;
}
.main_text br.block_meintext{
	display: block;
}
}
/*-----------------------------840px-----*/
@media screen and (max-width: 840px) {
.main_area_inner{
	width: 80%;
	align-items: self-start;
}
.main_t_box{
	width: 100%;
	padding: 18% 0 0;
}
.main_title{
	width: 65%;
    padding: 0 0 5% 0;
}
.main_text {
    font-size: 2.5vw;
    line-height: 2em;
}
}

/*-----------------------------660px-----*/
@media screen and (max-width: 660px) {
.main_area_inner {
	width: 90%;
	left: 5%;
}
.main_t_box{
	padding: 15% 0 0;
}
.main_title {
    width: 68%;
    padding: 0 0 7%;
}
.main_text {
	font-size: 3.4vw;
    line-height: 1.9em;
}
}

/*-----------------------------480px-----*/
@media screen and (max-width: 480px) {
.main_t_box{
	padding: 11% 0 0;
}
.main_title {
    padding: 0 0 5%;
}
.main_text {
	font-size: 4.3vw;
}
}
/*-----------------------------350px-----*/
@media screen and (max-width: 350px) {
.main_t_box{
	padding: 9% 0 0;
}
}





/*-------
content
--------*/
.content{
	width: 100%;
}

/*cont_inner_area*/
.cont_inner_area{
	max-width: 1366px;
	width: 100%;
	margin: 0 auto;
}
.cont_inner{
	width: 1000px;
	margin: 0 auto;
}

.cont_title_box{
	position: relative;
	width: 100%;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-size: auto auto;
	background: #6ECBE1;
	background: linear-gradient(90deg,rgba(110, 203, 225, 1) 50%, rgba(116, 220, 255, 1) 100%);
	box-shadow: 0 8px 7px 0 rgba(0, 0, 0, 0.14);
}
.cont_title_box img.ya{
	width: 44px;
	height: 22px;
	position: absolute;
	left: 50%;
	top: 70px;
	transform: translate(-50%, 0);
	width: 74px;
	height: 52px;
}
.cont_title{
	color: #fff;
	font-size: 1.625em;
	font-weight: 700;
    letter-spacing: 0.2em;
	line-height: 1.3em;
    font-feature-settings: "palt";
	display: flex;
	align-items: center;
	position: relative;
}
.cont_title_box img.icon_q{
	width: 38px;
	margin: 0 0.5em 0 0;
}


/*--------
cont01
---------*/
.cont01{
	position: relative;
}
.cont01_inner{
	width: 100%;
	margin: 0 auto;
	background: #585858 url(../img/cont01_pc.jpg) no-repeat;
	background-size: cover;
    background-position: top left;
	padding: 130px 0 110px;
}
.cont01_box{
	width: 100%;
}
.cont01_text{
	color: #fff;
	font-size: 1.25em;
	font-weight: 600;
    letter-spacing: 0.08em;
	line-height: 2em;
    font-feature-settings: "palt";
	padding: 0 0 50px;
	text-align: center;
}
.cont01_lifeline_icon{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 5%;
}
.cont01_lifeline_icon li{
	width: 10.5%;
	padding: 0 0 13px;
}


/*-------
cont02
--------*/
.cont02{
	position: relative;
}
.cont02_inner{
	width: 100%;
	margin: 0 auto;
	background: url(../img/cont02_bg.jpg) no-repeat;
    background-size: cover;
	background-position: top left;
	padding: 70px 0 85px;
}
.cont02_box{
	width: 100%;
	background: #fff;
	border-radius: 30px;
	padding: 60px 50px;
}
.cont02_box01{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 0 35px;
	border-bottom: 2px dotted #707070;
}
.cont02_l{
	width: 50%;
	padding: 0 2.2% 0 0;
}
.cont02_r{
	width: 50%;
	padding: 0 0 0 2.2%;
}
.text_red{
	color: #FF3366;
}
.cont_box_title{
	color: #293F9F;
	font-size: 1.5em;
    letter-spacing: 0.1em;
	line-height: 1.75em;
    font-feature-settings: "palt";
	font-weight: 700;
}
.cont_box_text{
	font-size: 1.125em;
    letter-spacing: 0.05em;
	line-height: 1.88em;
    font-feature-settings: "palt";
	padding: 26px 0 0;
	display: flex;
	justify-content: center;
}
.cont02_graph_t{
	width: 100%;
	color: #fff;
	font-size: 1.125em;
	line-height: 1.25em;
    letter-spacing: 0.05em;
    font-feature-settings: "palt";
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #3399FF;
	background: linear-gradient(90deg,rgba(51, 153, 255, 1) 0%, rgba(116, 220, 255, 1) 100%);
	padding: 8px 0;
}
.cont02_graph_i{
	width: 100%;
	padding: 25px 0 0;
}

.cont02_box02{
	width: 100%;
	padding: 35px 0 0;
}
.cont02_box02_inner{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 30px 0 0;
}

/*-------
text_line
----------*/
.text_line{
	background: linear-gradient(transparent 60%, #fff100 60%);
	display: inline;
	background-repeat: no-repeat;
	background-size: 0% 100%;
	transition: background-size 1s 0.5s ease-out;
	padding: 0 0 5px;
}
.text_line.start_line{
	background-size: 100% 100%;
}



/*---------
cont03
----------*/
.cont03{
	position: relative;
}
.cont03_inner{
	width: 100%;
	margin: 0 auto;
	background: url(../img/cont03_bg.jpg) no-repeat;
    background-size: cover;
	background-position: top left;
	padding: 70px 0 85px;
}
.cont03_box{
	width: 100%;
	background: #fff;
	border-radius: 30px;
	padding: 60px 50px;
}
.cont03_box01{
	width: 100%;
	padding: 0 0 35px;
	border-bottom: 2px dotted #707070;
}
.cont03 .cont_box_title{
	text-align: center;
}
.cont03_box01_inner{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 45px 0 0;
}
.cont03 .cont_box_text{
	padding: 0;
}
.cont03_l{
	width: 48.6%;
}
.cont03_r{
	width: 48.6%;
}
.cont03_i{
	width: 100%;
}


/* cont03_box02 */
.cont03_box02{
	width: 100%;
	padding: 35px 0 45px;
	border-bottom: 2px dotted #707070;
}
.cont03_box_title{
	width: 100%;
	color: #fff;
	font-size: 1.625em;
	line-height: 1em;
    letter-spacing: 0.05em;
    font-feature-settings: "palt";
	font-weight: 600;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #3399FF;
	background: linear-gradient(90deg,rgba(51, 153, 255, 1) 0%, rgba(116, 220, 255, 1) 100%);
	margin: 0 0 30px;
	padding: 17px 0;
}
.cont03_box02_inner{
	width: 74.4%;
	margin: 0 auto;
	padding: 20px 0 0;
}
.cont03_box02_inner02{
	width: 100%;
	padding: 20px 0 0;
}
.cont03_box02_inner02 dt{
	color: #293F9F;
	font-size: 1.125em;
    letter-spacing: 0.05em;
	line-height: 1.2em;
    font-feature-settings: "palt";
	font-weight: 600;
	padding: 0 0 6px;
}
.cont03_box02_inner02 dd{
	font-size: 1.125em;
    letter-spacing: 0.05em;
	line-height: 1.72em;
    font-feature-settings: "palt";
}

.cont03_box03{
	width: 100%;
	padding: 45px 0 0;
}
.cont03_box03_inner{
	width: 100%;
	padding: 30px 0 0;
}
.cont03_box03_inner.cont03_box03_inner02{
	padding: 40px 0 0;
}


/*-------
cont04
--------*/
.cont04{
	position: relative;
}
.cont04_inner{
	width: 100%;
	margin: 0 auto;
	background: url(../img/cont02_bg.jpg) no-repeat;
    background-size: cover;
	background-position: top left;
	padding: 70px 0 85px;
}
.cont04_box_text{
	color: #fff;
	font-size: 1.25em;
	font-weight: 600;
    letter-spacing: 0.08em;
	line-height: 1.88em;
    font-feature-settings: "palt";
	display: flex;
	justify-content: center;
	text-align: center;
	padding: 0 0 50px;

}
.video_area{
	width: 77.3%;
	margin: 0 auto;
	padding: 0 0 30px;
}
.video_area02{
	padding: 0;
}
.video_box{
	width: 100%;
	position: relative;
}
.video_box01{
	width: 100%;
	background: url(../img/cont04_v01.jpg) no-repeat;
	background-size: 100%;
	background-position: left top;
}
.video_box02{
	width: 100%;
	background: url(../img/cont04_v02.jpg) no-repeat;
	background-size: 100%;
	background-position: left top;
}
.video{
	width: 100%;
	height: 56.25%;
}
.play-button {
    position: absolute;
    width: 12%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.0);
    cursor: pointer;
    z-index: 1;
	opacity: 1;
	transition: 0.8s ease;
}
.play-button:hover {
    content: url(../img/move_play_h.png);
    transform: translate(-50%, -50%) scale(1.1);
	opacity: 0.8;
	transition: 0.8s ease;
}



/*-------
cont05
--------*/
.cont05{
	position: relative;
}
.cont05_inner{
	width: 100%;
	margin: 0 auto;
	background: url(../img/cont03_bg.jpg) no-repeat;
    background-size: cover;
	background-position: top left;
	padding: 70px 0 115px;
}


.member_box{
	width: 1000px;
	background: #fff;
	margin: 0 auto 40px;
}
.member_box.member_box02{
	margin: 0 auto;
}
.member_title{
	width: 100%;
	height: 50px;
	color: #fff;
	font-size: 1.375em;
	font-weight: 700;
	letter-spacing: 0.2em;
	font-feature-settings: "palt";
	line-height: 1.4em;
    word-break: break-all;
	background: #68bac3;
	display: flex;
	align-items: center;
	justify-content: center;
}
.member_inner{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	
}
.member_inner li{
	width: 24%;
	height: 60px;
	color: #1a0dab;
	font-size: 0.75em;
    letter-spacing: 0.04em;
	line-height: 1.4em;
    font-feature-settings: "palt";
    word-break: break-all;
	display: flex;
	align-items: center;
	padding: 0 0 0 0.5em;
	margin: 0 0.5%;
	text-indent: -0.5em;
	border-bottom: 1px dotted #68bac3;
}
.member_inner li:last-child,
.member_inner li:nth-child(29),
.member_inner li:nth-child(30),
.member_inner li:nth-child(31),
.member_inner li:nth-child(32){
	border-bottom: none;
}
.member_inner li a{
	width: 100%;
	height: 100%;
	color: #1a0dab;
	font-size: 1em;
	display: flex;
	align-items: center;
	transition: all 0.3s;
}
.member_inner li a:hover{
	color: #68bac3;
	transition: all 0.3s;
}
.icon_member{
	width: 8px;
	margin: 0 0.5em 0 0;
}


/*-----------------------------1100px-----*/
@media screen and (max-width: 1100px) {
.cont_inner{
	width: 90%;
}

/* cont01 */
.cont01_text{
	font-size: 1.125em;
}
/* cont04 */
.cont04_box_text {
	font-size: 1.125em;
}

/*menber */
.member_box{
	width: 750px;
}
.member_inner li{
	width: 240px;
	margin: 0 5px;
	letter-spacing: 0.02em;
}

.member_inner li:nth-child(29),
.member_inner li:nth-child(30){
	border-bottom: 1px dotted #68bac3;
}
.member_inner01 li:nth-child(7),
.member_inner01 li:nth-child(8){
	border-bottom: none;
}
}

/*-----------------------------1050px-----*/
@media screen and (max-width: 1050px) {
.cont02_graph_t{
	font-size: 1.8vw;
}
.cont_box_title{
	font-size: 2.22vw;
}
.cont_box_text{
	font-size: 1em;
}
}

/*-----------------------------840px-----*/
@media screen and (max-width: 840px) {
/*main_area*/
.cont_inner{
	width: 80%;
}

/* cont01 */
.cont_title{
	font-size: 3vw;
	letter-spacing: 0.1em;
}
.cont01_inner{
	background: #585858 url(../img/cont01_sp.jpg) no-repeat;
	background-size: cover;
    background-position: center;
	padding: 110px 0 120px;
}
.cont01_box{
	width: 100%;
}
.cont01_text{
	width: 80%;
	letter-spacing: 0.05em;
    margin: 0 auto;
    text-align: justify;
	padding: 0 0 50px;
}
.cont01_lifeline_icon {
    width: 80%;
	margin: 0 auto;
}
.cont01_lifeline_icon li {
	width: 22%;
}

/* cont02 */
.cont02_box01{
	padding: 0 0 50px;
}
.cont02_l{
	width: 100%;
 	padding: 0 0 30px;
}
.cont02_r{
	width: 100%;
 	padding: 0;
}
.cont_box_text{
	justify-content: left;
	padding: 20px 0 0;
}
.cont02_graph_t{
	font-size: 1.125em;
}

/* cont03 */
.cont03 .cont_box_title{
	text-align: justify;
	letter-spacing: 0.06em;
}
.cont03_box01_inner{
	padding: 30px 0 0;
}
.cont03_l{
	width: 100%;
	padding: 0 0 30px;
}
.cont03_r{
	width: 100%;
}
.cont03_box_title{
	font-size: 2.5vw;
}
.cont03_box02_inner{
	width: 100%;
}
.cont03_box02_inner02 dt{
	font-size: 1em;
}
.cont03_box02_inner02 dd{
	font-size: 1em;
}

/*cont04*/
.cont04_box_text{
	letter-spacing: 0.05em;
  	text-align: justify;
	padding: 0 0 40px;
}
.video_area{
	width: 100%;
}

/*cont05*/
.member_box {
	width: 100%;
}
.member_inner{
	justify-content: space-between;
}
.member_inner li{
	width: 48%;
}
.member_inner li:nth-child(33){
	border-bottom: none;
}
.member_inner01 li:nth-child(7),
.member_inner01 li:nth-child(8){
	border-bottom: 1px dotted #68bac3;
}
}

/*-----------------------------660px-----*/
@media screen and (max-width: 660px) {
/*main_area*/
.cont_inner {
    width: 90%;
}
.cont_title_box{
	height: 60px;
}
.cont_title{
	font-size: 1.125em;
}
.cont_title_box img.ya{
	top: 50px;
}
.cont01_inner{
	padding: 60px 0;
}
.cont01_text{
	width: 90%;
	font-size: 1.0625em;
}
.cont01_lifeline_icon {
    width: 100%;
	padding: 0;
}
.cont01_lifeline_icon li {
	width: 23%;
	padding: 0 0 10px;
}

/* cont02 */
.cont02_inner{
	padding: 60px 0 80px;
}
.cont02_box{
	padding: 50px 5%;
}
.cont_box_title{
	font-size: 1.125em;
}
.cont02_graph_t{
	font-size: 1.0625em;
}
.text_line{
	padding: 0 0 6px;
}

/* cont03 */
.cont03_inner{
	padding: 60px 0 80px;
}
.cont03 .cont_box_title{
	text-align: justify;
}
.cont03_box{
	padding: 50px 5%;
}
.cont03_box_title {
    font-size: 1.1875em;
	padding: 12px 0;
	margin: 0 0 20px;
}

/* cont04 */
.cont04_inner{
	padding: 60px 0 80px;
}
.cont04_box_text {
	font-size: 1.0625em;
	text-align: justify;
	padding: 0 0 30px;
}
.play-button {
	position: absolute;
	width: 18%;
}

/*menber*/
.cont05_inner{
	padding: 60px 0 80px;
}

.member_title {
	font-size: 1.1275em;
	height: 45px;
}
.member_inner li{
	width: 98%;
	height: 55px;
	font-size: 0.875em;
	margin: 0 1%;
}
.member_inner li:nth-child(31){
	border-bottom: 1px dotted #68bac3;
}
}
/*-----------------------------600px-----*/
@media screen and (max-width: 600px) {
.cont02_box01 .cont02_title02{
	text-align: justify;
}
}
/*-----------------------------360px-----*/
@media screen and (max-width: 360px) {
.cont02_title {
    font-size: 1.125em;
    letter-spacing: 0.02em;
}
}
/*------------/content*/



/*------------
footer
-------------*/
footer{
	width: 100%;
}
.footer_inner{
	width: 58.56%;
	margin: 0 auto;
}
.footer01{
	width: 100%;
	background: #F9F9F9;
	padding: 25px 0;
}
.footer01 nav{
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.footer01 nav ul{
	padding: 0 0.5em 0 0;
}
.footer01 nav ul:last-child{
	padding: 0;
}
.footer01 nav ul li{
	width: 100%;
}
.footer01 nav ul li a{
	color: #333;
	width: 100%;
    font-size: 0.8125em;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
	line-height: 2.23em;
	display: flex;
	align-items: center;
	transition: all 0.3s;
}
.footer01 nav ul li a img{
	width: 11px;
	margin: 0 0.25em 0 0;
	display: flex;
	align-items: center;
}
.footer01 nav ul li a:hover{
	opacity: 0.8;
	transition: all 0.3s;
}

.footer02{
	width: 100%;
	background: #293F9F;
	padding: 15px 0;
}
.footer02_inner{
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.footer02_inner nav ul{
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.footer02_inner nav ul li{
	padding: 0 1em 0 0;
}
.footer02_inner nav ul li:last-child{
	padding: 0;
}
.footer02_inner nav ul li a{
	color: #fff;
	width: 100%;
    font-size: 0.75em;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
	line-height: 1em;
	display: flex;
	align-items: center;
	transition: all 0.3s;
}
.footer02_inner nav ul li a:hover{
	opacity: 0.8;
	transition: all 0.3s;
}
.copy{
	color: #fff;
    font-size: 0.6875em;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
	line-height: 1em;
}
/*-----------------------------1100px-----*/
@media screen and (max-width: 1100px) {
.footer_inner{
	width: 700px;
}
}
/*-----------------------------840px-----*/
@media screen and (max-width: 840px) {
.footer_inner{
	width: 100%;
}
.footer01{
	padding: 0;
}
.footer01 nav{
	width: 100%;
	flex-wrap: wrap;
	border-top: 1px solid #bbb;
}
.footer01 nav ul{
	width: 100%;
	padding: 0;
}
.footer01 nav ul li{
	border-bottom: 1px solid #bbb;
}
.footer01 nav ul li a{
	font-size: 0.875em;
	justify-content: space-between;
	text-decoration: none;
	line-height: 46px;
	padding: 0 0.5em;
}
.footer01 nav ul li a:hover{
	opacity: 1;
	background: #bbb;
}
.footer01 nav ul li a img{
	width: 7px;
}
.footer_nav_s{
	text-indent: 1em;
}

.footer02{
	padding: 0;
}
.footer02_inner{
	flex-wrap: wrap;
	justify-content: center;
}
.footer02_inner nav{
	width: 100%;
	background: #fff;
}
.footer02_inner nav ul{
	justify-content: flex-start;
	padding: 16px 0 16px 0.5em;
}
.footer02_inner nav ul li a{
	font-size: 0.8125em;
	color: #333;
	text-decoration: none;
}
.footer02_inner nav ul li a img{
	width: 11px;
	margin: 0 0.25em 0 0;
	display: flex;
}
.footer_site_map{
	display: none;
}
.copy{
	line-height: 1.4em;
	padding: 16px 0.5em;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
}
/*------------/footer*/


/*------------
go-top
-------------*/
.go_top{
	opacity: 0;
	-webkit-transform: translateY(50px);
	transform:translateY(50px);
	transition: all 0.5s ease 0.3s;
}
.change-nav.go_top{
	opacity: 1;
	width: 60px;
	height: 60px;
	position: fixed;
	bottom: 50px;
	right: 10px;
	z-index: 2;
	-webkit-transform: translateY(0);
	transform:translateY(0);
	transition: all 0.5s ease 0.3s;
}

.go_top a{
	width: 100%;
	height: 100%;
	background: rgba(0, 121, 196, 0.5);
	border-radius: 50%;
	display: block;
	transition: 0.3s all;
}
.go_top a:hover{
	background: rgba(0, 121, 196, 0.9);
	transition: 0.3s all;
}
.go_top a svg g .cls-1 {
	fill: none;
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2px;
}

/*-----------------------------660px-----*/
@media screen and (max-width: 660px) {
.change-nav.go_top{
	width: 45px;
	height: 45px;
	bottom: 50px;
	right: 10px;
}
.go_top a svg{
	width: 45px;
	height: 45px;
}
.go_top a:hover{
	background: rgba(0, 121, 196, 0.5);
	transition: 0.3s all;
}
}

/*------------
遅れて出てくるイベント
js-event
-------------*/
.scrEventY {
	opacity:0;
	-webkit-transform: translateY(50px);
	transform:translateY(50px);
}
.startY {
	opacity:1;
	-webkit-transform: translateY(0);
	transform:translateY(0);
	transition: all 0.5s ease 0.3s;
}
/*--------end*/
