body{
	font-family: "游ゴシック Medium","Yu Gothic Medium","游ゴシック","Yu Gothic","游ゴシック体",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,sans-serif;
	margin: 0;
	padding: 0;
	font-size: 18px;
}
html{scroll-behavior: smooth; overflow-x: hidden;}
img{image-rendering:-webkit-optimize-contrast; vertical-align:top;}
.inner{width: 90%; max-width: 1000px; margin: auto;}
.inner670{width: 90%; max-width: 670px; margin: auto;}
.inner700{width: 90%; max-width: 700px; margin: auto;}
.w960{display: block;}
.w960-2{display: none;}
.w959{display: block;}
.w959-2{display: none;}
.w768{display: block;}
.w768-2{display: none;}
.w600{display: block;}
.w600-2{display: none;}
.w430{display: block;}
.w430-2{display: none;}
.w375{display: block;}
.w375-2{display: none;}
.w320{display: block;}
.w320-2{display: none;}
a{text-decoration: none;}
p{text-align: justify;margin:0px;line-height: 1.7;}
ul{list-style-type: none;margin: 0;padding: 0;}
h1,h2,h3{margin:0px;}
h2{letter-spacing: 0.1em;text-align: center;}
h2.item{font-size: 27px;margin-bottom: 50px;}
h2.item::before{
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/point.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 20px;
}
h2.item::after{
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/point.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-left: 20px;
}
.pt100{padding-top: 100px;}
@media screen and (max-width: 960px){
	.w960{display: none;}
	.w960-2{display: block;}
}
@media screen and (max-width: 959px){
	.w959{display: none;}
	.w959-2{display: block;}
}
@media screen and (max-width: 768px){
	.w768{display: none;}
	.w768-2{display: block;}
}
@media screen and (max-width: 600px){
	.w600{display: none;}
	.w600-2{display: block;}
}
@media screen and (max-width: 500px){
	h2.item{font-size: 20px;margin-bottom: 30px;}
	.pt100 {padding-top: 60px;}
}
@media screen and (max-width: 430px){
	body{font-size: 14px;}
	.w430{display: none;}
	.w430-2{display: block;}
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
}
}
@media screen and (max-width: 375px){
	.w375{display: none;}
	.w375-2{display: block;}
}
@media screen and (max-width: 320px){
	.w320{display: none;}
	.w320-2{display: block;}
}
/*header***************/
.h_ttl img{
	width: 294px;
}
header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 30px 0px 30px 30px;
}
header nav ul{
	display: flex;
}
header nav ul li{
	border-left: 1px solid #80C8EF;
	padding: 10px 0px;
}
header nav ul li a {
    padding: 0 40px;
	color: #000000;
}
.nav ul li a:hover{
	color: #0099D9;
}

/*スクロール時に上から出てくるメニュー*/
.menu {
    position: fixed;
    top: -100px;
    right: 0;
    z-index: 9999;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
	filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.4));
    transition: .7s;
	display: flex;
    align-items: center;
    justify-content: center;
}
.menu ul {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.menu ul li{
    text-align: center;
	padding: 20px;
	color: #000;
	font-weight: bold;
}
.menu ul li a {
    color: #000;
    font-size: 16px;
}
.menu ul li a:hover{color: #0099D9;}
.menu .h_yoyaku{padding: 30px 50px 0px;}
@media screen and (max-width: 1150px){
	header {padding: 15px 0px 20px 20px;}
	header nav ul li a {padding: 0 20px;}
	.menu ul li {padding: 20px 10px;}
}
@media screen and (max-width: 960px){
header nav ul{display: block;}
header nav ul li{border: none;font-size: 16px;}
.h_ttl p {font-size: 20px;}
.h_ttl img {width: 300px;display: flex;}
.menu{display: none;}

/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 0;
  top   : 0;
  width : 75px;
  height: 70px;
  cursor: pointer;
  text-align: center;
	background-color: #0099D9;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 50px;
  height  : 2px ;
  left    : 13px;
  background : #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 25px;
}
.hamburger span:nth-child(2) {
  top: 35px;
}
.hamburger span:nth-child(3) {
  top: 45px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 35px;
  left: 13px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 35px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #000;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.6s;
  width: 100%;
}

nav.globalMenuSp ul {
  background: #0099D9;
  margin: 0 auto;
  padding: 50px 0 50px 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 0.6em 0;
  text-decoration :none;
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0%);
}
}
@media screen and (max-width: 600px){
	.h_ttl p {font-size: 10px;margin-right: 0px;margin-left: 15px;}
	.h_ttl img {width: 200px;}
	.hamburger {height: 60px;width: 65px;}
	.hamburger span {width: 40px;}
	.hamburger span:nth-child(1) {top: 20px;}
	.hamburger span:nth-child(2) {top: 30px;}
	.hamburger span:nth-child(3) {top: 40px;}
}
@media screen and (max-width: 500px){
	nav.globalMenuSp.active {overflow-y: scroll;height: 100vh;}
}
@media screen and (max-width: 320px){
	nav.globalMenuSp ul li a {padding: 0.8em 0;}
}

/*メインビジュアル（トップページ）***************/
.mainvisual{
	position: relative;
}
.mainpic{
	width: 100%;
}
.maincatch{
	position: absolute;
	width: 300px;
	top: 40px;
    right: 200px;
}
.maintxt{
	text-align: center;
	color: #fff;
	background-color: #80C8EF;
	padding: 20px;
    font-size: 20px;
    font-weight: bold;
}
@media screen and (max-width: 960px){
	.maincatch {width: 30%;right: 100px;}
}
@media screen and (max-width: 500px){
	.maincatch {width: 25%;right: 40px;top: 20px;}
	.maintxt {font-size: 16px;text-align: justify;}
}

/*サブビジュアル（下層ページ）***************/
.subvisual{
	margin-bottom: 100px;
	background: url(../images/subvisual.jpg) no-repeat center center;
	height: 128px;
    background-size: cover;
}
h2.subttl{
	font-size: 28px;
	height: 128px;
    line-height: 128px;
}
h2.subttl2{
	font-size: 28px;
	padding-top: 22px;
}
@media screen and (max-width: 960px){
	.subvisual {margin-bottom: 60px;}
}
@media screen and (max-width: 500px){
	.subvisual {margin-bottom: 40px;background: url(../images/subvisual_sp.jpg) no-repeat center center;height: 364px;background-size: 100%;}
	h2.subttl {font-size: 20px;height: 364px;line-height: 364px;}
	h2.subttl2{font-size: 20px;padding-top: 155px;}
}
@media screen and (max-width: 430px){
	.subvisual {height: 250px;background-size: cover;}
	h2.subttl {height: 250px;line-height: 250px;}
	h2.subttl2{padding-top: 95px;}
}

/*トップページ***************/
#foods{
	background-color: #EDF9FF;
	padding: 0px 0px 100px;
}
.f_box{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 80px;
}
.f_box h3{
	background-color: #80C8EF;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	padding: 10px 10px 10px 20px;
    margin-bottom: 20px;
}
.f_box img{
    width: 35%;
    box-shadow: 10px 10px 0px 0 rgb(255, 255, 255);
    border-radius: 20px;	
}
.f_box div{
	width: 60%;
}
.f_boxarea .f_box:last-child{
	margin-bottom: 0px;
}
#flow{
	margin-bottom: 30px;
    background: url(../images/arrow_gray.png) no-repeat center bottom;
    padding-bottom: 20px;
}
/*アコーディオン*/
.toggle {
	display: none;
}
.Label {
	padding: 10px;
    display: block;
    color: #fff;
    text-align: center;
    font-size: 30px;
}
.Label::before{
	content:"▲";
	position: absolute;
	right: 20px;
    top: 50%;
    transform: translate(-50%,-50%);
}
.Label,
.accordion {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.a_green{background: #62C62E;}
.a_orange{background: #FFB948;}
.a_green_border{border: 1px solid #62C62E;}
.a_orange_border{border: 1px solid #FFB948;}
.a_greenh3 h3{border-bottom: 3px solid #62C62E;}
.a_orangeh3 h3{border-bottom: 3px solid #FFB948;}
.accordion {
	height: 0;
	margin-bottom:50px;
	padding:0 40px;
	overflow: hidden;
}
.a_flex{
	display: flex;
	justify-content:space-between;
}
.toggle:checked + .Label + .accordion {
	height: auto;
	padding:40px ;
	transition: all .3s;
}
.toggle:checked + .Label::before {
	transform: rotate(-180deg) translate(50%,50%);
}
/*ENDアコーディオン*/
.a_txtarea{
	width: 65%;
}
.a_picarea{
	width: 30%;
}
.a_picarea img{
	width: 100%;
	margin-bottom: 20px;
}
.a_picarea img:last-child{
	margin-bottom: 0px;
}
.a_txtarea h3{
	font-size: 20px;
    width: 250px;
	padding-bottom: 5px;
    margin-bottom: 10px;
}
.mt60{
	margin-top: 60px;
}
.a_txtarea span{
	color: #C4C4C4;
}
.top_contact_arrow{
	background: url(../images/arrow_gray.png) no-repeat center top;
}
.bg_blue{
	background-color: #EDF9FF;
	padding: 40px 0px;
}
.top_recruit{
	text-align: center;
	font-size: 20px;
	font-weight: bold;
}
.top_recruit span{
	font-size: 25px;
}
.top_recruit_position{
	position: relative;
	width: 600px;
    margin: auto;
}
.top_recruit_position img{
	position: absolute;
    width: 107px;
    top: 30%;
    left: 4%;
    transform: translate(-50%,-50%);
}
.top_recruit_btn{
	display: block;
	background: url(../images/top_arrow.png) no-repeat center right 20px;
	background-size: 14px;
	background-color: #0099D9;
	border-radius: 10px;
	max-width: 600px;
    width: 90%;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
    color: #fff;
    font-size: 25px;
}
.top_recruit_btn:hover{
	background-color: #80C8EF;
}
.top_contacttxt{
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	padding: 20px;
}
.top_contacttxt a{
	color: #0099D9;
	text-decoration:underline;
}
.l_flex{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
    justify-content: center;
}
.l_flex2{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
    justify-content: flex-end;
}
.l_midashi{
	text-align: center;
	font-weight: bold;
	line-height: 2;
}
.l_midashi span{
	font-size: 22px;
	border-bottom: 3px solid #80C8EF;
    padding-bottom: 8px;
}
.l_btn{
	background: url(../images/link.png) no-repeat center right 20px;
	background-color: #fff;
	background-size: 10px;
	color: #000;
	text-align: center;
	width: 42%;
	padding: 2%;
	margin-right: 2%;
	margin-bottom: 10px;
}
.l_btn:nth-child(even){
	margin-right: 0%;
}
.l_btn:nth-child(3),.l_btn:nth-child(4){
	margin-bottom: 0px;
}
@media screen and (max-width: 959px){
	.a_flex{display: none;}
	.a_txtarea {width: 100%;}
	.a_txtarea img{margin: 20px auto 0px;display: block;}
}
@media screen and (max-width: 825px){
	.l_midashi {margin-bottom: 20px;}
	.l_flex2 {justify-content: center;}
}
@media screen and (max-width: 768px){
	.f_box {flex-flow: column;}
	.f_box img {width: 100%;border-radius: 40px;}
	.f_box div {width: 100%;margin-top: 30px;}
	.a_txtarea img {width: 100%;}
	.top_recruit_btn {margin: 40px auto 20px;}
	.top_recruit_position {width: 500px;}
	.top_recruit_position img {width: 90px;}
}
@media screen and (max-width: 622px){
	.l_btn {width: 90%;margin-right: 0%;}
	.l_btn:nth-child(3){margin-bottom: 10px;}
}
@media screen and (max-width: 574px){
	.top_recruit_position {width: 80%;}
	.top_recruit_position img {left: 6%;}
	.top_recruit_btn{width: 80%;}
}
@media screen and (max-width: 500px){
	.f_box {margin-bottom: 50px;}
	.f_box h3,.a_txtarea h3{font-size: 18px;}
	.a_txtarea h3{width: 100%;}
	.Label {font-size: 20px;}
	.toggle:checked + .Label + .accordion {padding: 30px;}
	.accordion {margin-bottom: 30px;}
	.mt60 {margin-top: 40px;}
	.top_recruit {font-size: 16px;}
	.top_recruit_btn,.l_midashi span{font-size: 20px;}
	.top_contacttxt {font-size: 18px;}
}
@media screen and (max-width: 375px){
	.top_recruit_position img {width: 80px;}
}

/*会社概要***************/
#gaiyou table{
	width: 100%;
	border-collapse: separate;
    border-spacing: 10px;
	margin-bottom: 80px;
}
#gaiyou table th{
	background-color: #80C8EF;
	color: #fff;
	padding: 10px;
}
#gaiyou table td{
	background-color: #EDEDED;
	font-size: 16px;
	padding: 10px;
}
.g_map{
	margin-bottom: 50px;
}
.g_midashi{
	background-color: #80C8EF;
	color: #fff;
	text-align: center;
	font-weight: bold;
	padding: 5px;
	margin-bottom: 10px;
}
.g_map iframe{
	margin-bottom: 30px;
}
.g_vision{
	margin-bottom: 80px;
}
.g_vision ul li{
	margin-left: 2em;
    text-indent: -2em;
    margin-top: 10px;
}
.g_koudoushishin{
	margin-bottom: 70px;
}
.g_koudoushishin ul{
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}
.g_koudoushishin ul li{
	margin-bottom: 10px;
}
.g_koudoushishin ul li span{
	color: #80C8EF;
}
.g_m_catch{
	font-weight: bold;
	margin: 30px 0px;
}
.g_m_name{
	text-align: right;
	margin-top: 30px;
}
.g_m_name span{
	font-size: 14px;
	margin-bottom: 10px;
    display: inline-block;
}
.enkaku{
	background-color: #EDF9FF;
	margin-top: 80px;
    padding: 80px 0px;
}
/* time-schedule */
.time-schedule {
  list-style: none;
  margin: 0 auto 0 18em;
  border-left: 1px solid #000;
  box-sizing: border-box;
}

.time-schedule li {
  width: 100%;
  margin: 0 0;
  position: relative;
}

.time-schedule span.time {
	width: 250px;
  display: inline-block;
  margin-left: -15em;
	font-weight: bold;
  vertical-align: top;
  position: relative;
  box-sizing: border-box;
}

.time-schedule span.time::after {
  content: "";
  position: absolute;
  right: -33px;
  top: 0;
  background: url(../images/point.png) no-repeat;
  width: 27px;
  height: 27px;
}

.time-schedule .sch_box,.time-schedule .sch_box_l{
  display: inline-block;
  width: 100%;
  margin-left: 10px;
  vertical-align: middle;
  box-sizing: border-box;
}
.time-schedule .sch_box{padding: 0px 0px 40px 50px;}
.time-schedule .sch_box_l{padding: 0px 0px 0px 50px;margin-top: -5px;}
@media screen and (max-width: 768px){
	#gaiyou table {margin-bottom: 50px;}
	#gaiyou table th,#gaiyou table td{display: block;}
	#gaiyou table th {padding: 5px;}
	.g_map {margin-bottom: 30px;}
	.g_koudoushishin {margin-bottom: 50px;}
	.g_koudoushishin ul {flex-flow: column;}
	.enkaku {margin-top: 50px;padding: 50px 0px;}
	.time-schedule {margin: 0;border-left: none;}
	.time-schedule span.time {margin-left: 0em;padding-left: 32px}
	.time-schedule span.time::after{display: none;}
	.time-schedule span.time::before {content: "";position: absolute; left: -13px;top: 0;background: url(../images/point.png) no-repeat;width: 27px;height: 27px;}
	.time-schedule .sch_box {padding: 0px 0px 40px 30px;border-left: 1px solid #000;margin-left: 0px;}
	.time-schedule .sch_box_l {padding: 0px 0px 0px 20px;margin-top: 0px;}
}
@media screen and (max-width: 500px){
	.time-schedule .sch_box, .time-schedule .sch_box_l {width: 98%;}
}
@media screen and (max-width: 430px){
	#gaiyou table th,.g_midashi{font-size: 16px;}
	#gaiyou table td {font-size: 14px;}
	.g_m_name span {font-size: 12px;}
	.time-schedule span.time {padding-left: 20px;}
	.time-schedule span.time::before {width: 20px;height: 20px;background-size: cover;left: -9px;}
	.time-schedule .sch_box {padding: 0px 0px 40px 20px;}
	.time-schedule .sch_box_l {padding: 0px 0px 0px 10px;}
}

/*採用情報***************/
.r_right{
	text-align: right;
}
.r_midashi{
	font-size: 20px;
	text-align: center;
	background-color: #80C8EF;
	color: #fff;
	font-weight: bold;
	padding: 5px;
    margin: 10px 0px 30px;
}
#recruit table{
	border-spacing:0;
}
#recruit table th{
	color: #80C8EF;
	font-weight: bold;
	width: 22%;
    text-align: left;
}
#recruit table td{
	font-size: 17px;
	width: 70%;
}
#recruit table th,#recruit table td{
	border-bottom: 1px solid #000;
	padding: 2%;
}
#recruit table span{
	padding: 0px 20px;
}
#recruit table ul li{
	margin-left: 1.0em;
	text-indent: -1.0em;
}
.r_contact{
	background-color: #FFB948;
	text-align: center;
	color: #fff;
	font-weight: bold;
	font-size: 20px;
	padding: 10px;
    margin: 30px 0px 100px
}
.r_contact a{
	color: #0099D9;
	text-decoration: underline;
}
.r_interview{
	border: 1px solid #000;
	padding: 60px;
	margin-bottom: 80px;
}
.r_flex{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 50px;
}
.r_name{
	font-weight: bold;
	font-size: 20px;
}
.r_name span{
	font-size: 16px;
	font-weight: normal;
}
.r_busyo{
	background-color: #90C6EB;
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	padding: 5px 10px;
    margin-top: 5px;
}
.r_flex img{
	width: 15%;
}
.r_syoukai{
	width: 80%;
}
.r_wrap{
	display: flex;
	flex-flow: wrap;
	justify-content: center;
}
.r_box{
	font-size: 16px;
	width: 46.5%;
}
.r_block{
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
.r_block2{
	display: flex;
	align-items:flex-start;
}
.r_block img,.r_block2 img{
	width: 36px;
	padding-right: 10px;
}
.r_wrap .r_box:nth-child(1){
	padding: 0% 3% 3% 0%;
	border-right: 1px solid #DEDEDE;
	border-bottom: 1px solid #DEDEDE;
}
.r_wrap .r_box:nth-child(2){
	padding: 0% 0% 3% 3%;
	border-bottom: 1px solid #DEDEDE;
}
.r_wrap .r_box:nth-child(3){
	padding: 3% 3% 0% 0%;
}
.r_wrap .r_box:nth-child(4){
	padding: 3% 0% 0% 3%;
	border-left: 1px solid #DEDEDE;
}
.r_schedule{
	background-color: #EDF9FF;
	padding: 60px;
	margin-top: 50px;
}
.r_schedule_midashi{
	text-align: center;
	background-color: #fff;
	font-weight: bold;
	padding: 5px;
	margin-bottom: 40px;
}
.r_flow{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	background: url(../images/arrow_blue.png) no-repeat left 10px bottom;
	background-size: 21px;
	margin-bottom: 50px;
}
.r_schedule .r_flow:last-child{
	background:none;
	margin-bottom: 0px;
}
.r_flow div{
	width: 65%;
}
.r_flow_time{
	color: #0099D9;
	font-size: 20px;
	padding-left: 20px;
	font-weight: bold;
}
.r_flow_time span{
	font-weight: bold;
	color: #000;
	width: 80px;
    display: inline-block;
}
.r_flow_txt{
	border-top: 1px solid #707070;
	padding-left: 100px;
	padding-top: 10px;
    margin-top: 10px;
}
.r_flow img{
	width: 30%;
}
@media screen and (max-width: 960px){
	#recruit table span{padding: 0px;}
}
@media screen and (max-width: 768px){
	#recruit table th,#recruit table td{display: block;width: 96%;}
	#recruit table th{border-bottom: none;padding-bottom: 0px;}
	#recruit table td{padding-top: 5px;}
	.r_interview {padding: 40px;}
	.r_wrap .r_box{width: 100%;}
	.r_wrap .r_box:nth-child(1) {border-right: none;padding: 0 0 20px 0;}
	.r_wrap .r_box:nth-child(2) {padding: 20px 0 20px 0;}
	.r_wrap .r_box:nth-child(3) {border-bottom: 1px solid #DEDEDE;padding: 20px 0 20px 0;}
	.r_wrap .r_box:nth-child(4) {border-left: none;border-bottom: 1px solid #DEDEDE;padding: 20px 0 20px 0;}
	.r_schedule {padding: 40px;}
	.r_flow {flex-flow: column;padding-bottom: 40px;background: url(../images/arrow_blue.png) no-repeat center bottom;background-size: 21px;margin-bottom: 30px;}
	.r_schedule .r_flow:last-child {padding-bottom: 0;}
	.r_flow div {width: 100%;}
	.r_flow_time,.r_flow_txt{padding-left: 0px;}
	.r_flow_time span {width: auto;padding-right: 20px;}
	.r_flow img {width: 70%;margin: 20px auto 0px;}
}
@media screen and (max-width: 500px){
	.r_midashi {font-size: 18px;margin: 10px 0px 20px;}
	.r_contact {font-size: 16px;}
	.r_flex {flex-flow: column;}
	.r_flex img {width: 100px;margin-bottom: 10px;}
	.r_syoukai {width: 100%;}
	.r_flow img {width: 100%;}
}
@media screen and (max-width: 430px){
	#recruit table td,.r_box,.r_name span,.r_busyo,.r_flow_time{font-size: 14px;}
	.r_interview {padding: 30px;}
	.r_flex {margin-bottom: 30px;}
	.r_name {font-size: 18px;}
	.r_block img, .r_block2 img {width: 25px;}
}
@media screen and (max-width: 320px){
	.r_interview,.r_schedule{padding: 20px;}
}

/*お問い合わせ***************/
.c_txt{
	text-align: center;
	margin-bottom: 50px;
}
.c_txt a{
	color: #0099D9;
	text-decoration:underline;
}
#contact table{
	border-spacing:0;
	border-bottom: 1px solid #000;
	width: 100%;
}
#contact table th,#contact table td{
	border-top: 1px solid #000;
	padding: 10px 0px;
}
#contact table th{
	width: 45%;
}
#contact table th.top{
	vertical-align: top;
	width: 45%;
}
#contact table td{
	width: 55%;
}
.form_box{
	padding: 2%;
    width: 95%;
}
.form_item {
    text-align: left;
    display: flex;
    justify-content: space-between;
    margin-right: 20px;
}
.mandatory {
    background-color: #DE0012;
    color: #fff;
    font-weight: normal;
    text-align: center;
    font-size: 14px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
input,textarea{
	font-size: 16px;
}
.form_btn{
    margin: 20px auto 100px;
	background: url(../images/top_arrow.png) no-repeat center right 30px;
	background-size: 10px;
    background-color: #0099D9;
    border-radius: 10px;
    border: none;
    max-width: 360px;
    width: 90%;
    display: block;
    color: #fff;
    padding: 1%;
}
#policy{
	margin-bottom: 100px;
}
.policy_ttl {
    text-align: center;
    font-weight: bold;
    margin: 60px 0px 20px;
    font-size: 20px;
}
.policy_txt {
    border: 1px solid #000;
    height: 300px;
    overflow: scroll;
    padding: 4%;
    margin: 0 auto;
    font-size: 16px;
}
#thanks{
	margin-bottom: 100px;
}
.thanks_txt{
	text-align: center;
	background-color: #EDF9FF;
	padding: 5%;
}
@media screen and (max-width: 768px){
	#contact table th,#contact table td,#contact table th.top{display: block;width: 100%;}
	#contact table th{padding-bottom: 0px;}
	#contact table td{border-top: none;}
	.form_item {margin-right: 0px;}
}
@media screen and (max-width: 500px){
	.c_txt{text-align: justify;}
	.form_btn{padding: 3% 1%;}
	.policy_ttl {font-size: 16px;}
	.policy_txt {font-size: 14px;}
}

/*footer***************/
footer {
    margin-top: 40px;
	background: 
		url(../images/footer_left.png) no-repeat left bottom 30px,
		url(../images/footer_right.png) no-repeat right bottom 30px;
	background-size: 453px;
	position: relative;
}
footer .siteMap ul{
	display: flex;
    align-items: center;
    justify-content: center;
}
footer .siteMap ul li{
	font-size: 15px;
	border-left: 1px solid #80C8EF;
}
footer .siteMap ul li:last-child{
	border-right: 1px solid #80C8EF;
}
footer .siteMap ul li a{
	color: #000;
	padding: 0 40px;
}
footer .siteMap ul li a:hover{
	color: #0099D9;
}
footer .f_logo img{
	display: block;
	margin: 40px auto 30px;
	width: 350px;
}
footer .f_pagetop{
	position: absolute;
	top: -60px;
    right: 80px;
	width: 62px;
}
.copyright{
	text-align: center;
	color: #fff;
    font-size: 14px;
	background-color: #9D9D9D;
	font-family: Verdana, "Droid Sans","メイリオ","Meiryo","ＭＳ Ｐゴシック","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3",sans-serif;
	padding: 10px;
}
@media screen and (max-width: 960px){
	footer .f_logo img {margin: 40px auto 60px;}
}
@media screen and (max-width: 768px){
	footer {background-size: 300px;}
	footer .f_pagetop {right: 15px;}
}
@media screen and (max-width: 500px){
	footer {background-size: 200px;}
	footer .f_logo img {margin: 40px auto;width: 200px;}
	.copyright{font-size: 11px;}
}
@media screen and (max-width: 390px){
	footer .f_pagetop {width: 50px;}
}