@charset "utf-8";
/*-------------------
reset css
-------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
body {
line-height: 1.7;
display:grid;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
display: block;
}
ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
content: '';
content: none;
}
a {
margin: 0;
padding: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
*, *::before, *::after {
box-sizing: border-box;
}
/* change colours to suit your needs */
ins {
background-color: #ff9;
color: #000;
text-decoration: none;
}
/* change colours to suit your needs */
mark {
background-color: #ff9;
color: #000;
font-style: italic;
font-weight: bold;
}
del {
text-decoration: line-through;
}
abbr[title], dfn[title] {
border-bottom: 1px dotted;
cursor: help;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
input, select {
vertical-align: middle;
}


/*-------------------

共通CSS

-------------------*/
html, body {
font-size: 16px;
font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
color: #022945;
scroll-behavior: smooth;
}
p, td, th, li {
line-height: 2;
letter-spacing: 1px;
font-size: 16px;
}
*, *:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
img {
max-width: 100%;
height: auto;
vertical-align: bottom;
}
a {
color: #fff;
text-decoration: none;
}
a:hover {
opacity: .8;
}
a:active {
color: #fff;
}
section {
width: 100%;
padding: 80px 0;
}
.inner {
max-width: 1024px;
box-sizing: border-box;
position: relative;
margin: 0 auto;
}
.row {
display: flex;
flex-wrap: wrap;
}
h2 {
font-size: clamp(1.125rem, 1.095rem + 0.13vw, 1.25rem);
text-align: center;    
letter-spacing: 2.5px;
font-weight: bold;
line-height: 1;
}
h3 {
font-size: clamp(1.75rem, 1.34rem + 1.75vw, 3.438rem);
line-height: 1;
font-weight: bold;
margin-bottom: 30px;
}


/*----- Column -----*/
.Column2 {
flex: 0 0 50%;
padding:0 15px;
max-width: 50%;
position: relative;
}
.Column3 {
flex: 0 0 calc(100% / 3);
max-width: calc(100% / 3);
padding: 0 15px;
position: relative;
padding-bottom: 30px;
}
.Column3_1 {
flex: 0 0 33.333%;
max-width: 33.333%;
position: relative;
}
.Column3_2 {
flex: 0 0 66.666%;
max-width: 66.666%;
position: relative;
}


/*-----  Nav  -----*/
#Gnav.container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.gnav__img {
    margin-bottom:75px;
    text-align: center;
}
.gnav__wrap .gnav__item {
    margin-bottom: 60px;
    font-size: 18px;
    font-weight: bold;
}
.gnav__child {
    padding-left: 16px;
}
.gnav__child-list {
    margin-bottom: 20px;
    line-height: 1.5;
}
.gnav__child-list:nth-of-type(1) {
    margin-top: 20px;
}
.gnav__child-list:last-of-type {
    margin-bottom: 0;
}

/*----- Hamburger Menu -----*/
#nav-drawer {
    padding: 30px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: fixed;
    right: 20px;
}
/*チェックボックス等は非表示に*/
.nav-unshown {
    display: none;
}
/*アイコンのスペース*/
#nav-open {
    display: block;
    width: 30px;
    height: 22px;
    position: relative;
}
/*ハンバーガーの形をCSSで表現*/
#nav-open span {
    position: absolute;
    height: 3px;
    width: 30px; 
    border-radius: 3px;
    background: #fff;
    display: block;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}
#nav-open span:nth-child(1) {
    top: 0;
}
#nav-open span:nth-child(2) {
    top: 10px;
}
#nav-open span:nth-child(3) {
    top: 20px;
}
/*メニューの中身*/
.header-logo-menu {
    display: flex;
    display: -moz-flex;
    display: -o-flex;
    display: -webkit-flex;
    display: -ms-flex;
    flex-direction: row;
    -moz-flex-direction: row;
    -o-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    background: #fff;
}
/* ナビ開いてる時のボタン */
#nav-open.active span:nth-child(1) {
    top : 45%;
    left: 0;
    background : #fff;
    -webkit-transform: rotate(315deg);
    -moz-transform   : rotate(315deg);
    transform        : rotate(315deg);
}
#nav-open.active span:nth-child(2),
#nav-open.active span:nth-child(3) {
    top: 45%;
    left: 0;
    background : #fff;
    -webkit-transform: rotate(-315deg);
    -moz-transform   : rotate(-315deg);
    transform        : rotate(-315deg);
}
.active {
    opacity: 1;
    top: 0;
}
.SPnav.active {
    opacity: 1;
    width: 100vw;
    height: 100vh;
}
#nav-open.active {
    opacity: 1;
    z-index: 4;
}
.SPnav {
    position: fixed;
    z-index : 2;
    top  : 0;
    left : 0;
    color: #fff;
    text-align: center;
    width: 100%;
    display: none;
    transition: opacity .6s ease, visibility .6s ease;
    height: 100vh;
}
.SPnavl li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: .4s all;
}
.SPnav li a {
    display: block;
    color: #fff;
    padding: 1.2em 0;
    text-decoration :none;
    line-height: 1.3;
}
.SPnav.active {
    opacity: 0.95;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    display: flex;
    justify-content: center;
    background: #036eb7;
    margin-top: 0;
    padding-top: 30px;
}
.li_wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
/* スマホ向けメニュー */
.SPnav {
    list-style: none;
    margin-top: 60px;
}
.SPnav li, .SPnav li a {
    color: #FFF;
    font-size: clamp(1rem, 0.856rem + 0.62vw, 1.25rem);
}
.SPnav .menu__child-list a {
    font-size: clamp(0.875rem, 0.731rem + 0.62vw, 1.125rem);
}
.SPnav .menu-item img {
    margin-bottom: 20px;
}
@media screen and (min-width:1025px) {
.header-logo-menu {
    display: none;
}
}
@media screen and (max-width:1024px) {
#Gnav {
    display: none!important;
}
}


/******----HEADER-----******/
header {
    grid-row-start: 1;
    grid-row-end: 3;
    grid-column-start: 1;
    grid-column-end: 2;
    position: sticky;
    top: 0;
    height: 100vh;
    width: 200px;
    background: #036eb7;
}
header a {
    color: #fff;
}

/******----FOOTER-----******/
footer {
    background: url("../img/footerbg.jpg");
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
}
.footer_inner {
    position: relative;
    padding: 50px 0 40px;
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
}
.footer_inner img {
    margin: 0 auto 10px;
}
footer  li {
    line-height: 1.8;
    padding: 0 10px;
}
footer p {
    color: #fff;
}
.footer__sv {
    font-size: 13px;
    margin-bottom: 20px;
}
.footer__address {
    margin-bottom: 20px;
}
address {
    color: #fff;
    font-style: normal;
    font-size: 12px;
    margin-bottom: 0;
}


/*-------------------

Top共通

-------------------*/
.fadeIn{
    opacity: 0;
    transition: .8s;
    position: relative;
    top: 80px; 
}
.active {
    opacity: 1; 
    top: 0;
}
.l-in {
    opacity: 0;
    transition: .8s;
    position: relative;
    left: -10vw;
}
.active-l {
    opacity: 1;
    left: 0;
}
.r-in {
    opacity: 0;
    transition: .8s;
    position: relative;
    right: -10vw;
}
.active-r {
    opacity: 1;
    right: 0;
}
.for-sp {
    display: none;
}


/******----MAIN----******/
main{
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 2;
    grid-column-end: 3;
    overflow-x: hidden;
    overflow-y: hidden;
}
#MAIN {
    height: 100vh;
    position: relative;
    width: calc(100vw - 200px);
}
#MAIN .slider {
    background-size: cover;
}
#MAIN .slide1 {
    background: url(../img/slider1.jpg) center no-repeat;
    background-size: cover;
    height: 100vh;
}
#MAIN .slide2 {
    background: url(../img/slider2.jpg)  center no-repeat;
    background-size: cover;
    height: 100vh;
}
#MAIN .slide3 {
    background: url(../img/slider3.jpg) center no-repeat;
    background-size: cover;
    height: 100vh;
}
.main-inner {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 40%;
    margin: 0 auto;
    color: #fff;
}
.en {
    font-size: clamp(1.125rem, 0.943rem + 0.78vw, 1.875rem);
    font-weight: 500;
    text-shadow: 0px 0px 20px rgb(0,0,0,.3);
    font-family: "Roboto", sans-serif;
}
.ja {
    font-size: clamp(2.25rem, 1.795rem + 1.94vw, 4.125rem);
    text-shadow: 0px 0px 20px rgb(0,0,0,.3);
    font-weight: bold;
}
.h2-en {
    position: relative;
    line-height: 1;
    font-size: clamp(2.813rem, 2.433rem + 1.62vw, 4.375rem);
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    text-align: center;
    margin-bottom: 60px;
}
.h2-en::before {
    background-color: #036eb7;
    bottom: -30px;
    content: "";
    height: 5px;
    left: 50%; /* 線の中央寄せ */
    position: absolute;
    transform: translateX(-50%);
    width: 70px;
}
.heading__wrap {
    margin-bottom: 60px;
}


/******----GREETING----******/
#GREETING {
    background: #f2f2f2;
}
.greeting__wrap {
    display: flex;
    gap: 60px;
    align-items: center;
    margin: 0 auto;
    width: fit-content;
}
.greeting__img {
    font-size: unset;
}
.greeting__text {
    max-width: 640px;
}


/******----SERVICE----******/
#SERVICE {
    background: #f2f2f2;
}
.sv .Column2:first-child {
    padding: 0;
}
.sv.row {
    margin: 0 0 110px;
    align-items: center;
}
.sv.row:last-of-type {
    margin: 0 0 30px;
}
.sv.row .Column2:nth-child(2) {
    padding: 0 110px;
}
.r-sv.row .Column2:first-child {
    padding: 0 110px;
}
.r-sv.row .Column2:nth-child(2) {
    padding: 0;
}
.sv-img {
    background: #99b8d2;
    padding: 20px 0;
    display: inline-table;
}
.sv-img img,.r-sv.row .sv-img img{
    max-width: 105%;
}
.r-sv.row .sv-img img{
    float: right;
}
.sv-intro {
    width: 80%;
}
.sv-subtitle {
    font-size: 25px;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
}
.sv-number {
    font-size: clamp(2.375rem, 2.193rem + 0.78vw, 3.125rem);
    color: #036eb7;
    font-weight: bold;
    margin-right: 20px;
}

/******----COMPANY----******/
.com-detail__wrap {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
}
.com-detail__title {
    width: 25%;
    padding: 20px;
    border-bottom: 1px solid #036eb7;
}
.com-detail__text {
    width: 75%;
    padding: 20px;
    border-bottom: 1px solid #ccc;
}
.com-detail__text a {
	color: #022945;
}
/******----MAP----******/
iframe {
    vertical-align: bottom;
}