@charset "UTF-8";

/* Table Of Contents
----------------------------------------------------------------------------
General Elements
header
gNav
visual
topicPath
footer
---------------------------------------------------------------------------- */


/*General Elements
---------------------------------------------------------------------------- */
html {
	font-size: 62.5%;
}

body {
	font-family: 'Noto Sans JP', YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	color: #000;
	letter-spacing: 0.05em;
}

a {
	text-decoration: underline;
	outline: none;
}

a:hover,
a:active,
a:visited,
a:focus {
	text-decoration: none;
}

* {
	box-sizing: border-box;
}

img {
	max-width: 100%;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
	font-family: 'Noto Sans JP', YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
	color: #000;
}

strong {
  font-weight: 700;
}

@media screen and (max-width: 767px){

	body {
		font-size: 1.5rem;
	}

	body.no-scroll {
	  overflow: hidden;
	  height: 100%; /* モバイルでのスクロール防止対策 */
	}

}




/*l-header
---------------------------------------------------------------------------- */
.l-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 90px;
	background: #fff;
	z-index: 10;
	width: 100%;
	top: 0;
	left: 0;
	position: fixed;
}

.l-header .logo {
	max-width: 415px;
	margin-left: 30px;
}

.l-header .logo a {
	display: block;
	transition: .3s;
}

@media screen and (min-width: 768px){

	.l-header .logo a:hover {
		opacity: .8;
	}
}

@media screen and (max-width: 767px){

	.l-header {
		height: 50px;
	}

	.home .l-header {
		background: none;
		transition: .3s;
	}

	.home .l-header.is-scroll {
		background: #fff;
	}

	.l-header .logo {
		max-width: 207px;
		margin-left: 12px;
	}

	.home .l-header .logo {
		position: relative;
	}

	.home .l-header .logo::before {
		position: absolute;
		content: "";
		width: 100%;
		height: 100%;
		background: url("../../images/common/header_logo_wt.svg")no-repeat;
		background-size: 100%;
		z-index: 1;
		top: 0;
		left: 0;
		transition: .3s;
	}

	.home .l-header.is-scroll .logo::before {
		opacity: 0;
	}


	/*=============================
	.btn-trigger
	=============================*/
	.btn-trigger {
		background: #003670;
		position: relative;
		width: 50px;
		height: 50px;
		cursor: pointer;
		z-index: 100;
	}
	.btn-trigger span {
	  position: absolute;
		left: 50%;
  	margin-left: -7px;
	  width: 15px;
	  height: 1px;
	  background-color: #fff;
	}
	.btn-trigger, .btn-trigger span {
	  display: inline-block;
	  transition: all .5s;
	  box-sizing: border-box;
	}
	.btn-trigger span:nth-of-type(1) {
	  top: 18px;
	}
	.btn-trigger span:nth-of-type(2) {
	  top: 25px;
	}
	.btn-trigger span:nth-of-type(3) {
	  bottom: 17px;
	}


	/*=============================
	#btn05
	=============================*/

	#btn05.active {
		background: none;
	}
	#btn05.active span:nth-of-type(1) {
	  -webkit-transform: translateY(6px) rotate(-45deg);
	  transform: translateY(6px) rotate(-45deg);
	}
	#btn05.active span:nth-of-type(2) {
	  left: 50%;
	  opacity: 0;
	  -webkit-animation: active-btn05-bar02 .8s forwards;
	  animation: active-btn05-bar02 .8s forwards;
	}
	@-webkit-keyframes active-btn05-bar02 {
	  100% {
	    height: 0;
	  }
	}
	@keyframes active-btn05-bar02 {
	  100% {
	    height: 0;
	  }
	}
	#btn05.active span:nth-of-type(3) {
	  -webkit-transform: translateY(-8px) rotate(45deg);
	  transform: translateY(-8px) rotate(45deg);
	}


}


/* l-gNav
---------------------------------------------------------------------------- */


.l-gNav-children {
  all: unset; /* ほぼ全てリセット（必要に応じて使う） */
}

.l-gNav.is-sp {
	display: none;
}

@media screen and (min-width: 768px){

	.l-gNav {
		display: flex;
		align-items: center;
	}


	.l-gNav-list > li {
	  position: relative; /* 子メニューの絶対位置基準にする */
		display: inline-block;
		vertical-align: middle;
		font-size: 1.6rem;
	}

	.l-gNav-list > li > a {
		display: block;
		padding: 10px 20px;
		text-decoration: none;
		color: #000;
		font-weight: 600;
	}

	.l-gNav-list > li > span {
		display: block;
		padding: 10px 20px;
		color: #000;
		font-weight: 600;
	}

	.l-gNav-children {
		display: none; /* 初期は非表示 */
	  position: absolute;
	  top: 100%; /* 親<li>の直下に配置 */
	  left: 50%;
		transform: translateX(-50%);
	  background: #fff;
		white-space: nowrap;
    text-align: center;
		padding: 0 20px 20px;
	}

	.l-gNav-list > li:hover::before {
		position: absolute;
		content: "";
		width: 100%;
		height: 1px;
		bottom: 0;
		left: 0;
		background: #003670;
		z-index: 1;
	}


	.l-gNav-children > li {
		padding: 10px 0 0;
		font-size: 1.4rem;
		font-weight: 400;
	}

	.l-gNav-children > li > a {
		text-decoration: none;
		color: #003670;
		transition: .3s;
	}

	.l-gNav-children > li > a:hover {
		color: #0075C2;
	}

	.l-gNav-contact {
		height: 90px;
		width: 120px;
		margin-left: 40px;
	}

	.l-gNav-contact a {
		display: block;
		padding: 35px 0;
		background: #003670;
		height: 100%;
		color: #fff;
		text-decoration: none;
		text-align: center;
		font-size: 1.5rem;
		transition: .3s;
	}

	.l-gNav-contact a:hover {
		background: #0075C2;
	}
}

@media screen and (max-width: 767px){

	.l-gNav.is-pc {
		display: none;
	}

	.l-gNav {
		position: absolute;
		width: 100%;
		height: 100vh;
		background: #0075C2;
		background: linear-gradient(180deg, rgba(0, 117, 194, 1) 39%, rgba(0, 54, 112, 1) 90%);
		color: #fff;
		padding: 50px;
		z-index: 20;
		top: 0;
		left: 0;
	}

	.l-gNav-list {
		margin: 0 0 60px;
	}

	.l-gNav-list > li {
		color: #9ED9FF;
		font-size: 1.2rem;
		font-weight: 600;
	}

	.l-gNav-list > li > a {
		color: #9ED9FF;
		text-decoration: none;
		font-size: 1.2rem;
		font-weight: 600;
	}

	.l-gNav-list > li + li {
		margin-top: 40px;
	}

	.l-gNav-list span {
		display: block;
	}

	.l-gNav-list li:first-child span {
		width: 33px;
		padding: 0 0 3px;
	}

	.l-gNav-list li:nth-child(2) span {
		width: 95px;
		padding: 0 0 10px;
	}

	.l-gNav-list li:nth-child(3) span {
		width: 65px;
		padding: 0 0 10px;
	}

	.l-gNav-list li:nth-child(4) span {
		width: 101px;
		padding: 0 0 3px;
	}

	.l-gNav-list li:nth-child(5) span {
		width: 81px;
		padding: 0 0 10px;
	}

	.l-gNav-children {
		padding: 15px 0 0;
		display: block;
		font-size: 0;
	}


	.l-gNav-children > li {
	    display: inline-block;
	    vertical-align: middle;
			font-size: 1.3rem;
	}

	.l-gNav-children > li + li {
		margin-left: 15px;
	}

	.l-gNav-children > li > a {
		color: #fff;
		text-decoration: none;
	}

	.l-gNav-other {
		font-size: 1.2rem;
	}

	.l-gNav-other dt {
		color: #9ED9FF;
		padding: 0 0 12px;
		font-weight: 600;
	}

	.l-gNav-other dd a {
		color: #fff;
		text-decoration: none;
	}


}


/* l-pageBody
---------------------------------------------------------------------------- */
.l-pageBody {
    width: 100%;
    overflow: hidden;
		padding: 90px 0 0;
}

@media screen and (max-width: 767px){
    .l-pageBody {
        min-width: 0;
				padding: 50px 0 0;
    }

	.home .l-pageBody {
    padding: 0;
	}
}


/* l-links
---------------------------------------------------------------------------- */
.l-links {
	padding: 30px 0;
	background: url("../../images/common/bg_footer_pc.png")no-repeat;
	background-size: cover;
	background-position: center;
	color: #fff;
}

.l-links p {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.8;
}

.l-links .button {
	width: 293px;
}

.l-links .button + .button {
	margin: 0 0 0 50px;
}

.l-links .button a {
	display: block;
	color: #fff;
	text-decoration: none;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 400;
	text-align: center;
	min-height: 62px;
	background: url("../../images/common/img_btn_wt.svg")no-repeat;
	background-size: 293px;
	background-position: center;
	padding: 19px 0;
}

@media screen and (min-width: 940px){

	.l-links-flex {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.l-links-button {
		display: flex;
		align-items: center;
	}

	.l-links .button a span {
		position: relative;
		display: inline-block;
	}

	.l-links .button a span::before {
		position: absolute;
		content: "";
		width: 0;
		left: 50%;
		transform: translateX(-50%);
		height: 1px;
		background: #fff;
		bottom: -5px;
		transition: .3s;
	}

	.l-links .button a:hover span::before {
		width: 100%;
	}


}


@media screen and (max-width: 939px){

	.l-links {
		padding: 30px 0;
		background: url("../../images/common/bg_footer_sp.png")no-repeat;
		background-size: cover;
		background-position: center;
	}

	.l-links p {
    text-align: center;
    font-size: 1.6rem;
    padding: 0 0 25px;
	}

	.l-links .button {
	    margin: 0 auto;
	}

	.l-links .button + .button {
	    margin: 17px auto 0;
	}

}


/* l-pageTop
---------------------------------------------------------------------------- */
.l-pageTop {
}

@media screen and (max-width: 767px){
}


/* l-footer
---------------------------------------------------------------------------- */
.l-footer {
	background: #0075C2;
	background: linear-gradient(180deg, rgba(0, 117, 194, 1) 39%, rgba(0, 54, 112, 1) 90%);
	color: #fff;
	padding: 80px 0 50px;
}

.l-footer-content {
	margin: 0 auto;
	max-width: 1056px;
	padding: 0 30px;
}

.l-footer address {
	font-size: 1.2rem;
	line-height: 1;
	font-weight: 600;
	letter-spacing: 0;
}

.l-footer-flex {
    display: flex;
    justify-content: space-between;
}

.l-footer .logo {
    width: 347px;
		margin: 0 0 25px;
}

.l-footer .logo a {
	display: block;
}


.l-sitemap {
		display: flex;
		align-items: flex-start;
		line-height: 1;
}

.l-sitemap .block {
	position: relative;
}

.l-sitemap .block p {
	color: #9ED9FF;
	font-size: 1.2rem;
	font-weight: 600;
	margin-right: 35px;
}

.l-sitemap .block .is-contact {
    margin: 0;
}

.l-sitemap .block p a {
	display: block;
	color: #9ED9FF;
	text-decoration: none;
}

.l-sitemap .block p.is-services a {
	color: #fff;
	padding: 10px 0 0;
}

.l-sitemap .block p.is-other {
    position: absolute;
    left: 0;
    bottom: -65px;
}

.l-sitemap .block p.is-other a {
    color: #fff;
    padding: 10px 0 0;
}

.l-sitemap .block p span {
	display: block;
	min-height: 35px;
}

.l-sitemap .is-top span {
	width: 32px;
}

.l-sitemap .is-services span {
	width: 89px;
}

.l-sitemap .is-result span {
	width: 61px;
}

.l-sitemap .is-company span {
	width: 95px;
	padding: 5px 0 0;
}


.l-sitemap .is-contact span {
	width: 79px;
}

.l-footer-list {
	display: flex;
	line-height: 1;
}

.l-footer-list li {
	font-size: 1.3rem;
}

.l-footer-list li + li {
	margin-left: 55px;
}

.l-footer-list li a {
	text-decoration: none;
	color: #FFFFFF;
}

.l-footer .copy {
	line-height: 1;
	font-size: 1.4rem;
}

@media screen and (min-width: 768px){

	.l-sitemap {
		width: calc(100% - 400px);
		max-width: 530px;
	}

	.l-sitemap .block {
		display: flex;
		align-items: flex-start;
	}

	.l-footer-flex {
		position: relative;
	}

	.l-footer-flex + .l-footer-flex {
		padding: 20px 0 0;
		margin: 120px 0 0;
	}

	.l-footer-flex + .l-footer-flex::before {
		position: absolute;
		content: "";
		background: #fff;
		opacity: .45;
		height: 1px;
		width: 100%;
		top: 0;
		left: 0;
	}

	.l-footer-list {
		width: calc(100% - 400px);
		max-width: 530px;
	}

	.l-footer-list li a:hover {
		text-decoration: underline;
	}


}

@media screen and (max-width: 767px){

	.l-footer-content {
		padding: 0;
	}

	.l-footer address {
    width: 100%;
    text-align: center;
	}

	.l-footer .left {
	    width: 100%;
	    margin: 0 auto 25px;
	}


	.l-footer .logo {
	    width: 270px;
	    margin: 0 auto 18px;
	}

	.l-footer {
	    padding: 45px 0 20px;
	}

	.l-footer-flex {
    flex-wrap: wrap-reverse;
	}

	.l-sitemap {
    padding: 0 20px 50px;
		margin: 0 auto 32px;
    justify-content: space-between;
    width: 100%;
    position: relative;
	}

	.l-sitemap::before {
		position: absolute;
		content: "";
		background: #fff;
		opacity: .45;
		height: 1px;
		width: 100%;
		bottom: 0;
		left: 0;
	}

	.l-sitemap .block {
		width: 50%;
	}

	.l-footer-list {
    width: 100%;
    justify-content: center;
    margin: 0 auto 15px;
	}

	.l-footer-list li {
	    font-size: 1rem;
	}

	.l-footer .copy {
	    width: 100%;
	    text-align: center;
	    font-size: 1rem;
	}

	.l-sitemap .block p {
    margin: 0 0 20px;
	}

	.l-sitemap .block p.is-other {
	    margin: 0;
	    bottom: -132px;
	}

}
