@charset "UTF-8";

@import url(//use.fontawesome.com/releases/v5.7.2/css/all.css);




/*-------------------------------------------------
共通
-------------------------------------------------*/

body {
	font-family: 'Noto Sans Japanese', sans-serif;
	font-size: 14px;
	color: #333;
	overflow:hidden;
}

#content.active,
#footer.active{
    display: none;
}

.inner {
  width: auto;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}


.tx-left {
	text-align: left !important;
}

.tx-right {
	text-align: right !important;
}


.tx-center {
	text-align: center !important;
}

.nowrap {
	white-space: nowrap;
}

section{
	position:relative;
	padding: 80px 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
    section{
      padding: 40px 0;
    }
}

article{
	position:relative;
  margin-bottom: 40px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
    article{
      margin-bottom: 20px;
    }
}

.inner{overflow: hidden;}

main{
    width: 100%;
    padding: 0 5%;
    /*min-height: 700px;*/
}

/*main p,
main li{
    line-height: 1.6em;
}*/

p{
  margin-bottom: 1.5em;
}

p,li{
	font-size:14px;
	line-height: 1.7;
}
td,th{
	font-size:14px;
	line-height: 1.7;
}

@media screen and (max-width: 768px) {
	p,td,th,li{
		font-size:13px;
	}	
}

@media screen and (max-width: 480px) {
	p,td,th,li{
		font-size:12px;
	}	
}




a{
    color: #333;
}
a:hover{
    color: #333;
    text-decoration: none;
}

img{
    max-width: 100%;
    width: auto;
    height: auto;
}

.flex{
    display: flex;
}

.show{
    display: contents !important;
}



/*-------------------------------------------------
ヘッダー　フッター
-------------------------------------------------*/
#header_area {
}

header,
footer{
    background: #EABF9F;
}

header{
    border-bottom: 10px double #fff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    /*height: 97px;*/
}
@media screen and (max-width: 768px) {
    header{
        /*height: 80px;*/
    }
}

header .inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header #logo{
    font-size: 1.4em;
    color: #fff;
    padding: 0.5em;
    width: calc(100% - 60px);
}
@media screen and (max-width: 768px) {
    header #logo{
        font-size: 1em;
    }
}

header #logo a{
    color: #fff;
}

header #logo a:hover{
    text-decoration: none;
    color: #fff;
}



footer{
    color: #fff;
    text-align: center;
    padding: 40px 0;
    border-top: 10px double #fff;
    font-size: 12px;
}
@media screen and (max-width: 768px) {
    footer{
        padding: 20px 0;
        font-size: 10px;
    }
}

/* ページのトップへ戻るボタン */
.go_top{
    position: fixed;
    right: 1em;
    bottom: 1em;
    text-align: center;
    display: none;
    z-index: 999;
}

.go_top a{
    padding: 10px;
    border: 4px solid #fff;
    border-radius: 100%;
    background: #f59620;
    width: 5em;
    height: 5em;
    display: block;
}

.go_top i{margin: 0;}

.go_top a .fa{
    color: #fff;
}

@media screen and (max-width: 768px) {
    .go_top{
        right: 0.5em;
        bottom: 0.5em;
    }
    .go_top a{
        padding: 2px;
        width: 3em;
        height: 3em;
    }
    .go_top i{
        font-size: 2em;
    }
}



/*-------------------------------------------------
パンくず
-------------------------------------------------*/
.breadcrumb{
    padding: 0 2%;
    margin: 1.5em 0;
    font-size: 11px;
}

.breadcrumb li{
    position: relative;
    display: inline-block;
    padding-left: 1.5em;
    margin-right: 0.5em;
}

.breadcrumb li::before{
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    content: "\f101";
    font-weight: bold;
    font-size: 1.5em;
    color: #999;
    left: 0;
    top: 0.1em;
}

.breadcrumb li:first-of-type{
    padding-left: 0;
}

.breadcrumb li:first-of-type::before{
    display: none;
}

.breadcrumb li:last-of-type{
    margin-right: 0;
}

/* パンくずいらなくなった */
.breadcrumb{display: none;}



/*-------------------------------------------------
ホバーでアニメーションするボタン
-------------------------------------------------*/
.button {
  position: relative;
  display: inline-block;
  border: 1px solid #333;
  color: #333;
  text-decoration: none;
  transition: .3s;
}
.button:hover {
  /*border-color: #f59620;*/
  background-color: #b68973;
  opacity: 1;
}
.button.current:hover {
	background-color: #f9ac4e;
  opacity: 1;
}

.button {
  overflow: hidden;
}


.button::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: '';
  width: 200%;
  height: 200%;
  transform-origin: right top;
  transform: skewX(-30deg) scale(0, 1);
  transition: transform .3s;
}
.button:hover::before {
  transform-origin: left top;
  transform: skewX(-30deg) scale(1, 1);
}



/*-------------------------------------------------
ナビ
-------------------------------------------------*/
#menu{
    position: relative;
    padding: 54px 10px 10px 10px;
    color: #fff;
    text-align: center;
    font-size: 13px;
/*	letter-spacing: -1px;*/
    width: 80px;
    height: 80px;
}
/*@media screen and (max-width: 768px) {
    #menu{
        padding: 45px 10px 10px 10px;
    }
}*/
#menu:hover{
    cursor: pointer;
}
#menu::before{
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    content: "\f0c9";
    font-weight: bold;
    left: calc(50% - 22px);
    top: calc(50% - 33px);
    font-size: 50px;
    color: #fff;
}
#menu::after{
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    content: "\f00d";
    font-weight: bold;
    left: calc(50% - 15px);
    top: calc(50% - 30px);
    font-size: 40px;
    color: #fff;
    display: none;
}
#menu.active::before{display: none;}
#menu.active::after{display: block;}

.navarea{
    padding-top: 97px;
    margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
    .navarea{
        padding-top: 80px;
    }
}

nav{
    width: 100%;
    
}

nav li{
	font-size: 12px;
}

nav a.button{
    position: relative;
    display: block;
    padding: 0.8em 0.8em 0.8em 2.5em;
    border-top: none;
    border-left: none;
    border-right: none;
}
nav a.button::after{
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    content: "\f138";
    font-weight: bold;
    top: calc(50% - 6px);
    left: 1em;
    background: none;
    transform: none;
}
nav li:first-of-type a.button{
    border-top: 1px solid #333;
}

nav a.button .fa{
    margin-right: 0.3em;
}

nav a.current{
    background: #f59620;
    color: #fff;
}

nav.nav_fixed{
    position: fixed;
    margin-top: 20px;
    top: 0;
}

nav .nest a.button{
    padding-left: 3.5em;
}

nav .nest a.button::after{
    content: "\f054";
    font-weight: 900;
    left: 2.5em;
}



/*-------------------------------------------------
kv h1
-------------------------------------------------*/
section.kv{
    display: flex;
    justify-content: center;
/*    background: #E9F2F2;*/
    background: #fbf8f1;
    padding-top: 12em !important;
}
@media screen and (max-width: 768px) {
    section.kv{
      padding-top: 9em !important;
    }
}

h1{
    display: inline-block;
    background: #f59620;
    color: #fff;
    font-size: 2.5em;
    padding: 1.5em 2.5em;
    text-align: center;
    margin: 0 5%;
    min-width: 50%;
}
@media screen and (max-width: 768px) {
    h1{
        font-size: 1.3em;
        padding: 1.0em;
        text-align: left;
        width: 100%;
    }
}


h1 .main{

}

h1 .sub{
/*    font-size: 0.4em;
    margin-bottom: 2em;*/
    display: none;
}



/*-------------------------------------------------
h2～
-------------------------------------------------*/
h2,h3,h4,h5,h6{
    font-weight: bold;
    color: #f59620;
	color: #884c0f;
	
}

h2{
    font-size: 22px;
    padding: 0.5em;
    border-left: 0.5em solid #884c0f;
    border-bottom: 3px solid #884c0f;
    margin-bottom: 1em;
		background: #fbf8f1;
	line-height: 1.3;
	
}

h3{
	margin:0 0 20px 0;
	padding:0;
	border:0;
	font-weight: bold;
	font-size: 20px;
	line-height: 1.3;
}

h4{
	margin:0 0 15px 0;
	padding:0;
	border:0;
	font-weight: bold;
	font-size: 15px;
	/*color: #333;*/
	
}

h5{
    font-size: 15px;
    padding: 0.1em 0.5em;
    border-bottom: 2px solid #f59620;
    margin-bottom: 1em;
    display: inline-block;
	background-color: #fbf8f1;
}

h6{
    font-size: 15px;
    padding: 0.1em 0.5em;
    border-bottom: 2px dashed #f59620;
    margin-bottom: 1em;
    display: inline-block;
	background-color: #fbf8f1;
}

@media screen and (max-width: 768px) {
    h2{font-size: 18px;}
    h3{font-size: 16px; margin:0 0 15px 0;}
    h4{font-size: 14px; margin:0 0 10px 0;}
    h5{font-size: 14px;}
    h6{font-size: 14px;}
}

@media screen and (max-width: 480px) {
    h2{font-size: 16px;}
    h3{font-size: 16px; margin:0 0 15px 0;}
    h4{font-size: 13px; margin:0 0 10px 0;}
    h5{font-size: 13px;}
    h6{font-size: 13px;}	
}



/*-------------------------------------------------
テーブル
-------------------------------------------------*/
table{
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 30px;
}

th,td{
	border: 1px solid #ddd;
	padding: 10px;
}

th{
	background: #fbf8f1;
	white-space: nowrap;
	text-align: center;
	vertical-align: top;
}

td ul.circle li:first-of-type,
td ul.circle_num li:first-of-type{
    margin-top: 0;
}

/* レスポンシブ用table --------*/

table.tbl01 th{
	width: 15%;
}
table.tbl01 td{
	width:85%;
}

table.tbl01{
	border:0;
	border-spacing:0;
	border-collapse:collapse;
	}

@media only screen and (max-width:640px){
/*	table.tbl01 td,
	table.tbl01 th{
		display: block;
		width:100%;
		border-bottom: 0;
		text-align: left;
	}
	table.tbl01{
		border-bottom:1px solid #ddd;
	}*/
	/* コメントアウトを外すとthで一行、tdで一行のスタイルになります。 */
}

@media screen and (max-width: 1185px) {
    .sp_table{
        overflow-x: scroll;
    }
    .sp_table table{
        width: 768px;
    }
		th,td{
			padding: 7px;
			font-size:13px;
		}	

		/* スマホ用テーブル用横スクロールバー */

		.sp_table::-webkit-scrollbar {
		height: 10px;
		}
		.sp_table::-webkit-scrollbar-track {
		margin: 0;
		background: #eee;
		border-radius: 5px;
		}
		.sp_table::-webkit-scrollbar-thumb {
		border-radius: 5px;
		background: #999;
		}
}
@media screen and (max-width: 480px) {
		th,td{
			padding: 5px;
			font-size:12px;
		}	
}


/*-------------------------------------------------
リスト
-------------------------------------------------*/
/*　まる囲み数字　*/
ol.circle_num li{
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 1em;
}

ol.circle_num li::before{
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    font-weight: bold;
    left: 0;
    top: 0;
}

ol.circle_num > li:nth-of-type(1)::before{content: "\2460";}
ol.circle_num > li:nth-of-type(2)::before{content: "\2461";}
ol.circle_num > li:nth-of-type(3)::before{content: "\2462";}
ol.circle_num > li:nth-of-type(4)::before{content: "\2463";}
ol.circle_num > li:nth-of-type(5)::before{content: "\2464";}
ol.circle_num > li:nth-of-type(6)::before{content: "\2465";}
ol.circle_num > li:nth-of-type(7)::before{content: "\2466";}
ol.circle_num > li:nth-of-type(8)::before{content: "\2467";}
ol.circle_num > li:nth-of-type(9)::before{content: "\2468";}

ul.circle,
ul.katakana,
ul.disc,
ol.num,
ol.circle_num{
	margin-bottom: 1.5em;
}

ul.circle li:last-child,
ul.katakana li:last-child,
ul.disc li:last-child,
ol.num li:last-child,
ol.circle_num li:last-child{
	margin-bottom: 0 !important;
}

ul.circle li,
ul.katakana li,
ul.disc li,
ol.num li,
ol.circle_num li{
	margin-bottom: 0.5em;
}

/*　まる　*/
ul.circle li{
    position: relative;
    padding-left: 1.2em;
}
ul.circle li::before{
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    content: "\25EF";
    font-weight: bold;
    left: 0;
    top: 0.1em;
}

/*　カタカナ　*/
ul.katakana{
    list-style-type: katakana;
    list-style-position: outside;
    padding-left: 2em;
}
ul.katakana li{
    position: relative;
    padding-left: 0;
}

/*ul.katakana li:first-child{
    margin-top: 0;
}*/

/*　disc　*/
ul.disc{
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 1.2em;
}
ul.disc li{
    position: relative;
    padding-left: 0;
}


/*　数字　*/
ol.num{
    list-style-type: decimal-leading-zero;
    list-style-position: outside;
    padding-left: 2em;
}
ol.num li{
    position: relative;
    padding-left: 0;
}

/*　アルファベット小文字　*/
ol.lower-latin{
    list-style-type: lower-latin;
    list-style-position: outside;
    padding-left: 1.2em;
}
ol.lower-latin li{
    position: relative;
    padding-left: 0;
}


/*-------------------------------------------------
ダウンロードアイコン
-------------------------------------------------*/
.fa-file-excel{color: #1e6c41;}
.fa-file-word{color: #2a5699;}
.fa-file-pdf{color: #ce1923;}
.fa-file-powerpoint{color: #c83f22;}

i{
    font-size: 20px;
    margin-right: 5px;
}



/*-------------------------------------------------
動画リスト
-------------------------------------------------*/
.video ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style-position: inside;
    padding-left: 0;
}

.video li{
    width: 48%;
    margin-top: 1em;
}

.video li video{
    width: 100%;
    border: 1px solid #ddd;
}

/*video:hover{
    cursor: pointer;
}*/

/* 画像部分クリックで再生ポーズ */
/*.video-wrap {
    position: relative;
}
.video-btn {
    content: "";
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:70px;
    cursor: pointer;
}*/

@media screen and (max-width: 768px) {
    .video ul{
        display: block;
    }

    .video li{
        width: 100%;
    }
}


/* サイド追加 200206 ------------------*/

main{
	display: flex;
justify-content: space-between;
	flex-wrap: nowrap;
	padding:0 2.5%;
}
.side{
	width:25%;
}

.side nav li{
	font-size:13px;
	line-height: 1.4
}
.side nav a.button{
    padding: 1.3em 0.7em 1.3em 2.7em;
}




.maincontents{
	width: 70%;
}

.side .navarea.inner{
	display: block !important;
}
.side .navarea{
	padding-top:0;
}

@media screen and (min-width: 769px) {
	#menu{ display: none;}
}
@media screen and (max-width: 768px) {
	.side{ display:none; }
	.maincontents{ width:100%; }
}

table.vertical-align-middle td{
    vertical-align: middle;
}
.movie-mail{
    padding: 1em 1em 0em 1em ;
    margin: 2em 0;
    background: #FFF;
    border: solid 1px #797979;/*線*/
    border-radius: 1px;/*角の丸み*/
}

.video-2021 video{
    border: 1px solid #ddd;
}



/*----------20230126修正追記--------*/
.main_link .flex_item {
    width: 32%;
    z-index: 10;
    overflow: hidden;
}

section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}


.main_link .flex {
    justify-content: center;
    justify-content: space-between;
    display: flex;
}