@charset "UTF-8";

:root {
    /*------------------------------------------
    Color
  ------------------------------------------*/
    --color-main: #005aa0;
    /* メインカラー */
    --color-accent: #f67b0a;
    /* 強調・必須 */
    --color-text: #333333;
    /* 基本文字色 */
    --color-subtext: #666666;
    /* 補助テキスト */
    --color-border: #c9c9c9;
    /* 枠線 */
    --color-bg: #f5f6f9;
    /* セクション背景 */
    --color-bg-light: #ffffff;
    /* 白背景 */
    --color-bg-gray: #f8f8f8;
    /* 薄グレー背景 */

    /*------------------------------------------
    Font
  ------------------------------------------*/
    --font-eng: 'Poppins', sans-serif;
}

html {
    font-family: "Noto Sans JP", "游ゴシック", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    color: var(--color-text);
}


main {
    margin-top: 137px;
}

@media screen and (max-width: 1100px) {
    main {
        margin-top: 120px;
    }

}

/*-------------------------------------------*/
/*メインイメージ*/
/*-------------------------------------------*/
.mainimg {
    position: relative;
    margin-bottom: 220px;
}

.main_copy {
    display: flex;
    justify-content: end;
    margin-bottom: 40px;
}

.main_copy img {
    margin-right: 30px;
}


.mainimg_img {
    display: flex;
    justify-content: end;
    width: 100VW;
    max-width: 91.6669%;
    margin-left: auto;
}

.mainimg_img img {
    width: 100vw;
}

.scroll_btn {
    position: absolute;
    bottom: 0px;
    left: 48px;
}

/* リンクブロックをインラインブロックにする */
.scroll_btn a {
    display: inline-block;
    /* スムーズに戻るようにtransitionを設定（お好みで） */
    transition: transform 0.3s ease;
}

/* ホバーしたときだけアニメーションを設定 */
.scroll_btn a:hover {
    /* アニメーション名（ふわふわ）、1.6秒かけて、一定の速度で、無限に繰り返す */
    animation: fuwafuwa 1.6s ease-in-out infinite;
}

/* アニメーションの具体的な動き（上下に6px動かす） */
@keyframes fuwafuwa {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
        /* 上に6px動く */
    }

    100% {
        transform: translateY(0);
        /* 元の位置に戻る */
    }
}

@media screen and (min-width: 1500px) {

    .mainimg_img {
        max-width: 90%;
    }
}

@media screen and (max-width: 1000px) {
    .main_copy {
        width: 70%;
        margin-left: auto;
    }
}

@media screen and (max-width: 768px) {
    .mainimg {
        margin-bottom: 100px;
    }

    .mainimg_img {
        max-width: 90%;
    }

    .scroll_btn {
        left: 5%;
    }
}

@media screen and (max-width: 480px) {
    .main_copy {
        width: 95%;
        margin-bottom: 20px;
        margin-right: 5px;
    }

    main {
        margin-top: 100px;
    }

    .main_copy img {
        margin-right: 10px;
    }

    .scroll_btn img {
        width: 30%;
    }
}





/*-------------------------------------------*/
/*わたしたちについて*/
/*-------------------------------------------*/
section.about {
    margin-bottom: 220px;
}

.about .flex_right,
.about .flex_left {
    width: 50%;
}

.flex_right {
    margin-left: 50px;
}

.about .flex_right .heading h2 .eng {
    font-size: 10rem;
    font-family: Poppins;
    display: block;
    line-height: 0.85;
    /* ここから追加 */
    background-image: linear-gradient(to bottom, #418fcb 30%, #005aa0 70%);
    /* 上から下へのグラデーション（色は任意に変えてください） */
    -webkit-background-clip: text;
    /* テキストの形に背景をくり抜く（Safari/Chrome用） */
    background-clip: text;
    /* テキストの形に背景をくり抜く（標準仕様） */
    -webkit-text-fill-color: transparent;
    /* テキスト自体の色を透明にして背景を透けさせる */
}


.about .flex_right .heading h2 .jap {
    font-size: 2.0rem;
    color: var(--color-main);
    font-weight: 500;

}

.about .flex_right .sub_heading h3 {
    font-size: 3.2rem;
    font-feature-settings: "palt";
}

.about .flex_right .main_text p {
    font-feature-settings: "palt";
}

.about .flex_right .heading {
    margin-bottom: 23px;
}

.about .flex_right .sub_heading {
    margin-bottom: 23px;
}

.about .text_block {
    margin-bottom: 20px;
}

.supplement_block {
    border: 1px solid #0770c2;
    border-radius: 5px;
    padding: 15px 17px;
}

.supplement_title h3 .jap {
    font-size: 2.4rem;
    color: #0770c2;
    display: block;
}

.supplement_title h3 .eng {
    font-size: 1.4rem;
    color: #0770c2;
}

.supplement_block .heading {
    border-bottom: 1px dotted #0b83e0;
}

.about .supplement_block .heading {
    margin-bottom: 0px;
    padding-bottom: 12px;
    margin-bottom: 7px;
    gap: 5px;
}

.about .supplement_text p {
    font-size: 1.4rem;
}

.about_img_sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .about_img_sp {
        display: block;
        margin-bottom: 30px;
    }

    .about .flex {
        flex-direction: column-reverse;
    }

    .about .flex_right .heading h2 .eng {
        font-size: 7rem;
    }

    .about .flex_right,
    .about .flex_left {
        width: 100%;
    }

    .flex_right {
        margin-left: 0px;
    }

    .flex_left {
        display: none;
    }



    .about .heading.flex {
        flex-direction: row;
    }

    .about .flex_right .sub_heading {
        margin-bottom: 15px;
    }

    .about .text_block {
        margin-bottom: 15px;
    }

    section.about {
        margin-bottom: 100px;
    }

    .about .supplement_text p {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 480px) {
    .about .flex_right .heading h2 .eng {
        font-size: 6.0rem;
    }

    .about .flex_right .heading h2 .jap {
        font-size: 1.6rem;
    }

    .about .flex_right .sub_heading h3 {
        font-size: 2.2rem;
    }

    .supplement_title h3 .jap {
        font-size: 2.0rem;
    }

    .supplement_title h3 .eng {
        font-size: 1.2rem;
    }

    .about .heading.flex {
        align-items: center;
    }

    .supplement_block {
        padding: 15px 15px;
    }

    .about .supplement_block .heading {
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .about .flex_right .heading,
    .about .flex_right .sub_heading {
        margin-bottom: 15px;
    }

    .about_img_sp {
        margin-bottom: 40px;
    }

    .about .flex_right .main_text p {
        font-feature-settings: "palt";
        line-height: 1.8;
        letter-spacing: 0.05em;
    }
}

/*-------------------------------------------
3つの強み
-------------------------------------------*/
.br-sp {
    display: none;
}

section.strength {
    background-color: var(--color-main);
    padding-top: 138px;
    padding-bottom: 75px;
    clip-path: ellipse(186% 100% at 50% 100%);
    margin-bottom: 200px;
}


.strength .heading h2 {
    text-align: center;
    margin-bottom: 50px;
}

.strength .heading .eng {
    color: #fff;
    font-size: 7.5rem;
    display: block;
    text-align: center;
    font-family: poppins;
    line-height: 0.85;
}

.strength .heading .jap {
    color: #fff;
    font-size: 2.0rem;
    text-align: center;
    font-feature-settings: "palt";
    font-weight: 400;
}

.strength .heading p {
    color: #fff;
    text-align: center;
    margin-bottom: 120px;
}

.strength_contents {
    background-color: #fff;
    max-width: 900px;
    width: 100%;
    margin-inline: auto;
    padding: 65px 50px 60px 60px;
    border-radius: 7px;
    margin-bottom: 80px;
}

.strength_text_block h4 {
    font-size: 3.2rem;
    color: var(--color-main);
    font-feature-settings: "palt";
    border-bottom: 1px dotted #e2e2e2;
    margin-bottom: 13px;
    padding-bottom: 18px;
}

.strength .strength_text_block p {
    color: #333;
    font-size: 1.5rem;
    text-align-last: left;
    margin-bottom: 0px;
    font-feature-settings: "palt";
}

.strength_image_block {
    width: 40%;
}

.strength_text_block {
    width: 50%;
    margin-left: 50px;
}

.strength_contents.contents02 {
    padding: 47px 50px 60px 60px;
}

.strength_contents.contents03 {
    padding: 58px 50px 60px 60px;
}

.contents02 .strength_image_block {
    margin-top: 45px;
}

.contents03 .strength_image_block {
    margin-top: 28px;
}

@media screen and (max-width: 768px) {
    .strength .heading .eng {
        font-size: 5.0rem;
    }

    .strength .heading .jap {
        font-size: 1.5rem;
    }

    .strength .heading h2 {
        margin-bottom: 40px;
    }

    .strength .heading p {
        text-align: left;
        margin-bottom: 60px;
        width: 80%;
        margin-inline: auto;
    }

    .strength .heading p br {
        display: none;
    }

    .strength_contents {
        padding: 30px 20px 40px 20px;
        margin-bottom: 30px;
    }

    .strength .strength_text_block p {
        font-size: 1.3rem;
    }

    .strength_text_block h4 {
        font-size: 2.4rem;
    }

    .strength_text_block h4 br {
        display: none;
    }

    .strength_contents.contents02,
    .strength_contents.contents03 {
        padding: 40px 20px;
    }

    section.strength {
        margin-bottom: 80px;
    }
}

@media screen and (max-width: 480px) {
    section.strength {
        padding-top: 80px;
        clip-path: ellipse(260% 100% at 50% 100%);
    }

    .strength .heading p {
        width: 100%;
        margin-bottom: 50px;
    }


    .strength_contents .flex {
        flex-direction: column;
    }

    .strength_image_block,
    .strength_text_block {
        width: 100%;
    }

    .strength_text_block {
        margin-left: 0px;
        margin-top: 30px;
    }

    .contents02 .strength_image_block,
    .contents03 .strength_image_block {
        margin-top: 0px;
    }

    .strength_image_block {
        display: flex;
        justify-content: center;
        width: 70%;
        margin-inline: auto;
    }

    .strength .heading h2 {
        margin-bottom: 30px;
    }

    .strength .strength_text_block p {
        font-size: 1.3rem;
        font-feature-settings: "palt";
        line-height: 1.8;
        letter-spacing: 0.05em;
    }

    .br-sp {
        display: block;
    }
}




/*-------------------------------------------*/
/*会社概要*/
/*-------------------------------------------*/
.company {
    margin-bottom: 200px;
    margin-top: 100px;
}

.company .heading h2 {
    text-align: center;

}

.company .heading .eng {
    color: #333;
    font-size: 7.5rem;
    display: block;
    text-align: center;
    font-family: poppins;
    line-height: 0.85;
    /* ここから追加 */
    background-image: linear-gradient(to bottom, #418fcb 30%, #005aa0 70%);
    /* 上から下へのグラデーション（色は任意に変えてください） */
    -webkit-background-clip: text;
    /* テキストの形に背景をくり抜く（Safari/Chrome用） */
    background-clip: text;
    /* テキストの形に背景をくり抜く（標準仕様） */
    -webkit-text-fill-color: transparent;
    /* テキスト自体の色を透明にして背景を透けさせる */
}

.company .heading .jap {
    color: var(--color-main);
    font-size: 2.0rem;
    text-align: center;
    font-feature-settings: "palt";
    font-weight: 500;
}

.company .text_wrap {
    width: 59%;
}

.company .text_block {
    width: 90%;
}

.company .image_block {
    width: 50%;
}

.company_heading_jp {
    margin-bottom: 5px;
    display: block;
}

.company_heading_eng {
    font-size: 5.0rem;
    margin-bottom: 10px;
}

.company .heading {
    margin-bottom: 120px;
}

.company ul li {
    display: flex;
    font-size: 1.6rem;
    align-items: center;
    position: relative;
    padding: 0px 0 38px 0;
    margin-bottom: 35px;
    align-items: flex-start;
}

.company ul li.address {
    align-items: start;
}

.company ul li:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6.5em;
    height: 1px;
    background-color: var(--color-main);
}


.company ul li:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 6.5em;
    width: calc(100% - 6.5em);
    height: 1px;
    background-color: #e5e5e5;
}

.company ul li span {
    width: 6.5em;
    display: block;
    font-weight: bold;
}

.company ul li p {
    line-height: 1.2;
    padding-left: 50px;
    width: calc(100% - 6.5em);
    font-size: 1.6rem;
}


.company ul li.address p {
    line-height: 1.5;
}

.image_wrap {
    width: 46.6vw;
    margin-right: calc(50% - 50vw);
}

.image_wrap img {
    margin-right: calc(50% - 50vw);
    width: 100vw;
}

small.company_detail {
    margin-top: 10px;
    display: inline-block;
    font-size: 1.2rem;
}




@media screen and (max-width: 768px) {
    .company .flex {
        /*flex-direction: column;*/
    }


    .company .text_block {
        width: initial;
    }

    .company .heading {
        margin-bottom: 60px;
    }



    .company {
        margin-top: 0px;
        margin-bottom: 80px;
    }

    .company ul li {
        flex-direction: column;
        padding: 0 0 20px 0;
        align-items: flex-start;
        width: 95%;
        margin-bottom: 20px;
    }

    .company ul li span {
        width: 100%;
        margin-bottom: 5px;
        font-weight: bold;
        font-size: 1.5rem;
    }

    .company ul li p {
        width: 100%;
        padding-left: 0px;
        font-size: 1.5rem;
    }

    .company ul li span.company_detail {
        font-size: 1.2rem;
        width: 100%;
    }

    .company .heading .eng {
        font-size: 5rem;
    }

    .company .heading .jap {
        font-size: 1.5rem;
    }






}

@media screen and (max-width: 480px) {
    .company .flex {
        flex-direction: column;
    }

    .image_wrap img {
        margin-right: initial;
        width: initial;
    }

    .company .image_block,
    .image_wrap {
        width: initial;
    }

    .image_wrap {
        margin-right: initial;
    }

    .company .text_block ul li span,
    .company .text_block ul li p {
        font-size: 1.3rem;
    }

    .company ul li {
        padding: 0px 0 20px 0;
        margin-bottom: 20px;
        width: 100%;
        flex-direction: row;
    }

    .company .text_wrap {
        margin-bottom: 50px;
        width: 100%;
    }



    .company ul li:after {
        left: 6em;
        width: calc(100% - 6em);
    }

    .company ul li:before {
        width: 6em;
    }

    .company ul li span {
        width: 8em;
        font-weight: normal;
    }

    .company ul li p {
        width: 100%;
        padding-left: 40px;
    }

    span.company_heading_eng {
        font-size: 3.5rem;
    }

    .company .text_wrap {
        margin-bottom: 20px;
    }

    .company .image_block .image_wrap img {
        border-radius: 7px;
    }
}





/*-------------------------------------------
お問い合わせ
-------------------------------------------*/
section#contact {
    padding: 132px 0 124px;
    background-color: #f2f9fe;
}


.contact .heading h2 {
    text-align: center;

}

.contact .heading .eng {
    color: #333;
    font-size: 7.5rem;
    display: block;
    text-align: center;
    font-family: poppins;
    line-height: 0.85;
    /* ここから追加 */
    background-image: linear-gradient(to bottom, #418fcb 30%, #005aa0 70%);
    /* 上から下へのグラデーション（色は任意に変えてください） */
    -webkit-background-clip: text;
    /* テキストの形に背景をくり抜く（Safari/Chrome用） */
    background-clip: text;
    /* テキストの形に背景をくり抜く（標準仕様） */
    -webkit-text-fill-color: transparent;
    /* テキスト自体の色を透明にして背景を透けさせる */
}

.contact .heading .jap {
    color: var(--color-main);
    font-size: 2.0rem;
    text-align: center;
    font-feature-settings: "palt";
    font-weight: 500;
}

.contact .heading p {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 93px;
}

.contact .heading span.jap {
    margin-bottom: 40px;
    display: block;
}



/*------------------------------------------
  見出しエリア
------------------------------------------*/

.contact .heading .ttl_block {
    width: 40%;
}

.contact .heading .text_block {
    width: 55%;
    margin-top: 25px;
}

.contact .heading .text_block p {
    font-feature-settings: "palt";
}

.contact_main.flex {
    margin-top: 30px;
    gap: 20px;
}

/*==================================================
  電話ブロック / フォーム共通
==================================================*/

.contact_tel_block,
.contactForm {
    background-color: #fff;
}

/*------------------------------------------
  電話ブロック
------------------------------------------*/

.contact_tel_block {
    max-width: 380px;
    max-height: 271px;
    padding: 33px 34px;
    text-align: center;
}

.contact_tel_block img {
    display: block;
    margin: 0 auto 8px;
}

span.con_subtext {
    display: block;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
}

span.con_time {
    display: block;
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 21px;
}

small.con_detail {
    display: inline-block;
    font-size: 1.2rem;
    text-align: center;
    color: #e40000;
    border-bottom: 1px solid #e40000;

}

img.retina.tel_num {
    margin-top: 8px;
}

/*==================================================
  フォーム全体
==================================================*/

.contactForm {
    max-width: 600px;
    width: 100%;
    padding: 44px 40px 70px;
    color: #333;
}

.contactForm .maxWid {
    max-width: 800px;
}

#contactForm p {
    font-size: 1.4rem;
    text-align: center;
}

/*------------------------------------------
  フォーム見出し
------------------------------------------*/

.form_heading {
    display: flex;
    align-items: center;
    gap: 7px;
    padding-bottom: 10px;
    margin-bottom: 35px;
    border-bottom: 1px dotted #b3b3b3;
}

span.form_heading_eng {
    display: block;
    font-size: 1.4rem;
    line-height: 1;
    color: #333;
}

span.form_heading_jap {
    font-size: 3rem;
}

.mail_heading span {
    font-size: 3rem;
    font-weight: 700;
    color: #0089de;
    font-feature-settings: "palt";
}

/*------------------------------------------
  フォーム背景
------------------------------------------*/

.form_bg {
    background-color: #f4f4f4;
    padding: 50px;
    border-radius: 25px;
}

/*==================================================
  フォーム要素（dl / dt / dd）
==================================================*/

.contactForm dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.contactForm dl dt,
.contactForm dl dd {
    font-size: 1.6rem;
    line-height: 1.3em;
    font-weight: normal;
}

.contactForm dl dt {
    width: 38%;
    font-weight: 700;
}

.contactForm dl dd {
    width: calc(63% - 20px);
}

.contactForm dt.label {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
}

.must_marker {
    max-height: 26px;
    padding: 4px 5px;
    font-size: 1.2rem;
    line-height: 1;
    color: #fff;
    background-color: #e21c1c;
}

/*------------------------------------------
  入力フィールド
------------------------------------------*/

.contactForm dl dd input,
.contactForm dl dd textarea {
    width: 100%;
    padding: 5px;
    color: #000;
    background-color: #fff;
    border: 1px solid #c9c9c9;
}

::placeholder {
    color: #d4d4d4;
}

/* メッセージ欄 */

dl.message_area {
    align-items: flex-start;
}

/*==================================================
  送信ボタン
==================================================*/

.contactForm .btn {
    margin-top: 60px;
}

.contactForm .btn input {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding: 14px 70px;
    font-size: 2rem;
    line-height: 1em;
    color: #fff;
    background-color: var(--color-accent);
    border-radius: 100px;
    transition: 0.5s;
    width: fit-content;
}

input[type="submit"]:hover {
    opacity: 0.6;
}

/*==================================================
  フォーム共通リセット
==================================================*/

input[type="button"],
input[type="text"],
input[type="submit"],
input[type="image"],
textarea {
    -webkit-appearance: none;
    border-radius: 0;
}

@media screen and (max-width: 1000px) {
    .contactForm {
        padding: 44px 20px 70px;
    }
}

/*==================================================
  レスポンシブ（768px以下）
==================================================*/

@media screen and (max-width: 1000px) {
    section#contact {
        padding: 80px 0 124px;
    }

    .contact .heading .eng {
        font-size: 5rem;
    }

    .contact .heading .jap {
        font-size: 1.5rem;
    }

    .contact .heading p {
        font-size: 1.3rem;
        margin-bottom: 60px;
    }

    .heading.flex {
        flex-direction: column;
    }

    .contact .heading .ttl_block,
    .contact .heading .text_block {
        width: 100%;
    }

    .contact_main.flex {
        flex-direction: column;
    }

    .contact_tel_block,
    .contactForm {
        max-width: initial;
    }

    .contactForm dl {
        flex-wrap: wrap;
    }

    .contactForm dl dt,
    .contactForm dl dd {
        width: 100%;
        padding: 20px 0;
        font-size: 1.8rem;
    }

    .contactForm dl dt {
        padding-bottom: 0;
    }

    .contactForm dl dd {
        padding-top: 0;
        padding-bottom: 30px;
        border-bottom: 1px solid #fff;
    }

    .contactForm dt.label {
        justify-content: unset;
        gap: 16px;
        padding: 20px 0 10px 0;
    }

    .contactForm .btn {
        margin-top: 50px;
    }

    span.con_subtext {
        font-size: 2.0rem;
    }

    span.form_heading_jap {
        font-size: 2.4rem;
    }

    .form_heading {
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .contactForm dl {
        margin-bottom: 0px;
    }

}

/*==================================================
  レスポンシブ（480px以下）
==================================================*/

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

    .contactForm {
        padding: 40px 20px;
        background-color: #ffffff;
    }

    #contactForm p {
        font-size: 1.2rem;
        font-feature-settings: "palt";
    }

    .contactForm dl dt,
    .contactForm dl dd {
        font-size: 1.6rem;
        padding-bottom: 10px;
    }

    .contactForm .btn input {
        padding: 15px 60px;
        font-size: 1.8rem;
        width: 100%;
    }

    .contactForm .btn {
        margin-top: 30px;
    }

    .contact_heading_jap {
        font-size: 3.5rem;
    }

    span.contact_heading_eng img,
    span.company_heading_eng img,
    span.policy_heading_eng img,
    span.strength_heading_eng img {
        height: 11px;
        margin-bottom: 5px;
    }

    span.form_heading_jap {
        font-size: 2.4rem;
    }

    .contactForm dl {
        margin-bottom: 0px;
    }

    .contact .heading .text_block {
        margin-top: 0px;
    }

    .contact_tel_block {
        padding: 25px 25px;
    }

    .contact .heading p br {
        display: none;
    }
}

@media screen and (max-width: 330px) {
    small.con_detail {
        font-size: 1.1rem;
    }
}