@charset "UTF-8";

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

html {
    font-family: "游ゴシック", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;

}


main {
    margin-top: 97px;
}

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

/*-------------------------------------------*/
/*メインイメージ*/
/*-------------------------------------------*/
.mainimg {
    width: calc(100% - 100px);
    margin: 0 auto;
    border-radius: 20px;
    position: relative;
}

.mainimg:after {
    content: "";
    background-color: var(--color-main);
    width: 100%;
    border-radius: 0px 0px 30px 0px;
    position: absolute;
    bottom: -53px;
    display: block;
    height: calc(100% - 45%);
    left: -50px;
    z-index: -2;
    margin-left: auto;
}

.mainimg_img {
    width: 100%;
}

.mainimg_img img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: -1;
    max-height: 710px;
    object-position: top;
}

.mainimg_text {
    position: absolute;
    left: 30px;
    z-index: 1;
    display: flex;
    bottom: 0px;
    align-items: end;
    height: 100%;
    bottom: 30px;
}

.scroll_btn {
    position: absolute;
    bottom: 0px;
    left: -25px;
    z-index: 99;
}

@media screen and (max-width: 768px) {
    .mainimg_text img {
        max-width: 75%;
    }

    .mainimg {
        width: calc(100% - 50px);
    }

    .scroll_btn {
        left: -16px;
    }

    .mainimg:after {
        bottom: -40px;

    }
}

@media screen and (max-width: 480px) {
    .mainimg {
        width: 100%;
    }

    .mainimg_text {
        left: 10px;
        display: flex;
        align-items: flex-start;
        bottom: 0;
        top: 20px;
    }

    .mainimg_text img {
        max-width: 90%;
    }

    .mainimg:after {
        bottom: -25px;
        left: -25px;
    }

    .mainimg_img img {
        border-radius: 0px;
        width: 100%;
        height: 320px;
    }

    .mainimg:after {
        border-radius: 0px 0px 20px 0px;
    }

}

/*-------------------------------------------*/
/*スクロールダウンボタン*/
/*-------------------------------------------*/
/* スクロールボタンのふわふわアニメーション */
.scroll_btn {
    text-align: center;
}

/* .scroll_btn a {
    display: inline-block;
    transform を効かせるため 
    will-change: transform;
    animation: bob 2.4s ease-in-out infinite;
    -webkit-animation: bob 2.4s ease-in-out infinite;
}*/

.scroll_btn img {
    display: block;
    max-width: 100%;
}

/* アニメーション定義 */
@keyframes bob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }

    /* 下に12px移動（調整可） */
}

@-webkit-keyframes bob {

    0%,
    100% {
        -webkit-transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(12px);
    }
}

/* マウスホバー時は少し大きく・動きを強調 */
.scroll_btn a:hover {
    transform: translateY(16px) scale(1.02);
}

/* アクセシビリティ: モーションを減らしたい設定がある場合は無効化 */
@media (prefers-reduced-motion: reduce) {
    .scroll_btn a {
        animation: none;
        -webkit-animation: none;
        transform: none;
    }
}

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

    .scroll_btn img {
        max-height: 65px;
        padding-left: 0;
    }
}

/*-------------------------------------------*/
/*header*/
/*-------------------------------------------*/
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 999;
    padding-top: 35px;
    padding-bottom: 35px;
}

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

.navi ul {
    display: flex;
    gap: 20px;
}

.navi ul li a {
    font-size: 1.6rem;
    display: block;
}

.header .maxWid {
    max-width: 1100px;
}


/*-------------------------------------------*/
/*ハンバーガーメニュー*/
/*-------------------------------------------*/
.nav-toggle {
    display: none;
    width: 25px;
    height: 21px;
    flex-direction: column;
    justify-content: space-between;
    border: none;
    background: none;
    cursor: pointer;
    margin-left: auto;
    z-index: 9999;
    position: fixed;
    right: 20px;
    top: 20px;
}

.nav-toggle span {
    display: block;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: 0.3s;
}

/* ------------------------------
   SP（1100px以下）
------------------------------ */
@media (max-width: 1100px) {
    .navi {
        position: fixed;
        top: 58px;
        right: 0;
        left: 0;
        background: #fff;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;

        transition:
            opacity .25s ease,
            transform .25s ease;
    }

    .navi.is-open {
        opacity: 0.98;
        transform: translateY(0);
        pointer-events: auto;
    }

    .navi ul {
        flex-direction: column;
        padding: 0px;
        gap: 0px;
        width: 100%;
    }

    .navi ul li a {
        font-size: 1.3rem;
        display: block;
        text-align: center;
        font-weight: bold;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background: #333;
        display: block;
    }

    /* 1本目、2本目、3本目の位置を固定 */
    .nav-toggle span:nth-child(1) {
        top: 0;
    }

    .nav-toggle span:nth-child(2) {
        top: 10px;
    }

    .nav-toggle span:nth-child(3) {
        top: 20px;
    }

    /* ハンバーガー → バツ */
    .nav-toggle.is-active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.is-active span:nth-child(2) {
        opacity: 0;
        visibility: hidden;
        display: none;
    }

    .nav-toggle.is-active span:nth-child(3) {
        transform: translateY(-12px) rotate(-45deg);
    }

    .header_logo h1 img {
        height: 18px;
    }

    .header {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .navi li {
        border-bottom: 1px dotted #ddd;
        width: 100%;
        margin: 0 auto;
    }

    .navi li a {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .navi li:nth-of-type(3) {
        margin-bottom: 0;
        border-bottom: none;
    }

    .navi li:first-child {
        border-top: 1px dotted #ddd;
    }

    .navi li:last-child {
        margin-bottom: 0;
        background-color: var(--color-accent);
        display: flex;
        justify-content: center;
        align-items: center;
        border-bottom: none;
        width: 100%;
    }

    .navi li:last-child a {
        color: #fff;
        padding-top: 15px;
        font-weight: bold;
        display: block;
        width: 100%;
    }
}


/*-------------------------------------------*/
/*わたしたちについて*/
/*-------------------------------------------*/
section#about {
    margin-top: 206px;
}

.about .flex {
    justify-content: space-between;
    gap: 30px;
}

.about .text_wrap,
.about .image_block {
    max-width: 50%;
}

.about .heading {
    margin-bottom: 56px;
}

.about_subcopy p {
    font-size: 3.0rem;
    font-weight: bold;
    font-feature-settings: "palt";
    color: #fff;
    margin-bottom: 5px;
}

.about_subcopy span {
    background-color: #830035;
    padding: 7px 5px 2px 8px;
}

.about_subcopy {
    margin-bottom: 30px;
}

@media screen and (max-width: 1000px) {
    .about_subcopy p {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 768px) {
    .about .flex {
        flex-direction: column;
        gap: 0;
    }

    .about .text_wrap,
    .about .image_block {
        max-width: initial;
    }

    .about .text_wrap {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 480px) {
    .about_subcopy span {
        background-color: #830035;
        padding: 4px 2px 4px 3px;
    }

    .about_subcopy p {
        font-size: 1.8rem;
        margin-bottom: 7px;
    }

    .about_subcopy,
    .about .heading {
        margin-bottom: 20px;
    }

    section#about {
        margin-top: 80px;
    }
}


/*-------------------------------------------*/
/*取り扱い保険会社*/
/*-------------------------------------------*/
.supplement {
    margin-top: 50px;
    background-color: #eeeeee;
    border-radius: 10px;
    padding: 28px 50px 15px 40px;
    position: relative;
}

.supplement::after {
    position: absolute;
    content: "";
    background-color: #9b003f;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 7px;
    left: 7px;
    border-radius: 10px;
    border-radius: 10px;
}

.supplement .text_block {
    max-width: 59%;
}

.supplement .headline {
    border-bottom: 1px dotted #d2d2d2;
    display: block;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.supplement .headline h4 {
    font-size: 2.5rem;
}

.supplement .headline h4::before {
    content: "";
    background-image: url(img/check_icon@2x.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 22px;
    height: 22px;
    display: inline-block;
    margin-right: 10px;
}

.supplement .image_box {
    margin-bottom: 13px;
}

.supplement .main_text p {
    font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
    .supplement .flex {
        gap: 20px;
        flex-direction: row;
    }

    .supplement {
        padding: 20px;
    }

    .supplement .text_block {
        max-width: 50%;
    }
}

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

    .supplement .text_block {
        max-width: 100%;
    }

    .supplement .main_text p {
        font-size: 1.3rem;
    }

    .supplement .headline h4 {
        font-size: 1.8rem;
    }

    .supplement .headline h4::before {
        width: 16px;
        height: 16px;
        margin-right: 4px;
    }

    .supplement {
        margin-top: 30px;
    }


}



/*-------------------------------------------*/
/*強み*/
/*-------------------------------------------*/

section#strength {
    position: relative;
    margin: 67px 0 160px 0;
    padding: 100px 0px 100px 0px;
}

section#strength::after {
    background-color: #f5f6f9;
    position: absolute;
    z-index: -1;
    width: 100vw;
    content: "";
    height: 85%;
    top: 229px;
    display: block;
}

.strength_title_block {
    margin-bottom: 130px;
    position: relative;
}

.title_text {
    position: absolute;
    bottom: 8;
    left: 0;
}

.strength_heading_jp {
    font-size: 5.0rem;
    font-feature-settings: "palt";
}

.strength_heading_eng {
    display: block;
    padding-left: 10px;
}

.strength_container.flex {
    justify-content: space-between;
    align-items: flex-start;
    /*段を付ける*/
}

.strength_contents {
    width: calc(33% - 10px);
    background-color: #fff;
    border-radius: 10px;
    position: relative;
}

.strength_contents_wrap {
    padding: 60px 21px;
}

.strength02 {
    margin-top: 55px;
}

.strength03 {
    margin-top: 100px;
}

.num1,
.num2,
.num3 {
    position: absolute;
    top: -26px;
    left: 10px;
}



.strength_image_block {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
}

.strength_heading h3 {
    font-size: 2.0rem;
    font-feature-settings: "palt";
}

.strength_text_block p {
    font-size: 1.5rem;
}

.strength_heading::after {
    content: "";
    display: block;
    background-color: #830035;
    height: 3px;
    width: 40px;
    margin: 20px 0 20px 0;
}

@media screen and (max-width: 1000px) {
    .wid_1000 {
        display: none;
    }

    .strength_heading_jp {
        font-size: 4.0rem;
    }
}

@media screen and (max-width: 768px) {
    section#strength {
        position: relative;
        margin: 70px 0px;
        padding: 70px 0px;
    }

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

    .strength_contents {
        width: 100%;
    }

    .title_text {
        bottom: 0;
    }

    .strength_heading_jp {
        font-size: 3.5rem;
    }

    .strength02,
    .strength03 {
        margin-top: initial;

    }

    .strength01,
    .strength02,
    .strength03 {
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 640px) {
    .title_text {
        bottom: initial;
    }
}

@media screen and (max-width: 480px) {
    .strength_heading h3 {
        font-size: 1.7rem;
    }

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

    .strength_contents_wrap {
        padding: 40px 20px;
    }

    section#strength::after {
        height: 95%;
        top: 100px;
    }

    .num1 img,
    .num2 img,
    .num3 img {
        width: 75%;
    }

    section#strength {
        padding: 70px 0px 0px 0px;
    }

}

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

.company .text_wrap {
    width: 50%;
}

.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: 125px;
}

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

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

.company ul li:before {
    width: 8em;
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 8em;
    height: 1px;
    background-color: #830035;
}


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

.company ul li span {
    width: 8em;
    display: block;
}

.company ul li p {
    line-height: 1.0;
    padding-left: 50px;
    width: calc(100% - 8em);
}


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

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

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


@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;
    }

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

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

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






}

@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;
    }
}

/*-------------------------------------------
各種方針・取り組み
-------------------------------------------*/
section#policy {
    margin-bottom: 120px;
}

.policy_heading_jap {
    font-size: 5.0rem;
    margin-bottom: 10px;
    font-feature-settings: "palt";
}

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

.policy .heading {
    margin-bottom: 88px;
}

.policy .item_heading span {
    font-size: 2.4rem;
    font-weight: bold;
    display: flex;
    gap: 5px;
    line-height: 1;
}

.ttl_block {
    margin-bottom: 16px;
}

.policy .item_heading span::before {
    content: "";
    display: inline-block;
    width: 5px;
    background-color: var(--color-main);
    height: auto;
}

.item_content.flex {
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.policy_item {
    border-bottom: 1px dotted #e2e2e2;
    padding-bottom: 31px;
    margin-bottom: 46px;
}

.item_btn {
    margin-right: 50px;
}

.item_heading {
    margin-bottom: 4px;
}


@media screen and (max-width: 768px) {
    .item_content.flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .item_heading {
        margin-bottom: 15px;
    }

    .item_btn img {
        width: 90%;
    }

    .policy_item {
        padding-bottom: 31px;
        margin-bottom: 31px;
    }

}

@media screen and (max-width: 480px) {
    span.policy_heading_jap {
        font-size: 3.5rem;
    }

    .policy .item_heading span {
        font-size: 1.8rem;
    }

    .policy .heading {
        margin-bottom: 50px;
    }

    section#policy {
        margin-bottom: 100px;
    }

    .item_heading {
        margin-bottom: 5px;
    }

    .item_content.flex {
        gap: 10px;
    }
}



/*==================================================
  お問い合わせセクション
==================================================*/

section#contact {
    padding: 87px 0 108px;
    background-color: #f5f6f9;
}

.contact_heading_jap {
    font-size: 5rem;
}

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

.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: 242px;
    padding: 33px 58px;
    text-align: center;
}

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

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

span.con_time {
    display: block;
    font-size: 1.8rem;
    text-align: center;
}

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: #9b003f;
}

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: bold;
}

.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: #439999;
    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: 768px) {

    .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;
    }

    .contactForm .btn input {
        /* padding: 20px 40px;*/
    }
}

/*==================================================
  レスポンシブ（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;
    }
}