@charset "utf-8";

body::after {
    content: "";
    display: block;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    position: fixed;
    top: 57%;
    left: 4%;
    background-image: radial-gradient(circle, #1C92B2 -180%, /* 中心 (0%): 濃い色（不透明） */ transparent 70% /* 外側 (100%): 完全に透明 */);
    z-index: -1;
}

body::before {
    content: "";
    display: block;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    position: fixed;
    left: 7%;
    background-image: radial-gradient(circle, #E7C438 -120%, /* 中心 (0%): 濃い色（不透明） */ transparent 70% /* 外側 (100%): 完全に透明 */);
    z-index: -1;
    top: 78%;
}

/**********/
/* HEADER */
/**********/

header {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    margin: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, .7);
    backdrop-filter: blur(4px);
}

/* HEADER PC */

.header-pc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.25rem;
    padding-bottom: 1.25rem;
}

@media screen and (max-width: 1280px) {
        .header-pc {
        display: none;
    }
}

.header-pc .logp-main {
    font-size: 1.25rem;
}

.header-pc .logp-main img {
    width: 2rem;
    margin-right: 0.5rem;
}

.header-pc .logp-main h1 {
    font-weight: 600;
    letter-spacing: 0.1em;
}

.menu-pc {
    display: flex;
    align-items: center;
    justify-content: right;
    width: 70%;
}

.menu-pc li {
    margin-right: 5rem;
}

.menu-pc li:last-of-type {
    margin-right: 0;
}

header li .menu-pc_item {
    font-size: 0.88rem;
    font-weight: bold;
}

.menu-pc_icon-box {
    display: flex;
    align-items: center;
}

.menu-pc_icon-box li {
    display: flex;
    align-items: center;
}

.menu-pc_icon-box .icon-item_01 {
    border: 2.5px solid #1C92B2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.55rem;
    width: 1.55rem;
    border-radius: 0.55rem;
    margin-right: 1rem;
}

.icon-item_01 .icon-phone {
    width: 1.1rem;
    fill: #1C92B2;
    display: block;
}

.menu-pc_icon-box .menu-pc_item {
    font-size: 2.12rem;
    color: #1C92B2;
}

.menu-pc_icon-box .icon-item_01:hover {
    border: 2.5px solid #E7C438;
    transition: .5s;
}

header li .menu-pc_item:hover,
.icon-item_01:hover .icon-phone,
.menu-pc_icon-box .menu-pc_item:hover {
    color: #E7C438;
    fill: #E7C438;
    transition: .5s;
}


/* HEADER SP */

#header-menu-sp {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 80%;
    max-width: 20rem;
    background-color: #fff;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 200;
    overflow-y: auto;
    padding: 5%;
}

@media screen and (max-width: 1280px) {
        .header-sp {
        padding: 1.88rem 3.13rem;
    }
}

@media screen and (max-width: 414px) {
        .header-sp {
        padding: 1.88rem 1.88rem;
        max-width: 18.12rem;
    }
}

#header-menu-sp img {
    width: 1.88rem;
    margin-right: 0.6rem;
}

#header-menu-sp.open {
    transform: translateX(0);
}

.logo-sp img {
    width: 1.88rem;
    margin-right: 0.5rem;
}

#header-menu-sp .logo-flex {
    margin-bottom: 3.13rem;
}

@media screen and (max-width: 1280px) {
        .header-pc {
        display: none;
    }
}

#header-menu-sp .logo-flex span {
    font-weight: bold;
}

#header-menu-sp menu {
    font-size: 0.88rem;
    font-weight: bold;
}

#header-menu-sp .sp_tel-number {
    font-size: 1.88rem;
    letter-spacing: 0.05em;
    color: #1C92B2;
    font-weight: bold;
    margin-left: 0.94rem;
}

.menu-sp_item {
    display: block;
}

.sp_sns-box {
    display: flex;
    align-items: center;
}

.sp_sns-box .sns-follow {
    margin-right: 1.25rem;
}

.sp_sns-box .fa-brands {
    color: #1C92B2;
    font-size: 1.88rem;
    margin-top: 0.31rem;
}

/* HEADER SP LOGO */

#header-sp {
    background-color: transparent; 
    z-index: 99;
    position: fixed;
    width: 100%;
    display: block;
    padding: 2rem;
    transition: background-color 0.3s ease-in-out;
}

@media screen and (max-width: 1280px) {
        #header-sp {
        background-color: rgba(255, 255, 255, .7) !important;
        backdrop-filter: blur(4px);
        padding: 1.88rem;
        display: flex;
        align-items: center;
    }
}

#header-sp .logo-flex span {
    font-weight: bold;
}

.logo-sp {
    display: none;
}

@media screen and (max-width: 1280px) {
        .logo-sp {
        display: flex;
        align-items: center;
        position: fixed;
        z-index: 180;
        left: 5%;
        line-height: 1em;
    }
}

/* HAMBURGER MENU */

.hamburger {
    position: fixed;
    top: 0.9rem;
    right: 5%;
    cursor: pointer;
    width: 40px;
    height: 24px;
    z-index: 9999;
    display: none;
}

@media screen and (max-width: 1280px) {
        .hamburger {
        width: 30px;
    }
}

@media screen and (max-width: 1280px) {
        .hamburger {
        display: block;
    }
}

.hamburger span {
    transition: all .3s;
    position: absolute;
    height: 3px;
    background-color: #1C92B2;
    border-radius: 5px;
    width: 100%;
    z-index: 250;
}

.hamburger span:nth-of-type(1) {
    /*上の線の位置*/
    top: 4px;
}
.hamburger span:nth-of-type(2) {
    /*真ん中の線の位置*/
    top: 12px;
}
.hamburger span:nth-of-type(3) {
    /*下の線の位置*/
    top: 20px;
}
.hamburger.open span:nth-of-type(1) {
    /*openのとき、上の線を右斜めにする*/
    top: 7px;
    transform: translateY(6px) rotate(-33deg);
}
.hamburger.open span:nth-of-type(2) {
    /*真ん中の線を消す*/
    opacity: 0;
}

.hamburger.open span:nth-of-type(3) {
    /*下の線を左斜めにする*/
    top: 19px;
    transform: translateY(-6px) rotate(33deg);
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 80;
    display: none;
}

/**********/
/* FOOTER */
/**********/

footer {
    width: 100%;
    background-color: #1C92B2;
    color: #fff;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
}

.footer-main {
    padding: 6.25rem 5rem;
    align-items: center;
}

@media screen and (max-width: 800px) {
    .footer-main {
        padding: 3.13rem 5%;
        display: block;
    }
}

.footer-l {
    font-weight: normal;
}

@media screen and (max-width: 800px) {
    .footer-l {
        margin-bottom: 1.88rem;
    }
}

.footer-l img {
    width: 3rem;
    margin-right: 0.5rem;
    padding-bottom: 0.3rem;
}

.footer-l .logo-flex p {
    color: #fff;
    font-size: 1.25rem;
}

.footer-l address {
    margin-top: 0.62rem;
}

.footer-l address a {
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.12em;
}

.footer-r {
    display: flex;
    align-items: center;
}

.footer-r p {
    margin-right: 1.88rem;
}

.footer-r a i {
    color: #fff;
    font-size: 1.88rem;
    display: block;
}

.footer-r a:hover i {
    color: #E7C438;
    transition: .5s;
}

.footer-sub {
    text-align: center;
}

/* HEADING */

.common_heading {
    margin-top: 8.125rem;
    margin-bottom: 5rem;
    position: relative;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 1280px) {
        .common_heading {
        margin-top: 6.25rem;
    }
}

@media screen and (max-width: 800px) {
        #about_section-heading.common_heading
        #archive-news_section-heading.common_heading,
        #single-news_section-heading.common_heading,
        #contact_section-heading.common_heading {
        margin-bottom: 3.13rem;
    }
}

.common_heading:after {
    content: "";
    display: block;
    width: 13rem;
    height: 13rem;
    border-radius: 50%;
    position: fixed;
    top: 8%;
    right: 9%;
    background-image: radial-gradient(
        circle, 
        #1C92B2 -90%,       /* 中心 (0%): 濃い色（不透明） */
        transparent 70%  /* 外側 (100%): 完全に透明 */
    );
    z-index: -1;
}

.common_heading::before {
    content: "";
    display: block;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    position: fixed;
    right: 14%;
    background-image: radial-gradient(
        circle, 
        #E7C438 -90%,       /* 中心 (0%): 濃い色（不透明） */
        transparent 70%  /* 外側 (100%): 完全に透明 */
    );
    z-index: -1;
    top: 35%;
}

/* ABOUT SECTION COMPANY / RECRUIT SECTION DESCRIPTION */

.has-fixed-layout {
    margin-top: 1.88rem;
    margin-bottom: 5rem;
    width: 100%;
    border-radius: 0.62rem;
    overflow: hidden;
}

.has-fixed-layout tr {
    border-bottom: 1px solid #F5F5F5;
}

@media screen and (max-width: 800px) {
    .has-fixed-layout tr {
        border-bottom: none;
    }
 }

.has-fixed-layout tr:last-of-type {
    border-bottom: none;
}

.has-fixed-layout th {
    background-color: #1C92B2;
    text-align: center;
    color: #fff;
    font-weight: normal;
    padding: 0 1.88rem;
}

@media screen and (max-width: 800px) {

    .has-fixed-layout th {
        display: block;
        width: 100%;
        text-align: left;
        padding: 1.25rem 1.88rem;
    }
 }

.has-fixed-layout td {
    width: 73%;
    font-weight: normal;
    padding: 1.88rem 5rem !important;
    box-sizing: border-box;
}

@media screen and (max-width: 800px) {

    .has-fixed-layout td {
        display: block;
        width: 100%;
        padding: 1.88rem !important;
    }
 }