@charset "utf-8";
/*=======================================================================

共通レイアウト(layout.css)

========================================================================*/
@font-face {
  font-family: "YuGothic M";
  src: local(Yu Gothic Medium),
       local(Yu Gothic);
}
::selection {
    background: #2676b4;
    color: #fff;
}
::-moz-selection {
    background: #2676b4;
    color: #fff;
}
body {
  background-color: #eaeff2;
  color: #222;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Arial, "メイリオ", Meiryo, sans-serif;  
  font-weight: normal;
	font-size: 16px;
	font-size: 1.6rem;
  letter-spacing: .07em;
  line-height: 1.7;
}
img[src$=".svg"] {
    height: 100%;
}

/*----------------------------------------------------------------------
 Links
----------------------------------------------------------------------*/
a {
	text-decoration: none;
	color: #006bb6;
	transition: 0.3s;
	opacity: 1;
}
a:hover {
	filter: alpha(opacity=75);
	-moz-opacity: 0.75;
	opacity: 0.75;
}



/*----------------------------------------------------------------------
 Header
----------------------------------------------------------------------*/
#header {
  width: 100%;
  background-color: #223280;
}

#header .header-contents {
  width: 100%;
  padding: 16px 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#header .site-id {
  padding: 0 24px;
}
#header .site-id a {
  opacity: 1;
}


/*----------------------------------------------------------------------
 Nav
----------------------------------------------------------------------*/

/* ×に　*/
.menu-btn {
  padding: 10px;
  background: #fff;
  border-radius: 50%;
}
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .2s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 40px;
  height: 18px;
  cursor: pointer;
}
.menu-trigger span {
  display: inherit;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #223280;
  border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 8px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.is-active span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}
.menu-trigger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.is-active span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) rotate(45deg);
  transform: translateY(-8px) rotate(45deg);
}



/*----------------------------
* メニュー開閉ボタン
*----------------------------*/
.menu-btn{
  position: fixed;
  top: 150px;
  right: 2.5%;
  z-index: 100;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*----------------------------
* メニュー本体
*----------------------------*/
.menu{
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  width: 500px;
  height: 100vh;
  padding: 0 40px;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #223280;
}
.menu__item{
  width: 100%;
  height: auto;
  padding: .5em 1em;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}

/*----------------------------
* アニメーション部分
*----------------------------*/

/* スライド */
.menu{
  -ms-transform: translateX(100vw);
  -webkit-transform: translateX(100vw);
  transform: translateX(100vw);
  transition: all .3s linear;
}
.menu.is-active{
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

フェード
_:-ms-lang(x)::-ms-backdrop, .menu{
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s linear;
}
_:-ms-lang(x)::-ms-backdrop, .menu.is-active{
  pointer-events: auto;
  opacity: 1;
}


.menu li {
  font-size: 20px;
  font-size: 2.0rem;
}
.menu li a {
  display: block;
  padding: 15px 10px;
  color: #fff;
  transition: .3s;
}
.menu li a:hover {
  padding-left: 20px;
}


.icon-contact {
  position: fixed;
  top: 200px;
  right: 2.5%;
  z-index: 98;
}
.icon-contact a {
  display: block;
  width: 40px;
  height: 40px;
  padding: 1px 0 0 9px;
  background-color: #fff;
  border-radius: 50%;
}
.icon-contact img {
  width: 22px;
}





#g-navi {
  padding: 10px 10px 0 40px;
}
#g-navi ul,
.footer-navi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer-navi ul {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
#g-navi li,
.footer-navi li {
  -webkit-transform: skewX(150deg);
  transform: skewX(150deg);
  border-right: 1px solid #fff;
}
#g-navi li {
  margin-bottom: 10px;
}
.footer-navi li {
  border-right: 1px solid #223280;
}
#g-navi li:nth-last-of-type(1),
.footer-navi li:nth-last-of-type(1)  {
  border-right: 0;
}
#g-navi li a,
.footer-navi li a {
  display: block;
  color: #fff;
  transform: skewX(-150deg);
  padding: 3px 20px;
  line-height: 1;
}
.footer-navi li a {
  padding: 3px 25px;
  color: #223280;
  font-size: 15px;
  font-size: 1.5rem;
}
#g-navi li.active a {
  opacity: 0.7;
}

/*----------------------------------------------------------------------
 Contents 
----------------------------------------------------------------------*/
#content {
  padding-top: 20px;
}
#content .inner {
  width: 1032px;
  margin: auto;
}


/*----------------------------------------------------------------------
 Footer
----------------------------------------------------------------------*/
#footer .footer-second-navi {
  padding: 30px 0 20px;
  text-align: center;
}
#footer .footer-second-navi li {
  display: inline-block;
  margin: 0 50px;
}
#footer .footer-second-navi li a {
  display: block;
  color: #223280;
  font-size: 15px;
  font-size: 1.5rem;
  position: relative;
}
#footer .footer-second-navi li a::after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px #223280;
  border-right: solid 1px #223280;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 10px;
  right: -10px;
  transition: 0.3s;
}
#footer .footer-second-navi li a:hover::after {
  right: -15px;
}


#footer .copyright {
  padding: 25px 0;
  background-color: #223280;
  color: #fff;
	font-size: 14px;
	font-size: 1.4rem;
  letter-spacing: .1em;
	text-align: center;
}
#footer .copyright .ga {
  margin-bottom: 10px;
  font-size: 12px;
}

/*----------------------------------------------------------------------
 Pagetop 
----------------------------------------------------------------------*/
.pagetop {
	position: fixed;
	bottom: 100px;
  right: 2.5%;
	z-index: 2;
}
.pagetop a {
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #223280;
	filter: alpha(opacity=90);
	-moz-opacity: 0.90;
	opacity: 0.90;
	zoom: 1.0;
	text-align: center;
	color: #fff;
	text-decoration: none;
}
.pagetop a:hover {
	filter: alpha(opacity=75);
	-moz-opacity: 0.75;
	opacity: 0.75;
}
span.arrow {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}
span.arrow:after {
	content: '';
	position: absolute;
	top: 16px;
	left: 12px;
	display: block;
	width: 14px;
	height: 14px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(-45deg);
}

/*----------------------------------------------------------------------
 TopicPath
----------------------------------------------------------------------*/
#content .topic_path {
  padding: 15px 0;
  background-color: #f1f2f7;
}
#content .topic_path ul {
  width: 1000px;
  margin: 0 auto;
  padding: 0;
  font-size: 0;
}
#content .topic_path ul > li {
	display: inline-block;
  margin: 0;
	font-size: 12px;
  font-size: 1.2rem;
}
#content .topic_path ul > .active {
	color: #5f5f5f;
}
#content .topic_path ul > li + li:before {
  padding: 0 5px;
  color: #999;
  content: ">";
}

/*----------------------------------------------------------------------
 Clearfix
----------------------------------------------------------------------*/
#header .inner:after,
#topicPath:after {
    content: "";
    display: block;
    clear: both;
}