@charset "UTF-8";
/* ======================================================

   common-Setting

========================================================= */
html {}
*, *:before, *:after {
    box-sizing: border-box;
}
body {
    color: #333;
    -webkit-text-size-adjust: 100%;
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', 'Meiryo', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, table, th, td, pre, address, ul, ol, li, dl, dt, dd {
    font-size: 16px;
    font-weight: normal;
    text-align: left;
    line-height: 2;
}
li {
    list-style: none;
}
th, td {
    vertical-align: middle;
}
select {
    visibility: visible !important;
}
img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}
a {
    color: #ffa200;
    text-decoration: none;
}
a:hover {
    color: #ffa200;
    text-decoration: underline;
}
.mb_10 {
    margin-bottom: 10px !important;
}
.mb_20 {
    margin-bottom: 20px !important;
}
.mb_30 {
    margin-bottom: 30px !important;
}
.mb_40 {
    margin-bottom: 40px !important;
}
.mb_50 {
    margin-bottom: 50px !important;
}
.mb_60 {
    margin-bottom: 60px !important;
}
.mb_70 {
    margin-bottom: 70px !important;
}
.mb_80 {
    margin-bottom: 80px !important;
}
.mb_90 {
    margin-bottom: 90px !important;
}
.mb_100 {
    margin-bottom: 100px !important;
}
.mb_t {
    margin-bottom: 20px !important;
}
.mb_s {
    margin-bottom: 30px !important;
}
.mb_m {
    margin-bottom: 50px !important;
}
.mb_l {
    margin-bottom: 80px !important;
}
.f_b {
    font-weight: bold;
}
.f_10 {
    font-size: 10px !important;
}
.f_12 {
    font-size: 12px !important;
}
.f_14 {
    font-size: 14px !important;
}
.f_16 {
    font-size: 16px !important;
}
.f_18 {
    font-size: 18px !important;
}
.f_20 {
    font-size: 20px !important;
}
.f_22 {
    font-size: 22px !important;
}
.bold {
    font-weight: 700;
}
.text {
    margin-bottom: 1em;
}
.txt-l {
    text-align: left !important;
}
.txt-c {
    text-align: center !important;
}
.txt-r {
    text-align: right !important;
}
.fadein {
    opacity: 0;
    transform: translate(0, 50px);
    transition: all 1500ms;
}
.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}
.pc_area, .tab_area {
    display: none;
}
.wrapper {
    padding-top: 60px;
    overflow-x: hidden;
    position: relative;
}
.index_main {}
.sub_page_main {
    margin: 0 auto 60px;
}
.topicpath {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 15px 0;
}
.topicpath li {
    display: inline;
    line-height: 1.4;
    font-size: 12px;
}
.topicpath li::before {
    content: ' > ';
    margin: 0 10px;
}
.topicpath li:first-child::before {
    content: '';
}
@media screen and (min-width: 600px) {
    .sp_area {
        display: none;
    }
    .tab_area {
        display: block;
    }
}
@media screen and (min-width: 1025px) {
    input, button, textarea, select, p, blockquote, table, th, td, pre, address, ul, ol, li, dl, dt, dd {
        font-size: 18px;
        font-weight: normal;
        text-align: left;
        line-height: 2;
    }
    .mb_t {
        margin-bottom: 30px !important;
    }
    .mb_s {
        margin-bottom: 50px !important;
    }
    .mb_xs {
        margin-bottom: 20px !important;
    }
    .mb_m {
        margin-bottom: 80px !important;
    }
    .mb_l {
        margin-bottom: 120px !important;
    }
    .pc_area {
        display: block;
    }
    .hover_opacity {
        transition: 0.3s;
    }
    .hover_opacity:hover {
        transition: 0.3s;
        opacity: 0.8;
    }
    .wrapper {
        padding-top: 0;
    }
    .sub_page_main {
        margin: 152px auto 120px;
    }
    .topicpath {
        margin-bottom: 50px;
    }
    .topicpath li {
        font-size: 18px;
    }
}
/* ======================================================

   header

========================================================= */
.outer_header {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: #FFF;
}
.header {
    width: 94%;
    margin: 0 auto;
}
.header .logo {
    width: 146px;
    height: 40px;
    margin-top: 10px;
}
.header h1, .gnav {
    display: none;
}
/* hamburger menu */
.hamburger_menu_cover {
    position: fixed;
    top: 0;
    right: 0;
    background: #1e328a;
    z-index: 9999;
}
.hamburger_menu {
    display: flex;
    align-items: center;
    width: 60px;
    height: 60px;
    padding: 15px;
    cursor: pointer;
}
.hamburger_menu__line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #FFF;
    position: relative;
    transition: all 0.5s;
}
.hamburger_menu__line::before, .hamburger_menu__line::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #FFF;
    position: absolute;
    transition: all 0.5s;
}
.hamburger_menu__line::before {
    transform: translateY(-8px);
}
.hamburger_menu__line::after {
    transform: translateY(8px);
}
.hamburger_menu.open .hamburger_menu__line {
    background-color: transparent;
}
.hamburger_menu.open .hamburger_menu__line::before {
    transform: rotate(45deg);
}
.hamburger_menu.open .hamburger_menu__line::after {
    transform: rotate(-45deg);
}
.nav_sp {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    padding: 70px 5% 80px;
    background: #FFF;
    text-align: left;
    transition: right 0.5s;
    overflow: scroll;
    z-index: 998;
}
.nav_sp.open {
    right: 0;
}
.nav_sp_inner {}
.nav_sp ul, .nav_sp p.sp_menu_btn {
    margin-bottom: 10px;
}
.nav_sp li, .nav_sp p.sp_menu_btn {
    font-size: 16px;
    line-height: 1.4;
    position: relative;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
}
.nav_sp li {
    margin-bottom: 0.5em;
}
.nav_sp li a, .nav_sp p.sp_menu_btn a {
    display: block;
    color: #333;
    text-decoration: none;
}
.nav_sp p.sp_menu_btn a::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 2px;
    width: 8px;
    height: 8px;
    margin: -4px 2px 0 0;
    border-top: solid 2px #ff6900;
    border-right: solid 2px #ff6900;
    transform: rotate(45deg);
}
/* サブメニューのトグルボタン */
.submenu_toggle {
    display: block;
    position: relative;
    cursor: pointer;
    color: #333;
    font-size: 16px;
    padding: 5px 0;
}
/* プラスマーク（開閉アイコン） */
.submenu_toggle::after, .submenu_toggle::before {
    content: "";
    display: block;
    background-color: #ff6900;
    position: absolute;
    top: 50%;
    right: 0;
}
.submenu_toggle::after {
    width: 16px;
    height: 2px;
    margin-top: -1px;
}
.submenu_toggle::before {
    width: 2px;
    height: 16px;
    margin-top: -8px;
    right: 7px;
}
.submenu_toggle.open::before {
    display: none;
}
/* サブメニュー */
.submenu {
    display: none;
    padding: 10px 0 0 1em;
}
.submenu.open {
    display: block;
}
.nav_sp_inner .inner_block {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.sp_menu_contact {
    display: flex;
    justify-content: space-between;
    gap: 5px;
}
.sp_menu_contact li {
    width:auto;
    margin-bottom: 0
}
.sp_menu_contact li a {
    display: block;
    width: 100%;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 10px 10px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    position: relative;
    font-size: 2.9vw;
}
.sp_menu_contact li:nth-of-type(1){width: 35%;}
.sp_menu_contact li:nth-of-type(2){width: 35%;}
.sp_menu_contact li:nth-of-type(3){width: 30%;}
.sp_menu_contact li:nth-of-type(1) a {
    background: #ff6900;
}
.sp_menu_contact li:nth-of-type(2)  a {
    background: #ff7819;
}
.sp_menu_contact li:nth-of-type(3)  a {
    background: #ffab19;
}
.head_line_btn {
    width: 49%;
    max-width: 210px;
}
.head_line_btn a {
    display: block;
    width: 100%;
    background: #06c755;
    text-decoration: none;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    color: #fff;
    border-radius: 10px;
    padding: 15px 15px 15px 22px;
    position: relative;
    font-size: 15px;
    line-height: 1.4;
}
.head_line_btn span {
    font-size: 18px;
    font-family: "Roboto", sans-serif;
}
.head_line_btn a:before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: url("../images/line_icon.jpg") no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -25px;
}
.head_tel_btn {
    margin-bottom: 10px;
}
.head_tel_btn p {
    line-height: 1.4;
    padding-left: 30px;
    font-size: 14px;
    text-align: center;
}
.head_tel_btn p.telnum {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #ff6900;
    font-size: 28px;
    line-height: 1.2;
}
.head_tel_btn p.telnum span {
    position: relative;
    padding-left: 30px;
}
.head_tel_btn p.telnum span:before {
    content: "";
    display: block;
    width: 28px;
    height: 28px;
    background: url("../images/tel_icon.jpg") no-repeat;
    background-size: contain;
    position: absolute;
    top: 4px;
    left: 0;
}
.head_movie_btn {
    width: 49%;
    max-width: 230px;
    border: 2px solid #ffa200;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 5px 10px;
    position: relative;
}
.head_movie_btn p {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    font-size: 14px;
    text-align: center;
    color: #ff7112;
}
.head_movie_btn p.ttl {
    background: #1e328a;
    border-radius: 6px;
    padding: 5px 10px 5px 25px;
    color: #fff;
    margin-bottom: 5px;
    position: relative;
    font-size: 13px;
}
.head_movie_btn p.ttl:before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: url("../images/head_movie_deco.png") no-repeat;
    background-size: contain;
    position: absolute;
    left: -5px;
    top: -4px;
}
.head_movie_btn a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.sp_menu_logo {
    font-size: 24px;
    line-height: 1.0;
    color: #ff6900;
    font-weight: 700;
    font-family: "M PLUS Rounded 1c", sans-serif;
    text-align: center;
}
#side_fix_banner {
    display: none;
}
@media screen and (min-width: 1025px) {
    .outer_header {
        height: auto;
        padding: 0;
        position: fixed;
        background: #fff;
        transition: 0.3s;
    }
    .header {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        position: relative;
        box-sizing: border-box;
        padding-left: 10px;
        padding-right: 20px;
    }
    .header h1 {
        width: 100%;
        font-size: 11px;
        position: absolute;
        top: 0;
        left: 0;
        color: #fff;
    }
    .header .logo {
        width: 200px;
        height: auto;
        margin-right: auto;
    }
    .hamburger_menu_cover {
        display: none;
    }
    .head_line_btn {
        max-width: 140px;
    }
    .head_line_btn {
        margin-right: 10px;
        margin-left: 10px;
    }
    .head_line_btn a {
        height: 70px;
        padding: 14px 10px 0 35px;
        font-size: 15px;
        line-height: 1.2;
        box-shadow: 2px 2px 6px 2px rgba(0, 0, 0, 0.3);
    }
    .head_line_btn span {
        font-size: 20px;
    }
    .head_line_btn a:before {
        width: 30px;
        height: 29px;
        margin-top: -24px;
    }
    .head_tel_btn {
        margin-bottom: 0px;
        margin-right: 10px;
    }
    .head_tel_btn p {
        padding-left: 0px;
        font-size: 13px;
        text-align: left;
    }
    .head_tel_btn p:nth-child(2) span {
        font-size: 12px;
    }
    .head_tel_btn p.telnum span {
        padding-left: 25px;
    }
    .head_tel_btn p.telnum {
        font-size: 22px;
        letter-spacing: 0;
    }
    .head_tel_btn p.telnum span:before {
        width: 20px;
        height: 20px;
    }
    .head_movie_btn {
        padding: 8px 8px 10px 8px;
        height: 92px;
        box-shadow: 2px 2px 6px 2px rgba(0, 0, 0, 0.3);
    }
    .head_movie_btn p {
        font-size: 18px;
    }
    .head_movie_btn p.ttl {
        padding: 8px 10px 8px 25px;
        margin-bottom: 10px;
        font-size: 18px;
        margin-left: 20px;
    }
    .head_movie_btn p.ttl:before {
        width: 43px;
        height: 43px;
        left: -25px;
        top: -3px;
    }
    .gnav {
        display: flex;
        list-style: none;
    }
    .gnav > li {
        flex-grow: 1;
        text-align: center;
        position: relative;
        margin: 0 8px;
        font-size: 16px;
    }


    .gnav span, .gnav a {
        display: block;
        color: #333;
        text-decoration: none;
        font-weight: bold;
        font-family: "M PLUS Rounded 1c", sans-serif;
        height: 92px;
        line-height: 92px;
    }
    .gnav span {
        cursor: pointer;
		position: relative;
		padding-right: 12px;
    }

	.gnav li span:after {
		content: "";

  display: inline-block;
  vertical-align: middle;
  color: #ffa200;
  line-height: 1;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
		position: absolute;
		right: 0;
		top: 50%;
		margin-top: -4px;
	}


    .gnav span:hover, .gnav a:hover {
        color: #ffa200;
    }
    .gnav_submenu {
        width: 280px;
        display: none;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
        padding: 10px 20px;
        box-sizing: border-box;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        list-style: none;
    }
    .gnav_submenu li {
        text-align: center;
        height: auto;
        line-height: 1.4;
    }
    .gnav_submenu a {
        height: auto;
        line-height: 1.4;
        text-align: center;
        color: #333333;
        text-decoration: none;
        padding: 10px 0;
    }
    .gnav li:hover > .gnav_submenu {
        display: block;
        transition: 0.3s;
    }
    #side_fix_banner {
        display: block;
        position: fixed;
        right: 10px;
        top: 20%;
        z-index: 9;
    }
    #side_fix_banner li {
        writing-mode: vertical-rl;
        line-height: 1;
    }
    #side_fix_banner li:not(:last-child) {
        margin-bottom:15px;
    }
    #side_fix_banner li a {
        display: block;
        color: #fff;
        text-align: center;
        background: #ff7819;
        text-decoration: none;
        font-family: "M PLUS Rounded 1c", sans-serif;
        font-weight: 700;
        border-radius: 10px;
        padding: 25px 25px;
        font-size: 24px;
        box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.3);
    }
    #side_fix_banner li:last-child a {
        background: #ffab19;
    }
}
@media screen and (min-width: 1536px) {
    .outer_header {
        padding: 30px 0;
    }
    .header {
        padding-left: 15px;
        padding-right: 20px;
    }
    .header .logo {
        width: 300px;
        height: 82px;
    }
    .head_line_btn {
        max-width: 210px;
        margin-right: 20px;
        margin-left: 20px;
    }
    .head_line_btn a {
        height: 92px;
        padding: 18px 15px 0 45px;
        font-size: 20px;
    }
    .head_line_btn span {
        font-size: 26px;
    }
    .head_line_btn a:before {
        width: 38px;
        height: 39px;
        right: 48px;
        margin-top: -34px;
        left: inherit;
    }
    .head_tel_btn {
        margin-bottom: 0px;
        margin-right: 20px;
    }
    .head_tel_btn p {
        padding-left: 35px;
        font-size: 16px;
        text-align: left;
    }
    .head_tel_btn p:nth-child(2) span {
        font-size: 14px;
    }
    .head_tel_btn p.telnum {
        font-size: 28px;
    }
    .head_tel_btn p.telnum span:before {
        width: 28px;
        height: 28px;
        top: 4px;
        left: -30px;
    }
    .gnav > li {
        font-size: 18px;
    }
}
/* ======================================================

   foot contact

========================================================= */
#foot_contact_outer {
    width: 100%;
    background: #fff1de;
    padding: 50px 0;
}
#foot_contact {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}
#foot_contact .f_contact_ttl {
    font-weight: 700;
    font-family: "M PLUS Rounded 1c", sans-serif;
    text-align: center;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 15px;
}
#foot_contact .f_contact_ttl span {
    color: #fe7b1f;
}
#foot_contact .f_contact_tel_bg {
    background: url("../images/f_contact_bg.jpg") no-repeat center top;
    background-size: cover;
    padding-bottom: 10px;
}
#foot_contact .f_contact_tel, #foot_contact .foot_btn_list .block {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    box-sizing: border-box;
    padding: 15px 20px 20px;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
}
#foot_contact .f_contact_tel p, #foot_contact .foot_btn_list .block p {
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
}
#foot_contact .btn_ttl {
    color: #1e328a;
    font-weight: 700;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-size: 18px !important;
    margin-bottom: 5px;
}
#foot_contact .f_contact_tel .telnum {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #ff6900;
    font-size: 28px;
}
#foot_contact .f_contact_tel .telnum span {
    position: relative;
    padding-left: 30px;
}
#foot_contact .f_contact_tel .telnum span:before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: url("../images/tel_icon.jpg") no-repeat;
    background-size: contain;
    position: absolute;
    top: 5px;
    left: 0;
}
#foot_contact .foot_btn_list {}
#foot_contact .foot_btn_list .block:first-child {
    margin-bottom: 10px;
}
#foot_contact .foot_btn_list .block:first-child .btn_ttl {
    font-size: 16px !important;
}
#foot_contact .foot_btn_list .block .btn {
    width: 90%;
    max-width: 432px;
    margin: 10px auto 0;
}
#foot_contact .foot_btn_list .block .btn a {
    display: block;
    width: 100%;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    line-height: 50px;
    height: 50px;
    font-weight: 700;
    font-family: "M PLUS Rounded 1c", sans-serif;
    position: relative;
    box-shadow: 0px 2px 6px 2px rgba(0, 0, 0, 0.3);
}
#foot_contact .foot_btn_list .block:first-child .btn a {
    background: #ff6900;
}
#foot_contact .foot_btn_list .block:nth-child(2) .btn a {
    background: #ffa200;
}
#foot_contact .foot_btn_list .block .btn a:after {
    content: "";
    display: block;
    width: 9px;
    height: 17px;
    background: url("../images/btn_arrow.png") no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -9px;
}
@media screen and (min-width: 1025px) {
    #foot_contact_outer {
        padding: 100px 0 120px;
    }
    #foot_contact .f_contact_ttl {
        font-size: 42px;
        margin-bottom: 30px;
    }
    #foot_contact .f_contact_tel_bg {
        padding-bottom: 45px;
        padding-top: 25px;
    }
    #foot_contact .f_contact_tel, #foot_contact .foot_btn_list .block {
        width: 48.75%;
        max-width: 624px;
        padding: 30px 20px 30px;
    }
    #foot_contact .f_contact_tel {
        margin: 0 auto;
    }
    #foot_contact .foot_btn_list .block p {
        font-size: 18px;
        line-height: 1.6;
    }
    #foot_contact .f_contact_tel p {
        font-size: 20px;
    }
    #foot_contact .btn_ttl {
        font-size: 32px !important;
        margin-bottom: 20px;
    }
    #foot_contact .f_contact_tel .telnum {
        font-size: 58px;
        line-height: 1.0;
        margin-bottom: 20px;
    }
    #foot_contact .f_contact_tel .telnum span {
        padding-left: 78px;
    }
    #foot_contact .f_contact_tel .telnum span:before {
        width: 64px;
        height: 62px;
    }
    #foot_contact .foot_btn_list {
        display: flex;
        justify-content: space-between;
    }
    #foot_contact .foot_btn_list .block:first-child {
        margin-bottom: 0px;
    }
    #foot_contact .foot_btn_list .block:first-child .btn_ttl {
        font-size: 28px !important;
    }
    #foot_contact .foot_btn_list .block .btn {
        margin: 20px auto 0;
    }
    #foot_contact .foot_btn_list .block .btn a {
        font-size: 24px;
        line-height: 70px;
        height: 70px;
        transition: 0.3s;
    }
    #foot_contact .foot_btn_list .block .btn a:hover {
        opacity: 0.8;
    }
}
/* ======================================================

   footer

========================================================= */
#footer {
    width: 100%;
    background: #333333;
    padding: 50px 0 30px;
}
#footer p, #footer ul li, #footer dl dt, #footer dl dd {
    color: #fff;
}
#footer .inner {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto 30px;
}
#footer .inner .f_info .f_logo {
    font-size: 32px;
    line-height: 1.0;
    color: #ff6900;
    font-weight: 700;
    font-family: "M PLUS Rounded 1c", sans-serif;
    margin-bottom: 5px;
}
#footer .inner .f_info .f_logo a {
    color: #ff6900;
    text-decoration: none;
}
#footer .inner .f_info .telfax {
    margin: 20px 0 20px;
}
#footer .inner .f_info .telfax li {
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    line-height: 1.4;
    font-size: 20px;
}
#footer .inner .f_info .telfax li:first-child {
    font-size: 24px;
    margin-bottom: 5px;
}
#footer .inner .f_info .telfax li a {
    color: #ff6900;
    text-decoration: none;
}
#footer .inner .f_info .sns_btn {
    display: flex;
    margin-top: 10px;
}
#footer .inner .f_info .sns_btn li {
    width: 32px;
    margin-right: 20px;
}
#footer .inner .f_info .sns_btn li:nth-of-type(3) {
    width: 46px;
}
#footer .sitemap {
    display: none;
}
#footer .access_map {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto 20px;
}
#footer .access_map .ttl {
    font-weight: 700;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-size: 24px;
    position: relative;
    margin-bottom: 5px;
}
#footer .access_map .ttl:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 50%;
    left: 0;
}
#footer .access_map .ttl span {
    background: #333;
    position: relative;
    z-index: 2;
}
#footer .access_map .gmap {
    border-radius: 20px;
}
.copy {
    width: 90%;
    margin: 0 auto;
}
.copy p {
    font-size: 13px;
    text-align: center;
}
@media screen and (min-width: 1025px) {
    #footer {
        padding: 100px 0 45px;
    }
    #footer .inner {
        margin: 0 auto 50px;
        display: flex;
        justify-content: space-between;
    }
    #footer .inner .f_info .f_logo {
        margin-bottom: 15px;
    }
    #footer .inner .f_info .telfax {
        margin: 35px 0 25px;
    }
    #footer .inner .f_info .sns_btn {
        margin-top: 30px;
    }
    #footer .sitemap {
        display: flex;
        justify-content: space-between;
        width: 50%;
    }
    #footer .sitemap .block dl:first-child {
        margin-bottom: 30px;
    }
    #footer .sitemap .block dl dt {
        font-weight: 700;
        font-family: "M PLUS Rounded 1c", sans-serif;
        font-size: 24px;
    }
    #footer .sitemap .block dl dd ul li {
        font-size: 18px;
        padding-left: 20px;
        position: relative;
    }
    #footer .sitemap .block dl dd ul li:before {
        content: "";
        display: block;
        width: 12px;
        height: 1px;
        background: #fff;
        position: absolute;
        top: 50%;
        left: 0;
    }
    #footer .sitemap .block dl dd ul li a {
        color: #fff;
        text-decoration: none;
        transition: 0.3s;
    }
    #footer .sitemap .block dl dd ul li a:hover {
        color: #ffa200;
    }
    #footer .access_map {
        margin: 0 auto 30px;
    }
    #footer .access_map .ttl {
        margin-bottom: 30px;
    }
    #footer .access_map .ttl span {
        background: #333;
        position: relative;
        z-index: 2;
    }
    #footer .access_map .gmap {
        border-radius: 20px;
    }
    .copy {
        display: flex;
        justify-content: center;
    }
    .copy p {
        font-size: 16px;
    }
    .copy p:first-child:after {
        content: "｜";
        margin: 0 15px;
    }
    .copy p a {
        color: #fff;
        text-decoration: none;
    }
}
/* ======================================================

   block

========================================================= */
.main_sec {
    width: 90%;
    margin: 0 auto;
}
@media screen and (min-width: 600px) {
    /* 現在は何もないので削除するか、必要なスタイルを追加 */
}
@media screen and (min-width: 1025px) {
    .main_sec {
        max-width: 1280px;
    }
}
.row-content .block {
    margin-bottom: 30px;
}
.row-content .block:last-child {
    margin-bottom: 0;
}
@media screen and (min-width: 600px) {
    /* 現在は何もないので削除するか、必要なスタイルを追加 */
}
@media screen and (min-width: 1025px) {
    .row-content {
        display: flex;
        flex-wrap: wrap;
    }
    .row-content .block {
        margin-top: 50px;
        margin-bottom: 0;
    }
    .row-content.row-2 .block:nth-child(-n+2) {
        margin-top: 0;
    }
    .row-content.row-3 .block:nth-child(-n+3) {
        margin-top: 0;
    }
    .row-content.row-4 .block:nth-child(-n+4) {
        margin-top: 0;
    }
    .row-content.row-2 .block {
        width: 48%;
    }
    .row-content.row-2 .block:nth-child(2n) {
        margin-left: auto;
    }
    .row-content.row-3 .block {
        width: 30%;
        margin-right: 5%;
    }
    .row-content.row-4 .block {
        width: 23.5%;
        margin-right: 2%;
    }

	.row-content.row-5 { justify-content: space-between;}
    .row-content.row-5 .block {
        width: 15%;
		margin-top: 0;
    }


    .row-content.row-3 .block:nth-child(3n), .row-content.row-4 .block:nth-child(4n) {
        margin-right: 0;
    }
}
.anc_blc {
    margin-top: -70px;
    padding-top: 70px;
}
@media screen and (min-width: 600px) {
    /* 現在は何もないので削除するか、必要なスタイルを追加 */
}
@media screen and (min-width: 1025px) {
    .anc_blc {
        margin-top: -90px;
        padding-top: 90px;
    }
}
.image_c {
    max-width: 700px;
}
.image_c, .image_l .img, .image_r .img {
    margin: 0 auto 20px;
}
.main_sec_bg_inner .image_l .txt, .main_sec_bg_inner .image_r .txt {
    width: 100%;
}
@media screen and (min-width: 1025px) {
    .image_l, .image_r {
        display: flex;
		align-items: center;
    }
    .image_r {
        justify-content: flex-end;
        flex-direction: row-reverse;
    }
    .image_l .img, .image_r .img {
        width: 40%;
        margin: 0;
    }
    .image_l .txt, .image_r .txt, .main_sec_bg_inner .image_l .txt, .main_sec_bg_inner .image_r .txt {
        width: 56%;
    }
    .image_l .txt {
        margin-left: auto;
    }
    .image_r .txt {
        margin-right: auto;
    }


	.rion_img .img { width: 30%;}
	.rion_img .txt { width: 66%;}
}



.gmap {
    height: 250px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
@media screen and (min-width: 1025px) {
    .gmap {
        height: 380px;
    }
}
/* ======================================================

   title

========================================================= */
.page_title {
    background: url("../images/h2_bg.jpg") no-repeat center center;
    background-size: cover;
}
.page_title h2 {
    font-family: "M PLUS Rounded 1c", sans-serif;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    font-size: 28px;
    padding: 40px 0;
    font-weight: bold;
    line-height: 1.4;
}
h3, h4, h5, h6 {
    font-family: "M PLUS Rounded 1c", sans-serif;
}
.ttl_pt01 {
    font-size: 26px;
    text-align: center;
    line-height: 1.2;
    font-weight: 700;
    padding-bottom: 20px;
    position: relative;
    margin-bottom: 15px;
}
.ttl_pt01::after {
    content: "";
    display: block;
    width: 166px;
    height: 15px;
    background: url("../images/h3_bg.png") no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.ttl_pt02 {
    font-size: 22px;
    border-bottom: 1px solid #1e328a;
    padding: 12px 0;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}
.ttl_pt03 {
    font-size: 19px;
    padding: 0.5em 0.8em;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    background: #fff1de;
}
.ttl_pt04 {
    color: #334493;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}
.img_01 {
	max-width: 250px;
	margin: 0 auto;
}
.un_tt1 {
	text-align: center;
	line-height: 1.5;
	font-weight: bold;
	padding: 5px;
	border: 1px #ff7819 solid;
	color: #000;
	background: #ff7819;
	color: #fff;
	margin-bottom: 15px;
}
.un_tt1 .lg{font-size: 122.222%;}
@media screen and (min-width: 1025px) {
    .page_title h2 {
        font-size: 50px;
        padding: 120px 0;
    }
    .ttl_pt01 {
        font-size: 46px;
        line-height: 1.4;
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
    .ttl_pt02 {
        font-size: 38px;
        padding: 0.5em 0;
        margin-bottom: 40px;
        line-height: 1.4;
    }
    .ttl_pt03 {
        font-size: 32px;
        padding: 0.5em 0.8em;
        margin-bottom: 30px;
        line-height: 1.4;
    }
    .ttl_pt04 {
        font-size: 28px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
}
/* ======================================================

   list

========================================================= */
.list_pt01 li {
    position: relative;
    font-size: 16px;
    margin-bottom: 5px;
    padding-left: 20px;
}
.list_pt01 li::before {
    display: block;
    content: '';
    width: 11px;
    height: 11px;
    border-radius: 50%;
    box-sizing: border-box;
    position: absolute;
    background: #334493;
    border: 1px solid #1e328a;
    top: 12px;
    left: 0;
}
.list_pt02 {
    counter-reset: li;
}
.list_pt02 li {
    display: flex;
    align-items: center;
    padding: .3em;
    font-size: 16px;
}
.list_pt02 li::before {
    display: inline-block;
    font-weight: 700;
    margin-right: 5px;
    /*    border-radius: 50%;
    background-color: #334493;*/
    color: #334493;
    line-height: 1.7em;
    text-align: center;
    content: counter(li);
    counter-increment: li;
}
.list_check li {
    font-size: 16px;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}
.list_check li::before {
    display: inline-block;
    width: 13px;
    height: 8px;
    border-bottom: 3px solid #ffa200;
    border-left: 3px solid #ffa200;
    transform: rotate(-45deg) translateY(-1.5px);
    content: '';
    position: absolute;
    top: 13px;
    left: 2px;
}
.list_pt01 li:last-child, .list_check li:last-child {
    margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
    .list_pt01 li, .list_check li {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .list_check li::before {
        top: 14px;
    }
    .list_pt02 li {
        font-size: 18px;
    }
    .list_beside {
        display: flex;
        flex-wrap: wrap;
    }
    .list_beside li {
        margin-right: 2.5em;
    }
    .list_beside.row_2 li {
        width: 50%;
        margin-right: 0;
    }

    .list_beside.row_3 li {
        width: 32%;
        margin-right: 0;
    }
    .list_beside.row_4 li {
        width: 25%;
        margin-right: 0;
    }

	.list_beside.flexcenter {
		justify-content: center;
	}
}
/* ======================================================

   table

========================================================= */
.tbl_pt01, .tbl_pt02 {
    width: 100%;
    border-right: #1e328a solid 1px;
    border-top: #1e328a solid 1px;
    table-layout: fixed;
}
.tbl_pt01 th, .tbl_pt01 td, .tbl_pt02 th, .tbl_pt02 td {
    padding: 10px 15px;
    border-left: #1e328a solid 1px;
    border-bottom: #1e328a solid 1px;
	background: #fff;
}
.tbl_pt01 tr, .tbl_pt01 th, .tbl_pt01 td {
    display: block;
    box-sizing: border-box;
}
.tbl_pt01 th, .tbl_pt02 th {
    background: #e9ecfa;
}
.tbl_pt02 thead th {
    background: #6372b8;
    color: #FFF;
    text-align: center;
}
.scroll {
    overflow-x: auto;
}
.scroll::-webkit-scrollbar {
    height: 5px;
}
.scroll::-webkit-scrollbar-track {
    background: #F1F1F1;
}
.scroll::-webkit-scrollbar-thumb {
    background: #BCBCBC;
}
.scroll table {
    min-width: 600px;
}
@media screen and (min-width: 600px) {
    .scroll table {
        min-width: unset;
    }
    .tbl_pt01 th, .tbl_pt01 td, .tbl_pt02 th, .tbl_pt02 td {
        padding: 15px 20px;
    }
    .tbl_pt01 tr {
        display: table-row;
    }
    .tbl_pt01 th {
        width: 30%;
    }
    .tbl_pt01 th, .tbl_pt01 td {
        display: table-cell;
    }
    .wp15 {
        width: 15% !important;
    }
    .wp20 {
        width: 20% !important;
    }
    .wp25 {
        width: 25% !important;
    }
    .wp30 {
        width: 30% !important;
    }
    .scroll {
        overflow: hidden;
    }
}
@media screen and (min-width: 1025px) {
    /* 現在は何もないので削除するか、必要なスタイルを追加 */
}
/* ======================================================

   button

========================================================= */
.txt_btn {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}
.txt_btn a {
    display: block;
    width: 100%;
    text-decoration: none;
    padding: 15px 35px 15px 15px;
    color: #FFF;
    background-size: 10px 18px;
    border-radius: 10px;
    background: #ffa200;
    position: relative;
    text-align: center;
    box-shadow: 1px 2px 4px 2px rgba(0, 0, 0, 0.2);
}
.txt_btn a:after {
    content: "";
    display: block;
    width: 8px;
    height: 17px;
    background: url("../images/btn_arrow.png") no-repeat center top;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}
.txt_btn.orange a {
    background: #ff6900;
}
.anc_btn_list{justify-content: center;}
.anc_btn_list li {
    width: 100%;
    margin-bottom: 10px;
}
.anc_btn_list li a {
    display: block;
    width: 100%;
    background: #ffa200;
    color: #fff;
    text-decoration: none;
    position: relative;
    border-radius: 10px;
    height: 65px;
    line-height: 65px;
    box-sizing: border-box;
    padding: 0 20px;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    text-align: center;
    transition: 0.3s;
}
.anc_btn_list li a:before {
    content: "";
    display: block;
    width: 8px;
    height: 17px;
    background: url("../images/btn_arrow.png") no-repeat center top;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}
@media screen and (min-width: 1025px) {
    .txt_btn a {
        transition: 0.3s;
    }
    .txt_btn a:hover {
        opacity: 0.8;
    }
    .txt_btn a:after {
        transition: 0.3s;
    }
    .txt_btn a:hover:after {
        right: 10px;
    }
    .anc_btn_list {
        display: flex;
        flex-wrap: wrap;
    }
    .anc_btn_list.btn_bt {
        justify-content: space-between;
    }
    .anc_btn_list.col_two li {
        width: 48%;
        margin: 0 1% 0;
    }
    .anc_btn_list.col_three li {
        width: 31%;
        margin: 0 1% 0;
    }
    .anc_btn_list.col_four li {
        width: 23%;
        margin: 0 1% 0;
    }
    .anc_btn_list.col_five li {
        width: 18%;
        margin: 0 1% 0;
    }
    .anc_btn_list li a:hover {
        opacity: 0.8;
    }
    .w200 {
        max-width: 200px;
    }
    .w250 {
        max-width: 250px;
    }
    .w300 {
        max-width: 300px;
    }
    .w350 {
        max-width: 350px;
    }
    .w400 {
        max-width: 400px;
    }
    .w450 {
        max-width: 450px;
    }
    .w500 {
        max-width: 500px;
    }
    .w200, .w250, .w300, .w350, .w400, .w450, .w500 {
        margin: 0 auto;
    }
}
/* ======================================================

   00.下層共通

========================================================= */
.introductory_text {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto 50px;
    background: #e6e0d7;
    box-sizing: border-box;
    padding: 20px 25px 20px;
    border-radius: 10px;
}
.introductory_text .intro_ttl {
    text-align: center;
    font-size: 20px;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #1e328a;
}
.introductory_text p {
    text-align: center;
}
.point_block {}
.point_block .p_ttl {
    display: inline-block;
    font-family: "M PLUS Rounded 1c", sans-serif;
    background: #ffa200;
    color: #fff;
    font-weight: 700;
    line-height: 1.4;
    padding: 5px 10px;
    border-radius: 10px 10px 0 0;
    font-size: 19px;
}
.point_block .inner {
    width: 100%;
    border-radius: 0px 10px 10px 10px;
    border: 2px solid #ffa200;
    box-sizing: border-box;
    padding: 15px 20px 20px;
    overflow: hidden;
    position: relative;
}
.pickup_outer {
    width: 100%;
    padding: 50px 0;
    background: #5c574e url("../images/pickup_bg.jpg") no-repeat center right;
}
.pickup_content {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}
.pickup_content .pick_ttl {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
}
.pickup_content .pick_ttl02 {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.6;
}
.pickup_content .list_pt01 li:before {
    background: #fff;
    border: none;
}
.pickup_content p, .pickup_content h3, .pickup_content h4, .pickup_content h5, .pickup_content ul li {
    color: #fff;
}
@media screen and (min-width: 1025px) {
    .introductory_text {
        margin: 0 auto 60px;
        padding: 40px 50px 45px;
    }
    .introductory_text .intro_ttl {
        font-size: 26px;
        margin-bottom: 15px;
    }
    .point_block .p_ttl {
        padding: 12px 40px 10px;
        font-size: 30px;
    }
    .point_block .inner {
        border: 2px solid #ffa200;
        box-sizing: border-box;
        padding: 20px 40px 30px;
    }
    .pickup_outer {
        padding: 100px 0;
        background: #5c574e url("../images/pickup_bg.jpg") no-repeat center right;
        background-size: cover;
    }
    .pickup_content .pick_ttl {
        font-size: 52px;
        margin-bottom: 40px;
    }
    .pickup_content .pick_ttl02 {
        font-size: 34px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
}
/* ======================================================

   01.初めての不動産売却ガイド guide01

========================================================= */
.flow_design {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flow05 {
    padding-left: 0;
}
.flow05 > li {
    list-style-type: none;
    position: relative;
    padding-left: 50px;
}
.flow05 > li:not(:last-child) {
    padding-bottom: 10px;
}
.flow05 > li .icon05 {
    width: 2em;
    height: 2em;
    line-height: 2em;
    text-align: center;
    border-radius: 100vh;
    display: inline-block;
    background: #334493;
    color: #fff;
    position: absolute;
    left: 0;
    font-family: "Roboto", sans-serif;
}
.flow05 > li:not(:last-child)::before {
    content: '';
    background: #ccc;
    width: 4px;
    height: 100%;
    position: absolute;
    top: calc(50% - -30px);
    left: 19px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.flow05 > li dl dt p {
    font-size: 1.3em;
    font-weight: 700;
    color: #334493;
}
.flow05 > li dl dd {
    margin-left: 0;
}
.flow05.flow_5step li dl dd {
    font-weight: 700;
    padding-top: 5px;
    font-size: 17px;
}
.flow05 li dl dd.bold {
    padding-top: 3px;
    font-size: 17px;
}
.flow05.flow_7step li dl dd {
    font-weight: 700;
    padding-top: 5px;
}
@media screen and (min-width: 1025px) {
    .flow_design {
        display: block;
        justify-content: center;
        align-items: center;
    }
    .flow05 {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .flow05 > li {
        width: 23%;
        padding-left: 0px;
        margin-bottom: 30px;
    }
    .flow05 > li:not(:last-child) {
        padding-bottom: 0px;
    }
    .flow05 > li:not(:last-child)::before {
        width: 100%;
        height: 4px;
        top: 25px;
        left: auto;
        right: -55%;
    }
    .flow05 > li:nth-child(4):before {
        width: 50%;
        right: 0;
    }
    .flow05 > li:nth-child(5):after {
        content: "";
        display: block;
        width: 50%;
        height: 4px;
        background: #ccc;
        position: absolute;
        top: 25px;
        left: 0;
    }
    .flow05 > li .icon05 {
        position: relative;
        z-index: 3;
        text-align: center;
        margin: 0 auto;
    }
    .flow05 > li dl dt {
        text-align: center;
    }
    .flow05 > li dl dt p {
        font-size: 24px;
        margin-right: 0px;
        text-align: center;
    }
    .flow05 > li dl dt span {
        display: block;
    }
    .flow05 > li dl dd {
        margin-left: 0;
        line-height: 1.6;
        text-align: center;
    }
    .flow05.flow_5step li {
        width: 18%;
    }
    .flow05.flow_5step li:nth-child(4):before, .flow05.flow_7step li:nth-child(4):before {
        width: 100%;
        right: -55%;
    }
    .flow05.flow_5step li:nth-child(5):after, .flow05.flow_7step li:nth-child(5):after {
        content: none;
    }
    .flow05.flow_5step li dl dd, .flow05 li dl dd.bold {
        padding-top: 0;
        font-size: 20px;
    }
    .flow05.flow_7step li {
        width: 12%;
    }
}
/* ======================================================

   05.相続した空き家・空き地について empty

========================================================= */
.row_list_block {
    padding-bottom: 20px;
    border-bottom: 3px solid #334493;
}
.row_list_block .ttl {
    font-size: 19px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    border-bottom: 3px solid #334493;
    padding: 0px 15px 8px;
    font-family: "M PLUS Rounded 1c", sans-serif;
}
.row_list_block .ttl:before {
    content: "";
    display: block;
    width: 6px;
    height: 20px;
    background: #334493;
    position: absolute;
    top: 2px;
    left: 0;
}
.row_list_block ul li {
    font-size: 16px;
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    line-height: 1.6;
}
.row_list_block ul li:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border: 2px solid #333;
    position: absolute;
    top: 8px;
    left: 0;
}
.row_list_block ul li:last-child {
    margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
    .row_list_block {
        padding-bottom: 40px;
    }
    .row_list_block .ttl {
        font-size: 30px;
        margin-bottom: 40px;
        padding: 0px 25px 15px;
    }
    .row_list_block .ttl:before {
        width: 8px;
        height: 35px;
        top: 0px;
    }
    .row_list_block ul {
        display: flex;
        flex-wrap: wrap;
    }
    .row_list_block ul li {
        width: 32%;
        font-size: 18px;
        box-sizing: border-box;
        margin-bottom: 15px;
    }
    .row_list_block ul li:before {
        width: 10px;
        height: 10px;
        top: 11px;
    }
}
/* ======================================================

   15.お問い合わせ・査定依頼

========================================================= */
.tel_block {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border: 1px solid #ccc;
    box-sizing: border-box;
    padding: 15px 10px;
    border-radius: 10px;
}
.tel_block p {
    text-align: center;
    line-height: 1.4;
}
.tel_block .telnum {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #ff6900;
    font-size: 32px;
    line-height: 1.2;
}
.tel_block .telnum span {
    position: relative;
}
.tel_block .telnum span:before {
    content: "";
    display: block;
    width: 28px;
    height: 28px;
    background: url("../images/tel_icon.jpg") no-repeat;
    background-size: contain;
    position: absolute;
    top: 4px;
    left: -30px;
}
.tel_block a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.line_btn {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 20px;
}
.line_btn a {
    display: block;
    background: #06c755;
    color: #fff;
    text-decoration: none;
    text-align: center;
    height: 60px;
    line-height: 60px;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    font-size: 18px;
    border-radius: 10px;
}
.line_btn span {
    padding-left: 40px;
    position: relative;
}
.line_btn span:before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: url("../images/line_icon.jpg") no-repeat;
    background-size: contain;
    position: absolute;
    top: -3px;
    left: 0;
}
@media screen and (min-width: 1025px) {
    .tel_block {
        padding: 20px 30px 30px;
    }
    .tel_block .telnum {
        font-size: 60px;
    }
    .tel_block .telnum span {
        padding-left: 60px;
    }
    .tel_block .telnum span:before {
        width: 52px;
        height: 52px;
        top: 8px;
        left: 0;
    }
    .line_btn a {
        height: 90px;
        line-height: 90px;
        font-size: 32px;
    }
    .line_btn span {
        padding-left: 50px;
    }
    .line_btn span:before {
        width: 40px;
        height: 41px;
        top: 0px;
    }
}
/* ======================================================

   blog

========================================================= */
#blog_list .block {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background: #ffeed6;
    border-radius: 10px;
    margin: 0 auto 10px;
    position: relative;
}
#blog_list .block:last-child {
    margin-bottom: 0;
}
#blog_list .block .thum_img {
    width: 80%;
    height: 160px;
    margin: 0 auto 15px;
    position: relative;
    border-radius: 10px;
    background: #fff url("../images/blog_none.jpg") no-repeat center;
    background-size: cover;
}
#blog_list .block .thum_img img {
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
}
#blog_list .block .text_block {
    width: 100%;
}
#blog_list .block .text_block ul.datecate {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
#blog_list .block .text_block ul.datecate li {
    font-weight: bold;
    line-height: 1.2;
}
#blog_list .block .text_block ul.datecate li:first-child {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
}
#blog_list .block .text_block ul.datecate li:last-child {
    display: block;
    border-radius: 6px;
    background: #1e328a;
    color: #fff;
    font-size: 13px;
    padding: 3px 15px;
    margin-left: 10px;
}
#blog_list .block .text_block h4.blog_ttl {
    font-size: 18px;
    font-weight: 700;
    font-family: "Zen Maru Gothic", sans-serif;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #ff6900;
}
#blog_list .block a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.blog_detail img {
    margin: 0 auto 30px;
}
.blog_detail .txt_b {
    margin: 0 auto 30px;
}
.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    margin: 30px auto 0
}
.pagination li {
    margin: 0 10px;
    font-family: "Roboto", sans-serif;
}
.pagination li a {
    width: 40px;
    height: 40px;
    text-align: center;
    border: 1px solid #1e328a;
    background: #fff;
    display: flex;
    color: #1e328a;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 50px;
}
.pagination li:hover a, .pagination li.active a {
    background: #1e328a;
    color: #fff;
}
.pagination li.active a {
    pointer-events: none;
}
.pagination li.disabled {
    display: none
}
@media screen and (min-width: 1025px) {
    #blog_list .block {
        padding: 30px 40px;
        margin: 0 auto 30px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        -webkit-flex-direction: row-reverse;
        flex-direction: row-reverse;
        transition-duration: 0.3s;
    }
    #blog_list .block .thum_img {
        width: 31%;
        height: 200px;
        margin: 0;
    }
    #blog_list .block .thum_img img {
        height: 200px;
        object-fit: cover;
    }
    #blog_list .block .text_block {
        width: 65%;
    }
    #blog_list .block .text_block ul.datecate li:first-child {
        font-size: 16px;
    }
    #blog_list .block .text_block ul.datecate li:last-child {
        font-size: 14px;
        padding: 5px 20px;
    }
    #blog_list .block .text_block h4.blog_ttl {
        font-size: 24px;
        margin-bottom: 20px;
    }
    #blog_list .block:hover {
        opacity: 0.8;
    }
    .blog_detail .image {
        width: 100%;
        height: 400px;
        margin: 0 auto 30px;
        position: relative;
    }
    .blog_detail img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
    }
    .blog_detail .txt_b {
        margin: 0 auto 30px;
    }
}
/* ======================================================

   property

========================================================= */
.property_list {
    display: flex;
    flex-wrap: wrap;
}
.property_list .block {
    width: 48%;
    margin: 0 1% 15px;
    position: relative;
}
.property_list .block a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.property_list .block .thum_img .cate_name {
    position: absolute;
    top: 10px;
    left: 0;
    background: #1e328a;
    border-radius: 0 6px 6px 0;
    color: #fff;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 12px;
    padding: 5px 10px;
}
.property_list .block .thum_img .img {
    width: 100%;
    height: 120px;
    position: relative;
    background: #fff url("../images/blog_none.jpg") no-repeat center;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid #ccc;
}
.property_list .block .thum_img .img img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}
.property_list .block .text_b .ttl {
    font-weight: 700;
    font-family: "Zen Maru Gothic", sans-serif;
    color: #ff6900;
}
.property_list .block .text_b .price {
    font-size: 13px;
}
.thumbnail {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 5px;
    padding: 0;
}
.thumbnail img {
    width: auto;
    height: 220px;
    margin: 0 auto;
    display: block;
}
thumbnail-thumb img {
    width: auto;
    height: 50px;
    margin: 0 auto;
    display: block;
}
.thumbnail-thumb {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.thumbnail-thumb li {
    margin: 5px;
}
/*.thumbnial-thumb .slick-next { right: 10px; z-index: 100;}
.thumbnail-thumb .slick-prev { left: 0px; z-index: 100;}*/
.thumbnail-thumb .slick-current {
    opacity: 0.5;
}
@media screen and (min-width: 1025px) {
    .property_list {}
    .property_list .block {
        width: 30%;
        margin: 0 1% 15px;
    }
    .property_list .block .thum_img .cate_name {
        font-size: 16px;
        padding: 5px 10px;
    }
    .property_list .block .thum_img .img {
        height: 250px;
        margin-bottom: 15px;
    }
    .property_list .block .thum_img .img img {
        height: 250px;
    }
    .property_list .block .text_b .ttl {
        font-size: 20px;
    }
    .property_list .block .text_b .price {
        font-size: 16px;
    }
    .thumbnail img {
        width: auto;
        height: 450px;
        margin: 0 auto;
        display: block;
    }
    thumbnail-thumb img {
        width: auto;
        height: 100px;
        margin: 0 auto;
        display: block;
    }
}
.center * {
    text-align: center;
}
.ic_ttl {
    position: relative;
    width: 100%;
}
.ic_ttl_right {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 40px;
}
.ic_ttl_right.ic_ttl .icon {
    line-height: 1.5;
    padding: 15px 0 20px 300px;
    background-position: left 140px top;
}
.ic_ttl_right.ic_ttl .bb {
    width: 140px;
    padding: 9px 16px;
    left: 0;
}
.ic_ttl .bb {
    position: absolute;
    width: 139px;
    background: #fff1de;
    padding: 4px 16px;
    border: 2px #000 solid;
    display: inline-block;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: bold;
    left: calc(50% - 200px);
    top: 0;
    text-align: center;
}
.ic_ttl .bb:before, .ic_ttl .bb:after {}
.ic_ttl .bb:before, .ic_ttl .bb:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 15px 0;
    border-color: transparent #000000 transparent transparent;
    left: 0;
    bottom: -15px;
    right: 0;
    margin: 0 auto;
}
.ic_ttl .bb:after {
    border-color: transparent #fff1de transparent transparent;
    border-width: 0 11px 12px 0;
    bottom: -11px;
}
.ic_ttl .bb .org {
    color: #ff7819;
}
.ic_ttl .icon {
    background: url("../images/ic_1.png") no-repeat center top/140px;
    padding-top: 145px;
    display: block;
    font-weight: bold;
    font-size: 26px;
}
.ic_ttl .icon02 {
    background: url("../images/ic_2.jpg") no-repeat center top/140px;
    padding-top: 145px;
    display: block;
    font-weight: bold;
    font-size: 26px;
}


.sale_bg {
    padding: 50px;
    position: relative;
    color: #fff;
    z-index: 1;
}
.sale_bg h4 {
	border-bottom-color: #fff;
}
.sale_bg:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    left: 0;
    top: 0;
    z-index: -11;
}
.sale_bg.bg1 {
    background: url("../images/sale_bg1.jpg") no-repeat center top/cover;
}
.sale_bg.bg2 {
    background: url("../images/sale_bg2.jpg") no-repeat center top/cover;
}
.tag_blue {
    position: relative;
    display: inline-block;
    height: 60px;
    margin-left: 30px;
    padding: 14px 20px 10px 15px;
    color: #FFF;
    background: #1e328a;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}
.tag_blue:before {
    position: absolute;
    top: 0;
    left: -30px;
    content: '';
    border-width: 30px 30px 30px 0;
    border-style: solid;
    border-color: transparent #1e328a transparent transparent;
}
.tag_blue:after {
    position: absolute;
    top: calc(50% - 7px);
    left: -10px;
    width: 14px;
    height: 14px;
    content: '';
    border-radius: 50%;
    background: #fff;
}
.flex {
    display: flex;
    align-items: center;
}
.flex.center {
	justify-content: center;
	text-align: left;
}
.link {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.tag_ttl { text-align: left;}
.tag_ttl:after { content: none;}
@media screen and (min-width: 1025px) {
    .list_square {
        display: flex;
        flex-wrap: wrap;
    }
    .list_square li {
        width: calc(50% - 10px);
    }
    .list_square li:not(:nth-child(2n)) {
        margin-right: 20px;
    }
	.list_square.center {
		justify-content: center;
	}
    .flex_col {
        display: flex;
    }
    .flex_col .img_r {
        margin-left: 50px;
        width: 535px;
        flex-shrink: 0;
    }
    .flex_col .point_block {
        width: 740px;
    }
	.mh1 {
		min-height: 118px;
	}
	.flex_cen {
		align-items: center;
	}
	.max01 {
		max-width: 650px;
		margin: 0 auto 25px
	}
}
@media screen and (max-width: 1024px) {
    .tag_blue {
        position: relative;
        height: 46px;
        padding: 10px 20px 10px 15px;
        font-size: 20px;
        margin-right: 10px;
    }
    .tag_blue:after {
        top: calc(50% - 5px);
        left: -3px;
        width: 10px;
        height: 10px;
    }
    .tag_blue:before {
        top: 0;
        left: -23px;
        border-width: 23px 23px 23px 0;
    }
    .sale_bg {
        padding: 25px;
    }
    .ic_ttl_right.ic_ttl .icon {
        line-height: 1.5;
        padding: 145px 0 0 0px;
        background-position: center top;
    }
    .ic_ttl_right.ic_ttl .icon {
        font-size: 22px;
    }
    .ic_ttl_right {
        justify-content: center;
        margin-bottom: 25px;
    }
    .ic_ttl_right.ic_ttl .bb {
        left: calc(50% - 77px);
        top: -60px;
    }
}
@media screen and (max-width: 375px) {
	.flex {
		align-items: flex-start;
	}
    .ic_ttl .icon {
        padding-top: 100px;
        font-size: 22px;
        background-size: 100px auto;
    }
    .ic_ttl .bb {
        padding: 4px 1px;
        font-size: 12px;
        left: calc(50% - 150px);
        width: 100px;
    }
    .tag_blue {
        height: 40px;
        padding: 10px 10px 10px 9px;
        font-size: 17px;
        margin-right: 10px;
    }
    .tag_blue:before {
        top: 0;
        left: -20px;
        border-width: 20px 20px 20px 0;
    }
	    .ic_ttl_right.ic_ttl .icon {
        font-size: 22px;
        padding: 110px 0 0 0px;
    }
}


.business_icon {
	width: 120px;
	margin: 0 auto 10px;
}


.company_font {
	font-size: 22px;
	font-weight: bold;
	color: #fe7b1f;
}

.staff_block h4 {
	line-height: 1.4;
}
.bg_beige {
	background: #f6f4ee;
	padding: 50px 0;
}

.advantage_ttl { font-size: 20px;}

@media screen and (min-width: 1025px) {
.staff_block h4 {
	line-height: 1.2;
}
.bg_beige {
	padding: 100px 0;
}

.advantage_ttl { font-size: 32px;}
}



.u_drop_list {}
.u_drop_list dl {
	width: 100%;
	margin-bottom: 10px;
}
.u_drop_list dl:last-child { margin-bottom: 0;}
.u_drop_list dl dt {
  background-color: #fff1de;
  padding: 1.0rem 2.5rem 1.0rem 1.0rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: .2s;
	font-weight: bold;
	line-height: 1.4;
	font-size: 17px;
}
.u_drop_list dl dt:before,
.u_drop_list dl dt:after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
}
.u_drop_list dl dt:before {
  border-top: 1px solid #4e4d4c;
  width: 20px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 10px;
}
.u_drop_list dl dt:after {
  border-left: 1px solid #4e4d4c;
  width: 0;
  height: 20px;
  top: 0;
  bottom: 0;
  right: 19px;
  transition: .3s;
}
.u_drop_list dl dt.open:after { height: 0;}

.u_drop_list dl dd {
  display: none;
  padding: 1.0rem 1.0rem 1.0rem 1.0rem;
  box-sizing: border-box;
  background: #fff;
	font-size: 15px;
}

@media screen and (min-width: 1025px) {
.u_drop_list {
	display: flex;
	flex-wrap: wrap;
	}
.u_drop_list dl {
	width: 48%;
	margin: 0 1% 10px;
}
.u_drop_list dl:last-child { margin-bottom: 10px;}
.u_drop_list dl dt {
  padding: 1.5rem 2.5rem 1.5rem 1.5rem;
	font-size: 20px;
}
.u_drop_list dl dt:before {
  border-top: 1px solid #4e4d4c;
  width: 20px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 10px;
}
.u_drop_list dl dt:after {
  border-left: 1px solid #4e4d4c;
  width: 0;
  height: 20px;
  top: 0;
  bottom: 0;
  right: 19px;
  transition: .3s;
}

.u_drop_list dl dd {
  display: none;
  padding: 1.5rem 2.0rem 1.5rem 1.5rem;
	font-size: 18px;
}

}



.ttl_fukidashi {
	background: #334493;
	color: #fff;
	margin-bottom: 20px;
	text-align: center;
	font-weight: 700;
	line-height: 1.6;
	padding: 5px 10px;
	box-sizing: border-box;
	position: relative;
	font-size: 18px;
	border-radius: 5px;
}
.ttl_fukidashi:before {
	content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 15px solid #334493;
  border-bottom: 0;
	position: absolute;
	bottom: -15px;
	left: 0;
	right: 0;
	margin: auto;
}
@media screen and (min-width: 1025px) {
.ttl_fukidashi {
	padding: 8px 10px;
	font-size: 22px;
}

}


.f21{font-size: 21px;}
.mb0{margin-bottom: 0;}
.mb_5{margin-bottom: 5px;}
.max_w200{max-width: 200px;}
.max_w550{max-width: 550px;}
.max_w900{max-width: 900px;}
.max_w1000{max-width: 1000px;}
.relocation_img { max-width: 60%; margin: 0 auto 20px;}
.company_fr{padding: 30px 20px;background-color: #FFF;border: 1px solid #ccc;border-radius: 10px;}
.company_fr .tt{font-weight: bold;font-size: 24px;}
.company_fr_flx{display: flex;align-items: center;gap: 20px;}

.plan-table-wrapper { width: 100%; overflow-x: auto; /* スマホで横スクロール */ font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif; color: #333; } .plan-table { width: 100%; min-width: 800px; /* PC表示時の最小幅 */ border-collapse: collapse; border: 1px solid #ccc; font-size: 14px; }
.plan-table th,
.plan-table td { border: 1px solid #1e328a; padding: 12px 8px; text-align: center; vertical-align: middle; } /* ヘッダー・契約種類 */
.plan-table th.header-col { background-color: #fcfcfc; font-weight: bold; width: 20%; } /* 価格ヘッダー */
.price-header { background-color: #6372b8; /* 薄い赤系の背景 */ font-size: 16px; font-weight: bold; }
.price-text { color: #fff; /* 赤色 [1] */ font-size: 24px; font-weight: bold; margin-right: 2px;}
.unit-text { font-size: 14px; color: #fff; } /* 特徴の説明文 */
.feature-desc { text-align: left !important; vertical-align: top !important; font-size: 16px; line-height: 1.5; padding: 15px; } /* 丸印・テキスト装飾 */
.dot { color: #27428a; /* 青色 [1] */ font-size: 20px; }
.blue-text { color: #27428a; /* 青文字 [1] */ display: block; margin-top: 4px; } /* フッター */
.footer-row td { background-color: #fff; font-weight: bold; padding: 20px; } /* セルの背景色調整 */
.bg-gray { background-color: #f9f9f9; }
.a-link-df{color: #333;text-decoration: underline;}

.fukidashi_block .thum_img { width: 150px; margin: 0 auto 10px; }
.fukidashi_block .thum_img .img{text-align: center;}
.fukidashi_block .thum_img .img img { width: 120px; height: 120px; object-fit: cover; border-radius: 50%;}
.fukidashi_block .thum_img .name { text-align: center; font-weight: bold; line-height: 1.3; margin-top: 5px; font-size: 12px; }
.fukidashi_block .thum_img .name span { font-size: 12px; }
.fukidashi_block .thum_img .name span.lg{font-size: 20px;}
.fukidashi_block .text_block { width: 100%; background: #27428a; box-sizing: border-box; padding: 15px 20px; color: #fff; border-radius: 10px; position: relative; margin-top: 30px; }
.fukidashi_block .text_block:before { content: ""; display: block; position: absolute; top: -20px; left: 0; right: 0; margin: auto; width: 0; height: 0; border-style: solid; border-right: 20px solid transparent; border-left: 20px solid transparent; border-bottom: 20px solid #27428a; border-top: 0; }
.fukidashi_block .list_pt01 li::before{background-color: #fff;}

.frame01{padding:60px 100px;background: url('../images/frame01_bg.png') no-repeat center /100% 100%;position: relative;}
.frame01::after,.point_block .inner.ico::after{content:'';position: absolute;width: 100px;height: 105px;background: url('../images/ic_1.png') no-repeat center /contain;right: 25px;bottom: 0;z-index: 1;}
.frame01:not(:last-child){margin-bottom: 20px;}
.business_3col{display: grid;grid-template-columns: repeat(3,1fr);gap: 2rem;}
.relocation_tt{text-align: center;background-color: #fff1de;padding: 5px 10px;font-weight: bold;}
.auto{margin-left: auto;margin-right: auto;}
.point_block .p_ttl.w_full{width: 100%;text-align: center;}
.point_block .p_ttl.w_full ~ .inner{border-top-right-radius: 0;}

#top_bnn{margin-bottom: 100px;}
.top_bnn > dt{display: flex;justify-content: center;align-items: center;gap:40px;margin-bottom: 20px;}
.top_bnn > dt .baloon .tt{font-weight: bold;margin-bottom: 10px;text-align: center;font-size: 23px;}
.top_bnn > dt .baloon .chat{padding: 5px 10px;font-size: 23px;text-align: center;color: #FFF;}
.top_bnn > dt .baloon .chat{ position: relative; padding: 20px; background-color: #ffab19; border-radius: 10px; box-shadow: 6px 6px 0px 0px #ff7819; }
.top_bnn > dt .baloon .chat::before{ content: ''; position: absolute; display: block; width: 0; height: 0; left: 27px; bottom: -18px; border-top: 15px solid #ff7819; border-right: 15px solid transparent; border-left: 15px solid transparent; }
.top_bnn > dt .baloon .chat::after{ content: ''; position: absolute; display: block; width: 0; height: 0; left: 20px; bottom: -15px; border-top: 15px solid #ffab19; border-right: 15px solid transparent; border-left: 15px solid transparent; }
.top_bnn > dt img{height: 293px;}
.top_bnn > dd{font-size: 20px;text-align: center;}
.top_bnn_form{max-width: 500px;margin: 0 auto;}
.top_bnn_form dl{display: flex;align-items: center;}
.top_bnn_form dl:not(:last-child){margin-bottom: 20px;}
.top_bnn_form dl dt{flex-shrink: 0;width: 150px;font-weight: bold;}
.top_bnn_form dl dd{width: calc(100% - 150px);}
.top_bnn_form dl dd input{width: 100%;}
.top_bnn_form .txt_btn a{width: 280px;margin: 0 auto;}


/* comment out */
#footer .inner .f_info .sns_btn li:nth-of-type(3),
.head_movie_btn{display: none !important;}

@media screen and (min-width: 751px) and (max-width: 1580px) {
    #side_fix_banner li a {font-size: 18px;padding: 15px 20px;}
    #side_fix_banner li:last-child a:hover{opacity: 0.8;}

}

@media screen and (min-width: 1025px) {
    .sp_table,.sp{display: none !important;}
    .company_fr_flx .box01{width: 25%;}
    .company_fr_flx .box02{width: 30%;}
    .company_fr_flx .box03{width: 50%;}
    .list_beside_row2{display: grid;grid-template-columns: repeat(2,1fr);gap:0 10px;}
    .list_beside_row3{display: grid;grid-template-columns: repeat(3,1fr);gap:0 10px;}
    .list_beside_space{display: flex;justify-content: space-around;}

    .fukidashi_block { display: flex; justify-content: space-between; align-items: center; }
    .fukidashi_block .thum_img { width: 150px; margin: 0 0 0; }
    .fukidashi_block .thum_img .img img { width: 150px; height: 150px; border-radius: 50%;}
    .fukidashi_block .thum_img .name span { font-size: 14px; }
    .fukidashi_block .text_block { width: 80%; padding: 25px 30px; margin-top: 0px; line-height: 1.6; }
    .fukidashi_block .text_block:before { top: 50%; left: -20px; right: auto; margin: auto; width: 0; height: 0; border-style: solid; border-top: 20px solid transparent; border-bottom: 20px solid transparent; border-right: 20px solid #27428a; border-left: 0; margin-top: -20px; }
    .point_block .inner.ico::after{width: 60px;height: 62px;right: 10px;}
    .u_2col{display: grid;grid-template-columns: repeat(2,1fr);gap: 40px;}
    .min_h254{min-height: 254px;}
    .min_h72{min-height: 72px;}
    .flex_col .point_block.w1000{width: 1000px;}
    .img_r.w315{width: 315px;}


}
@media screen and (max-width: 1024px) {
    .pc,.pc_table{display: none !important;}
    .company_fr_flx{flex-direction: column;}
    .frame01{padding: 30px 20px;}
    .frame01::after,.point_block .inner.ico::after{width: 50px;height: 52px;right: 5px;}
    .f21{font-size: 18px;}
    .business_3col{grid-template-columns: repeat(2,1fr);max-width: 640px;margin: 0 auto;gap: 1rem;}
    .business_3col .business_icon img{height: 80px;width: auto;display: block;margin: 0 auto;}
    .business_3col .txt-c{font-size: 15px;}
    .tag_blue{margin-left: 20px;}
    #footer{padding-bottom: 100px;position: relative;z-index: 10;}

    .footer_follow { width: 100%; position: fixed; left: 0; bottom: 0; z-index: 999; background: var(--mcolor); padding: 10px 0; display: flex; opacity: 0; pointer-events: none; transition: opacity .3s; }
    .footer_follow.is-show { opacity: 1; pointer-events: auto; }
    .footer_follow dl { display: none; }
    .footer_follow .btm_contact { width: 90%; margin: 0 auto; display: flex; }
    .footer_follow .btm_contact li { width: 28%; height: 50px; margin: 0 1%; border-radius: 40px; text-align: center; }
    .footer_follow .btm_contact li img { width: 50px; }
    .footer_follow .btm_contact li a { display: flex; justify-content: center;align-items: center; width: 100%; box-sizing: border-box; border-radius: 40px; position: relative; }
    .footer_follow .btm_contact li.tel { background: #ff6900; }
    .footer_follow .btm_contact li.mail { background: #ffffff; }
    .footer_follow .btm_contact li.line { background: #06c755; width: 27%; }
    .footer_follow .btm_contact li.mail a { color:#ffa200; }
    .footer_follow{padding: 10px;}
    .footer_follow .btm_contact li{width: calc(100%/3)!important;}
	.footer_follow .btm_contact li { border-radius: 0; margin: 0; }
	.footer_follow .btm_contact { justify-content: center;width: 100%; }
	.footer_follow .btm_contact li a {border-radius: 0;position: relative;padding-top: 10px;}
	.footer_follow .btm_contact li img { width: 40px; }
	.footer_follow .btm_contact li a .small { position: absolute; background: #fff; border: 2px solid #ff6900; border-radius: 20px; left: 50%; transform: translateX(-50%); font-weight: 600; padding: 0 12px; top: -13px; white-space: nowrap; font-size: 12px; }
	.footer_follow .btm_contact li.mail a .small { border-color: #f5f5f5; }
	.footer_follow .btm_contact li.line a .small { color: #06c755; border-color: #06c755; }
    .top_bnn > dt{gap: 10px;margin-bottom: 40px;}
    .top_bnn > dt .baloon .tt{line-height: 1.4;font-size: 2.4vw;}
    .top_bnn > dt .baloon .chat{font-size: 14px;padding: 10px 5px;line-height: 1.4;}
    .top_bnn > dd{font-size: 14px;}
    .top_bnn > dt img{height: 25vw;width: auto;}
    #top_bnn{margin-bottom: 60px;}
    .main_img_cover{display: flex;justify-content: center;flex-direction: column;min-height: 650px;}
    .main_img{margin-bottom:30px !important;}

    .h_cta{display: flex;align-items: center;justify-content: space-between;gap: 10px;margin: 10px auto;}
    .h_cta .head_tel_btn p{padding-left: 0;}
    .h_cta .head_line_btn{width: 100%;}
    .h_cta .head_tel_btn p.telnum{font-size: 22px;margin-bottom: 5px;white-space: nowrap;}
    .h_cta .head_tel_btn p{font-size: 12px;}
    .h_cta .head_tel_btn p.telnum span:before{width: 20px;height: 20px;top:2px;}

}
@media screen and (max-width: 374px) {
    .frame01::after, .point_block .inner.ico::after{width: 30px;height: 32px;right: 0;}
    .h_cta .head_tel_btn p.telnum{font-size: 18px;
}