@charset "UTF-8";
/* ====================
common
==================== */

html {
    font-size: 62.5%;
}

body {
    font-family:
        'Noto Sans JP',
        Arial,
        sans-serif;
    color: #333333;
    background-color: #FFFFFF;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.96px;
}

a:hover {
    color: #009688 !important;
}

img {
    max-width: 100%;
    height: auto;
}

/* a11y: 視覚的に非表示（スクリーンリーダーには読み上げ） */
.visually-hidden{
  position:absolute!important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,1px,1px);
  white-space:nowrap;border:0;
}


/* ====================
header
==================== */
.header {
    padding: 0 4%;
    background-color: #FFFFFF;
    width: 100%;
    margin: 0 auto;
    height: 50px;
    position: fixed;
    border-top: 5px solid #009688;
    z-index: 9999;
}

.header_logo {
    width: 239px;
    height: 34px;
    position: fixed;
    top: 5px;
    left: 4%;
    margin-top: 7px;
}

/* button化したのでリセットを追加 */
.header_btn {
    width: 35px;
    height: 35px;
    display: block;
    top: 10px;
    right: 4%;
    position: fixed;

    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    line-height: 0;
}

.header_btn img { width: 35px; height: 35px; }

.header_contact {
    display: none;
}

/* .nav初期表示 */
.nav {
    background: #FFFFFF;
    width: 100%;
    height: 100vh;
    padding: 3px 4%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: transform 0.4s;
    z-index: 10000;
    border-top: 5px solid #009688;
}

.nav_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav_logo {
    width: 239px;
    height: 34px;
    margin-top: 7px;
}

.nav_btn {
    display: block;
    width: 30px;
    height: 30px;
}

.nav_item {
    font-size: 1.6rem;
    text-align: center;
    margin-top: 28px;
    letter-spacing: 1.08px;
}

.nav_list {
    margin-top: 0;
    height: calc(100vh - 50px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nav_contact {
    color: #FFFFFF;
    font-size: 1.6rem;
    text-align: center;
    background: linear-gradient(0deg, #009688 0%, #A1D1C7 100%);
    padding: 10px 45px 10px 20px;
    position: relative;
    display: inline-block;
}

.nav_contact:hover {
    color: #333333 !important;
}

.nav_contact::after {
    position: absolute;
    content: '';
    display: inline-block;
    width: 23px;
    height: 23px;
    background-image: url(../images/arrow.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 8px;
}

.nav_contact:hover::after {
  background-image: url(../images/arrow_hover.png);
}

.nav.active {
    transform: translateX(0);
}

.nav_link-key {
  position: relative;
  display: inline-block;
  padding-right: 22px;
}

.nav_link-key::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url(../images/key.png);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}

.nav_link-key:hover::after {
  background-image: url(../images/key_hover.png);
}

/* header pc */
@media screen and (min-width:769px) {
    .nav {
        display: none;
    }

    .header {
        width: 100%;
        height: 70px;
    }

    .header_inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 915px;
        margin: 0 auto;
        height: 100%;
    }

    .header_logo {
        width: 315px;
        height: 50px;
        position: static;
        margin-top: 0;
        display: inline-block;
        margin-top: 9px;
    }

    .header_btn {
        display: none;
        position: static;
    }

    .header_contact {
        display: block;
        color: #FFFFFF;
        font-size: 1.4rem;
        text-align: center;
        background: linear-gradient(0deg, #009688 0%, #A1D1C7 100%);
        padding: 10px 45px 10px 20px;
        position: relative;
    }

    .header_contact:hover {
        color: #333333 !important;
    }

    .header_contact::after {
        position: absolute;
        content: '';
        display: inline-block;
        width: 23px;
        height: 23px;
        background-image: url(../images/arrow.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 8px;
    }

    .header_contact:hover::after {
        background-image: url(../images/arrow_hover.png);
    }
} /* pc 769px */

/*===================
main
=====================*/
.mainImg_pc { display: none; }
.mainImg_sp { display: block; }

.main { padding-top: 50px; }

/* main pc */
@media screen and (min-width:769px) {
    .mainImg_pc {
        display: block;
        max-width: 915px;
        margin: 0 auto;
        width: 100%;
    }
    .mainImg_sp { display: none; }
    .main { padding: 75px 4% 0; }
}

/*===================
message
=====================*/
.top_message {
    text-align: center;
    border: 1px solid #333333;
    margin: 50px 4% 0;
}
.top_message-text {
    font-size: 1.6rem;
    margin: 30px;
}

/* message pc */
@media screen and (min-width:769px) {
    .top_message {
        text-align: center;
        margin: 30px auto 0;
        max-width: 915px;
    }
    .top_message-text {
        font-size: 1.6rem;
        margin: 30px;
    }
}

.guide { display: none; }

/* guide pc */
@media screen and (min-width:769px) {
    .guide {
        display: block;
        padding: 30px 0 0;
        width: 251px;
        position: sticky;
        top: 40px;
        align-self: flex-start;
    }

    .guide_header {
        align-items: center;
        padding: 13px 4%;
        background: linear-gradient(0deg, #009688 0%, #A1D1C7 100%);
        position: relative;
        text-align: center;
    }
    .guide_header h2 {
        font-weight: 700;
        font-size: 1.8rem;
        color: #FFFFFF;
    }

    .guide_item {
        border: 1px solid #C9C9C9;
        padding: 20px 4%;
        font-size: 1.6rem;
        line-height: 1.6;
        text-align: center;
    }

    .pc_guide {
        display: flex;
        max-width: 915px;
        margin: 0 auto;
    }

    .update_all {
        margin-left: 50px;
        flex: 1;
        min-width: 0;
    }

    .guide_link-key {
        position: relative;
        display: inline-block;
        padding-right: 22px;
    }
    .guide_link-key::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        width: 20px;
        height: 20px;
        background-image: url(../images/key.png);
        background-size: contain;
        background-repeat: no-repeat;
        transform: translateY(-50%);
    }
    .guide_link-key:hover::after { background-image: url(../images/key_hover.png); }
}

/*===================
news
=====================*/
.news { padding: 50px 4% 0; }

.news_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 4%;
    background: linear-gradient(0deg, #009688 0%, #A1D1C7 100%);
    position: relative;
}
.news_header h2 {
    font-weight: 700;
    font-size: 1.6rem;
    color: #FFFFFF;
}

.news_item {
    border: 1px solid #C9C9C9;
    padding: 20px 4%;
}
.news_item a { display: block; }
.news_date {
    font-size: 1.4rem;
    color: #888;
    display: block;
    margin-bottom: 0.5rem;
}
.news_title {
    font-size: 1.6rem;
    line-height: 1.6;
}

/* news pc */
@media screen and (min-width:769px) {
  .news {
      padding: 30px 0 0;
      width: 100%;
      max-width: none;
  }
}

/*===================
Weekly Report
=====================*/
.weekly_report { padding: 50px 4% 0; }

.weekly_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 4%;
    background: linear-gradient(0deg, #009688 0%, #A1D1C7 100%);
    position: relative;
}
.weekly_header h2 {
    font-weight: 700;
    font-size: 1.6rem;
    color: #FFFFFF;
}

/* 統一ボタン定義（news / weekly 共通） */
.btn_news-more,
.btn_weekly-more {
  font-size: 1.4rem;
  color: #FFFFFF;
  position: relative;
  display: inline-block;
  margin-right: 0;
  padding-right: 32px;
  text-decoration: none;
}
.btn_news-more:hover,
.btn_weekly-more:hover {
  color: #333333 !important;
}
.btn_news-more::after,
.btn_weekly-more::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
  background: url(../images/arrow.png) no-repeat center/contain;
}
.btn_news-more:hover::after,
.btn_weekly-more:hover::after {
  background-image: url(../images/arrow_hover.png);
}

.weekly_item {
    border: 1px solid #C9C9C9;
    padding: 20px 4%;
}
.weekly_item a { display: block; }
.weekly_date {
    font-size: 1.4rem;
    color: #888;
    display: block;
    margin-bottom: 0.5rem;
}
.weekly_title {
    font-size: 1.6rem;
    line-height: 1.6;
}

/* weekly_report pc */
@media screen and (min-width:769px) {
    .weekly_report {
        padding: 30px 0 0;
        width: 100%;
        max-width: none;
    }
}

/*===================
Company
=====================*/
.company_all { margin: 50px 4% 50px; }
.company_ttl img {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}
.company_ttl { font-size: 1.6rem; }
.company_img { margin-top: 30px; }
.company_img img {
    width: auto;
    height: 30px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Company pc */
@media screen and (min-width:769px) {
    .company_all {
        max-width: 915px;
        margin: 50px auto 100px;
    }
    .company_list-1, .company_list-2, .company_list-3 {
        display: flex;
        justify-content: center;
        gap: 100px;
    }
}

/*===================
footer
=====================*/
.footer {
    background-color: #009688;
    color: #FFFFFF;
}
.footer a:hover { color: #FFFFFF !important; }

.footer-links {
    font-size: 1.2rem;
    padding: 30px 4% 0;
}
.link_txt { margin-top: 15px; }
.copy {
    font-size: 1rem;
    margin-top: 50px;
    text-align: center;
    padding-bottom: 20px;
}

/* footer pc */
@media screen and (min-width:769px) {
    .footer_pc {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 915px;
        margin: 0 auto;
        padding: 15px 4%;
    }
    .footer-links {
        display: flex;
        padding: 0;
        gap: 50px;
    }
    .copy { margin-top: 0; padding-bottom: 0; }
    .link_txt { margin-top: 0; }
}

/*================
scroll top
=================*/
.topBtn {
    display: inline-block;
    width: 44px;
    height: 44px;
    position: fixed;
    bottom: 1.4%;
    right: 1.4%;
}

/* scroll top pc */
@media screen and (min-width:769px) {
    .topBtn {
        right: 6.5%;
        bottom: 50px;
    }
}

/* ナビが開いている間は背景スクロールを止める */
body.nav-open { overflow: hidden; }
