@charset "utf-8";
@media screen and (max-width: 750px) {
  /*=============================
		common
===============================*/
  /* wrap */
  .wrap {
    width: 100%;
    min-width: 1px;
    margin: 0 auto;
    padding: 0 5.3vw;
  }
  /* view */
  .pc_view, .sp_none {
    display: none !important;
  }
  .sp_view {
    display: block !important;
  }
  .flex_wrap {
    flex-wrap: wrap;
  }
  .sp_head_menu {
    display: block;
  }
    /*=============================
		tui_menu
===============================*/
  #tui_menu {
      display: none;
    }
    
    
  /*-------*/
  header .sp_head_menu #btn_nav_wrapper {
    position: absolute;
    right: 0vw;
    margin: auto;
    width: 20vw;
    height: 20vw;
    padding-top: 3.6vh;
    padding-left: 4.0vw;
    cursor: pointer;
    box-sizing: border-box;
    z-index: 1001;
    background-color: #e75858;
    transition: all .3s ease;
  }
  header .sp_head_menu #btn_nav_wrapper .btn_nav, header .sp_head_menu #btn_nav_wrapper .btn_nav::after, header .sp_head_menu #btn_nav_wrapper .btn_nav::before {
    width: 11.0vw;
    height: 1.0vw;
  }
  header .sp_head_menu #btn_nav_wrapper .btn_nav {
    position: relative;
    transform: translateY(5px);
    background: #FFFFFF;
    transition: all .3s ease;
  }
  header .sp_head_menu #btn_nav_wrapper .btn_nav.active {
    background: rgba(255, 255, 255, 0);
    transition: all 0s .3s;
  }
  header .sp_head_menu #btn_nav_wrapper .btn_nav::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 14px;
    background: #FFFFFF;
    transition: bottom .3s .3s linear, transform .3s, background .3s ease;
  }
  header .sp_head_menu #btn_nav_wrapper .btn_nav::after {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    background: #FFFFFF;
    transition: top .3s .3s, transform .3s, background .3s ease;
  }
  header .sp_head_menu #btn_nav_wrapper .btn_nav.active:after {
    top: 0;
    background: #FFFFFF;
    transform: rotate(35deg);
    transition: top .3s, transform .3s .3s;
  }
  header .sp_head_menu #btn_nav_wrapper .btn_nav.active:before {
    bottom: 0;
    background: #FFFFFF;
    transform: rotate(-35deg);
    transition: bottom .3s, transform .3s .3s;
  }
  header .sp_head_menu #btn_nav_wrapper:hover {
    opacity: 0.7;
    transition: all .3s ease;
  }
  header .sp_head_menu #btn_nav_wrapper:hover .btn_nav, header .sp_head_menu #btn_nav_wrapper:hover .btn_nav::after, header .sp_head_menu #btn_nav_wrapper:hover .btn_nav::before {
    background: #FFFFFF;
  }
  header .sp_head_menu #btn_nav_wrapper:hover .btn_nav.active {
    background: rgba(255, 255, 255, 0);
  }
  /*nav*/
  header nav#hnav {
    z-index: -1;
    position: fixed;
    top: 0;
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    color: #FFFFFF;
    background-color: #e75858;
    opacity: 0;
    transition: right .7s ease, opacity .4s linear;
    overflow-y: auto;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }
  header nav#hnav .nav_wrap {
    position: relative;
    height: 100%;
    min-height: 139vw;
  }
  header nav#hnav.active {
    right: 0;
    opacity: 1;
    z-index: 1000;
  }
  header nav#hnav .menu {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    margin: 28vw auto 20vw;
  }
  header nav#hnav .menu li {
    margin-bottom: 8vw;
    padding-left: 16vw;
  }
  header nav#hnav .menu li:last-child {
    margin-bottom: 0;
  }
  header nav#hnav .menu li a {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 5.8vw;
    padding-left: 0;
    display: inline-block;
  }
  header nav#hnav .menu li a::before {
    content: '―';
    margin-right: 2.0vw;
  }
  header nav#hnav .menu li a::after {
    display: none;
  }
  header nav#hnav .menu li, header nav#hnav .contact_box {
    transform: translate3d(0, 2vw, 0);
    opacity: 0;
    transition: transform .55s ease, opacity .55s linear;
  }
  header nav#hnav.active .menu li, header nav#hnav.active .contact_box {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  header nav#hnav.active .menu li:nth-child(1) {
    transition-delay: .25s;
  }
  header nav#hnav.active .menu li:nth-child(2) {
    transition-delay: .32s;
  }
  header nav#hnav.active .menu li:nth-child(3) {
    transition-delay: .39s;
  }
  header nav#hnav.active .menu li:nth-child(4) {
    transition-delay: .46s;
  }
  header nav#hnav.active .menu li:nth-child(5) {
    transition-delay: .53s;
  }
  header nav#hnav.active .menu li:nth-child(6) {
    transition-delay: .60s;
  }
  header nav#hnav .contact_box {
    width: 80%;
    display: block;
    position: relative;
    margin: 0 auto;
    padding-bottom: 21.3vw;
    box-sizing: border-box;
    padding: 4.0vh 5.0vw;
    border-radius: 10px;
    background-color: #FFFFFF;
  }
  header nav#hnav .contact_box .btn_mail {
    display: block;
    width: 100%;
    font-size: 5.4vw;
    font-weight: bold;
    text-align: center;
    color: #FFFFFF;
    margin: 0 auto 3.0vw;
    padding: 2.0vh 0;
    background-color: #e75858;
    border: 1px solid #fefefe;
    box-sizing: border-box;
    border-radius: 10px;
    transition: all .3s ease;
  }
  header nav#hnav .contact_box .tel_box a {
    font-size: 9.6vw;
    font-weight: bold;
    color: #000000;
    letter-spacing: 0.025em;
    font-family: 'Josefin Sans';
    margin-left: 10px;
  }
  header nav#hnav .tel_box a::before {
    content: '　';
    display: inline-block;
    width: 24px;
    height: 40px;
    font-size: auto;
    background: url("../images/ic_tel.png") no-repeat 0px 0px;
    background-size: 20px auto;
  }
  header nav#hnav .contact_box .tel_box p {
    font-size: 4.2vw;
    text-align: center;
    color: #333333;
  }
  header nav#hnav .contact_box .tel_box p span {
    color: #FFFFFF;
    font-weight: bold;
    padding: 0.2vh 1.2vw 0.3vh;
    margin-left: 1.5vw;
    background-color: #e75858;
  }
  /*-------------------------------------------*/
  #header {
    width: 100%;
    display: block;
    min-height: 9.0vh;
    justify-content: flex-start;
    padding: 0vh 0px;
    margin: 0px auto;
    position: relative;
  }
  #header h1 {
    float: left;
    width: 32vw;
    margin-right: 3.0vw;
    margin-top: 1.0vh;
    margin-left: 2.5vw;
    margin-bottom: 1.0vh;
  }
  #header h1 img {
    display: block;
    width: 100%;
    height: auto;
  }
  #header #denkyu {
    float: left;
    width: 39.0vw;
    height: 6.2vh;
    font-size: 3.4vw;
    line-height: 1.3em;
    padding: 1.6vw 1.0vw 2.0vw;
    border-radius: 2.0vw;
    margin: 1.4vh 0px 0px 0px;
  }
  #header #head_tel {
    display: none;
  }
  #header #head_maillist {
    display: none;
  }
  #head_nav {
    display: none;
  }
  #mainvisual {
    clear: both;
    width: 100%;
  }
  #google_kuchikomi {
    width: 100%;
    padding: 1.0vh 0px;
    background-color: #e75858;
  }
  #google_kuchikomi img {
    display: inline-block;
    margin-right: 5px;
  }
  #google_kuchikomi p {
    display: inline-block;
    font-size: 4.0vw;
    line-height: 1.5em;
  }
  #google_kuchikomi a {
    padding: 1.0vh 4.5vw 1.0vh;
    background-size: 4.0vw auto, 4.0vw auto;
  }
  #google_kuchikomi strong {
    font-size: 5.0vw;
  }
  #google_kuchikomi span {
    font-size: 4.0vw;
    margin-left: 1.0vw;
  }
  #mv_con {
    display: none;
  }
  #bg_mv {
    display: none;
  }
  #bg_mv_sp {
    display: block;
    width: 100%;
    height: auto;
  }
  .wrap_contact {
    clear: both;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    padding: 2.0vh 0px 3.0vh;
    min-height: auto;
    background: url("../images/bg_gra01.jpg") repeat-x;
    background-size: auto 100%;
  }
  .contact_block {
    clear: both;
    width: 90%;
    margin: 0px auto;
  }
  .hiromi {
    display: none;
  }
  .hiromi img {
    display: block;
    width: 100%;
    height: auto;
  }
  .c_block {
    float: none;
    width: 100%;
    text-align: left;
    color: #333333;
  }
  .c_block h3 {
    font-size: 5.6vw;
    font-weight: bold;
    text-align: center;
    line-height: 1.3em;
    margin-top: 2.0vh;
    margin-bottom: 2.0vh;
  }
  .c_block h3 span {
    font-size: 5.8vw;
    color: #eb5000;
  }
  .c_block h3::before {
    content: none;
  }
  .c_block h3::after {
    content: none;
  }
  .c_button {
    display: block;
    width: 100%;
    margin-left: 0px;
  }
  .c_button li {
    display: block;
    height: auto;
    text-align: left;
    position: static;
  }
  .c_button li.c_tel {
    width: 100%;
    text-align: center;
    margin-bottom: 1.5vh;
  }
  .c_button li.c_mail {
    display: inline-block;
    width: 48%;
    margin-right: 1.0vh;
  }
  .c_button li.c_line {
    display: inline-block;
    width: 48%;
  }
  .c_button li.c_tel a {
    display: block;
    width: 100%;
    font-size: 3.0vw;
    line-height: 1.4em;
    padding: 1.0vh 1.0vw 1.6vh 1.0vw;
    box-sizing: border-box;
    border-radius: 6px;
    border: 1px solid #c5c8d1;
    background-color: #FFFFFF;
    box-shadow: 0px 5px 0px #c5c8d1;
    position: static;
  }
  .c_button li.c_tel a div {
    font-size: 11.0vw;
    letter-spacing: 0.025em;
    margin-left: 2.0vw;
  }
  .c_button li.c_tel a div::before {
    content: '　';
    display: inline-block;
    width: 24px;
    height: 40px;
    font-size: auto;
    background: url("../images/ic_tel.png") no-repeat 0px 6px;
    background-size: 20px auto;
  }
  .c_button li.c_tel a p {
    clear: both;
    display: block;
    text-align: center;
    font-size: 3.8vw;
  }
  .c_button li a span {
    font-size: 7.2vw;
  }
  .c_button li.c_tel a p span {
    color: #FFFFFF;
    font-size: 4.0vw;
    padding: 0.3vw 2.0vw 0.6vw;
    margin-left: 2.0vw;
    background-color: #e75858;
  }
  .c_button li.c_mail a {
    display: block;
    width: 100%;
    font-size: 4.6vw;
    line-height: 1.2em;
    text-align: center;
    padding: 2.0vh 0.5vw 2.0vh 4.0vw;
    border-radius: 6px;
    background-image: url("../images/ic_mail.png"), linear-gradient(0deg, rgba(237, 105, 0, 1), rgba(255, 162, 0, 1));
    background-repeat: no-repeat, repeat;
    background-size: 7.0vw auto;
    background-position: 2.0vw 2.5vw, 0px 0px;
    box-shadow: 0px 5px 0px #b45000;
    position: static;
    top: 0px;
  }
  .c_button li.c_line a {
    display: block;
    width: 100%;
    font-size: 4.6vw;
    line-height: 1.2em;
    text-align: center;
    padding: 2.0vh 0.5vw 2.0vh 4.0vw;
    border-radius: 6px;
    background-image: url("../images/ic_line.png"), linear-gradient(0deg, rgba(6, 174, 83, 1), rgba(136, 206, 36, 1));
    background-repeat: no-repeat, repeat;
    background-size: 7.0vw auto;
    background-position: 2.0vw 2.5vw, 0px 0px;
    box-shadow: 0px 5px 0px #2f8014;
    position: static;
    top: 0px;
  }
  /*-------------------------------------------*/
  h2.title {
    font-size: 6.8vw;
  }
  h2.title span {
    display: block;
    font-size: 3.6vw;
    line-height: 2.0em;
    margin-top: 1.0vh;
  }
  #h2_rmenu {
    width: 96%;
    padding: 1.0vh 0px 1.5vh;
    margin: 0px auto 3.0vh;
    background-image: url("../images/title_icon_reform_left.png"), url("../images/title_icon_reform_right.png");
    background-repeat: no-repeat;
    background-position: left 0px, right 0px;
  }
  #rmenu_list {
    width: 84%;
    margin: 0px auto 2.5vh;
  }
  #rmenu_list li {
    display: inline-block;
    width: 100%;
    margin: 0px auto 1.0vh;
  }
  #rmenu_list li img {
    display: block;
    width: 100%;
    height: auto;
  }
  /*-------------------------------------------*/
  #reform_point {
    padding: 15.3vw 0 15.3vw;
    background-size: 350% auto;
    background-position: center top;
    font-size: 4.0vw;
  }
  #reform_point .title {
    line-height: 1.3;
  }
  #reform_point .p_text {
    font-size: 5.3vw;
    text-align: left;
    line-height: 1.5;
    margin: 0 auto 8.3vw;
    padding: 0 5.3vw;
  }
  #reform_point .p_text::before {
    width: 85vw;
    top: -10vw;
  }
  #reform_point .p_text::after {
    width: 37vw;
    top: -57vw;
    right: 50%;
    transform: translate(50%, 0);
  }
  #reform_point .white_box {
    border: 1.2vw solid #fce5d9;
    border-radius: 8.3vw;
    width: calc(100% - 10.6vw);
    padding: 7.3vw 5.3vw;
  }
  #reform_point .point_wrap.one {
    padding: 0 0 11.3vw;
  }
  #reform_point .point_wrap.two {
    padding: 11.3vw 0 11.3vw;
  }
  #reform_point .point_wrap.three {
    padding: 11.3vw 0 0;
  }
  #reform_point .point_wrap.one, #reform_point .point_wrap.two {
    background-size: auto 0.4vw;
  }
  .point_wrap .flex_wrap .pnum {
    font-size: 5.3vw;
    padding: 1.2vw 2.6vw 1.7vw;
    margin-bottom: 1.4vw;
  }
  .point_wrap .flex_wrap .ptitle {
    font-size: 5.6vw;
    line-height: 1.4;
    margin-bottom: 5.3vw;
  }
  .point_wrap .flex_wrap .exmlp_wrap {
    gap: 2.5vw;
  }
  .point_wrap .flex_wrap .exmlp_wrap li {
    line-height: 1.3;
  }
  .point_wrap .flex_wrap .exmlp_wrap .exmlp {
    padding-left: 3.2vw;
  }
  /*その1*/
  .point_wrap.one .flex_wrap.first {
    margin-bottom: 3.7vw;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .point_wrap.one .flex_wrap.second {
    gap: 5.3vw;
  }
  .point_wrap.one .flex_wrap.first .right .man {
    width: 50vw;
  }
  .point_wrap.one .flex_wrap.second .right .graph {
    width: 100%;
    margin-bottom: 0.7vw;
  }
  .point_wrap.one .flex_wrap.second .right .source {
    font-size: 2.9vw;
  }
  .point_wrap.one .flex_wrap.second .right .source a {
    color: #333;
    letter-spacing: -0.04em;
  }
  .point_wrap.one .flex_wrap.second .left .attention_txt {
    width: 100%;
    padding-top: 0;
    margin-bottom: 13.3vw;
  }
  .pink_box {
    padding: 9.3vw 5.3vw 5.3vw;
  }
  .pink_box .point_ttl {
    width: 46vw;
    margin-top: -13.3vw;
    margin-bottom: 3.2vw;
  }
  .pink_box .point_txt {}
  /*その2*/
  .point_wrap.two .flex_wrap {
    gap: 5.3vw;
    margin-bottom: 13.3vw;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  .point_wrap.two .flex_wrap .left {
    margin-top: 0;
  }
  .point_wrap.two .flex_wrap .left .man {
    width: 50vw;
  }
  .point_wrap.two .flex_wrap .right .attention_txt {}
  /*その3*/
  .point_wrap.three .flex_wrap {
    margin-bottom: 3.2vw;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .point_wrap.three .flex_wrap .ptitle {
    letter-spacing: -0.02em;
    margin-bottom: 18px;
  }
  .point_wrap.three .flex_wrap .left .exmpl_warp.wrap {
    row-gap: 2.9vw;
    width: 100%;
    padding: 0;
    margin: 0 auto 5.3vw;
  }
  .point_wrap.three .flex_wrap .left .exmpl_warp.wrap .w100 {
    margin-bottom: 0.5vw;
  }
  .point_wrap.three .flex_wrap .left .exmpl_warp.wrap .exmpl {
    width: 100%;
    padding-left: 3.2vw;
  }
  .point_wrap.three .flex_wrap .right .man {
    width: 50vw;
  }
  .point_wrap.three .attention_txt {
    margin-bottom: 10.6vw;
  }
  /*パーツ*/
  .mb4 {
    margin-bottom: 0.7vw;
  }
  /*-------------------------------------------*/
  #flow {
    padding: 14.4vw 0;
    background-size: cover;
    background-position: center;
    font-size: 4.0vw;
  }
  #flow::before {
    background: rgba(255, 255, 255, 0.5);
  }
  #flow #h2_flow {
    margin-bottom: 4.3vw;
    line-height: 1.3;
  }
  #flow #h2_flow::before, #flow #h2_flow::after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translate(0, -50%);
  }
  #flow #h2_flow::before {
    left: -12.8vw;
    width: 8.3vw;
  }
  #flow #h2_flow::after {
    right: -12.8vw;
    width: 7.3vw;
  }
  .f_intro_txt {
    font-weight: 600;
    line-height: 1.6;
    padding-inline: 5.3vw;
    margin-bottom: 6.8vw;
  }
  #flow .flex_wrap {
    gap: 8.3vw;
    width: 100%;
    padding-inline: 9.3vw;
  }
  .flex_wrap .flow_item {
    width: clac((100% - 60px) / 3);
  }
  .flex_wrap .flow_item h3 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 600;
  }
  .flex_wrap .flow_item h3 .fnum {
    font-size: 5.8vw;
    width: 10.6vw;
    height: 10.6vw;
  }
  .flex_wrap .flow_item h3 .flow_title {
    font-size: 5.3vw;
    padding-left: 4.0vw;
    padding-bottom: 0;
  }
  .flex_wrap .flow_item h3 .flow_title.small {
    font-size: 5.3vw;
    letter-spacing: 0;
  }
  .flex_wrap .flow_item img {
    margin-bottom: 4.3vw;
  }
  .flex_wrap .flow_item .flow_txt {
    /*line-height: 1.6;*/
  }
  .border_gray {
    border: 1px solid #d6d6d6;
  }
  /*-------------------------------------------*/
  #h2_reason {
    width: 100%;
    padding: 2.8vh 2.0vw 2.6vh;
    margin: 0px auto 4.5vh;
    font-size: 7.2vw;
    line-height: 1.2em;
    min-height: auto;
    box-sizing: border-box;
    background-image: url("../images/bg_reason.jpg");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: auto 100%;
  }
  #h2_reason span {
    font-size: 3.6vw;
    color: #f9cab2;
  }
  #reason {
    clear: both;
    overflow: hidden;
    width: 100%;
    background: url("../images/bg_reason_con.jpg") no-repeat top center;
    background-size: auto 100%;
    border-bottom: 8px solid #ff8b00;
  }
  .whitebox {
    width: 90%;
    padding: 3.0vw 5.0vw 3.0vw;
    margin: 0px auto 8.0vh;
  }
  #reason_staff_01 {
    width: 27.0vw;
    position: absolute;
    left: -13.0vw;
    bottom: -8.4vh;
  }
  #reason_staff_02 {
    width: 24.0vw;
    position: absolute;
    right: -10.0vw;
    bottom: -8.4vh;
  }
  #reason_staff_01 img, #reason_staff_02 img {
    display: block;
    width: 100%;
    height: auto;
  }
  .w_sec {
    width: 94%;
    display: block;
    padding: 20px 0px 20px 0px;
    margin: 0px auto 30px;
    border-bottom: 1px dotted #f5a780;
  }
  .ws_text {
    width: 100%;
  }
  .ws_photo {
    width: 80%;
    margin: 0px auto;
  }
  .ws_photo img {
    display: block;
    width: 100%;
    height: auto;
  }
  .ws_text .num {
    display: block;
    width: 28vw;
    height: 8.0vh;
    font-size: 14.0vw;
    background: url("../images/reason_num.png") no-repeat center bottom;
    background-size: 100% auto;
    margin: 0 auto 1.0vh;
  }
  .ws_text h3 {
    font-size: 6.2vw;
    line-height: 1.3em;
    margin: 0px 0px 1.5vh 0;
    padding: 0px 0px 1.0vh 0px;
    background: url("../images/bg_reason_point.gif") repeat-x left bottom;
  }
  .ws_text p {
    font-size: 4.6vw;
    line-height: 1.6em;
    margin: 0px 0px 3.0vh 0px;
  }
  /*-------------------------------------------*/
  #works {
    padding: 4.0vh 0px 4.0vh;
  }
  #h2_works {
    width: 90%;
    padding: 0px 0px 2.0vh 16vw;
    margin: 0px auto 2.5vh;
    font-size: 7.6vw;
    line-height: 1.2em;
    background-size: 12.0vw auto;
  }
  #h2_works span {
    font-size: 3.6vw;
    margin-left: 2.5vw;
  }
  #works_slider {
    width: 90%;
    display: block;
    margin: 0px auto 3.0vh;
  }
  .works_b {
    display: inline-block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    padding: 0px 0px 3.0vh 0px;
    margin-bottom: 3.0vh;
  }
  .works_b .wb_img {
    overflow: hidden;
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 2.0vh;
  }
  .works_b ul {
    clear: both;
    margin: 0px 1.5vw 1.0vh 3.0vw;
  }
  .works_b ul li {
    font-size: 3.2vw;
    line-height: 1.2em;
    padding: 1.3vw 2.0vw 1.3vw;
    border-radius: 10px;
    margin: 0px 0.5vw 0px 0px;
  }
  .works_b h3 {
    font-size: 5, .0vw;
    line-height: 1.3em;
    margin: 0px 1.5vw 0px 3.0vw;
  }
  /*-------------------------------------------*/
  #voice {
    width: 100%;
    padding: 2.5vh 0px 4.0vh;
  }
  #h2_voice {
    width: 72%;
    min-height: auto;
    padding: 3.0vh 0px 2.0vh;
    margin: 0px auto 3.0vh;
    background-size: 10.0vw auto, 15.0vw auto;
    background-repeat: no-repeat;
    background-position: 2.0vw 0px, right 2.0vh;
  }
  .tx_waiting {
    width: 90%;
    font-size: 4.0vw;
    margin: 0px auto 4.0vh;
  }
	
	#voice_box {
	clear: both;
	width: 100%;
	display: block;
	margin: 0px auto 2.0vh;
}
#voice_box .vb_list {
	width: 90%;
	margin: 0px auto 0px;
}
#voice_box .vb_list img {
	display: block;
	width: 80%;
	height: auto;
	margin: 0px auto 2.0vh;
}
#voice_box .vb_list p {
	font-size: 4.6vw;
	line-height: 1.4em;
	border-radius: 6.0vw;
	box-sizing: border-box;
	padding: 3.0vh 6.0vw 4.0vh;
	background-color: #FFFFFF;
	margin-bottom: 3.0vh;
}
#voice_box .vb_list p span {
	clear: both;
	display: block;
	width: 100%;
	font-size: 6.0vw;
	font-weight: bold;
	color: #FFCE00;
	text-align: center;
	margin-bottom: 0.9vh;
}
	
	
	
  .sec_poji {
    width: 100%;
    min-height: 9.0vh;
    position: relative;
    margin: 0px auto;
  }
  #kuchikomi {
    clear: both;
    width: 100%;
    padding: 2vh 0px 0.2vh;
    background: url("../images/bg_kuchikomi_blue.jpg") no-repeat center top;
    background-size: auto 100%;
  }
  #kuchikomi h2 {
    display: block;
    width: 90%;
    position: absolute;
    top: 0;
    left: 2vw;
    margin: 0px 0 0vh;
    z-index: 2;
  }
  #kuchikomi h2 img {
    display: block;
    width: 100%;
    height: auto;
  }
  #kuchikomi_hiromi {
    position: absolute;
    width: 30%;
    height: auto;
    top: -5.0vh;
    right: 3vw;
    z-index: 0;
  }
  #kuchikomi_hiromi img {
    display: block;
    width: 100%;
    height: auto;
  }
  #kuchikomi_whitebox {
    width: 98%;
    height: auto;
    padding: 8.0vh 0 8.0vh;
    margin: 0px auto 3.0vh;
    background: url("../images/bg_kuchikomi_whitebox.png") no-repeat;
    background-size: 100% auto;
  }
  #kuchikomi_whitebox p {
    font-size: 5.0vw;
    font-weight: bold;
    padding-top: 0;
  }
  /*-------------------------------------------*/
  /*よくある質問*/
  #faq {
    padding: 10.6vw 0 4.3vw;
  }
  #h2_faq {
    padding: 10px 0px 20px;
    margin: 0px auto 4.3vw;
  }
  #h2_faq::before {
    left: -21.2vw;
    width: 12.6vw;
  }
  #h2_faq::after {
    right: -24vw;
    width: 14.4vw;
  }
  /* アコーディオンメニュー */
  .accArea {
    row-gap: 2.0vw;
    width: 100%;
    margin: 0 auto 8.3vw;
    list-style: none;
    padding: 0 5.3vw;
  }
  .accTitle {
    border: 0.6vw solid #e75858;
    border-radius: 0.8vw;
    padding-inline: 5.3vw 14.4vw;
    padding-block: 2.0vw 1.8vw;
  }
  .accTitle::before {
    width: 0.8vw;
    height: 4.3vw;
    right: 7.3vw;
  }
  .accTitle::after {
    width: 0.8vw;
    height: 4.3vw;
    right: 7.3vw;
  }
  .topQ {
    font-size: 4.6vw;
    padding-right: 5.3vw;
    padding-top: 1.7vw;
    padding-bottom: 0.3vw;
  }
  .topQTitle {
    font-size: 4.2vw;
    padding-left: 5.3vw;
    padding-block: 2vw 2.2vw;
  }
  .topQTitle::before {
    width: 0.3vw;
  }
  .box {
    border-bottom: 0.6vw solid #cdcdcd;
    padding: 2.2vw 14.4vw 1.8vw 6.2vw;
  }
  .box .boxInner .topA {
    font-size: 4.6vw;
    padding-right: 5.7vw;
    padding-block: 10px 14px;
  }
  .box .boxInner .topAText {
    font-size: 4.2vw;
    padding-left: 5.3vw;
    padding-block: 2.0vw 2.2vw;
  }
  .box .boxInner .topAText::before {
    width: 0.3vw;
  }
  /*-------------------------------------------*/
  #area {
    width: 92%;
    height: auto;
    padding: 5.0vh 2.0vw 0px 2.0vw;
    /*margin: 3.0vh auto 3.0vh;*/
    margin: 3.0vh auto 6.7vh;
    box-sizing: border-box;
    background: url("../images/bg_area.jpg") no-repeat 0px 0px;
    background-size: 100% auto;
  }
  #h2_area {
    width: auto;
    font-size: 7.6vw;
    line-height: 1.2em;
    padding: 0px 0px 1.0vh 12.0vw;
    box-sizing: border-box;
    background: url("../images/ic_area.png") no-repeat 0px 0px;
    background-size: 7.0vw auto;
    margin: 0px 0 4.6vh 32.0vw;
  }
  #h2_area span {
    display: block;
    font-size: 3.6vw;
    line-height: 1.8em;
    margin-left: 0px;
  }
  /*-------------------------------------------*/
  #h2_client {
    clear: both;
    width: 100%;
    font-size: 7.6vw;
    line-height: 1.2em;
    padding: 1.0vh 0px 1.0vh;
    margin: 0px auto 2.0vh;
  }
  .fbox_wrap {
    column-gap: 3vw;
    row-gap: 3vw;
    justify-content: flex-start;
    width: 100%;
  }
  .fbox_wrap .client_box {
    width: calc((100% - 4vw)/2);
  }
  .fbox_wrap .client_box .imgbox {
    height: 14vw;
  }
  /*-------------------------------------------*/
  /*営業所紹介*/
  #office {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 1) 25%), url("../images/office_bg_office.webp") no-repeat;
    background-size: 160% auto;
    padding: 5px 0 60px;
  }
  #h2_office {
    /*color: #fff;*/
    font-size: 6.8vw;
    /*font-weight: 700;
    text-align: center;
    letter-spacing: 0.07em;*/
    /*background: #f1844c;*/
    /*border-radius: 99px;*/
    width: fit-content;
    padding-block: 21px 27px;
    padding-inline: 21.2vw;
    margin: -9.3vw auto 0;
    /*position: relative;*/
  }
  #office .triangle {
    /*width: 0;
    height: 0;*/
    border-top: 5.3vw solid #f1844c;
    border-right: 6.2vw solid transparent;
    border-left: 6.2vw solid transparent;
    margin: -1.0vw auto 0;
  }
  .of_h {
    overflow: hidden;
    padding-top: 15.7vw;
  }
  .orange_box {
    /*background: #fff9e9;*/
    border-radius: 70px;
    padding: 7.8vw 0 7.5vw 8.6vw;
    width: calc(100% - 7.8vw);
    margin: 0 auto 6.0vw;
    /*position: relative;*/
  }
  .orange_box::before {
    /*position: absolute;
    content: "";*/
    top: -5.6vw;
    left: -4.2vw;
    width: 43.3vw;
    /*aspect-ratio: 992 / 305;
    background: url("../images/office_img_micchaku.webp") no-repeat;
    background-size: contain;
    background-position: center;*/
  }
  .orange_box::after {
    /*position: absolute;
    content: "";*/
    top: -5.2vw;
    right: -11.3vw;
    width: 53.9vw;
    /*aspect-ratio: 969 / 909;
    background: url("../images/office_img_hiromi.webp") no-repeat;
    background-size: contain;
    background-position: center;*/
  }
  .office_text {
    font-size: 4.6vw;
    /*font-weight: 500;*/
    line-height: 1.5;
    letter-spacing: 0.03em;
  }
  #office .white_box {
    /*background: #fff;*/
    border: 1.2vw solid #fce5d9;
    border-radius: 8.3vw;
    width: calc(100% - 10.6vw);
    padding: 5.3vw 5.3vw 5.3vw;
    /*margin: 0 auto;*/
  }
  .office_list .item {
    padding-block: 4.7vw;
    /*background: url("../images/office_img_dotline.webp") repeat-x;*/
    background-size: auto 0.3vw;
    /*background-position: center bottom;*/
    /*align-items: flex-start;*/
    flex-direction: column;
    row-gap: 2.2vw;
  }
  #office .office_name {
    font-size: 4.7vw;
    /*font-weight: 700;
    letter-spacing: 0.03em;
    width: 100%;*/
    padding-top: 0.5vw;
    padding-left: 4.5vw;
    /*position: relative;*/
  }
  #office .office_name::before {
    /*position: absolute;
    content: "";
    top: 50%;
    left: 0;*/
    /*transform: translate(0 , -45%);*/
    width: 1.3vw;
    height: 5.3vw;
    /*background: #f1844c;
    border-radius: 99px;*/
  }
  #office .office_address {
    font-size: 4.0vw;
    /*font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.03em;*/
    width: 100%;
  }
  /*-------------------------------------------*/
  #kanto {
    clear: both;
    display: block;
    margin-bottom: 2.0vh;
  }
  #kanto h3 {
    width: 100%;
    font-size: 12.0vw;
    font-weight: bold;
    color: #FFFFFF;
    text-align: center;
    margin-right: 0vw;
    margin-left: 0vw;
    margin-bottom: 1.0vh;
  }
  #kanto h3 span {
    display: inline-block;
    width: 20.0vw;
    height: 10.0vh;
    text-align: center;
    vertical-align: middle;
    background-color: #ff8b00;
    box-sizing: border-box;
    padding: 1.7vh 4.0vw 0px 4.0vw;
    margin: 0px 1.0vw 0px 1.0vw;
  }
  #kanto h4 {
    font-size: 6.5vw;
    font-weight: bold;
    line-height: 1.3em;
    text-align: center;
  }
  #area .tx_area {
    font-size: 4.6vw;
    font-weight: bold;
    line-height: 1.6em;
    text-align: center;
  }
  /*=============================
		footer
===============================*/
  footer {
    padding: 4.0vh 0px 1.0vh 0px;
  }
  #wrap_foot {
    display: block;
    width: 100%;
    margin: 0px auto;
  }
  #foot_left {
    width: 90%;
    margin: 0vh 3.0vw 0px;
  }
  #foot_left #flogo {
    width: 60%;
    margin: 0px auto 3.0vh;
  }
  #foot_left #flogo img {
    display: block;
    width: 100%;
    height: auto;
  }
  #foot_left p {
    font-size: 3.4vw;
    font-weight: normal;
    line-height: 1.6em;
    margin-bottom: 4.0vh;
  }
  #foot_left .f_denkyu {
    width: 96%;
    margin: 0px auto 6.0vh;
  }
  #foot_left .f_denkyu img {
    display: block;
    width: 100%;
    height: auto;
  }
  /**/
  #foot_right {
    width: 90%;
    display: block;
    margin: 0px auto 0vh;
  }
  #foot_right ul {
    width: 100%;
  }
  #foot_right ul li {
    width: 48%;
    display: inline-block;
    font-size: 4.5vw;
    padding: 0px 0px 0.3vh 6.0vw;
    background: url("../images/ic_fmenu.png") no-repeat 0px 0.5vh;
    background-size: 3.2vw auto;
    margin: 0px 0px 3.0vh 0px;
  }
  #foot_right ul li.fli_reform {
    width: 100%;
  }
  #foot_right ul li ol {
    width: 100%;
    list-style-type: none;
    margin: 2.6vh 0px 0px 0px;
  }
  #foot_right ul li ol li {
    width: 48%;
    font-size: 4.0vw;
    margin: 0px 0px 2.6vh 0px;
  }
  /*-------------------------------------------*/
  /* last style */
  /*-------------------------------------------*/
  #last {
    padding: 4.0vh 0px 5.0vh 0px;
  }
  #wrap_last {
    width: 90%;
    display: block;
    margin: 0px auto;
  }
  #last_left {
    width: 90%;
    margin: 0px auto 3.0vh;
  }
  #last_left ul {
    text-align: center;
    margin: 0px 0px 2.0vh;
  }
  #last_left ul li {
    display: inline-block;
    font-size: 4.2vw;
    margin: 0px 3.0vw 1.8vh 0px;
  }
  #last_left ul li::before {
    content: '▶';
    font-size: 2.0vw;
    color: #FFFFFF;
    font-weight: normal;
    line-height: 1.1em;
    margin-right: 1.0vw;
  }
  #last_left p {
    text-align: center;
    font-size: 3.8vw;
    color: rgba(255, 255, 255, 0.8);
  }
  #last_right {
    width: 90%;
    margin: 0px auto 0vh;
  }
  #last_right img {
    display: block;
    width: 100%;
    height: auto;
  }
  /*=============================
		form
	===============================*/
  #h2_contact {
    width: 100%;
    padding: 2.8vh 0px 2.6vh;
    margin: 0px auto 4.5vh;
    font-size: 7.6vw;
    line-height: 1.2em;
    min-height: auto;
    background-image: url("../images/bg_reason.jpg");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: auto 100%;
  }
  #h2_contact span {
    font-size: 3.6vw;
    color: #f9cab2;
  }
  #form {
    padding-top: 12vw;
    margin-top: -12vw;
  }
  #form .area_box {
    margin-bottom: 6.6vw;
  }
  #form .area_box .area {
    font-size: 3.7vw;
    line-height: 1.4;
  }
  #form .area_box .area span {
    font-size: 5.8vw;
  }
  #form .area_box .mini {
    font-size: 3vw;
    margin-top: 3vw;
    line-height: 1.4;
    letter-spacing: 0;
  }
  #form .form_wrap {
    padding: 0 0 12vw;
  }
  #form #mail h3 {
    font-size: 4.2vw;
    padding: 4vw 0 4vw;
    margin-top: -0.8vw;
    margin-bottom: 5.3vw;
  }
  #form #mail h3 span {
    padding-left: 7vw;
    background: url(../images/ic_mail.svg) no-repeat left center;
    background-size: 5vw auto;
  }
  #form .ttl_fukidashi {
    padding: 4vw 0 4.8vw;
    margin-bottom: 10.6vw;
  }
  #form .ttl_fukidashi::before {
    border-color: #f49127 transparent transparent transparent;
  }
  #form .ttl_fukidashi .wrap {
    overflow: visible;
  }
  #form .ttl_fukidashi .wrap::after {
    bottom: -4.8vw;
    left: 2vw;
    width: 27vw;
    height: 30vw;
    background: url(../images/form_img_ttl.webp) no-repeat bottom center;
    background-size: 100% auto;
  }
  #form .ttl_fukidashi h2 {
    font-size: 4.8vw;
    text-align: left;
    padding-left: 27vw;
  }
  #form .tel_box {
    width: 100%;
    border: 0.8vw solid #b7cfe0;
    padding: 3vw 5.3vw 4vw;
    border-radius: 2vw;
    row-gap: 2vw;
    column-gap: 0;
    margin: 0 auto 8vw;
    text-align: center;
  }
  #form .tel_box h3 {
    font-size: 5.0vw;
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 2.0vw;
  }
  #form .tel_box p.tx_formac {
    font-size: 2.8vw;
  }
  #form .tel_box a {
    display: block;
    width: 90%;
    margin: 0px auto;
  }
  #form .tel_box a img {
    width: 100%;
    heigth: auto;
  }
  /*-------------------------------------------*/
  #pagetop {
    position: fixed;
    right: 3vw;
    bottom: 8vh;
    width: 12.0vw;
    height: 12.0vw;
    background-size: 12.0vw 12.0vw;
    z-index: 777;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  #pagetop:hover {
    opacity: 0.8;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  /*-------------------------------------------*/
  /* button style */
  /*-------------------------------------------*/
  .button {
    clear: both;
    width: 80%;
    min-height: 12.0vh;
    margin: 0px auto 0px;
  }
  .button a {
    width: 100%;
    font-size: 4.0vw;
    padding: 2.4vh 0px 2.4vh 0px;
    line-height: 1.2em;
    background-size: 6.0vw auto;
    background-position: 90% center;
    box-shadow: 0px 5px 0px #a34140;
    position: absolute;
    top: 0px;
  }
  .button a:hover {
    top: 4px;
    box-shadow: 0px 1px 0px #a34140;
  }
  /*=============================
		sp_contact
===============================*/
  #sp_contact {
    position: fixed;
    bottom: -23vw;
    left: 0;
    width: 100%;
    height: 15.4vw;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10;
    padding: 2vw 0;
    transition: all .5s ease;
  }
  #sp_contact.fixed {
    bottom: 0;
  }
  #sp_contact .flex_wrap {
    justify-content: center;
    column-gap: 5vw;
    padding: 0 2vw;
  }
  #sp_contact .btn_tel {
    color: #fff;
    width: 36vw;
    height: 11vw;
    border-radius: 1.2vw;
    padding: 0;
    background: #fff;
    box-shadow: 0 0.8vw 0 #cfdfeb;
    text-align: center;
  }
  #sp_contact .btn_mail {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 3.2vw;
    letter-spacing: 0;
    color: #fff;
    width: 36vw;
    height: 11vw;
    border-radius: 1.2vw;
    padding: 0;
    background: #ff9127;
    box-shadow: 0 0.8vw 0 #c06a1b;
    text-align: center;
  }
  #sp_contact .btn_mail span {
    display: inline-block;
    padding-left: 5vw;
    background: url(../images/ic_mail.svg) no-repeat left center;
    background-size: 3.6vw auto;
  }
}