@charset "UTF-8";

html {
    font-size: 62.5%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

body {
    font-size: 1.6rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0;
    background-color: #FFF;
    padding-top: 0;
    overflow-x: hidden;
}

a {
    color: #000;
    outline: 0;
    outline: none;
    text-decoration: none;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    -ms-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

a:hover {
    color: #DF212C;
    outline: 0;
    outline: none;
    text-decoration: none;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    -ms-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

a[href^="tel:"] { 
	cursor: default;
}

img {
    vertical-align: middle;
    border-style: none;
    max-width: 100%;
    height: auto;
}

img.img-fluid {
    vertical-align: middle;
    border-style: none;
    max-width: 100%;
    height: auto;
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-fluid {
    max-width: 100%;
    padding-right: 0rem;
    padding-left: 0rem;
}

@media (min-width: 1200px) {
	.container, .container-lg, .container-md, .container-sm, .container-xl {
		max-width: 100%;
		padding-right: 0rem;
		padding-left: 0rem;
	}
}

.container-100p {
    width: 100%;
    margin: 0 auto;
}

.row:before, 
.row:after { 
    width: 0;
}

.row.no-margin {
    margin-right: 0;
    margin-left: 0;
}

.row.flex {
    display: flex;
    flex-wrap: wrap;
}

.no-padding {
    padding-left: 0;
    padding-right: 0;
}

.flex-center {
    display: flex;
    align-items: center;
}

ul {
    display: block;
    list-style-type: none;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
}

h1 {
    margin: 0 0;
}

h1, h2, h3, h4, h5, h6 {
    text-transform: none;
}

.fixed-top {
    z-index: 1030;
}

dt {
    font-weight: 600;
}

#wrap {
    width: 100%;
    padding-left: 100px;
    background: transparent;
}

@media (max-width: 749px){
    #wrap {
        padding-left: 0px;
    }
}


/* ------------------------------------------------------------------
[Preloader]
------------------------------------------------------------------- */

/*
Copyright（c）2021 by Ash Thornton（https://codepen.io/ashthornton/pen/ZmxaWv）
Released under the MIT license
https://opensource.org/licenses/mit-license.php
*/

#loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 100;
}
#loader .grey, 
#loader .white {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
}
#loader .grey {
	z-index: 2;
	background: linear-gradient(180deg, rgba(54, 156, 45, 1.0), rgba(0, 0, 0, 1.0));
}
#loader .white {
	z-index: 1;
	background-color: #DDD;
}
#loader .text-wrap {
	overflow: hidden;
}
#loader .text-wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 2.2rem;
	font-weight: 400;
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: 1px;
	color: #FFF;
	z-index: 3;
}
#loader .text-wrap span {
	display: inline-block;
	color: #FFF;
}
#wrapper {
	display: block;
	width: 100%;
}

@media (max-width: 499px){
    #loader .text-wrap {
        font-size: 1.8rem;
    }
}


/* ------------------------------------------------------------------
[Nav]
------------------------------------------------------------------- */
.nav input {
  	position: fixed;
  	opacity: 0;
}
.nav label {
  	position: absolute;
  	margin: 0;
  	padding: 0;
  	border: none;
  	outline: none;
  	background: none;
  	cursor: pointer;
}
.nav label::before {
  	content: '';
  	position: fixed;
  	top: 0;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	background-color: rgba(0, 0, 0, 0.6);
  	opacity: 0;
  	pointer-events: none;
  	transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  	z-index: 8;
}
.nav label .burger {
  	position: fixed;
  	top: 0px;
  	left: 0px;
  	width: 100px;
  	height: 100px;
  	margin: 0;
  	padding: 0;
  	background-color: #2E9A2A;
  	transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  	z-index: 10;
}
.nav label .burger::before,
.nav label .burger .bar, 
.nav label .burger::after {
  	content: '';
  	position: absolute;
  	left: 50%;
  	display: block;
  	width: 3.0em;
  	height: 2px;
  	background-color: #FFF;
  	margin-left: -1.5em;
  	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.nav label .burger .bar {
  	top: 49%;
  	height: 2px;
}
.nav label .burger::before {
  	top: 2em;
  	width: 3.0em;
  	transform-origin: top left;
}
.nav label .burger::after {
  	bottom: 2em;
  	width: 3.0em;
  	transform-origin: bottom left;
}

.nav input:focus + label .burger,
.nav label:hover .burger {
  	opacity: 1.0;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;
  transform: translate3d(0, 0, 0);
  /* material acceleration */
  transform: translateX(-100%);
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 9;
}
nav::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 700px;
	background-color: #AACC0E;
	transform: skewX(15deg) translateX(-100%);
	transform-origin: bottom left;
	will-change: transform;
	transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	z-index: -1;
}

@media (max-width: 1200px){
	nav::before {
		width: 100vw;
	}
}
@media (max-width: 749px){
	nav {
		padding-top: 10px;
	}
}
@media (max-width: 499px){
	nav {
		padding-top: 0;
		padding-bottom: 5%;
	}
}

nav a {
	margin: 1.5% 0;
    padding: 1.5% 0 1.5% 250px;
    font-size: 1.8rem;
    font-weight: 500;
    color: #000;
    letter-spacing: 1px;
    text-decoration: none;
    transform: translateX(-100%);
    transition: color .15s, transform .5s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
nav a.subcate {
    margin: 1.0% 0;
    padding: 1.0% 0 1.0% 280px;
    font-size: 1.5rem;
    font-weight: 500;
    color: #000;
    letter-spacing: 1px;
    text-decoration: none;
    transform: translateX(-100%);
    transition: color .15s, transform .5s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
nav a:nth-child(1) {
  	transition-delay: 0s, 100ms;
}
nav a:nth-child(2) {
  	transition-delay: 0s, 150ms;
}
nav a:nth-child(3) {
  	transition-delay: 0s, 200ms;
}
nav a:nth-child(4) {
  	transition-delay: 0s, 250ms;
}
nav a:nth-child(5) {
  	transition-delay: 0s, 300ms;
}
nav a:nth-child(6) {
  	transition-delay: 0s, 350ms;
}
nav a:nth-child(7) {
  	transition-delay: 0s, 400ms;
}
nav a:nth-child(8) {
  	transition-delay: 0s, 450ms;
}
nav a:nth-child(9) {
  	transition-delay: 0s, 500ms;
}
nav a:nth-child(10) {
  	transition-delay: 0s, 550ms;
}
nav a:hover, 
nav a:focus {
  	color: #DF212C;
  	text-decoration: none;
}

@media (max-width: 1480px){
    nav a {
        margin: 0.5% 0;
        padding: 1.0% 0 1.0% 250px;
        font-size: 1.6rem;
        letter-spacing: 0;
    }
    nav a.subcate {
        margin: 0.5% 0;
        padding: 0.5% 0 0.5% 280px;
        font-size: 1.4rem;
        letter-spacing: 0;
    }
}
@media (max-width: 749px){
	.nav label .burger {
		width: 50px;
		height: 50px;
	}
	.nav label .burger::before {
		top: 65%;
        left: 37px;
		width: 1.5em;
	}
	.nav label .burger .bar {
		top: 48%;
        left: 37px;
		width: 1.5em;
	}
	.nav label .burger::after {
		bottom: 66%;
        left: 37px;
		width: 1.5em;
	}
	nav a {
		padding: 1px 0 1px 150px;
		font-size: 1.8rem;
	}
    nav a.subcate {
        padding: 0.5% 0 0.5% 170px;
    }
}
@media (max-width: 499px){
	nav a {
		padding: 2% 0 2% 100px;
	}
    nav a.subcate {
        padding: 1% 0 1% 120px;
    }
}

main {
  	overflow: hidden;
}
main .content {
  	transform: translate3d(0, 0, 0);
  	/* material acceleration */
  	will-change: transform, filter;
  	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

[id="navcheck"]:checked + label::before {
  	opacity: 1;
  	pointer-events: auto;
}
[id="navcheck"]:checked + label .burger::before, 
[id="navcheck"]:checked + label .burger::after {
  	width: 3.2em;
    margin-left: -1.1em;
}
[id="navcheck"]:checked + label .burger::before {
  	transform: rotate(45deg) translateY(-50%);
}
[id="navcheck"]:checked + label .burger::after {
  	transform: rotate(-45deg) translateY(50%);
}
[id="navcheck"]:checked + label .burger .bar {
  	transform: scale(0.1);
}
[id="navcheck"]:checked ~ nav {
  	transform: translateX(0);
}
[id="navcheck"]:checked ~ nav::before {
  	transform: skewX(0deg) translateX(0);
}
[id="navcheck"]:checked ~ nav a {
  	transform: translateX(0);
}
[id="navcheck"]:checked ~ main .content {
  	transform: translateX(3em);
  	transform-origin: left center;
  	-webkit-filter: blur(2px);
  	filter: blur(2px);
  	/* quite laggy :S */
}

.nav-name-wrap {
    display: block;
    text-align: left;
	margin: 10% 0 0 250px;
    padding: 0;
}
.nav-name {
    display: block;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.0;
    letter-spacing: 0;
    color: #000;
	margin: 0;
    padding: 0 0 15px;
}
.nav-address {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.4;
    color: #000;
	margin: 0;
    padding: 0 0 10px;
}
.nav-address br.br {
    display: none;
}
.nav-address span.nav-gmap {
    display: block;
    text-align: left;
    margin: 0;
    padding: 10px 0 0;
}
.nav-address span.nav-gmap a {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0;
	padding: 0;
}
.nav-address span.nav-gmap a:hover {
    color: #DF212C;
}
.nav-tel-wrap {
    display: block;
	margin: 0;
    padding: 0;
}
.nav-tel-wrap a {
    font-size: 2.4rem;
    font-weight: 400;
	font-family: 'Roboto', sans-serif;
    line-height: 1.0;
    color: #000;
	margin: 0;
    padding: 0 0 10px;
}
.nav-tel-wrap a span {
	display: inline-block;
    font-size: 1.4rem;
    font-weight: 400;
	font-family: 'Roboto', sans-serif;
    line-height: 1.0;
    color: #000;
	margin: 0;
    padding: 0 10px 0 0;
}
.nav-tel-wrap a:hover {
    color: #000;
}

@media (max-width: 1480px){
    .nav-name-wrap {
        margin: 5% 0 0 250px;
    }
	.nav-address {
		line-height: 1.4;
	}
	.nav-address br.br {
		display: block;
	}
}
@media (orientation: landscape) and (max-width: 990px){
	.nav-name-wrap {
		display: none;
	}
}
@media (max-width: 749px){
	[id="navcheck"]:checked + label .burger::before {
        top: 25%;
        left: 32px;
		width: 70%;
	}
	[id="navcheck"]:checked + label .burger::after {
        bottom: 25%;
        left: 32px;
		width: 70%;
	}
	.menu-text {
		display: none;
	}
}
@media (max-width: 499px){
	.nav-name-wrap {
		display: block;
		padding: 0;
        margin: 5% 0 0 100px;
	}
	.nav-name {
		width: 240px;
	}
	.nav-address br.br {
		display: block;
	}
}


/* ------------------------------------------------------------------
[SideBar][TopLogo]
------------------------------------------------------------------- */
.sidebar-wrap {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #AACC0E;
    z-index: 9;
}
.home-sidebar-copy-j {
    display: block;
    width: 18px;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: 0;
    color: #000;
    margin: 0 auto;
    padding: 0;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
a .logo-wrap {
    position: absolute;
	top: 20px;
	left: 130px;
    width: 270px;
    margin: 0;
    padding: 0;
}
.logo-mark-wrapper {
	display: flex;
    width: 100%;
	padding: 0;
}
.logo-mark-wrap {
    width: 60px;
	text-align: center;
	margin: 0 10px 0 0;
}
.logo-text-wrap {
	display: block;
    font-size: 2.4rem;
	font-weight: 500;
    color: #000;
	padding: 10px 0 0;
    line-height: 1.0;
}
.logo-text-wrap span {
	display: block;
    font-size: 1.4rem;
    font-family: 'Roboto', sans-serif;
    color: #999;
	padding: 7px 0 0;
}

@media (max-width: 1480px){
    .home-sidebar-copy-j {
        display: block;
        width: 16px;
        font-size: 1.6rem;
        padding: 70px 0 0;
    }
}
@media (orientation: landscape) and (max-width: 990px){
    .home-sidebar-copy-j {
        display: none;
    }
}
@media (max-width: 749px){
    .sidebar-wrap {
        display: none;
    }
    a .logo-wrap {
        position: absolute;
        top: 10px;
        left: 70px;
    }
}
@media (max-width: 499px){
    a .logo-wrap {
        top: 10px;
        left: 60px;
        width: 240px;
    }
    .logo-mark-wrap {
        width: 50px;
        margin: 0 6px 0 0;
    }
    .logo-text-wrap {
        font-size: 2.2rem;
        padding: 5px 0 0;
    }
}


/* ------------------------------------------------------------------
[Header Hero]
------------------------------------------------------------------- */
#canvas-wrap {
    position: fixed;
    width: 100%;
    height: 100vh;
    padding: 0;
    overflow: hidden;
    z-index: -1;
}
canvas#canvas-container {
    position: fixed;
    top: -15%;
    left: -5%;
    width: 110%;
    height: 132vh;
    z-index: -1;
}
#header-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
}
.home-copy-wrapper {
    display: flex;
	justify-content: center;
	align-items: center;
    flex: 0 0 100%;
    width: 100%;
    height: 90vh;
}
.home-copy-wrap {
    display: block;
    margin: 0;
    padding: 6% 0 0 50%;
}
.home-copy-main {
    display: block;
    font-size: 7.2vw;
    font-weight: 900;
    font-style: italic;
    line-height: 1.0;
    letter-spacing: 0;
    color: #000;
    margin: 0;
    padding: 0 0 5%;
}
.home-copy-main span {
    display: block;
}
.home-copy-main span.hiragana {
    display: inline-block;
    font-size: 4.8vw;
}
.home-copy-lead {
    display: block;
    font-size: 1.6vw;
    font-weight: 600;
    font-style: italic;
    font-family: 'Roboto', sans-serif;
    line-height: 1.0;
    letter-spacing: 0;
    color: #000;
    margin: 0;
    padding: 0 0 4% 10px;
}

@media (max-width: 749px){
    .home-copy-wrapper {
        height: 100vh;
    }
}


/* ------------------------------------------------------------------
[Home About Section]
------------------------------------------------------------------- */
.home-about-section {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 100px;
    background-color: rgba(255, 255, 255, 0.9);
    border-top: solid 1px #CCC;
}
.home-about-innerwrap {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 100px 8%;
    background-color: rgba(255, 255, 255, 1.0);
    border-left: solid 1px #CCC;
    border-right: solid 1px #CCC;
}
.home-about-title {
    display: block;
    font-size: 3.2vw;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0;
    line-height: 1.5;
    color: #000;
    margin: 0 0 100px;
    padding: 0;
    text-align: left;
}
.home-about-text {
    display: block;
    font-size: 1.3vw;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 2.0;
    color: #000;
    margin: 0;
    margin: 0;
    text-align: left;
}

@media (max-width: 1680px){
    .home-about-section {
        padding: 0 80px;
    }
}
@media (max-width: 1480px){
    .home-about-section {
        padding: 0 60px;
    }
}
@media (max-width: 1380px){
    .home-about-title {
        font-size: 3.0vw;
        margin: 0 0 80px;
    }
    .home-about-text br.br {
        display: none;
    }
}
@media (max-width: 1200px){
    .home-about-title {
        font-size: 2.8vw;
        margin: 0 0 60px;
    }
}
@media (max-width: 990px){
    .home-copy-wrap {
        padding: 6% 0 0 10%;
    }
    .home-copy-main {
        font-size: 12.0vw;
        padding: 0 0 5%;
    }
    .home-copy-main span.hiragana {
        font-size: 8.4vw;
    }
    .home-copy-lead {
        font-size: 2.8vw;
    }
    .home-about-section {
        padding: 0;
    }
    .home-about-innerwrap {
        padding: 80px 10%;
        border-left: none;
        border-right: none;
    }
    .home-about-title {
        font-size: 3.2vw;
        margin: 0 0 50px;
    }
    .home-about-text {
        font-size: 1.6rem;
    }
    .home-about-text br {
        display: none;
    }
}
@media (max-width: 749px){
    .home-copy-wrap {
        padding: 6% 0 0 0;
    }
    .home-about-innerwrap {
        padding: 60px 70px;
    }
    .home-about-title {
        font-size: 3.6vw;
        margin: 0 0 40px;
    }
}
@media (max-width: 499px){
    .home-copy-main {
        font-size: 15.0vw;
        padding: 0 0 5%;
    }
    .home-copy-main span.hiragana {
        font-size: 10.8vw;
    }
    .home-copy-lead {
        font-size: 3.4vw;
    }
    .home-about-innerwrap {
        padding: 50px 10%;
    }
    .home-about-title {
        font-size: 6.0vw;
        margin: 0 0 40px;
    }
    .home-about-title br.brsp {
        display: block;
    }
    .home-about-title br.br {
        display: none;
    }
}


/* ------------------------------------------------------------------
[Home Service]
------------------------------------------------------------------- */
.home-linkbtn-wrap {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border-left: solid 1px #CCC;
    border-right: solid 1px #CCC;
}
.homw-service-btnwrap01 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
	padding: 0;
	border-top: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
	border-right: solid 1px #CCC;
}
.homw-service-btnwrap01 .corner-square {
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 15px;
    background-color: #AACC0E;
    z-index: 1;
}
.homw-service-btnwrap02 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
	padding: 0;
	border-top: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
}
.homw-service-btnwrap02 .corner-square {
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 15px;
    background-color: #AACC0E;
    z-index: 1;
}
.homw-service-btnwrap01 a, 
.homw-service-btnwrap02 a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #2E9A2A;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}
.homw-service-btnwrap01 a:before, 
.homw-service-btnwrap02 a:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.homw-service-btnwrap01 a:hover, 
.homw-service-btnwrap02 a:hover {
    opacity: 1;
    color: #000;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}
.homw-service-btnwrap01 a:hover:before, 
.homw-service-btnwrap02 a:hover:before {
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

@media (max-width: 1480px){
	.homw-service-btnwrap01 {
    	height: 150px;
	}
	.homw-service-btnwrap02 {
    	height: 150px;
	}
}
@media (max-width: 990px){
    .home-linkbtn-wrap {
        border-left: none;
        border-right: none;
    }
	.homw-service-btnwrap01 {
    	height: 120px;
        border-bottom: none;
        border-right: none;
	}
	.homw-service-btnwrap02 {
    	height: 120px;
        border-bottom: none;
	}
}
@media (max-width: 749px){
	.homw-service-btnwrap01 {
    	height: 100px;
	}
	.homw-service-btnwrap02 {
    	height: 100px;
	}
}


/* Btn Service
 * --------------------------------------- */
 .linkbutton-service {
    position: relative;
    text-align: left;
	margin: 0;
    padding: 0 30px;
    background: transparent;
}
.linkbutton-service::before {
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background-color: #000;
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: scale(0,1);
    -ms-transform: scale(0,1);
    transform: scale(0,1);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s,-webkit-transform .3s;
}
.linkbutton-service:hover::before {
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1,1);
    -ms-transform: scale(1,1);
    transform: scale(1,1);
}
.linkbutton-service .text-en {
    display: block;
    position: relative;
    font-size: 1.6rem;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0;
    line-height: 1.0;
    color: #000;
    text-align: left;
    text-transform: uppercase;
	padding: 0 0 6px 20%;
    transition: all .3s;
    -webkit-transition: all .3s;
    z-index: 2;
}
.linkbutton-service .text {
    display: block;
    position: relative;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.0;
    color: #000;
    text-align: left;
	padding: 0 0 0 20%;
    transition: all .3s;
    -webkit-transition: all .3s;
    z-index: 2;
}
.linkbutton-service:hover .text-en {
    color: #FFF;
}
.linkbutton-service:hover .text {
    color: #FFF;
}
.linkbutton-service .arrow {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 12px;
    border-color: transparent transparent transparent #000;
    position: absolute;
    right: 20%;
    top: 49%;
    margin-top: -3px;
    transition: all .3s;
    -webkit-transition: all .3s;
    z-index: 2;
}
.linkbutton-service:hover .arrow {
    border-color: transparent transparent transparent #FFF;
    right: 15%;
}

@media (max-width: 1200px){
	.linkbutton-service .text-en {
		padding: 0 0 6px 10%;
    	font-size: 1.8rem;
	}
	.linkbutton-service .text {
		padding: 0 0 0 10%;
    	font-size: 1.4rem;
    }
}
@media (max-width: 499px){
    .linkbutton-service {
        padding: 0 10%;
    }
	.linkbutton-service .text-en {
    	padding: 0 0 6px 0;
    	font-size: 1.4rem;
	}
	.linkbutton-service .text {
		padding: 0;
	}
}


/* ------------------------------------------------------------------
[Home Company]
------------------------------------------------------------------- */
.homw-company-btnwrap01 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
	padding: 0;
	border-bottom: solid 1px #CCC;
	border-right: solid 1px #CCC;
}
.homw-company-btnwrap01 .corner-square {
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 15px;
    background-color: #AACC0E;
    z-index: 1;
}
.homw-company-btnwrap02 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
	padding: 0;
	border-bottom: solid 1px #CCC;
}
.homw-company-btnwrap02 .corner-square {
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 15px;
    background-color: #AACC0E;
    z-index: 1;
}
.homw-company-btnwrap01 a, 
.homw-company-btnwrap02 a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #2E9A2A;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}
.homw-company-btnwrap01 a:before, 
.homw-company-btnwrap02 a:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.homw-company-btnwrap01 a:hover, 
.homw-company-btnwrap02 a:hover {
    opacity: 1;
    color: #fff;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}
.homw-company-btnwrap01 a:hover:before, 
.homw-company-btnwrap02 a:hover:before {
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

@media (max-width: 1480px){
	.homw-company-btnwrap01 {
    	height: 150px;
	}
	.homw-company-btnwrap02 {
    	height: 150px;
	}
    .linkbutton-service .text-en {
        font-size: 1.4rem;
    }
    .linkbutton-service .text {
        font-size: 1.6rem;
    }
}
@media (max-width: 990px){
	.homw-company-btnwrap01 {
    	height: 120px;
        border-top: solid 1px #CCC;
        border-right: none;
	}
	.homw-company-btnwrap02 {
    	height: 120px;
	}
}
@media (max-width: 749px){
	.homw-company-btnwrap01 {
    	height: 100px;
	}
	.homw-company-btnwrap02 {
    	height: 100px;
	}
}


/* Btn Ccompany
 * --------------------------------------- */
.linkbutton-company {
    position: relative;
    text-align: left;
	margin: 0;
    padding: 0 30px;
    background: transparent;
}
.linkbutton-company::before {
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background-color: #000;
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: scale(0,1);
    -ms-transform: scale(0,1);
    transform: scale(0,1);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s,-webkit-transform .3s;
}
.linkbutton-company:hover::before {
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1,1);
    -ms-transform: scale(1,1);
    transform: scale(1,1);
}
.linkbutton-company .text-en {
    display: block;
    position: relative;
    font-size: 1.6rem;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0;
    line-height: 1.0;
    color: #000;
    text-align: left;
    text-transform: uppercase;
	padding: 0 0 6px 20%;
    transition: all .3s;
    -webkit-transition: all .3s;
    z-index: 2;
}
.linkbutton-company .text {
    display: block;
    position: relative;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.0;
    color: #000;
    text-align: left;
	padding: 0 0 0 20%;
    transition: all .3s;
    -webkit-transition: all .3s;
    z-index: 2;
}
.linkbutton-company:hover .text-en {
    color: #FFF;
}
.linkbutton-company:hover .text {
    color: #FFF;
}
.linkbutton-company .arrow {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 12px;
    border-color: transparent transparent transparent #000;
    position: absolute;
    right: 20%;
    top: 49%;
    margin-top: -3px;
    transition: all .3s;
    -webkit-transition: all .3s;
    z-index: 2;
}
.linkbutton-company:hover .arrow {
    border-color: transparent transparent transparent #FFF;
    right: 15%;
}

@media (max-width: 1480px){
    .linkbutton-company .text-en {
        font-size: 1.4rem;
    }
    .linkbutton-company .text {
        font-size: 1.6rem;
    }
}
@media (max-width: 1200px){
	.linkbutton-company .text-en {
		padding: 0 0 6px 10%;
    	font-size: 1.8rem;
	}
	.linkbutton-company .text {
		padding: 0 0 0 10%;
    	font-size: 1.4rem;
    }
}
@media (max-width: 499px){
    .linkbutton-company {
        padding: 0 10%;
    }
	.linkbutton-company .text-en {
    	padding: 0 0 6px 0;
    	font-size: 1.6rem;
	}
    .linkbutton-service .text-en {
        font-size: 1.6rem;
    }
	.linkbutton-company .text {
		padding: 0;
        font-size: 1.6rem;
	}
}


/* ------------------------------------------------------------------
[Home Recruit]
------------------------------------------------------------------- */
.home-recruit-title {
    display: block;
    font-size: 3.0vw;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    line-height: 1.0;
    letter-spacing: 0;
    color: #000;
    margin: 0;
    padding: 0 0 5%;
}
.home-recruit-title span {
    display: block;
    font-size: 1.0vw;
    font-weight: 500;
    font-family: 'Noto Sans JP', sans-serif;
    padding: 6px 0 0;
}
.homw-recruitment-btnwrap01 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
	padding: 0;
	border-top: solid 1px #CCC;
}
.homw-recruitment-btnwrap01 .corner-square {
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 15px;
    background-color: #AACC0E;
    z-index: 1;
}
.homw-recruitment-btnwrap01 a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #2E9A2A;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}
.homw-recruitment-btnwrap01 a:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.homw-recruitment-btnwrap01 a:hover {
    opacity: 1;
    color: #fff;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
}
.homw-recruitment-btnwrap01 a:hover:before {
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

@media (max-width: 1480px){
	.homw-recruitment-btnwrap01 {
    	height: 150px;
	}
}
@media (max-width: 990px){
	.homw-recruitment-btnwrap01 {
    	height: 120px;
	}
    .home-recruit-title {
        font-size: 4.8vw;
    }
    .home-recruit-title span {
        font-size: 2.2vw;
    }
}
@media (max-width: 749px){
	.homw-recruitment-btnwrap01 {
    	height: 100px;
	}
}
@media (max-width: 499px){
    .home-recruit-title {
        font-size: 8.4vw;
        padding: 0 0 40px;
    }
    .home-recruit-title span {
        font-size: 4.0vw;
    }
}


/* Btn recruitment
 * --------------------------------------- */
.linkbutton-recruitment {
    position: relative;
    text-align: left;
	margin: 0;
    padding: 0 30px;
    background: transparent;
}
.linkbutton-recruitment::before {
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background-color: #000;
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: scale(0,1);
    -ms-transform: scale(0,1);
    transform: scale(0,1);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s,-webkit-transform .3s;
}
.linkbutton-recruitment:hover::before {
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1,1);
    -ms-transform: scale(1,1);
    transform: scale(1,1);
}
.linkbutton-recruitment .text-en {
    display: block;
    position: relative;
    font-size: 1.5rem;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0;
    line-height: 1.0;
    color: #000;
    text-align: left;
    text-transform: uppercase;
	padding: 0 0 6px 20%;
    transition: all .3s;
    -webkit-transition: all .3s;
    z-index: 2;
}
.linkbutton-recruitment .text {
    display: block;
    position: relative;
    font-size: 1.8rem;
    font-weight: 500;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 1px;
    line-height: 1.0;
    color: #000;
    text-align: left;
	padding: 0 0 0 20%;
    transition: all .3s;
    -webkit-transition: all .3s;
    z-index: 2;
}
.linkbutton-recruitment:hover .text-en {
    color: #FFF;
}
.linkbutton-recruitment:hover .text {
    color: #FFF;
}
.linkbutton-recruitment .arrow {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 12px;
    border-color: transparent transparent transparent #000;
    position: absolute;
    right: 20%;
    top: 49%;
    margin-top: -3px;
    transition: all .3s;
    -webkit-transition: all .3s;
    z-index: 2;
}
.linkbutton-recruitment:hover .arrow {
    border-color: transparent transparent transparent #FFF;
    right: 15%;
}

@media (max-width: 1200px){
	.linkbutton-recruitment .text-en {
		padding: 0 0 6px 10%;
    	font-size: 1.8rem;
	}
	.linkbutton-recruitment .text {
		padding: 0 0 0 10%;
    	font-size: 1.4rem;
    }
}
@media (max-width: 499px){
	.linkbutton-recruitment .text-en {
    	padding: 0 0 6px 0;
    	font-size: 1.4rem;
	}
	.linkbutton-recruitment .text {
		padding: 0;
	}
}


/* ------------------------------------------------------------------
[footer]
------------------------------------------------------------------- */
.footer-contents-wrapper {
    display: block;
    width: 100%;
    height: auto;
    text-align: center;
    padding: 4% 5%;
    background-color: #FFF;
	border-top: solid 1px #CCC;
}
.footer-logo-name-wrap {
    display: block;
    text-align: left;
    margin: 0;
  	padding: 0;
}
.footer-logo-wrap {
    display: block;
    text-align: left;
    margin: 0 0 5%;
  	padding: 0;
}
.footer-logo-mark-wrapper {
    display: flex;
    width: 266px;
    text-align: left;
	margin: 0 0 20px;
  	padding: 0;
}
.footer-logo-mark-wrap {
    width: 60px;
    text-align: center;
    margin: 0 8px 0 0;
}
.footer-logo-text-wrap {
    display: block;
    font-size: 2.4rem;
    font-weight: 500;
    color: #000;
    padding: 10px 0 0;
    line-height: 1.0;
}
.footer-logo-text-wrap span {
    display: block;
    font-size: 1.4rem;
    font-family: 'Roboto', sans-serif;
    color: #999;
    padding: 5px 0 0;
}
.footer-address {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 1px;
  	color: #000;
    text-align: left;
    margin: 0;
  	padding: 0 0 20px 70px;
}
.footer-address span.footer-gmap {
    display: block;
    text-align: left;
    margin: 0;
    padding: 5px 0 0;
}
.footer-address span.footer-gmap a {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0;
    padding: 0;
}
.footer-address span.footer-gmap a:hover {
  	color: #87CEFA;
}
.footer-tel-wrap {
    display: block;
    margin: 0;
    padding: 0 0 10px 70px;
}
.footer-tel-wrap a {
    font-size: 2.0rem;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    line-height: 1.0;
    letter-spacing: 0;
  	color: #000;
    text-align: left;
    margin: 0;
  	padding: 0;
}
.footer-tel-wrap a span {
    display: inline-block;
    font-size: 1.8rem;
  	padding: 0 10px 0 0;
}
.footer-tel-wrap a:hover {
  	color: #5DC1CF;
}


/*!-----------------------------------
[Footer Menu]
*/
.footer-menu-wrapper {
    margin-top: 10%;
    margin-right: 0;
    margin-left: 0;
}

.col-lg-20 {
    flex: 0 0 20%;
    max-width: 20%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

.footer-menu-wrap {
    height: auto;
    text-align: left;
}
.footer-menu-wrap .footer-menu {
    display: block;
    margin: 0 0 30px;
    padding: 0;
}
.footer-menu-wrap .footer-menu li.menu-list {
    display: block;
    text-align: left;
    margin: 0;
    padding: 10px 10px;
}
.footer-menu-wrap .footer-menu li.menu-list::before {
    content: "- ";
}
.footer-menu-wrap .footer-menu li a {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.0;
    letter-spacing: 1px;
    color: #000;
    text-align: left;
    margin: 0;
    padding: 0;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    -ms-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}
.footer-menu-wrap .footer-menu li a:hover, 
.footer-menu-wrap .footer-menu li a:focus {
    color: #2E9A2A;
    text-decoration: none;
}


/*!-----------------------------------
[Footer Copyright]
*/
.footer {
    display: block;
    padding: 5% 0 0;
    background-color: #FFF;
    text-align: center;
}
.footer .copyright {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
    line-height: 1.0;
    color: #000;
    text-align: center;
    margin: 0;
    padding: 0;
}
.footer .copyright br {
    display: none;
}

@media (max-width: 1200px){
    .footer-menu-wrapper {
        margin-top: 1%;
        margin-left: 10%;
    }
    .col-lg-20 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}
@media (max-width: 990px){
    .footer-contents-wrapper {
        padding: 50px 8%;
    }
    .footer-logo-wrap {
        text-align: center;
    }
    .footer-logo-mark-wrapper {
        margin: 0 auto 20px;
    }
    .footer-address {
        font-size: 1.6rem;
        text-align: center;
        margin: 0;
        padding: 0 0 20px 0;
    }
    .footer-address span.footer-gmap {
        text-align: center;
        padding: 10px 0 0;
    }
    .footer-address span.footer-gmap a {
        font-size: 1.4rem;
    }
    .footer-tel-wrap {
        text-align: center;
        padding: 0 0 10px 0;
    }
    .footer-menu-wrapper {
        margin-top: 8%;
    }
    .footer-menu-wrap .footer-menu li.menu-list {
        text-align: center;
    }
}
@media (max-width: 499px){
    .footer-menu-wrapper {
        margin-left: 0;
    }
    .col-lg-20 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .footer-menu-wrap .footer-menu {
        margin: 0 0 10px;
    }
    .footer-menu-wrap .footer-menu li.menu-list {
        text-align: center;
    }
    .footer {
        padding: 10% 0 0;
    }
    .footer .copyright {
        font-size: 1.2rem;
        letter-spacing: 0;
        line-height: 1.4;
    }
    .footer .copyright br {
        display: block;
    }
}


/* ------------------------------------------------------------------
[Scroll UP]
------------------------------------------------------------------- */
.scroll-up {
    position: fixed;
    display: none;
    bottom: 0;
    right: 0;
    z-index: 9999;
}
.scroll-up a {
    display: block;
    height: 40px;
    width: 42px;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    color: #FFF;
    opacity: 1.0;
    background-color: #2E9A2A;
}
.scroll-up a:hover, .scroll-up a:active {
    opacity: 1;
    color: #FFF;
    background-color: #000;
}

@media (max-width: 990px){
	.scroll-up {
		right: 0;
	}
	.scroll-up a {
		height: 40px;
		width: 42px;
		line-height: 40px;
	}
}
@media (max-width: 749px){
	.scroll-up a {
		height: 30px;
		width: 32px;
		line-height: 30px;
	}
}


/* ------------------------------------------------------------------
[service.html]
------------------------------------------------------------------- */
#wrap-second {
    background: transparent;
    width: 100%;
    padding-left: 100px;
}
.second-contents-wrap {
    width: calc(100% - 200px);
    margin: 0 100px;
    background-color: rgba(255, 255, 255, 1.0);
    border-left: solid 1px #CCC;
    border-right: solid 1px #CCC;
}

@media (max-width: 1680px){
    .second-contents-wrap {
        width: calc(100% - 160px);
        margin: 0 80px;
    }
}
@media (max-width: 1480px){
    .second-contents-wrap {
        width: calc(100% - 120px);
        margin: 0 60px;
    }
}
@media (max-width: 1200px){
    .second-contents-wrap {
        width: calc(100% - 80px);
        margin: 0 40px;
    }
}

.logo-wrapper-second {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100px;
    margin: 0;
    padding: 0 4%;
    border-bottom: solid 1px #CCC;
}
a .logo-wrap-second {
    display: block;
    width: 270px;
    height: 60px;
    margin: 0;
    padding: 0;
}
.page-header-wrap {
    padding: 5% 5%;
    border-bottom: solid 1px #CCC;
}
.page-header-title {
    display: block;
    font-size: 3.0vw;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    line-height: 1.0;
    letter-spacing: 0.1vw;
    color: #000;
}
.page-header-title span {
    display: block;
    font-size: 1.0vw;
    font-weight: 500;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.2vw;
    padding: 6px 0 0;
}
.page-header-text {
    font-size: 1.1vw;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 2.0;
    color: #000;
    margin: 0;
    padding: 6% 5%;
    border-bottom: solid 1px #CCC;
}
.page-subtitle-wrapper {
    position: relative;
    margin-left: 0;
    margin-right: 0;
    border-bottom: solid 1px #CCC;
}
.page-subtitle-wrap-last {
    position: relative;
    margin-left: 0;
    margin-right: 0;
}
.page-subtitle-wrapper .corner-square {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 10%;
    background-color: #AACC0E;
}
.page-sectitle-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    border-right: solid 1px #CCC;
}
.page-sectext-wrap {
    display: flex;
    align-items: center;
    padding-top: 5%;
    padding-bottom: 5%;
    padding-left: 5%;
    padding-right: 5%;
}
.page-contents-imgwrap {
    margin: 0;
    padding: 0;
}
.page-contents-imgwrap img {
    width: 100%;
    max-width: 100%;
}
.page-contents-sectitle {
    font-size: 1.6vw;
    font-weight: 500;
    letter-spacing: 10px;
    line-height: 1.0;
    color: #000;
    margin: 0;
    padding: 0;
}
.page-contents-sectitle span {
    display: block;
    font-size: 1.6rem;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 0 0 10px;
}
.page-contents-sectext {
    font-size: 1.1vw;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 2.0;
    color: #000;
    margin: 0;
    padding: 6% 5%;
    border-bottom: solid 1px #CCC;
}
.page-contents-sectext span {
    display: block;
    font-size: 0.9vw;
    padding: 3% 0 0;
}
.page-subtitle-wrap {
    display: flex;
    align-items: center;
    padding-left: 5%;
    padding-right: 0;
    border-right: solid 1px #CCC;
}
.page-contents-subtitle {
    display: flex;
    align-items: center;
    width: 80%;
    margin: 0 auto 5%;
    padding: 0;
    border: solid 1px #000;
}
.page-contents-subtitle .page-contents-subtitle-left {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    font-size: 1.4rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 0.8;
    color: #000;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    padding: 2px 0 0;
}
.page-contents-subtitle .page-contents-subtitle-right {
    display: block;
    width: calc(100% - 180px);
    font-size: 1.0vw;
    letter-spacing: 4px;
    line-height: 1.0;
    color: #000;
    text-align: center;
    margin: 0;
    padding: 10px 0;
    border-left: solid 1px #000;
}
.page-contents-subtitle-full {
    display: flex;
    align-items: center;
    width: 40%;
    margin: 0 0 2.5% 5%;
    padding: 0;
    border: solid 1px #000;
}
.page-contents-subtitle-full .page-contents-subtitle-left {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    font-size: 1.4rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 0.8;
    color: #000;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    padding: 2px 0 0;
}
.page-contents-subtitle-full .page-contents-subtitle-right {
    display: block;
    width: calc(100% - 180px);
    font-size: 1.0vw;
    letter-spacing: 4px;
    line-height: 1.0;
    color: #000;
    text-align: center;
    margin: 0;
    padding: 10px 0;
    border-left: solid 1px #000;
}
.page-subtext-wrap {
    display: flex;
    align-items: center;
    padding-top: 5%;
    padding-bottom: 5%;
    padding-left: 5%;
    padding-right: 5%;
}
.page-contents-subtext {
    font-size: 1.0vw;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 2.0;
    color: #000;
    margin: 0;
    padding: 4% 5%;
}
.page-subtext-list {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.2;
    color: #000;
    margin: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}
.page-subtitle-list-wrap {
    display: flex;
    flex-direction: column;
    padding-top: 3%;
    padding-bottom: 2%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    border-right: solid 1px #CCC;
}
.page-subtitle-list-wrap.right {
    border-right: none;
}
.page-subtitle-list-wrap-left {
    display: block;
    padding-top: 3.5%;
    padding-bottom: 3%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}
.page-subtitle-wrapper-full {
    position: relative;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    padding-top: 3%;
    padding-bottom: 3%;
    border-bottom: solid 1px #CCC;
}
.page-subtitle-list-wrap-full {
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}
.page-subtext-list-wrap {
    display: flex;
    flex-direction: column;
    padding-top: 3%;
    padding-bottom: 3%;
    padding-left: 5%;
    padding-right: 5%;
}
.page-subtext-list-wrap-flow {
    display: flex;
    flex-direction: column;
    padding-top: 3%;
    padding-bottom: 3%;
    padding-left: 0;
    padding-right: 5%;
}
dl.page-contents-list {
    display: flex;
    width: 80%;
    padding: 2% 0;
    margin: 0 auto;
    border-bottom: solid 1px #CCC;
}
dl.page-contents-list:last-child {
    border-bottom: none;
}
dl.page-contents-list dt {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6%;
    font-size: 0.9vw;
    color: #000;
    text-align: center;
    line-height: 1.4;
    padding: 0;
    margin: 0;
}
dl.page-contents-list dd {
    display: flex;
    align-items: center;
    font-size: 0.9vw;
    font-weight: 400;
    text-align: left;
    line-height: 1.4;
    color: #000;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
}
dl.page-step-list {
    display: flex;
    width: 100%;
    padding: 1%;
    margin: 1% 0;
    background-color: #F0F0F0;
}
dl.page-step-list dt {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
    font-size: 0.9vw;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    color: #000;
    text-align: center;
    line-height: 1.0;
    padding: 0;
    margin: 0;
}
dl.page-step-list dd {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    font-size: 1.0vw;
    font-weight: 500;
    text-align: left;
    line-height: 1.4;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
}
.page-step-arrow {
    display: block;
    font-size: 1.8vw;
    text-align: center;
    line-height: 1.0;
    padding: 0;
    margin: 0;
}
.page-case-title-wrap {
    display: block;
    padding: 4% 0 3%;
    margin: 0;
}
.page-case-title {
    display: flex;
    align-items: center;
    width: 40%;
    margin: 0 auto;
    padding: 0;
    border: solid 1px #000;
}
.page-case-title .page-contents-subtitle-left {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    font-size: 1.4rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 0.8;
    color: #000;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    padding: 2px 0 0;
}
.page-case-title .page-contents-subtitle-right {
    display: block;
    width: calc(100% - 180px);
    font-size: 1.0vw;
    letter-spacing: 4px;
    line-height: 1.0;
    color: #000;
    text-align: center;
    margin: 0;
    padding: 10px 0;
    border-left: solid 1px #000;
}

@media (max-width: 1480px){
    .page-contents-subtitle .page-contents-subtitle-left {
        font-size: 1.2rem;
    }
    .page-contents-subtitle-full .page-contents-subtitle-left {
        font-size: 1.2rem;
    }
    .page-case-title .page-contents-subtitle-left {
        font-size: 1.2rem;
    }
}

.page-case-contents-wrap {
    display: block;
    text-align: center;
    line-height: 1.0;
    margin: 0 0 2%;
    padding-top: 1%;
    padding-bottom: 1%;
    padding-left: 2%;
    padding-right: 2%;
    border-right: solid 1px #CCC;
}
.page-case-subtitle {
    display: block;
    font-size: 0.9vw;
    font-weight: 500;
    text-align: center;
    line-height: 1.0;
    padding: 10px;
    margin: 5% 0;
    background-color: #F0F0F0;
}
dl.page-case-list {
    display: flex;
    width: 90%;
    padding: 2% 0;
    margin: 0 auto;
}
dl.page-case-list dt {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15%;
    font-size: 0.9vw;
    color: #000;
    text-align: center;
    line-height: 1.4;
    padding: 0;
    margin: 0;
}
dl.page-case-list dd {
    display: flex;
    align-items: center;
    width: 85%;
    font-size: 0.9vw;
    font-weight: 400;
    text-align: left;
    line-height: 1.4;
    letter-spacing: 0;
    color: #000;
    padding: 0;
    margin: 0;
}
dl.page-coverage-list {
    display: flex;
    width: 90%;
    padding: 3% 0;
    margin: 0 auto;
    border-bottom: solid 1px #CCC;
}
dl.page-coverage-list dt {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10%;
    font-size: 0.9vw;
    color: #000;
    text-align: center;
    line-height: 1.4;
    padding: 0;
    margin: 0;
}
dl.page-coverage-list dd {
    display: flex;
    align-items: center;
    width: 90%;
    font-size: 0.9vw;
    font-weight: 400;
    text-align: left;
    line-height: 1.4;
    letter-spacing: 0;
    color: #000;
    padding: 0;
    margin: 0;
}
dl.page-coverage-list:last-child {
    border-bottom: none;
}
.page-subtitle-wrap-last {
    position: relative;
    margin-left: 0;
    margin-right: 0;
}
.page-subtitle-wrap-last .corner-square {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 10%;
    background-color: #AACC0E;
}
.page-sectitle-wrap-lease {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2% auto;
    padding-top: 10%;
    padding-bottom: 10%;
    padding-left: 0;
    padding-right: 0;
    border-right: solid 1px #CCC;
}
.page-sectitle-wrap-lease-right {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2% auto;
    padding-top: 5%;
    padding-bottom: 5%;
    padding-left: 4%;
    padding-right: 4%; 
}
.page-lease-sectext-wrap {
    margin: 0;
    padding: 0;
}
.page-lease-sectext {
    font-size: 1.1vw;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 2.0;
    color: #000;
    margin: 0 0 5%;
    padding: 0;
}

@media (max-width: 1480px){
    .page-header-text {
        font-size: 1.2vw;
    }
    .page-contents-sectitle {
        font-size: 1.8vw;
    }
    .page-contents-sectext {
        font-size: 1.2vw;
    }
    .page-contents-subtitle .page-contents-subtitle-right {
        font-size: 1.2vw;
    }
    .page-contents-subtitle-full .page-contents-subtitle-right {
        font-size: 1.2vw;
    }
    dl.page-contents-list dt {
        font-size: 1.1vw;
    }
    dl.page-contents-list dd {
        font-size: 1.1vw;
    }
    dl.page-step-list dt {
        font-size: 1.1vw;
    }
    dl.page-step-list dd {
        font-size: 1.2vw;
    }
    .page-case-title .page-contents-subtitle-right {
        font-size: 1.2vw;
    }
    .page-case-subtitle {
        font-size: 1.2vw;
    }
    dl.page-case-list dt {
        font-size: 1.1vw;
    }
    dl.page-case-list dd {
        font-size: 1.1vw;
    }
    dl.page-coverage-list dt {
        font-size: 1.1vw;
    }
    dl.page-coverage-list dd {
        font-size: 1.1vw;
    }
    .page-lease-sectext {
        font-size: 1.2vw;
    }
    .page-contents-sectext span {
        font-size: 1.1vw;
    }
    .page-contents-subtitle .page-contents-subtitle-right {
        font-size: 1.2vw;
    }
}
@media (max-width: 990px){
    .page-header-title {
        font-size: 4.8vw;
    }
    .page-header-title span {
        font-size: 2.2vw;
    }
    .page-header-text {
        font-size: 1.6rem;
    }
    .page-header-text br {
        display: none;
    }
    .page-sectitle-wrap {
        padding-top: 8%;
        padding-bottom: 8%;
    }
    .page-contents-sectitle {
        font-size: 3.6vw;
        font-weight: 500;
        letter-spacing: 1.0vw;
    }
    .page-contents-sectext {
        font-size: 1.6rem;
    }
    .page-contents-sectext br {
        display: none;
    }
    .page-subtitle-list-wrap {
        padding-top: 5%;
        padding-bottom: 5%;
    }
    .page-contents-subtitle {
        width: 90%;
        margin: 0 auto 3%;
    }
    .page-contents-subtitle .page-contents-subtitle-left {
        font-size: 1.4rem;
    }
    .page-contents-subtitle .page-contents-subtitle-right {
        font-size: 1.6rem;
        letter-spacing: 6px;
    }
    .page-subtitle-list-wrap.right {
        border-top: solid 1px #CCC;
    }
    dl.page-contents-list {
        width: 90%;
    }
    dl.page-contents-list.tbtop {
        border-top: solid 1px #CCC;
    }
    dl.page-contents-list dt {
        font-size: 1.5rem;
    }
    dl.page-contents-list dd {
        font-size: 1.5rem;
    }
    .page-subtitle-wrapper-full {
        padding-top: 5%;
        padding-bottom: 5%;
    }
    .page-contents-subtitle-full {
        width: 90%;
        margin: 0 auto 3%;
    }
    .page-contents-subtitle-full .page-contents-subtitle-right {
        font-size: 1.6rem;
        letter-spacing: 6px;
    }
    .page-contents-sectext span {
        font-size: 1.2rem;
    }

    .page-subtitle-list-wrap-left {
        padding-top: 5%;
        padding-bottom: 0;
    }
    .page-subtext-list-wrap-flow {
        padding-top: 0;
        padding-bottom: 5%;
        padding-left: 5%;
        padding-right: 5%;
    }
    dl.page-step-list dt {
        font-size: 1.5rem;
    }
    dl.page-step-list dd {
        font-size: 1.6rem;
    }
    .page-step-arrow {
        font-size: 1.8rem;
    }

    .page-case-title-wrap {
        padding: 5% 0 3%;
    }
    .page-case-title {
        width: 90%;
    }
    .page-case-title .page-contents-subtitle-left {
        font-size: 1.4rem;
    }
    .page-case-title .page-contents-subtitle-right {
        font-size: 1.6rem;
        letter-spacing: 6px;
    }
    .page-case-contents-wrap {
        margin: 0 0 2%;
        padding-top: 0%;
        padding-bottom: 3%;
        padding-left: 5%;
        padding-right: 5%;
        border-right: none;
    }
    .page-case-subtitle {
        font-size: 1.5rem;
    }
    dl.page-case-list {
        padding: 2% 0;
    }
    dl.page-case-list dt {
        font-size: 1.5rem;
    }
    dl.page-case-list dd {
        font-size: 1.5rem;
    }
    dl.page-coverage-list dt {
        font-size: 1.5rem;
    }
    dl.page-coverage-list dd {
        font-size: 1.5rem;
    }

    .page-sectitle-wrap-lease-right {
        margin: 0 auto;
        padding-top: 0;
        padding-bottom: 8%;
        padding-left: 5%;
        padding-right: 5%;
    }
    .page-sectitle-wrap-lease {
        margin: 0 auto;
        padding-top: 8%;
        padding-bottom: 7%;
        border-right: none;
    }
    .page-lease-sectext {
        font-size: 1.6rem;
    }
}
@media (max-width: 749px){
    #wrap-second {
        padding-left: 0;
    }
}
@media (max-width: 499px){
    .second-contents-wrap {
        width: 100%;
        margin: 0;
        border-left: none;
        border-right: none;
    }
    .logo-wrapper-second {
        padding: 0 0 0 60px;
    }
    a .logo-wrap-second {
        display: block;
        width: 240px;
        height: 60px;
        margin: 0;
        padding: 0;
    }
    .page-header-wrap {
        padding: 8% 10%;
    }
    .page-header-title {
        font-size: 9.6vw;
        text-align: center;
    }
    .page-header-title span {
        font-size: 1.6rem;
    }
    .page-header-text {
        line-height: 1.8;
        padding: 8% 10%;
    }
    .page-sectitle-wrap {
        padding-top: 10%;
        padding-bottom: 10%;
    }
    .page-contents-sectitle {
        font-size: 7.2vw;
        letter-spacing: 2.0vw;
        text-align: center;
    }
    .page-contents-sectext {
        line-height: 1.8;
        padding: 8% 10%;
    }
    .page-subtitle-list-wrap {
        padding-top: 8%;
        padding-bottom: 8%;
    }
    .page-contents-subtitle {
        display: block;
        width: 80%;
        text-align: center;
        margin: 0 auto 5%;
    }
    .page-contents-subtitle .page-contents-subtitle-left {
        display: block;
        width: 100%;
        font-size: 1.4rem;
        padding: 10px 0;
    }
    .page-contents-subtitle .page-contents-subtitle-right {
        display: block;
        width: 100%;
        padding: 10px 0;
        border-top: solid 1px #000;
        border-left: none;
    }
    dl.page-contents-list {
        width: 80%;
        padding: 4% 0;
        margin: 0 auto;
    }
    dl.page-contents-list dt {
        width: 30px;
        font-size: 1.6rem;
    }
    dl.page-contents-list dd {
        width: calc(100% - 30px);
        font-size: 1.6rem;
    }
    dl.page-coverage-list {
        padding: 4% 0;
    }
    .page-subtitle-wrapper-full {
        padding-top: 8%;
        padding-bottom: 8%;
    }
    .page-contents-subtitle-full {
        display: block;
        width: 80%;
        text-align: center;
        margin: 0 auto 5%;
    }
    .page-contents-subtitle-full .page-contents-subtitle-left {
        display: block;
        width: 100%;
        font-size: 1.4rem;
        padding: 10px 0;
    }
    .page-contents-subtitle-full .page-contents-subtitle-right {
        display: block;
        width: 100%;
        padding: 10px 0;
        border-top: solid 1px #000;
        border-left: none;
    }
    .page-contents-sectext span {
        font-size: 1.4rem;
        line-height: 1.5;
    }
    .page-subtitle-list-wrap-left {
        padding-top: 8%;
    }
    .page-subtext-list-wrap-flow {
        padding-bottom: 8%;
        padding-left: 10%;
        padding-right: 10%;
    }
    dl.page-step-list {
        display: flex;
        flex-direction: column;
    }
    dl.page-step-list dt {
        width: 100%;
        text-align: center;
        padding: 10px 0 0;
    }
    dl.page-step-list dd {
        width: 100%;
        text-align: center;
        padding: 8px 0 10px;
    }
    .page-case-title-wrap {
        padding: 8% 0 5%;
    }
    .page-case-title {
        display: block;
        width: 80%;
    }
    .page-case-title .page-contents-subtitle-left {
        display: block;
        width: 100%;
        font-size: 1.4rem;
        padding: 10px 0;
    }
    .page-case-title .page-contents-subtitle-right {
        display: block;
        width: 100%;
        padding: 10px 0;
        border-top: solid 1px #000;
        border-left: none;
    }
    .page-case-contents-wrap {
        margin: 0;
        padding-top: 0;
        padding-bottom: 8%;
        padding-left: 10%;
        padding-right: 10%;
    }
    .page-case-subtitle {
        font-size: 1.6rem;
        margin: 0 0 5%;
    }
    .page-lease-sectext {
        line-height: 1.8;
        margin: 0 0 8%;
    }
    .page-sectitle-wrap-lease-right {
        padding-bottom: 8%;
        padding-left: 10%;
        padding-right: 10%;
    }
    dl.page-case-list dt {
        width: 10%;
        font-size: 1.6rem;
    }
    dl.page-case-list dd {
        font-size: 1.6rem;
    }
    dl.page-coverage-list dt {
        font-size: 1.6rem;
    }
    dl.page-coverage-list dd {
        font-size: 1.6rem;
    }
}


/*!---------------------------------------
[Button lease]
*/
.linkbutton-wrapper-lease {
    display: block;
    width: 100%;
    height: 50px;
    text-align: left;
    margin: 0 0 0;
    padding: 0;
}
.linkbutton-left {
    display: block;
    position: relative;
    width: 200px;
    height: 50px;
    text-align: left;
    margin: 0;
    padding: 0 15px;
    background: ransparent;
    line-height: 45px;
    border: solid 1px #CCC;
}
.linkbutton-left::before {
  content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background-color: #000;
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: scale(0,1);
    -ms-transform: scale(0,1);
    transform: scale(0,1);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s,-webkit-transform .3s;
}
.linkbutton-left:hover::before {
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1,1);
    -ms-transform: scale(1,1);
    transform: scale(1,1);
}
.linkbutton-left .text {
    display: inline-block;
    position: relative;
    font-size: 1.4rem;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0;
    color: #000;
    text-align: center;
    transition: all .3s;
    -webkit-transition: all .3s;
    z-index: 2;
}
.linkbutton-left:hover {
    border: solid 2px #000;
}
.linkbutton-left:hover .text {
    color: #FFF;
}
.linkbutton-left .arrow {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 12px;
    border-color: transparent transparent transparent #000;
    position: absolute;
    right: 20px;
    top: 45%;
    margin-top: -3px;
    transition: all .3s;
    -webkit-transition: all .3s;
    z-index: 2;
}
.linkbutton-left:hover .arrow {
    border-color: transparent transparent transparent #FFF;
    right: 25px;
}

@media (max-width: 990px){
    .linkbutton-left {
        margin: 0 auto;
    }
}


/* ------------------------------------------------------------------
[company.html]
------------------------------------------------------------------- */
.page-subtitle-wrapper-table {
    position: relative;
    margin-left: 0;
    margin-right: 0;
}
.page-subtitle-list-wrap-left-table {
    display: flex;
    flex-direction: column;
    padding-top: 7%;
    padding-bottom: 2%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}
.page-subtext-list-wrap-table {
    display: flex;
    flex-direction: column;
    padding-top: 6%;
    padding-bottom: 6%;
    padding-left: 0;
    padding-right: 5%;
}


/*!----------------------------------
[Table Overview]
*/
table.overview {
    width: 90%;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 20px 0;
}
table.overview th {
    width: 20%;
    font-size: 0.9vw;
    font-weight: 500;
    color: #000;
    vertical-align: top;
	text-align: center;
    padding: 1.5em 1.0em;
    border-bottom: solid 1px #CCC;
}
table.overview th.first {
    border-top: solid 1px #CCC;
}
table.overview th span {
    font-size: 0.8vw;
    font-weight: 400;
    letter-spacing: 0;
}
table.overview td {
    width: 75%;
    text-align: left;
    vertical-align: middle;
    font-size: 0.9vw;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    padding: 1.5em 1.0em;
    border-bottom: solid 1px #CCC;
}
table.overview td.first {
    border-top: solid 1px #CCC;
}
table.overview td br.ofc {
	display: none;
}
table.overview td a {
	display: block;
    font-size: 0.9vw;
    font-weight: 400;
    color: #000;
    line-height: 1.0;
    padding: 5px 0 0;
}
table.overview td a:hover {
    color: #005000;
}
table.overview td a.tel {
    font-size: 0.9vw;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    padding: 0;
}
table.overview td a.address-gm {
    font-size: 1.2rem;
    font-weight: 400;
    color: #000;
    line-height: 1.0;
    padding: 10px 0 15px;
}
table.overview td a.address-gm:hover {
    color: #666;
}
.office-gmap {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.office-gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.office-gmap-title {
	display: block;
    font-size: 0.9vw;
    font-weight: 500;
    color: #000;
    padding: 30px 0 10px;
    margin: 0;
}
.office-gmap-text {
	display: block;
    font-size: 0.9vw;
    font-weight: 400;
    color: #000;
    padding: 20px 0 0;
    margin: 0;
}
dl.overview-content-wrap {
    display: flex;
    width: 100%;
    padding: 0 0 8px;
    margin: 0;
}
dl.overview-content-wrap dt {
    width: 20%;
    font-size: 0.9vw;
    font-weight: 400;
    color: #000;
    text-align: left;
    line-height: 1.4;
    padding: 0;
    margin: 0;
}
dl.overview-content-wrap dd {
    width: 80%;
    font-size: 0.9vw;
    font-weight: 400;
    text-align: left;
    line-height: 1.4;
    letter-spacing: 1px;
    color: #000;
    padding: 0;
    margin: 0;
}
dl.overview-content-wrap02 {
    display: flex;
    width: 100%;
    padding: 0 0 10px;
    margin: 0;
}
dl.overview-content-wrap02 dt {
    width: 5%;
    font-size: 0.9vw;
    font-weight: 400;
    color: #000;
    text-align: left;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}
dl.overview-content-wrap02 dd {
    width: 95%;
    font-size: 0.9vw;
    font-weight: 400;
    text-align: left;
    line-height: 1.4;
    letter-spacing: 0;
    color: #000;
    margin: 0;
    padding: 0;
}
dl.overview-content-wrap03 {
    display: flex;
    width: 100%;
    padding: 5px 0;
    margin: 0;
}
dl.overview-content-wrap03 dt {
    width: 10%;
    font-size: 0.9vw;
    font-weight: 400;
    color: #000;
    text-align: left;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}
dl.overview-content-wrap03 dd {
    width: 90%;
    font-size: 0.9vw;
    font-weight: 400;
    text-align: left;
    line-height: 1.4;
    letter-spacing: 0;
    color: #000;
    margin: 0;
    padding: 0;
}
.page-client-text {
    font-size: 0.9vw;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.4;
    color: #000;
    margin: 0;
    padding-top: 0px;
    padding-bottom: 10px;
    padding-left: 0;
}

@media (max-width: 1480px){
	table.overview {
		width: 100%;
	}
	table.overview th {
        font-size: 1.1vw;
		padding: 1.5em 1.0em;
	}
	table.overview td {
        font-size: 1.1vw;
		padding: 1.5em 1.0em;
	}
	table.overview td a {
		padding: 5px 0 0;
	}
	table.overview td a.tel {
		line-height: 1.6;
	}
	table.overview td a.address-gm {
		padding: 10px 0 15px;
	}
	dl.overview-content-wrap dt {
        width: 30%;
        font-size: 1.1vw;
		padding: 0;
	}
	dl.overview-content-wrap dd {
        width: 70%;
        font-size: 1.1vw;
		padding: 0;
	}
	dl.overview-content-wrap dd span {
        font-size: 1.1vw;
		padding: 0 0 10px;
	}
	dl.overview-content-wrap02 dt {
        font-size: 1.1vw;
		padding: 0;
	}
	dl.overview-content-wrap02 dd {
        font-size: 1.1vw;
		padding: 0;
	}
	dl.overview-content-wrap02 dd span {
        font-size: 1.1vw;
		padding: 0 0 10px;
	}
    dl.overview-content-wrap03 dt {
        font-size: 1.1vw;
    }
    dl.overview-content-wrap03 dd {
        font-size: 1.1vw;
    }
}
@media (max-width: 1200px){
    .page-subtext-list-wrap-table {
        padding-top: 0;
        padding-bottom: 6%;
        padding-left: 8%;
        padding-right: 8%;
    }
	table.overview {
		width: 100%;
	}
    .page-subtext-list-wrap-table.inta-text {
        padding-top: 0;
        padding-bottom: 6%;
        padding-left: 10%;
        padding-right: 10%;
    }
}
@media (max-width: 990px){
    .page-subtext-list-wrap-table {
        padding-top: 0;
        padding-bottom: 8%;
        padding-left: 4%;
        padding-right: 4%;
    }
	table.overview {
		width: 100%;
		margin: 0 auto;
	}
	table.overview th {
        font-size: 1.5rem;
		padding: 1.5em 0em;
	}
	table.overview th span {
		font-size: 1.4rem;
	}
	table.overview td {
        font-size: 1.5rem;
	}
	table.overview td br.ofc {
		display: block;
	}
	table.overview td span.post-code {
		display: block;
	}
	table.overview td span.ten {
		display: none;
	}
	dl.overview-content-wrap dt {
        width: 45%;
        font-size: 1.5rem;
		padding: 5px 0;
	}
	dl.overview-content-wrap dd {
        font-size: 1.5rem;
		padding: 5px 0;
	}
	dl.overview-content-wrap02 dt {
        width: 8%;
        font-size: 1.5rem;
		padding: 5px 0;
	}
	dl.overview-content-wrap02 dd {
        font-size: 1.5rem;
		padding: 5px 0;
	}
    dl.overview-content-wrap03 dt {
        width: 8%;
        font-size: 1.5rem;
		padding: 5px 0;
    }
	dl.overview-content-wrap03 dd {
        font-size: 1.5rem;
		padding: 5px 0;
	}
    .page-client-text {
        padding-bottom: 5px;
    }
}
@media (max-width: 499px){
    .page-subtitle-list-wrap-left-table {
        padding-top: 8%;
        padding-bottom: 3%;
    }
    .page-subtext-list-wrap-table {
        padding-top: 0;
        padding-bottom: 8%;
        padding-left: 10%;
        padding-right: 10%;
    }
	table.overview {
		width: 100%;
		border-spacing: 0px 0;
	}
	table.overview th {
		display: block;
		width: 100%;
		font-size: 1.8rem;
		text-align: left;
		padding: 1.2em 0.5em 0.4em;
		border-bottom: none;
	}
	table.overview th br {
		display: none;
	}
	table.overview td {
		display: block;
		width: 100%;
		font-size: 1.6rem;
		font-weight: 400;
		padding: 0 0.5em 1.2em;
	}
	table.overview td br.br {
		display: none;
	}
	table.overview td.first {
		border-top: none;
	}
	table.overview td a.tel {
		font-size: 1.6rem;
	}
	table.overview td a.address-gm {
		font-size: 1.2rem;
		padding: 10px 0 15px;
	}
    dl.overview-content-wrap dt {
        width: 50%;
		font-size: 1.6rem;
        padding: 2px 0;
    }
	dl.overview-content-wrap dd {
        width: 50%;
		font-size: 1.6rem;
        padding: 2px 0;
	}
	dl.overview-content-wrap02 dt {
		font-size: 1.6rem;
        padding: 2px 0;
	}
	dl.overview-content-wrap02 dd {
		font-size: 1.6rem;
        padding: 2px 0;
	}
    dl.overview-content-wrap03 dt {
		font-size: 1.6rem;
        padding: 2px 0;
    }
	dl.overview-content-wrap03 dd {
		font-size: 1.6rem;
        padding: 2px 0;
	}
	table.overview td span.add {
		display: block;
	}
}


/* ------------------------------------------------------------------
[recruit.html]
------------------------------------------------------------------- */
.page-recruit-subtitle {
    display: inline-block;
    font-size: 1.0vw;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.0;
    color: #373737;
    margin: 0 auto 5%;
    padding: 10px 18px 10px 20px;
    border: solid 1px #373737;
}
.recruit-lead-innerwrap {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 100px 5%;
    background-color: rgba(255, 255, 255, 1.0);
    border-bottom: solid 1px #CCC;
}
.recruit-interview-name {
    display: block;
    font-size: 1.1vw;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.0;
    color: #000;
    margin: 0 0 6%;
    padding: 0;
    text-align: left;
}
.recruit-interview-name span {
    display: inline-block;
    font-size: 0.8vw;
    font-weight: 600;
    margin: 0;
    padding: 0 4% 0 0;
}
.recruit-interview-lead {
    display: block;
    font-size: 1.6vw;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.5;
    color: #000;
    margin: 0 0 5%;
    padding: 0;
    text-align: left;
}
.recruit-interview-lead br {
    display: none;
}
.recruit-interview-text {
    display: block;
    font-size: 1.0vw;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 2.0;
    color: #000;
    margin: 0 0 1em 0;
    padding: 0;
    text-align: left;
}
dl.recruit-content-wrap {
    display: flex;
    width: 100%;
    padding: 5px 0;
    margin: 0;
}
dl.recruit-content-wrap dt {
    width: 4%;
    font-size: 0.8vw;
    font-weight: 400;
    color: #000;
    text-align: left;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}
dl.recruit-content-wrap dd {
    width: 96%;
    font-size: 0.8vw;
    font-weight: 400;
    text-align: left;
    line-height: 1.4;
    letter-spacing: 0;
    color: #000;
    margin: 0;
    padding: 0;
}

@media (max-width: 1480px){
    .recruit-interview-name {
        font-size: 1.4vw;
    }
    .recruit-interview-name span {
        font-size: 1.1vw;
    }
    .recruit-interview-text {
        font-size: 1.2vw;
    }
    dl.recruit-content-wrap dt {
        font-size: 1.0vw;
    }
    dl.recruit-content-wrap dd {
        font-size: 1.0vw;
    }
}
@media (max-width: 1200px){
    .recruit-lead-innerwrap {
        padding: 100px 10%;
    }
    .recruit-interview-name {
        font-size: 1.6vw;
        margin: 0 0 4%;
    }
    .recruit-interview-name span {
        font-size: 1.3vw;
    }
    .recruit-interview-lead {
        font-size: 2.0vw;
        margin: 0 0 4%;
    }
}
@media (max-width: 990px){
    .recruit-lead-innerwrap {
        padding: 70px 10%;
    }
    .recruit-interview-name {
        font-size: 1.8rem;
        margin: 0 0 4%;
    }
    .recruit-interview-name span {
        font-size: 1.5rem;
    }
    .recruit-interview-lead {
        font-size: 2.4vw;
    }
    .recruit-interview-text {
        font-size: 1.5rem;
    }
    dl.recruit-content-wrap dt {
        font-size: 1.4rem;
    }
    dl.recruit-content-wrap dd {
        font-size: 1.4rem;
    }
}
@media (max-width: 749px){
    .recruit-interview-lead {
        font-size: 3.0vw;
    }
}
@media (max-width: 499px){
    .recruit-lead-innerwrap {
        padding: 50px 10%;
    }
    .recruit-interview-name {
        font-size: 1.8rem;
        margin: 0 0 8%;
    }
    .recruit-interview-name span {
        font-size: 1.6rem;
    }
    .recruit-interview-lead {
        font-size: 5.4vw;
        margin: 0 0 8%;
    }
    .recruit-interview-lead br {
        display: block;
    }
    .recruit-interview-text {
        font-size: 1.6rem;
    }
}


 /* ------------------------------------------------------------------
contact.html
------------------------------------------------------------------- */
.page-contact-wrapper {
    position: relative;
    margin-left: 0;
    margin-right: 0;
}
.contact-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
.page-contact-form-wrap-left {
    display: flex;
    flex-direction: column;
    padding-top: 7%;
    padding-bottom: 3%;
    padding-left: 5%;
    padding-right: 5%;
    text-align: left;
}
.page-contact-form-wrap {
    display: flex;
    flex-direction: column;
    padding-top: 6%;
    padding-bottom: 6%;
    padding-left: 0;
    padding-right: 5%;
}
.page-contact-form-wrap-center {
    display: flex;
    flex-direction: column;
    padding-top: 6%;
    padding-bottom: 6%;
    padding-left: 5%;
    padding-right: 5%;
}
p.contacts-txt-title {
    display: block;
	font-size: 1.0vw;
	font-weight: 500;
    letter-spacing: 0;
	line-height: 1.5;
    color: #000;
    margin: 0 0 5%;
    padding: 0;
}
p.contacts-txt-title br {
    display: none;
}
.item-contacts-l {
    font-size: 2.4vw;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.0;
    color: #000;
    margin: 0;
    padding: 0 0 10px;
}
.item-contacts-l a {
    font-size: 2.4vw;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0;
    line-height: 1.0;
    color: #000;
}
.item-contacts-l-teltime {
    font-size: 0.8vw;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.0;
    color: #000;
    margin: 0 0 5%;
    padding: 0 0 0 12%;
}
p.contacts-txt-titles {
    display: block;
	font-size: 0.9vw;
	font-weight: 500;
    letter-spacing: 0;
	line-height: 1.8;
    color: #000;
    margin: 0 0 5%;
    padding: 0;
}

@media (max-width: 1480px){
    .item-contacts-l a {
        font-size: 3.0vw;
    }
    .item-contacts-l-teltime {
        font-size: 1.0vw;
    }
    p.contacts-txt-titles {
        font-size: 1.1vw;
    }
}
@media (max-width: 1200px){
    p.contacts-txt-title {
        font-size: 1.2vw;
        text-align: center;
        margin: 0 0 3%;
    }
    .item-contacts-l {
        font-size: 3.6vw;
        text-align: center;
    }
    .item-contacts-l a {
        font-size: 3.6vw;
    }
    .item-contacts-l-teltime {
        font-size: 1.2vw;
        text-align: center;
        margin: 0 0 3%;
        padding: 0 0 0 6%;
    }
    p.contacts-txt-titles {
        font-size: 1.2vw;
        text-align: center;
    }
    .page-contact-form-wrap-left {
        padding-left: 10%;
        padding-right: 10%;
        padding-bottom: 0;
    }
    .page-contact-form-wrap {
        padding-top: 0;
        padding-bottom: 6%;
        padding-left: 10%;
        padding-right: 10%;
    }
}
@media (max-width: 990px){
    p.contacts-txt-title {
		font-size: 16px;
    }
    .item-contacts-l {
        font-size: 4.8vw;
    }
    .item-contacts-l a {
        font-size: 4.8vw;
    }
    .item-contacts-l-teltime {
        font-size: 1.8vw;
        margin: 0 0 4%;
        padding: 0 0 0 6%;
    }
	p.contacts-txt-titles {
		font-size: 16px;
		letter-spacing: 0;
		padding: 0;
	}
}
@media (max-width: 499px){
    .page-contact-form-wrap {
        padding-bottom: 10%;
        padding-left: 8%;
        padding-right: 8%;
    }
	p.contacts-txt-titles {
		font-size: 16px;
		padding: 0 0 40px;
		text-align: left;
	}
	.item-contacts-l a {
		font-size: 30px;
	}
	.item-contacts-l {
		font-size: 24px;
		padding: 0 0 10px;
		text-align: center;
	}
	.item-contacts-l i {
		font-size: 36px;
	}
	.item-contacts-l-teltime {
		font-size: 15px;
        margin: 0;
		padding: 0 0 30px;
	}
	.item-contacts-r {
		font-size: 24px;
		padding: 0 0 20px;
		text-align: center;
	}
	p.contacts-txt-title br {
		display: none;
	}
	p.contacts-txt-title-name {
		font-size: 16px;
	}
	p.contacts-txt-title {
		font-size: 16px;
		letter-spacing: 0;
		line-height: 1.4;
        margin: 0;
		padding: 0 0 30px;
	}
	p.contacts-txt-title br {
		display: block;
	}
	p.contacts-txt-titles {
		font-size: 16px;
		letter-spacing: 0;
		line-height: 1.8;
        margin: 0;
		padding: 0 0 30px;
		text-align: left;
	}
	p.contacts-txt-titles br {
		display: none;
	}
	dl.item-contacts {
		width: 100%;
		padding: 30px 0;
	}
	dl.item-contacts dd {
		font-size: 24px;
	}
}


/* --------------------------------------
	section-contact
----------------------------------------*/
.contact-inner {
	width: 100%;
	font-size: 18px;
    color: #000;
	line-height: 2.0;
	text-align: left;
	margin: 0 auto;
	padding: 0;
}
.contact-title001 {
	font-size: 1.5vw;
    font-weight: 600;
    line-height: 1.0;
	margin-bottom: 8%;
}
.contact-txt001 {
	font-size: 1.0vw;
    font-weight: 400;
    line-height: 1.5;
	margin-bottom: 2%;
}
.contact-txt001 br {
	display: none;
}
.contact-txt03 {
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 1.5em;
}
em {
	color: #a40000;
	font-style: normal;
}


/* --------------------------------------
	itemBlock
----------------------------------------*/
.itemBlock {
	margin-bottom: 40px;
	line-height: 1;
	font-size: 16px;
}
.itemBlock .title {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 600;
}
.itemBlock p {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}
.itemBlock label {
	cursor: pointer;
	display: block;
}
.itemBlock label:after {
	content: "";
	clear: both;
	display: block;
}
.itemBlock label input { 
	float: left;
	font-size: 18px;
}
.itemBlock label input[type="radio"] {
	width: 18px;
	height: 18px;
	margin: 0 0 0 0;
}
.itemBlock label p {
	float: left;
	padding: 0 0 0 4px;
	margin: 0;
	width: calc(100% - 24px);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
}


/* --------------------------------------
	contentsBlock
----------------------------------------*/
.contentsBlock {
	line-height: 1.5;
	margin-bottom: 40px;
}
.contentsBlock .title {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 600;
}
.contentsBlock .title span {
	font-size: 18px;
}


/* --------------------------------------
	addressBlock
----------------------------------------*/
.addressBlock {
	line-height: 1.5;
	font-size: 16px;
}
.addressBlock .title {
	margin-bottom: 30px;
	font-size: 18px;
	font-weight: 600;
}
.addressBlock p {
	margin-bottom: 15px;
	font-size: 16px;
	font-weight: 600;
}
.addressBlock p span {
	font-size: 13px;
	font-weight: 500;
}
.addressBlock input {
	margin-bottom: 30px;
}


/* --------------------------------------
	privacyBlock
----------------------------------------*/
.privacyBlock {
	line-height: 2;
	font-size: 16px;
	margin-bottom: 60px;
}
.privacyBlock .title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
}
.privacyBlock label {
	cursor: pointer;
	display: block;
}
.privacyBlock label:after {
	content: "";
	clear: both;
	display: block;
}
.privacyBlock label input { 
	float: left;
	font-size: 16px;
}
.privacyBlock label input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin: 3px 5px 0 0;
}
.privacyBlock p {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
    margin-bottom: 20px;
}
.privacyBlock label p {
	float: left;
	padding: 0 0 0 4px;
	margin: 0;
	width: calc(100% - 30px);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}
.privacyBlock iframe {
    width: 100%;
    height: 250px;
    margin: 0 0 10px;
    border-width: 0px;
    border-radius: 0.25rem;
    overflow: hidden;
}


/* --------------------------------------
	form
----------------------------------------*/
.addressBlock input[type="text"] {
	font-size: 16px;
	font-weight: 400;
	padding-right: 6px;
	padding-left: 6px;
	margin-right: 10px;
	color: #000;
	display: inline-block;
	border-color: #CCC;
}
.contentsBlock textarea {
	font-size: 16px;
	font-weight: 400;
	padding-right: 6px;
	padding-left: 6px;
	margin-right: 10px;
	color: #000;
	display: inline-block;
	height: 12em;
	border-color: #CCC;
}
.itemBlock select {
	height: 38px;
	font-size: 16px;
	font-weight: 600;
	padding: 6px 6px 10px 6px;
	margin-right: 10px;
	color: #000;
	display: inline-block;
	border-color: #CCC;
}
.itemBlock label {
	font-weight: normal;
    color: #121212;
    font-size: 15px;
    margin: 0;
    padding: 0;
}
.itemBlock label input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin: 0 0 0 0;
}


/* --------------------------------------
	confirmBlock
----------------------------------------*/
.confirmBlock {
	text-align: center;
	line-height: 1;
}
.confirmBlock ul.submit{
	width: 100%;
	font-size: 0;
	margin: 0;
	padding-top: 0;
	padding-bottom: 0;
	-webkit-padding-start: 0px;
}
.confirmBlock ul.submit li{
	width: 100%;
	font-size: 18px;
	display: inline-block;
}
.confirmBlock ul.submit li button.reset{
	background-color: #c9c9c9;
	color: #434343;
	border: none;
	text-decoration: none;
	padding: 15px 40px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	transition: all .3s ease;
}
.confirmBlock ul.submit li button.reset:hover{
	background-color: #000;
	color: #FFF;
	cursor: pointer;
}
.confirmBlock ul.submit li button.confirm{
    display: inline-block;
    position: relative;
	border: none;
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;
	margin: 0 auto;
    padding: 30px 80px;
	background: #2E9A2A;
    text-transform: uppercase;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	transition: all .3s ease;
}
.confirmBlock ul.submit li button.confirm:hover{
	background-color: #A6162C;
	color: #FFF;
	border: none;
	cursor: pointer;
}

@media(max-width:1300px) {
	.itemBlock .title {
		font-size: 16px;
	}
	.contentsBlock .title {
		font-size: 16px;
	}
	.contentsBlock .title span {
		font-size: 16px;
	}
	.addressBlock .title {
		font-size: 16px;
	}
	.privacyBlock .title {
		font-size: 16px;
	}
}
@media(	max-width:1200px) {
	.contact-inner {
		width: 100%;
		padding: 5% 0 0;
	}
    .contact-title001 {
        font-size: 2.0vw;
        text-align: center;
        margin-bottom: 5%;
    }
}
@media(max-width:990px) {
	.contact-inner {
		font-size: 14px;
		padding: 5% 0 0;
	}
    .contact-title001 {
        font-size: 3.0vw;
        margin-bottom: 8%;
    }
    .contact-txt001 {
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 3%;
    }
	.itemBlock .title {
		font-size: 16px;
		margin-bottom: 10px;
	}
	.contentsBlock {
		font-size: 16px;
	}
	.contentsBlock .title span {
		font-size: 13px;
	}
	.privacyBlock {
		margin-bottom: 20px;
	}
	.addressBlock .title {
		font-size: 16px;
	}
	.privacyBlock .title {
		font-size: 16px;
	}
	.privacyBlock {
		line-height: 1.2;
		font-size: 14px;
	}
	.privacyBlock label {
		font-size: 16px;
		margin-top: 10px;
	}
	.contact-inner .tell p.num {
		font-size: 36px;
	}
	.confirmBlock ul.submit {
		margin-top: 50px;
		padding-bottom: 2%;
	}
}
@media(max-width:740px) {
	.addressBlock {
		margin-bottom: 15px;
	}
	.addressBlock p {
		margin-bottom: 5px;
	}
	.addressBlock input {
		margin-bottom: 15px;
	}
	.addressBlock .title {
		margin-bottom: 20px;
	}
	.addressBlock span {
		font-size: 12px;
	}
	.contentsBlock .title {
		font-size: 16px;
	}
	.privacyBlock .title {
		margin-bottom: 15px;
	}
}
@media(max-width:499px) {  /* SP */	
	.contact-inner {
		padding: 5% 0 0;
	}
    .contact-title001 {
		font-size: 20px;
        margin-bottom: 8%;
    }
	.contact-txt001 {
		font-size: 15px;
		line-height: 1.4;
        text-align: center;
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.contact-txt001 br {
		display: block;
	}
	.itemBlock {
		font-size: 16px;
	}
	
	.itemBlock p {
		font-size: 16px;
	}
	.itemBlock .title {
		font-size: 16px;
		margin-bottom: 20px;
	}
	.itemBlock select {
		font-size: 13px !important;
	}
	.contentsBlock {
		font-size: 16px;
	}
	.contentsBlock .title {
		font-size: 16px;
	}
	.contentsBlock .title span {
		font-size: 16px;
	}
	.addressBlock .title {
		font-size: 16px;
	}
	.addressBlock span.age {
		display: block;
		font-size: 12px;
	}
	.privacyBlock {
		margin-bottom: 50px;
	}
	.privacyBlock .title {
		font-size: 16px;
	}
	.addressBlock p {
		font-size: 16px;
	}
	.itemBlock label p {
		font-size: 16px;
	}
	.privacyBlock p {
		font-size: 16px;
	}
	.privacyBlock label p {
		font-size: 16px;
	}
    .confirmBlock ul.submit li button.confirm{
        padding: 30px 60px;
    }
}
@media(max-width:360px) {
	.contact-inner .tell p.num {
		font-size: 30px;
	}
	.contents01 .titleBlock p.read {
		font-size: 16px;
	}
	.business-service-2x h5 {
		margin: 0 0 10px;
	}
	.business-service-2x p {
		font-size: 10px;
	}
	.contents02 .titleBlock02 p.read {
		font-size: 16px;
	}
	.about-company-left h2.about-copy {
		font-size: 16px;
	}
	.about-company-left h2.recruit-copy {
		font-size: 18px;
	}
}


/*!------------------------------------------------------------------
[Contact ]   確認画面
*/
.contact-inner .conbox-head {
	width: 100%;
	margin: 20px auto 80px;
	text-align: center;
}
.contact-inner .conbox-head p {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.8;
    color: #000;
	text-align: center;
	margin: 0;
}
@media (max-width: 1200px) {
	.contact-inner .conbox-head {
		width: 100%;
	}
	.contact-inner .conbox-head p {
		font-size: 14px;
	}
}
@media (max-width: 499px){
	.contact-inner .conbox-head p {
		font-size: 15px;
		text-align: left;
	}
	.contact-inner .conbox-head p br {
		display: none;
	}
}

.contact-inner .conbox01 {
	width: 100%;
	margin: 0 auto;
	font-size: 1.8rem;
}


/* --------------------------------------
	conbox01 table
----------------------------------------*/
.contact-inner .conbox01 table {
	width: 100%;
	font-size: 18px;
	border-collapse: collapse;
	margin-bottom: 50px;
}
.contact-inner .conbox01 table th {
	width: 35%;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCC;
	font-size:16px;
	font-weight: bold;
	vertical-align: top;
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: left;
    color: #000;
}
.contact-inner .conbox01 table th.pt20 {
	padding-top: 20px;
}
.contact-inner .conbox01 table th span {
	margin-left: 25px;
}
.contact-inner .conbox01 table th span.ml0 {
	margin-left: 0px;
}
.contact-inner .conbox01 table th span span{
	margin-left: 0px;
}
.contact-inner .conbox01 table td {
	width: 60%;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCC;
	font-size:16px;
	font-weight: 400;
	line-height: 1.5;
	vertical-align: top;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 30px;
	text-align: left;
    color: #000;
}
.contact-inner .conbox01 table th.conend,
.contact-inner .conbox01 table td.conend {
	padding-top: 50px;
	border-bottom-style: none;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
}
.contact-inner .conbox01 table td span {
	font-size: 12pt;
}
.contact-inner .conbox01 table td.pt20 {
	padding-top: 20px;
}
.contact-inner .conbox01 table td.pb20 {
	padding-bottom: 20px;
}
.contact-inner .conbox01 table td.pt30 {
	padding-top: 30px;
}
.contact-inner .conbox01 table td.pt35 {
	padding-top: 35px;
}
.contact-inner .conbox01 table td.pt45 {
	padding-top: 45px;
}


/* ------------------------------------------------------------------
Second Contact エラー・確認画面
------------------------------------------------------------------- */
#formWrap {
    width: 100%;
    margin: 0 auto;
    color: #000;
    line-height: 1.4;
    font-size: 16px;
}
#formWrap h4 {
    width: 100%;
    margin: 0 auto 5%;
    color: #000;
    line-height: 1.4;
    font-size: 16px;
}
@media (max-width: 430px) {
    #formWrap h4 {
        margin: 20% auto;
        font-size: 16px;
        text-align: left;
    }
}
  
p.error_messe {
    margin: 15px 0;
    color: red;
}
@media (max-width: 430px) {
    p.error_messe {
        text-align: left;
    }
}
  
 #formWrap input.backto {
    display: block;
    width: 300px;
    text-decoration: none;
    margin: 0 auto;
    padding: 20px;
    font-size: 16px;
    text-align: center;
    background-color: #CCC;
    color: #000;
    border: none;
    transition: all 0.3s ease;
}
 @media (max-width: 430px) {
    #formWrap input.backto {
      width: 200px;
      padding: 15px 0;
    }
}
  
#formWrap input.backto:hover {
    background-color: #000;
    color: #FFF;
    cursor: pointer;
}
  
#formWrap h3 {
    width: 100%;
    margin: 0 auto 8%;
    color: #000;
    line-height: 1.4;
    font-size: 24px;
    text-align: center;
}
#formWrap .textcenter {
    margin: 0 auto 5%;
    line-height: 1.5;
    text-align: center;
}
  
table.formTable {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
}
  
table.formTable td,
table.formTable th {
    border-bottom: 1px solid #ccc;
    padding: 20px;
}
  
table.formTable th {
    width: 30%;
    font-weight: bold;
    text-align: left;
}
  
#formWrap .textcenter .submitmail {
    display: inline-block;
    width: 300px;
    margin: 30px auto;
    padding: 20px;
	background: #2E9A2A;
    border: none;
    color: #FFF;
    text-align: center;
    font-weight: bold;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
#formWrap .textcenter .submitmail:hover {
    background: #A6162C;
    color: #FFF;
}
@media (max-width: 430px) {
    #formWrap .textcenter .submitmail {
      width: 200px;
      padding: 0;
    }
}

/*簡易版レスポンシブ用CS*/
@media screen and (max-width: 990px) {
    #formWrap {
      width: 95%;
      margin: 0 auto;
    }
    table.formTable th,
    table.formTable td {
      width: auto;
      display: block;
    }
    table.formTable th {
      margin-top: 5px;
      border-bottom: 0;
      padding: 20px 20px 0 20px;
    }
    form input[type=submit],
    form input[type=reset],
    form input[type=button] {
      display: block;
      width: 100%;
      height: 40px;
    }
}
@media screen and (max-width: 990px) and (max-width: 430px) {
    form input[type=submit],
    form input[type=reset],
    form input[type=button] {
         height: 50px;
    }
}


/* ------------------------------------------------------------------
Second Contact 完了画面
------------------------------------------------------------------- */
.contactfin-title-box {
    padding: 5% 0;
    text-align: center;
}
.contacts-txt-complete {
    padding: 0 0 50px;
    font-size: 16px;
    letter-spacing: 0;
}
@media (max-width: 430px) {
    .contacts-txt-complete {
      text-align: left;
    }
}
.backtotop {
    width: 240px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    border: none;
    background: #CCC;
    border: none;
    transition: all 0.3s ease;
}
.backtotop a {
    color: #000;
}
.backtotop:hover {
    background-color: #000;
    cursor: pointer;
}
.backtotop:hover a {
    color: #FFF;
}


/* ------------------------------------------------------------------
Second Privacy Policy
------------------------------------------------------------------- */
.privacyBlock iframe {
    width: 100%;
    height: 250px;
    margin: 0 0 10px;
    border-width: 0px;
    border-radius: 0.25rem;
    overflow: hidden;
}

.privacy-title-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background-color: #F0F0F0;
}
.privacy-inner-title {
    display: block;
    font-size: 2.4rem;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    line-height: 1.0;
    color: #000;
    text-align: center;
    margin: 0;
    padding: 0;
}
.privacy-inner-title span {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Noto Sans JP', sans-serif;
    padding: 10px 0 0;
}
.privacy-inner-section {
    position: relative;
    display: block;
    width: 100%;
    padding: 0 40px 0 50px;
    margin: 0;
    background-color: #F0F0F0;
}
.privacy-inner {
    margin: 0;
    padding: 0;
    text-align: left;
}
.privacy-title-text {
    font-size: 1.6rem;
    padding: 0 0 30px;
}
.privacy-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.0;
    color: #000;
    margin: 0;
    padding: 0 0 15px;
}
.privacy-title-right {
    font-size: 1.5rem;
    font-weight: 400;
    color: #000;
	text-align: right;
    margin: 0;
    padding: 0;
}
.privacy-txt {
    font-size: 1.5rem;
    font-weight: 400;
    color: #000;
    margin: 0;
    padding: 0 0 40px;
}
.privacy-txt02 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0;
    color: #000;
    margin: 0;
    padding: 0 0 20px;
}
.privacy-txt-last {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0;
    color: #000;
    margin: 0;
    padding: 0 0 50px;
}
dl.item-privacy-lines {
    width: 100%;
    padding: 0 0 0 20px;
    margin: 0 0 50px;
}
dl.item-privacy-lines dt {
    float: left;
    width: 30px;
    font-size: 1.6rem;
    color: #000;
    text-align: left;
    line-height: 1.4;
    padding: 4px 0;
    margin: 0;
}
dl.item-privacy-lines dd {
    margin-left: 30px;
    font-size: 1.6rem;
    font-weight: 400;
    color: #000;
    text-align: left;
    line-height: 1.4;
    letter-spacing: 1px;
    padding: 4px 0;
}

@media (max-width: 499px){
    .privacy-inner-section {
        padding: 0 25px 0 30px;
    }
	.privacy-title {
		font-size: 1.5rem;
		padding: 0 0 30px;
	}
	.privacy-subtitle {
		font-size: 1.6rem;
		line-height: 1.4;
	}
	.privacy-txt {
		font-size: 1.5rem;
	}
}


