@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&display=swap&subset=japanese');
@import url('https://fonts.googleapis.com/css?family=Oswald&display=swap');
@import url('https://fonts.googleapis.com/css?family=Sawarabi+Mincho');

html {
	font-size: 100%;
}

body {
	margin: 0;
	padding: 0;
	background:#f2f3f4;
	height: 100%;
	/*font-family: 'メイリオ',meiryo,sans-serif;*/
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	letter-spacing: .05em;
	line-height: 1.7;
	color: #000;
	-webkit-text-size-adjust:100%;
}



h1,h2,h3,h4,h5,h6 {
    font-size:100%;
    font-weight:normal;
	margin:0;
    padding:0;
}

p,li,dt,dd,th,td,pre {
	-ms-line-break: strict;
	line-break: strict;
	-ms-word-break: break-strict;
	word-break: break-strict;
}

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

ul,ol {
	padding: 0 0 0 2em;
}

dd {
	margin: 0;
}

object,embed {
  vertical-align: top;
}

a {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
	text-decoration: none;
	color: #000;
}

a:not(.false):hover,
.ons:hover {
	opacity: 0.7;
}

a:hover {
	cursor: pointer;
}

a:focus {
	outline: none;
}

p {
	display: block;
	margin: 0 0 1em;
}

.layout {
	padding: 0;
	list-style: none;
}

.cf:before,
.cf:after{
  content:"";
  display: table;
}
.cf:after{
  clear:both;
}

/* move setting */
.move-right,
.move-left,
.move-down,
.move-up {
	position: relative;
	opacity: 0;
	-webkit-transition: all 0.8s ease;
	-moz-transition: all 0.8s ease;
	-o-transition: all 0.8s ease;
	transition: all  0.8s ease;
}

.move-right {
	left: -50px;
}

.move-left {
	right: -50px;
}

.move-down {
	top: -50px;
}

.move-up {
	bottom: -50px;
}

.font {
	font-family: "Sawarabi Mincho","游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.flex {
	display: flex;
}

#wrapper {
	-webkit-animation: body .1s cubic-bezier(.48,.16,.65,.9) forwards;
	animation: body .1s cubic-bezier(.48,.16,.65,.9) forwards;
	animation-delay: 1s;
	opacity: 0;
}

@-webkit-keyframes body {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes body {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@media screen and (min-width: 769px) {
	body {
		min-width: 1100px;
	}

	.tel-link {
		pointer-events: none;
	}

	.sp {
		display: none!important;
	}
}

@media screen and (max-width: 768px) {
	.pc {
		display: none!important;
	}

	.flex-column {
		flex-direction: column;
	}
}

/* ----------------------------------------
	Common
---------------------------------------- */


.inner {
	margin: 0 auto;
	position: relative;
}
#wrapper {
	overflow-x: hidden;
	overflow-y: inherit;
	padding-top: 80px;
}

.logo {
	position: absolute;
	top: 30px;
	left: 30px;
}

.l-loading {
    background: #00204a;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 100%;
    left: 0;
    z-index: 9999;
    -webkit-animation: loader 1.3s cubic-bezier(.48,.16,.65,.9) forwards;
    animation: loader 1.3s cubic-bezier(.48,.16,.65,.9) forwards;
}

.l-loading-logo {
    width: 901px;
    height: 94px;
    background: url(../images/common/logo-mark.png) no-repeat center center;
    background-size: contain;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 10000;
    pointer-events: none;
    -webkit-animation: loader-logo 1s cubic-bezier(.48,.16,.65,.9) forwards;
    animation: loader-logo 1s cubic-bezier(.48,.16,.65,.9) forwards;
}


@-webkit-keyframes loader {
	0% {
		top: 100%;
	}

	30% {
		top: 0;
	}

	70% {
		top: 0;
	}

	100% {
		top: -120%;
	}
}

@keyframes loader {
	0% {
		top: 100%;
	}

	30% {
		top: 0;
	}

	70% {
		top: 0;
	}

	100% {
		top: -120%;
	}
}

@-webkit-keyframes loader-logo {
	0% {
		opacity: 0;
	}

	20% {
		opacity: 0;
	}

	30% {
		opacity: 1;
	}

	70% {
		opacity: 1;
	}

	80% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@keyframes loader-logo {
	0% {
		opacity: 0;
	}

	20% {
		opacity: 0;
	}

	30% {
		opacity: 1;
	}

	70% {
		opacity: 1;
	}

	80% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

.morebtn {
	width: 200px;
	font-family: "Georgia";
	text-align: center;
	border: solid 1px #fff;
	margin: 2em auto;
	position: relative;
	font-size: 16px;
	padding: 5px;
	color: #fff;
	transition: .3s;
}

.morebtn:hover{
	background: rgba(180, 180, 180, 0.6);
}

.morebtn a,
.morebtn > span {
	display: block;
	color: #fff;
	text-decoration: none!important;
}

@media all and (min-width: 769px) {
	.inner {
		max-width: 1100px;
	}
}

@media all and (max-width: 768px) {
	#wrapper {
		padding-top: 60px;
	}

	.inner {
		padding: 0 10px;
		box-sizing: border-box;
	}

	.morebtn {
		width: 150px;
	}

	.morebtn > a,
	.morebtn > span {
		font-size: 12px;
	}

	.l-loading-logo {
		width: 250px;
		height: 70px;
	}
}

.common__menu {
	margin: 0;
}

.common__menu li {
	flex: 1;
}

.common__menu li a {
	display: block;
	padding: 8em 0 5em;
	position: relative;
	overflow: hidden;
	text-decoration: none;
}

.common__menu__bg {
	width: 100%;
	height: 100%;
	background-position: center!important;
	background-size: cover!important;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) scale(1.05);
	transition: all 1s ease;
}

.common__menu li:first-child .common__menu__bg {
	background-image: url(../images/common/common_menu01.jpg);
}

.common__menu li:nth-child(2) .common__menu__bg {
	background-image: url(../images/common/common_menu02.jpg);
}

.common__menu li a:hover .common__menu__bg {
	transform: translate(-50%,-50%) scale(1.15);
}

.common__menu__title {
	font-size: 26px;
	color: #fff;
	text-align: center;
	margin: 0 0 2em;
	position: relative;
}

@media all and (max-width: 768px) {
	.common__menu li a {
		padding: 3em 0 1em;
	}

	.common__menu__title {
		font-size: 18px;
	}
}

/* ----------------
movie
------------------*/
.topHeader {
	/*background: #000;*/
	background: url(../images/top/mainvisual.jpg) no-repeat center;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

#movie-wrap {
  width: 100%;
	height: calc(100vh - 80px);
	overflow: hidden;
	position: relative;
}

#movie {
	overflow: hidden;
	position: relative;
}

#video {
	position: absolute;
}

@media all and (max-width: 768px) {
	#movie-wrap {
		height: calc(100vh - 60px);
	}
}
/*--------------------------
global__nav
----------------------------*/
.navWrap {
	 min-width: 1100px;
    top: -100px;
    position: absolute;
    width: 100%;
		height: 60px;
    margin: 100px auto 0;
    padding: 20px 0 0 0;
    line-height: 1;
    z-index: 999;
		background: url(../images/common/headNav__bg.png) no-repeat center top;
		background-size: cover;
}

.navWrap a,
.navWrap {
    color: #fff;
    text-decoration: none;
}

.navWrap a:hover {
	transition: 1.0s ;
}

.nav {
    list-style: none;
    position: absolute;
    top: 18px;
		right: 250px;
    font-size: 16px;
}

.nav li {
    float: left;
}


.nav li::before{
    content: "/";
}

.nav li:first-child::before{
    content: none;
}

.global__nav li a:hover::after {
  bottom: -4px;
  opacity: 1;
  visibility: visible;
}

.nav__check,
.nav label {
	display: none;
}

.navWrap.fixed {
  margin-top: 0;
  top: 0;
  position: fixed;
	background: url(../images/common/headNav__bg.png) no-repeat center top;
	background-size: cover;
}

.navWrap.fixed .logo {
  max-width: 250px;
}

.nav__toggle {
  display: none;
  position: absolute;
  right: 12px;
  top: 14px;
  width: 34px;
  height: 36px;
  cursor: pointer;
  z-index: 101;
}

.nav__toggle div {
  position: relative;
}

.nav__toggle span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #fff;
  left: 0;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.nav__toggle span:nth-child(1) {
  top: 0;
}

.nav__toggle span:nth-child(2) {
  top: 11px;
}

.nav__toggle span:nth-child(3) {
  top: 22px;
}

.navChiled__list {
	padding: 10px 10px;
	position: relative;
	font-size: 16px;
	border-bottom: solid 1px #000;
}

.nav__chiled li a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-indent: -999px;
	z-index: 2;
	margin: 0;
}

.nav__contactText img{
 padding-right: 10px;
}

/* pc のみ */
@media screen and (min-width: 769px) {
	.navWrap.fixed .nav li a {
	  color: #fff;
	  padding: 0;
	}

	.nav li a {
	    padding: 0;
	    margin: 0 25px;
	}

	.nav__parent{
		position: relative;
		padding-bottom: 30px;
	}

	.nav__parent:hover::after{
		border-bottom: 12px solid #00204a;
		 display: block;
		 content: "";
		 width: 0;
		 border-right: 6px solid
		 transparent;
		 border-left: 6px solid
		 transparent;
		 position: absolute;
		 bottom: 0;
		 right: 0;
		 left: 0;
		 pointer-events: none;
		 margin: 0 50%;
	}

	.nav__parent ul{
		opacity: 0;
	  transition: .3s;
		top: -500px;
	}

	.nav__parent:hover ul{
		display: block;
		 opacity: 1;
		 top: auto;
	 }

	.nav__chiled{
	 z-index: -1;
	 position: absolute;
	 background:#00204a;
	 margin-top: 30px;
	 border-top: solid 1px #000;
	}

	.nav__chiled:hover{
	  display: block;
	}

	.navChiled__list:hover {
	    border-color: #fff;
			opacity: 0.8;
	}
	.list__01{
		left: -110px;
	  right:-110px;
		text-align: left;
	}

	.list__02{
		left: 10%;
		right: 10%;
		width: 90%;
		text-align: center;
	}

	.nav__chiled li{
		float:none;
	}

	.nav__chiled li::before{
	 content: none;
	}

	.nav__chiled li a{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		text-indent: -999px;
		z-index: 2;
		margin: 0;
	}

	.navChiled__list {
		padding: 10px 10px;
		position: relative;
		font-size: 16px;
		border-bottom: solid 1px #000;
	}

	.nav__contact{
		width: 150px;
		right: 70px;
		position:absolute;
		top: 0;
		bottom: 0;
		padding: 5px;
		margin: auto 0;
		height: 50px;
	}

	.nav__contactText{
		padding: 5px;
	}

	.nav__contact02 {
		right: 40px;
		position: absolute;
		top: 25px;
	}
}
/* sp */
@media screen and (max-width: 768px) {
		.bg_fixed{
		position: fixed;
		width: 100%;
		height: 100%;
	}
    .navWrap {
			min-width: 200px;
    height: 60px;
        top: 0;
				padding: 0;
        position: fixed;
        margin-top: 0;
    }

		.nav li::before{
		    content: none;
		}

    .mobile-head {
        width: 100%;
        height: 56px;
        z-index: 999;
        position: relative;
    }

    .navWrap.fixed .logo,
    .navWrap .logo {
		  position: absolute;
		  top: 10px;
			left: 0;
			right: 0;
			bottom: 0;
			margin: 10px;
		  max-width: 200px;
		  width: 200px;
			height:auto;
    }

    .global__nav {
      position: absolute;
      top: -1000px;
	    filter:alpha(opacity=90);
	    -moz-opacity: 0.*90;
	    opacity: 0.90;
      width: 100%;
			background-color: #1e1e1e;
      text-align: center;
      -webkit-transition: .5s ease-in-out;
      -moz-transition: .5s ease-in-out;
      transition: .5s ease-in-out;
    }

    .nav {
      list-style: none;
      position: static;
      right: 0;
			left: 0;
			margin: 0;
			padding: 10px 0;
      bottom: 0;
      font-size: 14px;
			overflow-y: scroll;
			overflow-x: hidden;
			max-height: 70vh;
    }

    .nav li {
      float: none;
			padding: 15px 0;
			border-bottom: solid 1px #000;
    }

		 .nav li a:hover {
			 opacity: 1;
		 }

    .navWrap .nav li a,
    .navWrap.fixed .nav li a {
      width: 100%;
      display: block;
      color: #fff;
      margin: 0 5% 0 0;
    }

    .nav__toggle {
      display: block;
    }

    .open .nav__toggle span:nth-child(1) {
      top: 11px;
      -webkit-transform: rotate(315deg);
      -moz-transform: rotate(315deg);
      transform: rotate(315deg);
    }

    .open .nav__toggle span:nth-child(2) {
      width: 0;
      left: 50%;
    }

    .open .nav__toggle span:nth-child(3) {
      top: 11px;
      -webkit-transform: rotate(-315deg);
      -moz-transform: rotate(-315deg);
      transform: rotate(-315deg);
    }

    .open .global__nav {
      -moz-transform: translateY(1056px);
      -webkit-transform: translateY(1056px);
      transform: translateY(1056px);
    }

		.global__nav li a {
		  display: inline-block;
		  text-decoration: none;
		  color: #fff;
		}

		.global__nav li:hover{
			border-bottom: solid 1px #fff;
		}
		.global__nav li.nav__parent:hover{
			border-bottom: none;
		}

		 li.nav__parent{
			padding: 0;
			background-color: #003265;
			display: none;
		}

		li.nav__parent a:hover{
		 transition: none;
		 opacity:1;
	 }

		.nav label{
		 width: 100%;
		 padding:15px 0;
		 display: block;
		 text-align: center;
		 border-bottom: solid 1px #000;
		}
		.nav label:hover{
			border-bottom: solid 1px #fff;
		}
		.nav label:after{
			content: "+";
			padding-left: 10px;
		}

		.nav ul li:hover{
			border-bottom: solid 1px #fff;
		}

	 .nav__parentLink{
			padding:15px 0;
			border-bottom: solid 1px #000;
		}

		.nav__parentLink:hover{
			 border-bottom: solid 1px #fff;
	  }

 	  .nav__check{
	  	 display: none;
  	}

		.nav__check:checked + li{
		   display: block;
		}

		.nav__contactText{
			 padding:10px;
		}

		.nav__contact02 {
			padding: 10px 0 20px;
		}

}
/*-------------------------------
scroll
---------------------------------*/
.scroll-arrow {
	font-weight: bold;
	margin: 0;
	position: absolute;
	right: 0;
	bottom: 95px;
	z-index: 3;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg)
}

.scroll-arrow a {
	display: block;
	font-size: 14px;
	color: #fff;
	text-decoration: none
}

.scroll-arrow a span {
	display: block
}

.scroll-arrow a span:not([class]) {
	position: absolute;
	top: -28px;
	left: 75px;
	display: block;
	height: 80px;
	overflow: hidden;
	width: 100%;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg)
}

.scroll-arrow a span:not([class])::after {
	position: absolute;
	right: 0;
	left: 0;
	display: block;
	-webkit-animation: scroll 2s ease-in-out 0s infinite normal none;
	animation: scroll 2s ease-in-out 0s infinite normal none;
	background: #fff;
	content: '';
	height: 50px;
	margin: auto;
	width: 1px
}

@-webkit-keyframes scroll {
	0% {
		opacity: 1;
		-webkit-transform: translate(0%, 40px);
		transform: translate(0%, 40px)
	}
	59% {
		opacity: 1;
		-webkit-transform: translate(0%, -40px);
		transform: translate(0%, -40px)
	}
	60% {
		opacity: 0;
		-webkit-transform: translate(0%, -40px);
		transform: translate(0%, -40px)
	}
	62% {
		opacity: 0;
		-webkit-transform: translate(0%, 40px);
		transform: translate(0%, 40px)
	}
	100% {
		opacity: 0;
		-webkit-transform: translate(0%, 40px);
		transform: translate(0%, 40px)
	}
}

@keyframes scroll {
	0% {
		opacity: 1;
		-webkit-transform: translate(0%, 40px);
		transform: translate(0%, 40px)
	}
	59% {
		opacity: 1;
		-webkit-transform: translate(0%, -40px);
		transform: translate(0%, -40px)
	}
	60% {
		opacity: 0;
		-webkit-transform: translate(0%, -40px);
		transform: translate(0%, -40px)
	}
	62% {
		opacity: 0;
		-webkit-transform: translate(0%, 40px);
		transform: translate(0%, 40px)
	}
	100% {
		opacity: 0;
		-webkit-transform: translate(0%, 40px);
		transform: translate(0%, 40px)
	}
}

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

/*　section1　*/

.section1{
	background-size: cover;
	font-family: "Georgia";
	color: #fff;
	padding: 100px;
	text-align: center;
}

.section1__bg:before{
    content:"";
    display:block;
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100%;
    height:100vh;
    background:url(../images/top/section1_bg.jpg) center no-repeat;
    background-size:cover;
}

.section1__title{
	font-size: 42px;
}

.section1__copy{
	font-size: 16px;
	margin: 0 0 10px 0 ;
}

.section1__link{
	color: #fff;
}

.section1__btn{
	width: 250px;
	padding: 10px ;
	margin: 40px auto 20px auto;
	border: solid 1px #fff;
	font-size: 16px;
}

@media screen and (max-width: 768px) {
	.section1{
		padding: 40px 0 20px 0;
	}

	.section1__title{
		font-size: 30px;
	}

	.section1__copy{
		font-size: 16px;
	}
}

/*　section2　*/

.section2 {
	padding: 6em 0 8em 0;
	background: url(../images/top/section2_bg.jpg) no-repeat center top;
	background-size: cover;
}

.section2__title{
	font-size: 30px;
  color: #003265;
  text-align: center;
  margin: 0 0 1em;
}

.section2__listBox{
	flex-wrap: wrap;
}

.section2__list {
	width: 33.3%;
	box-sizing: border-box;
	z-index: 1; /* 必要であればリンク要素の重なりのベース順序指定 */
}

.section2__list img{
	transition-duration: 1s;
	position: absolute;
	min-width: 350px;
	top:0;
	right: 0;
}

.section2__listBg{
	position: relative;
	z-index: 1;
	overflow: hidden;
	transition-duration: 1s;
	width: 100%;
	height: 148px;
}

.section2__listBg {
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all  0.3s ease;
		box-shadow: 0 0 10px 2px rgba(0,0,0,0);
	}

	.section2__listBg:hover {
		box-shadow: 0 0 10px 2px rgba(0,0,0,0.5);
	}

.section2__listBg:hover img{
	height: auto;
	vertical-align: top;
	border: 0;
	transition-duration: 1s;
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.section2__content{
	margin: 0;
	position: absolute;
	padding: 10px 20px;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: .3s;
	z-index: 1;
	box-sizing: border-box;
}

.section2__content a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-indent:-999px;
	z-index: 2; /* 必要であればリンク要素の重なりのベース順序指定 */
}

.section2__kind{
	width: 100%;
	font-size: 12px;
	color: #003265;
	padding: 5px 0;
	margin: 0;
}

.section2__name{
	font-size: 18px;
	font-weight: bold;
	color: #003265;
	padding: 5px 130px 0 0;
}

.section2__otherBox {
	flex-wrap: wrap;
}

.section2__other{
	margin-top: 10px;
	width: 100%;
	border-bottom: solid 5px #003265;
	font-size: 18px;
	font-weight: bold;
	color: #003265;
	text-align: center;
	position: relative;
	background-color: #fff;
	padding: 20px 0;
	box-sizing: border-box;
	transition: .3s;
}

.flex__box01:hover{
	background: rgba(220, 220, 220, 0.6);
}

.section2__other a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-indent:-999px;
	z-index: 2;
}

.section2__icon::before {
	 position: absolute;
	 display: block;
	 content: '';
	 width:30px;
	 height:1px;
	 background-color:#003265;
	 top: 85%;
	 left: 20px;
	 margin-top: 3px;
}

.section2__otherIcon::after {
	 position:absolute;
	 content:"";
	 width: 14px;
	 height: 14px;
	 border-top: solid 1px #003265;
	 -webkit-transform: rotate(20deg);
	 transform: rotate(20deg);
	 margin-top: 0px;
}
.section2__otherIcon::before {
	 position: absolute;
	 display: block;
	 content: '';
	 width:30px;
	 height:1px;
	 background-color:#003265;
	 margin-top: 3px;
}

.section2__icon::after {
	 position:absolute;
	 content:"";
	 width: 14px;
	 height: 14px;
	 border-top: solid 1px #003265;
	 -webkit-transform: rotate(20deg);
	 transform: rotate(20deg);
	 top: 85%;
	 left: 35px;
	 margin-top: 0px;
}
.section2__otherIcon01::after {
	top: 47%;
	right: 54px;
}

.section2__otherIcon01::before {
	top: 47%;
	right: 50px;
}

.section2__otherIcon02::after {
	top: 47%;
	right: 144px;
}

.section2__otherIcon02::before {
	top: 47%;
	right: 140px;
}

.flex__box02 {
	margin-top: 20px;
	padding: 3.5em 370px 1em 0;
	background: url(../images/top/section02-10.jpg), #fff;
	background-repeat: no-repeat;
	background-position: right top;
}

.flex__box02:hover {
	opacity: .7;
}

.section2__other__title {
	font-size: 30px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	margin: 0 0 .7em;
}

.section2__other__title span {
	padding: .2em .5em;
	background: #003265;
}

.section2__other__text {
	font-size: 24px;
	font-weight: bold;
	color: #003265;
	text-align: center;
	margin: 0 0 .5em;
}

.flex__box02 .morebtn {
	border: solid 1px #003265;
	color: #003265;
}

.flex__box02 .morebtn span {
	color: #003265;
}

@media screen and (min-width: 769px) {
	.section2__listBox li:nth-child(3n+1){
		padding:10px 15px 15px 0;
	}

	.section2__listBox li:nth-child(3n+2) {
		padding:10px 8px 15px 8px ;
	}

	.section2__listBox li:nth-child(3n+3){
		padding:10px 0 15px 15px ;
	}

	.section2__other .section2__otherIcon01 {
		position: relative;
		right: -100px;
	}
}

@media screen and (max-width: 768px) {
	.section2{
		padding: 2em 0;
	}

	.section2__title{
		font-size: 24px;
	}

	.section2__name{
		width: auto;
		padding: 5px 110px 0 0;
	}

	.section2__list {
		width: 100%;
		padding: 10px 0;
		box-sizing: border-box;
	}

	.section2__other{
		margin: 10px 0;
	}

	.section2__otherBox{
	 flex-wrap: wrap;
	}

	.section2__listBg{
		background: #fff;
	}

	.section2__otherIcon01::after {
		bottom: 20px;
		right: 23px;
	}

	.section2__otherIcon01::before {
		bottom: 20px;
		right: 20px;
	}

	.section2__otherIcon02::after {
		bottom: 20px;
		right: 23px;
	}

	.section2__otherIcon02::before {
		bottom: 20px;
		right: 20px;
	}

	.flex__box02 {
		padding: 2em 0 0;
		background-size: auto 100%;
		z-index: 1;
	}

	.flex__box02::before {
		display: block;
		content: "";
		width: 100%;
		height: 100%;
		background: #fff;
		opacity: .4;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}

	.section2__other__title {
		font-size: 18px;
	}

	.section2__other__text {
		font-size: 16px;
		margin: 0;
	}
}

/*section3*/
.common__menu02 li:first-child .common__menu__bg {
	background-image: url(../images/top/section3__box01_bg.jpg);
}

.common__menu02 li:nth-child(2) .common__menu__bg {
	background-image: url(../images/top/section3__box02_bg.jpg);
}

/* section4 */
.section4{
	padding: 4em 0;
	background: #f2f3f4;
}

.top-info__title {
  font-size: 30px;
  color: #003265;
  text-align: center;
  margin: 0 0 1em;
}

.info_cat {
	display: flex;
	justify-content: center;
	margin: 0 0 3em;
}

.info_cat li {
	width: 190px;
	text-align: center;
	margin: 0 5px;
}

.info_cat li a {
	display: block;
	color: #000;
	text-decoration: none;
	padding: .4em 0 .2em;
	border: 1px solid #c2c2c2;
	background: #fff;
	position: relative;
}

.info_cat li a:hover,
.info_cat li a.active {
	color: #fff;
	background: #003265;
	border: 1px solid #003265;
}

.info__list {
	margin: 0 0 3em;
	border-top: 1px solid #8e8e8e;
}

.info__list li {
	padding: 1.2em 0;
	border-bottom: 1px solid #8e8e8e;
}

.info__list li > * {
	display: inline-block;
	vertical-align: top;
}

.info__list li a {
	color: #000;
}

.info__date {
	margin: 0 1.2em 0 0;
	padding: .3em 0;
}

.info__cat {
	min-width: 94px;
	font-size: 12px;
	color: #fff!important;
	text-align: center;
	margin: 0 1.2em 0 0;
	padding: .4em 0;
	background: #fff;
}

.info__title {
	max-width: 760px;
	margin: 0;
	padding: .3em 0;
}

.info__btn{
  color: #003265;
	border-color: #003265;
}

.info__btn a,
.info__btn > span {
	color: #003265;
}

	@media all and (max-width: 768px) {
		.top-info__title {
			font-size: 26px;
		}
		.info_cat {
			flex-wrap: wrap;
			justify-content: space-between;
		}
		.info__title {
			width: 100%;
			margin: 0;
			padding: .3em 0;
		}

		.info_cat li {
			width: 23%;
			margin: 0 0 1em;
		}

		.info_cat li a {
			font-size: 12px;
		}
	}

	@media all and (max-width: 500px) {
		.info_cat {
			flex-wrap: wrap;
		}

		.info_cat li {
			width: 49%;
			margin-bottom: 10px;
		}
	}

/*----------------------
footer
------------------------*/
.footer{
	height: auto!important;
	padding-top: 40px!important;
	background: url(../images/common/footer_bg.jpg) center top;
	background-size: contain;
}

.footer__copy {
	text-align: center;
	font-size: 12px;
	padding: 10px 0 30px;
	color: #fff;
	margin: 0;
}

.footer__logo {
	padding: 30px;
	text-align: center;
}
.footnavi{
	width: 27%;
	color: #fff;
	font-size: 14px;
}
.footnavi:first-child{
		width: 19%;
}
.footnavi a{
	color: #fff;
}
.footnavi > li {
	margin: 0 0 1.5em;
}

.parent ul{
	list-style: none;
}

.pagetop {
	display: none;
	position: fixed;
	bottom: 0;
	right: 0;
	margin: 0;
	z-index: 800!important;
}
.pagetop a {
	display: block;
	width: 100%;
}
@media all and (max-width: 768px) {
	.footnavi:first-child{
		margin: 0 0 0 10%;
		width: 100%;
		color: #fff;
		font-size: 14px;
	}
	.footnavi{
		margin: 0 0 0 10%;
		width: 100%;
		color: #fff;
		font-size: 14px;
	}

	.footer__flex{
		flex-wrap: wrap;
	}
	.footer__logo img {
		width: 200px;
	}
	.footer__copy {
		font-size: 10px;
		margin: 15px 0 0;
	}
}
/* ----------------------------------------
	breadcrumb
---------------------------------------- */
#breadcrumb {
	padding: 1.6em 0 4em;
}

#breadcrumb > div {
	display: inline;
	font-size: 14px;
	padding: 0 6px 0 0;
}

#breadcrumb > div span {
	padding: 6px 0 0;
}

@media screen and (max-width: 768px) {
	#breadcrumb {
		padding: 1.6em 0 2em;
	}

	#breadcrumb > div {
		font-size: 12px;
	}
}
/* ----------------------------------------
	サブページ
---------------------------------------- */
.main__titleBox{
 background-color: #003265;
 position: relative;
 align-items: center;
}

.main__container.post {
  padding: 0 0 7em;
}

.main__container__title {
	font-size: 36px;
	font-weight: bold;
	margin: 0 0 1em;
	padding: 0 0 .5em;
	border-bottom: 1px solid #000;
}

.main__container__title.nb {
	border: none;
}

.cat__name{
	min-width: 50%;
	color: #fff;
	font-size: 36px;
	text-align: right;
	margin: auto 0 auto auto;
	padding: 50px;
	line-height: 40px;
	box-sizing: border-box;
}

.parentCat__name{
	font-size: 24px;
}

.main__boxImg	{
	width: 50vw;
	min-width: 550px;
	position: relative;
}

.main__boxImg	img:not([class]){
  width: 100%;
}

.main__boxImg .item-img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.main__contents{
  margin: 50px 0;
}

.detail__date {
	padding: 1em 0 0;
}

.detail__data {
	margin: 0 0 2em;
	padding: 0 0 1em;
	border-bottom: 1px solid #000;
	position: relative;
}

.detail__cat {
	min-width: 94px;
	display: inline-block;
	font-size: 12px;
	color: #fff;
	text-align: center;
	padding: .3em 0;
	background: #f5f5f5;
}

.detail__sns {
	text-align: right;
	position: absolute;
	top: 0;
	right: 0;
}

.detail__sns__item {
	display: inline-block;
	vertical-align: top;
	line-height: 0;
	margin: 0 0 0 5px;
}

.detail__txt {
	padding: 0 0 5em;
}

.detail__btn {
	width: 230px;
	margin: 0 auto 1em;
}

.detail__btn a {
	display: block;
	color: #fff!important;
	text-decoration: none!important;
	text-align: center;
	padding: .7em 0;
	background: #0c2c7f;
	position: relative;
}

.detail__btn a:after {
	display: block;
	content: ">";
	position: absolute;
	top: 50%;
	right: 1em;
	transform: translate(0,-50%) scale(.6,1);
}

.product_detail__name {
	padding: 60px 50px 10px;
}

.cat__name span:not([class]) {
	display:inline-block;
	font-size: 16px;
}

.cat__name span:not([class]):nth-of-type(2) {
	margin-top: 3em;
}

@media screen and (max-width: 768px) {
	.main__titleBox{
	 flex-wrap: wrap;
	}

	.main__title{
	width: 100%;
	}

	.cat__name{
	  width: 100%;
	  position: static;
	  font-size: 24px;
	  top: 40%;
	  text-align: center;
	  padding:20px;
	  line-height: 25px;
	}

	.parentCat__name{
		font-size: 18px;
	}

	.main__boxImg	{
	  width: 100vw;
		min-width: inherit;
	}

  .main__box02{
    padding: 30px 0;
	}

	.main__container__title {
		font-size: 26px;
	}

	.detail__date,
	.detail__cat {
		font-size: 12px;
	}

	.detail__date {
		padding: 0 0 1em;
	}

	.detail__sns__item {
		margin: 0;
	}
}

/*--------------------------
	投稿用
--------------------------*/
.alignleft {
	float: left;
	margin:0px 20px 20px 0;
	font-size: 0.9em;
}
.alignright {
	float: right;
	margin:0px 0 20px 20px;
	font-size: 0.9em;
}

.aligncenter {
	display: block;
	margin: 0 auto 20px;
	font-size: 0.9em;
}

.post table {
	border-collapse: collapse;
}

@media all and (max-width: 768px) {
	.post h3:not([class]) {
		font-size: 26px;
	}

	.alignleft {
		margin: 0 10px 10px 0;
	}

	.alignright {
		margin:0px 0 10px 10px;
	}

	.aligncenter {
		margin: 0 auto 10px;
	}
}

/*--------------------------
	form
--------------------------*/
.contact_heading {
    font-size: 1.5em;
    line-height: 33px;
    margin: 30px 0 10px;
    padding: 0;
    color: #0c2c7f;
    font-weight: bold;
    background: none;
    border: none;
}

.contact_heading .contact_icon {
    margin: 0 5px 0 0;
}

.contact_tel__txt,
.contact_tel__txt span {
    vertical-align: middle;
}

.page_guide {
	text-align: center;
	margin: 10px 50px 50px;
	padding-top: 90px;
}

.contact_submit {
	text-align: center;
}

.contact_submit input {
	-webkit-appearance: none;
	border: none;
	background-repeat: no-repeat;
	background-position: center;
	text-indent: -9999px;
	overflow: hidden;
}

.contact_submit input:disabled {
	opacity: .5;
}

.agree-box {
	margin: 0 0 40px;
	padding: 15px 0 25px;
	border-bottom: 1px solid #cccccc;
}

.agree-box__title {
	text-align: center;
	margin: 0 0 25px;
}

.privacy-box {
	width: 800px;
	height: 200px;
	margin: auto;
	padding: .5em;
	box-sizing: border-box;
	border: 1px solid #cccccc;
	background: #fff;
	box-sizing: border-box;
	overflow: hidden;
	overflow-y: scroll;
}

.privacy-wrap {
	padding: 14px;
}

.agree-input {
	text-align: center;
	padding: 25px 0 0;
}

.contact_form__table input[type="text"],
.contact_form__table input[type="email"],
.contact_form__table textarea {
	max-width: 100%;
	border: 1px solid #bbb;
	padding: 5px;
	box-sizing: border-box;
}

#ssl {
	text-align: center;
	padding: 4em 0 1em;
}

#ssl > * {
	text-align: left;
	display: inline-block;
	vertical-align: middle;
	margin: 0;
}
	@media all and (min-width: 769px) {
		#ssl > p:not([class]) {
			margin-left: 1em;
		}

		.contact_tel__number {
				font-size: 32px;
				margin: 0 30px;
		}

		.contact_form__table {
		  width: 100%;
		  border-top: 1px solid #ddd;
		  margin: 0 auto 30px;
		}

		.contact_form__table th {
		  font-size: 14px;
		  text-align: left;
		  vertical-align: top;
		  padding: 25px 20px 25px 20px;
		  overflow: hidden;
		  border-bottom: 1px solid #ddd;
		  width: 25%;
		  white-space: nowrap;
		  position: relative;
		}

		.required {
			font-weight: normal;
		  font-size: 12px;
		  color: #fff;
		  background: #cc0000;
		  line-height: 1;
		  margin: 0 0 0 10px;
		  padding: 5px;
		  letter-spacing: .05em;
		}

		.contact_form__table th .required {
		  position: absolute;
		  top: 25px;
		  right: 20px;
		}

		.contact_form__table td {
		  padding: 25px 20px;
		  border-bottom: 1px solid #ddd;
		  font-size: 14px;
		}

		.contact_form__table td label {
			margin: 0 15px 0 0;
		}

		.contact_form__table td textarea {
			height: 185px;
		}

		.contact_form__table td input[type="text"],
		.contact_form__table td input[type="email"],
		.contact_form__table td textarea {
		  	font-size: 14px;
		}

		.contact_form__table td #company,
        .contact_form__table td #name,
        .contact_form__table td #kana,
		.contact_form__table td #tel {
            width: 50%;
		}

		.contact_form__table td #address,
		.contact_form__table td #mail,
		.contact_form__table td textarea {
			width: 100%;
		}

		.contact_form__table td .row1 {
			margin: 0 0 10px;
		}

		.contact_form__table td .error {
		  color: #cc0000;
		}

		.contact_form__table td span.note {
			font-size: 13px;
		}

		.contact_form__table td #zip1, #contact-form td #zip2 {
		  margin: 0 0 8px;
		}

		.contact_submit {
		  margin: 0 0 50px;
		}

		.contact_submit input {
		  width: 215px;
		  height: 60px;
		  cursor: pointer;
			margin: 0 7px;
		}

		.contact_submit input[name="submitConfirm"] {
			width: 450px;
			background-image: url(../images/contact/btn_confirm.png);
		}

		.contact_submit input[name="submitBack"] {
			background-image: url(../images/contact/btn_back.png);
		}

		.contact_submit input[name="submit"] {
			background-image: url(../images/contact/btn_submit.png);
		}

		.contact_agree {
			padding: 20px 0;
		}

		.contact_agree .privacybox {
			height: 160px;
			overflow-y: scroll;
			border: 1px solid #dddddd;
			padding: 20px;
			margin: 26px 0 30px;
		}

		.contact_agree .checkwrap {
			text-align: center;
			margin: 0 0 10px;
		}
		/*

		#file_upload {
			width: 690px;
			height: 70px;
			text-indent: -9999px;
			overflow: hidden;
			border: none;
			background: none;
			cursor: pointer;
			background: url(../images/contact/btn_file.png) no-repeat;
		}

		#file_upload:focus {
			outline: none;
		}

		#fake_text_box {
			width: 100%;
			border: none;
			background: none;
			pointer-events: none;
		}

		.file-wrap {
			position: relative;
		}
		
		input#file {
			display: none;
		}

		.mwform-file-delete {
			display: none;
		}
		*/

		.file-wrap {
			position: relative;
		}

		.file-wrap br {
			display: none;
		}

		#file_upload {
			width: 690px;
			height: 70px;
			text-indent: -9999px;
			overflow: hidden;
			border: none;
			background: none;
			background: url(../images/contact/btn_file.png) no-repeat;
			position: absolute;
			top: 0;
			left: 0;
		}

		#file_upload:focus {
			outline: none;
		}

		input#file {
			width: 690px;
			height: 70px;
			cursor: pointer;
			position: relative;
			z-index: 1;
		}

		input#file:hover {
			cursor: pointer;
		}

		#fake_text_box {
			width: 100%;
			border: none;
			background: none;
			pointer-events: none;
		}

		.mwform-file-delete {
			display: none;
		}
	}

	@media all and (max-width: 970px) and (min-width: 769px) {
		#file_upload {
			width: 395px;
			height: 90px;
			background: url(../images/contact/btn_file02.png) no-repeat;
		}

		input#file {
			width: 395px;
			height: 90px;
		}
	}

	@media all and (max-width: 768px) {
		#ssl > p:not([class]) {
			margin-top: 1em;
		}

        .contact_tel__number {
            font-size: 20px;
            margin: 0 10px;
        }

		.contact_form__table {
			margin: 0 0 20px;
			padding: 10px 0 0;
			line-height: 1.5em;
		}

		.contact_form__table,
		.contact_form__table tbody,
		.contact_form__table tr,
		.contact_form__table th,
		.contact_form__table td {
			display: block;
			text-align: left;
			font-weight: normal;
		}

		.contact_form__table td {
			margin: 0 0 15px;
		}

		.contact_form__table input,
		.contact_form__table textarea {
			margin: 3px 0;
			font-size: 16px;
		}
		input[type="submit"] {
			margin: 0 10px 0 0;
		}

		.required,
		.contact_form__table .error {
			color: red;
		}

		.contact_form__table label {
			display: block;
		}

		.mw_wp_form .contact_form__table .horizontal-item + .horizontal-item {
			display: block;
			margin: 0;
		}

		.page_guide {
			margin: 0 0 20px;
			padding-top: 65px;
		}

		.contact_agree {
			padding: 0 0 20px;
		}

		.contact_agree .privacybox {
			height: 140px;
			overflow-y: scroll;
			border: 1px solid #dddddd;
			padding: 10px;
			margin: 26px 0 10px;
		}

		.privacy-box {
			width: 100%;
			height: 150px;
		}

		.contact_submit input {
		  width: 110px;
		  height: 42px;
			margin: 0 5px;
			background-size: contain;
		}

		.contact_submit input[name="submitConfirm"] {
			width: 225px;
			background-image: url(../images/contact/btn_confirm_sp.png);
		}

		.contact_submit input[name="submitBack"] {
			background-image: url(../images/contact/btn_back_sp.png);
		}

		.contact_submit input[name="submit"] {
			background-image: url(../images/contact/btn_submit_sp.png);
		}

		input.pc {
			display: none!important;
		}
	}
