*{
    margin:0;
    padding:0;
}

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

body{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
}

a{
    text-decoration: none;
    transition: .3s;
}
a:hover{
    opacity: .6;
}
li{
    list-style: none;
}
p{
    line-height:40px;
}

.container{
    width:900px;
    margin:0 auto;
}
.container h3{
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    position: relative;
    margin-bottom:5rem;
}
.container h3::after{
    content:"";
    display: block;
    width:120px;
    height:8px;
    background-color: #0064BC;
    position: absolute;
    bottom:-1.25rem;
    left:50%;
    transform: translateX(-50%);
}


/*左から右にふわっと*/
.main_copy > * {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .8s ease, transform .8s ease;
}

.main_copy > *.is-show {
    opacity: 1;
    transform: translateX(0);
    z-index: 10;

}

/*--------------*/




/*header*/
header{
    position: fixed;
    top:0;
    z-index: 9999;
    max-width:100%;
    width:100%;
    padding:2.5rem 0;
    transition:opacity .4s ease,transform .4s ease,background-color .3s ease;
}
.header_container{
    width:1150px;
    margin:0 auto;
    display: flex;
    justify-content: space-between;
}

.header_left h1{
    line-height: 100%;
    padding: 0;
}
.header_left h1 a{
    color:white;
}

.header_right{
    width:60%;
}
.header_right .right_top{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header_right .right_top .header_btn a{
    padding:0 1rem;
    display: inline-block;
    border-radius: 10px;
    font-weight: 700;
}
.header_right .right_top .header_btn:first-of-type a{
    background-color: #0064BC;
    color:white;
    margin-right:10px;
    pointer-events: none;
    cursor: default;
}
.header_right .right_top .header_btn:last-of-type a{
    background-color: white;
    color:#0064BC;
    border:solid 1px #0064BC;
}
.header_right .right_top .header_btn a div{
    display: flex;
    align-items: center;
}
.header_right .right_top .header_btn a div i{
    margin-right:5px;
}

.header_right nav{
    margin-top:1rem;
}
.header_right nav ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_right nav ul li a{
    color:white;
    font-weight: 700;
}



/* #strength以降に入った時のheader */
header.is-active {
    position: fixed;
    opacity: 1;
    transform: translateY(0);
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0,.16);
}

/* 文字色を青に */
header.is-active a,
header.is-active p,
header.is-active nav li a {
    color: #0064BC;
}

/* ロゴ */
header.is-active .header_left h1 a {
    color: #0064BC;
}

/* ボタンの調整（必要なら） */
header.is-active .header_right .right_top .header_btn:first-of-type p {
    color: #fff !important;
}

/*spメニュー非表示*/
.sp_menu{
    display: none;
}
/*------------------------*/




/*メインビュー*/

.slides{
    position: relative;
    width: 100%;
    height:55.56vw;
}
.slides::after{
    content:"";
    position: absolute;
    top:0;
    display: block;
    width:100%;
    height:100%;
    background: linear-gradient(90deg ,rgba(0, 41, 106,.5),rgba(0, 0, 0,.5));
    z-index: 1;
}
.slides .swiper{
    width: 100%;
    height:100%;
}
.slides .swiper .swiper-wrapper img{
    width:100%;
    height:100%;
    object-fit: cover;
}

#main_view .main_copy{
    width:1150px;
    position: absolute;
    top:30%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color:white;
}
#main_view .main_copy .en_copy{
    font-size: 1.563rem;
    font-weight: 800;
}
#main_view .main_copy h2{
    font-size: 5.56vw;
    font-weight: 800;
}


.contact_btn{
    margin-top:2.5rem;
}
.contact_btn a{
    display: inline-block;
    padding:1rem 2.5rem;
    background-color: white;
    color:#0064BC;
    font-weight: 700;
    border-radius: 999px;
}




/*強み*/
#strength{
    padding:5rem 0;
    position: relative;
}
#strength::after{
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(img/grid.png);
    opacity: .4;
    z-index: -1;
}


.strength_wrapper{
    width:100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.strength_wrapper .strength_content{
    width:calc((100% - 2rem) / 2);
    background-color: white;
    border:solid 1px #B8C8D6;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0,.16);
}
.strength_wrapper .strength_content:nth-of-type(n+3){
    margin-top:2rem;
}
.strength_wrapper .strength_content .strength_area{
    width:calc(100% - 3.75rem);
    margin:1.875rem auto;
    display: flex;
    align-items:flex-start;
    justify-content: flex-start;
}

.strength_area i{
    color:#0064BC;
    font-size: 1.25rem;
    margin-top:.3rem;
    margin-right:1rem;
}
.strength_area .strength_info h4{
    font-size: 1.25rem;
}
.strength_area p{
    color:#797979;
    line-height:30px;
    margin-top:1rem;
}





/*専門性*/
#services{
    background-color: #EFF8FF;
    padding:5rem 0;
}
.services_wrapper{
    width:100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.services_wrapper .services_content{
    width:calc((100% - 1.875rem) / 3);
    background-color: white;
    padding:1.875rem 0;
    border:solid 1px #B8C8D6;
    border-radius: 10px;
}
.services_wrapper .services_content .services_area{
    width:calc(100% - 5rem);
    margin:0 auto;
}
.services_wrapper .services_content .services_area .services_icon{
    width:5rem;
    height:5rem;
    background-color: #DCEBF7;
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin:0 auto;
}
.services_wrapper .services_content .services_area .services_icon i{
    color:#0064BC;
    font-size: 1.875rem;
}
.services_area h4{
    text-align: center;
    width:100%;
    font-size: 1.25rem;
    margin:1.25rem 0;
}
.services_area p{
    line-height:30px;
    color:#797979;
}

.services_txt{
    width:100%;
    background-color: #E5F3FF;
    border:solid 1px #B8C8D6;
    border-radius: 10px;
    margin-top:2.5rem;
    padding:1.875rem 0;
}
.services_txt p{
    color:#393939;
    line-height: 30px;
    width:calc(100% - 5rem);
    margin:0 auto;
}
.services_txt p span{
    font-size: 1.25rem;
    color:#0064BC;
    font-weight: 800;
}



/*税理士紹介*/
#tax{
    padding:5rem 0;
    position: relative;
}
#tax::after{
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(img/tax_bg.png);
    background-size: cover;
    background-position: bottom;
    opacity: .1;
    z-index: -1;
}

.representative img{
    width:100%;
    height:440px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0,.16);
}
.representative .managerial_position{
    font-size: 1.25rem;
    color:#0064BC;
    font-weight: 700;
    margin-top:2.5rem;
}
.representative .tax_name{
    font-size: 2.5rem;
    font-weight: 700;
}
.representative .tax_comment{
    width:100%;
    background-color: white;
    border:solid 1px #B8C8D6;
    border-radius: 10px;
    padding:2.5rem 0;
    margin-top:1.25rem;
}
.representative .tax_comment p{
    width:calc(100% - 6.25rem);
    margin:0 auto;
    font-weight: 400;
    color:#393939;
}


.tax_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-top:2.5rem;
} 
.tax_wrapper .tax_content{
    width:calc((100% - 2.5rem) / 2);
    padding:1.875rem 0;
    border-radius: 10px;
    border:solid 1px #B8C8D6;
}
.tax_wrapper .tax_content:first-of-type{
    background-color: #E8F4FF;
}
.tax_wrapper .tax_content:last-of-type{
    background-color: #E8EDFF;
}
.tax_wrapper .tax_content .tax_area{
    width:calc(100% - 6.875rem);
    margin:0 auto;
}
.tax_wrapper .tax_content .tax_area .people_icon{
    width:6.25rem;
    height:6.25rem;
    background-color: #CADFF0;
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin:0 auto;
}
.tax_wrapper .tax_content .tax_area .people_icon i{
    color:#0064BC;
    font-size:2.5rem;
}
.tax_wrapper .tax_content .tax_area .tax_name{
    font-size: 1.563rem;
    font-weight: 700;
    text-align: center;
    margin-top:1.25rem;
    line-height:15px;
}
.tax_wrapper .tax_content .tax_area .managerial_position{
    color:#0064BC;
    text-align: center;
    font-size: 0.875rem;
    line-height:auto;
}
.tax_wrapper .tax_content .tax_area .tax_career{
    color:#797979;
}






/*流れ*/
#flow{
    background: linear-gradient(#EFF8FF,#FFFFFF);
    padding:5rem 0;
}

#flow .flow_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
#flow .flow_content{
    width:calc((100% - 4rem) / 4);
    background-color: white;
    border:solid 1px #B8C8D6;
    border-radius: 10px;
    padding:1.875rem 0;
    position: relative;
}
#flow .flow_content::after{
    content:"\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900; 
    color:#B8C8D6;
    position: absolute;
    top:50%;
    right:-.9rem;
}
#flow .flow_content:last-of-type::after{
    display: none;
}
#flow .flow_content .flow_area{
    width:calc(100% - 2rem);
    margin:0 auto;
    text-align: center;
}
#flow .flow_content .flow_area .flow_number{
    width:3.75rem;
    height:3.75rem;
    background-color: #0064BC;    
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin:0 auto;
}
#flow .flow_content .flow_area .flow_number p{
    color:white;
    font-size: 1.875rem;
    margin-top:-.3rem;
}
#flow .flow_content .flow_area i{
    font-size: 1.875rem;
    margin:1.25rem auto;
    display: block;
    color:#0064BC;
}
#flow .flow_content .flow_area h4{
    font-size: 1.25rem;
}
#flow .flow_content .flow_area .flow_txt{
    text-align: left;
    color:#797979;
    margin-top:1rem;
}





/*事務所概要*/
#office{
    background-image: url(img/office_overview.jpg);
    background-size: cover;
    position: relative;
    padding:5rem 0;
}
#office::after{
    content:"";
    display: block;
    width:100%;
    height:100%;
    background: linear-gradient(#C6E1F7,#FFFFFF);
    opacity: .9;
    position: absolute;
    top:0;
}

#office .container{
    position: relative;
    z-index: 1;
}

.office_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;

}
.office_wrapper div:not(.office_wrapper div:last-of-type){
        width: calc((100% - 2.5rem) / 2);
}

.office_wrapper div table{
    width:100%;
}
.office_wrapper div table tr{
    width:100%;
    display: flex;
    flex-flow: column;
    margin-top:1rem;
    border-radius: 10px;
    border:solid 1px #B8C8D6;
}
.office_wrapper div table .tel_number a,
.contact_guidance a{
    pointer-events: none;
    cursor: default;

}
.office_wrapper div table tr:first-of-type{
    margin-top:0;
}
.office_wrapper div table tr th,
.office_wrapper div table tr td{
    width:calc(100% - 5rem);
    background-color: white;
    padding:0 2.5rem;
}
.office_wrapper div table tr th{
    padding-top:1.25rem;
    text-align: left;
    border-radius: 10px 10px 0 0;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}
.office_wrapper div table tr th i{
    color:#0064BC;
    margin-right:0.625rem;
    font-size: 1rem;
}
.office_wrapper div table tr td{
    padding-bottom:1.25rem;
    border-radius: 0 0 10px 10px;
    color:#393939;
    padding-top:0.625rem;
}


.business_content{
    width:100% !important;
    background-color: #F2F7FC;
    border:solid 1px #B8C8D6;
    border-radius: 10px;
}

.business_content .business_ttl{
    width:calc(100% - 5rem);
    padding:1.25rem 2.5rem 0 2.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}
.business_content .business_ttl i{
    color:#0064BC;
    font-size: 1rem;
    margin-right:0.625rem;
}
.business_content ul{
    width:calc(100% - 5rem);
    padding:0.625rem 1.5rem 1.25rem 3.5rem;
}
.business_content ul li{
    margin-top:10px;
    position: relative;
}
.business_content ul li:first-of-type{
    margin-top:none;
}
.business_content ul li::before{
    content:"";
    display: block;
    width:8px;
    height:8px;
    border-radius: 999px;
    background-color: #0064BC;
    position: absolute;
    top:50%;
    left:-1rem;
    transform: translateY(-50%);
}

.contact_guidance{
    background-color: #0064BC;
    color:white;
    border-radius: 10px;
    margin-top:1.25rem;
    text-align: center;
    padding:1.25rem 0;
}
.contact_guidance p{
    width:calc(100% - 5rem);
    margin:0 auto;
    line-height: 25px;
}
.contact_guidance a{
    font-size: 1.5rem;
    font-family: sans-serif;
    color:white;
    font-weight: 700;
    display: inline-block;
    margin:1.25rem 0 1rem 0;
}
.contact_guidance .open_time{
    font-size: 0.875rem;
    font-weight: 300;
}

.google_map{
    width:100%;
    height:506px;
    border-radius: 10px;
    border:solid 1px #B8C8D6;
    margin-top:2.5rem;
}
.google_map iframe{
    width:100%;
    height:100%;
    border-radius: 10px;
}





/*お問い合わせ*/
#contact{
    padding:5rem 0;
}
#contact h3::after{
    bottom:-3.375rem;
}

#contact .ttl_txt{
    text-align: center;
    color:#393939;
    margin-top:-5rem;
    font-weight: 300;
}
#contact .ttl_txt br{
    display: none;
}

.contact_form{
    margin-top:5rem;
    background-color: white;
    border:solid 1px #B8C8D6;
    border-radius: 10px;
    padding:1.875rem 0;
    box-shadow: 0 0 10px rgba(0, 0, 0,.16);
}
.contact_form form{
    width:calc(100% - 6.25rem);
    margin:0 auto;
}

.contact_form form .form-group{
    display: flex;
    flex-flow: column;
    margin-top:1.25rem;
}
.contact_form form label{
    font-weight: 700;
}
.contact_form form label i{
    color: #0064BC;
    font-size: 1rem;
    margin-right:10px;
}
.contact_form form label .required{
    color:red;
}
.contact_form form input,
.contact_form form textarea{
    padding:0.5rem 1.25rem 0.375rem 1.25rem;
    border:solid 1px #B8C8D6;
    box-shadow: 0 1px 2px rgba(0, 0, 0,.1);
    border-radius: 5px;
    margin-top:5px;
}
.contact_form form textarea{
    height:80px;
}
.contact_form form button{
    width:100%;
    text-align: center;
    padding:0.375rem 0;
    border:none;
    border-radius: 5px;
    background-color: #0064BC;
    color:white;
    font-weight: 700;
    cursor: pointer;
    margin-top:1.25rem;
}
.contact_form form .note{
    text-align: center;
    font-size: 0.875rem;
    font-weight: 300;
    color:#797979;
    margin-top:1.25rem;
    line-height:10px;
}



/*footer*/
footer{
    background-color: #0064BC;
    color:white;
    padding:3.75rem 0;
    text-align: center;
}
footer p{
    font-weight: 300;
    line-height:16px;
}
footer .address{
    font-size: 0.875rem;
    margin-top:0.625rem;
}



/*SP固定ヘッダー*/
/* 初期は非表示（PC） */
.sp_fixed_contact {
    display: none;
}









/*------------------------------------------------------------------
レスポンシブ
------------------------------------------------------------------*/


@media(max-width:1440px){
    .container{
        width:clamp(820px,79.86vw,1150px);
    }


    /*ヘッダー*/
    .header_container,
    #main_view .main_copy{
        width:80%;
    }
    .header_left h1 a{
        font-size: 2.22vw;
    }
    

}

@media(max-width:1200px){
    .container{
        width:clamp(700px,80.08vw,820px);
    }

    /*ヘッダー*/
    .header_container ,
    #main_view .main_copy{
        width: 90%;
    }
    .header_left h1 a{
        font-size: 2.73vw;
    }
    .header_right .right_top .header_btn p,
    .header_right .right_top .header_btn i,
    .header_right nav li{
        font-size: 1.56vw;
    }

    /*メインビュー*/
    .slides{
        height:100vh;
    }


    /*流れ*/
    #flow .flow_wrapper{
        flex-wrap: wrap;
    }
    #flow .flow_content{
        width: calc((100% - 2.5rem) / 2);
    }
    #flow .flow_content::after{
        right: -1.5rem;
    }
    #flow .flow_content:nth-of-type(n+3){
        margin-top:1.5rem;
    }
    #flow .flow_content .flow_area h4 br{
        display: none;
    }
}

@media(max-width:1024px){
    .container h3{
        font-size: 2rem;
    }



    /*メインビュー*/
    #main_view .main_copy{
        top:25%;
    }
    #main_view .main_copy .en_copy{
        font-size: 2.44vw;
    }
    #main_view .main_copy h2{
        font-size: 7.81vw;
    }
    #main_view .main_copy .copy_txt,
    .contact_btn a{
        font-size: 1.56vw;
    }


    /*会社概要*/
    .google_map{
        height: 49.41vw;
    }

}

@media(max-width:768px){
    .container{
        width:90%;
    }
    .container h3 {
        font-size: 1.75rem;
        margin-bottom: 4rem;
    }



    /*ヘッダー*/
    header.is-active{
        padding: 1.5rem 0;
    }
    .header_left h1 a {
        font-size: 4.17vw;
    }


    .header_right{
        display: none;
    }
    .sp_menu{
        display: block;
    }
    /* ハンバーガー */
    .hamburger {
        display: block;
        text-align: center;
        cursor: pointer;
    }
    .hamburger span {
        display: block;
        width: 20px;
        height: 1.5px;
        background: #fff;
        margin: 6px auto;
    }
    .hamburger p {
        font-size: 11px;
        color: #fff;
        font-weight: 400;
        line-height: 100%;
    }
    header.is-active .hamburger span{
        background-color: #0064BC;
    }
    header.is-active .hamburger span,
    header.is-active .hamburger p {
        color: #0064BC;
    }


    /* 背景スクロール制御 */
    body.is-menu-open {
        overflow: hidden;
    }

    /* モーダル本体 */
    .menu_modal {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 10000;
        transition: transform .6s ease;
        display: flex;
        flex-direction: column;
        transform: translateX(100%);
        overflow-y: auto; 
        -webkit-overflow-scrolling: touch; 
    }
    /* 表示時 */
    .menu_modal.is-open {
        transform: translateX(0);
    }
    /*閉じるボタン*/
    .menu_close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 10001;
        padding: 0;
    }
    /* 線 */
    .menu_close span {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 24px;
        height: 2px;
        background: #0064BC;
        display: block;
        transform-origin: center;
    }
    /* 斜めに回転 */
    .menu_close span:first-child {
        transform: translate(-50%, -50%) rotate(45deg);
    }
    .menu_close span:last-child {
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    /* メニューリスト */
    .menu_list {
        margin-top:4rem;
    }
    .menu_list li {
        margin-bottom: 1.25rem;
        text-align: center;
    }
    .menu_list li a {
        font-size: 1.25rem;
        font-weight: 700;
        color: #393939;
        text-decoration: none;
        position: relative;
        display: inline-block;
        padding-bottom: 6px;
        transition:  .3s;

    }
    /* 下線アニメーション（左→右） */
    .menu_list li a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background: #0064BC;
        transition: width .3s ease;
    }
    .menu_list li a:hover{
        color:#0064BC;
        opacity: 1;
    }
    .menu_list li a:hover::after {
        width: 100%;
    }
    /* 電話エリア */
    .menu_tel {
        width: 80%;
        margin: 0 auto;
        border-top: 1px solid #e0e6f0;
        padding-top: 24px;
        text-align: center;
    }
    .menu_tel p {
        font-size: 14px;
        color: #666;
        margin-bottom: 8px;
    }
    .menu_tel a {
        display: block;
        font-size: 24px;
        font-weight: 700;
        color: #0064BC;
        text-decoration: none;
        margin-bottom: 6px;
    }
    .menu_tel span {
        font-size: 13px;
        color: #666;
    }
    .menu_mail {
        padding: 1.25rem 0;
        text-align: center;
    }

    .menu_mail a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 80%;
        padding: 14px 0;
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        background: #0064BC;
        text-decoration: none;
        border-radius: 9999px;
    }

    .menu_mail a i {
        font-size: 1rem;
    }
    header.is-active .menu_mail a{
        color:white;
    }



    /*メインビュー*/
    #main_view .main_copy .en_copy {
        font-size: 3.26vw;
    }
    #main_view .main_copy h2 {
        font-size: 9.11vw;
    }
    #main_view .main_copy .copy_txt, .contact_btn a {
        font-size: 2.08vw;
    }
    #main_view .main_copy .copy_txt{
        line-height: 4.5vw;
    }



    /*強み*/
    .strength_wrapper{
        flex-flow: column;
    }
    .strength_wrapper .strength_content{
        width:100%;
    }
    .strength_wrapper .strength_content:nth-of-type(n+2) {
        margin-top: 1.25rem;
    }


    /*専門性*/
    .services_wrapper{
        flex-flow: column;
    }
    .services_wrapper .services_content{
        width:100%;
    }
    .services_wrapper .services_content:nth-of-type(n+2){
        margin-top:1.25rem;
    }
    .services_area h4 br{
        display: none;
    }


    /*税理士*/
    .representative img{
        height: 52.08vw;
    }


    /*流れ*/
    #flow .flow_wrapper{
        flex-flow: column;
    }
    #flow .flow_content{
        width:100%;
    }
    #flow .flow_content:nth-of-type(n+2){
        margin-top:2.5rem;
    }
    #flow .flow_content::after{
        content: "\f107";
        top: 105%;
        right:50%;
    }
    #flow .flow_content .flow_area .flow_txt{
        text-align: center;
    }



    /*会社概要*/
    .office_wrapper{
        flex-flow: column;
    }
    .office_wrapper div:not(.office_wrapper div:last-of-type) {
        width: 100%;
    }
    .office_wrapper div .business_content{
        margin-top:1.25rem;
    }
    .office_wrapper div table .tel_number a,
    .contact_guidance a{
        pointer-events: all;
        cursor: pointer;
    }


    /*お問い合わせ*/
    #contact .ttl_txt{
        margin-top: -4rem;
    }
    .contact_form{
        margin-top: 4rem;
        padding: 1.25rem 0;
    }
    #contact .ttl_txt{
        font-size: 0.875rem;
    }
    .contact_form form .note{
        line-height:1rem;
    }



    /*SP固定ヘッダー*/
    .sp_fixed_contact {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 56px;
        z-index: 9999;
    }

    .sp_fixed_contact a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
    }
    .sp_fixed_contact a:hover{
        opacity: 1;
    }

    .sp_contact_tel {
        background: #0064BC;
        color: #fff;
    }

    .sp_contact_mail {
        background: #fff;
        color: #0064BC;
        border-top: 1px solid #0064BC;
    }

    .sp_fixed_contact i {
        font-size: 16px;
    }
}


@media(max-width:600px){
    /*税理士紹介*/
    .tax_wrapper{
        flex-flow: column;
    }
    .tax_wrapper .tax_content{
        width:100%;
    }
    .tax_wrapper .tax_content:last-of-type{
        margin-top:1.25rem;
    }


    /*お問い合わせ*/
    #contact .ttl_txt{
        line-height: 1rem;
        margin-top: -3.5rem;
    }
    #contact .ttl_txt br{
        display: block;
    }
    #contact h3::after{
        bottom: -4rem;
    }
}

@media(max-width:425px){
    html{
        font-size: 15px;
    }

    .container h3::after{
        height: 5px;
    }

    #strength,
    #services,
    #tax,
    #flow,
    #office,
    #contact{
        padding:2.5rem 0;
    }



    /*ヘッダー*/
    .header_left h1 a {
        font-size: 5.88vw;
    }



    /*メインビュー*/
    #main_view .main_copy .en_copy {
        font-size: 4.71vw;
    }
    #main_view .main_copy h2 {
        font-size: 10vw;
    }
    #main_view .main_copy .copy_txt, .contact_btn a {
        font-size: 1rem;
    }
     #main_view .main_copy .copy_txt{
        line-height: 30px;
     }
    #main_view .main_copy .copy_txt br{
        display: none;
    }
    .contact_btn a{
        padding:1rem 0;
        width:100%;
        text-align: center;
    }



    /*税理士紹介*/
    .representative .managerial_position{
        font-size: 1rem;
        margin-top: 1.25rem;
    }
    .representative .tax_name{
        font-size: 2rem;
        line-height: 100%;
    }
    .representative .tax_comment{
        padding: 1.25rem 0;
    }
    .representative .tax_comment p{
        width:85%;
    }
    .tax_wrapper .tax_content .tax_area .tax_name{
        font-size: 1.25rem;
    }



    /*流れ*/
    #flow .flow_content .flow_area .flow_txt{
        line-height: 30px;
    }


    /*会社概要*/
    .google_map{
        margin-top:1.25rem;
    }


    /*お問い合わせ*/
    .contact_form{
        padding: 0 0 1.25rem 0;
    }
    .contact_form form{
        width:90%;
    }
    .contact_form form button{
        padding: 1rem 0;
    }


    /*フッター*/
    footer{
        padding: 2.5rem 0;
    }
    footer .copy_right{
        font-size: .8rem;
    }
    footer .address{
        font-size: .7rem;
    }
    
}




@media(max-width:320px){
    html{
        font-size: 14px;
    }


    /*メインビュー*/
    #main_view .main_copy .copy_txt{
        margin-top:2rem;
    }

    /*会社概要*/
    .contact_guidance p br{
        display: none;
    }
}
