@charset "utf-8";



/* ===============================
setting fonts color
=============================== */
html {
    font-size: 62.5%;
}
:root {
    --black: #47474B;
    --main: #22C28D;
    --sub: #F7FFFD;
    --back: #FBFBFB;
}
/* 呼び出し方 background-color: var(--yellow); */


body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li,
a {
  color: var(--black);
  font-family: "Zen Maru Gothic", sans-serif;
}

.tab {
    display: none;
}
.back {
    background-color: var(--back);
}
.main_h2 {
    text-align: center;
    font-weight: bold;
    font-size: 3rem;
    margin-bottom: 45px;
}

/* ===============================
setting move
=============================== */
.js {
    opacity: 0;
}
.js.inview {
    animation-duration: .5s;
    animation-timing-function: ease-in-out;
    animation-delay: .4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}
.js.fade-up.inview {
    animation-name: fade-up;
}
.js.fade-left.inview {
    animation-name: fade-left;
}
.js.fade-right.inview {
    animation-name: fade-right;
}
@keyframes fade-up {
    0% {
        transform: translateY(40px);
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}
@keyframes fade-left {
    0% {
        transform: translateX(-40px);
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}
@keyframes fade-right {
    0% {
        transform: translateX(40px);
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}


/* ===============================
setting 
=============================== */
.container1200 {
    width: 1200px;
    max-width: 95%;
    margin: 0 auto;
}
.container {
    width: 1000px;
    max-width: 90%;
    margin: 0 auto;
}
.sp {
    display: none;
}
.gtb {
    display: none;
}
.tbf {
    display: none;
}
#body {
    overflow-x: hidden;
    position: relative;
}
.font14 {
    font-size: 1.4rem;
}
.font15 {
    font-size: 1.5rem;
}
.font16 {
    font-size: 1.6rem;
}
.font17 {
    font-size: 1.7rem;
}
.font18 {
    font-size: 1.8rem;
}
.font19 {
    font-size: 1.9rem;
}
.font20 {
    font-size: 2rem;
}
.font21 {
    font-size: 2.1rem;
}
.font22 {
    font-size: 2.2rem;
}
.font23 {
    font-size: 2.3rem;
}
.font24 {
    font-size: 2.4rem;
}
.font25 {
    font-size: 2.5rem;
}
.font26 {
    font-size: 2.6rem;
}
.font27 {
    font-size: 2.7rem;
}
.font28 {
    font-size: 2.8rem;
}
/* map */
.map_wrap {
    max-width: 50%;
}
.map {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 75%;
}
.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/* ===============================
header pc
=============================== */
.header {
    background-color: #fff;
    width: 100%;
}
.header_innner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}
.h1 {
    width: 230px;
    transition: 0.4s;
}
@media (hover: hover) {
    .header_nav ul a:hover {
        color: var(--main);
        transition: 0.4s;
    }
    .header_nav ul a.now:hover {
        color: #333;
        transition: 0.4s;
    }
    .btn:hover {
        background-color: #333;
        transition: 0.4s;
    }
    .h1:hover {
        transition: 0.4s;
        opacity: 0.5;
    }

    .dropdown__list a:hover {
        color: var(--main);
        transition: 0.4s;
    }
    .gnavi__list a:hover {
        color: var(--main);
        transition: 0.4s;
    }
    .header_top_menu a:hover {
        color: var(--main);
        transition: 0.4s;
    }
    .header_fax a:hover {
        transition: 0.4s;
        opacity: 0.7;
    }
}
.header_top_menu ul{
    display: flex;
}
.header_top_menu a {
    font-size: 1.8rem;
    padding: 0 25px;
    font-weight: bold;
    transition: 0.4s;
}
.gnavi__lists {
    display: flex;
    gap: 0 30px;
    align-items: center;
    height: 100px;
}
.gnavi__list:not(:first-child)::before {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
}

.gnavi__list a {
    font-size: 1.8rem;
    font-weight: bold;
}
.gnav_a {
    padding: 37px 0;
}
.dropdown__lists {
    display: none;
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    background-color: var(--gray);
    padding: 40px 0;
}
.gnavi__list:hover .dropdown__lists {
    display: block;/*Gナビメニューにホバーしたら表示*/
    background-color: #fff;
}
.dropdown__lists_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    width: 100%;
}
.dropdown__list {
    transition: all .3s;
    position: relative;
    width: calc(50% - 30px);
    border-bottom: 1px solid var(--main);
    display: flex;
    justify-content: space-between;
}
.dropdown__list img {
    width: 20px;
}
.dropdown__list a {
    color: #333;
    font-weight: bold;
    padding-bottom: 20px;
}
.dropdown__lists_innner {
    display: flex;
    gap: 0 80px;
    justify-content: center;
}
.dropdown__lists_innner p {
    font-size: 3.2rem;
    font-weight: bold;
}
.dropdown__list span {
    color: var(--main);
    font-size: 1.2rem;
}
/* クラスが付いた時のスタイル */
#mainHeader.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,.2);
    z-index: 1000;
  }
  .top_contact.contact_fixed {
    transition: box-shadow 0.5s ease, 0.5s ease, transform 0.5s ease;
  }
.top_contact.contact_fixed.scrolled {
    display: block;
    position: fixed;
    right: 0;
    top: 40%;
    z-index: 1000;
    width: 100px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    background: #fff;
    transform: translateY(0);
    animation: fadeIn 0.5s ease;
}
.top_contact.contact_fixed.scrolled .c_left {
    width: 100%;
}
.top_contact.contact_fixed.scrolled .c_right {
    width: 100%;
}
.top_contact.contact_fixed.scrolled .c_left p.en, .top_contact.contact_fixed.scrolled .c_right p.text {
    display: none;
}

/* ===============================
CTA PC
=============================== */
.top_contact {
    display: flex;
}
.cta {
    background-color: var(--sub);
    padding: 60px 0;
}
.cta .main_h2 {
    margin-bottom: 00px;
}
.cta_text {
    text-align: center;
    margin: 5px auto 45px;
}
.cta .c_left p, .cta .c_right p {
    font-size: 1.6rem;
}
.c_right p.cta_mail {
    font-size: 2rem;
}
.cta .c_left p.en {
    font-size: 2.8rem;
}
.c_left {
    width: 50%;
    background: rgba(52, 180, 135, 75%);
    padding: 20px;
}
.c_right {
    width: 50%;
    background: rgba(91, 193, 219, 75%);
    padding: 20px;
}
.c_left p, .c_right p {
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
}
.c_left img {
    width: 30px;
    text-align: center;
    margin: 10px auto;
}
.c_left p.en {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 2.4rem;
}
.c_right img {
    width: 60px;
    text-align: center;
    margin: 10px auto;
}
.sp_fix {
    display: none;
}
/* ===============================
tour　PC
=============================== */
.tour {
    padding: 80px 0;
    background-color: var(--back);
}
.tour .main_h2 {
    text-align: left;
    display: inline-block;
}
.tour_text {
    margin-bottom: 45px;
    line-height: 2.8rem;
}
.slider-thumbnail .swiper-slide {
    opacity: .3;
    transition: opacity .5s;
    width: calc(100% / 4);
    padding: 0 5px;
}
.slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
}
.tour_img_wrap {
    margin-bottom: 30px;
}
.swiper.slider {
    width: 100%;
    max-width: 735px;
}
.swiper-slide img {
    height: auto;
    width: 100%;
}
.swiper-slide img:hover {
    cursor: pointer;
}

/* ===============================
access PC
=============================== */
.access {
    padding: 80px 0;
}
.access_flex {
    display: flex;
    justify-content: center;
    gap: 0 30px;
    max-width: 700px;
    margin: 0 auto;
    align-items: center;
}
.access_flex .left {
    width: 200px;
}
.access_flex .right {
    width: calc(100% - 220px)
}
.access .font20 {
    font-weight: bold;
}
.access .ma {
    margin-bottom: 10px;
}
.map {
    position: relative;
    width: 100%;
    padding-top: 26.25%;
    height: 0;
}
.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* ===============================
news PC
=============================== */
.news {
    padding: 80px 0;
}
.news_box {
    border-bottom: 1px solid var(--black);
}
.news_box a {
    padding: 20px 10px;
}
.news_box a:hover {
    background-color: var(--back);
}
/* ===============================
footer PC
=============================== */
footer {
    background-color: var(--sub);
    padding: 60px 0;
}
footer h1 {
    width: 240px;
    margin-bottom: 30px;
}
footer h1:hover {
    opacity: 0.6;
}
footer ul {
    display: flex;
    gap: 0 5%;
}
footer ul li {
    width: 20%;
}
footer ul li a.g_link {
    color: var(--main);
    font-size: 1.8rem;
    font-weight: bold;
}
footer ul li a {
    margin-bottom: 5px;
}
footer ul li a:hover {
    text-decoration: underline;
}
/* ===============================
tablet
=============================== */
@media screen and (max-width:1000px) {
    .gnavi__list a {
        font-size: 1.4rem;
        font-weight: bold;
    }
    .gnavi__lists {
        gap: 0 20px;
    }
    .header_fax a {
        width: 130px;
    }
    .header_fax a p {
        font-size: 1.4rem;
    }
    .tab {
        display: block;
    }
}


/* ===============================
SP
=============================== */
@media screen and (max-width:769px) {
    .sp {
        display: block;
    }
    .pc {
        display: none;
    }
    /* body.open {
        overflow: hidden;
    } */
    .top_h2 span {
        width: 20px;
        top: -5px;
    }
    .top_h2 p {
        font-size: 2.1rem;
    }
    .top_h2 p.en {
        font-size: 1.3rem;
        padding-left: 3px;
    }
    .font14 {
        font-size: 1.3rem;
    }
    .font15 {
        font-size: 1.4rem;
    }
    .font16 {
        font-size: 1.5rem;
    }
    .font17 {
        font-size: 1.5rem;
    }
    .font18 {
        font-size: 1.6rem;
    }
    .font19 {
        font-size: 1.6rem;
    }
    .font20 {
        font-size: 1.8rem;
    }
    .font21 {
        font-size: 1.8rem;
    }
    .font22 {
        font-size: 1.8rem;
    }
    .font23 {
        font-size: 1.8rem;
    }
    .font24 {
        font-size: 2rem;
    }
    .font25 {
        font-size: 2rem;
    }
    .font26 {
        font-size: 2.2rem;
    }
    .font27 {
        font-size: 2.3rem;
    }
    .font28 {
        font-size: 2.4rem;
    }


    /* ===============================
    header sp
    =============================== */
    .header {
        box-shadow: inset 3px 0px 4px rgba(0, 0, 0, 0.2);
        height: 70px;
    }
    .header .container1200 {
        max-width: 100%;
    }
    .h1 {
        top:-5px;
        left: 20px;
        position: relative;
        width: 120px;
    }
    .header_innner {
        display: block;
    }
    .hamburger {
        width: 50px;
        height: 50px;
        position: fixed;
        cursor: pointer;
        top:3px;
        right: 20px;
        z-index: 1000;
    }
    .hamburger_bar {
        width: 60%;
        height: 2px;
        background: var(--main);
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        transition: .5s;
    }
    .hamburger_bar:first-child {
        top: 16px;
    }
    .hamburger_bar:nth-child(2) {
        top: 26px;
    }
    .hamburger_bar:last-child {
        top: 36px;
    }
    .hamburger.open .hamburger_bar:first-child {
        transform: translateX(-50%) translateY(-50%) rotate(45deg);
        top: 25px;
    } 
    .hamburger.open .hamburger_bar:nth-child(2) {
        display: none;
    }
    .hamburger.open .hamburger_bar:last-child {
        transform: translateX(-50%) translateY(-50%) rotate(-45deg);
        top: 25px;
    }
    .header_left {
        height: 100vh;
        background-color: var(--gray);
        display: block;
        position: fixed;
        top: 60px;
        width: 100%;
        right: -100%;
        transition: 0.4s;
        overflow-y: scroll;
        padding-bottom: 50px;
        background-color: #fff;
        height: 100vh;
        z-index: 1000;
    }
    .header_left.open {
        right: 0px;
        transition: 0.4s;
    }
    .header_nav ul {
        display: block;
        padding: 40px 20px;
        margin-top: 45px;
    }
    .header_nav ul a {
        color: #fff;
        padding: 10px;
        margin-bottom: 20px;
    }
    .header_nav ul a.now {
        color: #fff;
    }
    .btn {
        background-color: #333;
        width: 260px;
        margin: 0 auto;
    }
    .gnavi__lists { 
        display: block;
        padding: 0 10px;
    }
    .gtb {
        display: none;
    }
    .header_fax {
        width: 50%;
    }
    .header_fax a {
        width: 100%;
    }
    .dropdown__lists {
        display: block;
        position: relative;
        top: 0;
        padding: 0;
    }
    .dropdown__lists_wrap {
        gap: 0px 15px;
        width: 100%;
        justify-content: space-between;
    }
    .dropdown__list {
        transition: all .3s;
        position: relative;
        width: calc(50% - 15px);
    }
    .dropdown__list a {
        padding-bottom: 5px;
    }
    .gnavi__list {
        margin-top: 30px;
    }
    .gnav_a {
        padding-bottom: 0 !important;
        color: var(--main);
        font-size: 2rem !important;;
    }
    .headr_contact {
        margin-top: 50px;
    }
    .dropdown__list {
        margin-bottom: 20px;
    }
    .gnavi__list a {
        margin-bottom: 20px;
        padding-top: 0;
    }
    header h1 {
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 1000;
        width: 200px;
    }
    .h1 {
        background-color: #fff;
        position: fixed;
        top: 0px;
        left: 0px;
        z-index: 1000;
        width: 100%;
        height: 60px;
    }

    .cta {
        padding: 40px 0;
    }
    .cta_text {
        margin-top: 10px;
    }
    .cta .c_left p.en {
        font-size: 1.7rem;
    }
    .c_right p.cta_mail {
        font-size: 1.5rem;
    }
    .sp_fix {
        display: flex;
        position: fixed;
        right: 0;
        bottom: 0;
        width: 100%;
        z-index: 10000;
    }
    .sp_fix .c_right img {
        margin: 10px auto;
        width: 40px;
    }
    .sp_fix .c_left img {
        width: 20px;
        margin: 5px auto;
    }
    .sp_fix .c_left p, .sp_fix .c_right p {
        font-size: 1.4rem;
    }
    /* ===============================
    tour　SP
    =============================== */
    .tour {
        padding: 40px 0;
    }
    .tour .main_h2 {
        text-align: left;
        display: inline-block;
    }
    .tour_text {
        margin-bottom: 30px;
        font-size: 1.5rem;
    }
    .slider-thumbnail .swiper-slide {
        padding: 0;
    }
    .tour_img_wrap {
        margin-bottom: 10px;
    }

    /* ===============================
    access SP
    =============================== */
    .access {
        padding: 40px 0;
    }
    .access_flex {
        display: block;
    }
    .access_flex .left {
        width: 150px;
        margin: 0 auto 20px;
    }
    .access_flex .right {
        width: 250px;
        margin: 0 auto;
    }
    .map {
        padding-top: 40.25%;
    }
    /* ===============================
    news SP
    =============================== */
    .news {
        padding: 40px 0;
    }
    /* ===============================
    footer SP
    =============================== */
    footer {
        padding: 40px 0 120px;
    }
    footer h1 {
        width: 200px;
    }
    footer ul {
        display: block;
    }
    footer ul li {
        width: 100%;
        margin-bottom: 20px;
    }

}


@media screen and (max-width:400px) {
    .c_right img {
        margin: 36px auto 10px;
    }
}