@charset "utf-8";

a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

/* ##########################################################################
Add Reset
########################################################################## */

ul{list-style:none}

/* ##########################################################################
Base
########################################################################## */

/* For Links
---------------------------------------------- */

a,a:active,a:visited,a:focus,a:hover{
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

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

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

/* For input
---------------------------------------------- */

input,textarea {
	outline: none;
}

textarea {
	resize: none;
}

/* Boxsizing
---------------------------------------------- */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/* Image
---------------------------------------------- */

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

/* fonts
---------------------------------------------- */

b, strong, .bold{
	font-family: "dnp-shuei-mgothic-std", "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	font-weight: 600;
	font-style: normal;
}

.kaisei-tokumin-regular {
  font-family: "Kaisei Tokumin", serif;
  font-weight: 400;
  font-style: normal;
}

.kaisei-tokumin-medium {
  font-family: "Kaisei Tokumin", serif;
  font-weight: 500;
  font-style: normal;
}

.kaisei-tokumin-bold {
  font-family: "Kaisei Tokumin", serif;
  font-weight: 700;
  font-style: normal;
}

.kaisei-tokumin-extrabold {
  font-family: "Kaisei Tokumin", serif;
  font-weight: 800;
  font-style: normal;
}

.dela-gothic-one-regular {
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* ##########################################################################
Module
########################################################################## */

.mb20{
	margin-bottom: 20px;
}
.mb40{
	margin-bottom: 40px;
}
.mb60{
	margin-bottom: 60px;
}
.mb80{
	margin-bottom: 80px;
}

/* Block Span
---------------------------------------------- */

.m-block{
	display: inline;
}

@media screen and (max-width: 767px){
	.m-block{
		display: block;
	}
}

/* PC block SP block
---------------------------------------------- */

.pc-block{
	display: block;
}

.sp-block{
	display: none;
}

@media screen and (max-width: 960px){
	.pc-block{
		display: none;
	}
	.sp-block{
		display: block;
	}
}

/* Google reCAPTCHA v3
---------------------------------------------- */

.grecaptcha-badge {
	visibility: hidden;
}

.recaptcha .grecaptcha-badge {
	visibility: visible;
}

/* ##########################################################################
Frame
########################################################################## */

html {
	-webkit-text-size-adjust: none;
	-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
	font-family: "dnp-shuei-mgothic-std", "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 1.6;
	width: 100%;
    background: linear-gradient(135deg, #d6f5d6, #ffffcc, #d6f0ff);
    transition: background 0.5s ease;
}

body#page {
    background: linear-gradient(0deg, #d6f5d6, #ffffcc, #d6f0ff);
	background-size: 200% 200%;
    animation: GradietionAnimation 20s ease infinite;
}

body#recruit {
    background: #000;
	color: #fff;
}

@keyframes GradietionAnimation {
  0% {
	background-position:50% 0%;
	}
  50% {
	background-position:50% 100%;
	}
  100% {
	background-position:50% 0%;
	}
}

/* recruit intro
---------------------------------------------- */

#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #000;
	z-index: 9999999;
	text-align:center;
	color:#fff;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 30px;
	letter-spacing: 0.1em;
}

/*========= 画面遷移のためのCSS ===============*/

body#recruit{
    background:#f4ead0;
}

body#recruit.appear{
    background:#000;
}

.splashbg{
    display: none;
	content: "";
	position:fixed;
	transform: scale(100);
	background-color: #f4ead0;
	z-index: 999;
    top:calc(50% - 1rem);
    left:calc(50% - 1rem);
	width: 2rem;
	height: 2rem;
}

body#recruit.appear .splashbg{
    display: block;
    border-radius: 50%;	
	animation-name:PageAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes PageAnime{
	0% {
		transform: scale(100);
	
	}
	100% {
		transform: scale(0);
		display: none;
	}
}

body#recruit .container{
	opacity: 0;
}

body#recruit.appear .container{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

@media screen and (max-width: 960px){
	#splash-logo {
		font-size: 16px;
	}
}

/* container
---------------------------------------------- */

.container{
	width: 100%;
	height: auto;
    position: relative;
}

/* header
---------------------------------------------- */

header {
	width: 100%;
	padding: 20px 160px 10px 160px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 40;
	border-bottom: 2px solid #60a831;
	background: rgba(255,252,225,0.5);
}

body#page header {
	background: rgba(255,252,225,0.5);
}

body#recruit header {
	background: rgba(0,0,0,1.0);
}

header h1 {
	width: 20%;
}

svg#header-logo {
  filter:
    drop-shadow(0 0 4px #ffffff)
    drop-shadow(0 0 8px #ffffff)
    drop-shadow(0 0 12px #ffffff);
}

body#recruit header svg#header-logo {
  filter:
  	drop-shadow(0 0 1px #ffffff)
    drop-shadow(0 0 6px #ffffff)
}

nav{
	width: 60%;
}

/*========= pc-menu ===============*/

ul.pc-menu {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-around;
	font-family: "Helvetica Neue" , Helvetica , Arial , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
}

ul.pc-menu li {
	width: 25%;
}

.pc-btn01 {
    position: relative;
    display: inline-block;
    width:100%;
    max-width: 250px;
    height: 40px;
    line-height: 40px;
    outline: none;
}

.pc-btn01 span {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
	padding-left: 28px;
    font-weight: bold;
    transform-style: preserve-3d;
    transition: 0.3s;
}

.pc-btn01 span::before {
	content: "";
	display: inline-block;
	position: absolute;
	background-size: cover;
	background-repeat: no-repeat;
}

.pc-menu01 span::before {
	background-image: url("../images/menu_icon01.png");
	width: 24px;
	height: 19px;
	top: 10px;
	left: 0;
}
.pc-menu01:hover span::before {
	background-image: url("../images/menu_icon01_on.png");
}
.pc-menu02 span::before {
	background-image: url("../images/menu_icon02.png");
	width: 24px;
	height: 20px;
	top: 10px;
	left: 0;
}
.pc-menu02:hover span::before {
	background-image: url("../images/menu_icon02_on.png");
}
.pc-menu03 span::before {
	background-image: url("../images/menu_icon03.png");
	width: 24px;
	height: 25px;
	top: 8px;
	left: 0;
}
.pc-menu03:hover span::before {
	background-image: url("../images/menu_icon03_on.png");
}
.pc-menu04 span::before {
	background-image: url("../images/menu_icon04.png");
	width: 18px;
	height: 25px;
	top: 8px;
	left: 6px;
}
.pc-menu04:hover span::before {
	background-image: url("../images/menu_icon04_on.png");
}

/* recruit */
body#recruit .pc-menu01 span::before {
	background-image: url("../images/menu_icon01_r.png");
}
body#recruit .pc-menu01:hover span::before {
	background-image: url("../images/menu_icon01_r_on.png");
}
body#recruit .pc-menu02 span::before {
	background-image: url("../images/menu_icon02_r.png");
}
body#recruit .pc-menu02:hover span::before {
	background-image: url("../images/menu_icon02_r_on.png");
}
body#recruit .pc-menu03 span::before {
	background-image: url("../images/menu_icon03_r.png");
}
body#recruit .pc-menu03:hover span::before {
	background-image: url("../images/menu_icon03_r_on.png");
}
body#recruit .pc-menu04 span::before {
	background-image: url("../images/menu_icon04_r.png");
}
body#recruit .pc-menu04:hover span::before {
	background-image: url("../images/menu_icon04_r_on.png");
}

/*== くるっと回転（手前に） */

.rotatefront span:nth-child(1) {
    color: #77502d;
    transform: rotateX(0deg);
    transform-origin: 0 50%  -7px;
}

body#recruit .rotatefront span:nth-child(1) {
    color: #ffffff;
}

.rotatefront:hover span:nth-child(1) {
    transform: rotateX(-90deg);
}

.rotatefront span:nth-child(2) {
    color: #000;
    transform: rotateX(90deg);
    transform-origin: 0 50%  -7px;
}

body#recruit .rotatefront span:nth-child(2) {
    color: #77502d;
}

.rotatefront:hover span:nth-child(2) {
    transform: rotateX(0deg);
}

.header-contact {
	width: 20%;
}

.header-contact a span {
	width: 200px;
	display: block;
	position: relative;
	background-color: #ef873b;
	color: #fff;
	padding: 6px 25px 6px 35px;
	border-radius: 25px;
	box-shadow: 2px 2px 8px #333;
}

.header-contact a:hover span {
	background-color: #f97615;
}

.header-contact a span::after {
	content: "";
	display: inline-block;
	position: absolute;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url("../images/mail_icon.png");
	width: 24px;
	height: 17px;
	top: 10px;
	right: 35px;
	transform: scale(1.0);
	transition: all .3s;
}

.header-contact a:hover span::after {
	transform: scale(1.16);
}

@media screen and (max-width: 1200px){
	header {
		padding: 20px 20px 10px 20px;
	}
	header h1 {
		width: 15%;
		margin-right: 5%;
	}
	header h1 svg{
		width: 100%;
	}
	nav{
		width: 60%;
	}
	/*========= pc-menu ===============*/
	ul.pc-menu {
		width: 90%;
	}
	ul.pc-menu li:first-child {
		width: 24%;
	}
	ul.pc-menu li:nth-of-type(2) {
		width: 26%;
	}
	ul.pc-menu li:nth-of-type(3) {
		width: 28%;
	}
	ul.pc-menu li:nth-of-type(4) {
		width: 22%;
	}
	.header-contact {
		width: 20%;
	}
	.header-contact a span {
		width: 160px;
		padding: 6px 10px 6px 15px;
	}
	.header-contact a span::after {
		top: 10px;
		right: 15px;
	}
}

@media screen and (max-width: 960px){
	header {
		padding: 8px 20px 6px;
		border-bottom: 1px solid #60a831;
	}
	#header-logo {
		width: 80px;
	}
	nav{
		width: auto;
	}
	ul.pc-menu{
		display: none;
	}
	.header-contact{
		display: none;
	}
	/*========= sp-menu ===============*/
	.openbtn{
		position: fixed;
		background: linear-gradient(180deg, #28cfb3, #59a463);
		cursor: pointer;
		width: 50px;
		height:50px;
		border-radius: 0 0 5px 5px;
		box-shadow: 2px 2px 8px #333;
		z-index: 70;
		top: 0;
		right: 0;
	}
	.openbtn span{
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 14px;
		height: 3px;
		border-radius: 2px;
		background: #fff;
	}
	.openbtn p {
		font-size: 10px;
		letter-spacing: 0.1em;
		color: #fff;
		position: absolute;
		bottom: 2px;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
	}
	.openbtn span:nth-of-type(1) {
		top:10px;	
		width: 45%;
	}
	.openbtn span:nth-of-type(2) {
		top:18px;
		width: 35%;
	}
	.openbtn span:nth-of-type(3) {
		top:26px;
		width: 20%;
	}
	.openbtn.active span:nth-of-type(1) {
		top: 13px;
		left: 18px;
		transform: translateY(6px) rotate(-135deg);
		width: 30%;
	}
	.openbtn.active span:nth-of-type(2) {
		opacity: 0;
	}
	.openbtn.active span:nth-of-type(3){
		top: 25px;
		left: 18px;
		transform: translateY(-6px) rotate(135deg);
		width: 30%;
	}
	/* spナビゲーション位置 */
	#sp-nav{
		position: absolute;
		z-index: 60;
		top:0px;
		right:0px;
	}
	.spnavi{
		list-style: none;
		letter-spacing: 0.1em;
		font-family: "Helvetica Neue" , Helvetica , Arial , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	}
	.spnavi a{
		display: block;
		padding:10px 30px;	
		color: #fff;
		font-size: 1rem;
		font-weight: bold;
		text-decoration: none;
		line-height: 1.2em;
		position: relative;
	}
	.spnavi a:hover{
		color: #fff;
	}
	.spnavi a::after{
		content: '';
		position: absolute;
		bottom: 10px;
		left: 0;
		width: 100%;
		height: 2px;
		background:#fff;
		transition: all .3s;
		transform: scale(0, 1);
		transform-origin: left top;
	}
	.spnavi a:hover::after {
		transform: scale(1, 1);
	}
	.spnavi a span{
		display: block;
		color: #fff;
		font-size: 0.8rem;
		font-weight: normal;
	}
	/*==================================================
	　クリックしたら円形背景が拡大（右上から）
	===================================*/
	#sp-nav.panelactive{
		position: fixed;
		z-index: 50;
		top: 0;
		right: 0;
		width:100%;
		height: 100vh;
	}
	.circle-bg{
		position: fixed;
		z-index:40;
		width: 100px;
		height: 100px;
		border-radius: 50%;
		background: #28cfb3;
		opacity: 0.9;
		transform: scale(0);
		right:-50px;
		top:-50px;
		transition: all .8s;
	}
	.circle-bg.circleactive{
		transform: scale(50);
	}
	/*ナビゲーションの縦スクロール*/
	#sp-nav-list{
		display: none;
		position: fixed;
		z-index: 60; 
		width: 100%;
		height: 100vh;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
	#sp-nav.panelactive #sp-nav-list{
		display: block;
	}
	#sp-nav ul {
		opacity: 0;
		position: absolute;
		z-index: 60;
		top:45%;
		left:50%;
		transform: translate(-45%,-50%);
	}
	#sp-nav.panelactive ul {
		opacity:1;
		flex-wrap: wrap;
	}
	#sp-nav.panelactive li{
		text-align: left; 
		width: 100%;
	}
	#sp-nav.panelactive li a{
		display: block;
		padding: 15px 0;
	}
}

/*==================================================
Effect Animation
===================================*/

/* ロード時に一瞬表示される問題に対応 */
.eachTextAnime {
  opacity: 0;
  visibility: hidden;
}

.eachTextAnime.appeartext {
  opacity: 1;
  visibility: visible;
}

.eachTextAnime span {
	opacity: 0;
}

.eachTextAnime.appeartext span {
	animation-name: text_anime_on;
	animation-duration: 0.8s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}

@keyframes text_anime_on {
	0% {
		opacity:0;
	}
	100% {
		opacity:1;
	}
}

/* フェードイン */
.fadeInTrigger{
    opacity: 0;
}

.fadeIn{
	animation-name:fadeInAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ブラーイン */
.blurTrigger{
    opacity: 0;
}

.blur{
	animation-name:blurAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
	opacity: 0;
  }

  to {
	filter: blur(0);
	transform: scale(1);
	opacity: 1;
  }
}

/* 左から */
.fadeLeftTrigger{
    opacity: 0;
}

.fadeLeft{
	animation-name: fadeLeftAnime;
	animation-duration: 1.2s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeLeftAnime{
	from{
		opacity: 0;
		transform: translateX(-60%);
	}
	to{
		opacity: 1;
		transform: translateX(0);
	}
}

.service-flow-board div.fadeLeft{
	animation-duration: 0.6s;
}

/* 滑らかに変形して出現 */
.smoothTrigger{
    opacity: 0;
}

.smooth{
	animation-name:smoothAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    transform-origin:left;
	opacity:0;
}

@keyframes smoothAnime{
  from {
  transform:translate3d(0, 100%, 0) skewY(12deg);
  opacity:0;
  }

  to {
  transform:translate3d(0, 0, 0) skewY(0);
  opacity:1;
  }
}

/* フェードイン */
.fadeUp {
	animation-name:fadeUpAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/* タイピング */
.TextTyping span {
	display: none;
}

.TextTyping::after {
 	content: "|";
	animation: typinganime .8s ease infinite;
	font-family: "Helvetica Neue" , Helvetica , Arial , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
}

@keyframes typinganime{
	from{
		opacity:0;
	}
	to{
		opacity:1;
	}
}

/* 遅延・順番に表示で使用 */
.delay-time02 {
	animation-delay: 0.2s;
}
.delay-time04 {
	animation-delay: 0.4s;
}
.delay-time06 {
	animation-delay: 0.6s;
}
.delay-time08 {
	animation-delay: 0.8s;
}

/*==================================================
button
===================================*/

.link-btn01{
	position: relative;
	text-decoration: none;
	display: inline-block;
	background: linear-gradient(180deg, #28cfb3, #72d7cc);
	color:#fff;
	font-weight: 600;
    padding: 8px 40px 8px 30px;
	border-radius:25px;
    text-align: center;
    outline: none;
    transition: ease .2s;
}

.link-btn01:hover{
	color:#fff;
	background: linear-gradient(180deg, #28cfb3, #28cfb3);
}

.btnarrow2::after{
    content: '';
	position: absolute;
    top:42%;
    right: 23px;
    width: 5px;
    height: 5px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}

.btnarrow2:hover::after{
  animation: arrow .5s;
}

@keyframes arrow {
  50% {
    right: 20px;
  }
  100% {
    right: 23px;
  }
}

@media screen and (max-width: 767px){
	.link-btn01{
		padding: 8px 30px 8px 20px;
	}
	.btnarrow2::after{
		right: 13px;
	}
	@keyframes arrow {
		50% {
			right: 10px;
		}
		100% {
			right: 13px;
		}
	}
}

/* footer
---------------------------------------------- */

footer#top-footer {
	width: 100%;
	position: relative;
}

.top-footer-inner {
	width: 100%;
	background-image: url("../images/top-footer-bg.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left top;
	padding-bottom: 300px;
}

.top-sponsor {
	width: 100%;
	padding: 200px 160px 80px;
}

.top-sponsor p {
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	color: #77502d;
	margin-bottom: 40px;
}

.top-sponsor-box {
	width: 320px;
	margin: 0 auto;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}

.top-sponsor-box div:first-child{
	width: 112px;
}

.top-sponsor-box div:nth-of-type(2){
	width: 170px;
}

/* sitemaps */
.top-footer-inner .sitemaps{
	width: 100%;
	padding: 0px 160px 80px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	color: #62a738;
	font-weight: bold;
	filter: drop-shadow(0 0 0.3rem #fff5d5);
}

.top-footer-inner .sitemaps p{
	-webkit-text-stroke: 2px #fff5d5;
	paint-order: stroke;
	filter: drop-shadow(0 0 0.3rem #fff5d5);
}

.top-footer-inner .sitemaps a{
	color: #62a738;
	-webkit-text-stroke: 2px #fff5d5;
	paint-order: stroke;
	filter: drop-shadow(0 0 0.3rem #fff5d5);
}

/* safariのみ光彩が強くかかる事象に対応 */
_::-webkit-full-page-media, _:future, :root .top-footer-inner .sitemaps {
	filter: drop-shadow(0 0 0.5rem #fff5d5);
}

footer#page-footer {
	width: 100%;
	position: static;
}

.page-footer-inner {
	width: 100%;
	background-color: #62a738;
}

.page-footer-inner .sitemaps{
	width: 100%;
	padding: 60px 160px 120px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	color: #fff;
	font-weight: bold;
}

.page-footer-inner .sitemaps a{
	color: #fff;
}

.sitemaps a:hover{
	color: #77502d;
}

.sitemaps-info{
	width: 35%;
}

.sitemaps-info h4{
	margin-bottom: 5px;
}

.sitemaps-info h4 img{
	width: 240px;
}

.top-footer-inner .sitemaps-info p{
	margin-left: 10px;
}

.page-footer-inner .sitemaps-info p{
	margin-left: 0px;
}

.sitemaps-link{
	width: 60%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-top: 10px;
}

.sitemaps-link div{
	width: 32%;
}

.sitemaps-link div dl dt{
	font-size: 18px;
	font-family: "Helvetica Neue" , Helvetica , Arial , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	font-weight: bold;
	padding: 5px 0;
}

.sitemaps-link div dl dd{
	font-size: 14px;
	padding: 5px 0;
}

@media screen and (max-width: 1200px){
	.sitemaps{
		padding: 0px 40px 80px;
	}
}

@media screen and (max-width: 960px){
	.top-footer-inner .sitemaps{
		width: 100%;
		padding: 0px 40px 80px;
	}
	.page-footer-inner .sitemaps{
		width: 100%;
		padding: 60px 40px 80px;
	}
}

@media screen and (max-width: 767px){
	footer#top-footer {
		margin-top: 100px;
	}
	.top-footer-inner {
		width: 100%;
		min-height: 800px;
		background-image: url("../images/top-footer-bg-sp.webp");
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center bottom;
	}
	.top-sponsor {
		padding: 0px 30px 50px;
	}
	.top-sponsor p {
		font-size: 14px;
		margin-bottom: 30px;
	}
	.top-sponsor-box {
		width: 100%;
		justify-content:center;
		align-items: center;
	}
	.top-sponsor-box div:first-child{
		width: 90px;
		margin: 0 10px;
	}
	.top-sponsor-box div:nth-of-type(2){
		width: 136px;
		margin: 0 10px;
	}
	.top-footer-inner .sitemaps{
		padding: 0 20px;
		flex-wrap: wrap;
	}
	.page-footer-inner .sitemaps{
		padding: 50px 20px;
		flex-wrap: wrap;
	}
	.sitemaps-info{
		width: 90%;
		margin: 0 auto;
	}
	.sitemaps-info p{
		font-size: 12px;
		margin-bottom: 20px;
	}
	.sitemaps-link{
		width: 90%;
		margin: 0 auto;
	}
	.sitemaps-link div{
		width: 50%;
		padding: 0 10px;
	}
	.sitemaps-link div.sitemaps-cl02{
		order: 1;
	}
	.sitemaps-link div.sitemaps-cl03{
		order: 3;
	}
	.sitemaps-link div.sitemaps-cl04{
		order: 2;
	}
	.sitemaps-link div dl{
		margin-bottom: 20px;
	}	
	.sitemaps-link div dl dt{
		font-size: 14px;
		padding-bottom: 5px;
	}
	.sitemaps-link div dl dd{
		font-size: 12px;
		padding: 2px 10px;
	}
}
