@charset "utf-8";
/* CSS Document */
/*----背景----*/

.COMMONBG_color {
	background-image:url("../img/bg_dot_whiteblue.png"),linear-gradient(0deg,#48c5ef,#5099ff);
	background-position:center 20px,top;
	background-repeat: repeat-x, no-repeat;/* 背景の繰り返し */
	background-size:40px, 100%;
	width: 100%;
}
.COMMONBG_blue {
	background-image:linear-gradient(0deg,#48c5ef,#5099ff);
	background-position:top;
	background-repeat:no-repeat;/* 背景の繰り返し */
	background-size:100%;
	width: 100%;
}
.SKEWBG_color {
	position: relative;
}
.SKEWBG_color::before {
    content: '';
	background:linear-gradient(0deg,#48c5ef,#5099ff);
	background-position:center 30px,top;
	background-repeat: repeat-x, no-repeat;/* 背景の繰り返し */
	background-size:40px, 100%;
    position: absolute;
    top: -280px;
    bottom: -100px;
    left: 0;
    right: 0;
    transform: skewY(-3deg) translateY(90px);
	z-index: -1;
}
/*----Default----*/
body {
	font-size: 1.4rem;
	letter-spacing: 0.1rem;
	color:#18304b;
	overflow-x: hidden;
	font-family: "Kosugi Maru", sans-serif;
	font-weight: 400;
	font-style: normal;
}
header {
	width:100%;
}
article {
}
footer {
}
a {
	text-decoration: none;
}
a:hover{
	display: block;
}
ul {
	padding-left: 0;
}
.heading1 {}
.heading2 {
	font-size:2rem;
	color: rgba(24, 46, 76, 1);
	padding: 0.5em 1em;
    margin: 1em 0 1.5em 0;
    background: #f4f4f4;
    border-left: solid 8px  rgba(24, 46, 76, 1);
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.33);
}
.heading2_innnertext{
	margin-top: 10px;
    margin-right: auto;
    margin-left: auto;
    width: 95%;
}
.heading2_innnerbg{
	background-color: rgba(224, 231, 239, 0.5);
	padding:20px ;
	text-align: center;
	border-radius: 10px;
	margin:0 auto 20px auto;
	color: rgba(24, 46, 76, 1.0);
}
.heading2_innnerbg img{
	width:100%;
	max-width:850px;
}
.heading3 {
	background-image:url("../img/icon_slash_white.png");
	background-repeat: no-repeat;
	background-size: 42px;
	background-position: left 20px top 50%;
	font-size: 2rem;
	margin-left:0px;
	padding-top:4px;
	padding-bottom:4px;
    text-indent: 3em;
}
.heading4 {
	background-image:url("../img/icon_news.png");
	background-repeat: no-repeat;/* 背景の繰り返し */
	background-position: left 0px top 50%;
	background-size: 28px 23px;
    width: 100%;
    height: auto;
    margin: 0 auto 5px auto;
    text-indent: 1.8em;
    font-size: 1.6rem;
    padding-bottom: 1px;
	border-bottom: solid 2px rgba(24, 46, 76, 1.0);
}
/* RESPONSIVE CSS[ヘッダー]
-------------------------------------------------- */

@media (max-width: 850px) {
header {
	width:100%;
	min-width :0px;
}
	
}
/*----共通パーツ*/
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 62.5%;/*rem算出をしやすくするために*/
}
.flexbox {
	display: flex;              /* フレックスボックスにする */
}
.flexbox_margin {
	display: flex;              /* フレックスボックスにする */
	gap:10px;
    align-items: flex-start;
}
.flex-parent-3column{					/* 折り返しフレックス */
	width:100%;
	display:flex;
	flex-wrap:wrap; /*折り返し*/
	justify-content:center;/*両端揃え*/
	gap: 16px;
	margin: auto;
}
.flex-parent-3column::after{
  content:"";
  display: block;
  width:48%;
}
.flex-parent-2column{					/* 折り返しフレックス */
	width:100%;
	display:flex;
	flex-wrap:wrap; /*折り返し*/
	justify-content:center;/*両端揃え*/
	gap: 20px;
	margin: auto;
	max-width: 1000px;
}
.flex-parent-2column::after{
  content:"";
  display: block;
  width:32%;
}
.flex-parent-1column{
	width: 100%;
	margin: auto auto 10px auto ;
}
.flex-child-3column {
  width:32%;
  display:flex;
  flex-direction:column;
}
.flex-child-2column {
  width:49%;
  display:flex;
  flex-direction:column;
}
.flex-child-1column {
  width:32%;
  margin:auto;
}
@media screen and (max-width: 1080px) {
	.flex-parent-3column,
	.flex-parent-2column,
	.flex-parent-1column{
	gap: 12px;
}
}
@media screen and (max-width: 768px) {
 	.flex-child-3column,
	.flex-child-2column,
	.flex-child-1column{
    width:48%;
  }
	.flex-parent-1column{
	margin: auto;
}
}
@media screen and (max-width: 580px) {
.flex-parent-3column,
.flex-parent-2column,
.flex-parent-1column{
	gap: 0px;
}
.flex-child-3column,
.flex-child-2column,
.flex-child-1column{
    width:80%;
  }
.flex-child-3column:nth-of-type(n+2),
.flex-child-2column:nth-of-type(n+2) {
    margin-top:10px;
  }
}
@media screen and (max-width: 480px) {
.flex-child-3column,
.flex-child-2column,
.flex-child-1column{
    width:100%;
  }
}
.flexbox_between{				/* フレックス二つ用 */
	display: flex;
    justify-content: space-between;
	align-items: flex-end;
}
.flexbox_between_center{				/* フレックス二つ用 */
	display: flex;
    justify-content: space-between;
	align-items: center;
}
.flexbox-start {						/* 高さを揃えないフレックスボックス */
	display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.justify-center {
	display: flex;
	justify-content: center;
	align-items: center;
}
.pic_shadow {
	border: 3px solid #ffffff;
	box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1);
	background-color: #ffffff;
}
/*--テキストカラー----------------------------------------*/
.color-blue{
	color: #18304b;
}
.color-white{
	color: #ffffff;
}
/*--ライン----------------------------------------*/
.line_through01{
	text-decoration:line-through;
}
.line_through02{
	text-decoration: underline line-through;
}
.line_underline{
	text-decoration: underline;
}
.line_commentbox{
	border: 1px solid #ffffff;
    padding: 20px 30px 20px 30px;
	text-align: center;
}
/*--ボタン--*/
.BTN_box{
	text-align: center;
	padding-top:50px;
}
.BTN_box_right{
	text-align: right;
	padding-top:50px;
}
.BTN_box_left{
	text-align: left;
	padding-top:50px;
}
.button,
.button_w{
	font-weight:lighter;
	line-height: 1.5;
	position: relative;
	display: inline-block;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-align: left;
	vertical-align: middle;
	border-radius:3px;
	text-decoration: none;
	letter-spacing: 0.1em;
	box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.2);
	color:#ffffff;
	font-size: 1.6rem;
}
/*---- ↓↓↓ 520px以下の時の記述 ↓↓↓ ----------------------------*/
@media (max-width: 520px) {
.button,
.button_w{
	line-height: 1;
		font-size: 1.4rem;
	}
}
/*---- ↑↑↑↑↑ -------------------- ↑↑↑↑↑ --------*/
.button{
	background-color: rgba(24, 46, 76, 1);
}
.button_w{
	background-color: rgba(255, 255, 255, 0);
	border: 1px solid rgba(255, 255, 255, 1);
}
.button a,
.button_w a{
	color:#ffffff;
}
.button:hover,
.button_w:hover{
	background-color: rgba(59, 111, 212, 1);
	color:#ffffff;
}
.button_w:hover{
	border: 1px solid rgba(59, 111, 212, 1);
}
.BTN_default_S{
	padding: 1rem 10rem 1rem 10rem;
}
.BTN_XS,
.BTN_XS_full{
	font-size: 1.4rem;
	padding: 0.5rem 2rem 0.5rem 2rem;
	text-align: center;
}
.BTN_XS_full{
	width:100%;
	border-radius:100vh;
}
.BTN_S{
	background-image: url("../img/icon_arrow_M.png");
	background-size:11px;
	background-position: right 26px top 50%;
	background-repeat: no-repeat;
	padding: 1rem 8rem 1rem 3rem;
}
.BTN_M{
	background-image: url("../img/icon_arrow_M.png");
	background-size: 14px;
	background-position: right 20px top 50%;
	background-repeat: no-repeat;
	padding: 1.5rem 10rem 1.5rem 5rem;
}
.BTN_blank_S{
	background-image: url("../img/icon_blank_white.png");
	background-size:21px;
	background-position: right 20px top 50%;
	background-repeat: no-repeat;
	padding: 1rem 8rem 1rem 3rem;
}
.BTN_blank_M{
	background-image: url("../img/icon_blank_white.png");
	background-size:21px;
	background-position: right 20px top 50%;
	background-repeat: no-repeat;
	padding: 1.5rem 10rem 1.5rem 5rem;
}
.BTN_BLOG{
	background-image: url(../img/icon_blog_indent.png);
    background-position: left 5rem top 50%;
    background-size: 22px;
    background-repeat: no-repeat;
    padding: 1.5rem 5rem 1.5rem 8.3rem;
}
.BTN-return{
	width:50px;
	height:50px;
	background-image: url("../img/icon_arrow_M_re.png");
	background-position:center;
	background-repeat: no-repeat;
}
.text_link a{
	display:inline-block;
	text-decoration: underline;
	padding:0 5px;
}

/*------- ページ内リンク --------*/

.list_link{
	margin:auto;
	display:flex;
	gap:3px;
	flex-wrap:wrap; /*折り返し*/
	justify-content:center;/*両端揃え*/
	width:90%;
	max-width:1100px;
	align-items: center;
}
.list_link a{
    diplay:block;
}
.list_link p{
	text-align: center;
	font-weight:lighter;
	line-height: 1.5;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	letter-spacing: 0.1em;
	color:#ffffff;
	font-size: 1.6rem;
	padding:4px 10px;
	background-color: rgba(24, 46, 76, 0.6);
	margin:3px;
	border-radius: 3px;
}
.list_link p:hover{
	background-color: rgba(160, 186, 238, 0.6);
	color:#ffffff;
}
/*-------------- ↑↑↑↑ ---------------*/
/*リスト*/
.indent-list{
	list-style:decimal;
	}
/*-------------- ↑↑↑↑ ---------------*/
/*テーブルコンテンツ*/
.item_name{
	width:30%;
}

.table_info li{
	color: rgba(24, 46, 76, 1.0);
	border-bottom:1px solid rgba(0, 0, 0, 1); /*線の設定*/
	padding:20px 30px 20px 100px;
}

/*アンダーラインコンテンツ*/

.title-Underline-left{
	border-bottom:2px solid rgba(225, 255, 255, 0.6); /*線の設定*/
	padding-bottom:8px;
	padding-left: 16px;
	margin-bottom:10px;
	font-size:1.1em;
}

.title-Underline-left-b{
	border-bottom:2px solid rgba(24, 46, 76, 1.0); /*線の設定*/
	color:rgba(24, 46, 76, 1.0);
	padding-bottom:8px;
	padding-left: 16px;
	margin-bottom:0px;
	font-size:1.1em;
}

.title-Underline-center{
	border-bottom:2px solid rgba(225, 255, 255, 0.6); /*線の設定*/
	padding-bottom:8px;
	margin-bottom:10px;
	text-align: center;
	font-size:1.1em;
}
.title_underline_left{
	border-bottom:2px solid #18304b; /*線の設定*/
	padding:0px 0px 5px 5px;  /*余白の設定*/
	font-size: 16px;
	margin-bottom:8px;
}
.text-Underline-inner{
	padding-left:10px;
	padding-right:10px;
}
/*----背景色*/
.contentsbg_white{
	width:100%;
	background-color: rgba(255,255,255,0.16);
	padding-top:10px;
	padding-bottom:10px;
}
.contentsbg_none{
	width:100%;
	padding-top:10px;
	padding-bottom:10px;
}
.contentsbg_blue01{
	width:100%;
	background-color: rgba(24, 46, 76, 1.0);
	padding-top:10px;
	padding-bottom:10px;
}
.contentsbg_blue02{
	width:100%;
	background-color: rgba(0, 108, 208, 1.0);;
	padding-top:10px;
	padding-bottom:10px;
}
.contentsbg_blue03{
	width:100%;
	background-color: rgba(0, 108, 208, 0.5);;
	padding-top:10px;
	padding-bottom:10px;
}
.contentsbg_white_round,
.contentsbg_black_round{
	width: 100%;
    padding-top: 10px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.2);
}
.contentsbg_white_round {
    background-color: rgba(255, 255, 255, 0.16);
}


/*----マージン*/
.margin-20{
	margin:20px;
}
.margin-v30{
	margin-top:30px;
	margin-bottom:30px;	
}
.margin-center{
	margin-right:auto;
	margin-left:auto;
	width:fit-content;
}
.margin-bottom3{
	margin-bottom:3px;
}
.margin-bottom10{
	margin-bottom:10px;
}
.margin-bottom20{
	margin-bottom:20px;
}
.margin-bottom30{
	margin-bottom:30px;
}
.margin-bottom50{
	margin-bottom:50px;
}
.margin-bottom100{
	margin-bottom:100px;
}
.margin-top10{
	margin-top:10px;
}
.margin-top30{
	margin-top:30px;
}
.margin-top60{
	margin-top:60px;
}
.margin-right30{
	margin-right:30px;
}
.margin-top-auto{
	margin-top:auto;
}
.padding-top10{
	padding-top:10px;
}
.padding-top20{
	padding-top:20px;
}
.padding-top30{
	padding-top:30px;
}
.padding-h20{
	padding-right:20px;
	padding-left:20px;
}
.padding-bottom100{
	padding-bottom:100px;
}
.padding-bottom250{
	padding-bottom:250px;
}

/*----テキスト*/
.text_white{
	color:#ffffff;
}
.text_blue{
	color:rgba(24, 46, 76, 1);
}
.text-indent{
	text-indent: 1em;
}
.text-Underline{
	border-bottom: 2px solid rgba(225, 255, 255, 0.6);
    margin-bottom: 10px;
}
.text-right{
	text-align:right;
}
.text-center{
	text-align:center;
}
.text-sizeM{
	font-size:1.6rem;
}
.text-sizeL{
	font-size:2rem;
}
.line-height1{
	line-height: 1em;
}
.line-height2{
	line-height: 2em;
}
.NEW_icon{
	font-size: 1.4rem;
	letter-spacing: 0.1rem;
	font-family: "Kosugi Maru", sans-serif;
	font-weight: 400;
	font-style: normal;
	background-color: #fa5050;
	color:#ffffff;
	padding:5px 8px;
	margin:0 5px 0 0;
	border-radius: 3px;
	text-decoration: none;
}
/*----改行*/
.word {
  display: inline; 
  white-space: nowrap; 
}
@media (max-width: 340px) {
  .word {
    white-space: normal;
  }
}
/*----コンテナ*/
.CONTAINAR-100{
	width: 100%;
    margin: auto;
    padding: 40px 0 100px 0;
}
.CONTAINAR-95{
	width: 95%;
    max-width: 1100px;
    margin: auto;
    padding: 40px 0 100px 0;
}
.CONTAINAR-95-2{
	width: 95%;
    max-width: 1100px;
    margin: auto;
    padding: 10px 0 30px 0;
}
.contents1100{
	width:98%;
	max-width:1100px;
	margin-left:auto;
	margin-right:auto;
	padding:16px 0;
}
.contentsbox-white01{
	background-color: rgba(255,255,255,0.4);
	box-shadow: 
    0px 0px 2px 1px rgba(0, 0, 0, .2), 
	0px 0px 0px 10px rgba(255, 255, 255, 0.4), 
	0px 0px 3px 10px rgba(0, 0, 0, .0);
	color:#182e4c;
	padding:5px 5px;
	margin:30px;
}
/*---- ↓↓↓ 768px以下の時の記述 ↓↓↓ ----------------------------*/
@media (max-width: 768px) {
	.contentsbox-white01{
	margin:30px 20px;
	}
}
/*---- ↓↓↓ 520px以下の時の記述 ↓↓↓ ----------------------------*/
@media (max-width: 520px) {
	.contentsbox-white01>.text-indent{
	text-indent: 0em;
}
}
.contentsbox_inner{
	border:2px solid rgba(24, 46, 76, 0.6); /*線の設定*/
	padding:10px 20px;
	margin:10px 0 0 0;
}
.contentsbox_inner li{
	list-style:disc;
	margin-left:1em;
}
.contentsbox_inner li:first-child{
	list-style: none;
	margin-left:0;
}

/*---- ↓↓↓ 768px以下の時の記述 ↓↓↓ ----------------------------*/
@media (max-width: 768px) {
.entry_contena{
	padding:10px;
}
.entry_innner img{
	width:100%;
	max-width:850px;
	}
}
/*---- ↑↑↑ ----------------------------*/
/*----トピックス用BOX*/
.topics-list{
	margin-left:auto;
	margin-right:auto;
	max-width: 1316px;
}

/*----コラム用BOX*/
.column-box{
	border-radius:10px;
	padding:0 20px 20px 20px;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
	width:100%;
	margin:auto;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
}
.column-box img{
	width:80%;
	display: block;
	margin: 0 auto;
}
.column-box a{
	margin-top:auto;
}
/*----共通ヘッダー要素*/
.COMMON_header{
}
.commonheader_BG{
	background-image:url("../img/bg_dot_commonwhite.png"),url("../img/bg_common_header_pic01.png");
	background-repeat: repeat-x, no-repeat;
	background-size: 35px, cover;
	background-position: top center, top center;
	top:0px;
	width:100%;
	height:300px;
}
.commonheader_BG02{
	background-image:url("../img/bg_dot_commonwhite.png"),url("../img/bg_common_header_pic02.png");
	background-repeat: repeat-x, no-repeat;
	background-size: 35px, cover;
	background-position: top center, top center;
	top:0px;
	width:100%;
	height:300px;
}
.commonheader_L img{
	width: 145px;
	height:76px;
	margin:8px 57px 0px 10px;
}
.commonheader_R{
	width: fit-content;
	right:30px;
	padding-top:20px;
	margin: 0 20px 0 auto;
}
.commonheader_TEXT{
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-weight: 900;
	font-style: normal;
	margin:0 14px;
	color:#ffffff;
	opacity: 0.6;
	cursor: pointer;
	position: relative;
}
.commonheader_TEXT:hover{
	color:#ffffff;
	opacity: 0.6;
}
.commonheader_TEXT::after {
    content: "";
    display: block;
    height: 2px;
    width: 108%;
    background-color: #ffffff;
	opacity: 0.6;
    position: absolute;
    left: -5%;
    bottom: 5;
    transform: scale(0,1);
    transition: 0.3s;
}
.commonheader_TEXT:hover::after {
    transform: scale(1,1);
}
.commonheader_ENTRY{
	background-image: url("../img/icon_arrow_Sdown_w.png");
	background-position: right 0px top 6px;
	background-repeat: no-repeat;
	padding-right: 20px;
}
/*------ドロップダウンメニュー------*/
.dropdown-BTN{
    width: 100%;
    height: 100%;
    background-color: none;
    position: relative;
}
.dropdown-BTN:hover {
    background-color: none;
    height: 60px;
}
.dropdown-BTN a {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #1b4059;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: all .3s;
}
.dropdown-BTN:hover a {
    color: #fff;
}
.dropdown-lists {
    display: none;/*デフォルトでは非表示の状態にしておく*/
    width: 200px;
    position: absolute;
    top: 34px;
    right: -6px;
    z-index: 1;
}
.dropdown-BTN:hover .dropdown-lists {
    display: block;/*.dropdown-BTNにホバーしたら表示*/
}
.dropdown-list {
    background-color: rgba(255, 255, 255, 0.2);
	margin:1px;
    transition: all .3s;
    position: relative;
	display: block;
    width: 200px;
    height: 56px;
    cursor: pointer;
}
.dropdown-list:hover {
    background-color: #003558;
}
.dropdown-list a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    position: relative;
    width: 100%;
    height: 100%;
}
/*------ドロップダウンメニュー--ここまで----*/
.commonheader_title{
	text-align: center;
	color: #ffffff;
	opacity: 0.6;
	margin: 17px auto;
	width: fit-content;
}
.gradheader_title{
	text-align: center;
	color: #ffffff;
	opacity: 0.6;
	margin: 11px auto;
	width: fit-content;
}
.TITLE_main{
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-weight: 900;
	font-style: normal;
	border-bottom:2px solid rgba(255, 255, 255, 0.6); /*線の設定*/
	font-size: 5.3rem;
	line-height: 6.5rem;
	padding-left: 16px;
	padding-right: 16px;
}
.TITLE_sub{
	margin:12px auto;
}
.header_blogindent{
	background-image: url("../img/icon_blog_indent.png");
	background-repeat: no-repeat;
	background-position: left 0px top 50%;
	background-size: 20px;
	text-indent: 1.8em;
}
/*---- ↓↓↓ 450px以下の時の記述 ↓↓↓ ----------------------------*/
@media (max-width: 450px) {
.TITLE_main{
	font-size: 4rem;
	line-height: 4.5rem;
}
}
/*----ナビゲーション要素----*/
.topicpath{
	margin:auto;
	width:100%;
    background-color: rgba(24, 46, 76, 1.0);     /* 背景色指定 */
}
.topicpath_innner{
	max-width:1100px;
	margin:auto;
	padding:10px 10px 10px 60px;
	color:#ffffff;
}
/*----フッター要素----*/
#FOOTER {
	width: 100%;
    background-color: #000000;     /* 背景色指定 */
	overflow: hidden;
}
.LINK_box{
	width:100%;
	margin:0px auto 0 auto;
}
.LINK_1or8 {
	background-image:url("../img/icon_blank_white.png"),url("../img/banner_18link.png");
	background-repeat: no-repeat,no-repeat;/* 背景の繰り返し */
	background-position: right 50px top 50%, center;
	background-size:27px, cover;
	height:136px;
	width:50%;
	cursor: pointer;
}
.LINK_1or8 :hover{
	background-color: rgba(255, 255, 255, 0.2);
}

.LINK_HACHIPRO {
	background-image: url("../img/banner_hachiprolink.png");
	background-repeat: no-repeat;/* 背景の繰り返し */
	background-position: center;
	background-size: cover;
	height:136px;
	width:50%;
}
.footer_banner{
	font-size: 1.6rem;
	margin:0px auto 0 auto;
	height:136px;
	line-height: 136px;
	color:#ffffff;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-align: left;
	letter-spacing: 0.1em;
	padding-left:30px;
}
.footer_blogindent{
	background-image: url("../img/icon_blog_indent.png");
	background-repeat: no-repeat;
	background-position: left 0px top 50%;
	background-size: 20px;
	text-indent: 1.8em;
	display: block;
	cursor: pointer;
}
.SITE_link{
	color:#ffffff;
	margin:80px auto 100px auto;
	width: fit-content;
}
.SITE_link_margin {
	display: flex;              /* フレックスボックスにする */
	gap:60px;
}
.SITE_link div{
	margin:auto;
	width: fit-content;
	padding: 40px;
}
.footer_logo img{
	width: 60px;
	height:60px;
}
.copyright{
	color:#ffffff;
	margin-top:90px;
	padding-bottom:20px;
	text-align: center;
	font-weight:lighter;
	font-size: 1rem;
}

/*--スクロールアニメーション--*/
.slide-bottom {
   opacity: 0;
   transform: translateY(20px);
   transition: all 0.5s 0s ease-out;
 }
.slide-fadein {
   opacity: 0;
   transform: translateY(0px);
   transition: all 0.5s 0s ease-out;
 }
/*--アンカーボタン--*/
.link_top{
    display: none; /* 初期は非表示 */
	position:fixed;
	width:80px;
	height:80px;
	bottom:30px;
	right:30px;
	border-radius: 50px;
	background-color: rgba(24, 46, 76, 0.6);
	background-image: url("../img/icon_arrow_Sup_w.png");
	background-position:center;
	background-repeat: no-repeat;
	display: block;
	z-index: 3;
}
/*---- ↓↓↓ 768px以下の時の記述 ↓↓↓ ----------------------------*/
@media (max-width: 768px) {
.link_top{
	display: none;
	}
}
/*----BANNER----*/
.BANNER_850padding{
    padding-top: 750px;
}
.BANNER_850{
	margin: auto;
    width: fit-content;
}
.BANNER_850 div:first-child{
    margin-bottom: 30px;
}
.BANNER_850 img{
	max-width:850px;
	width:100%;
	box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);
}
.banner_hover{
	position:relative;
	display:block;
	height:auto;
}
.banner_hover img{
	display:block;
	width:100%;
}
.banner_hover:before{
  content:"";
  display:block;
  width:100%;
  height:100%;
  position:absolute;
  z-index:2;
  background: rgba(255, 255, 255, 1);/*好みの色に変えてください。*/
  opacity:0;
  transition:0.3s;
}
.banner_hover:hover:before{
  opacity:0.2;
}
.banner03{
	display: block;
    width: 50%;
	margin:0px auto;
	text-align: center;
}
.banner03 img{
	display: block;
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
}
.banner05,
.banner05-center{
	display: block;
    width: 400px;
}
.banner05 img,
.banner05-center img{
	display: block;
    width: 100%;
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
}
.banner05-center{
	margin: auto;
}
/*---- ↓↓↓ 768px以下の時の記述 ↓↓↓ ----------------------------*/
@media (max-width: 768px) {
.BANNER_850padding{
    padding-top: 460px;
	}
.BANNER_850{
	margin-bottom:0px;
	}
}
/*---- ↓↓↓ 520px以下の時の記述 ↓↓↓ ----------------------------*/
@media (max-width: 520px) {
.BANNER_850 div:first-child{
    margin-bottom: 10px;
}
.BANNER_850 img{
	width:100%;
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
	margin-bottom:20px;
}
.BANNER_850padding{
    padding-top: 430px;
	}
.banner03{
    width: 70%;
}
.banner05,
.banner05-center{
width: 98%;
}
}
/*---- フェードアニメーション ----------------------------*/
.fadeIn01{
animation-name:fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeUp01{
animation-name:fadeUpAnime;
animation-duration:1.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0.2;
	transform: translateY(50px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

.fadeUp02{
animation-name:fadeUpAnime;
animation-duration:1.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0.1;
	transform: translateY(10px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}