@charset "UTF-8";
/*
 Theme Name: SANGO Child
 Theme URI: https://saruwakakun.design
 Author: SARUWAKA
 Author URI: https://saruwakakun.com
 Template: sango-theme
 Version: 3.0
*/

/*-------------リセットcss-------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
/* 	vertical-align: baseline; */
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	font-family: "Zen Kaku Gothic New", sans-serif;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.entry-content h2 {
	border: none;
	padding: 0;
	background: transparent;
	margin: 0;
}
.entry-content p {
	margin: 0;
}
.entry-content ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 0;
}
p.img_inner {
	vertical-align: bottom !important;
}
img {
	vertical-align: middle;
}
/*-------------END リセットcss-------------*/

/*-------------共通-------------*/
html {
	scroll-behavior: smooth;
	margin-top: 0 !important;
}
body {
	font-family: "Zen Kaku Gothic New", sans-serif;
	color: #2B2B2B;
	background-color: #fff;
}
body a {
	color: #2B2B2B;
}
#container {
	background-color: #030200;
	position: relative;
}
#container:before {
	content: "";
    display: block;
    width: 1300px;
    height: 1300px;
    background-image: url(/wp-content/themes/sango-theme-child/img/top/bg_img.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: fixed;
    top: -500px;
    left: -430px;
    z-index: 1;
	opacity: 0.8;
}
#container:after {
	content: "";
    display: block;
    width: 1300px;
    height: 1300px;
    background-image: url(/wp-content/themes/sango-theme-child/img/top/bg_img.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: fixed;
    bottom: -200px;
    right: -300px;
    z-index: 0;
	opacity: 0.8;
}
a:hover {
	text-decoration: none;
}
.common_container {
    position: relative;
    z-index: 2;
}
.common_inner {
    width: 70%;
    margin: auto;
    padding: 50px 0;
}
.common_h2 {
    font-weight: 500;
    font-size: 5em;
    color: #fff;
    font-family: "STIX Two Text", serif;
    letter-spacing: 5px;
    border-bottom: solid 1px #fff;
    display: inline-block;
    padding-bottom: 10px;
}
.common_dis {
    color: #fff;
    font-size: 1.7em;
    line-height: 1.6em;
    padding-top: 20px;
	position: relative;
    z-index: 1;
}
/*ローディング*/
.loader {
	position: fixed;
	width: 100%;
	height: 100vh;
	background-color: #141414;
	z-index: 555;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.loader-wrapper{
	width:200px;
	height:60px;
	position: absolute;
	left:50%;
	top:37%;
	transform: translate(-50%, -50%);
}
.circle {
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 50%;
    background-color: #fff;
    left: -85%;
    transform-origin: 50%;
    animation: circle .65s alternate infinite ease;
}

@keyframes circle{
	0% {
        top: 230px;
        height: 0px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
	}
	40% {
        height: 40px;
        border-radius: 50%;
        transform: scaleX(1);
	}
	100% {
        top: 0%;
	}
}
.circle:nth-child(2) {
    left: -25%;
    animation-delay: .2s;
}
.circle:nth-child(3) {
    left: auto;
    right: 35%;
    animation-delay: .3s;
}
.circle:nth-child(4) {
    left: auto;
    right: -25%;
    animation-delay: .4s;
}
.circle:nth-child(5) {
    left: auto;
    right: -85%;
    animation-delay: .5s;
}
.shadow {
    width: 40px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 1);
    position: absolute;
    top: 230px;
    transform-origin: 50%;
    z-index: -1;
    left: -85%;
    filter: blur(1px);
    animation: shadow .6s alternate infinite ease;
}
.shadow:nth-child(7) {
    left: -25%;
    animation-delay: .2s;
}
.shadow:nth-child(8) {
    left: auto;
    right: 35%;
    animation-delay: .3s;
}
.shadow:nth-child(9) {
    left: auto;
    right: -25%;
    animation-delay: .4s;
}
.shadow:nth-child(10) {
    left: auto;
    right: -85%;
    animation-delay: .5s;
}

@keyframes shadow{
	0% {
        transform: scaleX(1.5);
    }
	40% {
        transform: scaleX(1);
        opacity: .7;
	}
	100% {
        transform: scaleX(.2);
        opacity: .4;
	}
}
.loader-wrapper span{
	position: absolute;
	top:75px;
	font-family: 'Lato';
	font-size: 20px;
	letter-spacing: 12px;
	color: #fff;
	left:15%;
}
@media screen and (max-width: 414px) {
	.circle:nth-child(4),
	.circle:nth-child(5),
	.shadow:nth-child(9),
	.shadow:nth-child(10) {
		display: none;
	}
	.loader {
	  position: fixed;
	  width: 100%;
	  height: 100vh;
	  background-color: #141414;
	  z-index: 555;
	  top: 0;
	  left: 0;
	  display: flex;
	  justify-content: center;
	  align-items: center;
	}
	.loader-wrapper{
		width:200px;
		height:60px;
		position: absolute;
		left:50%;
		top:45%;
		transform: translate(-50%, -50%);
	}
	.circle{
		width:20px;
		height:20px;
		position: absolute;
		border-radius: 50%;
		background-color: #fff;
		left:15%;
		transform-origin: 50%;
		animation: circle .5s alternate infinite ease;
	}

	@keyframes circle{
		0%{
			top:60px;
			height:5px;
			border-radius: 50px 50px 25px 25px;
			transform: scaleX(1.7);
		}
		40%{
			height:20px;
			border-radius: 50%;
			transform: scaleX(1);
		}
		100%{
			top:0%;
		}
	}
	.circle:nth-child(2){
		left:45%;
		animation-delay: .2s;
	}
	.circle:nth-child(3){
		left:auto;
		right:15%;
		animation-delay: .3s;
	}
	.shadow{
		width:20px;
		height:4px;
		border-radius: 50%;
		background-color: rgba(0,0,0,1);
		position: absolute;
		top:62px;
		transform-origin: 50%;
		z-index: -1;
		left:15%;
		filter: blur(1px);
		animation: shadow .5s alternate infinite ease;
	}

	@keyframes shadow{
		0%{
			transform: scaleX(1.5);
		}
		40%{
			transform: scaleX(1);
			opacity: .7;
		}
		100%{
			transform: scaleX(.2);
			opacity: .4;
		}
	}
	.shadow:nth-child(7){
		left: 45%;
		animation-delay: .2s
	}
	.shadow:nth-child(8){
		left:auto;
		right:15%;
		animation-delay: .3s;
	}
	.loader-wrapper span{
		position: absolute;
		top:75px;
		font-family: 'Lato';
		font-size: 20px;
		letter-spacing: 12px;
		color: #fff;
		left:15%;
	}
}
/*END*/
/*-------------END 共通-------------*/

/*fv*/
.home #content {
    margin-top: 0;
}
.fv_container {
    position: relative;
}
.side_menu {
    position: absolute;
    top: 40px;
    left: 290px;
	z-index: 2;
}
.menu_item a {
    color: #fff;
    font-size: 2em;
    display: block;
    margin: 45px 0;
    font-family: "STIX Two Text", serif;
    letter-spacing: 2px;
}
.top_header {
	height: 70px;
    background: #000;
	display: flex;
    justify-content: center;
    align-items: center;
}
.header_logo {
    display: inline-block;
    width: 245px;
}
.fv_content {
    height: calc(100vh - 70px);
	background-image: url(/wp-content/themes/sango-theme-child/img/top/fv_img.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	text-align: center;
}
.fv_img {
    width: 32%;
    margin: auto;
    padding: 70px;
}
.fv_mes {
    color: #fff;
    font-size: 3.5em;
    font-family: "STIX Two Text", serif;
    letter-spacing: 0.2em;
    padding-bottom: 30px;
	position: relative;
	z-index: 2;
}
.fv_p {
    color: #fff;
    font-size: 1.7em;
    line-height: 1.7em;
}
/*END fv*/

/*rankin*/
.rankin_container {
    margin-top: 200px;
    margin-bottom: 280px;
}
.rankin_headbox {
    text-align: center;
	position: relative;
}
.rankin_headbox:before {
	content: "";
    display: block;
    width: 255px;
    height: 245px;
    background-image: url(/wp-content/themes/sango-theme-child/img/top/rank_h_deco.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: -145%;
    left: 0;
    right: 0;
    margin: auto;
	z-index: 0;
}
.rankin_headbox .common_h2 {
    border: none;
    font-size: 3em;
	position: relative;
}
.rankin_headbox .common_h2:before {
	content: "";
    display: block;
    width: 180px;
    height: 3px;
    background-image: url(/wp-content/themes/sango-theme-child/img/top/rank_h.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 29%;
    left: -105%;
}
.rankin_headbox .common_h2:after {
	content: "";
    display: block;
    width: 180px;
    height: 3px;
    background-image: url(/wp-content/themes/sango-theme-child/img/top/rank_h.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 29%;
    right: -105%;
	transform: scaleX(-1)
}
.center_text {
    text-align: center;
}
.rankin_box {
    padding-top: 80px;
}
.rankin_items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 25px;
    row-gap: 25px;
}
.rankin_detail {
    padding: 20px 10px;
    background: #ffffff1c;
}
.rankin_des {
    color: #fff;
    text-align: center;
    font-size: 1.4em;
    font-weight: 600;
    letter-spacing: 3px;
}
.rankin_h3 {
    color: #fff;
    text-align: center;
    padding-top: 10px;
    font-size: 2em;
    font-weight: 600;
}
/*END rankin*/

/*regions*/
.regious_container {
	margin-top: 90px;
}
.regions_box {
    margin-top: -318px;
	position: relative;
}
.map_img {
    width: 90%;
    margin: auto;
}
.map_item {
    position: absolute;
    top: 10%;
    right: 0;
    background: #fff;
    font-family: "STIX Two Text", serif;
    padding: 34px 30px 30px;
    border-radius: 3px;
    text-align: center;
    font-weight: 600;
    font-size: 2em;
	z-index: 2;
}
.map_jp {
    display: block;
    font-size: 0.55em;
    padding-top: 10px;
}
.map_item:nth-child(2) {
	top: 32%;
    right: 13%;
}
.map_item:nth-child(3) {
    top: 54%;
    right: 18%;
}
.map_item:nth-child(4) {
    top: 42%;
    right: 40%;
}
.map_item:nth-child(5) {
    top: initial;
    bottom: 13%;
    right: 27%;
}
.map_item:nth-child(6) {
    top: initial;
    bottom: 26%;
    right: initial;
    left: 39%;
}
.map_item:nth-child(7) {
    top: initial;
    bottom: 35%;
    right: initial;
    left: 18%;
}
.map_item:nth-child(8) {
    top: initial;
    bottom: 8%;
    right: initial;
    left: 31%;
}
.map_item:nth-child(9) {
    top: initial;
    right: initial;
    bottom: 17%;
    left: 9%;
}
.map_item:last-child {
    top: initial;
    bottom: 0;
    right: initial;
    left: 0;
}
/* オーバーレイ */
.japan_map_overlay {
	display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 94;
}
.japan_map_overlay .area_overlay{
    display: none;
    position: absolute;
     z-index: 95;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    background-color: #2B2B2B;
    opacity: 0.5;
    cursor: none;
}
.japan_map_overlay .pref_area{
    display: none;
}
.pref_small_div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    z-index: 98;
    width: 50%;
    background-color: #FFF;
	 border-radius: 5px;
    padding: 35px 80px 40px;
    box-sizing: border-box;
    text-align: center;
}
.pref_small_div_h {
    font-weight: bold;
    font-size: 3em;
	font-weight: 600;
    padding-bottom: 15px;
    margin-bottom: 15px;
	font-family: "STIX Two Text", serif;
	color: #857329;
	border-bottom: solid 1px #857329; 
}
.japan_map_overlay .pref_list{
	z-index: 98;
    display: -webkit-flex;
    display: grid;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 29px;
    row-gap: 10px;
	padding: 0 10px;
}
.japan_map_overlay .pref_small_div[data-list="17"] .pref_list,
.japan_map_overlay .pref_small_div[data-list="34"]  .pref_list {
	grid-template-columns: repeat(4, 1fr);
}
.japan_map_overlay .pref_list > div{
    box-sizing: border-box;
    width: 50%;
    font-weight: bold;
    text-align: center;
    padding: 0.5em;
    cursor: none;
}
.japan_map_overlay .pref_list > a,
.japan_map_overlay .pref_list > .area-small_btn {
	display: block;
    box-sizing: border-box;
    width: 100%;
    font-weight: bold;
    text-align: center;
    padding: 0.5em 0;
	font-size: 1.3em;
	font-family: "STIX Two Text", serif;
}
.entry-content h3.search_h3 {
    border: none;
    padding: 0;
    margin: 0;
	font-size: 20px;
}
ul.search_small_ul {
    font-size: 16px;
    font-weight: normal;
	 display: flex;
	 flex-wrap: wrap;
	 justify-content: space-around;
	width: 73%;
    margin: 0 auto;
	padding-top: 5px;
}
.search_small_ul a {
    text-decoration: underline;
}
ul.search_small_ul li {
    margin-right: 10px;
	transition: 0.2s ease-in-out;
}
ul.search_small_ul li:hover {
    transform: translateY(-3px);
}
ul.search_small_ul li:nth-child(even) {
    margin-right: 0;
}
.search_box_contents {
	padding-bottom: 0;
	position: relative;
}
.search_hosoku {
    position: absolute;
    left: 0;
    top: 7%;
}
.search_hosoku dt {
    font-weight: bold;
    color: #2B2B2B;
	line-height: 1.3;
	text-align: center;
    font-size: 15px;
}
.search_hosoku dd {
	border: solid 3px #2B2B2B;
    border-radius: 3px;
    padding: 13px 10px;
    margin-top: 5px;
    font-size: 13px;
    width: 215px;
    background: #fff;
}
.search_hosoku dd p {
    width: 85%;
    margin: 0 auto;
    padding: 5px 0;
    font-weight: bold;
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 414px) {
	.pref_small_div_h {
		border-bottom: solid 2px #2B2B2B;
	}
	.pref_small_div {
		padding: 25px 43px 20px;
	}
	.japan_map .area_btn {
        font-size: 1em;
        padding: 10px 12px;
    }
    .japan_map .area_btn-normal,
	.japan_map .area_btn {
		font-size: 1em !important;
        padding: 10px 12px !important;
    }
    .search_hosoku {
        top: 1%;
    }
	#osaka .japan_map {
		margin: 0 -3%;
	}
	.japan_map_overlay .pref_small_div[data-list="27"] .pref_list,
	.japan_map_overlay .pref_small_div[data-list="28"] .pref_list,
	.japan_map_overlay .pref_small_div[data-list="30"] .pref_list {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (max-width: 376px) {
    .japan_map .area_btn {
        font-size: 0.9em;
    }
    .japan_map .area_btn-normal {
        font-size: 1.1em;
    }
    .search_hosoku dd {
        padding: 10px 5px;
        width: 201px;
    }
}
@media screen and (max-width: 360px) {
	.outer-menu .menu > div > div > ul > li {
		margin: 0.3em;
	}	
	.japan_map .area_btn.area3 {
		top: 46%;
		right: 24%;
	}
	a.perspnalcplor_btn {
		font-size: 12px;
	}
}
@media screen and (max-width: 320px) {
	.japan_map .area_btn {
        padding: 10px;
	}
    .japan_map .area_btn-normal {
        padding: 10px;
    }
	.japan_map .area_btn.area2 {
    	right: 0%;
	}
	.japan_map .area_btn.area4 {
    	right: 30%;
	}
	.japan_map .area_btn.area5 {
    	left: 12%;
	}
}
/*END regions*/

/*industry*/
.industry_container {
    margin: 150px 0;
}
.industry_box {
    padding-top: 80px;
}
.grid-container {
	display: grid;
	grid-template-areas:
		"itemA itemA itemB itemC itemD itemD itemE"
		"itemA itemA itemF itemG itemG itemH itemH"
		"itemI itemJ itemJ itemG itemG itemK itemK"
		"itemL itemL itemM itemN itemO itemO itemP"
		"itemL itemL itemQ itemQ itemO itemO itemR";
		grid-template-rows: 170px 170px 170px 170px 170px;
		gap: 10px;
}
.grid-item {
	background-image: url(/wp-content/themes/sango-theme-child/img/top/industry_1.jpg);
	background-repeat: no-repeat;
    background-size: cover;
	background-position: center;
	position: relative;
}
.grid-item__hover {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
	justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
	opacity: 0;
	-webkit-transition:	all 0.2s ease;
	transition:		all 0.2s ease;
	z-index: 3;
}
.grid-item:hover .grid-item__hover {
	opacity: 1;
}
.grid-itemA {
	grid-area: itemA;
	background-image: url(/wp-content/themes/sango-theme-child/img/top/industry_1.jpg);
}
.grid-itemB {
	grid-area: itemB;
	background-image: url(/wp-content/themes/sango-theme-child/img/top/industry_2.png);
}
.grid-itemC {
	grid-area: itemC;
	background-image: url(/wp-content/themes/sango-theme-child/img/top/industry_3.jpg);
}
.grid-itemD {
	grid-area: itemD;
	background-image: url(/wp-content/themes/sango-theme-child/img/top/industry_4.jpg);
}
.grid-itemE {
	grid-area: itemE;
	background-image: url(/wp-content/themes/sango-theme-child/img/top/industry_5.png);
}
.grid-itemF {
	grid-area: itemF;
	background-image: url(/wp-content/themes/sango-theme-child/img/top/industry_6.jpg);
}
.grid-itemG {
	grid-area: itemG;
	background-image: url(/wp-content/themes/sango-theme-child/img/top/industry_7.png);
}
.grid-itemH {
	grid-area: itemH;
	background-image: url(/wp-content/themes/sango-theme-child/img/top/industry_8.png);
}
.grid-itemI {
	grid-area: itemI;
	background-image: url(/wp-content/themes/sango-theme-child/img/top/industry_9.jpg);
}
.grid-itemJ {
	grid-area: itemJ;
	background-image: url(/wp-content/themes/sango-theme-child/img/top/industry_10.jpg);
}
.grid-itemK {
	grid-area: itemK;
	background-image: url(/wp-content/themes/sango-theme-child/img/top/industry_11.jpg);
}
.grid-itemL {
	grid-area: itemL;
	background-image: url(/wp-content/themes/sango-theme-child/img/top/industry_14.png);
	position: relative;
}
.grid-itemM {
	grid-area: itemM;
	background-image: url(/wp-content/themes/sango-theme-child/img/top/industry_12.jpg);
}
.grid-itemN {
	grid-area: itemN;
	background-image: url(/wp-content/themes/sango-theme-child/img/top/industry_13.jpg);
}
.grid-itemO {
	grid-area: itemO;
	background-image: url(/wp-content/themes/sango-theme-child/img/top/industry_15.jpg);
}
.grid-itemP {
	grid-area: itemP;
	background-image: url(/wp-content/themes/sango-theme-child/img/top/industry_16.jpg);
}
.grid-itemQ {
	grid-area: itemQ;
	background-image: url(/wp-content/themes/sango-theme-child/img/top/industry_17.jpg);
}
.grid-itemR {
	grid-area: itemR;
	background-image: url(/wp-content/themes/sango-theme-child/img/top/industry_18.jpg);
}
.grid-itemL:after {
	content: "";
    display: block;
    width: 135%;
    height: 122%;
    background-image: url(/wp-content/themes/sango-theme-child/img/top/industry_14_deco.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 78px;
    bottom: 0;
    right: 0;
    left: -50px;
    margin: auto;
	z-index: 1;
	
}
.grid-item__hover span {
    position: relative;
    color: #fff;
    font-size: 1.5em;
    font-weight: 800;
}
/*END industry*/

/*criteria*/
.criteria_box {
    padding-top: 80px;
	position: relative;
}
.criteria_img {
    width: 50%;
    margin: auto;
}
.criteria_item {
    position: absolute;
    top: 24%;
    left: 0;
	border-right: solid 2px #fff;
    padding-right: 30px;
}
.criteria_item:first-child .criteria_h3,
.criteria_item:nth-of-type(3) .criteria_h3,
.criteria_item:first-child .criteria_p,
.criteria_item:nth-of-type(3) .criteria_p {
	text-align: right;
}
.criteria_item:nth-of-type(2) {
    position: absolute;
    top: 24%;
	left: initial;
    right: 0;
	border-right: none;
	border-left: solid 2px #fff;
	padding-right: 0;
    padding-left: 30px;
}
.criteria_item:nth-of-type(3) {
    position: absolute;
    top: 70%;
    left: 0;
}
.criteria_item:last-child {
    position: absolute;
    top: 70%;
	left: initial;
    right: 0;
	border-right: none;
	border-left: solid 2px #fff;
	padding-right: 0;
    padding-left: 30px;
}
.criteria_h3 {
    font-size: 2em;
    color: #fff;
    font-weight: 600;
    padding-bottom: 10px;
}
.criteria_p {
    color: #fff;
    font-size: 1.4em;
    line-height: 1.3em;
}
/*END criteria*/

/*about*/
.about_container {
    overflow: hidden;
    margin: 170px 0;
	padding: 50px 0;
	z-index: 0;
}
.about_box {
    padding-top: 80px;
    position: relative;
}
.about_p {
    color: #fff;
    font-size: 1.5em;
    line-height: 1.4em;
    width: 45%;
	position: relative;
    z-index: 1;
}
.about_img {
    position: absolute;
    top: -78%;
    right: -3%;
    left: initial;
    width: 53%;
    z-index: 0;
}
/*END about*/

/*footer*/
.top_footer {
    background: #030200;
}
.footer_inner {
    border-top: solid 2px #fff;
    padding: 50px 0;
    width: 80%;
    margin: auto;
}
.footer_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer_img {
    width: 20%;
}
.footer_items {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 24px;
}
.footer_item a {
    color: #fff;
    font-weight: bold;
    font-size: 1.2em;
	position: relative;
	padding-left: 30px;
}
.footer_item a:before {
    position: absolute;
    top: 20%;
    left: 0;
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(/wp-content/themes/sango-theme-child/img/top/menu_arrow.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom;
    z-index: 2;
}
.footer_cre {
    display: block;
    color: #fff;
    text-align: right;
    font-size: 10px;
    color: #9B9B9B;
}
/*END footer*/

@media screen and (max-width: 1664px) {
	.top_header {
		height: 55px;
	}
	.header_logo {
		width: 210px;
	}
	.side_menu {
    	left: 240px;
	}
	.menu_item a {
		font-size: 1.5em;
		margin: 30px 0;
	}
	.fv_content {
    	height: calc(100vh - 55px);
	}
	.fv_mes {
    	font-size: 3em;
	}
	.fv_p {
    	font-size: 1.3em;
	}
	.fv_img {
		width: 35%;
	}
	.common_dis {
    	font-size: 1.2em;
	}
	.rankin_headbox:before {
		width: 222px;
		height: 215px;
		top: -150%;
	}
	.rankin_container {
    	margin-bottom: 295px;
	}
	.rankin_des {
    	font-size: 1.1em;
	}
	.rankin_h3 {
    	font-size: 1.5em;
	}
	.regious_container {
    	margin-top: 113px;
	}
	.regions_box {
    	margin-top: -318px;
	}
	.map_item {
		padding: 25px 30px 23px;
		font-size: 1.6em;
	}
	.grid-container {
		grid-template-rows: 160px 160px 160px 160px 160px;
	}
	.criteria_p {
		font-size: 1.2em;
		line-height: 1.5em;
	}
	.about_p {
		font-size: 1.2em;
		line-height: 1.6em;
	}
	.about_img {
    	top: -63%;
	}
}
@media screen and (max-width: 1536px) {
	.fv_img {
		width: 26%;
		padding: 54px;
	}
	.fv_p {
        font-size: 1.1em;
    }
	.fv_mes {
        font-size: 2.5em;
        padding-bottom: 20px;
    }
	.grid-container {
        grid-template-rows: 140px 140px 140px 140px 140px;
    }
	.grid-itemL:after {
		top: -6px;
    	left: -26px;
	}
	.about_img {
		top: -52%;
		right: -3%;
		width: 53%;
	}
	.about_container {
		margin: 100px 0;
	}
}
@media screen and (max-width: 1512px) {
	 .side_menu {
        left: 210px;
    }
	.fv_img {
        width: 35%;
        padding: 65px;
    }
	.rankin_container {
        margin-bottom: 250px;
    }
	.industry_container {
    	margin: 90px 0;
	}
	.about_container {
    	margin: 115px 0;
	}
	.about_img {
        top: -74%;
        right: -13%;
        width: 65%;
    }
}
@media screen and (max-width: 1440px) {
	.rankin_container {
        margin-bottom: 185px;
    }
	.regions_box {
        margin-top: -235px;
    }
	.map_item {
        padding: 20px 25px 20px;
    }
	.about_img {
        top: -58%;
    }
}
@media screen and (max-width: 1280px) {
	.side_menu {
        left: 180px;
    }
	.fv_img {
        width: 31%;
        padding: 50px;
    }
	.rankin_box,
	.industry_box,
	.criteria_box,
	.about_box {
    	padding-top: 50px;
	}
	.map_item {
        padding: 18px 25px 17px;
        font-size: 1.4em;
    }
	.map_jp {
		padding-top: 6px;
	}
	.rankin_container {
        margin-bottom: 160px;
    }
	.regious_container {
        margin-top: 42px;
    }
	.regions_box {
        margin-top: -247px;
    }
	.grid-container {
        grid-template-rows: 110px 110px 110px 110px 110px;
    }
	.grid-item span {
    	font-size: 1.5em;
	}
	.criteria_img {
    	width: 40%;
	}
	.criteria_item {
		padding-right: 25px;
	}
	.criteria_item:nth-of-type(2),
	.criteria_item:last-child {
		padding-left: 25px;
	}
	.criteria_h3 {
    	font-size: 1.5em;
	}
	.criteria_p {
        font-size: 1em;
	}
	.common_h2 {
    	font-size: 4em;
	}
	.industry_container {
        margin: 50px 0;
    }
	.about_container {
        margin: 70px 0;
    }
	.about_p {
        font-size: 1em;
        line-height: 1.7em;
        width: 50%;
    }
	.about_img {
        top: -23%;
    }
	.footer_item a {
    	font-size: 1em;
	}
	.footer_item a:before {
    	top: 10%;
	}
	.about_container {
        margin: 30px 0;
    }
    .about_img {
        top: -94%;
    }
	.pref_small_div {
		width: 60%;
	}
}
@media screen and (max-width: 1200px) {
	.top_header {
        height: 60px;
    }
	.header_logo {
        width: 190px;
    }
	.side_menu {
    	top: 16px;
	}
	.menu_item a {
        font-size: 1.2em;
        margin: 23px 0;
    }
	.fv_img {
        width: 25%;
        padding: 31px;
    }
	.fv_p {
        font-size: 0.9em;
        line-height: 1.5em;
    }
	.fv_mes {
        font-size: 2.1em;
        padding-bottom: 10px;
    }
	.rankin_headbox .common_h2 {
    	font-size: 2em;
	}
	.rankin_headbox:before {
		width: 190px;
        height: 185px;
	}
	.rankin_headbox .common_h2:before {
		width: 139px;
		height: 2px;
	}
	.rankin_headbox .common_h2:after {
		width: 139px;
		height: 2px;
	}
	.rankin_items {
		column-gap: 15px;
		row-gap: 15px;
	}
	.rankin_des {
        font-size: 0.9em;
    }
	.rankin_h3 {
        font-size: 1.2em;
    }
	.common_h2 {
        font-size: 3em;
    }
	.regious_container {
        margin-top: 26px;
    }
	.regions_box {
        margin-top: -203px;
    }
	.map_item {
        padding: 16px 20px 14px;
        font-size: 1.2em;
    }
	.rankin_container {
        margin-bottom: 125px;
    }
	.grid-item span {
        font-size: 1.2em;
    }
	.grid-container {
        grid-template-rows: 105px 105px 105px 105px 105px;
    }
	.about_img {
        top: -9%;
    }
	.about_img {
        top: -78%;
    }
	.pref_small_div {
		width: 80%;
	}
	.japan_map_overlay .pref_small_div[data-list="17"] .pref_list, .japan_map_overlay .pref_small_div[data-list="34"] .pref_list {
		grid-template-columns: repeat(5, 1fr);
	}
}