@charset "UTF-8";


@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');


/* common
-------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
	box-sizing: content-box;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display: block;
}
i {
    font-style: normal;
}
ul {
    list-style: none;
}
img {
    width: 100%;
    max-width: 100%;
    height: auto;
	border: none;
	vertical-align: bottom;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
address, em, code, cite, dfn, var, optgroup {
  font-style: normal;
}
sup {
    font-size: 60%;
    vertical-align: super;
}
sub {
    font-size: 60%;
    vertical-align: sub;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* module
------------------------------------------------- */
.alignCenter {text-align: center;}
.alignLeft {text-align: left;}
.alignRight {text-align: right;}
.valignTop {vertical-align: top;}
.valignMiddle {vertical-align: middle;}
.valignBottom {vertical-align: bottom;}

.light { font-weight: 300; }
.regular { font-weight: 400; }
.medium { font-weight: 500; }
.semibold { font-weight: 600; }
.bold { font-weight: 700; }

.pcon { display: block; }
.spon { display: none; }
@media only screen and (max-width:750px){
.pcon { display: none; }
.spon { display: block; }
}


/* a
------------------------------------------------- */
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
	text-decoration: none;
	outline: none;
    color: #3F4B55;
}
@media only screen and (min-width:751px){
a {
    transition: 0.4s;
}
.al:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
.telLink {
	pointer-events: none;
}
}


/* font
------------------------------------------------- */
@media only screen and (min-width:751px){
.fo12 { font-size: 12px; }
.fo14 { font-size: 14px; }
.fo16 { font-size: 16px; }
.fo18 { font-size: 18px; }
.fo20 { font-size: 20px; }
.fo21 { font-size: 21px; }
}
@media only screen and (min-width:751px) and (max-width:1920px){
.fo12 { font-size: 0.625vw; }
.fo14 { font-size: 0.72916vw; }
.fo16 { font-size: 0.83333vw; }
.fo18 { font-size: 0.9375vw; }
.fo20 { font-size: 1.04166vw; }
.fo21 { font-size: 1.09375vw; }
}


/* body
------------------------------------------------- */
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
    font-weight: 400;
	line-height: 1.45;
	letter-spacing: 0.1em;
	color: #797a79;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
@media only screen and (min-width:751px) and (max-width:1920px){
body {
	font-size: 0.83333vw;
}
}
@media only screen and (max-width:750px){
body {
	font-size: 2.34375vw;
}
body.active {
    overflow-y: hidden;
}
}


/* wrapper
------------------------------------------------- */
#wrapper {
	width: 100%;
	margin: 0 auto;
	clear: both;
    position: relative;
}


/* header
------------------------------------------------- */
#header {
    width: 18.625em;
	margin: 0 0 3.5em 3em;
	padding: 3.375em 0 2.75em;
	border-bottom: 1px solid #797979;
}
#header .logo {
    width: 8.875em;
	margin: 0 auto;
}
@media only screen and (max-width:750px){
#header {
    width: 92.5vw;
	background-color: #fff;
	margin: 0 auto 2.5vw;
	padding: 4.6875vw 0;
	position: fixed;
	left: 3.75vw;
	top: 0;
	z-index: 98;
}
#header .logo {
    width: 16.5625vw;
	margin: 0 0 0 4.375vw;
}
}


/* gnav
------------------------------------------------- */
#gnav {
	position: absolute;
	right: 5em;
	top: 3.125em;
}
#gnav ul {
	display: flex;
	justify-content: flex-end;
}
#gnav ul li {
	margin-left: 2.6em;
	width: 12.8125em;
	height: 4.375em;
	border-left: 1px solid #797979;
	background-position: right top;
	background-repeat: no-repeat;
	background-size: auto 100%;
}
#gnav ul li:nth-child(1) {
	background-image: url("../img/gnav1_on.png");
}
#gnav ul li:nth-child(2) {
	background-image: url("../img/gnav2_on.png");
}
#gnav ul li:nth-child(3) {
	background-image: url("../img/gnav3_on.png");
}
#gnav ul li:nth-child(4) {
	background-image: url("../img/gnav4_on.png");
}
#gnav ul li:nth-child(5) {
	background-image: url("../img/gnav5_on.png");
}
#gnav ul li:nth-child(6) {
	background-image: url("../img/gnav6_on.png");
}
#gnav ul li a {
	display: block;
}
#gnav ul li a img {
	transition: 0.4s;
}
#gnav ul li.active a img {
	opacity: 0;
}
@media only screen and (min-width:751px){
#gnav ul li a:hover img {
	opacity: 0;
}
}
@media only screen and (max-width:750px){
#gnav {
	display: none;
	width: 92.5vw;
	padding: 4.5vw 0 2vw;
	background-color: rgba(247,248,248,0.9);
	position: fixed;
	right: 3.75vw;
	top: 17.3vw;
}
#gnav ul {
	display: block;
}
#gnav ul li {
	width: 46.95%;
	height: auto;
	border-left: none;
	background: none !important;
	margin: 0 2.5% 2vw 50.55%;
}
#gnav ul li.active a img {
	opacity: 1;
}
}


/* #navtoggle
------------------------------------------------- */
#navtoggle {
    display: none;
}
@media only screen and (max-width:750px){
#navtoggle {
    display: block;
    width: 4.68vw;
    height: 4vw;
    position: fixed;
    right: 7.8vw;
    top: 6.7vw;
    cursor: pointer;
	z-index: 99;
}
#navtoggle div {
    width: 100%;
    margin: 0 auto;
    position: relative;
}
#navtoggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #231815;
	border-radius: 2px;
    left: 0;
    transition: .35s ease-in-out;
}
#navtoggle span:nth-child(1) {
    top: 0;
}
#navtoggle span:nth-child(2) {
    top: 1.9vw;
}
#navtoggle span:nth-child(3) {
    top: 3.8vw;
}
body.nav-active #navtoggle span:nth-child(1) {
	top: 1.9vw;
	transform: rotate(45deg);
}
body.nav-active #navtoggle span:nth-child(2) {
	width: 0;
}
body.nav-active #navtoggle span:nth-child(3) {
	top: 1.9vw;
	transform: rotate(-45deg);
}
}


/* contents
------------------------------------------------- */
#contents {
    display: block;
	width: 100%;
	clear: both;
}
.inner {
	max-width: 1920px;
	margin: 0 auto;
    padding: 0 3em;
	clear: both;
	position: relative;
    box-sizing: border-box;
}
#contents .main {
	width: 80.7%;
}
#contents .main .img {
	width: 38.5625em;
}
#contents .main .con {
	width: 31.25em;
	margin-left: 8.125em;
}
#contents .side {
	width: 16.447%;
}
#contents .side p {
	font-weight: 500;
	padding: 0 0 1.3em 0.5em;
}
#contents .side p.ja {
	letter-spacing: 0.05em;
}
@media only screen and (max-width:750px){
#contents {
    padding-top: 21vw;
}
.inner {
	width: 92.5%;
    padding: 0;
}
#contents .main {
	width: 100%;
}
#contents .main .img {
	width: 100%;
	margin-bottom: 4vw;
}
#contents .main .con {
	width: 91.5%;
	margin: 0 auto;
}
#contents .side {
	width: 85%;
	margin: 6.5vw auto 0;
	display: none;
}
#contents .side p {
	font-weight: 500;
	padding: 0 0 1.75em;
}
}


/* layout
------------------------------------------------- */
.d-flex {
    display: flex;
}
.f-wrap {
    flex-wrap: wrap;
}
.f-rev {
    flex-direction: row-reverse;
}
.just-center {
    justify-content: center;
}
.just-between {
    justify-content: space-between;
}
.just-end {
    justify-content: flex-end;
}
.align-center {
    align-items: center;
}
.align-end {
    align-items: flex-end;
}
@media only screen and (max-width:760px){
.d-flex {
    display: block;
}
}


/* headline
------------------------------------------------- */
.headline1 {
    color: #231815;
	font-weight: 700;
	padding: 0 0 1em 0.5em;
}
.headline2 {
    display: none;
}
@media only screen and (max-width:750px){
.headline1 {
	font-size: 3.125vw;
	padding: 0 0 1.25em;
}
.headline2 {
    display: block;
	font-size: 3.125vw;
	color: #231815;
	font-weight: 700;
	padding-bottom: 1.25em;
}
}


/* footer
------------------------------------------------- */
#footer {
    width: 100%;
	height: 8.75em;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
#footer small {
    color: #231815;
	font-weight: 500;
	letter-spacing: 0.1em;
}
@media only screen and (max-width:750px){
#footer {
	height: 14vw;
}
#footer small {
	font-size: 1.5625vw;
}
}