/* ======================================== */
/* 全体のレイアウト・表示設定ここから */
/* ======================================== */
*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    width: 100%;
    height: 100%;
    font-size: 19px;
    letter-spacing: 0.05em;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
    max-width: 100%;
    background-color: #fffcfc;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

/* レスポンシブ-- @media max-width 850pxで切り替え */
.sp {
    display: none;
}

.btn.sp {
    display: none;
}

.pc {
    display: block;
}


/* レスポンシブ-- @media max-width: 650pxで切り替え */
.sp650 {
    display: none;
}

.pc650none {
    display: block;
}


p {
    line-height: 1.7;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    vertical-align: bottom;
}

main {
    padding-top: 80px;
}


/* ======================================== */
/* 全体のレイアウト・表示設定ここまで */
/* ======================================== */


/* ======================================== */
/* 全ページ共通パーツここから */
/* ======================================== */

/* ==================== */
/* ヘッダーここから */
/* ==================== */

header {
    position: fixed;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 80px;
    font-weight: 600;
    background-color: #00A8CD;
    color: #fff;
    white-space: nowrap;
}

.header__inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo-band {
    display: flex;
    height: 80px;
    width: 450px;
    min-width: 260px;
    background-color: #fff;
    clip-path: polygon(0 0,
            100% 0,
            calc(100% - 55px) 100%,
            0 100%);
    align-items: center;
}


.header__logo {
    display: flex;
    align-items: center;
}

.header__logo img {
    width: 70%;
    max-width: 300px;
    margin: auto;
}

.header__site-menu {
    width: 90%;
    gap: 3%;
    display: flex;
}

.header__site-menu .site-menu__list {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 10%;
    align-items: center;
    text-align: center;
    font-size: clamp(10px, 1.1vw, 3rem);
    line-height: 1.1;
}

.site-menu__list li {
    transition: all 0.2s;
}

.site-menu__list li:hover {
    transform: translateY(-5px);
}


.header__site-menu span {
    font-size: clamp(10px, 0.5vw, 2rem);
}

.float-menu-wrapper {
    display: flex;
    width: auto;
    transform: translateY(30%);
    gap: 0%;
}

.float-menu {
    padding: 7%;
    text-align: center;
    line-height: 1.1;
    white-space: nowrap;
    box-sizing: border-box;
    width: 120px;
    transition: all 0.2s;
}

.float-menu img {
    width: 30px;
    padding-bottom: 5px;
}

.menu-recruit {
    background-color: #DA560B;
}

.menu-recruit:hover {
    background-color: #e47d5d;
}

.menu-contact {
    background-color: black;
}

.menu-contact:hover {
    background-color: #333;
}

/* ハンバーガー非表示 */
.header__nav-button {
    display: none;
}

/* ==================== */
/* ヘッダーここまで */
/* ==================== */

/* ==================== */
/* フッターここから */
/* ==================== */
footer {
    width: 100%;
    background-image: linear-gradient(125deg, #e9f0f0 60%, #fff 0%);
    height: 300px;
    position: relative;
    display: flex;
    margin: auto;
    align-items: center;
    padding: 0 3%;
}

footer .f-title.pc {
    margin-left: 10px;
}

.footer__content {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    height: 180px;
    display: flex;
    align-items: center;
    gap: 5%;
}

.footer__info {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    width: 40%;
}

.footer__logo {
    width: 80%;
    min-width: 140px;
    height: auto;
    object-fit: contain;
}

.footer__access {
    margin-top: 1%;
    margin-bottom: 3%;
    font-size: 13px;
    text-align: left;
}

small {
    font-size: 0.7rem;
    position: static;
    bottom: 0;
    line-height: 1.4;
}

/* Copyright用の特別なスタイル */
.small.pc,
.smallsp {
    position: absolute;
    bottom: 10px;
    left: 20px;
    background-color: #E8EFEF;
    padding: 10px 20px;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 10;
    font-size: 0.65rem;
}

.smallsp {
    display: none;
}

.footer__nav ul {
    font-size: 14px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    white-space: nowrap;
}

.footer__nav ul li a {
    transition: all 0.2s;
}

.footer__nav ul li a:hover {
    color: #fff;
}

.footer__contact {
    background-color: #fff;
    max-width: 100%;
    margin-right: auto;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 15% 0% 150px;
    clip-path: polygon(calc(0px + 210px) 0, 100% 0, 100% 100%, 0 100%);
}

.footer__contact__box {
    display: flex;
}

.slash-footer {
    width: 2px;
    height: 200px;
    transform: rotate(29deg) translate(0, -100px);
}

.footer__contact__contain .btn {
    margin-top: -40%;
}

.pagetop {
    position: absolute;
    right: 20px;
    bottom: 0;
    z-index: 999;
    background: url(../img/pagetop.png) no-repeat center center / contain;
    margin-bottom: 40px;
    width: 50px;
    height: 50px;
    z-index: 2;
}

/* ==================== */
/* フッターここまで */
/* ==================== */

/* パンくずリスト */

.breadcrumb a:hover {
    text-decoration: underline;
}

/* リンクボタンここから */

.btn {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 55px;
    color: #fff;
    background-color: #131212;
    border-radius: 30px;
    position: relative;
    border: 3px solid #131212;
    transition: all 0.2s;
    ;
}

.btn:hover {
    background-color: #fff;
    color: #131212;
}

.btn::before,
.btn::after {
    display: inline-block;
    position: absolute;
    content: "";
    background-color: #f5f5f5;
    height: 2px;
    width: 10px;
    right: 10%;
}

.btn::before {
    top: 40%;
    transform: rotate(45deg);
}

.btn::after {
    top: 50%;
    transform: rotate(-45deg);
}

.btn:hover::before,
.btn:hover::after {
    background-color: #131212;
}

/* リンクボタンここまで */

/* ======================================== */
/* 全ページ共通パーツここまで　*/
/* ======================================== */

/* ======================================== */
/* front-pageここから */
/* ======================================== */

/* ==================== */
/* front-page共通アイテムここから */
/* ==================== */

.f-title {
    font-size: 3rem;
    line-height: 0.9;
}

.f-title>span {
    font-size: 0.9rem;
}

/* ==================== */
/* front-page共通アイテムここまで */
/* ==================== */

/* ==================== */
/* front-page:heroここから */
/* ==================== */
.hero {
    width: 100%;
    height: auto;
}

.hero img {
    width: 100%;
    height: calc(100vh - 80px);
    object-fit: cover;
}

/* ==================== */
/* heroここまで */
/* ==================== */

/* ==================== */
/* About Usここから */
/* ==================== */
.f-about {
    width: 100%;
    max-width: 2000px;
    height: 440px;
    position: relative;
    margin-left: auto;
    margin-top: 60px;
}

.f-about__bg {
    z-index: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #edefef;
    margin-left: auto;
    clip-path: polygon(calc(0px + 358px) 0, 100% 0, 100% 70%, calc(100% - 80px) 100%, calc(0px + 100px) 100%);
}


.f-about__content {
    position: absolute;
    top: 30%;
    left: 200px;
    z-index: 1;
    display: flex;
    width: 70%;
    height: 50%;
    justify-content: space-around;
    align-items: flex-start;
    gap: 3%;
}


.slash-about {
    width: 2px;
    height: 400px;
    transform: rotate(29deg) translate(-100px, -125px);
    margin-left: 10px;
    margin-right: -12px;
}

.f-about__img {
    width: 30%;
    max-width: 450px;
    min-width: 200px;
}

.f-about__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* ==================== */
/* front-page:About Usここまで */
/* ==================== */

/* ==================== */
/* front-page:Businessここから */
/* ==================== */

.f-biz {
    margin-top: 60px;
    display: grid;
    place-items: center;
    width: 100%;
    max-width: 2000px;
    height: 600px;
    position: relative;
    aspect-ratio: 16/5;
}

.f-biz__bg {
    z-index: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../img/front/f-biz_bg.jpg) no-repeat left center / cover;
    clip-path: polygon(calc(0px + 90px) 0,
            calc(100% - 100px) 0,
            calc(100% - 400px) 100%,
            calc(0px + 200px) 100%,
            calc(0px + 215px) calc(100% - 25px),
            0 calc(100% - 25px),
            0 calc(0px + 150px));
    opacity: 0.9;
}

.f-biz__content {
    color: #fff;
    position: absolute;
    top: -1.8%;
    left: 10%;
    display: flex;
    justify-content: flex-start;
    gap: 2%;
    align-items: center;
    width: 70%;
    margin-right: auto;
}

.slash-biz {
    width: 1px;
    height: 280px;
    transform: rotate(29deg) translate(0, -8px);
    margin-left: -0.5%;
    margin-right: 15px;
}

.f-biz__link {
    position: absolute;
    right: 0;
    top: 40%;
    display: flex;
    width: 80%;
    gap: 2%;
}

.f-biz__link-item {
    transition: all 0.2s;
}

.f-biz__link-item:hover {
    transform: translateY(-5px);
    filter: brightness(1.8);
}

.f-biz__link a {
    position: relative;
}

.f-biz_card {
    width: 100%;
    position: relative;
    transition: all 0.2s;
}

.f-biz_icon {
    position: absolute;
    z-index: 1;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20%;
}

.f-biz_name {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 15px;
    white-space: nowrap;
}

.f-biz__text {
    text-shadow: 0 0 10px rgba(84, 85, 76, 0.565);
}

/* ==================== */
/* front-page：Businessここまで */
/* ==================== */

/* ==================== */
/* front-page：Recruitここから */
/* ==================== */

.f-recruit {
    width: 100%;
    max-width: 2000px;
    height: 500px;
    position: relative;
    margin: 60px 0 80px auto;
}

.f-recruit__bg {
    z-index: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../img/front/f-rc_bg.jpg) no-repeat left center / cover;
    clip-path: polygon(calc(0px + 300px) 0,
            100% 0,
            100% 20%,
            calc(100% - 140px) 20%,
            calc(100% - 350px) 100%,
            calc(0px + 35px) 100%);
}


.f-recruit__content {
    position: absolute;
    top: 0%;
    right: 170px;
    display: flex;
    height: 210px;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 900px;
    width: 50%;
    min-width: 400px;
    margin: auto;

}

.f-recruit__content .f-title {
    margin-top: 4%;
}

.slash-recruit {
    width: 2px;
    height: 200px;
    transform: rotate(29deg)translate(0, -13px);
    margin-right: 10%;
}

.f-recruit__info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    gap: 6%;
}

.f-recruit__text {
    margin-top: 5%;
}

.f-recruit__img {
    position: absolute;
    width: 550px;
    max-width: 90%;
    bottom: -130%;
    right: 0;
}

/* ==================== */
/* front-page：Recruitここまで */
/* ==================== */

/* ==================== */
/* front-page：Newsここから */
/* ==================== */

.f-news {
    width: 100%;
    height: 100%;
}


.f-news__content {
    width: 80%;
    max-width: 1280px;
    margin-left: 15%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.slash-news {
    width: 2px;
    height: 200px;
    transform: rotate(29deg) translate(0, -14px);
    margin-right: 3%;
}

.f-news__list {
    display: grid;
    grid-template-columns: 1fr;
    font-size: 16px;
    gap: 20%;
}

.f-news__list li {
    transition: all .2s;
}

.f-news__list li:hover {
    color: #ccc;
}

.f-news__content .btn {
    margin: auto auto 3.5%;
}

/* ==================== */
/* front-page：Newsここまで */
/* ==================== */


/* ======================================== */
/* front-pageここまで */
/* ======================================== */

/* ======================================== */
/* 下層ページここから */
/* ======================================== */

/* ==================== */
/* 下層ページ共通ここから */
/* ==================== */

.subpage__top {
    position: relative;
    height: 400px;
}

.subpage__top h2 {
    position: absolute;
    top: 30%;
    left: 2%;
    color: #fff;
    font-size: 64px;
    line-height: 0.6;
    letter-spacing: 0.05em;
}

#blueMask {
    position: absolute;
    inset: 0 auto 0 0;
    height: 100%;
    background: #00A8CD;
    opacity: 0.6;
    clip-path: polygon(0 0,
            100% 0,
            calc(100% - 250px) 100%,
            0 100%);
}


.subpage__top h2 span {
    font-size: 20px;
}

.business .subpage__top {
    background: url(../img/business/top__wide.jpg) no-repeat top center / cover;
}

.office .subpage__top {
    background: url(../img/office/top.jpg) no-repeat bottom center / cover;
}

.about .subpage__top {
    background: url(../img/about/top__wide.jpg) no-repeat center 10% / cover;
}

.recruit .subpage__top {
    background: url(../img/recruit/top.jpg) no-repeat center center / cover;
    height: 700px;
}

.news .subpage__top,
.article .subpage__top {
    background: url(../img/news/top.jpg) no-repeat center center / cover;
}

.contact .subpage__top {
    background: url(../img/contact/top__wide.jpg) no-repeat center center / cover;
}

.policy .subpage__top {
    background: url(../img/policy/top__wide.jpg) no-repeat center center / cover;
}


.recruit #blueMask {
    position: absolute;
    inset: 0 auto 0 0;
    height: 100%;
    background: #00A8CD;
    opacity: 0.6;
    clip-path: polygon(0 0,
            100% 0,
            calc(100% - 500px) 100%,
            0 100%);
}

.recruit .subpage__top h2 span {
    font-size: 80px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}

.recruit .subpage__top h2 {
    left: 2%;
    top: 20%;
}

/* ==================== */
/* 下層ページ共通ここまで */
/* ==================== */

/* ==================== */
/* Businessここから */
/* ==================== */

#gaslink,
#industlink,
#weldlink,
#metallink {
    padding-top: 80px;
    margin-top: -80px;
}

#gaslink {
    margin-top: 0px;
}

.business__section {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
}

.business h2 span img {
    width: 50px;
}

.business__section:nth-child(2) {
    margin-top: 80px;
}

.business__section:last-child {
    margin-bottom: 120px;
}

.business__content {
    display: flex;
    width: 60%;
    margin-left: auto;
    position: relative;
}

.business__content.reverse {
    flex-direction: row-reverse;
    margin-left: 0;
    margin-right: auto;
}

.business__box {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
    height: 250px;
    background-color: #edefef;
}

.business__section:nth-child(3) .business__box {
    height: 350px;
}

.business__content .business__box {
    padding: 20px 0 20px 80px;
}

.business__content.reverse .business__box {
    padding: 20px 80px 20px 40px;
    margin-left: auto;
    align-items: flex-end;
    text-align: right;
}

.business__content img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    position: absolute;
    left: -280px;
    top: 50%;
    transform: translateY(-50%);
}

.business__content.reverse img {
    position: absolute;
    left: 95%;
}

.business__text,
.business__list {
    max-width: 500px;
}

.business__text {
    font-weight: 600;
}

.business__list__wrap {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.business__list {
    display: flex;
    gap: 1%
}

.business__content.reverse .business__list {
    flex-direction: row-reverse;
}

.business__list li {
    padding: 10px;
    font-size: 13px;
    line-height: 0.2;
    background-color: #a19e9e;
    text-align: center;
    border-radius: 30px;
    color: #fff;
    white-space: nowrap;
}

/* ==================== */
/* Businessここまで */
/* ==================== */

/* ==================== */
/* Officeここから */
/* ==================== */

.office {
    padding-bottom: 100px;
}

.office__section {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.office__list {
    display: flex;
    flex-direction: column;
    width: 80%;
    max-width: 1500px;
    min-width: 710px;
    margin: auto;
}

.office__col__sp {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.office__item {
    display: flex;
    flex-direction: column;
    margin: 70px auto 0;
    width: 100%;
}

.office__name {
    border-left: 5px solid #00A8CD;
    padding-left: 2%;
    margin-bottom: 10px;
}

.office__info {
    width: 100%;
    display: flex;
    gap: 2%;
    justify-content: space-between;
}

.office__img {
    width: 30vw;
    max-width: 400px;
    height: 200px;
    object-fit: cover;
}

.office__access {
    width: 100%;
    font-size: clamp(12px, 1.2vw, 16px);
}

iframe {
    width: 100%;
}

/* ==================== */
/* Officeここまで */
/* ==================== */


/* ==================== */
/* About USここから */
/* ==================== */
.about h3 {
    text-align: center;
    margin-top: 80px;
    position: relative;
    line-height: 2;
    border-bottom: 1.5px solid #00A8CD;
    width: 200px;
    margin: 100px auto 50px;
}

.about h3::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 1.5px;
    bottom: 37%;
    left: 95.5%;
    transform: translateX(-50%);
    background-color: #00A8CD;
    transform: rotate(-55deg);
}

.company-table {
    margin: auto;
    font-size: 17px;
    border-collapse: separate;
    border-spacing: 0 15px;
    width: 70%;
    max-width: 910px
}

.company-table tr {
    text-align: left;
    background-color: #eaeaea;
}

.company-table th {
    /* width: 180px; */
    height: 50px;
    background-color: #00A8CD;
    padding: 10px 15px 10px 20px;
    color: #fff;
    clip-path: polygon(0 0,
            100% 0,
            80% 100%,
            0 100%);
    width: 180px;
    min-width: 180px;
}

.company-table td {
    padding: 10px 25px 10px 25px;
    height: 50px;
}

.company-table tr:nth-child(6) th {
    clip-path: polygon(0 0,
            100% 0,
            72% 100%,
            0 100%);
    font-size: 15px;
}

.welfare-row th {
    display: flex;
}

.about-welfare {
    border: solid 2px #04ABCF;
    padding: 10px;
}

td.welfare-content {
    padding: 30px 25px 30px 25px;
}

.history-table {
    margin: 0 auto 100px;
    border-spacing: 0 20px;
    border-collapse: separate;
    max-width: 1100px;
    width: 80%;
    font-size: 17px;
}

.history-table tr {
    text-align: left;
    background-color: #e9f0f0;
}

.history-table th {
    margin-right: 50px;
    height: 50px;
    padding-left: 20px;
    width: 180px;
    font-size: 15px;
    background-color: #dde7e7;
    clip-path: polygon(0 0,
            100% 0,
            80% 100%,
            0 100%);
}


/* ==================== */
/* About USここまで */
/* ==================== */

/* ==================== */
/* Recruitここから */
/* ==================== */

/* WE ARE */
.we-are {
    width: 100%;
    max-width: 2000px;
    height: 500px;
    position: relative;
    margin-right: auto;
    margin-top: 100px;
}

.we-are__bg {
    z-index: -1;
    position: absolute;
    width: 100%;
    min-width: 980px;
    height: 100%;
    background-image: linear-gradient(-40deg, rgb(35, 117, 147), rgb(23, 216, 255));
    margin-right: auto;
    clip-path: polygon(0 20%,
            calc(0px + 70px) 0,
            calc(100% - 80px) 0,
            calc(100% - 400px) 100%,
            0 100%);
}

.we-are__text {
    color: #fff;
    position: absolute;
    top: 10%;
    left: 5%;
}

.we-are__text h3 {
    font-size: 50px;
    font-weight: 900;
    font-style: italic;
    font-variation-settings:
        "wdth" 100;
}

.we-are__p {
    margin-top: 5px;
}

.we-are__p p {
    margin-bottom: 20px;
}

.we-are__img {
    position: absolute;
    width: 35%;
    bottom: 50px;
    right: 80px;
    z-index: -1;
}

/* 募集要項 */

.recruit__contain {
    display: flex;
    overflow: visible;
    min-height: auto;
}

.recruit__benefit {
    font-weight: 400;
    font-size: 15px;
    border: solid 2px #04ABCF;
    padding: 20px 10px;

}

.info__img {
    width: 40%;
}

.recruit__guide {
    display: flex;
    flex-direction: column;
    padding-bottom: 50px;
}

.recruit__head {
    height: 130px;
    margin-top: 80px;
    display: flex;
    margin-left: auto;
}

.recruit__head__img {
    height: 130px;
    width: 600px;
    object-fit: cover;
    object-position: bottom;
    clip-path: polygon(calc(0px + 100px) 0,
            100% 0,
            100% 100%,
            0 100%);
}

.recruit__head h3 {
    font-size: 40px;
    margin-top: 50px;
    text-align: center;
    font-weight: 900;
    font-style: italic;
    font-variation-settings:
        "wdth" 100;

}

.recruit__contain {
    margin: 30px auto 0;
    width: 90%;
    max-width: 2000px;
}

.info__img {
    object-fit: cover;
    width: 30%;
    max-width: 800px;
    height: 400px;
}

.recruit__info {
    width: 100%;
    max-width: 800px;
    height: 400px;
    font-weight: bold;
    overflow: visible;
    min-height: auto;
}

.recruit__detail {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
    overflow: visible;
}

.recruit__detail:first-child {
    margin-top: 0;
}

.recruit__detail:last-child {
    margin-bottom: 50px;
}

.recruit__detail h4 {
    color: #00698e;
}

.recruit__contact {
    margin-top: 50px;
    text-align: center;
    font-weight: bold;
}

.recruit__contact-btn {
    margin: 20px auto 100px;
    position: relative;
    display: inline-block;
    background-color: #000;
    color: #fff;
    height: 60px;
    width: 280px;
    line-height: 60px;
    clip-path: polygon(15% 0,
            100% 0,
            85% 100%,
            0 100%);
    transition: all 0.2s;
}

.recruit__contact-btn:hover {
    transform: translateY(4px);
}

.recruit__contact-btn::before,
.recruit__contact-btn::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 75px;
    background-color: #fff;
    transition: all 0.2s;
}

.recruit__contact-btn::before {
    right: 10%;
    transform: rotate(45deg);
}

.recruit__contact-btn::after {
    bottom: 0;
    right: 9%;
    width: 90px;
    transform: rotate(-45deg);
}

.recruit__contact-btn:hover.recruit__contact-btn::before {
    right: 7%;
    color: currentColor;
}

.recruit__contact-btn:hover.recruit__contact-btn::after {
    right: 6%;
    color: currentColor;
}

/* ==================== */
/* Recruitここまで */
/* ==================== */

/* ==================== */
/* Newsここから */
/* ==================== */

.news-list {
    margin: 100px auto 50px;
    width: 50%;
    max-width: 800px;
    min-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.news-item {
    display: flex;
    align-items: center;
    transition: all 0.2s;
    margin-left: -35px;
    /* arrowの横幅分だけ */
}

.news-item:hover {
    color: #ccc;
}

.news-date {
    display: flex;
    font-size: 20px;
    margin-top: 0px;
    position: relative;
    border-bottom: solid 1px #00A8CD;
    width: 130px;
}

.date {
    margin-left: 5px;
}

.news-date .year {
    display: block;
    font-size: 10px;
}

.news-date::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 1px;
    bottom: 48%;
    right: -24%;
    transform: translateX(-50%);
    background-color: #00A8CD;
    transform: rotate(-55deg);
}

.news-title {
    margin-left: 50px;
    font-size: 17px;
    font-weight: 400;
}

.arrow {
    position: relative;
    margin-left: auto;
}

.arrow::before {
    content: "";
    width: 35px;
    height: 1px;
    background: #00A8CD;
    display: inline-block;
    position: absolute;
    top: 0px;
    left: 4px;
}

.arrow::after {
    content: "";
    width: 10px;
    height: 10px;
    border: solid 1px transparent;
    border-right-color: #00A8CD;
    border-top-color: #00A8CD;
    display: inline-block;
    position: absolute;
    top: -5px;
    left: 27px;
    transform: rotate(45deg);
}

.news-pagenation {
    margin: 60px auto 100px;
    text-align: center;
}

/* ==================== */
/* Newsここまで */
/* ==================== */

/* ==================== */
/* articleここから */
/* ==================== */

.article__box {
    width: 100%;
    display: flex;
    flex-direction: column;
}


.article__title {
    position: relative;
    position: relative;
    font-weight: normal;
    margin: 50px auto 50px;
    font-size: 28px;
}

.article__title::before {
    content: "";
    left: -40px;
    bottom: 25px;
    position: absolute;
    width: 60px;
    height: 1.5px;
    transform: translateX(-50%);
    background-color: #00A8CD;
    transform: rotate(-60deg);
}

.article__date {
    position: absolute;
    top: -20px;
    left: -30px;
    font-size: 1px;
    line-height: 4;
}


.article__content {
    background-color: #edeff2;
    margin-bottom: 50px;
}

.article__text {
    width: 80%;
    max-width: 1100px;
    margin: 50px auto;
}

.article__text p {
    font-size: 17px;
}

.article .btn {
    margin: auto;
    margin-bottom: 50px;
    width: 280px;
}

/* ==================== */
/* articleここまで */
/* ==================== */

/* ==================== */
/* contactここから */
/* ==================== */

.contact__box {
    width: 80%;
    max-width: 900px;
    margin: 89px auto;
}

/* ==================== */
/* contactここまで */
/* ==================== */

/* ==================== */
/* Privacy Policyここから */
/* ==================== */
.policy__box {
    width: 80%;
    margin: 80px auto 100px;
}

.policy__box ol {
    margin: 10px 0;
}

.policy__box ol li {
    list-style: inside decimal;
}

.policy__item {
    margin-top: 60px;
}

.policy__head {
    background-color: #e9f0f0;
    padding: 10px 15px 10px 40px;
    clip-path: polygon(0 0,
            100% 0,
            calc(100% - 40px) 100%,
            0 100%);
}

.policy__text {
    margin-top: 15px;
}

/* ==================== */
/* Privacy Policyここまで */
/* ==================== */


/* ============================================  */
/* アニメーション用クラス ここから */
/* ============================================  */

/* ====================== */
/* 全ページ共通：js- */
/* ====================== */
/* fadeup */
.js-fadeup {
    opacity: 0;
    transform: translateY(100px);
}

.js-fadeup.fadeup {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease, transform 1.5s ease;
}

/* fadein(左からIN) */
.js-fadein {
    opacity: 0;
    transform: translateX(-100px);
}

.js-fadein.fadein {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 1s ease, transform 1.5s ease;
}

/* fadeinR(右からIN) */
.js-fadeinR {
    opacity: 0;
    transform: translateX(100px);
}

.js-fadeinR.fadeinR {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 1s ease, transform 1.5s ease;
}

/* ====================== */
/* Recruit：文字を光らせる */
/* ====================== */
.glowAnime span {
    opacity: 0;
}

.glowAnime.glow span {
    animation: glow_anime_on 1s ease-out forwards;
}

@keyframes glow_anime_on {
    0% {
        opacity: 0;
        text-shadow: 0 0 0 #fff, 0 0 0 #fff;
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 10px #fff, 0 0 15px #fff;
    }

    100% {
        opacity: 1;
        text-shadow: 0 0 6px #165c7c, 0 0 30px #4a3939;
    }
}

/* ============================================  */
/* アニメーション用クラス ここまで */
/* ============================================  */

.p-contact__content {
    margin-top: 30px !important;
}

.wpcf7-form-control:not(.wpcf7-acceptance):not(.wpcf7-submit) {
    width: 60% !important;
    min-width: 300px !important;
    height: 40px;
    border: solid 1px #aaa;
    border-radius: 3px;
}

/* 
.p-contact-form__label {
    font-weight: 600 !important; 
} */
.cf7__list dt {}

.cf7__list dt p {
    font-weight: 600 !important;
    margin-top: 20px !important;
    margin-bottom: 5px !important;
}

.cf7__required {
    content: "*";
    color: #b62c2c;
}

.wpcf7-form-control.wpcf7-textarea {
    height: 150px !important;
}

.wpcf7-submit {
    display: flex;
    background-color: #136bb3;
    color: #fff;
    padding: 30px;
    line-height: 0;
    border-radius: 5px;
    width: 20% !important;
    min-width: 150px !important;
    align-items: center;
    margin: 30px auto 0 !important;
    border: none;
    height: 30px;
    font-weight: 600 !important;
    font-size: 20px !important;
}