@charset "utf-8";
/* CSS Document */

*{
	margin:0;
	padding:0;
}

*:focus {
  outline: none;
}

html { 
    font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Noto Sans JP', sans-serif !important;
	font-size: 14px;
    font-weight: 500;
	color: #333333;
    line-height: 1.5;
}
/*ハンバーガーメニューを表示している時はスクロールさせない*/
body.scrolloff {
    width: 100%;
    height: 100%;
    position: fixed;
}

#all_wrap {
	/*overflow: hidden;*/
}

#contents {
    width: 100vw;
    overflow-x: visible;
}

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

a {
    font-size: 14px;
	outline: none;
	color: #333333;
	text-decoration:none;
	opacity: 1;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    cursor:pointer;
}

.pc_hide {
}

.sp_hide {
	display: none !important;
}

ul{
    list-style-type: none;
}

input, textarea{
    /*bodyと同じフォントcssを入れる*/
}
input:-webkit-autofill {
    box-shadow: 0 0 0 1000px white inset;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"], input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
}

select::-ms-expand {
    display: none;
}

/*※アンカーリンクの着地点はCSSで調整*/
[id] {
  scroll-margin-top: 60px;
}

/*-----------------------------------------------------------*/
/*フォント*/

.barlow {
  font-family: "Barlow", sans-serif;
  font-style: normal;
}

.notosansjp {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
}

.mplus2 {
  font-family: "M PLUS 2", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.roboto {
  font-family: "Roboto Condensed", sans-serif;
  font-style: normal;
}

/*-----------------------------------------------------------*/
/*リンク（横幅・高さ指定無し）*/

a.btns{
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;	
}

a.btns.entry{
	width: calc( 100% - 26px );
	padding-left: 26px;
	background: url(./images/common/btn_bk01.jpg) 0 0 / cover no-repeat, #0099FF;
}
a.btns.entry::before{
	content: '';
	width: 40px;
	height: 40px;
	background: url("./images/common/arrow01.svg") 0 0 / contain no-repeat;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 25px;
}
a.btns.entry > dl{
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0 0;
}
a.btns.entry > dl dt{
	font-size: 50px;
	color: #B7F1FF;
	font-style: Italic;
	font-weight: 300;
	line-height: 120%;
}
a.btns.entry > dl dd{
	font-size: 15px;
	color: #B7F1FF;
	font-weight: 600;
}

a.btns.normal{
	width: calc( 100% - 18px );
	padding-left: 18px;
	align-items: center;
	border: 1px solid #4976C6;
	box-sizing: border-box;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
	font-family: "Barlow", sans-serif;
	color: #4976C6;
	font-size: 25px;
	font-weight: 300;
	font-style: italic;
	background: rgba(255,152,0,0.00);
}
a.btns.normal::before{
	content: '';
	width: 38px;
	height: 38px;
	background: url("./images/common/arrow02.svg") 0 0 / contain no-repeat;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 12px;
}

/*-----------------------------------------------------------*/
/*ヘッダー*/

#header_wrap {
width: 100%;
height: 60px;
position: fixed;
top: 0;
left: 0;
right: 0;
margin: auto;
z-index: 10;
}
#header_wrap:after{
	content: '';
	width: 100%;
    height: 100%;
    background-color: #fff;
	position: absolute;
	top: 0;
	z-index: 1;
}
#header_wrap #header{
    height: 100%;
    display: flex;
	justify-content: flex-end;
	align-items: center;
}
#header_wrap #header .logo{
    position: absolute;
	top: 5px;
	left: 15px;
    width: 48%;
    /*height: 50px;*/
	z-index: 2;
}
#header_wrap #header .logo img{
    width: 100%;
    height: auto;
}

.openbtn{
    position: relative;
    cursor: pointer;
    width: 80px;
    height: 30px;
    background-color: #4976C6;
	border: 1px solid #4976C6;
	box-sizing: border-box;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	margin-right: 5px;
	z-index: 2;
}
#header .openbtn::before{
    content: 'menu';
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: #fff;
	letter-spacing: 0.05em;
	position: absolute;
	top: 1px;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
}
#header .openbtn.active::before{
    /*content: 'Close';*/
}
/*※縦スクロール可*/
#g-nav{
    position: fixed;
    /*z-index: 999;*/
	z-index: 1;
    width: 100%;
	height: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    overscroll-behavior-y: none;
    background-color:#F7F7F7;
    top:0;
	opacity: 0.0;
    transition: all 0.6s;
}
#g-nav #g-nav-list{
	width: calc( 100% - 34px );
	margin: 87px auto 140px;
}
#g-nav.panelactive{
	opacity: 1.0;
    height: 100vh;
}
#g-nav.panelactive #g-nav-list::-webkit-scrollbar{
  display: none;
}

/*ハンバーガーメニュー中身*/
#g-nav .catch_logo a{
	display: flex;
	justify-content: center;
}
#g-nav .catch_logo a > img{
	width: calc( 100% - 54px );
	height: auto;
}
#g-nav .banneres{
	margin: 25px auto 15px;
}
#g-nav .banneres a > img{
	width: 100%;
	height: auto;
}

/*※採用サイトのみ公開時は.linksの外にaタグを設置*/
#g-nav .links > a{
	display: flex;
	width: 100%;
	height: 110px;
}
#g-nav .links{
	padding: 0 !important;/*これは削除*/
}
/*ここまで*/

#g-nav .links:not(.small) {
	padding: 15px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	position: relative;
	display: flex;
	justify-content: flex-end;
}
#g-nav .links.blue {
	background: url(./images/common/bn_bk01.jpg) 0 0 / cover no-repeat;
}
#g-nav .links.gray {
	margin-top: 15px;
	background: url(./images/common/bn_bk02.jpg) 0 0 / cover no-repeat;
}
#g-nav .links dl.title{
	position: absolute;
	top: 17px;
	left: 17px;
	display: flex;
	flex-direction: column;
	color: #fff;
	font-weight: 600;
}
#g-nav .links.gray dl.title{
	color: #4976C6;
}
#g-nav .links dl.title dt{
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 600;
	letter-spacing: 0.05em;
	font-size: 40px;
	line-height: 100%;
}
#g-nav .links dl.title dd{
    margin-top: 5px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.03em;
    line-height: 100%;
}
#g-nav .links ul.link{
	min-width: 102px;
	margin-top: 50px;
	display: flex;
	flex-direction: column;
	gap: 3px 0;
	border-left: 1px solid #0099FF;
	padding-left: 10px;
	display: none;
}
#g-nav .links.gray ul.link{
	padding-right: 70px;
}
#g-nav .links ul.link li a{
	font-size: 14px;
	color: #fff;
	font-weight: 500;
	letter-spacing: 0.03em;
}
#g-nav .links.small{
	margin-top: 15px;
    display: flex;
	gap: 20px;
}
#g-nav .links.small > a{
    display: flex;
	width: 50%;
	min-height: 170px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	position: relative;
}
#g-nav .links.small > a.green{
	background: url(./images/common/bn_bk03.jpg) 0 0 / cover no-repeat;
}
#g-nav .links.small > a.white{
	background: url(./images/common/bn_bk04.jpg) 0 0 / cover no-repeat;
}
#g-nav .links.small > a dl{
	position: absolute;
	top: 12px;
	left: 12px;
	display: flex;
	flex-direction: column;
	color: #fff;
	font-weight: 600;
}
#g-nav .links.small > a.white dl{
	color: #4976C6;
}
#g-nav .links.small > a dt{
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 600;
	letter-spacing: 0.05em;
	font-size: 40px;
	line-height: 100%;
}
#g-nav .links.small > a dd{
    margin-top: 5px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.03em;
    line-height: 100%;
}

/*-----------------------------------------------------------*/
/*サブメニュー*/

/*採用専用メニュー*/
.openrecruitbtn{
    position: relative;
    cursor: pointer;
    width: 80px;
    height: 30px;
    background-color: #B7F1FF;
	border: 1px solid #4976C6;
	box-sizing: border-box;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	margin-right: 5px;
	z-index: 2;
}
#header .openrecruitbtn::before{
    content: 'index';
	font-family: "Barlow", sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: #4976C6;
	letter-spacing: 0.05em;
	position: absolute;
	top: 1px;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
}
/*採用サイト ハンバーガーメニュー*/
#r-nav{
    position: fixed;
    /*z-index: 999;*/
	z-index: 1;
    width: 100%;
    height: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    overscroll-behavior-y: none;
    background-color:#F7F7F7;
    top:0;
	left: 0;
    transition: all 0.6s;
}
#r-nav.panelactive{
	opacity: 1.0;
    height: 100vh;
}
#r-nav #r-nav-list {
    width: calc(100% - 34px);
    margin: 70px auto 140px;
}
#r-nav dl.menutxt{
    display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0px 0;
	color: #4976C6;
}
#r-nav dl.menutxt dt{
    font-family: "Barlow", sans-serif;
	font-size: 40px;
	font-weight: 300;
	font-style: italic;
}
#r-nav dl.menutxt dd{
	font-family: "M PLUS 2", sans-serif;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.03em;
}
#r-nav.panelactive #r-nav-list::-webkit-scrollbar{
  display: none;
}

/*※コーポレートサイトでは使用しない*/
#all_wrap.corporate #r-nav-list{
	display: none;
}
#r-nav #r-nav-list ul{
    width: 100%;
	margin: 25px auto 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}
#r-nav #r-nav-list ul li{
    position: relative;
	width: calc( 50% - 10px );
	aspect-ratio: 1 / 1;
}
#r-nav #r-nav-list ul li.career, #r-nav #r-nav-list ul li.panf, #r-nav #r-nav-list ul li.contact, #r-nav #r-nav-list ul li.event{
	height: 105px;
}
#r-nav #r-nav-list ul li a{
    display: block;
	width: 100%;
	height: 100%;
}
#r-nav #r-nav-list ul li a > span{
    display: none;
}
#r-nav #r-nav-list ul li.message a{
	background: url(./images/common/recruitbtn01.svg) 0 0 / contain no-repeat;
}
#r-nav #r-nav-list ul li.movie a{
	background: url(./images/common/recruitbtn02.svg) 0 0 / contain no-repeat;
}
#r-nav #r-nav-list ul li.office a{
	background: url(./images/common/recruitbtn04.svg) 0 0 / contain no-repeat;
}
#r-nav #r-nav-list ul li.interview a{
	background: url(./images/common/recruitbtn03.svg) 0 0 / contain no-repeat;
}
#r-nav #r-nav-list ul li.working a{
	background: url(./images/common/recruitbtn05.svg) 0 0 / contain no-repeat;
}
#r-nav #r-nav-list ul li.data a{
	background: url(./images/common/recruitbtn06.svg) 0 0 / contain no-repeat;
}
#r-nav #r-nav-list ul li.works a{
	background: url(./images/common/recruitbtn07.svg) 0 0 / contain no-repeat;
}
#r-nav #r-nav-list ul li.fresh a{
	background: url(./images/common/recruitbtn08.svg) 0 0 / contain no-repeat;
}
#r-nav #r-nav-list ul li.career a{
	background: url(./images/common/recruitbtn09.svg) 0 0 / contain no-repeat;
}
#r-nav #r-nav-list ul li.panf a{
	background: url(./images/common/recruitbtn10.svg) 0 0 / contain no-repeat;
}
#r-nav #r-nav-list ul li.contact a{
	background: url(./images/common/recruitbtn11.svg) 0 0 / contain no-repeat;
}
#r-nav #r-nav-list ul li.event a{
	background: url(./images/common/recruitbtn12.svg) 0 0 / contain no-repeat;
}
#r-nav #r-nav-list .banner{
	width: 100%;
	height: 105px;
	margin: 20px auto 0;
}

/*コーポレートサイト ハンバーガーメニュー*/
/*※コーポレートサイトでは使用しない*/
#all_wrap.recruit #a-nav-list{
	display: none;
}

#all_wrap.corporate nav#r-nav{
	background-color: #4976C6;
}
#r-nav #a-nav-list {
    width: calc(100% - 34px);
    margin: 78px auto 140px;
	position: relative;
}
#r-nav #a-nav-list::before{
	content: '';
	position: absolute;
	top: -18px;
	left: -17px;
	width: 100%;
	height: 100%;
	background: url("./images/common/a-nav_bg.png") left top / contain no-repeat;
	aspect-ratio: 393 / 100;
	z-index: -1;
}
#r-nav #a-nav-list h2{
	width: 100%;
}
#r-nav #a-nav-list h2 dl{
	text-align: center;
}
#r-nav #a-nav-list h2 dl dt{
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #fff;
	font-size: 40px;
	line-height: 100%;
}
#r-nav #a-nav-list h2 dl dd{
	margin-top: 10px;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: #fff;
	font-size: 15px;
	line-height: 100%;
}

#header_wrap #r-nav #a-nav-list ul{
    width: 100%;
	margin: 17px auto 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 13px 0;
}
#header_wrap #r-nav #a-nav-list ul li{
    position: relative;
	width: 100%;
}
#header_wrap #r-nav  #a-nav-list ul li a{
	display: flex;
	width: calc( 100% - 68px );
	padding: 12px 34px;
	background-color: #E6EBF3;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}
#header_wrap #r-nav  #a-nav-list ul li a dl dt{
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #4976C6;
	font-size: 40px;
	line-height: 100%;
}
#header_wrap #r-nav  #a-nav-list ul li a dl dd{
	margin-top: 5px;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: #4976C6;
	font-size: 15px;
	line-height: 100%;
}

/*-----------------------------------------------------------*/
/*コアページ（共通）*/

main#coa{
	margin-top: 60px;
	margin-bottom: 65px;
	/*仮
	z-index: -1;
    position: relative;*/
}

section > .inner{
    width: calc( 100% - 30px );
    padding: 0 15px;
    margin: auto;
    position: relative;
}

/*職種のclass*/
main.recruit_top .type.app, main.career .type.app, main.employee .type.app {
	color: #13B292;
}
main.recruit_top .type.infra, main.career .type.infra, main.employee .type.infra {
	color: #97AFC7;
}
main.recruit_top .type.development, main.career .type.development, main.employee .type.development {
	color: #0099FF;
}
main.recruit_top .type.intro, main.career .type.intro, main.employee .type.intro {
	color: #4976C6;
}
main.recruit_top .type.architect, main.career .type.architect, main.employee .type.architect {
	color: #887FCB;
}
main.recruit_top .type.support, main.career .type.support, main.employee .type.support {
	color: #FF9800;
}

/*リクルートサイト*/
#all_wrap.recruit section > .inner h2.hd{
	margin: 0 auto 15px;
}
#all_wrap.recruit section > .inner h2.hd dl{
	display: flex;
	flex-direction: column;
	gap: 0 0;
	color: #4976C6;
	padding: 0 0 15px;
	border-bottom: 1px solid #89DDFF;
}
#all_wrap.recruit section > .inner h2.hd dl dt{
	font-family: "Barlow", sans-serif;
	font-size: 50px;
	font-weight: 300;
	font-style: italic;
}
#all_wrap.recruit section > .inner h2.hd dl dd{
	font-size: 17px;
	font-weight: 700;
}

/*コーポレートサイト*/
#all_wrap.corporate #titleblock{
    display: flex;
	align-items: center;
	width: 100%;
	height: 100px;
	background: url("./images/common/title_sp.jpg") center top / cover no-repeat;
	aspect-ratio: 393 / 100;
	margin-top: 60px;
}
#all_wrap.corporate #titleblock h2{
	width: 100%;
}
#all_wrap.corporate #titleblock dl{
	text-align: center;
}
#all_wrap.corporate #titleblock dl dt{
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #fff;
	font-size: 40px;
	line-height: 100%;
}
#all_wrap.corporate #titleblock dl dd{
	margin-top: 10px;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: #fff;
	font-size: 15px;
	line-height: 100%;
}

#all_wrap.corporate #contentsflex{
	margin-top: 60px;
}
#all_wrap.corporate #contentsflex #sidebar{
	display: none;
}
#all_wrap.corporate #contentsflex #mainbody section > .inner{
    max-width: none;
    padding: 0;
}
#all_wrap.corporate section > .inner h3.hd{
	margin: 0 auto 15px;
}
#all_wrap.corporate section > .inner h3.hd dl{
	display: flex;
	flex-direction: column;
	gap: 0 0;
	color: #4976C6;
	padding: 0 0 15px;
	border-bottom: 1px solid #fff;
}
#all_wrap.corporate section > .inner h3.hd dl dt{
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #4976C6;
	font-size: 50px;
	line-height: 100%;
}
#all_wrap.corporate section > .inner h3.hd dl dd{
	margin-top: 5px;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: #4976C6;
	font-size: 20px;
	line-height: 100%;
}
#all_wrap.corporate section#anchor{
	margin-bottom: 20px;
}
#all_wrap.corporate section#anchor h3.hd{
	font-family: "Roboto Condensed", sans-serif;
	color: #4976C6;
	font-weight: 500;
	font-size: 30px;
	letter-spacing: 0.05em;
	text-align: center;
}
#all_wrap.corporate section#anchor ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 5px;
}
#all_wrap.corporate section#anchor ul li a{
	display: flex;
	background-color: #fff;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;	
	padding: 15px;
	color: #4976C6;
	letter-spacing: 0.03em;
	font-weight: 700;
	line-height: 100%;
}


/*-----------------------------------------------------------*/
/*フッター*/

#footer_wrap{
}
#footer_wrap > .inner{
	width: calc( 100% - 30px );
	margin: 0 auto;
	padding: 0 0 20px;
}

#footer_wrap > .inner > .left{
}
#footer_wrap > .inner > .left dl.logo{	
}
#footer_wrap > .inner > .left dl.logo dt{
	width: 255px;
}
#footer_wrap > .inner > .left dl.logo dd{
	margin-top: 10px;
	font-size: 12px;
	font-weight: 700;
	color: #4976C6;
	letter-spacing: 0.03em;
}

#footer_wrap > .inner > .right{
	margin-top: 30px;
}
#footer_wrap > .inner > .right .sitemap{
	width: calc( 100% - 55px );
	margin: 0 auto;
	display: grid;
	/*
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 0fr);
	gap: 30px 35px;
	*/
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(1, 1fr);
	gap: 20px 35px;
}
/*
#footer_wrap > .inner > .right .sitemap dl:not(:last-of-type){
	display: flex;
	flex-direction: column;
	gap: 10px 0;
	width: fit-content;
}
#footer_wrap > .inner > .right .sitemap dl:last-of-type{
	grid-column: span 2 / span 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 0fr);
    gap: 8px;
}
#footer_wrap > .inner > .right .sitemap dl:last-of-type dt:nth-of-type(2){
	grid-column-start: 1;
    grid-row-start: 2;
}
#footer_wrap > .inner > .right .sitemap dl:last-of-type dt:nth-of-type(3){
	grid-column-start: 1;
    grid-row-start: 3;
}
#footer_wrap > .inner > .right .sitemap dl:last-of-type dt:nth-of-type(4){
	grid-column-start: 2;
    grid-row-start: 1;
}
#footer_wrap > .inner > .right .sitemap dl:last-of-type dt:nth-of-type(5){
	grid-column-start: 2;
    grid-row-start: 2;
}
*/
#footer_wrap > .inner > .right .sitemap dl:nth-of-type(2){
	grid-column-start: 1;
	grid-row-start: 2;
}
#footer_wrap > .inner > .right .sitemap dl:nth-of-type(3){
	grid-row: span 2 / span 2;
	grid-column-start: 2;
	grid-row-start: 1;
	display: flex;
	flex-direction: column;
	gap: 15px 0;
}

/**/
#footer_wrap > .inner > .right .sitemap dl dt a{
	font-size: 13px;
	color: #4976C6;
	font-weight: 700;
	letter-spacing: 0.03em;
}
#footer_wrap > .inner > .right .sitemap dl dd{
	display: flex;
	gap: 0 43px;
	display: none !important;/*リクルートサイト公開時、非表示*/
}
#footer_wrap > .inner > .right .sitemap dl:nth-of-type(1) dd > ul{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(5, 1fr);
	gap: 0;
}
#footer_wrap > .inner > .right .sitemap dl dd > ul li:nth-child(2){
	grid-column-start: 1;
	grid-row-start: 2;
}
#footer_wrap > .inner > .right .sitemap dl dd > ul li:nth-child(3){
 grid-column-start: 1;
    grid-row-start: 3;
}
#footer_wrap > .inner > .right .sitemap dl dd > ul li:nth-child(4){
    grid-column-start: 1;
    grid-row-start: 4;
}
#footer_wrap > .inner > .right .sitemap dl dd > ul li:nth-child(5){
    grid-column-start: 1;
    grid-row-start: 5;
}
#footer_wrap > .inner > .right .sitemap dl dd > ul li:nth-child(6){
    grid-column-start: 2;
    grid-row-start: 1;
}
#footer_wrap > .inner > .right .sitemap dl dd > ul li:nth-child(7){
    grid-column-start: 2;
    grid-row-start: 2;
}
#footer_wrap > .inner > .right .sitemap dl dd > ul li:nth-child(8){
    grid-column-start: 2;
    grid-row-start: 3;
}
#footer_wrap > .inner > .right .sitemap dl dd a{
	font-size: 10px;
	color: #4976C6;
	font-weight: 400;
	letter-spacing: 0.03em;
}

#footer_wrap > .inner > .right .address{
	margin: 30px auto 0;
	border-top: 1px solid #4976C6;
	padding-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 30px 0;
}
#footer_wrap > .inner > .right .address > dl{
	width: calc( 100% - 55px );
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 10px 0;
}
#footer_wrap > .inner > .right .address > dl dt{
	font-size: 13px;
	color: #4976C6;
	font-weight: 700;
	letter-spacing: 0.03em;
}
#footer_wrap > .inner > .right .address > dl dd{
	font-size: 10px;
	color: #4976C6;
	font-weight: 400;
	line-height: 180%;
	letter-spacing: 0.03em;
}
#footer_wrap > .inner > .right .copy{
	width: calc( 100% - 55px );
	margin: 50px auto 0;
	font-family: "M PLUS 2", sans-serif;
	font-size: 9px;
	color: #4976C6;
	font-weight: 400;
	letter-spacing: 0.00em;
}

/*-----------------------------------------------------------*/
/*to top*/

#pagetop {
    display: none;
}

/*-----------------------------------------------------------*/
/*アニメーション*/

/*フェードアップ*/
.fadeUpTrigger, .afterloadfadeUp{
    opacity: 0;
}
.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);
  }
}

/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/