@charset "UTF-8";
/* CSS Document */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
html {
    font-size: 10px;
    visibility: hidden;
}
html.wf-active, html.loading-delay {
  visibility: visible;
}
body{
  font-family: 'Noto Sans JP', sans-serif;
  color: #1a1a1a;
  font-size: 1.5rem;
  line-height: 1.5;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
  display: block;
}
ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #1a1a1a;
}
a:visited {
  color: #1a1a1a;
}
a:link {
  color: #1a1a1a;
}
/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #1a1a1a;
  text-decoration: none;
}
/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #1a1a1a; 
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
input, select {
  vertical-align: middle;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* 共通
------------------------------*/
.pc { display: block; }
.sp { display: none; }
.wrap {
    width: 94%;
    max-width: 1200px;
    margin: 0 auto;
}
.font_bold {
    font-weight: 700;
}
.font_en {
    font-family: 'Montserrat', sans-serif;
}
.flex {
    display: flex;
}
section {
    padding: 10.5rem 0 12rem;
}
.section_tit {
    font-size: 40px;
    text-align: center;
}
.section_tit img.tit {
    margin-right: 20px;
}
.section_tit_bottom {
    margin-bottom: 5.5rem;
}
.section_sub_tit {
    font-size: 2.5rem;
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 6rem;
}
.page_txt {
    font-size: 18px;
    line-height: 2;
}
.scroll_container {
    position: relative;
}
.scroll_container .scrollDots {
    position: absolute;
    bottom: -23px;
    left: 50%;
    transform: translateY(0) translateX(-50%);
    -webkit- transform: translateY(0) translateX(-50%);
    z-index: 1;
}
.ank {
    padding-top: 80px;
    margin-top: -80px;
}
@media only screen and (max-width: 1000px) {
    .ank {
        padding-top: 70px;
        margin-top: -70px;
    }
}
#page-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
    z-index: 9999;
}
#page-top a {
	display: block;
	width: 50px;
}
@media only screen and (max-width: 750px) {
    #page-top {
		right: 15px;
		bottom: 15px;
	}
	#page-top a {
		width: 35px;
	}
}
.green{
    color: #00A73C;
}

/* Bownowフォーム
------------------------------*/
.contact_area .form-preview-dl input[type="text"],
.contact_area .form-preview-dl input[type="password"] {
    border: none;
    height: 60px;
    padding: 10px 20px;
    border-radius: 5px;
}

/* ボタン
------------------------------*/
.btn a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48rem;
    height: 8rem;
    padding-left: 1rem;
    margin: auto;
    font-size: 2.5rem;
    color: #fff;
    font-weight: 700;
    background: #00A73C;
    border: 1px solid #00A73C;
    border-radius: 4rem;
    transition-duration: .3s;
    box-sizing: border-box;
}
.btn a:hover {
    color: #00A73C;
    background: #fff;
    opacity: 1;
    transition-duration: .3s;
}
.btn a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 5%;
    bottom: 0;
    width: 45px;
    height: 45px;
    margin: auto;
    background: url("../img/icon_btn.svg") no-repeat center center;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.btn a:hover:before {
    background: url("../img/icon_btn_hover.svg") no-repeat center center;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.dlbtn a {
    position: relative;
    display: -webkit-flex;
    display: -ms-flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: 550px;
    height: 64px;
    padding-left: 2em;
    margin: auto;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 600;
    background: #E50012;
    border: 1px solid #E50012;
    -webkit-border-radius: 40px;
    border-radius: 40px;
    transition-duration: .3s;
}
.dlbtn a:hover {
    color: #E50012;
    background: #fff;
    opacity: 1;
    transition-duration: .3s;
}
.dlbtn a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 5%;
    bottom: 0;
    width: 45px;
    height: 45px;
    margin: auto;
    background: url("../img/icon_dlbtn.svg") no-repeat center center;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.dlbtn a:hover:before {
    background: url("../img/icon_dlbtn_hover.svg") no-repeat center center;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

/* サンクスページ
------------------------------*/
.contact_thanks {
    text-align: center;
}
.contact_thanks .thanks_tit {
    font-size: 30px;
}
.contact_thanks .thanks_txt {
    font-size: 18px;
    line-height: 1.8;
    margin: 4em 0;
}
.contact_thanks .btn a {
    padding-left: 0;
}
.contact_thanks .btn a:before {
    content: none;
}

@media only screen and (max-width: 750px) {
    .contact_thanks .thanks_tit {
        font-size: 22px;
    }
    .contact_thanks .thanks_txt {
        font-size: 14px;
        line-height: 1.8;
        margin: 3em 0;
    }
}

/* アニメーション
------------------------------*/
@-webkit-keyframes scrollFade {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes scrollFade {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes scrollDown {
    0% {
        visibility: hidden;
    }
    50% {
        visibility: hidden;
    }
    100% {
        visibility: visible;
    }
}
@keyframes scrollDown {
    0% {
        visibility: hidden;
    }
    50% {
        visibility: hidden;
    }
    100% {
        visibility: visible;
    }
}
.scrollDots {
    -webkit-animation-name: scrollFade;
    animation-name: scrollFade;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;  
}
.scrollDots.flex {
    justify-content: center;
}
.scrollDots .sc_dots {
    /*visibility: hidden;*/
    background-color: #00A73C;
    height: 4px;
    width: 4px;
    margin-bottom: 10px;
    border-radius: 4px;
    -webkit-animation-name: scrollDown;
    animation-name: scrollDown;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;   
}
.scrollDots .sc_dots.no_anm {
    margin-bottom: 0;
}
.scrollDots .dots01 {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}
.scrollDots .dots02 {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}
.scrollDots .dots03 {
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s;
}
.scrollDots .dots04 {
    -webkit-animation-delay: 2.4s;
    animation-delay: 2.4s;
}
.scrollDots .dots05 {
    -webkit-animation-delay:3s;
    animation-delay:3s;
}

/* スライダー
  ------------------------------*/
#loopslider,
#loopslider2 {
    margin: 0 auto;
    width: 100%;
    height: 100px!important;
    text-align: left;
    position: relative;
    overflow: hidden;
}
#loopslider2 {
    height: 28rem!important;
}
#loopslider2 img{
    height: 100%;
}
.loopslider_wrap,
.loopslider_wrap2{
    width: 11436px!important;
}
#loopslider ul,
#loopslider2 ul {
    width: 3800px!important;
    height: auto;
    float: left;
    display: inline-block;
    overflow: hidden;
}
#loopslider ul li,
#loopslider2 ul li {
    width: 50%;
    height: auto;
    float: left;
    display: inline;
    overflow: hidden;
}
#loopslider ul li img,
#loopslider2 ul li img{
    width: auto;
}
@media only screen and (max-width: 767px){
    .loopslider_wrap,
    .loopslider_wrap2 {
        width: 5120px!important;
    }
    #loopslider ul,
    #loopslider2 ul {
        width: 2560px!important;
    }
    #loopslider ul li img,
    #loopslider2 ul li img{
        width: 1280px;
    }
    #loopslider {
        height: 50px!important;
    }
    #loopslider2 {
        height: 18rem!important;
    }
}
#loopslider ul:after,
#loopslider2 ul:after {
    content: ".";
    height: 0;
    clear: both;
    display: block;
    visibility: hidden;
}

/* ヘッダー
------------------------------*/
header {
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 200;
}
#header {
    padding: 0 20px;
}
.header {
    height: 80px;
    align-items: center;
    justify-content: center;
}
.main_logo {
    width: 240px;
    margin-right: auto;
}
.pc_menu_list {
    flex-wrap: wrap;
    justify-content: center;
    flex: 7;
}
.pc_menu:after {
    content: "／";
    color: #00A73C;
    margin: 0 1em;
}
.pc_menu:last-child:after {
    content:none;
}
.pc_menu a {
    font-size: 15px;
    transition-duration: .3s;
}
.pc_menu a:hover {
    color: #00A73C;
    transition-duration: .3s;
}
.hd_tel_box {
    text-align: center;
    margin-left: auto;
}
.hd_tel_box .tel a {
    font-size: 28px;
    line-height: 1;
    display: block;
    transition-duration: .3s;
}
.hd_tel_box .tel a:hover {
    color: #00A73C;
    transition-duration: .3s;
}
.hd_tel_box .tel_txt {
    font-size: 13px;
}

/* スマホメニュー
------------------------------*/
.spmenu {
	display: none;
}
#sp_menu {
    width: 100%;
    height: 100vh;
    padding: 3em;
    background-color: #fff;
	display: none;
    overflow-y: scroll;
}
#sp_menu .sp_nav {
    margin-top: 2em;
}
#sp_menu .sp_nav:first-child {
    margin-top: 0;
}
#sp_menu a {
    font-size: 20px;
    color: #1a1a1a;
}
#sp_menu a:before {
    content: "／";
    color: #00A73C;
    margin-right: 1em;
}
#sp_menu .in {
	overflow: auto;
}
.sp_nav_tel {
    margin-top: 5em;
}
#sp_menu .sp_nav_tel a {
    font-size: 32px;
}
#sp_menu .sp_nav_tel a:before {
    content: none;
}
#sp_menu .in .close {
    font-size: 20px;
    color: #1a1a1a;
    margin-top: 2em;
}

/* トップ
------------------------------*/
.top_image {
    height: auto;
    padding: 6rem 0 7.6rem;
    background-image: url("../img/img_bg01.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    text-align: center;
}
.top_image .wrap {
    width: 100%;
}
.top_image .pict {
    width: 90%;
    margin: 0 auto;
}
.top_image .pict img.top_sp {
    display: none;
}
.top_txt {
    font-size: 24px;
    text-align: center;
}
.top_txt img {
    padding: 0 10px;
}
.main_tit {
    font-size: 82px;
    text-align: center;
    line-height: 1;
}
.main_tit span.font_en {
    font-size: 82px;
}
.main_tit span.green {
    font-size: 100px;
    color: #00A73C;
}
.sub_tit {
    font-size: 20px;
    color: #fff;
    text-align: center;
    background-color: #1A1A1A;
    padding: 5px 10px;
    margin-top: 15px;
}
.top_container .btn {
    margin-top: 5.5rem;
}
.top_container .top_scroll {
    display: flex;
    justify-content: center;
    padding: 15px 0;
}
.top_ber {
    justify-content: center;
    font-size: 3.5rem;
    text-align: center;
    color: #fff;
    background-color: #1a1a1a;
    padding: 2.6rem 0 2.7rem;
}
.top_ber .small {
    font-size: 1.7rem;
}
.specialist_container .pict {
    margin: 7rem auto;
    text-align: center;
}
.about_container {
    background-image: url("../img/img_bg02.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    text-align: center;
}
.about_tit {
    font-size: 70px;
    line-height: 1;
    color: #00A73C;
}
.about_sub_tit {
    font-size: 3.2rem;
    margin-bottom: 3rem;
}
.about_sub_tit span.font_en {
    font-size: 32px;
}
.about_sub_tit span.small {
    font-size: 2.5rem;
}
.task_container {
    text-align: center;
    background: #F3F3F3;
}
.task_container .section_tit{
    font-size: 5rem;
}
.task_container .section_tit span.inline {
    margin: 0 1rem;
}
.task_container .pict {
    margin-bottom: 30px;
}
.task_container .page_txt {
    margin-bottom: 30px;
}
.task_container .task_box {
    margin-top: 40px;
}
.task_container .task_box .task_box_pict {
    margin-top: 30px;
}
.move_box {
    width: 570px;
    height: 320px;
    margin: 0 auto;
}
.move_box iframe {
    width: 100%;
    height: 100%;
}
.can_container {
    padding-bottom: 11rem;
}
.can_container .page_txt {
    text-align: center;
}
.can_list_area {
    flex-wrap: wrap;
    gap: 3rem;
    margin: 5rem auto 6rem;
}
.can_list_area .can_list {
    width: calc((100% - (3rem * 2)) / 3);
    background-color: #F7F7F7;
    border-radius: 1rem;
    padding: 3rem 2.5rem;
    box-sizing: border-box;
}
.can_list_area .can_list .can_list_tit {
    font-size: 2.5rem;
    color: #00A73C;
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.4rem;
    border-bottom: dotted 1px #aaa;
}
.can_list_area .can_list .can_list_txt {
    font-size: 1.5rem;
    line-height: 1.533;
}
.can_container .btn a{
    padding-left: 0;
}
.can_container .btn a:before{
    display: none;
}
.jirei_container {
    background-color: #E2F2E9;
}
.jirei_container .page_txt_bottom {
    text-align: center;
    margin-bottom: 3.6rem;
}
.jirei_box {
    padding: 4rem;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 3px 3px 8px 0 rgb(205,227,215,0.2);
    justify-content: space-between;
}
.jirei_box:first-child {
    margin-top: 0;
}
.jirei_box:nth-child(2n+1) {
    flex-direction: row-reverse;
}
.jirei_box .pict,
.jirei_box .jirei_data_box {
    width: 48%;
}
.jirei_data_tit {
    font-size: 25px;
    margin-bottom: 1rem;
}
.jirei_item_box + .jirei_item_box {
    margin-top: 2.7rem;
}
.jirei_data_box .page_txt{
    margin-bottom: 3rem;
    font-size: 1.5rem;
}
.jirei_data_box .page_txt a{
    color: #0064C7;
    text-decoration: underline;
}
.jirei_item_tit {
    font-size: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: dotted 1px #aaa;
    display: flex;
    align-items: center;
    gap: .9rem;
}
.jirei_item_txt {
    font-size: 1.5rem;
    line-height: 1.533;
}
.person_box {
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}
.person_data_box {
    width: 100%;
    margin-right: 100px;
}
.person_data_tit {
    font-size: 30px;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: dotted 1px #aaa;
}
.person_data_txt {
    font-size: 15px;
    line-height: 1.8;
}
.person_box .pict {
    width: 100%;
    max-width: 454px;
}
.conversion_container {
    padding: 8rem 0;
    background-image: url("../img/img_bg03.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
@media screen and (max-width: 1100px) {
    .task_container .section_tit{
        font-size: 4.166666666666666vw;
    }
}
@media screen and (min-width: 751px) {
    .conversion_container {
        background: url("../img/img_bg03.jpg") no-repeat fixed center center /cover;
    }
}
@media screen and (max-width: 750px) {
    .task_container .pict{
        padding-bottom: 5vw;
    }
    .task_container .pict img{
        max-width: none;
        width: 200vw;
    }
    .top_image {
        padding: 6.666666666666667vw 0 8vw;
        background-image: url("../img/img_bg01_sp.jpg");
        background-repeat: no-repeat;
        background-position: top center;
        background-size: cover;
        text-align: center;
    }
    .task_container .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
        background: #aaa;
        border-radius: 0;
        height: 1rem;
        top: -.1rem;
        left: 0;
    }
    .task_container .simplebar-scrollbar.simplebar-visible::before {
        opacity: 1;
    }
    .task_container .simplebar-track {
        background: #EBEBEB;
        height: 1rem !important;
    }
}
.conversion_box {
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    margin-bottom: 30px;
}
.conversion_box .btn {
    position: relative;
}
.conversion_box .btn:after {
    content: "";
    width: 170px;
    height: 170px;
    background-image: url("../img/icon_sodan.svg");
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%) translateX(0);
    -webkit- transform: translateY(-50%) translateX(0);
}
.conversion_container .tel {
    text-align: center;
}
.conversion_container .tel a {
    font-size: 50px;
    transition-duration: .3s;
}
.conversion_container .tel a:hover {
    color: #00A73C;
    transition-duration: .3s;
}
.conversion_container .tel_txt {
    font-size: 20px;
    text-align: center;
}
.it_container {
    padding: 5rem 0;
    text-align: center;
    background-color: #00A73C;
    position: relative;
}
.it_container:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3.3rem 2.9rem 0 2.9rem;
    border-color: #00A73C transparent transparent transparent;
    position: absolute;
    bottom: -3.3rem;
    left: 50%;
    transform: translateY(0) translateX(-50%);
    -webkit- transform: translateY(0) translateX(-50%);
}
.it_tit {
    font-size: 5rem;
    color: #fff;
}
.it_container .small{
    font-size: 3.3rem;
    color: #fff;
    font-weight: 900;
}
.hojokin_container {
    padding: 7.6rem 0 5.4rem;
    background-color: #F3F3F3;
    text-align: center;
}
.description_container{
    background: #F3F3F3;
}
.description_box {
    padding: 5rem 4.5rem;
    background-color: #fff;
    border-radius: 1rem;
    border: .3rem solid #00A73C;
}
.description_tit {
    font-size: 4.3rem;
    color: #00A73C;
    text-align: center;
    margin-bottom: 2rem;
}
.description_txt {
    font-size: 1.6rem;
    line-height: 1.625;
}
.cost_tit {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3.2rem;
}
.cost_tit .inline{
    margin: 0 1rem;
}
.cost_container{
    padding: 7.8rem 0 12rem;
    background: #F3F3F3;
}
.cost_container .box{
    display: flex;
    justify-content: space-between;
    padding: 5rem 4.5rem;
    margin-bottom: 7rem;
    background: #fff;
    border: .3rem solid #1A1A1A;
    border-radius: 1rem;
}
.cost_container .box .left{
    width: 40.833333333333336%;
}
.cost_container .box .left .title03{
    margin-bottom: 1.6rem;
    font-size: 2.5rem;
}
.cost_container .box .left li{
    font-size: 2rem;
    line-height: 1.6;
}
.cost_container .box .left li .green{
    font-weight: 700;
}
.cost_container .box .right{
    width: 55%;
    padding-left: 5%;
    border-left: .2rem solid #1A1A1A;
    box-sizing: border-box;
}
.cost_container .box_g{
    border-radius: 1rem;
    overflow: hidden;
}
.cost_container .box_g + .box_g{
    margin-top: 7rem;
}
.cost_container .box_g .title03{
    padding: 2.8rem 0 2.2rem;
    font-size: 3.7rem;
    color: #fff;
    text-align: center;
    font-weight: 700;
    background: #00A73C;
}
.cost_container .box_g .box_g_in{
    padding: 7rem 6rem 7.6rem;
    background: #fff;
}
.cost_container .box_g .box_g_in .contents + .contents{
    padding-top: 5rem;
    margin-top: 5rem;
    border-top: .1rem solid #E6E6E6;
}
.cost_container .box_g .box_g_in .title04{
    margin-bottom: 2rem;
    font-size: 2.8rem;
    font-weight: bold;
}
.cost_container .box_g .box_g_in .contents .title_under{
    margin-bottom: 2rem;
    font-size: 1.6rem;
}
.cost_container .box_g .box_g_in .contents ul li{
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.55;
}
.cost_container .box_g .box_g_in .contents .box_gray_area{
    display: flex;
    flex-wrap: wrap;
    gap: 2.7rem;
}
.cost_container .box_g .box_g_in .contents .box_gray_area .box_gray{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34.2rem;
    height: 12rem;
    padding: 0 2.2rem;
    background: #F7F7F7;
    border-radius: 1rem;
    box-sizing: border-box;
}
.cost_container .box_g .box_g_in .contents .box_gray_area .box_gray p{
    font-size: 1.6rem;
    text-align: center;
    font-weight: 600;
    line-height: 1.625;
}
.cost_container .box_g .box_g_in .contents .p_under{
    margin-top: 1.2rem;
}
.cost_container .box_g .box_g_in .contents .green{
    font-size: 2.3rem;
    font-weight: 700;
}
.cost_container .box_g .box_g_in .contents .txt p{
    font-size: 1.6rem;
    line-height: 1.625;
}
.cost_container .box_g .box_g_in .colomn02{
    display: flex;
    justify-content: space-between;
    margin-top: 5rem;
}
.cost_container .box_g .box_g_in .colomn02 .colomn_in{
    max-width: 50.7rem;
    width: 47%;
}
.cost_container .box_g .box_g_in .colomn02 .colomn_in .title04{
    margin-bottom: 2rem;
    font-size: 1.8rem;
}
.cost_container .box_g .box_g_in .btn02{
    margin-top: 1.4rem;
}
.cost_container .box_g .box_g_in .btn02 a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 14rem;
    height: 3.4rem;
    margin-left: auto;
    font-size: 1.2rem;
    font-weight: 600;
    border: .1rem solid #1A1A1A;
    border-radius: 1.7rem;
}
.cost_container .box_g .box_g_in .colomn02 .colomn_in .btn02 a img{
    width: 1.747rem;
}
.cost_container .box_g .box_g_in .txt.fwb{
    margin-bottom: 2rem;
}
.cost_container .box_g .box_g_in .txt.fwb dl{
    display: flex;
    font-size: 1.8rem;
    font-weight: 700;
}
.cost_container .box_g .box_g_in .txt.fwb dl dt{
    width: 8em;
}
.cost_container .box_g .box_g_in .txt.fwb dd span{
    font-weight: 400;
}
.cost_container .box_g .box_g_in ol li{
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.55;
    list-style: none;
}
.cost_container .box_g .box_g_in ol li span{
    font-weight: 400;
}
.cost_container .box_g .box_g_in ol + p{
    margin-top: 2.8rem;
    font-size: 1.6rem;
}
#cboxOverlay {
  background: rgba(51, 51, 51, 0.8);
}

#cboxClose {
  top: 0.5rem;
  right: 0.5rem;
  bottom: auto;
  width: 3rem;
  height: 3rem;
  background: url(../img/icon_close.svg) no-repeat center center;
  background-size: 100% auto;
}
#cboxClose:hover {
  background-position: center center;
  opacity: 0.7;
}

.reason_container {
    background-color: #EBEBEB;
}
.reason_tit {
    font-size: 40px;
    text-align: center;
    margin-bottom: 30px;
}
.reason_tit strong {
    margin: 0 0.5em;
}
.reason_tit span.red {
    color: #E50012;
}
.reason_area {
    padding: 40px;
    box-shadow: 3px 3px 8px 0 rgb(0,0,0,0.2);
    background-color: #fff;
    border-radius: 10px;
}
.reason_box {
    align-items: flex-end;
    flex-direction: row-reverse;
}
.reason_box .pict {
    width: 100%;
    max-width: 354px;
}
.reason_box .reason_data_box {
    width: 100%;
    margin-left: 20px;
    padding-bottom: 30px;
}
.reason_data_tit {
    font-size: 60px;
    line-height: 1.3;
}
.reason_data_tit span {
    color: #00A73C;
}
.reason_data_txt {
    font-size: 20px;
    line-height: 1.8;
    margin: 20px 0;
}
.reason_data_small_txt {
    font-size: 15px;
    line-height: 1.8;
    color: #E50012;
}
.support_container{
    padding: 9rem 0 11rem;
}
.support_container .section_tit{
    margin-bottom: 8rem;
}
.support_container .pict {
    margin-bottom: 4rem;
    text-align: center;
}
.support_container .pict + p{
    font-size: 1.6rem;
    text-align: center;
}

.adshin_container{
    padding: 8rem 0 8.6rem;
}
.adshin_container .logo {
    width: 29.2rem;
    margin: 0 auto 3rem;
}
.adshin_tit {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
}
.adshin_tit span.font_en {
    font-size: 5rem;
    line-height: 1;
    color: #00A73C;
}
.adshin_container .btn{
    margin-top: 5.6rem;
}
.adshin_container .btn a{
    padding-left: 0;
    font-size: 2.2rem;
}
.adshin_container .btn a:before{
    display: none;
}

.faq_container{
    padding: 10rem 0;
}
.faq_tit {
    font-size: 70px;
    line-height: 1;
    color: #00A73C;
    text-align: center;
}
.faq_sub_tit {
    font-size: 25px;
    margin-top: .3rem;
    margin-bottom: 6rem;
    text-align: center;
}
.faq_list + .faq_list {
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: dotted .1rem #aaa;
}
.faq_list_q span.font_en,
.faq_list_a span.font_en {
    font-size: 30px;
    line-height: 1;
    color: #00A73C;
    margin-right: 2rem;
}
.faq_list_q {
    font-size: 25px;
    margin-bottom: 10px;
}
.faq_list_a {
    font-size: 15px;
    line-height: 2;
    padding-left:2.6em;
    text-indent:-2.6em;
}
.contact_container {
    padding: 8rem 0;
    background-color: #EBEBEB;
}
.contact_tit {
    font-size: 70px;
    line-height: 1;
    color: #00A73C;
    text-align: center;
}
.contact_sub_tit {
    font-size: 25px;
    margin-top: 10px;
    margin-bottom: 30px;
    text-align: center;
}
.contact_container .tel {
    text-align: center;
}
.contact_container .tel a {
    font-size: 50px;
    transition-duration: .3s;
}
.contact_container .tel a:hover {
    color: #00A73C;
    transition-duration: .3s;
}
.contact_container .tel_txt {
    font-size: 20px;
    text-align: center;
}
.contact_area {
    margin-top: 30px;
}
.contact_txt {
    font-size: 18px;
    margin-top: 30px;
}
.contact_txt_top {
    margin-top: 0;
}
.contact_area li + li{
    margin-top: 2rem;
}
.contact_area label{
    font-size: 1.8rem;
}
.contact_area input[type="text"],
.contact_area input[type="email"],
.contact_area input[type="tel"] {
    width: 100%;
    height: 60px;
    font-size: 18px;
    padding: 1.6rem 1.8rem;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
    margin-top: 10px;
}
.contact_area input::placeholder{
    color: #AAA;
}
.contact_area .flex {
    justify-content: space-between;
}
.contact_area .box {
    width: 48.33%;
}
.contact_area textarea {
    width: 100%;
    height: 320px;
    font-size: 18px;
    padding: 1.6rem 1.8rem;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
    margin-top: 10px;
}
.privacy_box {
    margin: 0 0 3rem;
  text-align: left;
}
.privacy_box p{
    margin-bottom: 1rem;
    font-size: 1.8rem;
}
.privacy_box_border{
    background: #fff;
    border: .1rem solid #AAA;
    border-radius: .5rem;
    overflow: hidden;
}
.privacy_box_inn {
    height: 170px;
    padding: 2rem 2rem 0;
}
.privacy_box_inn p{
    font-size: 1.8rem;
    line-height: 2;
}
.privacy_box .simplebar-scrollbar::before {
    background: #aaa;
    border-radius: 0;
    width: 2rem;
    margin-left: -.15rem;
    margin-top: -.2rem;
}
.privacy_box .simplebar-scrollbar.simplebar-visible::before {
    opacity: 1;
}
.privacy_box .simplebar-track {
    background: #EBEBEB;
    width: 2rem !important;
}
.check {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0 6rem;
  font-size: 1.8rem;
  text-align: center;
}
.check label {
  padding-left: 1.5rem;
  cursor: pointer;
}
.check input[type=checkbox] {
  position: relative;
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
  border: 0.2rem solid #aaa;
  background: #fff;
  border-radius: 0.3rem;
  appearance: none;
  cursor: pointer;
}
.check input[type=checkbox]:checked:before {
  position: absolute;
  top: -0.1rem;
  left: 0.5rem;
  -webkit-transform: rotate(50deg);
          transform: rotate(50deg);
  width: 0.5rem;
  height: 1.2rem;
  border-right: 0.2rem solid #1A1A1A;
  border-bottom: 0.2rem solid #1A1A1A;
  border-radius: .1rem;
  content: "";
}
.contact_btn {
    width: 100%;
    max-width: 300px;
    margin: 4rem auto 0;
    box-sizing: border-box;
}
.contact_btn input[type="submit"] {
    width: 100%;
    height: 80px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    border: solid 1px #00A73C;
    border-radius: 100vh;
    background-color: #00A73C;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-appearance: none;
    transition-duration: .3s;
}
.contact_btn input[type="submit"]:hover {
    color: #00A73C;
    background-color: #fff;
    transition-duration: .3s;
}

/* フッター
  ------------------------------*/
.ft_nav_list {
    justify-content: center;
    padding: 15px 0;
}
.ft_nav a {
    font-size: 14px;
    transition-duration: .3s;
}
.ft_nav a:after {
    content: "／";
    color: #00A73C;
    margin: 0 1em;
}
.ft_nav:last-child a:after {
    content: none;
}
.ft_nav a:hover {
    color: #00A73C;
    transition-duration: .3s;
}
.ft_logo {
    text-align: center;
    background-color: #00A73C;
    padding: 30px 0;
}
.copyright {
    font-size: 11px;
    text-align: center;
    padding: 15px 0;
}

@media screen and (max-width: 1180px) {
    .main_logo {
        width: 200px;
    }
    .hd_tel_box .tel a {
        font-size: 24px;
    }
    .top_ber_area {
        display: block;
        text-align: left;
    }
    .top_ber_area .top_ber_list:last-child {
        margin-left: 0;
    }
    .it_tit{
        font-size: 4.166666666666666vw;
    }
}

@media screen and (max-width: 1000px) {
/* 共通
------------------------------*/
    section {
        padding: 50px 0;
    }
    .section_tit {
        font-size: 25px;
    }
    .section_tit img.tit {
        width: 20%;
    }
    .section_tit_bottom {
        margin-bottom: 20px;
    }
    .section_sub_tit {
        font-size: 18px;
    }
    .page_txt {
        font-size: 14px;
    }

/* ヘッダー
------------------------------*/
    .pc_menu_list,
    .hd_tel_box {
        display: none;
    }
    #header {
        display: flex;
        align-items: center;
    }
    header,
    .header {
        height: 70px;
    }
    .main_logo{
        width: 29.698666666666668vw;
    }
    
/* スマホメニュー
------------------------------*/
    .spmenu {
        max-width: 8.2rem;
        max-height: 4.4rem;
        width: 10.933333333333334vw;
		height: 5.866666666666666vw;
		display: block;
        margin-left: auto;
		cursor: pointer;
	}
	.spmenu li {
		position: relative;
		height: 30px;
	}
	.spmenu span {
		display: inline-block;
		box-sizing: border-box;
		position: absolute;
		left: 0;
		width: 100%;
		height: 3px;
		background-color: #00A73C;
		transition: all .5s;
	}
	.spmenu span:nth-of-type(1) {
		top: 1px;
	}
	.spmenu span:nth-of-type(2) {
		top: 14px;
	}
	.spmenu span:nth-of-type(3) {
		bottom: 0px;
	}
	.spmenu.act span:nth-of-type(1) {
		transform: translateY(11px) rotate(-30deg);
	}
	.spmenu.act span:nth-of-type(2) {
		opacity: 0;
	}
	.spmenu.act span:nth-of-type(3) {
		transform: translateY(-14px) rotate(30deg);
	}

/* メイン
------------------------------*/
    .top_image .pict {
        width: 100%;
    }
    .top_image .pict img.top_pc {
        display: none;
    }
    .top_image .pict img.top_sp {
        display: block;
        width: 100%;
    }
    .top_ber {
        font-size: 18px;
    }
    .about_tit {
        font-size: 50px;
    }
    .about_sub_tit {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .about_sub_tit span.font_en {
        font-size: 2.2rem;
    }
    .about_sub_tit span.small {
        font-size: 1.4rem;
    }
    .can_list_area .can_list .can_list_tit {
        font-size: 4.186046511627907vw;
    }
    .can_list_area .can_list .can_list_txt {
        font-size: 14px;
    }
    .jirei_data_tit {
        font-size: 18px;
    }
    .jirei_item_tit {
        font-size: 16px;
    }
    .jirei_item_txt {
        font-size: 13px;
    }
    .person_data_box {
        margin-right: 50px;
    }
    .person_data_tit {
        font-size: 20px;
    }
    .person_data_txt {
        font-size: 14px;
    }
    .conversion_box {
        margin-top: 40px;
    }
    .conversion_box .btn:after {
        width: 140px;
        height: 140px;
        right: -170px;
    }
    .conversion_container .tel a {
        font-size: 40px;
    }
    .conversion_container .tel_txt {
        font-size: 16px;
    }
    .it_container {
        padding: 30px 0;
    }
    .it_tit {
        font-size: 30px;
    }
    .description_box {
        padding: 30px;
    }
    .description_tit {
        font-size: 25px;
    }
    .description_txt {
        font-size: 14px;
    }
    .cost_tit {
        font-size: 25px;
    }
    .cost_txt {
        font-size: 18px;
    }
    .cost_txt strong {
        font-size: 45px;
    }
    .reason_tit {
        font-size: 30px;
    }
    .reason_data_tit {
        font-size: 30px;
    }
    .reason_data_txt {
        font-size: 16px;
    }
    .reason_data_small_txt {
        font-size: 13px;
    }
    .support_container{
        padding: 10vw 0;
    }
    .support_container .pict + p{
        font-size: 3.7209302325581395vw;
    }
    .important_txt {
        font-size: 18px;
    }
    .support_sub_tit {
        font-size: 20px;
    }
    .support_txt {
        font-size: 14px;
    }
    .period_table tr td {
        font-size: 18px;
    }
    .adshin_tit {
        font-size: 20px;
    }
    .adshin_tit span.font_en {
        font-size: 40px;
    }
    .faq_tit,
    .contact_tit {
        font-size: 50px;
    }
    .faq_sub_tit,
    .contact_sub_tit {
        font-size: 16px;
    }
    .faq_list_q span.font_en,
    .faq_list_a span.font_en {
        font-size: 25px;
    }
    .faq_list_q {
        font-size: 18px;
        padding-left: 1.8em;
        text-indent: -1.8em;
    }
    .faq_list_a {
        font-size: 14px;
        padding-left: 2.3em;
        text-indent: -2.3em;
    }
    .contact_sub_tit {
        margin-bottom: 15px;
    }
    .contact_container .tel a {
        font-size: 40px;
    }
    .contact_container .tel_txt {
        font-size: 16px;
    }
    .contact_txt {
        font-size: 14px;
    }
    .contact_area input[type="text"],
    .contact_area input[type="email"],
    .contact_area textarea {
        font-size: 14px;
    }
    .contact_area textarea {
        height: 200px;
    }
    .contact_btn input[type="submit"] {
        height: 60px;
    }

/* フッター
------------------------------*/
    .ft_nav_list {
        display: none;
    }
    .ft_nav {
        margin-top: 10px;
    }
    .ft_nav:first-child {
        margin-top: 0;
    }
    .ft_nav a:after {
        content: none;
    }
    .ft_nav a:before {
        content: "／";
        color: #00A73C;
        margin-right: 1em;
    }
    .ft_logo {
        padding: 20px 0;
    }
    .ft_logo img {
        width: 180px;
    }
}

@media (max-width: 750px) {
/* 共通
------------------------------*/
    .pc { display: none; }
    .sp { display: block; }
    .section_tit {
        font-size: 20px;
    }
    .section_tit img.tit {
        width: 35%;
        margin-right: 10px;
    }
    .section_sub_tit {
        font-size: 14px;
    }
    .page_txt {
        text-align: left;
    }
    section{
        padding: 10vw 0;
    }

/* ボタン
------------------------------*/
    .btn a {
        height: 10.666666666666668vw;
        font-size: 3.3333333333333335vw;
    }
    .btn a:before {
        width: 6.133333333333333vw;
        height: 6.133333333333333vw;
    }
    .dlbtn a {
        width: auto;
        height: 60px;
        padding: 0 1.5em;
    }
    .dlbtn a:before {
        content: none;
    }

/* スマホメニュー
------------------------------*/
    #sp_menu {
        padding: 9.333333333333334vw 8vw;
    }
    #sp_menu a {
        font-size: 4vw;
    }
    #sp_menu .sp_nav + .sp_nav {
        margin-top: 10.666666666666668vw;
    }
    .sp_nav_tel {
        margin-top: 21.333333333333336vw;
    }
    #sp_menu .sp_nav_tel a {
        font-size: 8vw;
    }
    #sp_menu .sp_nav_tel_txt {
        font-size: 2.933333333333333vw;
    }
    #sp_menu .in .close {
        font-size: 14px;
    }

/* メイン
------------------------------*/
    .top_ber {
        font-size: 3.7209302325581395vw;
        display: block;
    }
    .top_ber .small{
        font-size: 2.7906976744186047vw;
    }
    .top_ber_area {
        text-align: center;
    }
    .specialist_container .pict {
        margin: 15px 0;
    }
    .about_tit {
        font-size: 40px;
    }
    .task_container .section_tit img {
        display: none;
    }
    .task_container .section_tit_bottom img {
        display: inline-block;
    }
    .task_container .section_tit span.inline {
        margin: 0;
        font-size: 2.4rem;
    }
    .task_container .page_txt {
        margin-bottom: 15px;
    }
    .task_container .task_box {
        margin-top: 30px;
    }
    .task_container .task_box .task_box_pict {
        margin-top: 30px;
    }
    .can_list_area{
        gap: 2vw;
    }
    .can_list_area .can_list {
        width: calc((100% - 2vw) / 2);
        padding: 4vw;
    }
    .can_container{
        padding-bottom: 5vw;
    }
    .can_container .page_txt {
        text-align: left;
    }
    .jirei_box {
        display: block;
        padding: 20px;
    }
    .jirei_box .pict,
    .jirei_box .jirei_data_box {
        width: 100%;
    }
    .jirei_box .pict {
        margin-bottom: 15px;
    }
    .jirei_container .page_txt_bottom {
        text-align: left;
    }
    .person_box {
        display: block;
    }
    .person_box .pict {
        width: auto;
        padding: 0 10%;
        margin-bottom: 15px;
    }
    .conversion_box {
        margin: 20px 0;
    }
    .person_data_box {
        margin-right: 0;
    }
    .conversion_box .btn:after {
        content: none;
    }
    .conversion_tel_box {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .conversion_txt {
        width: 70px;
        height: 70px;
        font-size: 14px;
        font-weight: 700;
        color: #00A73C;
        background-color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
    }
    .conversion_container .tel a {
        font-size: 30px;
    }
    .conversion_container .tel_txt {
        font-size: 14px;
    }
    .it_container {
        padding: 20px 0;
    }
    .it_container:after {
        border-width: 1.5rem 1.4rem 0 1.4rem;
        bottom: -1.5rem;
    }
    .it_tit {
        font-size: 5.116279069767442vw;
    }
    .it_container .small{
        font-size: 3.7209302325581395vw;
    }
    .description_box {
        padding: 20px;
    }
    .description_tit {
        font-size: 20px;
    }
    .cost_tit {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .cost_tit img {
        display: none;
    }
    .cost_tit span.inline {
        margin: 0;
    }
    .cost_container .box{
        flex-wrap: wrap;
        padding: 5vw;
        margin-bottom: 10vw;
        border: .2rem solid #1A1A1A;
    }
    .cost_container .box .left{
        width: 100%;
    }
    .cost_container .box .left .title03{
        margin-bottom: 1em;
        font-size: 1.8rem;
    }
    .cost_container .box .left li{
        font-size: 1.4rem;
    }
    .cost_container .box .right{
        width: 100%;
        padding-left: 0;
        padding-top: 5vw;
        margin-top: 5vw;
        border-left: none;
        border-top:  .2rem solid #1A1A1A;
    }
    .cost_container .box_g + .box_g{
        margin-top: 10vw;
    }
    .cost_container .box_g .title03{
        padding: 0.5em 0;
        font-size: 2rem;
    }
    .cost_container .box_g .box_g_in{
        padding: 5vw;
    }
    .cost_container .box_g .box_g_in .contents + .contents{
        padding-top: 5vw;
        margin-top: 5vw;
    }
    .cost_container .box_g .box_g_in .title04{
        margin-bottom: 1em;
        font-size: 1.8rem;
    }
    .cost_container .box_g .box_g_in .contents .title_under{
        margin-bottom: 1em;
        font-size: 1.4rem;
    }
    .cost_container .box_g .box_g_in .contents ul li{
        font-size: 1.4rem;
    }
    .cost_container .box_g .box_g_in .contents .box_gray_area{
        gap: 3vw;
    }
    .cost_container .box_g .box_g_in .contents .box_gray_area .box_gray{
        display: block;
        width: 100%;
        height: auto;
        padding: 5vw;
    }
    .cost_container .box_g .box_g_in .contents .box_gray_area .box_gray p{
        font-size: 3.5vw;
        text-align: left;
    }
    .cost_container .box_g .box_g_in .contents .p_under{
        margin-top: 1em;
    }
    .cost_container .box_g .box_g_in .contents .green{
        font-size: 1.8rem;
    }
    .cost_container .box_g .box_g_in .contents .txt p{
        font-size: 1.4rem;
    }
    .cost_container .box_g .box_g_in .colomn02{
        flex-wrap: wrap;
        margin-top: 5vw;
    }
    .cost_container .box_g .box_g_in .colomn02 .colomn_in{
        max-width: none;
        width: 100%;
    }
    .cost_container .box_g .box_g_in .colomn02 .colomn_in + .colomn_in{
        margin-top: 5vw;
    }
    .cost_container .box_g .box_g_in .colomn02 .colomn_in .title04{
        margin-bottom: 1em;
        font-size: 1.4rem;
    }
    .cost_container .box_g .box_g_in .txt.fwb{
        margin-bottom: 1em;
    }
    .cost_container .box_g .box_g_in .txt.fwb dl{
        font-size: 1.4rem;
    }
    .cost_container .box_g .box_g_in ol li{
        font-size: 1.4rem;
        line-height: 1.8;
    }
    .cost_container .box_g .box_g_in ol + p{
        margin-top: 1rem;
        font-size: 1.4rem;
    }
    .reason_tit {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .reason_tit img {
        display: none;
    }
    .reason_tit strong {
        margin: 0;
    }
    .reason_area {
        padding: 20px;
    }
    .reason_box {
        display: block;
    }
    .reason_box .pict {
        width: auto;
        max-width: none;
        padding: 0 15%;
    }
    .reason_box .reason_data_box {
        margin-left: 0;
        padding-bottom: 15px;
    }
    .reason_data_tit {
        font-size: 20px;
    }
    .reason_data_txt {
        font-size: 14px;
        margin: 10px 0;
    }
    .important_box {
        padding: 20px;
        margin-bottom: 40px;
    }
    .important_txt {
        font-size: 16px;
    }
    .support_sub_tit {
        font-size: 18px;
        text-align: center;
    }
    .support_sub_tit span {
        text-align: left;
    }
    .support_sub_tit span:before,
    .support_sub_tit span:after {
        content: none;
    }
    .support_txt {
        text-align: left;
    }
    .period_table {
        display: none;
    }
    .support_list_area {
        border: solid 1px #00A73C;
        box-sizing: border-box;
        text-align: center;
        margin-top: 30px;
    }
    .support_list_tit {
        font-size: 16px;
        color: #fff;
        background-color: #00A73C;
        padding: 10px;
        box-sizing: border-box;
    }
    .support_list li {
        font-size: 16px;
    }
    .support_list_data {
        background-color: #D1F1CB;
        padding: 10px;
    }
    .support_list_txt {
        padding: 10px;
    }
    .adshin_container .logo {
        width: 200px;
        margin-bottom: 20px;
    }
    .adshin_tit {
        font-size: 18px;
        text-align: left;
        line-height: 1.8;
    }
    .adshin_tit span.font_en {
        font-size: 35px;
    }
    .adshin_container .btn{
        margin-top: 10vw;
    }
    .adshin_container .btn a{
        width: 70vw;
        font-size: 3.3333333333333335vw;
    }
    .adshin_container .btn a:before{
        display: none;
    }
    .faq_tit,
    .contact_tit {
        font-size: 40px;
    }
    .contact_container .tel a {
        font-size: 30px;
    }
    .contact_container .tel_txt {
        font-size: 14px;
    }
    .contact_area label{
        font-size: 1.4rem;
    }
    .contact_area li + li{
        margin-top: 3vw;
    }
    .contact_area .flex{
        flex-wrap: wrap;
    }
    .contact_area .box{
        width: 100%;
    }
    .contact_area .box + .box{
        margin-top: 3vw;
    }
    .privacy_box p{
        font-size: 1.4rem;
    }
    .privacy_box_inn p{
        font-size: 1.2rem;
        line-height: 1.8;
    }
    .top_container .btn {
        margin-top: 7.199999999999999vw;
    }
    .btn a {
        width: 64vw;
    }
    .move_box {
        width: auto;
    }
    .faq_list_q span.font_en,
    .faq_list_a span.font_en {
        margin-right: 1.2rem;
    }
    .privacy_box .simplebar-track{
        width: 1rem !important;
    }
    .privacy_box .simplebar-scrollbar::before{
        width: 1rem !important;
    }
}