@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap');
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
}
html {
	font-size: 62.5%;
}
body, table, input, textarea, select, option {
	font-family: 'Noto Sans JP', sans-serif;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
    height: auto;
}
a,
a:link {
	color: #000;
	text-decoration: none;
    transition: .3s;
	-webkit-transition: .3s;
}
a:visited {
	color: #000;
}
a:hover {
	color: #000;
}
a:active {
	color: #000;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	min-width: 1280px;
	color: #000;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
}
#container {
    padding-top: 100px;
	text-align: left;
	overflow: hidden;
}
#main {
	margin-bottom: 100px;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 897px) {
	.sp {
		display: none !important;
	}
}
@media all and (max-width: 896px) {
	body {
		min-width: inherit;
		font-size: 1.2rem;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
    #main {
        margin-bottom: 50px;
    }
    #container {
        padding-top: 70px;
    }
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    z-index: 1000;
    background: #fff;
}
#gHeader .hInner {
	padding: 40px 100px 20px 30px;
}
#gNavi {
	margin-top: -22px;
}
#gNavi > ul > li {
	display: inline-block;
	font-weight: 700;
    position: relative;
	font-size: 1.4rem;
	letter-spacing: 0.2em;
}
#gNavi > ul > li > a {
    display: block;
    position: relative;
    padding: 20px 26px;
}
#gNavi > ul > li > a:after {
	position: absolute;
	left: 23px;
    right: 23px;
	bottom: 13px;
	height: 2px;
	background: #E60012;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform .3s;
	content: "";
}
#gNavi > ul > li.on a:after,
#gNavi > ul > li > a:hover:after {
	transform: scale(1, 1);
}
#gNavi > ul > li .menuList {
    display: none;
    position: absolute;
    left: -60px;
    top: 100%;
    width: 265px;
    z-index: 800;
    text-align: center;
}
#gNavi > ul > li .menuList li {
    width: 100%;
}
#gNavi > ul > li .menuList li a {
    display: block;
    padding: 15px 5px;
    font-weight: 700;
    background: #f1f1f1;
    letter-spacing: 0.1em;
}
#gNavi > ul > li .menuList li a:hover {
    color: #fff;
    background: #000;
}
#gNavi > ul > li .menuList li embed {
    width: 14px;
    height: 13px;
    margin: 0 0 0 10px;
}
#gNavi > ul > li .menuList li .info {
	padding-right: 20px;
	display: inline-block;
	background: url("../../img/common/icon_blank_black.svg") no-repeat right center;
	background-size: 14px 13px; 
}
#gNavi > ul > li .menuList li a:hover .info {
	background: url("../../img/common/icon_blank_white.svg") no-repeat right center;
	background-size: 14px 13px; 
}
.menu {
	cursor: pointer;
	position: fixed;
	right: 20px;
	top: 20px;
	width: 60px;
	height: 60px;
	background: #000;
	border-radius: 50%;
	z-index: 1010;
}
.menu span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
	position: absolute;
	right: 15px;
	width: 30px;
	height: 2px;
	background-color: #fff;
}
.menu span:nth-of-type(1) {
    top: 20px;
}
.menu span:nth-of-type(2) {
    top: 29px;
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.menu span:nth-of-type(3) {
    top: 38px;
}
.menu.on span:nth-of-type(1) {
    top: 17px;
    -webkit-animation: menu_open1 0.3s forwards;
          animation: menu_open1 0.3s forwards;
}
.menu.on span:nth-of-type(2) {
    opacity: 0;
}
.menu.on span:nth-of-type(3) {
    -webkit-animation: menu_open3 0.3s forwards;
          animation: menu_open3 0.3s forwards;
}
.menu.close span:nth-of-type(1) {
  -webkit-animation: menu_close1 0.3s forwards;
    animation: menu_close1 0.3s forwards;
}
.menu.close span:nth-of-type(2) {
    opacity: 1;
}
.menu.close span:nth-of-type(3) {
    -webkit-animation: menu_close3 0.3s forwards;
          animation: menu_close3 0.3s forwards;
}
@-webkit-keyframes menu_open1 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(11px) rotate(0);
            transform: translateY(11px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(11px) rotate(45deg);
            transform: translateY(11px) rotate(45deg);
  }
}
@keyframes menu_open1 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(11px) rotate(0);
            transform: translateY(11px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(11px) rotate(45deg);
            transform: translateY(11px) rotate(45deg);
  }
}

@-webkit-keyframes menu_open3 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-11px) rotate(0);
            transform: translateY(-11px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-11px) rotate(-45deg);
            transform: translateY(-11px) rotate(-45deg);
  }
}

@keyframes menu_open3 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-11px) rotate(0);
            transform: translateY(-11px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-11px) rotate(-45deg);
            transform: translateY(-11px) rotate(-45deg);
  }
}

@-webkit-keyframes menu_close1 {
  0% {
    -webkit-transform: translateY(11px) rotate(45deg);
            transform: translateY(11px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(11px) rotate(0);
            transform: translateY(11px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}

@keyframes menu_close1 {
  0% {
    -webkit-transform: translateY(11px) rotate(45deg);
            transform: translateY(11px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(11px) rotate(0);
            transform: translateY(11px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}

@-webkit-keyframes menu_close3 {
  0% {
    -webkit-transform: translateY(-11px) rotate(-45deg);
            transform: translateY(-11px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-11px) rotate(0);
            transform: translateY(-11px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}

@keyframes menu_close3 {
  0% {
    -webkit-transform: translateY(-11px) rotate(-45deg);
            transform: translateY(-11px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-11px) rotate(0);
            transform: translateY(-11px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
.menuBox {
    display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background-color: #555;
	z-index: 1001;
	height: 100%;
	overflow-y: auto;
	box-sizing: border-box;
}
.menuBox .comSec {
    padding: 104px 0 85px;
}
@media all and (min-width: 897px) {
	.menuBox .comSec .content {
		padding: 0 10px;
		width: 100%;
		box-sizing: border-box;
		max-width: 1240px;
	}
	.menuBox .comSec .naviBox {
		width: 34.5%;
	}
	.menuBox .comSec .naviBox:nth-child(2) {
		width: 34.5%;
	}
	.menuBox .comSec .naviBox:nth-child(3) {
		width: 31%;
	}
}
@media all and (max-width: 896px) {
    #gHeader {
        height: 70px;
    }
	#gHeader .hInner {
        padding: 27px 0px 25px 10px;
	}
    #gHeader .logo img {
        width: 240px;
    }
    #gNavi {
        display: none;
    }
    .menu {
        right: 10px;
        top: 10px;
        width: 50px;
        height: 50px;
    }
    .menu span {
        right: 15px;
        width: 20px;
    }
    .menu span:nth-of-type(1) {
        top: 17px;
    }
    .menu span:nth-of-type(2) {
        top: 24px;
    }
    .menu span:nth-of-type(3) {
        top: 31px;
    }
	.menu.on span:nth-of-type(3) {
		top: 35px;
	}
	.menu.on span:nth-of-type(1) {
		top: 13px;
	}
    .menuBox {
        background: #000;
        z-index: 999;
    }
    .menuBox .comSec {
        padding: 70px 0 0;
        background: #f1f1f1;
    }
    .menuBox .comSec .logo {
        display: none;
    }
    .menuBox .comSec .naviBox .top {
        margin-bottom: 0;
    }
    .menuBox .comSec .naviBox .top01 {
        margin-bottom: 0;
    }
    .menuBox .comSec .naviBox .top a {
        padding: 18px 15px 19px !important;
        display: block;
        background: #555 url("../../img/common/arrow_hamburger_white.svg") no-repeat right 18px center;
		background-size: 8px 8px; 
    }
    .menuBox .comSec .naviBox .spTxt a {
        background: #555 url("../../img/common/icon_plus.svg") no-repeat right 20px center;
		background-size: 7px 7px; 
    }
    .menuBox .comSec .naviBox .spTxt .on {
        background: #555 url("../../img/common/icon_minus.svg") no-repeat right 20px center;
		background-size: 7px 7px; 
    }
    .menuBox .comSec .naviBox .ulBox {
        display: none;
    }
    .menuBox .comSec .naviBox .naviUl {
        width: 100% !important;
    }
    .menuBox .comSec .naviBox .naviUl li {
        width: 100% !important;
    }
    .menuBox .comSec .naviBox .naviUl li a {
        padding: 12px 15px;
        display: block;
        color: #000;
        font-size: 1.2rem;
        background: #fff url("../../img/common/arrow_hamburger_black.svg") no-repeat right 18px center;
		background-size: 8px 8px; 
        border-bottom: 1px solid #f1f1f1;
    }
	.menuBox .comSec .naviBox .naviUl li.sp a {
		font-weight: 700;
	}
    .menuBox .comSec .naviBox .border {
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .menuBox .comSec .naviBox .border02 {
        border-bottom: none;
    }
    .menuBox .comSec .naviBox .naviUl02 {
        padding: 10px 0;
        display: block !important;
    }
    .menuBox .comSec .naviBox .naviUl02 li a {
        padding: 5px 15px;
		font-weight: 400;
        background: #f1f1f1;
        border-bottom: none;
    }
    .menuBox .close a {
        padding: 10px 0;
        display: block;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        text-align: center;
        background: #000;
        letter-spacing: 0.05em;
    }
}
/*------------------------------------------------------------
	pagePath
------------------------------------------------------------*/
#pagePath {
    padding: 24px 0;
    border-top: 1px solid #f1f1f1;
}
#pagePath ul {
    margin: 0 auto;
    width: 1240px;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
}
#pagePath li {
    margin-right: 10px;
    display: inline;
}
#pagePath li:last-child {
    font-weight: 700;
}
#pagePath li a {
    margin-right: 11px;
}
#pagePath li a:hover {
    text-decoration: underline;
}
@media all and (max-width: 896px) {
    #pagePath {
        padding: 11px 0;
    }
    #pagePath ul {
        padding: 0 15px;
        width: auto;
    }
    #pagePath ul li {
        margin-right: 9px;
        font-size: 1.2rem;
    }
    #pagePath ul li a {
        margin-right: 9px;
    }
    #pagePath li a:hover {
        text-decoration: none;
    }
}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
.pageTop {
	display: none;
    position: fixed;
    right: 5px;
    bottom: 22px;
    font-size: 1.2rem;
    font-weight: 600;
    -webkit-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: tb-rl;
    writing-mode: vertical-rl;
    direction: ltr; 
    letter-spacing: 0.15em;
}
.pageTop a {
    width: 24px;
    position: relative;
    padding: 88px 2px 0 0;
    display: inline-block;
    background: url("../../img/common/arrow_totop.svg") no-repeat center top;
    background-size: 23px 80px;
}
.pageTop a:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.pageTop a:hover {
    padding-top: 98px;
}
#gFooter address {
    padding: 46px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.15em;
}
@media all and (max-width: 896px) {
    #gFooter address {
        padding: 20px 15px;
        text-align: left;
        font-size: 1rem;
    }
    .pageTop {
        display: none;
    }
/*    .pageTop {
        right: 15px;
        bottom: 17px;
        font-size: 1rem;
    }
    .pageTop a {
        width: 20px;
        padding: 85px 2px 0 0;
    }
    .pageTop a:hover {
        padding-top: 85px;
        transition: .3s;
        -webkit-transition: .3s;
    }*/
}