@charset "UTF-8";
/* 下層ぺージ */
:root {
    --main-font-color: #333;
    --sub-font-color: #fff;
    --main-color: #005bac;
    --main-thin-color: #edf4fa;
    --accent-color: #e03131;
    --gray-dark: #848484;
    --gray-medium: #e8e8e8;
    --gray-thin: #b7b7b7;
    --bg-black: #303234;
}
/*--------------------------------
 共通
---------------------------------*/
/* パンくずリスト */
.breadcrumb {
    width: 100%;
    padding: 12px 0;
}
.breadcrumb__list {
    /* margin: 0 auto; */
}
.breadcrumb__list ol {
    display: flex;
    justify-content: flex-end;
}
.breadcrumb__list li {
    list-style: none;
    font-size: 12px;
    letter-spacing: 0.05em;
}
.breadcrumb__list li:after {
    content: '/';
    padding: 0 1.1em;
    color: #555;
}
.breadcrumb__list li:last-child:after {
    content: '';
    padding: 0;
}
.breadcrumb__list li a {
    text-decoration: none;
    color: var(--main-color);
    transition: all .3s;
}
@media screen and (min-width : 601px) {
    .breadcrumb__list li a:hover {
        text-decoration: underline;
    }
}
/* パンくずリスト_end */
.lower-mv {
    padding: 230px 0 55px 0;
}
/* メインビジュアルタイトル */
.lower-mv-heading {
    flex-direction: column-reverse;
}
.lower-mv-heading>p {
    color: var(--main-font-color);
    font-size: 90px;
    margin-bottom: 10px;
}
.lower-mv-heading>h2 {
    font-size: 24px;
}
/* メインビジュアルタイトル_end */
.lower-section {
    margin-bottom: 150px;
}
/* list-style */
.ul-list {}
.ul-list li {
    position: relative;
    padding-left: 1.5em;
}
.ul-list li::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--main-color);
    top: 50%;
    left: 1%;
    transform: translate(-50%, -50%);
}
/* list-style_end */
.pc-only {
    display: block;
}
/*--------------------------------
 共通_見出し
---------------------------------*/
.lower-heading {
    flex-direction: column-reverse;
    align-items: flex-start;
    row-gap: 0.4em;
    margin-bottom: 20px;
}
.lower-heading>h2,
.lower-heading>h3 {
    font-size: 35px;
    color: var(--main-color);
}
.lower-heading>p {
    font-size: 14px;
    color: var(--main-font-color);
}
/*--------------------------------
 矢印
---------------------------------*/
/* 丸い背景ラッパー */
.arrow-down-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: var(--main-thin-color);
    border-radius: 50%;
    margin-left: 0.4em;
}
/* 下向き中央線あり */
.arrow-down {
    position: relative;
    display: inline-block;
    width: 2px;
    height: 12px;
    margin: 0 5.3px;
    border-radius: 9999px;
    background-color: var(--main-color);
}
.arrow-down::before,
.arrow-down::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 1px);
    width: 2px;
    height: 8px;
    border-radius: 9999px;
    background-color: var(--main-color);
    transform-origin: 50% calc(100% - 1px);
}
.arrow-down::before {
    transform: rotate(45deg);
}
.arrow-down::after {
    transform: rotate(-45deg);
}
/*--------------------------------
 single
---------------------------------*/
.single-article {
    margin: 60px 0 150px;
}
.single-article .article-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 0.2em 15px 0.2em;
    border-bottom: 1px solid var(--gray-thin);
    margin-bottom: 40px;
}
.single-article .article-title>h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}
.single-article .article-title>div {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-dark);
}
.single-article .article-main {
    font-size: 16px;
    letter-spacing: 0.075em;
    line-height: 1.75;
}
.single-article .article-cat {
    display: inline-block;
    color: var(--sub-font-color);
    font-weight: bold;
    background: var(--main-color);
    padding: 7px 13px;
    margin-bottom: 8px;
}
/* 一覧・前の記事・次の記事ボタン */
.article-link-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 50px;
}
.article-link .list-btn .btn1-white {
    margin-inline: auto;
}
.next-btn,
.prev-btn {
    position: relative;
    display: flex;
    align-items: center;
}
.prev-btn {
    margin-right: auto;
}
.next-btn {
    margin-left: auto;
}
.next-btn a,
.prev-btn a {
    transition: .5s;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}
.next-btn a,
.prev-btn a,
.next-btn a:link,
.prev-btn a:link,
.next-btn a:link,
.prev-btn a:link {
    color: var(--main-color);
}
.next-btn a {
    padding-right: 40px;
}
.prev-btn a {
    padding-left: 40px;
}
.next-btn a::after,
.prev-btn a::before {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}
.prev-btn a::before {
    background: url(../common_images/icon-arrow-left.svg)no-repeat;
    left: 0;
}
.next-btn a::after {
    background: url(../common_images/icon-arrow-right.svg)no-repeat;
    right: 0;
}
/* 一覧・前の記事・次の記事ボタン_end */
/* ページナビ */
.wp-pagenavi-area {
    margin-top: 60px;
}
.wp-pagenavi {
    /* margin: 60px auto; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp-pagenavi .page {
    display: inline-block;
    text-align: center;
    width: 42px;
    height: 42px;
    line-height: 36px;
    border: solid 2px var(--main-color);
    border-radius: 21px;
    margin: auto 6px;
    transition: 0.3s ease-out;
    color: var(--main-color);
    font-weight: 600;
}
@media screen and (min-width : 601px) {
    .wp-pagenavi .page:hover {
        background: var(--main-color);
        color: var(--sub-font-color);
        border: 2px solid var(--main-color);
    }
}
.wp-pagenavi .current {
    display: inline-block;
    text-align: center;
    width: 42px;
    height: 42px;
    line-height: 36px;
    color: #fff;
    background: var(--main-color);
    border: solid 1px var(--main-color) !important;
    border-radius: 21px;
    margin: auto 6px;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .extend,
.wp-pagenavi .first,
.wp-pagenavi .last {
    line-height: 42px;
    margin: auto 8px;
    transition: 0.3s ease-out;
}
@media screen and (min-width : 601px) {
    .wp-pagenavi .previouspostslink:hover,
    .wp-pagenavi .nextpostslink:hover,
    .wp-pagenavi .first:hover,
    .wp-pagenavi .last:hover {
        color: var(--main-color);
        color: var(--sub-font-color);
    }
}
/* ページナビ_end */
/*--------------------------------
 お問い合わせ　contact
---------------------------------*/
.required-red {
    font-weight: bold;
    color: #de3563;
}
.contact-desc {
    width: 100%;
    position: relative;
    z-index: 1;
}
.contact-desc p {
    font-size: 16px;
    line-height: 1.75;
}
.contact-desc .desc-text {
    margin-bottom: 80px;
}
.cta-box {
    background: var(--sub-font-color);
    border: 2px solid var(--main-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 25px 40px;
}
.cta-box .box-item {
    width: 50%;
}
.cta-box .box-item:nth-child(2) {
    border-left: 2px solid var(--main-color);
}
.cta-box .box-item>p {
    text-align: center;
}
.cta-box .tel-btn {
    background: none;
    border: none;
    border-radius: none;
    height: auto;
}
.contact-formarea {
    background: var(--main-thin-color);
    padding-top: 150px;
    margin-top: -225px;
    padding-bottom: 80px;
}
.contact-form {
    background: var(--sub-font-color);
    box-shadow: 11px 11px 20px 0px rgba(0, 91, 172, 0.08);
    border-radius: 10px;
    padding: 85px 80px;
}
/* メールフォームの装飾 */
.form .form__item .form__title {
    width: 25%;
    font-weight: 600;
}
.form__radio-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 13px;
}
.form .form__item {
    display: flex;
    align-items: center;
    padding: 20px 0px;
    column-gap: 25px;
    border-bottom: 1px solid var(--gray-thin);
}
.form .form__require {
    font-size: 15px;
    font-weight: 500;
    color: #de3563;
    padding-left: 0.4em;
}
.form .form__text {
    width: 40%;
    display: inline-block;
    padding: 13px 9px;
    border: 1px solid #c5c5c5;
}
.form .narrow {
    width: 30%;
}
.form .wide {
    width: 70%;
}
.form input,
textarea {
    font-size: 100%;
}
.form .form__textarea {
    display: inline-block;
    padding: 13px 9px;
    width: 70%;
    height: 200px;
    border: 1px solid #c5c5c5;
    line-height: 1.25;
}
.form textarea {
    font-size: 100%;
}
::placeholder {
    letter-spacing: 0.05em;
}
/* 旧Edge対応 */
::-ms-input-placeholder {
    letter-spacing: 0.05em;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--main-color);
}
/* チェックボタンデザイン */
input[type="checkbox"] {
    appearance: none;
    width: 27px;
    height: 27px;
    border: 1px solid #333;
    background-color: #fff;
    cursor: pointer;
    margin-right: 0.5em;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
input[type="checkbox"]:checked {
    position: relative;
    background-color: var(--main-font-color);
    border-color: var(--main-font-color);
}
input[type="checkbox"]:checked::before {
    content: "✔";
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0;
}
/* チェックボタンデザイン_end */
/* ラジオボタンデザイン */
input[type="radio"] {
    position: relative;
    width: 18px;
    height: 18px;
    border: 2px solid var(--gray-medium);
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    vertical-align: -2px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-right: 0.5em;
    background: var(--sub-font-color);
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
input[type="radio"]:checked {
    border: 2px solid var(--main-color);
}
input[type="radio"]:checked:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--main-color);
}
.form__radio {
    display: flex;
    align-items: center;
    column-gap: 0.5em;
}
/* ラジオボタンデザイン_end */
/* submitボタン */
.submit-btn {
    color: var(--sub-font-color);
    font-size: 16px;
    font-weight: bold;
    background: var(--main-color);
    width: 260px;
    text-align: center;
    border: 2px solid var(--sub-font-color);
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    transition: all .3s;
    padding: 20px 60px;
    border-radius: 999px;
    margin-inline: auto;
    cursor: pointer;
}
.submit-btn:visited,
.submit-btn:link {
    color: var(--sub-font-color);
}
@media screen and (min-width : 601px) {
    .submit-btn:hover {
        opacity: 0.6;
    }
}
.submit-btn[disabled] {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}
.submit-btn:disabled:hover {
    opacity: 1;
    /* transform: none; */
}
/* 無効時のスタイル */
.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}
/* 無効時のhover効果を削除 */
.submit-btn:disabled:hover {
    opacity: 0.6;
}
.submit-btn:disabled:hover:after {
    right: 8%;
    width: 40px;
}
/* submitボタン_end */
.agree_btn {
    margin-bottom: 40px;
    text-align: center;
}
/* 画像認証に関して */
.form .ninsho_area .ninsho_text {
    margin-top: 10px;
}
.ninsho_area input[type="text"] {
    width: 90%;
}
/* 画像認証に関して_end */
/* メールフォームの装飾_end */
/* プライバシーポリシー */
.note_text_desc {
    margin: 60px 0;
}
.policy_scroll {
    width: 100%;
    height: 290px;
    overflow: auto;
    background: var(--sub-font-color);
    border: 1px solid #b3b3b3;
    padding: 35px 25px;
    margin-bottom: 40px;
}
.policy_scroll p {
    letter-spacing: 0.025em;
    line-height: 1.73;
    margin-bottom: 30px;
}
.policy_h3 {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    padding: .5em 0em .5em .8em;
    margin-bottom: 10px;
}
.policy_h3::before {
    position: absolute;
    content: "";
    border-radius: 1em;
    left: 0%;
    top: 5%;
    bottom: 10%;
    width: .2em;
    height: 90%;
    background: var(--main-color);
}
.policy_scroll .list-before {
    margin-bottom: 10px;
}
.policy_scroll ul {
    margin-bottom: 30px;
}
.policy_scroll ul>li {
    margin-bottom: 0.5rem;
}
.policy_scroll a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: opacity .5s;
}
@media screen and (min-width : 601px) {
    .policy_scroll a:hover {
        opacity: 0.6;
    }
}
.text-margin {
    margin-bottom: 15px !important;
}
/* プライバシーポリシー_end */
/*--------------------------------
 ぺージが見つかりません　404
---------------------------------*/
.page-404 p {
    margin-bottom: 80px;
}
.page-404 .btn1-white {
    width: 280px;
}
/* タブ切り替え */
.tab-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0;
}
.tab-label {
    font-size: 18px;
    color: White;
    background: LightGray;
    font-weight: bold;
    white-space: nowrap;
    text-align: center;
    padding: 20px .5em;
    order: -1;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    flex: 1;
}
.tab-label:not(:last-of-type) {
    margin-right: 5px;
}
.tab-content {
    width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 0;
    overflow-y: scroll;
    /*スクロールバー非表示（IE・Edge）*/
    -ms-overflow-style: none;
    /*スクロールバー非表示（Firefox）*/
    scrollbar-width: none;
    overflow-y: hidden;
}
.tab-content::-webkit-scrollbar {
    display: none;
}
.tab-switch:checked+.tab-label {
    background: var(--main-color);
}
.tab-switch:checked+.tab-label+.tab-content {
    height: auto;
    overflow: auto;
    padding: 60px 15px;
    opacity: 1;
    transition: .5s opacity;
}
.tab-switch {
    display: none;
}
.tab-switch:checked+.tab-label:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-top-color: var(--main-color);
    border-width: 14px;
    margin-left: -14px;
}
.tab-switch:checked+.tab-label {
    background: var(--main-color);
    position: relative;
}
/* タブ切り替え_end */
/*--------------------------------
 事業内容　service
---------------------------------*/
.service-business-box .lower-heading {
    margin-bottom: 35px;
}
.service-first {
    margin-bottom: 150px;
}
.service-first p {
    margin-bottom: 60px;
}
.service-first .flex-img img {
    width: 100%;
    aspect-ratio: 478 / 354;
    object-fit: cover;
    max-width: 478px;
    height: auto;
    object-position: 100% 25%;
}
.page-service-desc p {
    background: var(--main-thin-color);
    padding: 30px 50px;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 60px;
}
.anchor-list ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 2em;
    font-weight: 500;
}
.anchor-list ul li:nth-child(1) {
    color: var(--main-color);
}
.service-item {
    margin-bottom: 70px;
}
.service_heading {
    font-size: 30px;
    margin-bottom: 30px;
    padding: .1em 0em .1em 1em;
}
.service_heading::before {
    border-radius: 0px;
}
.flex {
    display: flex;
    column-gap: 40px;
}
.flex .flex-text {
    flex: 1;
}
.flex .flex-img img {
    border-radius: 20px;
}
.flex .flex-text>h4 {
    font-size: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-thin);
    margin-bottom: 30px;
}
.flex .ul-list li {
    margin-bottom: 12px;
}
.individual-cta {
    background: var(--main-thin-color);
    border-radius: 10px;
    padding: 75px 110px;
    margin-top: 150px;
}
.individual-cta>h4 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    text-align: center;
    margin-bottom: 20px;
}
.individual-cta>h4::before,
.individual-cta>h4::after {
    content: "";
    width: 3px;
    height: 30px;
    background: var(--main-font-color);
}
.individual-cta>h4::before {
    margin-right: 30px;
    transform: rotate(-35deg);
}
.individual-cta>h4::after {
    margin-left: 30px;
    transform: rotate(35deg);
}
.individual-cta p {
    margin-bottom: 55px;
    text-align: center;
}
.individual-mailbtn {
    margin-bottom: 55px;
}
.individual-mailbtn .mail-btn {
    max-width: 280px;
    justify-content: center;
    margin-inline: auto;
}
.individual-telarea {
    background: var(--sub-font-color);
    border: 1px solid var(--gray-thin);
    padding: 30px;
    text-align: center;
}
.individual-telarea>h4 {
    font-size: 18px;
    margin-bottom: 12px;
}
.individual-telarea .individual-tel {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 7px;
}
.individual-telarea .individual-tel .tel-number {
    color: var(--main-color);
}
.individual-telarea .tel-number::before {
    width: 26px;
    height: 26px;
}
.individual-telarea .tel-hours {
    margin-bottom: 0;
}
.swiper3 {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
}
.swiper3 .swiper-wrapper {
    transition-timing-function: linear;
}
.swiper3 .swiper-slide img {
    height: auto;
    width: 100%;
}
.service-works .flex {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
}
.service-area .flex-text>h4,
.service-safety .flex-text>h4,
.service-quality .flex-text>h4 {
    border-bottom: none;
    padding-bottom: 0;
}
.service-area .flex-text p {
    font-size: 16px;
}
.service-area .flex {
    align-items: center;
}
.service-area .flex .flex-img img {
    border-radius: 0px;
}
.service-safety {
    background: url(../common_images/service/bg-right.webp)no-repeat;
    object-fit: cover;
    background-position: 100% 55%;
    background-size: 29%;
}
.service-quality {
    background: url(../common_images/service/bg-left.webp)no-repeat;
    object-fit: cover;
    background-position: 0% 90%;
    background-size: 29%;
    padding-bottom: 150px;
    margin-bottom: 200px;
}
.service-safety .safety-text,
.service-quality .quality-text {
    margin-bottom: 55px;
}
/*--------------------------------
 ブライトについて　company
---------------------------------*/
/* 共通 */
.page-company-message .lower-heading,
.page-company-profile .lower-heading,
.page-company-partner .lower-heading {
    margin-bottom: 35px;
}
/* メインビジュアル */
.company-mv {
    width: 100%;
    height: 100svh;
    min-height: 465px;
    display: flex;
    align-items: center;
    justify-content:  center;
    flex-direction: column;
}
.company-mv .flex {
    column-gap: 120px;
    align-items: center;
    justify-content: center;
}
.company-mv .flex .text-area {
    width: 58%;
}
.company-mv .flex .text-area p {
    line-height: 1.88;
}
.company-mv .flex .text-area > h2 {
    font-size: 18px;
    margin-bottom: 1px;
    text-indent: 0.3em;
}
.company-mv .flex .text-area > h3 {
    font-size: 80px;
    font-weight: 500;
    line-height: 1.31;
    text-align: left;
    margin-bottom: 45px;
}
/* パララックス */
.company-parallax {
    width: 100%;
    height: 450px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-image: url(../common_images/service/parallax.webp);
    margin-bottom: 65px;
}
/* アンカーリスト */
.company-anchor {
    margin-bottom: 130px;
}
/* 代表メッセージ */
#message {
    margin-bottom: 0px;
    padding-bottom: 150px;
}
.page-company-message {
    background: url(../common_images/service/message-bg.webp)no-repeat;
    background-size: 28%;
    background-position: 101% 79%;
}
.page-company-message .flex .flex-text>h4 {
    border-bottom: none;
    padding-bottom: 0px;
    font-size: 25px;
    color: var(--main-color);
    margin-bottom: 40px;
}
.page-company-message .flex .flex-text p {
    margin-bottom: 20px;
}
.page-company-message .flex .flex-text p:last-child {
    margin-bottom: 0px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 0.5em;
}
.page-company-message .flex .flex-text p:last-child > span {
    font-size: 13px;
    font-weight: normal;
}
/* 会社概要 */
.page-company-profile {
    background: var(--main-thin-color);
    padding-top: 100px;
    padding-bottom: 300px;
    margin-bottom: 0px;
}
.profile-main {
    background: var(--sub-font-color);
    padding: 76px 110px;
    border-radius: 10px;
    box-shadow: 11px 11px 20px 0px rgba(0, 91, 172, 0.08);
}
/* table */
.table1 {
    width: 100%;
    margin-bottom: 40px;
    border-collapse: collapse;
}
.table1 tr {
    border-bottom: 1px solid var(--gray-thin);
}
.table1 th {
    font-size: 16px;
    letter-spacing: 0.1em;
    text-align: left;
    width: 25%;
    vertical-align: middle;
    font-weight: 600;
    padding: 20px 30px 20px 5px;
}
.table1 td {
    letter-spacing: 0.025em;
    line-height: 2;
    padding: 20px 30px 20px 20px;
}
@media screen and (min-width : 601px) {
    .btn-window:hover {
        color: var(--sub-font-color);
    }
    .btn-window:hover::after {
        background: url(../common_images/service/icon-window-white.svg)no-repeat;
    }
}
/* 協力会社募集 */
.page-company-partner {
    margin-top: -132px;
    padding-bottom: 200px;
}
.partner-cta {
    background: none;
    padding: 0px;
    margin-top: 55px;
}

.page-company-partner-img {
    text-align: center;
    margin: 2em 0;
}

.page-company-partner-img img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
}

/* ol-style */
.ol-list li {
    margin-left: 1.5em;
    padding-left: 0.5em;
    margin-bottom: 0.5em;
}
.ol-list li:last-child {
    margin-bottom: 0;
}
.ol-list li::marker {
    font-weight: bold;
    color: var(--main-color);
}
/* ol-style_end */