@charset "UTF-8";
/*----------------------------
  Fonts
----------------------------*/
span{
  font-weight: bold;
}
p {
 word-break: normal;
}

i{
  margin-right: 6px;
}
.pc_only{
  display: block;
  margin: 0 auto;
}
.sp_only{
  display: none!important;
}
.w-96{
width: 96%;
margin: 0 auto;
}
@media screen and (max-width: 767px),print {
  .pc_only{
    display: none!important;
  }
  .sp_only{
    display: block!important;
  }
.w-96{
width: 100%;
	}
	
/*img {
    width: 100%;
    height: auto;
  }
*/	
}
/*----------------------------------------------------
 link
--------------------------------------------------- */
a:link,
a:visited,
a:active{
    color: #333;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}
a:hover{
  color: #9a9a9a;
    text-decoration: none;
}

/*----------------------------------------------------
  .scrollView
--------------------------------------------------- */
.scrollView{
  -webkit-transition: all 0.1s 0s ease;
     -moz-transition: all 0.1s 0s ease;
      -ms-transition: all 0.1s 0s ease;
       -o-transition: all 0.1s 0s ease;
          transition: all 0.1s 0s ease;
          opacity: 0;
  -webkit-transform: scale(1,1) translate(-0%,20px);
     -moz-transform: scale(1,1) translate(-0%,20px);
      -ms-transform: scale(1,1) translate(-0%,20px);
       -o-transform: scale(1,1) translate(-0%,20px);
          transform: scale(1,1) translate(-0%,20px);
}
.scrollView.view{
  opacity: 1;
  -webkit-transform: scale(1,1) translate(-0%,0%);
     -moz-transform: scale(1,1) translate(-0%,0%);
      -ms-transform: scale(1,1) translate(-0%,0%);
       -o-transform: scale(1,1) translate(-0%,0%);
          transform: scale(1,1) translate(-0%,0%);

}
/*----------------------------------------------------
 loading
--------------------------------------------------- */
#loading{
  position: fixed;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 110;
  background:#FFF no-repeat center center;
}
#loading.out{
  opacity: 0;
    -webkit-transition: all 0.5s linear;
       -moz-transition: all 0.5s linear;
        -ms-transition: all 0.5s linear;
         -o-transition: all 0.5s linear;
            transition: all 0.5s linear;
}
.FormatLoader,
.FormatLoader:after {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
}
.FormatLoader {
  margin: 0 auto;
  margin-top: -20px;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  border-right: 1px solid rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  border-left: 1px solid #eee;
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*----------------------------------------------------
  #wrapper
--------------------------------------------------- */
#wrapper{
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-top: 100px;
}

@media screen and (max-width: 767px),print {
  #wrapper{
    width: 100%;
    padding-top: 58px;
  }
}






address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
details,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
kbd,
label,
legend,
li,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent
}
body {
    line-height: 1
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}
nav ul {
    list-style: none
}
blockquote,
q {
    quotes: none
}
blockquote:after,
blockquote:before,
q:after,
q:before {
    content: '';
    content: none
}
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent
}
table {
    border-collapse: collapse;
    border-spacing: 0
}
img {
    vertical-align: bottom
}
ol,
ul {
    list-style: none
}
/* --------------------------------------------------
 03: Animation
 -------------------------------------------------- */
/* slideDown */
@-webkit-keyframes slideDown {
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
@keyframes slideDown {
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

/* fadeIn */
@-webkit-keyframes fadeIn {
	0% {
		visibility: hidden;
		opacity: 0;
	}
	100% {
		visibility: visible;
		opacity: 1;
	}
}
@keyframes fadeIn {
	0% {
		visibility: hidden;
		opacity: 0;
	}
	100% {
		visibility: visible;
		opacity: 1;
	}
}

/* fadeOut */
@-webkit-keyframes fadeOut {
	0% {
		visibility: visible;
		opacity: 1;
	}
	100% {
		visibility: hidden;
		opacity: 0;
	}
}
@keyframes fadeOut {
	0% {
		visibility: visible;
		opacity: 1;
	}
	100% {
		visibility: hidden;
		opacity: 0;
	}
}

/* slideOutIn */
@-webkit-keyframes slideOutIn {
	0% {
		opacity: 1;
		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
	}
	49.9% {
		opacity: 0;
		-webkit-transform: translate(100%, -50%);
		transform: translate(100%, -50%);
	}
	50% {
		-webkit-transform: translate(-100%, -50%);
		transform: translate(-100%, -50%);
	}
	100% {
		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
	}
}
@keyframes slideOutIn {
	0% {
		opacity: 1;
		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
	}
	49.9% {
		opacity: 0;
		-webkit-transform: translate(100%, -50%);
		transform: translate(100%, -50%);
	}
	50% {
		-webkit-transform: translate(-100%, -50%);
		transform: translate(-100%, -50%);
	}
	100% {
		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
	}
}

/* scrollStretch */
@-webkit-keyframes scrollStretch {
	0% {
		width: 80%;
	}
	75% {
		width: 100%;
	}
	100% {
		width: 100%;
	}
}
@keyframes scrollStretch {
	0% {
		width: 80%;
	}
	75% {
		width: 100%;
	}
	100% {
		width: 100%;
	}
}

/* float */
@-webkit-keyframes floatHorizontal {
	0% {
		-webkit-transform: translate3d(4px, 0, 0);
		transform: translate3d(4px, 0, 0);
	}
	50% {
		-webkit-transform: translate3d(-4px, 0, 0);
		transform: translate3d(-4px, 0, 0);
	}
	100% {
		-webkit-transform: translate3d(4px, 0, 0);
		transform: translate3d(4px, 0, 0);
	}
}
@keyframes floatHorizontal {
	0% {
		-webkit-transform: translate3d(4px, 0, 0);
		transform: translate3d(4px, 0, 0);
	}
	50% {
		-webkit-transform: translate3d(-4px, 0, 0);
		transform: translate3d(-4px, 0, 0);
	}
	100% {
		-webkit-transform: translate3d(4px, 0, 0);
		transform: translate3d(4px, 0, 0);
	}
}

@-webkit-keyframes floatVertical {
	0% {
		margin-top: 4px;
	}
	50% {
		margin-top: -4px;
	}
	100% {
		margin-top: 4px;
	}
}

@keyframes floatVertical {
	0% {
		margin-top: 4px;
	}
	50% {
		margin-top: -4px;
	}
	100% {
		margin-top: 4px;
	}
}

@media only screen and (max-width: 1024px) {
	@-webkit-keyframes floatHorizontal {
		0%, 50%, 100% {
			-webkit-transform: none;
			transform: none;
		}
	}
	@keyframes floatHorizontal {
		0%, 50%, 100% {
			-webkit-transform: none;
			transform: none;
		}
	}
	@-webkit-keyframes floatVertical {
		0%, 50%, 100% {
			-webkit-transform: none;
			transform: none;
		}
	}
	@keyframes floatVertical {
		0%, 50%, 100% {
			-webkit-transform: none;
			transform: none;
		}
	}
}

/* imageLoader */
@-webkit-keyframes imageLoader {
	0% {
		visibility: visible;
		opacity: 1;
		right: 100%;
		left: 0;
	}
	40%, 55% {
		right: 0;
		left: 0;
	}
	100% {
		visibility: visible;
		opacity: 1;
		left: 100%;
		right: 0;
	}
}
@keyframes imageLoader {
	0% {
		visibility: visible;
		opacity: 1;
		right: 100%;
		left: 0;
	}
	40%, 55% {
		right: 0;
		left: 0;
	}
	100% {
		visibility: visible;
		opacity: 1;
		left: 100%;
		right: 0;
	}
}

@-webkit-keyframes imageVisible {
	0%, 99% {
		visibility: hidden;
		opacity: 0;
	}
	100% {
		visibility: visible;
		opacity: 1;
	}
}

@keyframes imageVisible {
	0%, 99% {
		visibility: hidden;
		opacity: 0;
	}
	100% {
		visibility: visible;
		opacity: 1;
	}
}



/*=============================================================================*/
/* header
=============================================================================*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 111;
	background: #FFF;
	backface-visibility: hidden;
}

header .headerInr {
	/*width: 1366px;*/
	margin: 0 auto;
	z-index: 111;
}

header .headerInrBox {
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 111;
	position: relative;
}

header .h_logo,
header #mainLogo {
	padding: 0 39px 0 40px;
	z-index: 111;
}

header .h_logo img,
header #mainLogo img {
	height: 30px;
}

#gNavPc {
	display: block;
	padding-left: 150px;
}

#gNavPc > ul {
	display: flex;
	align-items: center;
}

#gNavPc > ul > li {
	font-family: "YakuHanJP","Noto Sans Japanese";
	font-size: 15px;
	font-weight: 600;
	line-height: 2.4rem;
	letter-spacing: 0.1rem;
	display: flex;
	align-items: center;
	height: 100px;
	z-index: 110;
	padding: 0 12px;
}

#gNavPc > ul > li > a {
	color: #212121;
	display: flex;
	align-items: center;
	padding: 0 1px;
	position: relative;
	height: 100px;
	cursor: pointer;
}

#gNavPc > ul > li > a::after {
	content: '';
	border-bottom: 2px solid #212121;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	transform: scale(0, 1);
	transition: transform 0.3s;
}

#gNavPc > ul > li > a:hover {
	color: #424242;
}

#gNavPc > ul > li > a.navActive::after {
	transform: scale(1, 1);
	border-bottom: 2px solid #212121;
}

#gNavPc > ul > li.gNavAct > a::after {
	transform: scale(1, 1);
}



.gNavWrap {
	position: absolute;
	width: 100%;
	top: 100px;
	left: 0;
	z-index: 105;
	height: 0;
	padding: 0;
	overflow: hidden;
	/*display: none;*/
    -webkit-transition: 0.2s ease-out;
    -o-transition: 0.2s ease-out;
    transition: 0.2s ease-out;

	
	

}
.gNavWrap .gNav01Wrap{
	
	opacity: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
	display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	
	
}

.gNavWrap::before {
	width: 200vw;
	background: #f5f5f5;
	position: absolute;
	content: "";
	height: 100%;
	top: 0;
	left: -50vw;
}

.gNavWrap .gNavInr01 {
	width: 480px;
	position: relative;
	padding-left: 80px;
}

.gNavWrap .gNavInr01 p:nth-child(1) {
	font-family: 'Open Sans', sans-serif;
	font-size: 25px;
	font-weight: 600;
	line-height: 45px;
	letter-spacing: 0.1rem;
	margin-bottom: 15px;
	color: #212121;

}

.gNavWrap .gNavInr01 p:nth-child(2) {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.05rem;
	margin-bottom: 20px;
	color: #626262;
}

.gNavWrap .gNavInr02 {
	width: 400px;
	position: relative;
	padding: 0 40px;
	border-left: 1px solid #D3D4DC;
}

.gNavWrap .gNavInr02 ul > li {
	font-family: "YakuHanJP","Noto Sans Japanese";
	font-size: 16px;
	font-weight: 400;
	line-height: 40px;
	letter-spacing: 0.1rem;
}

.gNavWrap .gNavInr02 ul > li > span {
	color: #D3D4DC;
}

.gNavWrap .gNavInr02 ul > li > ul li {
	font-family: "YakuHanJP","Noto Sans Japanese";
	font-size: 18px;
	font-weight: 400;
	line-height: 40px;
	letter-spacing: 0.1rem;
	padding-left: 2rem;
}

.gNavWrap .gNavInr02 ul > li .btn02mid {
	padding-right: 25px;
}

.gNavWrap .gNavInr02 ul > li .btn02mid::before {
	width: 15px;
	height: 15px;
	margin-top: -7.5px;
}

.gNavAct .gNavWrap {
	height: auto;
	padding: 40px 0;
	background: #FFF;
	display: flex;
	opacity: 1;
		


}

.headerLang {
	display: flex;
	font-family: "JinsNext";
	font-size: 1rem;
	font-weight: 500;
	line-height: 2.4rem;
	letter-spacing: 0.15rem;
	border-left: 2px solid #D3D4DC;
	padding: 2px 40px;
}

.headerLang li a {
	color: #D3D4DC;
}

.headerLang li a.active {
	color: #203a4d;
	border-bottom: solid 2px #203a4d;
}

.headerLang li a:hover {
	color: #203a4d;
}

.headerLang li + li {
	margin-left: 10px;
}

.menuTrigger,
.menuTrigger span {
	display: inline-block;
	box-sizing: border-box;
	backface-visibility: hidden;
}

.menuTrigger {
	position: relative;
	width: 3.125vw;
	height: 3.125vw;
	z-index: 111;
	right: 2.60417vw;
	display: none;
}

.menuTrigger::before {
	content: 'Menu';
	right: 5.20833vw;
	position: absolute;
	font-family: "JinsNext";
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 2.7rem;
	letter-spacing: 0.15rem;
}

.menuTrigger span {
	position: absolute;
	width: 3.125vw;
	height: 2px;
	background-color: #37455E;
}

.menuTrigger span:nth-of-type(1) {
	top: 0.26042vw;
	left: 1.04167vw;
	width: 2.08333vw;
}

.menuTrigger span:nth-of-type(2) {
	top: 1.30208vw;
}

.menuTrigger span:nth-of-type(3) {
	top: 2.34375vw;
}

.menuTrigger:not(.active):hover span:nth-of-type(1) {
	background-color: #37455E;
}

.menuTrigger:not(.active):hover span:nth-of-type(2) {
	background-color: #37455E;
}

.menuTrigger:not(.active):hover span:nth-of-type(3) {
	background-color: #37455E;
}

.menuTrigger.active span:nth-of-type(1) {
	transform: translateY(1.5625vw) rotate(-45deg);
	background-color: #37455E;
	width: 4.16667vw;
	left: -0.52083vw;
	top: -0.26042vw;
}

.menuTrigger.active span:nth-of-type(2) {
	opacity: 0;
}

.menuTrigger.active span:nth-of-type(3) {
	transform: translateY(-0.52083vw) rotate(45deg);
	width: 4.16667vw;
	left: -0.52083vw;
	top: 1.82292vw;
	background-color: #37455E;
}

#gNavSp {
	display: none;
}

#gNavSp .gNavSpInr {
	position: absolute;
	z-index: 110;
	background: #F5F7F9;
	left: 0;
	top: 0;
	padding-top: 7.8125vw;
	width: 100%;
	height: 100vh;
	overflow-y: scroll;
	-webkit-overflow-scrolling: auto;
	overflow-scrolling: auto;
	display: none;
}

.headerLinkLv1 {
	border-top: 0.13021vw solid #D3D4DC;
}

.headerLinkLv1 > li {
	font-family: "YakuHanJP","Noto Sans Japanese";
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 2.4rem;
	letter-spacing: 0.15rem;
	background: #FFF;
	border-bottom: 1px solid #D3D4DC;
}

.hdSpToggle::after {
	position: absolute;
	line-height: 1;
	content: '＋';
	color: #2c2c2c;
	right: 3.64583vw;
	top: 50%;
	margin-top: -0.91146vw;
}

.hdSpToggle.active::after {
	content: 'ー';
}

.headerLinkLv2 a {
	display: block;
	position: relative;
	padding: 15px 40px;
}

.headerLinkLv2 a::after {
	position: absolute;
	content: '';
	background-image: url(/jp/common/image/ic_r02_gr.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: 0.78125vw;
	height: 1.43229vw;
	right: 3.90625vw;
	top: 50%;
	margin-top: -0.71615vw;
}

.headerLinkLv2 a.btn02mid::after {
	background-image: none;
}

.headerLinkLv3 a {
	padding-left: 60px;
}

.headerLinkLv3 span {
	color: #D3D4DC;
	padding-left: 60px;
}

.headerLinkLv4 a {
	padding-left: 80px;
}

.headerLinkMenu {
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 20px 7.8125vw;
	background: #FFF;
	position: relative;
}

.headerLinkMenu::after {
	width: 50%;
	position: relative;
	content: "";
}

.headerLinkMenu li {
	width: 50%;
	font-family: "YakuHanJP","Noto Sans Japanese";
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 2.7rem;
	letter-spacing: 0.15rem;
	padding: 0 6.51042vw;
}

.headerLinkMenu li a {
	padding: 20px 0;
	display: block;
	position: relative;
}

.headerLinkMenu li a::after {
	position: absolute;
	content: '';
	background-image: url(/jp/common/image/ic_r02_gr.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: 1.04167vw;
	height: 1.69271vw;
	right: 0;
	top: 50%;
	margin-top: -0.84635vw;
}

.headerLinkMenu li a.btn02mid::before {
	right: -0.52083vw;
}

.headerLinkMenu li a.btn02mid::after {
	background-image: none;
}

.headerLangSp {
	display: flex;
	justify-content: center;
	padding: 40px 0 40px;
}

.headerLangSp li {
	padding: 0 5.20833vw;
	font-family: "JinsNext";
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 2.7rem;
	letter-spacing: 0.15rem;
}

.headerLangSp li:first-child {
	border-right: 0.13021vw solid #D3D4DC;
}

.headerLangSp li .active {
	border-bottom: 2px solid #37455E;
}

.btn01mid {
	position: relative;
	padding-right: 65px;
}

.btn01mid::before,
.btn01mid::after {
	position: absolute;
	content: '';
	background-image: url(../images/ic_r01_gr.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: 42px;
	height: 13px;
	right: 0;
	top: 50%;
	margin-top: -6.5px;
}

.btn01mid::before {
	opacity: 1;
	background-position: 0 0;
}

.btn01mid::after {
	opacity: 0;
	background-position: left -62px top 0;
}

.btn01mid:hover::before {
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    animation-name: btn01Before;
}

.btn01mid:hover::after {
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    animation-name: btn01After;
}

/* お問い合わせ */
/* -----------------------------------------------------------
	.c-btn
----------------------------------------------------------- */
.icon-tel-number {
    width: 100%;
    /*min-width: 200px;*/
	/*height: 50px;*/
    background: url(../img/h-tel.svg) no-repeat 50%;
    background-size: contain;
    font-size: 1px;
    text-indent: -99999px;
	vertical-align: baseline;
    /*margin-bottom: 5px;*/
	line-height: 1rem!important;
	    -o-transition: all 0.5s ease;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
	margin-right: 10px;

}

.h-btn01 {
    /*margin: 50px auto 0;*/
}
    
.h-btn01 {
    width: 340px;
}

.h-btn01 a, .h-btn01 a span {
    position: relative;
    display: block;
}
.h-btn01 a {
    background: #00479d;
}


.h-btn01 a{
    text-decoration: none;
    color: #fff!important;
}
.h-btn01 a:hover{
    color: #fff!important;
}

.h-btn01 a span {
    z-index: 1;
    text-align: center;
    font-size: 14px;
    padding: 14px 10px 14px 10px;
    letter-spacing: 1px;
	
}
.h-btn01 a span::before {
    top: 30%;
}
.h-btn01-svg{
	vertical-align: middle;
	padding-right: 8px;}
.h-mail {
	fill: #fff;
}

.h-btn01 a::after {
    top: 0;
    height: 100%;
    background: #5689c6;
}
.h-btn01 a::after {
    content: "";
    position: absolute;
    left: 0;
    width: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.h-btn01 a:hover::after {
    width: 100%
}

@media only screen and (max-width: 1000px) {
	
	
header .headerInr {
	width: auto;
}

header .headerInrBox {
	flex-wrap: wrap;
	background: #FFF;
	height: 7.8125vw;
}

header .h_logo,
header #mainLogo {
	padding: 2.21354vw 0 2.21354vw 2.60417vw;
}

header .h_logo img,
header #mainLogo img {
	height: 2.55729vw;
}

#gNavPc {
	display: none;
}

#gNavPc > ul > li {
	font-size: 1.82292vw;
	letter-spacing: 0.01953vw;
	line-height: 2.60417vw;
}

.gNavWrap .gNavInr01 p:nth-child(1) {
	font-size: 3.125vw;
	letter-spacing: 0.02604vw;
	line-height: 5.20833vw;
}

.gNavWrap .gNavInr01 p:nth-child(2) {
	font-size: 1.82292vw;
	letter-spacing: 0.01953vw;
	line-height: 2.60417vw;
}

.gNavWrap .gNavInr02 ul > li {
	font-size: 1.82292vw;
	letter-spacing: 0.01953vw;
	line-height: 2.60417vw;
}

.gNavWrap .gNavInr02 ul > li > ul li {
	font-size: 1.82292vw;
	letter-spacing: 0.01953vw;
	line-height: 2.60417vw;
}

.headerLang {
	font-size: 1.82292vw;
	letter-spacing: 0.01953vw;
	line-height: 2.60417vw;
}

.headerLang {
	display: none;
}

.menuTrigger {
	display: block;
}

.menuTrigger::before {
	font-size: 1.82292vw;
	letter-spacing: 0.01953vw;
	line-height: 2.60417vw;
}

#gNavSp {
	display: flex;
}

.headerLinkLv1 > li {
	font-size: 1.82292vw;
	letter-spacing: 0.01953vw;
	line-height: 2.60417vw;
}

.hdSpToggle {
	display: block;
	position: relative;
	padding: 20px 40px;
}

.headerLinkLv2 {
	background: #F5F7F9;
	padding: 20px 0;
	display: none;
}

.headerLinkLv2 a.btn02mid::before {
	width: 1.5625vw;
	height: 1.5625vw;
	right: 3.64583vw;
	top: 50%;
	margin-top: -0.78125vw;
}

.headerLinkMenu li {
	font-size: 1.82292vw;
	letter-spacing: 0.01953vw;
	line-height: 2.60417vw;
}

.headerLangSp li {
	font-size: 1.82292vw;
	letter-spacing: 0.01953vw;
	line-height: 2.60417vw;
}
}	
@media only screen and (max-width: 1024px) {

#gNavSp .gNavSpInr {
	padding-top: 7.8125vw;
	padding-bottom: 26.04167vw;
}

.headerLinkLv1 > li {
	border-bottom: 0.13021vw solid #D3D4DC;
	font-family: "YakuHanJP", "JinsNext", "Noto Sans Japanese" !important;
	font-size: 2.8rem;
	font-weight: 400;
	line-height: 4.8rem;
	letter-spacing: 0.35rem;
}

.hdSpToggle {
	padding: 3.90625vw 5.20833vw;
}

.hdSpToggle::after {
	right: 5.20833vw;
	margin-top: -1.30208vw;
}

.headerLinkLv2 {
	padding: 2.60417vw 0;
}

.headerLinkLv2 a {
	padding: 2.60417vw 5.20833vw;
}

.headerLinkLv2 a::after {
	width: 1.04167vw;
	height: 1.69271vw;
	right: 5.85938vw;
	margin-top: -0.84635vw;
}

.headerLinkLv2 a.btn02mid::before {
	right: 5.33854vw;
}

.headerLinkLv3 a {
	padding-left: 7.8125vw;
}

.headerLinkLv3 span {
	padding-left: 7.8125vw;
}

.headerLinkLv4 a {
	padding-left: 10.41667vw;
}

.headerLinkMenu {
	padding: 5.20833vw 16.14583vw;
}

.headerLinkMenu li a {
	padding: 2.60417vw 0;
}

.headerLangSp {
	padding: 7.8125vw 0 10.41667vw;
}

}

@media only screen and (max-width: 1024px) and (max-width: 1366px) {

.headerLinkLv1 > li {
	font-size: 2.60417vw;
	letter-spacing: 0.02604vw;
	line-height: 4.55729vw;
}

}

@media only screen and (max-width: 1024px) and (max-width: 750px) {

.headerLinkLv1 > li {
	font-size: 4.8vw;
	letter-spacing: 0.03333vw;
	line-height: 8vw;
}

}
	
	
	
@media only screen and (max-width: 750px) {	
	
header {
	min-width: 0;
}

header .headerInrBox {
	height: 16vw;
}

header .h_logo,
header #mainLogo {
	padding: 0 0 0 5.33333vw;
}

header .h_logo img,
header #mainLogo img {
	height: 6vw;
	width: auto;
}

#gNavPc > ul > li {
	font-size: 3.46667vw;
	letter-spacing: 0.02667vw;
	line-height: 5.6vw;
}

.gNavWrap .gNavInr01 p:nth-child(1) {
	font-size: 4.8vw;
	letter-spacing: 0.03333vw;
	line-height: 8vw;
}

.gNavWrap .gNavInr01 p:nth-child(2) {
	font-size: 3.46667vw;
	letter-spacing: 0.02667vw;
	line-height: 5.6vw;
}

.gNavWrap .gNavInr02 ul > li {
	font-size: 3.46667vw;
	letter-spacing: 0.02667vw;
	line-height: 5.6vw;
}

.gNavWrap .gNavInr02 ul > li > ul li {
	font-size: 3.46667vw;
	letter-spacing: 0.02667vw;
	line-height: 5.6vw;
}

.headerLang {
	font-size: 3.46667vw;
	letter-spacing: 0.02667vw;
	line-height: 5.6vw;
}

.menuTrigger {
	width: 6.13333vw;
	height: 6.13333vw;
	right: 5.33333vw;
}

.menuTrigger::before {
	font-size: 3.46667vw;
	letter-spacing: 0.02667vw;
	line-height: 5.6vw;
}

.menuTrigger::before {
	right: 9.33333vw;
	top: 50%;
	margin-top: -2.26667vw;
}

.menuTrigger span {
	width: 6.13333vw;
	height: 2px;
}

.menuTrigger span:nth-of-type(1) {
	top: 0.53333vw;
	left: 2.13333vw;
	width: 4vw;
}

.menuTrigger span:nth-of-type(2) {
	top: 2.66667vw;
}

.menuTrigger span:nth-of-type(3) {
	top: 4.8vw;
}

.menuTrigger.active span:nth-of-type(1) {
	transform: translateY(1.6vw) rotate(-45deg);
	width: 8.53333vw;
	left: -1.06667vw;
	top: 1.06667vw;
}

.menuTrigger.active span:nth-of-type(3) {
	transform: translateY(-1.06667vw) rotate(45deg);
	width: 8.53333vw;
	left: -1.06667vw;
	top: 3.73333vw;
}

#gNavSp .gNavSpInr {
	padding-top: 16vw;
	padding-bottom: 26.66667vw;
}

.headerLinkLv1 {
	border-top: 0.13333vw solid #D3D4DC;
}

.headerLinkLv1 > li {
	font-size: 3.46667vw;
	letter-spacing: 0.02667vw;
	line-height: 5.6vw;
}

.headerLinkLv1 > li {
	border-bottom: 0.13333vw solid #D3D4DC;
}

.hdSpToggle {
	padding: 5.33333vw 5.33333vw;
}

.hdSpToggle::after {
	line-height: inherit;
	right: 5.33333vw;
	margin-top: -2.66667vw;
}

.headerLinkLv2 {
	padding: 2.66667vw 0;
}

.headerLinkLv2 a {
	padding: 2.66667vw 5.33333vw;
}

.headerLinkLv2 a::after {
	width: 1.6vw;
	height: 2.93333vw;
	right: 6vw;
	top: 50%;
	margin-top: -1.46667vw;
}

.headerLinkLv2 a.btn02mid::before {
	width: 3.2vw;
	height: 3.2vw;
	margin-top: -1.6vw;
	right: 5.2vw;
}

.headerLinkLv3 a {
	padding-left: 8vw;
}

.headerLinkLv3 span {
	padding-left: 8vw;
}

.headerLinkLv4 a {
	padding-left: 10.66667vw;
}

.headerLinkMenu {
	width: 100%;
	padding: 10.66667vw 0;
}

.headerLinkMenu li {
	font-size: 3.46667vw;
	letter-spacing: 0.02667vw;
	line-height: 5.6vw;
}

.headerLinkMenu li {
	padding: 0 5.33333vw;
}

.headerLinkMenu li a {
	padding: 2.66667vw 0;
}

.headerLinkMenu li a::after {
	width: 1.6vw;
	height: 2.93333vw;
	margin-top: -1.46667vw;
}

.headerLinkMenu li a.btn02mid::before {
	right: -0.4vw;
}

.headerLangSp {
	padding: 5.33333vw 0 10.66667vw;
}

.headerLangSp li {
	font-size: 3.46667vw;
	letter-spacing: 0.02667vw;
	line-height: 5.6vw;
}

.headerLangSp li {
	text-align: center;
	width: 50%;
}
	
}	







.nav-global__list-2nd {
	/*display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	text-align: left;*/
}



.nav-global__list-2nd > a {
	display: block;
	text-decoration: none;
}

.nav-global__list-2nd > a:hover .nav-global__image::before {
	content: "";
	visibility: visible;
	opacity: 1;
}

.nav-global__list-2nd > a:hover .nav-global__image > img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.nav-global__list-2nd > a:hover .nav-global__text::before {
	-webkit-animation: slideOutIn .5s ease-in-out;
	animation: slideOutIn .5s ease-in-out;
}


.nav-global__image {
	overflow: hidden;
	position: relative;
	/*border-radius: 6px;*/
	margin-bottom: 10px;
}

.nav-global__image img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    -webkit-transition: .5s;
    transition: .5s;
}

.nav-global__image::before {
	content: "";
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 3;
	background-color: rgba(255, 255, 255, .3);
	-webkit-transition: .5s;
	transition: .5s;
}

.nav-global__text {
	display: inline-block;
	position: relative;
	margin-top: 12px;
	padding-left: 32px;
	color:#000;
}

.nav-global__text::before {
	content: "";
	position: absolute;
	top: 13px;
	left: 2px;
	width: 16px;
	height: 16px;
	background: url("../images/h-arrow.png") no-repeat;
	background-size: contain;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}





/* ==========================================================================
   Layout - Breadcrumbs
   ========================================================================== */
/* Breadcrumbs
   ========================================================================== */
/*.breadcrumbs {
  position: relative;
  bottom: -50px;
  z-index: 3;
  width: 100%;
  height: 0;
  margin: 0 auto;
  padding: 0 40px;
  font-size: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}*/
@media (min-width: 769px) {
  .breadcrumbs a:hover,
  .breadcrumbs a:link:hover,
  .breadcrumbs a:active:hover,
  .breadcrumbs a:visited:hover {
    color: #222;
  }
}
.breadcrumbs > ol {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  color: #555;
}
.breadcrumbs > ol > li {
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: middle;
  font-size: 1.2em;
  position: relative;
  padding-left: 25px;
}
.breadcrumbs > ol > li:before {
  position: absolute;
  left: 5px;
  content: "／";
}
.breadcrumbs > ol > li:first-child {
  padding-left: 0;
}
.breadcrumbs > ol > li:first-child:before {
  content: none;
}
.breadcrumbs > ol > li:first-child img {
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: baseline;
  width: 14px;
  margin-right: 8px;
}
.breadcrumbs > ol > li > a {
  color: #555;
  text-decoration: underline;
}
@media (min-width: 769px) {
  .breadcrumbs > ol > li > a:hover {
    text-decoration: none;
  }
}
@media (max-width: 768px) {
  .breadcrumbs {
    display: none;
  }
}
/* Teheme old */
@media screen and (max-width: 768px) {
  .topicpathA {
    display: none;
  }
}
/* ==========================================================================
   Layout - info
   ========================================================================== */
.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important
}
.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important
}


@media screen and (min-width: 1367px) {
  #contact-bnr {
    display: none!important;
  }
}


#contact-bnr {
    position: fixed;
    z-index: 999;
    right: -100%;
    bottom: 0;
    border-radius: 20px 0 0 20px;
    -webkit-transition: all 1s cubic-bezier(1,0,0,1);
    transition: all 1s cubic-bezier(1,0,0,1);
    -webkit-transition-timing-function: cubic-bezier(1,0,0,1);
    transition-timing-function: cubic-bezier(1,0,0,1);
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .3);
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
	        bottom: -1px

}
@media(max-width:991px) {
    #contact-bnr {
        bottom: -1px
    }
}
#contact-bnr .contact-form,
#contact-bnr .contact-tel {
    display: block
}
#contact-bnr .contact-form i,
#contact-bnr .contact-tel i {
    font-size: 1.8rem
}
@media(max-width:575px) {
    #contact-bnr .contact-form i,
    #contact-bnr .contact-tel i {
        font-size: 1.6rem
    }
}
#contact-bnr .contact-form:active,
#contact-bnr .contact-form:focus,
#contact-bnr .contact-form:hover,
#contact-bnr .contact-tel:active,
#contact-bnr .contact-tel:focus,
#contact-bnr .contact-tel:hover {
    text-decoration: none;
    -webkit-transition: all 0.3s cubic-bezier(0.165,.84,0.44,1);
    transition: all 0.3s cubic-bezier(0.165,.84,0.44,1);
    -webkit-transition-timing-function: cubic-bezier(0.165,.84,0.44,1);
    transition-timing-function: cubic-bezier(0.165,.84,0.44,1)
}
#contact-bnr .contact-tel {
    padding: 15px;
    background: #fff;
	fill:#00479d;
	border-radius: 20px 0 0 0
}
@media(max-width:575px) {
    #contact-bnr .contact-tel {
        padding: 10px
    }
}
#contact-bnr .contact-tel .wrap-r p {
    margin-bottom: 0;
    font-family: brandon-grotesque;
    line-height: 1.2rem
}
#contact-bnr .contact-tel .wrap-r p.top,#contact-bnr .contact-tel .wrap-r p.btm {
    font-weight: 500;
    font-size: 0.9rem
}
#contact-bnr .contact-tel:active,
#contact-bnr .contact-tel:focus,
#contact-bnr .contact-tel:hover {
    background-color: #00479d;
    color: #fff;
	fill:#fff;
		
}
#contact-bnr .contact-form {
    padding: 20px 17px 21px;
    background-color: #00479d;
	fill:#fff;
    color: #fff;
}
@media(max-width:575px) {
    #contact-bnr .contact-form {
        padding: 13px 10px
    }
}
#contact-bnr .contact-form .wrap-l {
    padding-right: 5px
}
#contact-bnr .contact-form .wrap-r p {
    margin-bottom: 0;
    font-family: brandon-grotesque;
    font-size: 0.9rem
}
#contact-bnr .contact-form:active,
#contact-bnr .contact-form:focus,
#contact-bnr .contact-form:hover {
    background-color: #fff !important;
    color: #00479d;
	fill:#00479d	
}
#contact-bnr.headroom--not-top {
    right: 0
}





/* ==========================================================================
   Layout - Footer
   ========================================================================== */
.l-footer {
    /*margin-top: 50px;*/
    position: relative;
    z-index: 2;
    padding-bottom: 118px;
    background-color: #1d1d1d;
    color: #fff;
    /*font-weight: 700;*/
	border-top : 6px solid #cf324a;
	
}

.l-footer__nav a:active, .l-footer__nav a:link, .l-footer__nav a:visited,
.l-footer__sns a:active, .l-footer__sns a:link, .l-footer__sns a:visited{ 
	color: #fff;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

@media screen and (max-width:800px) {
    .l-footer {
        padding-bottom: 42px;
        margin-top: 44px
    }
}
.l-footer__container {
    width: 100%;
    overflow: hidden
}
.l-footer__wrap {
    width: 82.43%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    padding-top: 120px;
    font-size: 13px
}
@media screen and (min-width:1601px) {
    .l-footer__wrap {
        width: 1319px
    }
}
@media screen and (max-width:1200px) {
    .l-footer__wrap {
        width: calc(100% - 160px)
    }
}
@media screen and (max-width:1000px) {
    .l-footer__wrap {
        width: calc(100% - 80px)
    }
}
@media screen and (max-width:800px) {
    .l-footer__wrap {
        width: 83.2%
    }
}
@media screen and (max-width:1000px) {
    .l-footer__wrap {
        padding-top: 64px;
        max-width: 84%;
        justify-content: space-between;
        flex-wrap: wrap
    }
}
@media screen and (max-width:370px) {
    .l-footer__wrap {
        justify-content: flex-start
    }
}
.l-footer__about {
    padding-left: 2px;
    margin-right: auto
}
@media screen and (min-width:801px) {
    .l-footer__about {
        /*display: flex;*/
        align-items: center;
        padding-bottom: 4px
    }
}
@media screen and (max-width:1000px) {
    .l-footer__about {
        padding-left: 0;
        margin-bottom: 44px;
        width: 100%
    }
}
.l-footer__about__logo {
    display: block;
    width: 227px;
    height: 40px
}
@media screen and (max-width:1000px) {
    .l-footer__about__logo {
        width: 180px;
        height: 60px
    }
}
.l-footer__about__logo svg {
    display: block;
    width: 100%;
    height: 100%
}
	.l-footer__about__address {
    margin-top: 48px;
    font-size: 12px;
    line-height: 2;
	font-style: normal;
}
.l-footer__about__address {
   /* display: none*/
}
@media screen and (max-width:1000px) {
    .l-footer__about__address {
        margin-top: 27px
    }
}
.l-footer__about__copyright {
    opacity: .5;
    display: block;
    margin-top: 48px;
    font-family: Montserrat, sans-serif;
    font-size: 10px
}
@media screen and (max-width:1000px) {
    .l-footer__about__copyright {
        margin-top: 25px
    }
}
@media screen and (min-width:1001px) {
    .l-footer__about__copyright {
        margin-top: 8px
    }
}
@media screen and (max-width:1000px) {
    .l-footer__about__copyright {
        padding-bottom: 16px
    }
}
@media screen and (min-width:801px) {
    .l-footer__about__copyright {
        /*margin-left: 35px*/
    }
}
.l-footer__nav {
    width: 20.55%;
    min-width: 160px;
    padding-top: 4px
}
@media screen and (max-width:1000px) {
    .l-footer__nav {
        width: auto;
        min-width: auto
    }
}
@media screen and (max-width:600px) {
    .l-footer__nav {
        width: 50%
    }
}
@media screen and (max-width:370px) {
    .l-footer__nav {
        width: 45%
    }
}
.l-footer__nav {
   /* display: none*/
}
.l-footer__nav__item {
    min-width: 160px;
    display: block;
    line-height: 1.5;
    margin-bottom: 20px
}
@media screen and (max-width:1000px) {
    .l-footer__nav__item {
        width: auto;
        min-width: auto
    }
}
@media screen and (max-width:370px) {
    .l-footer__nav__item {
        white-space: nowrap
    }
}
.l-footer__sns {
    width: 20.55%;
    min-width: 170px;
    padding-top: 4px
}
.l-footer__sns {
   /*display: none*/
}
@media screen and (max-width:600px) {
    .l-footer__sns {
        margin-top: 32px;
        width: 100%;
        display: flex;
        flex-wrap: wrap
    }
}
.l-footer__sns__item {
    position: relative;
    display: block;
    font-family: Montserrat, sans-serif;
    line-height: 1.5;
    margin-bottom: 20px
}
@media screen and (max-width:600px) {
    .l-footer__sns__item {
        margin-bottom: 16px;
        width: 50%
    }
}
@media screen and (max-width:370px) {
    .l-footer__sns__item {
        width: 45%
    }
}
.l-footer__sns__item a {
    padding: 0 3px 0 25px
}
@media screen and (max-width:800px) {
    .l-footer__sns__item a {
        padding: 2px 3px 2px 23px
    }
}
@media screen and (max-width:600px) {
    .l-footer__sns__item a {
        display: block
    }
}
.l-footer__sns__item span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 1px;
    left: 0
}
@media screen and (max-width:600px) {
    .l-footer__sns__item span {
        top: 3px;
        left: -2px
    }
}
.l-footer__pageTop {
    position: absolute;
    top: auto;
    left: auto;
    right: 44px;
    bottom: 44px;
    width: 20px;
    height: 80px;
    padding-top: 6px;
    padding-left: 4px;
    cursor: pointer
}
@media screen and (max-width:800px) {
    .l-footer__pageTop {
        right: 7.3%;
        top: calc(33.2vw + 60px);
        bottom: auto
    }
}
.l-footer__pageTop:before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px)
}
.l-footer__pageTop svg {
    position: relative;
    top: 3px;
    left: -1px;
    display: block;
    width: 14px;
    height: 13px;
    transition: 0.3s;
	fill:#fff;
}
.l-footer__pageTop__text {
    display: block;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translateY(0) rotate(90deg);
    transform: translateY(0) rotate(90deg);
    white-space: nowrap;
    font-family: Montserrat, sans-serif;
    font-size: 10px;
    transition: 0.3s
}
.l-footer__pageTop:hover svg {
    opacity: .7;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    transition: 0.2s
}
.l-footer__pageTop:hover .l-footer__pageTop__text {
    opacity: .7;
    -webkit-transform: translateY(-12px) rotate(90deg);
    transform: translateY(-12px) rotate(90deg)
}









@media screen and (min-width:801px) {
    .l-footer__nav a,
    .l-footer__sns a {
        position: relative;
        display: inline-block;
        transition: opacity 0.3s
    }
    .l-footer__nav a:before,
    .l-footer__sns a:before {
        content: '';
        position: absolute;
        top: auto;
        left: 0;
        right: 0;
        bottom: -4px;
        width: 100%;
        height: 10px;
        border-bottom: solid 1px #fff;
        opacity: .8;
        transition: -webkit-transform 0.3s cubic-bezier(0.7,.3,0.3,.9);
        transition: transform 0.3s cubic-bezier(0.7,.3,0.3,.9);
        transition: transform 0.3s cubic-bezier(0.7,.3,0.3,.9), -webkit-transform 0.3s cubic-bezier(0.7,.3,0.3,.9);
        -webkit-transform-origin: right;
        transform-origin: right;
        -webkit-transform: scaleX(0);
        transform: scaleX(0)
    }
}
@media screen and (min-width:801px) and (min-width:801px) {
    .l-footer__nav a:hover:before,
    .l-footer__sns a:hover:before {
        transition: -webkit-transform 0.2s;
        transition: transform 0.2s;
        transition: transform 0.2s, -webkit-transform 0.2s;
        -webkit-transform-origin: left;
        transform-origin: left;
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}
.l-footer__canvas {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateY(-40%);
    transform: translateY(-40%);
    width: 100%;
    height: 700px;
    z-index: 2;
    pointer-events: none;
    max-height: 50vw;
    overflow: hidden
}
@media screen and (max-width:800px) {
    .l-footer__canvas {
        -webkit-transform: translateY(-36%);
        transform: translateY(-36%);
        height: 80vw;
        max-height: 570px
    }
}
.l-footer__canvas__inner {
    position: relative;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(-3deg);
    transform: translateX(-50%) rotate(-3deg);
    height: 100%;
    width: 120%
}
/* グラデーション下線 cmn_add_line
-----------------------------------------------------------------*/
.cmn_add_line{
	position: relative;
	padding-bottom: 15px;
}
.cmn_add_line:after{
	content: "";
	display: inline-block;
	width: 60px;
	height: 2px;
	position: absolute;
	left: 50%;
	bottom: 0;
	margin-left: -30px;
	background: #14e4d0;
	background: -webkit-linear-gradient(left, #24d2f0 0%, #05f4b4 100%);
	background: linear-gradient(to right,  #24d2f0 0%,#05f4b4 100%);
}

/* @SP */
@media all and (max-width: 767px){
	.cmn_add_line{
		padding-bottom: 7px;
	}
	.cmn_add_line:after{
		width: 30px;
		height: 1px;
		margin-left: -15px;
	}
}

main {
    max-width: 1900px;
    margin: 0 auto
}
body,
html {
    font-family: "Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","游ゴシック体","Yu Gothic","YuGothic","Meiryo","メイリオ","ＭＳ Ｐゴシック","MS PGothic",Verdana,Roboto,"Droid Sans",sans-serif;
    font-size: 16px;
    /*font-weight: bold;*/
    color: #333;
    letter-spacing: 0.04em;
    background: #FFF;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%
}
p {
    word-break: normal;
    /*font-weight: bold;*/
    font-size: 16px;
    line-height: 1.55em;
	letter-spacing: .18em;
	font-family: 'Noto Sans JP', sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold
}
a:active,
a:link,
a:visited {
    color: #333;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent
}
a:hover {
    color: #9a9a9a;
    text-decoration: none
}
.scrollView {
    -webkit-transition: all 0.7s 0.5s ease;
    -moz-transition: all 0.7s 0.5s ease;
    -ms-transition: all 0.7s 0.5s ease;
    -o-transition: all 0.7s 0.5s ease;
    transition: all 0.7s 0.5s ease;
    opacity: 0;
    -webkit-transform: scale(1, 1) translate(0%, 20px);
    -moz-transform: scale(1, 1) translate(0%, 20px);
    -ms-transform: scale(1, 1) translate(0%, 20px);
    -o-transform: scale(1, 1) translate(0%, 20px);
    transform: scale(1, 1) translate(0%, 20px)
}
.scrollView.view {
    opacity: 1;
    -webkit-transform: scale(1, 1) translate(0%, 0%);
    -moz-transform: scale(1, 1) translate(0%, 0%);
    -ms-transform: scale(1, 1) translate(0%, 0%);
    -o-transform: scale(1, 1) translate(0%, 0%);
    transform: scale(1, 1) translate(0%, 0%)
}
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 110;
    background: #FFF no-repeat center center
}
#loading .out {
    opacity: 0;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear
}
@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}
@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}
@media print {
	
	.header{display:none;}
	.l-contact{display:none;}
	.point_item-image{display:none;}
	.point_item-image2{display:none;}
	.point_item-image3{display:none;}
	.ggmap{display:none;}
	.scrollView{ opacity: 1;}
	
	}

/******************************************************************************
 * responsive
*******************************************************************************/

.img-responsive {
  display: block;
  max-width: 100%;
  margin-left:auto;
  margin-right:auto;
  height: auto;
}
.img-no-responsive {
  display: block;
  max-width: auto;
  height: auto;
}
/*============================================================================

	.btn

============================================================================*/


.bu_ent_b {
    position:relative; /* 絶対配置の基準点 */
    width:100%; /* 600px以下は幅いっぱいに広げる */
    margin:0 auto; /* ブロック要素の中央揃え */
    text-align:center; /* インライン要素の中央揃え */
}


.bu_ent_button {
	display: inline-block;
	width: 270px;
	height: 44px;
	text-align: center;
	text-decoration: none;
	line-height: 54px;
	outline: none;
}
.bu_ent_button::before,
.bu_ent_button::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.bu_ent_button,
.bu_ent_button::before,
.bu_ent_button::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.bu_ent_button a:link{
	text-decoration:none!important;
}

.bu_ent_button01 {
	position: relative;
	z-index: 2;
	background-color: #006AB8;
	border: 2px solid #006AB8;
	color: #fff!important;
	line-height: 40px;
}


.bu_ent_button01:hover {
	background-color: #fff;
	border-color: #006AB8;
	color: #006AB8!important;
	text-decoration:none;

}
.bu_ent_button01::before,
.bu_ent_button01::after {
	top: 0;
	width: 50%;
	height: 100%;
	background-color: #006AB8;
}
.bu_ent_button01::before {
	right: 0;
}
.bu_ent_button01::after {
	left: 0;
}
.bu_ent_button01:hover::before,
.bu_ent_button01:hover::after {
	width: 0;
	background-color: #006AB8;
}



.bu_ent_button02 {
	position: relative;
	z-index: 2;
	background-color: #006AB8;
	border: 2px solid #006AB8;
	color: #fff!important;
	line-height: 40px;
}


.bu_ent_button02:hover {
	background-color: #fff;
	border-color: #006AB8;
	color: #006AB8!important;
	text-decoration:none;

}
.bu_ent_button02::before,
.bu_ent_button02::after {
	top: 0;
	width: 50%;
	height: 100%;
	background-color: #006AB8;
}
.bu_ent_button02::before {
	right: 0;
}
.bu_ent_button02::after {
	left: 0;
}
.bu_ent_button02:hover::before,
.bu_ent_button02:hover::after {
	width: 0;
	background-color: #006AB8;
}
/******************************************************************************
 * col
*******************************************************************************/
.row {
display: -webkit-box; */
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    /* flex-wrap: wrap; */
    margin-right: -10px;
    margin-left: -10px;	
/*clear: both;	*/
}
.row:after, .row:before {
    content: " ";
    display: table;
}
.row img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    -webkit-transition: .5s;
    transition: .5s;
}
.col{
flex-basis:0;flex-grow:1;max-width:100%}
.col-auto{
flex:0 0 auto;width:auto}
.col-1{
flex:0 0 8.33333%;max-width:8.33333%}
.col-2{
flex:0 0 16.66667%;max-width:16.66667%}
.col-3{
flex:0 0 25%;max-width:25%}
.col-4{
flex:0 0 33.33333%;max-width:33.33333%}
.col-5{
flex:0 0 41.66667%;max-width:41.66667%}
.col-6{
flex:0 0 50%;max-width:50%}
.col-7{
flex:0 0 58.33333%;max-width:58.33333%}
.col-8{
flex:0 0 66.66667%;max-width:66.66667%}
.col-9{
flex:0 0 75%;max-width:75%}
.col-10{
flex:0 0 83.33333%;max-width:83.33333%}
.col-11{
flex:0 0 91.66667%;max-width:91.66667%}
.col-12{
flex:0 0 100%;max-width:100%}
@media only screen and (max-width: 767px) {
.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col{
position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}
}
.gutters-10>[class*=col-] {
    padding-right: 10px;
    padding-left: 10px;
}
.bgc-black {
    background-color: #292929!important;
}
.bgc-gray {
    background-color: #F2F2F2!important;
}

/* -----------------------------------------------------------
	.grid
----------------------------------------------------------- */
.row-c {
    margin-left: 0;
    margin-right: 0;
}
.row-c:before,
.row-c:after {
  content: " ";
  display: table;
}

.row-c:after {
  clear: both;
}


 .col-sm-1, .col-sm-2, .col-sm-21, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}


@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-21, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-stylethumb{
	  width: 33.33333333%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  
  .col-sm-21 {
    width: 12.5%;
  }

  
  .col-sm-1 {
    width: 8.33333333%;
  }
 }

/* -----------------------------------------------------------
	.grid-sd
----------------------------------------------------------- */
 .col-sd-1, .col-sd-2, .col-sd-21, .col-sd-3, .col-sd-4, .col-sd-5, .col-sd-6, .col-sd-7, .col-sd-8, .col-sd-9, .col-sd-10, .col-sd-11, .col-sd-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}


@media (min-width: 1120px) {
  .col-sd-1, .col-sd-2, .col-sd-21, .col-sd-3, .col-sd-4, .col-sd-5, .col-sd-6, .col-sd-7, .col-sd-8, .col-sd-9, .col-sd-10, .col-sd-11, .col-sd-12 {
    float: left;
  }
  .col-stylethumb{
	  width: 33.33333333%;
  }
  .col-sd-12 {
    width: 100%;
  }
  .col-sd-11 {
    width: 91.66666667%;
  }
  .col-sd-10 {
    width: 83.33333333%;
  }
  .col-sd-9 {
    width: 75%;
  }
  .col-sd-8 {
    width: 66.66666667%;
  }
  .col-sd-7 {
    width: 58.33333333%;
  }
  .col-sd-6 {
    width: 50%;
  }
  .col-sd-5 {
    width: 41.66666667%;
  }
  .col-sd-4 {
    width: 33.33333333%;
  }
  .col-sd-3 {
    width: 25%;
  }
  .col-sd-2 {
    width: 16.66666667%;
  }
  
  .col-sd-21 {
    width: 12.5%;
  }

  
  .col-sd-1 {
    width: 8.33333333%;
  }
 }


@media screen and (min-width: 768px) and (max-width: 1119px) {
	
  .col-sd-3 {
    width: 50%;
  }
	
}


.row-87 {
  width: 87%;
  margin: 0 auto;
}
@media (max-width: 768px) {
.row-87 {
	width: 100%;
	padding: 0 10px;
}

