@charset "UTF-8";

/* default
----------------------------*/
body {
    background-color: #fff;
    box-sizing: border-box;
    color: #735E59;
    font-size: 1rem;
    -webkit-text-size-adjust: 100%;
    font-family: "source-han-serif-jp-subset", 'Arial', sans-serif;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100vw;
}
body * {
    box-sizing: inherit;
}
ul {
    list-style: none;
}
a {
    color: #735E59;
    text-decoration: none;
}
a:hover, .active {
    text-decoration: underline;
}
a:active, a:focus, input:active, input:focus {
    outline: 0;
}
img {
    width: 100%;
    max-width: 100%;
    height: auto;
}
span {
    display: inline-block;
}
.bottom-space {
    margin-bottom: 1rem;
}

/* section-title
-------------------------*/
.section-title {
    font-weight: normal;
    line-height: 1;
    margin-bottom: 2rem;
}
.section-title .ja {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1rem;
}
.section-title .en {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.1rem;
}

/* width
-------------------------*/
.container {
    width: 95%;
    margin: 0 auto;
}

/* animation and transition styles
-----------------------------------*/
.fade-in {
    opacity: 0;
    transition: opacity 2.5s ease-in-out;
}
.appear {
    opacity: 1;
}
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* header
-------------------------*/
.header-layout{
    align-items: center;
    display: flex;
    height: 100px;
    justify-content: space-between;
    text-align: center;
    position: relative;
}
.header-logo-title{
    align-items: center;
    border-bottom: solid 2px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.header-title{
    display: none;
}

/* hamburger-menu
----------------------------*/
.hamburger-menu {
    border-radius: 5px;
	background-color: #4CAF50;;
	cursor: pointer;
    height:50px;
    margin-right: 1rem;
    position: relative;
    width: 50px;
}
.hamburger-menu span{
    display: inline-block;
    transition: all .2s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
	background: #fff;
    width: 45%;
}
/* ハンバーガーメニュークリック後のスタイル */
.hamburger-menu span:nth-of-type(1) {
	top:13px;	
}
.hamburger-menu span:nth-of-type(2) {
	top:19px;
}
.hamburger-menu span:nth-of-type(3) {
	top:25px;
}
.hamburger-menu span:nth-of-type(3)::after {
	content:"Menu";  /*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top:5px;
	left:-2px;
	color: #fff;
	font-size: 0.5rem;
	text-transform: uppercase;
}
/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
.hamburger-menu.active span:nth-of-type(1) {
    top: 14px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
.hamburger-menu.active span:nth-of-type(2) {
	opacity: 0;
}
.hamburger-menu.active span:nth-of-type(3){
    top: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
.hamburger-menu.active span:nth-of-type(3)::after {
	content:"Close";  /*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
	top:5px;
	left:4px;
}
.menu-icon {
    display: none;
}

/* menu
----------------------------*/
.menu {
    background-color: rgb(84, 192, 91, 0.85);
    position: fixed;
    top: 90px;
    right: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    transition: ease .4s;
    z-index: 9999;
}
.menu.active {
    transform: translateX(0);
    text-decoration: none;
}
.menu-list {
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: scroll;
    height: 100vh;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.menu-list::-webkit-scrollbar{
    display: none;
}
.menu-list::-webkit-scrollbar{
    display: none;
}
.menu-list_item {
    margin: 4rem;
}
.menu-list_item:first-child {
    border-top: solid 1px #fff;
}
.menu-list_item .ja {
    display: block; 
    color: #fff;
    font-size: 1.1rem; 
    font-weight: 600;
    letter-spacing: 0.15rem;
}
.menu-list_item .en {
    display: block;
    color: #fff;
    font-size: 0.7rem; 
    font-weight: 600; 
    letter-spacing: 0.15rem;
    padding-top: 0.15rem;
}

/* main visual 
----------------------------------*/
#main-visual {
    display: flex;
    height: 300px;
    margin-top: 0.7rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.main-visual-Title {
    font-size: 0.6rem;
    font-weight: 700;
    writing-mode: vertical-rl;
    letter-spacing: 0.2rem;
    padding-left: 0.5rem;
}
.main-visual_imgList {
    width: 100%;
    position: absolute;
    top: 0;
    left: 2rem;
    padding-right: 3rem;
}
.main-visual_imgList ul {
    position: relative;
}
.main-visual_imgList li {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.main-visual_imgList li img {
    opacity: 0.95; 
    max-width: 900px;
}
.main-copy {
    color: #fff;
    font-size: 0.8rem; 
    left: 3rem; 
    letter-spacing: 0.4rem;
    line-height: 1.5rem;
    position: absolute;
    transform: translateY(9rem); 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
}

/* about 
------------------------------*/
#about {
    background-image: url(../img/img06.jpeg);
    background-size: cover;
    text-align: center;
    width: 100%;
}
.about {
    background-color: rgb(255, 255, 255, 0.5);
    font-size: 70%;
    padding: 6rem;
    width: 100%;
}

/* service 
-----------------------------*/
#service {
    text-align: center;
    margin: 4rem auto;
}
.divider-line {
    height: 2px;
    background-color: #735E59;
    margin: 0 auto;
}
.service-intro {
    margin-top: 3rem;
    font-size: 0.9rem;
}
.service-list {
    margin: 3rem auto;
    text-align: center;
}
.service-listItem {
    display: block;
}
.service-listTitle {
    background-color: #ECEADA;
    font-size: 0.8rem;
    font-weight: 700;
    margin: 0.9rem auto;
    border-radius: 1.5rem;
    padding: 0.7rem;
    max-width: 60%;
}
.service-listData {
    font-size: 0.9rem;
}
.service-text {
    font-size: 0.7rem;
}

/* philosophy 
---------------------------------*/
#philosophy {
    background-color: #ECEADA;
    width: 100%;
    font-size: 0.8rem;
    padding: 3rem;
}
.philosophy-list {
    margin: 2rem auto;
    width: 90%;
}
.philosophy-row1 {
    display: block;
    align-items: center;
    justify-content: space-between;
}
.philosophy-row2 {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
}
.philosophy-col {
    display: flex;
    flex-direction: column;
    padding-bottom: 1rem;
} 
#philosophy .section-title {
    margin-bottom: 1rem;
}

/* company 
--------------------------------------------*/
#company {
    background-image: url(../img/bg_company.jpeg);
    background-size: cover;
    background-color:rgba(255,255,255,0.3);
    background-blend-mode:lighten;
    padding: 4rem;
}
.company {
    display: flex;
    flex-direction: column;
}
.company-list {
    width: 90%;
    margin: 0 auto;
}
.company-listItem  {
    display: block;
    border-bottom: solid 2px #79624E;
    padding-top: 1.6rem;
}
.company-listTitle {
    letter-spacing: 0.12rem;
    font-weight: 600;
    padding-bottom: 1rem;
}
.company-listData {
    letter-spacing: 0.12rem;
    font-size: 0.85rem; 
}

/* access 
-------------------------------------------------*/
#access {
    background-color: #ECEADA;
    padding: 4rem;
}
.access-inner {
    display: block;
    text-align: center;
    margin: 6rem auto;
}
.access-name {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.35rem;
}
.access-info {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    padding-bottom: 0.9rem;
}
.access-contact {
    align-items: center;
    display: block;
    font-size: 0.9rem;
    margin: 0 auto;
    width: 200px;
}
.access-item {
    margin: 0 auto;
}
.access-address {
    font-size: 0.8rem;
    letter-spacing: 0.15rem;
    padding-bottom: 0.9rem;
}
.access-tel {
    display: flex;
    align-items: center;
    padding: 5px;
    padding-left: 11px;
}
.access-tel a {
    height: 35px;
    width: 35px;
    margin-right: 4px;
}
.access-fax {
    display: flex;
    align-items: center;
    padding: 5px;
}
.access-fax a {
    height: 44px;
    width: 44px;
}
.access-contactNum {
    padding-left: 0.8rem;
}
.access-button a {
    border: 3px solid #4CAF50;
    border-radius: 30px;
    background-color: #fff;
    color: #4CAF50;
    display: inline-block;
    font-size: 0.8rem;
    font-weight: bold;
    margin: 2rem;
    text-decoration: none;
    padding: 8px 20px;
}
.access-button a:hover {
    background-color: #4CAF50;
    color: #fff;
}

/* Top Button
-----------------------------*/
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(255, 165, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    display: none;
    z-index: 1000;
}
.scroll-to-top.show {
    display: block;
}
.scroll-to-top:hover {
    background-color: rgba(255, 165, 0, 0.8);
}

/* footer 
------------------------------*/
#footer {
    min-height: 200px; 
    text-align: center;
    background-image: url(../img/bg_footer_tree.jpg);
    background-color: rgba(255,255,255,0.35);
    background-blend-mode: lighten;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.footer-inner {
    padding-top: 60px; 
    font-size: 0.8rem;
}
.footer-logo {
    width: 60%;
    margin: 0 auto;
}
#footer .footer-tel {
    display: flex;
    align-items: center;
    margin: 0 auto;
    padding-top: 1rem;
    width: 160px;
}
#footer .footer-tel a {
    height: 25px;
    width: 25px;
}
#footer .footer-telNo {
    padding-left: 1rem;
}
#footer .footer-copyright {
    font-size: 0.7rem;
    margin-top: 3rem;
}

/* Recruit section 
------------------------------*/
#recruit {
    text-align: center;
    padding: 50px 0;
}
.recruit-inner {
    margin: auto;
    max-width: 800px;
}
.recruit-details h2 {
    font-size: 1.5rem;
    color: #472e0b;
    margin-top: 1.5rem;
}
.recruit-details p {
    font-size: 1rem;
    margin: 0.5rem 0;
    color: #735e59;
}
.recruit-link a {
    display: inline-block;
    padding: 10px 20px;
    border: 3px solid #4CAF50;
    border-radius: 30px;
    background-color: #fff;
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
    margin: 30px;
}
.recruit-link a:hover {
    background-color: #4CAF50;
    color: #fff;
}


/* responsive 
---------------------------------*/
@media only screen and (min-width: 550px) and (max-width: 812px){
    #main-visual {
        height: calc(100vh - 100px);
    }
    .main-copy {
        transform: translateY(14rem);
    }
}

@media only screen and (min-width: 813px) and (max-width: 1280px){
    /* header 
    ------------------------*/
    .header-layout {
        height: 150px;
        width: 80%;
        margin: 0 auto;
        margin-right: 10rem;
    }
    .header-logo-title {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex: 1;
        border-bottom: solid 2px;
    }
    .header-title {
        display: flex;
        flex-direction: column;
        text-align: right;
    }
    .header-message {
        margin: 0;
        font-size: 0.65rem; 
    }
    .header-address {
        margin: 0;
        font-size: 0.9rem; 
        font-weight: bold; 
        letter-spacing: 0.12rem;
        margin-top: 0.8rem;
    }
    .hamburger-menu {
        display: none;
    }

    /* menu 
    ---------------------------*/
    .menu {
        display: none;
    }
    .header-menu {
        align-items: center; 
        background-color: transparent;
        display: flex;
        flex-direction: column;
        left: 87%;
        transform: translateY(0);
        transition: none;
        position: absolute;
        width: 30%;
    }
    .menu-list {
        width: 50%;
    }
    .menu-icon {
        display: block;
    }
    .menu-list_item:first-child {
        border-top: 0;
    }
    .menu-list_item:last-child {
        margin-bottom: 0;
    }
    .menu-list_item {
        text-align: center;
        margin: 1.6rem 0;
        width: 10rem;
        border-bottom: 0;
    }
    .menu-list_item .ja {
        color: #735E59;
        display: block; 
        font-size: 0.8rem; 
        font-weight: 600;
        letter-spacing: 0.15rem;
    }
    .menu-list_item .en {
        color: #735E59;
        display: block; 
        font-size: 0.6rem; 
        font-weight: 600; 
        letter-spacing: 0.15rem;
        padding-top: 0.15rem;
    }
    .menu-list_item img {
        width: 70%;
    }
    .menu-list_item a:hover {
        color: #4CAF50;
    }

    /* main-visual
    ---------------------------*/
    #main-visual {
        height: calc(100vh - 150px);
        left: 2rem;
        width: 76%;
    }
    .main-visual-Title {
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.3rem;
    }
    .main-copy {
        font-size: 0.9rem;
        transform: translateY(16rem);
        line-height: 1.6rem;
        left: 5rem;
        writing-mode: vertical-rl;
    }

    /* about
    -------------------------*/
    .about {
        width: 40%;
    }

    /* service
    -------------------------*/
    .service-listItem {
        align-items: center;
        display: flex;
        margin: 0 auto;
        width: 50%;
    }
    .service-listTitle {
        margin: 0.8rem;
        width: 40%;
    }
    .divider-line {
        width: 60%;
    }

    /* philosophy
    -------------------------*/
    .philosophy-list {
        width: 85%;
    }
    .philosophy-row1 {
        display: flex;
    }
    .philosophy-row2 {
        align-items: center;
        flex-direction: row;
    }
    .philosophy-text {
        width: 300px;
    }
    .philosophy-img {
        width: 360px;
        height: auto;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }
    /* company 
    -------------------------*/
    #company .section-title {
        margin-left: 4rem;
    }
    .company-list {
        width: 50%;
        margin-right: 5%;
    }
    /* access
    -------------------------*/
    #access .section-title {
        margin-left: 4rem;
    }
    .access-inner {
        display: flex;
        margin: 4rem;
    }
    .access-contact {
        display: flex;
        width: 320px;
    }

    /* footer
    -------------------------*/
    .footer-logo {
        width: 240px;
    }
    .footer-tel {
        margin: 0 auto;
        width: 170px;
    }

    /* background */
    .bg {
        position: fixed;
        top: 0%;
        left: 2rem;
        right: 0;
        width: 100%;
        height: 100vh;
        background-image: url(../img/bg_img.png);
        background-color: rgba(255,255,255,0.35);
        background-position: 110%;
        background-repeat: no-repeat;
        z-index: -1;
        display: block;
    }
}

@media only screen and (min-width: 1280px) {
    /* header 
    ------------------------*/
    .header-layout {
        height: 200px;
        width: 70%;
        margin: 0 auto;
        margin-left: 5rem;
    }
    .header-logo-title {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex: 1;
        border-bottom: solid 2px;
    }
    .header-title {
        display: flex;
        flex-direction: column;
        text-align: right;
    }
    .header-message {
        margin: 0;
        font-size: 0.9rem; 
    }
    .header-address {
        margin: 0;
        font-size: 1.4rem; 
        font-weight: bold; 
        letter-spacing: 0.12rem;
        margin-top: 1rem;
    }
    .hamburger-menu {
        display: none;
    }

    /* menu 
    ---------------------------*/
    .menu {
        display: none;
    }
    .header-menu {
        align-items: center; 
        background-color: transparent;
        display: flex;
        flex-direction: column;
        left: 100%;
        transform: translateY(0); 
        transition: none;
        position: absolute;
        width: 30%;
    }
    .menu-list {
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .menu-icon {
        display: block;
        width: 35%;
    }
    .menu-list_item:first-child {
        border-top: 0;
    }
    .menu-list_item:last-child {
        margin-bottom: 0;
    }
    .menu-list_item {
        text-align: center;
        margin: 6% 0;
        border-bottom: 0;
    }
    .menu-list_item .ja {
        color: #735E59;
        display: block; 
        font-size: 1rem; 
        font-weight: 600;
        letter-spacing: 0.15rem;
    }
    .menu-list_item .en {
        color: #735E59;
        display: block; 
        font-size: 0.8rem; 
        font-weight: 600; 
        letter-spacing: 0.15rem;
        padding-top: 0.15rem;
    }
    .menu-list_item img {
        width: 70%;
    }
    .menu-list_item a:hover {
        color: #4CAF50;
    }

    /* main-visual
    ---------------------------*/
    #main-visual {
        height: calc(100vh - 200px);
        left: 5%;
        width: 76%;
    }
    .main-visual_imgList {
        padding-left: 3rem;
    }
    .main-visual_imgList li img {
        max-width: 90%;
    }
    .main-visual-Title {
        font-size: 1.5rem;
        font-weight: 700;
        letter-spacing: 0.3rem;
    }
    .main-copy {
        font-size: 1.5rem;
        transform: translateY(27rem);
        line-height: 4rem;
        left: 10%;
        writing-mode: vertical-rl;
    }

    /* about
    ----------------------------*/
    #about {
        margin-top: 8rem;
    }
    .about {
        font-size: 0.9rem;
        margin: 0;
        padding-top: 10%;
        padding-bottom: 20%;
        padding-right: 60%;
    }

    /* service
    -------------------------*/
    #service {
        margin: 15rem auto;
    }
    .service-listItem {
        align-items: center;
        display: flex;
        margin: 0 auto;
        padding-left: 4rem;
        width: 50%;
    }
    .service-intro {
        font-size: 1rem;
    }
    .service-listTitle {
        margin: 0.8rem;
        width: 30%;
    }
    .service-text {
        font-size: 0.9rem;
    }
    .divider-line {
        width: 60%;
    }

    /* philosophy
    -------------------------*/
    #philosophy {
        padding: 5rem;
    }
    .philosophy-list {
        width: 60%;
        margin: 5rem auto;
    }
    .philosophy-row1 {
        display: flex;
    }
    .philosophy-row2 {
        align-items: center;
        flex-direction: row;
    }
    .philosophy-text {
        width: 300px;
    }
    .philosophy-img {
        width: 360px;
        height: auto;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    /* company 
    -------------------------*/
    #company {
        padding: 12rem 0;
    }
    #company .section-title {
        margin-left: 4rem;
    }
    .company-list {
        width: 50%;
        margin-right: 5%;
    }

    /* access
    -------------------------*/
    #access .section-title {
        margin-left: 17rem;
    }
    .access-inner {
        display: flex;
        margin: 4rem;
        justify-content: center;
    }
    .access-contact {
        display: flex;
        width: 320px;
    }
    .access-item {
        margin: 0;
        padding-right: 10rem;
    }

    /* footer
    -------------------------*/
    .footer-logo {
        width: 240px;
    }
    .footer-tel {
        margin: 0 auto;
        width: 170px;
    }

    /* background */
    .bg {
        position: fixed;
        top: 0%;
        left: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-image: url(../img/bg_img.png);
        background-position: 110%;
        background-repeat: no-repeat;
        z-index: -1;
        display: block;
    }
}