@charset "utf-8";
/* CSS Document */

body {
	margin: 0;
}
a {
	text-decoration: none;
}
p {
    line-height: 1.9;
}
#content {
    padding-bottom: 30px;
    margin-top: -180px;
}
figcaption {
    font-size: small;
}

/*	サイト共通のSP版、PC版の制御	*/
/*SP版*/
@media screen and (max-width: 750px) {
	.display_pc {
		display: none;
	}
	
	/*ロゴの位置とハンバーガーメニュー＋マージンを除いた幅でロゴのフルードイメージ対応*/
	#header_logo_sp,
	#header_logo {
		max-width: 312px;
		width: auto;
		position: relative;
		top: 20px;
		left: 20px;
	}
	
	/*ページトップボタン*/
	#pagetop img {
		width: 54px;
		height: 54px;
		position: fixed;
		bottom: 5%;
		right: 5%;
		z-index: 10;
        filter: grayscale(100%);
	}
	
	/*コンテンツ部分に左右マージン追加*/
	#content {
		margin-left: 10px;
		margin-right: 10px;
	}
    
    #guide #content, #profile #content, #recruit #content, #access #content, #contact #content, #privacy #content, #news_headline #content {
        margin-top: 0;
    }
    
	/*タイトル*/
	.title_box {
		max-width: 452px;
		height: 250px;
		background-attachment: fixed;
		background-position: center top;
		background-repeat: no-repeat;
		position: relative;
		margin: 50px auto 30px auto;
		border-radius: 20px;
	}
	.title_box h1 {
		position: absolute;
		top: 50%;
		left: 10%;
		transform: translateY(-50%);
		margin: auto;
        font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
	}
}

/*PC版*/
@media screen and (min-width: 750px) {
	.display_sp {
		display: none;
	}
    
	#header_logo_sp,
	#header_logo {
        /*
		position: relative;
		top: 30px;
		left: 5.8%;
        */
        margin-left: 20px;
        margin-top: 40px;
        
	}

	/*ロゴの位置とサイズとお問い合わせボタン+マージンを除いた幅の間にナビゲーションを配置*/
	header nav {
        /*
		width: calc(100% - 5.8% - 312px - 140px - 20px);
		height: 90px;
		position: absolute;
		top: 40px;
		left: calc(5.8% + 312px + 10px);
        */
	}

	nav ul {
		width: 90%;
		height: 80px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		margin: 0 auto;
		padding-left: 0;
        justify-content: center;
        font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
        letter-spacing: 1px;
	}
	nav ul li {
		list-style: none;
        margin-bottom: 20px;
        min-width: 130px;
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
	}

	/*ナビゲーションの文字装飾*/
	nav ul li a {
		color: #1e1e1e;
		font-weight: bold;
        font-size: 1rem;
        display: inline-block;
        padding-bottom: 10px;
	}

	/*リンクホバー時の装飾*/
    /*
	nav ul li a:hover {
		border-bottom: solid 1px #000000;
	}
    */
    nav ul li a {
        position: relative;
        display: inline-block;
        text-decoration: none;
		border-bottom: solid 2px transparent;
    }
    nav ul li a::after {
        position: absolute;
        bottom: -2px;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: #333;
        transform: scale(0, 1);
        transform-origin: center top;
        transition: transform .3s;
    }
    nav ul li a:hover::after {
        transform: scale(1, 1);
    }
	
	/*ページ表示時のリンク項目への装飾*/
	nav ul li a.active {
		border-bottom: solid 2px #000000;
        transition: transform 1s;
	}
    
    nav ul li a.active:hover {
        border-bottom-color: transparent;
    }

    nav ul li a.active:hover::after {
         transition: transform .4s;
    }
    
    #guide #content,
    #profile #content,
    #recruit #content,
    #access #content,
    #contact #content,
    #privacy #content,
    #news_headline #content {
        margin-left: 20px;
        margin-right: 20px;
        margin-top: -20px;
    }
    
	
	/*お問い合わせボタン*/
	#access_btn {
		position: absolute;
		top: 0;
		right: 0;
		z-index: 10;
        display: none !important;
	}
	#access_btn img:hover {
		/* filter: hue-rotate(315deg); */
	}
    #access_btn img {
        transition: all .5s ease;        
    }
    #access_btn:hover img {
        opacity: 0;
        transition: all 1s ease;
    }
    #access_btn {
        background-image: url("../image/contact_hover.png");
        width: 140px;
        height: 140px;
    }

	/*ページトップボタン*/
	#pagetop img {
		width: 65px;
		height: 65px;
		position: fixed;
		bottom: 5%;
		right: 5%;
		z-index: 10;
		filter: grayscale(100%);
        transition: all .3s ease;
	}
	
	#pagetop img:hover {
		width: 85px;
		height: 85px;
		right: calc(5% - 10px);
		filter: grayscale(0%);
        transition: all .5s ease;
    }
	
	/*タイトル*/
	.title_box {
		max-width: 1200px;
		height: 250px;
		background-attachment: fixed;
		background-position: center top;
		background-repeat: no-repeat;
		position: relative;
		margin: 70px auto 50px auto;
		border-radius: 20px;
	}
	.title_box h1 {
		position: absolute;
		top: 50%;
		left: 10%;
		transform: translateY(-50%);
		margin: auto;
        letter-spacing: .25em;
        font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
	}
}


/*PC版*/
@media screen and (min-width: 1200px) {    
    header nav {
        /*
		width: calc(100% - 5.8% - 312px - 140px - 20px);
		left: calc(3% + 312px + 10px);
        */
        width: calc(100% - (100% - 1200px));
        left: 0;
        right: 0;
        margin: auto;
        display: flex;
	}
}

@media screen and (min-width: 1041px) {
	/*ロゴの位置とサイズとお問い合わせボタン+マージンを除いた幅の間にナビゲーションを配置*/
	#header_logo_sp,
    #header_logo {
        margin-left: 0;
    }

    nav ul {
        height: 120px;
        width: 100%;
        justify-content: flex-end;
        margin-right: 300px;
        align-items: flex-end;
    }
}

h2 {
	background-image: url("../image/marker.png");
	background-repeat: no-repeat;
	background-position: left top;
	text-indent: 33px;
	line-height: 1.75;
	color: #50B148;
	border-bottom: 3px dotted #b7b7b7;
    font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
    letter-spacing: 2px;
}

h3 {
    color: #ffa051;
    letter-spacing: 1px;
}


@media screen and (max-width: 1240px) {
	#header_logo_sp,
    #header_logo {
        margin-left: 20px;
    }
}

@media screen and (max-width: 1200px) {
	#header_logo_sp,
    #header_logo {
        margin-left: 0;
    }
    
    header nav a {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
    }
    nav ul {
        height: 120px;
        width: 100%;
        justify-content: center;
        margin-right: 300px;
        align-items: flex-end;
    }
    
    #news {
        margin-left: 20px;
        margin-right: 20px;
    }
}

/*	トップページ	*/
/*SP版*/
@media screen and (max-width: 750px) {
	
	/*トップイメージ*/
	#top_container_sp {
		margin-top: 240px;
		margin-bottom: 50px;
	}
	#top_container_sp img {
		height: auto;
        width: 100%;
	}
	
	/*母子生活支援施設とは*/
	#about_box_sp {
		max-width: 410px;
		margin-left: auto;
		margin-right: auto;
	}
	#about_box_sp h1 {
		color: #50b148;
	}
    
    #about_box_sp img {
        width: auto;
        margin-left: 0;
        margin-right: 0;
    }
	
	#news {
		max-width: 450px;
		margin-left: auto;
		margin-right: auto;
		padding-bottom: 50px;
        margin-top: 0;
	}
	
	/*お知らせ一覧の並び方を変更*/
	#news_box {
		justify-content: space-around;
	}

    #news_box a {
        margin: 10px;
    }
    
	/*お知らせの写真サイズ変更*/
	#news_box figure {
		/* width: 192px; */
	}
    
	/*ホバー時、画像を拡大する*/
	.img_wrap {
		overflow: hidden;
		max-width: 192px;
		max-height: 160px;
	}
	.img_wrap img {
		display: block;
		transition-duration: 0.3s;	/*変化に掛かる時間*/
	}
	.img_wrap img:hover {
		transform: scale(1.1);		/*画像の拡大率*/
		transition-duration: 0.3s;	/*変化に掛かる時間*/
	}

	#banner_box {
		margin-top: 40px;
		margin-bottom: 40px;
	}
	
	/* サイトバナー */
	#bnr_area {
		display: flex;
		justify-content: center;
		width: calc(100% + 20px);
	    margin-left: -10px;
		margin-bottom: 40px;
	}
	#bnr_area .img_wrap {
		max-height: 100%;
		max-width: 100%;
		border-radius: 0;
	}
	.img_wrap img {
		max-width: 100%;
	}
}

/*PC版*/
@media screen and (min-width: 751px) {

	/*トップイメージ*/
	#top_container_pc {
		position: relative;
		/* margin-top: -97px; */
        margin-top: -50px;
		z-index: -5;
        overflow: hidden;
        display: flex;
        justify-content: center;
	}
    
    #main_container_pc {
        background-image: url("../image/top_image_pc.png");
        width: 2436px;
        height: 1309px;
        position: relative;
        background-position: center;
        background-repeat: no-repeat;
    }
    
	#top_container_pc img {
		width: 100%;
		height: auto;
	}

	#about_container_pc {
	
		/*親要素を4分割した右下に配置*/
		max-width: 600px;
		height: 50%;
		position: absolute;
		top: 50%;
		left: 50%;

		/*子要素を中心に配置*/
		display: flex;
		align-items: center;
        margin-top: 10px;
	}
	
	/*母子生活支援施設とは*/
	/*母子生活支援施設とはの説明の右端とお知らせ一覧の右端を揃える処理*/
	#about_box_pc {
		width: 95%;
		margin-right: -10px;
	}
	#about_box_pc h1 {
		color: #50b148;
	}
    
    #about_box_pc img {
        width: auto;
    }

	#news {
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
		padding-bottom: 70px;
        margin-top: -50px;
	}
	
    #news_box p {
        line-height: 1.5;
    }
    
	/*お知らせ一覧の並び方を変更*/
	#news_box {
		justify-content: center;
	}
	
	/*お知らせの写真サイズ変更*/
	#news_box figure {
		width: 240px;
	}
	
	/*ホバー時、画像を拡大する*/
	.img_wrap {
		overflow: hidden;
		max-width: 240px;
		max-height: 200px;
	}
	.img_wrap img {
		display: block;
		transition-duration: 0.3s;	/*変化に掛かる時間*/
	}
	#news_box a:hover .img_wrap img {
		transform: scale(1.1);		/*画像の拡大率*/
		transition-duration: 0.3s;	/*変化に掛かる時間*/
	}

	#banner_box {
		margin-top: 80px;
		margin-bottom: 80px;
	}
	
	/* サイトバナー */
	#bnr_area {
		display: flex;
		justify-content: center;
		margin-bottom: 80px;
	}
	#bnr_area .img_wrap {
		max-height: 100%;
		max-width: 100%;
		border-radius: 0;
	}
	.img_wrap img {
		max-width: 100%;
	}
	#bnr_area .img_wrap img:hover {
		transform: scale(1.1);
		transition-duration: 0.3s;
	}	
}

/*お知らせ*/
#news {
	background-image: url("../image/news_bg.png");
	border-radius: 24px;
}
#news h1, #news_list {
	text-align: center;
}
#news h1 {
	padding-top: 50px;
}
#news_box {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-wrap: wrap;
}
#news_box a {
	display: block;
	color: #000000;
	margin: 16px 16px;
    border-radius: 8px;
    overflow: hidden;
}
#news_box figure {
	background-color: #ffffff;
	margin: 0;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
#news_box figure img {
	width: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

@media screen and (max-width: 750px) {
    #news h1 {
        padding-top: 30px;
        margin: 10px;
    }
    #news_box {
        padding: 0 10px;
        box-sizing: border-box;
    }
    #news_box a {
        margin: 10px 10px;
        width: calc(50% - 20px);
    }
}

/*お知らせ記事一覧の表示制御（最終行左揃え）*/
/*空要素*/
.cell.is-empty {
	width: 240px;
	height: 0;
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

/*日付の色変更*/
#news_box figcaption p:first-of-type {
	color: #787878;
}

#news_box figcaption {
	padding: 10px;
}

#news_headline #news_box figure {
    border: 1px solid #e6e6e6;
    box-sizing: border-box;
}

#news_box h2 {
    width: 100%;
}

#news_paging {
    text-align: center;
    margin-top: 30px;
}

#news_content {
    min-height: 200px;
}

#news_navi {
    display: flex;
    justify-content: center;
    align-items: center;
}

#news_navi > p {
    margin-left: 10px;
    margin-right: 10px;
}

#news_navi a {
    color: #000;
}

.page-numbers {
    color: #000;
    height: 20px;
    min-width: 20px;
    display: inline-block;
    padding: 10px;
    border-radius: 5px;
}

.page-numbers.current {
    color: #fff;
    background-color: #e5cf00;
}

#news_list {
	margin-top: -35px;
}

/*お知らせボタンの装飾*/
#news_list_btn {
	display: inline-block;
	max-width: 280px;
	width: 100%;
	height: 70px;
	
	/*高さとラインハイトを同じにすることで縦方向の中央揃えとなる*/
	line-height: 70px;
	
	color: #ffffff;
	background-color: #e6cf00;
	border-radius: 35px;
    font-size: .9rem;
    width: 280px;
    text-align: center;
    transition: all .5s ease;
}
#news_list_btn:hover {
	/* filter: hue-rotate(180deg); */
    background-color: #ffa051;
    transition: all 1s ease;
}

#download {
    margin-top: 50px;
    text-align: center;
}

#download a {
    color: #1e1e1e;
    display: block;
    display: inline-block;
    width: 200px;
    padding-left: 1em;
    padding-right: 1em;
    border: 1px solid #ccc;
    padding: 10px 20px;
    font-weight: 700;
    transition: all .3s ease;
}

#download a::after {
    content: "\f309";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
    padding-left: 1em;
    color: #ccc;
}

#download a:hover {
    opacity: .5;
    transition: all .5s ease;
}

#banner_box {
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
#banner_box div {
	margin: 10px;
}
#banner_box img {
	max-width: 480px;
	width: 100%;
	height: auto;
    transition: all .3s ease;
}
#banner_box img:hover {
	filter: sepia(50%);
    transition: all .5s ease;    
}


/*	お知らせページ	*/
/*SP版*/
@media screen and (max-width: 750px) {
    #news_navi a {
        white-space: nowrap;
    }
    
    #news_list_btn {
        width: 180px;
    }
}
    
/*	利用案内ページ	*/
/*SP版*/
@media screen and (max-width: 750px) {

	/*利用案内タイトル*/
	#guide_title {
		background-image: url("../image/guide_bg_sp.png");
	}
	
	/*費用、支援・サービス、施設の様子*/
	#guide_flex_box {
		max-width: 410px;
		margin-left: auto;
		margin-right: auto;
	}
	
	/*費用*/
	#cost_container {
		margin-bottom: 30px;
	}
	
	/*支援・サービス*/
	#support_box {
	
		/*背景画像が収まるサイズに設定*/
		height: 270px;
		background-image: url("../image/support_img.png");
		background-repeat: no-repeat;
		background-position: right bottom;
	}
	
	/*施設の様子*/
	#facility_container {
		max-width: 410px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 40px;
	}
	
	#facility_flex_box figcaption {
		text-align: center;
	}
}

/*PC版*/
@media screen and (min-width: 751px) {

	/*利用案内タイトル*/
	#guide_title {
		background-image: url("../image/guide_bg_pc.png");
	}
	
	/*費用、支援・サービス*/
	#guide_flex_box {
		max-width: 1040px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 70px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	
	/*費用*/
	#cost_container {
		width: 40%;
	}
	
	/*支援・サービス*/
	#support_container {
		width: 55%;
		height: 100%;
		
		/*背景画像が収まるサイズに設定*/
		height: 310px;
		background-image: url("../image/support_img.png");
		background-repeat: no-repeat;
		background-position: right, bottom;
	}

	#support_container h2 {
		width: 75%;
	}

	/*施設の様子*/
	#facility_container {
		max-width: 1040px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 80px;
	}
}

/*費用のアイコン*/
#icon_field {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 30px
}
#icon_field img {
	margin: 5px;
}

#facility_flex_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#facility_flex_box figure {
	margin-left: 5px;
	margin-right: 5px;
}
#facility_flex_box figure img {
	width: 100%;
}

/*	施設の方針・概要ページ	*/
/*SP版*/
@media screen and (max-width: 750px) {

	/*施設の方針・概要タイトル*/
	#profile_title {
		background-image: url("../image/profile_bg_sp.png");
	}

	#profile_box {
		position: relative;
		max-width: 410px;
		margin-left: auto;
		margin-right: auto;
	}
	#profile_about_title {
		margin-bottom: 30px;
	}
	#profile_illust_box {
		text-align: right;
		margin-top: -50px;
	}
	#profile_illust_box img {
		max-width: 480px;
		width: 100%;
		height: auto;
		margin-right: -10px
	}
	
	/*概要、沿革*/
	#profile_flex_box {
		max-width: 410px;
		margin-left: auto;
		margin-right: auto;
	}
	
	/*概要*/
	#overview_container {
		margin-bottom: 50px
	}
	
	/*沿革*/
	#history_box {
		margin-bottom: 40px;
	}
	
	/*沿革の並びの制御*/
	#history_box dl dd {
		padding-bottom: 0.5em;
	
		/*dt、ddを左揃えにする*/
		margin-left: 0;
	}
}

/*PC版*/
@media screen and (min-width: 751px) {

	/*施設の方針・概要タイトル*/
	#profile_title {
		background-image: url("../image/profile_bg_pc.png");
	}

	#profile_container {
	
		/*画像の収まる高さを設定*/
		min-height: 545px;
		position: relative;
		margin-bottom: 70px;
        /* overflow: hidden; */
	}
	#profile_box {
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		max-width: 1040px;
		width: 100%;
	}
	#profile_about_title {
		width: 100%;
		height: auto;
		margin-bottom: 70px;
	}
	#profile_about {
		width: 60%;
		height: auto;
	}
	#profile_purpose {
		width: 40%;
		height: auto;
	}
	
	#profile_illust {
		position: absolute;
		right: 0;
		bottom: 0;
		max-width: 720px;
		max-height: 509px;
		width: 70%;
		z-index: -10;
        margin-right: -20px;
	}
	
	/*概要、沿革*/	
	#profile_flex_box {
		max-width: 1040px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 40px;
		display: flex;
		justify-content: space-between;
	}
	#overview_container {
		max-width: 47.5%;
		height: auto;
	}
	#overview_box {
		margin-bottom: 80px;
	}
	#overview_img {
		max-width: 477px;
		width: 100%;
	}
	#history_box {
		width: 47.5%;
		height: auto;
		
	}
	
	/*沿革の並びの制御*/
	/*dt、ddを横並びにする*/
	#history_box dl dt {
		float: left;
	}
	/*ddの位置調整とアンダーラインの制御*/
	#history_box dl dd {
		margin-left: 0;
		padding-top: 0.5em;
		padding-left: 8.5em;
	}
}

/*概要*/
#overview_box table th div {
	color: #002e72;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	
	/*文字の両端揃え*/
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
    font-weight: 100;
    font-size: 1.1rem;
}
#overview_box table th, #overview_box table td {
	line-height: 2;
	border-bottom: 1px dotted #b7b7b7;
}

/*職員構成は2段になっているので下段の下線のみにする*/
#overview_box table td#staff {
	border-bottom: none;
}

#overview_box table td {
	padding-left: 2em;
}

/*沿革*/
#history_box dl dt {
	color: #022f73;
	line-height: 2;
	padding-top: 0.5em;
    font-size: 1.1rem
}
#history_box dl dd {
	line-height: 2;
	padding-bottom: 0.5em;
	border-bottom: 1px dotted #b7b7b7;
}

/*	お知らせ一覧ページ	*/
/*SP版*/
@media screen and (max-width: 750px) {

	/*お知らせ一覧タイトル*/
	#news_headline_title {
		background-image: url("../image/news_bg_sp.png");
	}

	#news_headline_box {
		max-width: 410px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 40px;
	}
}

/*PC版*/
@media screen and (min-width: 751px) {

	/*お知らせ一覧タイトル*/
	#news_headline_title {
		background-image: url("../image/news_bg_pc.png");
	}

	#news_headline_box {
		max-width: 1088px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 40px;
	}
}


/*	アクセスページ	*/
#access_box {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}
#access iframe {
	width: 100%;
    border-radius: 20px;
}
#access_box p {
	text-align: center;
}

#access_box dl {
    margin-bottom: 20px;
}
#access_box dl dt {
	font-weight: bold;
    margin-bottom: 10px;
}
#access_box dl dd {
    line-height: 1.75;
}


/*SP版*/
@media screen and (max-width: 750px) {

	/*アクセスタイトル*/
	#access_title {
		background-image: url("../image/access_bg_sp.png");
	}

	#access_box {
		width: 100%;
		margin-bottom: 40px;
	}
}

/*PC版*/
@media screen and (min-width: 751px) {

	/*アクセスタイトル*/
	#access_title {
		background-image: url("../image/access_bg_pc.png");
	}

	#access_box {
		margin-bottom: 40px;
	}
}

/*	プライバシーポリシーページ	*/
/*SP版*/
@media screen and (max-width: 750px) {

	/*プライバシーポリシータイトル*/
	#privacy_title {
		background-image: url("../image/privacy_bg_sp.png");
	}

	#privacy_box {
		max-width: 410px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 40px;
	}
}

/*PC版*/
@media screen and (min-width: 751px) {

	/*プライバシーポリシータイトル*/
	#privacy_title {
		background-image: url("../image/privacy_bg_pc.png");
	}

	#privacy_box {
		max-width: 1040px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 40px;
	}
}

/*	採用情報ページ	*/
/*SP版*/
@media screen and (max-width: 750px) {

	/*採用情報タイトル*/
	#recruit_title {
		background-image: url("../image/recruit_bg_sp.png");
	}

	#recruit_box {
		max-width: 410px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 40px;
	}
}

/*PC版*/
@media screen and (min-width: 751px) {

	/*採用情報タイトル*/
	#recruit_title {
		background-image: url("../image/recruit_bg_pc.png");
	}

	#recruit_box {
		max-width: 1040px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 40px;
	}
}

#recruit_box figure {
    margin-left: 0;
    margin-right: 0;
}

#recruit table {
	border-collapse: collapse;
}
#recruit caption {
	font-size: 140%;
	font-weight: bold;
	border-bottom: 2px solid #333333;
}
#recruit table tr {
	border-bottom: 1px dotted #b7b7b7;
}
#recruit table th {
	white-space: nowrap;
	line-height: 2;
	text-align: left;
	vertical-align: top;
	padding-top: 1em;
    color: #002e72;
    font-weight: 100;
    font-size: 1.1rem;
}
#recruit table td {
	line-height: 2;
	padding: 1em 0 1em 1em;
}


/*	お問い合わせページ	*/
/*SP版*/
@media screen and (max-width: 750px) {

	/*お問い合わせタイトル*/
	#contact_title {
		background-image: url("../image/contact_bg_sp.png");
	}

	#contact_box {
		max-width: 410px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 40px;
	}
}

/*PC版*/
@media screen and (min-width: 751px) {

    #recruit table td {
    	padding: 1em 0 1em 2em;
    }
    
	/*お問い合わせタイトル*/
	#contact_title {
		background-image: url("../image/contact_bg_pc.png");
	}

	#contact_box {
		max-width: 1040px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 40px;
		min-height: 200px;
	}
}
#contact_box dl {
    margin-bottom: 20px;
}
#contact_box dl dt {
	font-weight: bold;
    margin-bottom: 10px;
}
#contact_box dl dd {
    line-height: 1.75;
}

/*	フッター	*/
footer {
	background-color: #e5cf00;
	color: #ffffff;
}
#footer_logo_box {
	text-align: center;
}
#footer_logo_box a {
	color: #ffffff;
}

/*ロゴのレスポンシブ対応*/
#footer_logo_box img {
	max-width: 248px;
	width: 100%;
}

address {
	font-style: normal;
    line-height: 1.75;
}

/*サイトマップ*/
#footer_container span {
	line-height: 2;
	padding-left: 1em;
	padding-right: 1em;
}
#footer_container span a {
	color: #ffffff;
}

/*リンクホバー時の装飾*/
#footer_container span a:hover {
	color: #666666;
    transition: all .5s ease;
}

/*SP版*/
@media screen and (max-width: 750px) {
	#footer_container {
		padding-top: 20px;

		/*子要素の中央揃え*/
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		align-items: center;
	}
	address {
		margin-top: 1em;
		margin-bottom: 1em;
	}
}

/*PC版*/
@media screen and (min-width: 751px) {
	#footer_container {
		max-width: 1040px;
		padding-top: 80px;
		padding-bottom: 30px;
		margin-left: auto;
		margin-right: auto;
		display: flex;
		justify-content: space-between;
		align-items: center;
        padding-right: 20px;
        padding-left: 20px
	}
	#sitemap_pc {
		width: 45%;
		display: flex;
		flex-wrap: wrap;
	}
}

#copyright {
	padding-bottom: 30px;
	margin-bottom: 0;
	text-align: center;
}

/* ハンバーガーメニューここから */
.navi-btn-fix {
	/* overflow-y: hidden; */
	display: inline-block;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 10;
}
.navi-btn {
	/*ハンバーガーメニューの背景のサイズ*/
	width: 74px;
	height: 104px;
	
	/*右下の角を丸める*/
	border-bottom-left-radius: 20px;
	
	background-color: #e6cf00;
	position: relative;
	right: 0;
	top: 0;
	z-index: 10;
	cursor: pointer;
}

/*1本目の線の設定*/
.navi-btn span {
	position: absolute;
	display: block;
	
	/*ハンバーガーメニューの線の幅と高さ*/
	width: 30px;
	height: 5px;
	
	/*一番上の線の位置*/
	top: 32px;
	
	/*全体の線の位置*/
	left: 21px;
	
	background: #ffffff;
	border-radius: 5px;
	transition: all .3s;
}

/*2本目の線の設定*/
.navi-btn span:nth-of-type(2) {
	top: 43px;
	opacity: 1;
	transition: all .3s;
}

/*3本目の線の設定*/
.navi-btn span:last-of-type {
	top: 54px;
}

/*menu文字の設定*/
.navi-btn p {

	/*menu文字のマージントップ:0*/
	margin-top: 0;
	
	color: #FFFFFF;
	text-align: center;
	position: absolute;
	font-size: 15px;
	
	/*menu文字の位置*/
	top: 62px;
	left: 16px;
}

/*×になる動き*/
.navi-btn-on span:first-of-type {
	transform: rotate(-45deg) translateY(9px) translateX(-9px);
}
.navi-btn-on span:nth-of-type(2) {
	transform: translateX(0);
	opacity: 0;
}
.navi-btn-on span:last-of-type {
	transform: rotate(45deg) translateY(-7px) translateX(-7px);
}

/*ハンバーガーメニュー押したときのリスト*/
.navi-menu {
	top: 0;
	right: 0;
	display: none;
	background-color: rgba(255,255,255,0.9);
	padding-top: 7.5em;
	padding-left: 1.70em;
	padding-right: 1.75em;
	padding-bottom: 0.75em;
	margin: 0;
	border-bottom-left-radius: 20px;
	position: fixed;
	z-index: 5;
	overflow-y: auto;
}
.navi-menu li {
	list-style-type: none;
}
.navi-menu li a {
	display: block;
	color: #000000;
	line-height: 2.25;
}
.navi-menu li:last-child a {
	border-bottom: none;
}
.fixed {

	/* 開閉時スクロール禁止 */
	position: fixed;
	width: 100%;
	height: 100%;
}
/* ハンバーガーメニューここまで */

/* 効果ここから */

.effect-fade {
    opacity: 0;
    transform: translate(0, 50px);
    transition: all 1.5s;
}

.effect-fade.effect-scroll {
    opacity: 1;
    transform: translate(0, 0);
}

.effect-fade2 {
    opacity: 0;
    transition: all 2s;
}

.effect-fade2.effect-scroll {
    opacity: 1;
}

/* 効果ここまで */
