@charset "UTF-8";

* {
	margin: 0px;
	padding: 0px;
}

*, *::before, *::after {box-sizing: border-box;}


html{font-size: 62.5%;}

body {
	font-size:1.6rem;/* 16px */
	line-height: 1.5;
	font-family: 'Kosugi Maru', 'YuGothic', 'Yu Gothic', sans-serif;
	color: #000;
}

h1,h2,h3,h4,h5,h6,p,dl {
	font-size: 1.6rem;
	font-weight: normal;
}

ul {list-style: none;}

a{
	color: #000;
	text-decoration: none;
}

body {font-size: 16px;}

.font {
	font-weight: 400;
	font-style: normal;
}

/* 小杉丸 */
.kosugi-maru-regular {font-family: "Kosugi Maru", sans-serif;}

/* Sawarabi Mincho */
.sawarabi-mincho-regular {font-family: "Sawarabi Mincho", serif;}

/* Yusei Magic */
.yusei-magic-regular {font-family: "Yusei Magic", sans-serif;}

/* Yomogi */
.yomogi-regular {font-family: "Yomogi", cursive;}


/* ====================
　header
==================== */

@media screen and (max-width:767px) {
/* 画面サイズが767pxまではここを読み込む */

	header {
		width: 100%;
		max-width: 768px;
		position: sticky;
		top: 0;
		background: #fff;
		z-index: 5;
		background: #fffcf9;
		background: linear-gradient(#fff, #fffcf9);
		border-bottom: 1px solid #f1efec;
		margin-bottom: 0;
	}

	.header_inner {
		width: 100%;
		display: flex;
		justify-content: space-between;
		margin: 0 auto;
	}

	.header_inner h1,
	.header_inner h2 {
		width: 20%;
		line-height: 1;
	}

	.header_inner h1 img,
	.header_inner h2 img {max-width: 200px;}

	.header-menu {width: 80%;}

	.login {
		width: 80%;
		display: flex;
		justify-content: flex-end;
		padding-top: 10px;
	}

	.login li {
		width: 50%;
		text-align: center;
		margin: 0;
	}

	.login img {width: 40%;}

	.login p {font-size: 1.2rem;}

}

@media screen and (min-width:768px) {
/* 画面サイズが768pxからはここを読み込む */

	header {
		width: 100%;
		position: sticky;
		top: 0;
		background: #fff;
		z-index: 5;
		background: #f00;
		background: linear-gradient(#fff, #fffcf9);
		border-bottom: 1px solid #f1efec;
		margin-bottom: 0;
	}

	.header_inner {
		max-width: 960px;
		display: flex;
		justify-content: space-between;
		margin: 0 auto;
	}

	.header_inner h1,
	.header_inner h2 {
		width: 25%;
		line-height: 1;
	}

	.header_inner h1 img,
	.header_inner h2 img {
		max-width: 200px;
		vertical-align: bottom;}

	.header-menu {width: 70%;}

	.header-menu ul{
		width: 100%;
		display: flex;
		justify-content: space-between !important;
		text-align: center;
		padding-top: 20px;
	}

	.header-menu ul li{width: 20% !important;}

	.login {
		width: 24%;
		display: flex;
		justify-content: flex-end !important;
		padding-top: 20px;
	}

	.login li {
		width: 50%;
		text-align: center;
	}

	.login img {width: 40%;}

	.login p {font-size: 1.2rem;}

}

/* ====================
　header menu
==================== */

@media screen and (max-width:767px) {
/*　画面サイズが767pxまではここを読み込む　*/

	.menu-btn {
		position: fixed;
		top: 50px;
		right: -10px;
		display: flex;
		height: 80px;
		width: 80px;
		justify-content: center;
		align-items: center;
		z-index: 90;
	}

	.menu-btn span,
	.menu-btn span:before,
	.menu-btn span:after {
		content: '';
		display: block;
		height: 4px;
		width: 32px;
		border-radius: 3px;
		background-color: #222;
		position: absolute;
		transition: all 300ms 0s ease;
	}

	.menu-btn span:before {bottom: 12px;}

	.menu-btn span:after {top: 12px;}

	#menu-btn-check {display: none;}

	#menu-btn-check:checked ~ .menu-btn span {
		/*メニューオープン時は真ん中の線を透明にする*/
		background-color: rgba(255, 255, 255, 0);
		transition: all 300ms 0s ease;
	}

	#menu-btn-check:checked ~ .menu-btn span::before {
		bottom: 0;
		transform: rotate(45deg);
		background-color: #222;
		transition: all 300ms 0s ease;
	}

	#menu-btn-check:checked ~ .menu-btn span::after {
		top: 0;
		transform: rotate(-45deg);
		background-color: #222;
		transition: all 300ms 0s ease;
	}

	.menu-content {
		width: 100%;
		height: 100%;
		position: fixed;
		top: -100%;
		left: 0;
		z-index: 80;
		background-color: white;
		color: #222;
		transition: all 500ms 0s ease;
	}

	#menu-btn-check:checked ~ .menu-content {top: 0;}

	.menu-content ul {
		padding: 120px 20px 0;
		background: linear-gradient(#fffffe, #fffbf6);
	}

	.menu-content ul li {
		border-bottom: 1px solid #926d24;
		list-style: none;
	}

	.menu-content ul li a {
		display: block;
		width: 100%;
		font-size: 15px;
		box-sizing: border-box;
		text-decoration: none;
		padding: 9px 15px 10px 0;
		position: relative;
		color: #244992;
	}

	.menu-content ul li a::before {
		content: "";
		width: 7px;
		height: 7px;
		border-top: solid 2px #926d24;
		border-right: solid 2px #926d24;
		transform: rotate(45deg);
		position: absolute;
		right: 11px;
		top: 16px;
	}

}

@media screen and (min-width:768px) {
/* 画面サイズが768pxからはここを読み込む */

	.menu-btn {}
	.menu-btn span,
	.menu-btn span:before,
	.menu-btn span:after {}
	.menu-btn span:before {}
	.menu-btn span:after {}

	#menu-btn-check {display: none;}

	#menu-btn-check:checked ~ .menu-btn span {}
	#menu-btn-check:checked ~ .menu-btn span::before {}
	#menu-btn-check:checked ~ .menu-btn span::after {}

	.menu-content {}

	#menu-btn-check:checked ~ .menu-content {}

	.menu-content ul {
		width: 100%;
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	.menu-content ul li {
		text-align: center;
		margin-left: 2px;
		font-size: 1.4rem;
	}

	.menu-content ul li:nth-child(1) {width: 16% !important;}

	.menu-content ul li:nth-child(2),
	.menu-content ul li:nth-child(4),
	.menu-content ul li:nth-child(5) {width: 18% !important;}

	.menu-content ul li:nth-child(3) {width: 20% !important;}

	.menu-content ul li:nth-child(6) {margin-left: 10%;}

	.menu-content ul li a {
		text-decoration: none;
		color: #555;
	}

	.menu-content ul li a::before {}

}

/* ====================
　footer
==================== */

footer {
	width: 100%;
	border-top: 1px solid #000;
	padding-top: 30px;
}

.footer_box {
	width: 90%;
	margin: 0 auto 50px;
}

.footer_box_innner_1 ul {
	text-align: center;
	margin-bottom: 30px;
}

.footer_box .f_img {
	max-width: 150px;
	max-height: 99px;
}

.sp_inner {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.footer_box_innner_2 p {
	margin-bottom: 5px;
	font-weight: bold;
}

.header_inner h2 img {max-width: 200px;}

.footer_box .f_icon {
	max-width: 30px;
	max-height: 30px;
}

.copyright {
	background: #eee;
	text-align: center;
	padding: 20px 0;
}

@media screen and (min-width:768px) {
/* 画面サイズが768pxからはここを読み込む */

	footer {
		border-top: 1px solid #000;
		padding-top: 30px;
	}

	.footer_box {
		max-width: 960px;
		display: flex;
		justify-content: space-between;
		margin: 0 auto 50px;
	}

	.footer_box_innner_1 {width: 40%;}

	.footer_box_innner_1 ul {
		text-align: left;
		margin-bottom: 30px;
	}

	.footer_box_innner_1 ul li:nth-child(2),
	.footer_box_innner_1 ul li:nth-child(3) {margin-left: 1.6rem;}

	.footer_box .mr {}

	.sp_inner {
		width: 55%;
		display: flex;
		justify-content: flex-end;
	}

	.footer_box_innner_2 {
		width: 25%;
		margin-top: 30px;
		margin-right: 3%;
	}

	.mr_0 {margin-right: 0;}

	.footer_box_innner_2 p {
		margin-bottom: 5px;
		font-weight: bold;
	}

	.footer_box .f_img {
		max-width: 210px;
		max-height: 139px;
	}

	.footer_box .f_icon {
		max-width: 30px;
		max-height: 30px;
	}

}

/* ====================
　h2 見出し部分
==================== */

.headline {
	position: relative;
	padding: 0.8rem 5rem 0.2rem;
	color: #333;
	border-bottom: 2px solid #333;
	margin-bottom: 3rem;
	font-size: 2.6rem;	
	color: #333;
}

.headline::before,
.headline::after {
	display: inline-block;
	position: absolute;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
    content: '';
}

.headline::before {
	top: calc(50% - 4px);
	left: 0;
	border: 2px solid #333;
}

.headline::after {
	top: calc(50% + 4px);
	left: 10px;
	border: 2px solid #333;
}


.headline_1 {
	width: 100%;
	display: inline-block;
	position: relative;
	text-align: center;
	text-decoration: none;
	margin: 0 auto 36px;
}

.headline_1:before {
	content: '';
	display: inline-block;
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 70px;
	height: 4px;
	background-color: #0080ff;
}


.headline_2 {
	position: relative;
	padding: .3em 0 .1em 2em;
	border-bottom: 2px solid #c56463;
	color: #000;
	width: 100%;
	margin-bottom: 20px;
	font-size: 2rem;
}

.headline_2::before {
	position: absolute;
	top: 0;
	left: .3em;
	transform: rotate(55deg);
	height: 15px;
	width: 14px;
	background: #63C564;
	content: '';
}

.headline_2::after {
	position: absolute;
	transform: rotate(15deg);
	top: .6em;
	left: 0;
	height: 10px;
	width: 10px;
	background: #6463C5;
	content: '';
}


.headline_3 {
	position: relative;
	margin-top: 20px;
	padding: 0.3em 0.5em 0.3em 1em;
}

.headline_3::after {
	position: absolute;
	bottom: -10px;
	left: 10px;
	width: 50%;
	height: 4px;
	content: '';
	border-radius: 2px;
	background-image: -webkit-gradient(linear, right top, left top, from(#c56463), to(#da9e6f));
}


.headline_4 {
	position: relative;
	padding: .3em 0 .1em 2em;
	border-bottom: 2px solid #2196f3;
	color: #000;
	width: 100%;
	margin-bottom: 20px;
	font-size: 2rem;
}

.headline_4::before {
	position: absolute;
	top: 0;
	left: .3em;
	transform: rotate(55deg);
	height: 15px;
	width: 14px;
	background: #f32196;
	content: '';
}

.headline_4::after {
	position: absolute;
	transform: rotate(15deg);
	top: .6em;
	left: 0;
	height: 10px;
	width: 10px;
	background: #96f321;
	content: '';
}


/* ====================
　友達追加部分
==================== */





@media screen and (max-width:767px) {
/* 画面サイズが767pxまではここを読み込む */

	.line_sp {
			width: 200px;
			margin: 0 auto 20px;
		}

	.line_box_img {display: none;}

}

@media screen and (min-width:768px) {
/* 画面サイズが768pxからはここを読み込む */

/* 友達追加部分 */

	.line_box {
		width: 80%;
		padding: 0;
	}

	.line_box_p {
		padding: 4px;
		text-align: center;
		background: #00b833;
		border: 1px solid #00b833;
		border-radius: 8px 8px 0 0;
		color: #fff;
	}

	.line_box_p p {font-size: 1.2rem;}

	 .line_box_p span {
		font-weight: 400;
		font-size: 2rem;
	}

	.line_box img {
		max-width: 100px;
		max-height: 100px;
		display: block;
		margin: 0 auto;
	}

	.line_box_img {
		border-left: 6px solid #00b833;
		border-right: 6px solid #00b833;
		border-bottom: 6px solid #00b833;
		padding: 10px;
	}

	.campaign_inner_right .container .line_box {
		width: 90%;
		margin-right: 20px;
		margin-bottom: 20px;
		padding: 0;
	}

	.campaign_inner_right .container .line_box_p {
		padding: 4px;
		text-align: center;
		background: #00b833;
		border: 1px solid #00b833;
		border-radius: 8px 8px 0 0;
		color: #fff;
	}

	.campaign_inner_right .container .line_box_p p {font-size: 1.2rem ;}

	.campaign_inner_right .container .line_box_p span {
		font-weight: 400;
		font-size: 2rem;
	}

	.campaign_inner_right .container .line_box img {
		max-width: 100px;
		max-height: 100px;
		display: block;
		margin: 0 auto;
	}

	.campaign_inner_right .container .line_box_img {
		border-left: 6px solid #00b833;
		border-right: 6px solid #00b833;
		border-bottom: 6px solid #00b833;
		padding: 10px;
	}

	.s_flex_b_r .line_box {
		width: 60%;
		margin: 20px auto 0;
		padding: 0;
	}

	.s_flex_b_r .line_box_p {
		padding: 4px;
		text-align: center;
		background: #00b833;
		border: 1px solid #00b833;
		border-radius: 8px 8px 0 0;
		color: #fff;
	}

	.s_flex_b_r .line_box_p p {font-size: 1.2rem ;}

	.s_flex_b_r .line_box_p span {
		font-weight: 400;
		font-size: 2rem;
	}

	.s_flex_b_r .line_box img {
		max-width: 100px;
		max-height: 100px;
		display: block;
	}

	.s_flex_b_r .line_box_img {
		border-left: 6px solid #00b833;
		border-right: 6px solid #00b833;
		border-bottom: 6px solid #00b833;
		padding: 10px 0;
	}

	.contents_inner .flex_b_r .campaign_line_sp,
	.campaign_inner_right .line_sp {display: none;}

/* キャバクラ派遣の流れの部分 */
	.flow_inner .flow_inner_text .line_box {display: none;}

	.flow_inner .line_sp {
		width: 100%;
		margin: 20px auto 0;
	}

	.flow_inner .line_sp img{
		max-width: 100%;
		display: block;
	}

}

.contents_inner .faq_line_sp img{
		max-width: 100%;
		display: block;
	}

.contents_inner .faq_line_sp {
	width: 200px;
	margin: 20px auto ;
}


.infomation {
	width: 100%;
	margin: 0 auto 50px;
	display: flex;
	flex-wrap: wrap;
	border: 1px solid #ccc;
}

.infomation dt {
	width: 20%;
	border-right: 1px solid #ccc;
	padding: 10px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.infomation dd {
	width: 80%;
	padding: 10px 0 10px 10px;
}

.infomation dt,
.infomation dd {
	border-bottom: 1px solid #ccc;
}

.infomation dt:last-of-type,
.infomation dd:last-of-type {
	border-bottom: none;
}



.map {
	width: 100%;
	margin: 0 auto;
	position: relative;
	padding-top: 75%; /* 4:3 アスペクト比 */
	height: 0;
}

.map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-height: 400px;
}



iframe[src*="www.google.com/maps/embed"] {
	aspect-ratio: 4 / 3;
	width: 100%;
	height: auto;
}