@charset "UTF-8";
/*mixin
----------------------------------------------------*/
/* 幅1100px以下からcss適応 */
@media only screen and (max-width: 1100px) {
  /* ヘッダー */
  #header {
    padding: 8px 0 32px;
  }
  .h_conts-l {
    width: 66vw;
  }
  .h_conts-l-l {
    width: 45vw;
  }
  .h_no1 img {
    width: 15vw;
    max-width: 153px;
    height: auto;
  }
  .h_conts-l-r {
    margin-left: 24px;
  }
  .h_conts-r {
    flex-direction: column;
  }
  .h_tel {
    width: 100%;
  }
  .h_tel-num {
    text-align: center;
  }
  .h_btnlist {
    margin-top: 12px;
  }
  .h_conts {
    align-items: flex-start;
    margin-top: 16px;
  }
  .h_btnconts:first-of-type {
    margin-left: 0;
  }
  #nav {
    padding: 0;
  }
  #second #nav {
    padding-bottom: 0;
  }
  .nav_pc {
    display: none;
  }
  .nav_sp {
    display: flex;
    justify-content: space-between;
  }
  .nav_sp-conts {
    width: calc(100% / 3);
    text-align: center;
    border-right: 1px solid #40a179;
    background: linear-gradient(to bottom, #009658 0%, #006139 100%);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .nav_sp-conts:last-of-type {
    border-right: none;
  }
  /* ハンバーガーメニュー */
  .sp_hummenu {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
  }
  .hum_menu_obtn {
    background: none;
    padding: 0;
    border: none;
    width: 100%;
    color: #fff;
    border-radius: 50px;
    font-weight: bold;
    letter-spacing: 0.05em;
    display: block;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .hum_menu_obtn p {
    line-height: 0;
  }
  .hum_menu_obtn_bar {
    position: relative;
    width: 100%;
    border-top: 3px solid #fff;
    padding: 5px 0px 0;
  }
  .hum_menu_obtn_bar:before,
  .hum_menu_obtn_bar:after {
    content: "";
    display: block;
    border-top: 3px solid #fff;
    padding: 5px 0 0;
  }
  .hum_menu_obtn span {
    position: relative;
    width: 280px;
    display: block;
    top: 0;
    line-height: 1;
    color: #fff;
  }
  .hum_menu_nav {
    background: rgba(255, 255, 255, 0.98);
    height: 100%;
    left: -280px;
    position: fixed;
    top: 0;
    transition-duration: 0.3s;
    transition-property: left;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    width: 280px;
    color: #000;
  }
  .hum_menu_nav.clicked {
    left: 0;
    overflow: scroll;
    z-index: 100000;
  }
  .hum_menu_nav_close {
    padding: 15px 0;
  }
  .hum_menu_cbtn {
    background: rgba(64, 166, 41, 0);
    border: none;
    color: #000;
    padding: 0;
    font-weight: bold;
    letter-spacing: 0.05em;
    display: block;
    position: absolute;
    top: 25px;
    left: 12px;
    font-size: 12px;
  }
  .hum_menu_cbtn_bar {
    position: relative;
    top: 4px;
    width: 100%;
    max-width: 70%;
    margin: 0 auto;
    padding: 5px 0 0;
  }
  .hum_menu_cbtn_bar:before,
  .hum_menu_cbtn_bar:after {
    content: "";
    display: block;
    border-top: 3px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: 3px;
  }
  .hum_menu_cbtn_bar:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -3px;
    margin-bottom: 15px;
  }
  .hum_menu_nav_menu {
    margin-top: 55px;
  }
  .hum_menu_nav_menu-ttl {
    background: #006139;
    box-sizing: border-box;
    padding: 8px 0;
  }
  .hum_menu_nav_menu-ttl p {
    font-weight: bold;
    color: #fff;
  }
  .hum_menu_nav_menu-list {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #000;
  }
  .hum_menu_nav_menu-list.hum_menu_nav_menu-list01 {
    background: #ffffee;
    margin-bottom: 0;
  }
  .hum_menu_nav_menu-list li {
    color: #000;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #000;
    line-height: 1.5;
    font-size: 0.85em;
    font-weight: bold;
    position: relative;
    text-align: center;
  }
  .hum_menu_nav_menu-list li:nth-child(2n+1) {
    width: 100%;
    border-bottom: 1px solid #000;
  }
  .hum_menu_nav_menu-list li a {
    padding: 16px 0;
    display: block;
    color: #333;
    text-decoration: none;
  }
  .hum_menu_nav_menu-list li a:after {
    content: "";
    position: absolute;
    right: 20px;
    width: 8px;
    height: 8px;
    margin-top: 3px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: transform 0.3s linear 0s;
    transition: transform 0.3s linear 0s;
  }
  .hum_menu_nav_menu-list li a.more_on:after {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .hum_menu_nav_menu-list li.sp_nav_more_wrap a {
    padding: 16px 0;
  }
  .hum_menu_nav_menu-list ul.sp_nav_more {
    border-top: none;
  }
  .hum_menu_nav_menu-list ul.sp_nav_more li {
    text-align: right;
    padding: 10px 15px 0;
    font-size: 1.05em;
    border-bottom: none;
    background: rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
  }
  .hum_menu_nav_menu-list ul.sp_nav_more li:last-child {
    border-bottom: none;
    padding-bottom: 10px;
  }
  .hum_menu_nav_menu-list ul.sp_nav_more li:after {
    content: none;
  }
  .hum_menu_nav_menu-list ul.sp_nav_more li a {
    padding: 5px 0;
    text-align: center;
  }
  .hum_menu_nav_menu-list ul.sp_nav_more li a:after {
    content: none;
  }
  .sp_nav-s {
    position: relative;
  }
  .sp_nav-s .sp_nav-s-link:after {
    content: none;
  }
  .sp_nav-s .sp_nav-s-nolink {
    width: 100%;
    font-weight: bold;
    position: relative;
    text-align: center;
    line-height: 1.5;
    padding: 16px 0;
    display: block;
    color: #333;
    text-align: center;
    text-decoration: none;
    background: none;
    border: none;
  }
  .sp_nav-accordion {
    width: 28px;
    height: 28px;
    background: #edacc8;
    position: absolute;
    right: 8px;
    top: 10px;
    border: none;
    border-radius: 4px;
  }
  .sp_nav-accordion span {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .sp_nav-accordion span:before, .sp_nav-accordion span:after {
    content: "";
    display: block;
    width: 14px;
    height: 3px;
    background: #fff;
    position: absolute;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: auto;
    border-radius: 1px;
    transition: all 0.1s linear 0s;
  }
  .sp_nav-accordion span:before {
    transform: rotate(90deg);
  }
  .sp_nav-accordion.on span:before {
    transform: rotate(45deg);
  }
  .sp_nav-accordion.on span:after {
    transform: rotate(-45deg);
  }
  .sp_nav-detail {
    display: none;
    background: #fff9f7;
  }
  .sp_nav-detail ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-top: 1px solid #e85617;
  }
  .sp_nav-detail ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50% !important;
    box-sizing: border-box;
    border-bottom: 1px solid #e85617;
    border-right: 1px solid #e85617;
  }
  .sp_nav-detail ul li:nth-of-type(2n), .sp_nav-detail ul li:nth-of-type(2n + 1) {
    border-bottom: 1px solid #e85617;
  }
  .sp_nav-detail ul li:nth-of-type(2n) {
    border-right: none;
  }
  .sp_nav-detail ul li.last {
    border-bottom: none;
  }
  .sp_nav-detail ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 10px 24px 10px 8px;
  }
  .sp_nav-detail ul li a:after {
    width: 6px;
    height: 6px;
    border-top: 2px solid #e85617;
    border-right: 2px solid #e85617;
    margin-top: 0px;
    top: auto;
    bottom: auto;
    right: 14px;
  }
  .hum_menu_nav-ttl01 {
    background: #81b802;
    box-sizing: border-box;
    padding: 16px 4px;
    font-size: 1.2em;
    font-weight: bold;
    color: #fff;
    text-align: left;
  }
  .sp_nav_more_o {
    display: none;
    width: calc(200% + 2px);
  }
  .sp_nav_more_r {
    position: relative;
    left: -100%;
    width: 200%;
  }
  .hum_open_bg_display {
    transition: all 0.25s linear 0s;
  }
  .hum_open_bg_display.active {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
  }
  /* ここまで */
  .hum_menu_obtn,
  .sp_tel,
  .sp_contact {
    min-height: 88px;
  }
  .sp_tel p,
  .sp_contact p {
    height: 100%;
    line-height: 0;
  }
  .hum_menu_obtn p,
  .sp_tel a,
  .sp_contact a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
    padding: 0 6px;
    transition: all 0.25s linear 0s;
  }
  .hum_menu_obtn p img,
  .sp_tel a img,
  .sp_contact a img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 64px;
  }
  .nav_side #side {
    display: block;
    margin: 24px auto 0;
    padding-bottom: 0;
  }
  #nav_side-btn {
    display: block;
    box-shadow: none;
    border: none;
    background: linear-gradient(to bottom, #eb71a6 0%, #c53874 100%);
    color: #fff;
    padding: 8px 40px 8px 60px;
    box-sizing: border-box;
    border-radius: 100px;
    font-size: 1em;
    font-weight: bold;
    margin: 16px auto 32px;
    position: relative;
  }
  #nav_side-btn:before {
    content: "";
    width: 3px;
    height: 10px;
    background: #fff;
    position: absolute;
    left: 41px;
    bottom: 15px;
    transform: rotate(-45deg);
  }
  #nav_side-btn:after {
    content: "";
    width: 3px;
    height: 10px;
    background: #fff;
    position: absolute;
    left: 47px;
    bottom: 15px;
    transform: rotate(45deg);
  }
  #nav_side-btn.on:before {
    transform: rotate(-315deg);
  }
  #nav_side-btn.on:after {
    transform: rotate(315deg);
  }
  #mainimage_strongpoint {
    padding: 40px 0;
  }
  /* common */
  #main {
    width: 100%;
    max-width: 100%;
  }
  #conts {
    width: 90%;
    max-width: 720px;
    margin: 0 auto;
  }
  .conts01 {
    margin-top: 56px;
  }
  /* side */
  #side {
    display: none;
  }
  /* common_contactconts */
  .common_contact-wrap {
    flex-direction: column;
  }
  .common_contact-l {
    max-width: 100%;
    margin: 0 auto 32px;
  }
  .common_contact-l:after {
    border: 20px solid transparent;
    border-top: 16px solid #fff;
    position: absolute;
    right: 0;
    left: 0;
    top: 100%;
    margin: 0 auto;
  }
  .common_contact-r {
    width: 100%;
    align-items: center;
    padding: 0;
  }
  .common_contact-l-img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* 幅960px以下からcss適応 */
@media only screen and (max-width: 960px) {
  .h_btnlist {
    width: 100%;
  }
  .h_btn {
    width: 100%;
  }
  .h_btn:first-of-type {
    margin-left: 0;
  }
  .h_btn a {
    display: flex;
    justify-content: center;
    font-size: 15px;
    padding: 10px 20px;
  }
  .common_contactconts {
    padding: 48px 0;
  }
  .common_contact-ttl-text {
    box-sizing: border-box;
    padding: 0 2em;
  }
  .common_contact-ttl-text:before {
    transform: rotate(-25deg);
    left: 0;
  }
  .common_contact-ttl-text:after {
    transform: rotate(25deg);
    right: 0;
  }
  .common_contact-ttl-text span {
    line-height: 1.5;
    text-align: center;
  }
  .common_contact-ttl-text span:before {
    transform: rotate(-25deg);
  }
  .common_contact-ttl-text span:after {
    transform: rotate(25deg);
  }
  .common_contact-btn {
    width: 100%;
    margin: 0 auto 24px;
    max-width: 480px;
  }
  .common_contact-btn:last-of-type {
    margin: 0 auto !important;
  }
  .common_contact-btn a {
    min-height: 80px;
  }
}

/* 幅800px以下からcss適応 */
@media only screen and (max-width: 880px) {
  /* header */
  .h_conts-l {
    width: 80vw;
  }
  .h_conts-r {
    width: 100%;
    margin-left: 16px;
  }
  /* common_contact */
  .common_contact-wrap {
    width: 90%;
  }
  .common_contactconts {
    padding: 32px 0 80px;
  }
  .common_contact-btnlist {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
  }
  .common_contact-btnconts {
    width: 100%;
    max-width: 640px;
    margin: 0 auto 14px !important;
  }
  .common_contact-btnconts:last-of-type {
    margin-bottom: 0 !important;
  }
  .common_contact-btnconts a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    min-height: 56px;
  }
  /* footer */
  .footer_wrap {
    flex-direction: column;
  }
  .footer_l {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .footer_logo {
    line-height: 1;
    margin-bottom: 12px;
  }
  .footer_logo img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .footer_menulist {
    text-align: center;
  }
  .footer_menulist ul {
    display: flex;
    justify-content: center;
  }
  .footer_r {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 24px auto 0;
  }
  .tbl_schedule thead tr,
  .tbl_schedule tbody tr {
    justify-content: center;
  }
  #footer {
    padding: 40px 0;
  }
  #footer .open_tbl {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
  #footer .open_tbl-memo {
    width: 100%;
    max-width: 480px;
    margin: 4px auto 0;
  }
  .footer_l {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
  .footer_menu ul {
    display: flex;
    justify-content: center;
  }
}

/* 幅680px以下からcss適応 */
@media only screen and (max-width: 680px) {
  /* common */
  body {
    font-size: 15px;
    overflow-x: hidden;
  }
  /* header */
  #header {
    margin-top: 64px;
    padding-bottom: 8px;
    background: #fff;
  }
  .h_wrap {
    width: 100%;
  }
  .h_h1-t {
    padding: 0 2.5% 4px;
    border-bottom: 1px dashed #ddd;
    line-height: 1.5;
  }
  .h_h1-t h1 {
    font-size: 12px;
    text-align: left;
  }
  .h_conts {
    width: 95%;
    margin: 16px auto 8px;
  }
  .h_conts {
    flex-direction: column;
  }
  .h_conts-l {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
  }
  .h_conts-top {
    width: 100%;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
  }
  .h_conts-btm {
    margin-top: 0;
  }
  .h_conts-l-l {
    width: 78vw;
    margin-left: 4px;
  }
  .h_conts-l-r {
    margin: 0;
  }
  .h_logo {
    text-align: left;
  }
  .h_conts-r {
    display: none;
  }
  .h_logo {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .h_logo img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .h_address {
    display: none;
  }
  .hum_menu_nav {
    width: 280px;
    left: -100%;
  }
  .hum_menu_nav_menu-list {
    margin-bottom: 24px;
  }
  .h_address {
    display: block;
    text-align: center;
    margin-top: 0;
  }
  .h_address p {
    font-size: 12px;
  }
  /* nav */
  #nav {
    display: block;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
  }
  .hum_menu_obtn,
  .sp_tel,
  .sp_contact {
    min-height: 64px;
  }
  .hum_menu_obtn img,
  .sp_tel img,
  .sp_contact img {
    max-height: 40px !important;
  }
  .sp_contact img {
    position: relative;
    top: 1px;
  }
  .nav_sp-conts {
    border-right: 1px solid #fff;
  }
  .nav_sp-conts:last-of-type {
    border-right: none;
  }
  .nav_sp-conts img {
    filter: none;
  }
  .nav_sp.on {
    background: url("../images/common/bg01.gif") repeat left top;
  }
  .list02 {
    flex-direction: column;
  }
  .list02 li {
    margin-bottom: 8px;
    margin-right: 0;
    line-height: 1.5;
  }
  .list02 li:before {
    top: 8px;
  }
  /* mainimage */
  #mainimage {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .mainimage_pc {
    display: none;
  }
  .mainimage_sp {
    display: block;
    line-height: 0;
  }
  .mainimage_sp img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .mainimage_img {
    height: 100%;
    right: 0;
    overflow: hidden;
  }
  .mainimage_point {
    padding: 16px 8px;
  }
  .mainimage_point .mainimage_point-wrap {
    width: 100%;
  }
  .mainimage_point .mainimage_point-wrap ul li {
    padding-right: 8px;
    margin-right: 8px;
    line-height: 0;
  }
  .mainimage_point .mainimage_point-wrap ul li:last-of-type {
    padding-right: 0;
    margin-right: 0;
  }
  /* main */
  #main {
    margin: 0;
    padding: 40px 0;
  }
  .conts01 {
    margin-top: 32px;
  }
  .conts02 {
    margin-top: 24px;
  }
  .conts03 {
    padding: 12px 16px;
    margin-top: 24px;
  }
  .conts04 {
    padding: 12px 16px;
    margin-top: 24px;
  }
  .conts04 p:last-of-type {
    margin-bottom: 0 !important;
  }
  /* 共通パーツ */
  #main {
    padding: 32px 2.5%;
  }
  .main_wrap {
    padding: 0;
  }
  #conts {
    width: 100%;
  }
  .ttl01 {
    font-size: 22px;
    margin-bottom: 24px;
  }
  .ttl01 .br {
    display: inline;
  }
  .ttl02 {
    font-size: 22px;
    padding: 12px 0;
    margin-bottom: 24px;
  }
  .ttl03 {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .ttl03_outline:before {
    left: 0.15em;
    transform: rotate(-25deg);
  }
  .ttl03_outline:after {
    right: 0.15em;
    transform: rotate(25deg);
  }
  .ttl03_wrap {
    padding: 0 clamp(0.75em, 6vw, 2em);
  }
  .ttl03_wrap:before {
    left: 0.25em;
    transform: rotate(-20deg);
  }
  .ttl03_wrap:after {
    right: 0.25em;
    transform: rotate(20deg);
  }
  .ttl04 {
    font-size: 20px;
    padding: 12px;
    margin-bottom: 16px;
    line-height: 1.5;
  }
  .ttl05 {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 12px;
    padding-bottom: 4px;
  }
  .ttl06 {
    font-size: 17px;
    padding-left: 32px;
    line-height: 1.5;
    padding-bottom: 4px;
  }
  .ttl06 span {
    font-size: 17px;
    top: 0;
  }
  .strong02 {
    text-underline-offset: 4px;
  }
  .btn01 p a {
    width: 90%;
    font-size: 15px;
    padding: 8px;
  }
  .sp_br {
    display: block;
  }
  /* トップページ */
  /* 準備中 */
  .comingsoon_conts {
    padding: 12px;
    margin-bottom: 24px;
  }
  .comingsoon_conts p {
    font-size: 15px;
    line-height: 2;
  }
  /* swiper */
  .swiper-pagination {
    position: relative !important;
    height: 20px !important;
    margin-bottom: 0;
    top: 0px !important;
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
  /* top_menu */
  .top_menu ul li {
    width: calc(50% - 4px);
    margin-right: 8px;
    margin-bottom: 8px;
    line-height: 1;
  }
  .top_menu ul li:nth-of-type(3n) {
    margin-right: 8px;
  }
  .top_menu ul li:nth-of-type(2n) {
    margin-right: 0;
  }
  /* top_repat */
  .top_repat-text01 {
    margin-bottom: 32px;
  }
  .top_repat-text01 p {
    font-size: 16px;
  }
  /* media */
  .media_ttl {
    min-height: 80px;
    box-sizing: border-box;
    padding: 36px 12px 16px;
  }
  .media_ttl-img {
    width: auto;
    height: 100%;
    max-height: 100px;
    left: 0;
    right: 0;
    top: -32px;
    text-align: center;
    margin: 0 auto;
  }
  .media_ttl-img img {
    width: auto;
    max-width: fit-content;
    height: auto;
    max-height: 80px;
  }
  .media_ttl-text {
    width: 100%;
    font-size: 22px;
    padding: 0;
    padding-top: 16px;
  }
  .media_ttl-text span {
    display: inline;
    font-size: 1em;
  }
  .media_conts {
    padding: 8px;
  }
  .media_conts-wrap {
    padding: 12px;
  }
  /* offer_conts */
  .offer_conts {
    margin-bottom: 16px;
  }
  /* nayami */
  .nayami_list {
    padding: 16px;
  }
  .nayami_list ul li {
    background-size: 16px auto;
    background-position: left 3px;
    font-size: 15px;
    padding-bottom: 8px;
    margin-bottom: 8px;
    padding-left: 24px;
  }
  .nayami_answer {
    margin-top: 20px;
    padding: 12px;
  }
  .nayami_answer:before {
    width: 36px;
    height: 12px;
    top: -11px;
  }
  .nayami_answer-wrap p {
    font-size: clamp(16px, 5.5vw, 20px);
  }
  /* voice */
  .voice_conts {
    padding: 8px;
    margin-bottom: 20px;
  }
  .voice_conts-wrap {
    padding: 16px;
  }
  .voice_ttl {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .voice_ttl span {
    display: block;
  }
  .voice_main {
    display: flex;
    flex-direction: column;
  }
  .voice_main-img {
    margin: 0 auto 12px;
    text-align: center;
  }
  .voice_main-img img {
    width: auto;
    max-width: 140px;
    height: auto;
  }
  .voice_main-img .voice_main-img-btn {
    padding: 4px;
  }
  .voice_main-img .voice_main-img-btn img {
    max-width: 14px !important;
    top: 2px;
  }
  .voice_main-text p {
    font-size: 14px;
  }
  /* genin */
  .genin_main {
    display: block;
  }
  .genin_img {
    float: right;
    max-width: 80px;
    margin-left: 12px;
  }
  /* kaizen */
  .kaizen_mainconts {
    padding: 40px 12px 20px;
  }
  .kaizen_ttl {
    padding: 12px;
    margin-bottom: 44px;
  }
  .kaizen_ttl:after {
    border: 16px solid transparent;
    border-top: 16px solid #006139;
    bottom: -32px;
  }
  .kaizen_ttl-text {
    font-size: clamp(16px, 5.5vw, 20px);
  }
  .kaizen_ttl02 {
    line-height: 1.5;
  }
  .kaizen_ttl02-wrap {
    display: block;
    font-size: clamp(16px, 5.5vw, 20px);
  }
  .kaizen_main-img {
    margin-top: 16px;
  }
  .kaizen_maintext {
    margin-top: 12px;
  }
  /* select */
  .select_mainttl-text01 {
    width: fit-content;
    max-width: fit-content;
    box-sizing: border-box;
    padding: 12px 24px;
  }
  .select_mainttl-text01 p img {
    width: auto;
    max-width: 180px;
    height: auto;
  }
  .select_mainttl-text02 {
    margin-top: 24px;
    padding: 12px 0;
  }
  .select_mainttl-text02-wrap {
    flex-direction: column-reverse;
  }
  .select_mainttl-text02-01 {
    display: block;
    font-size: clamp(40px, 8vw, 56px);
    text-align: center;
    margin-top: 12px;
  }
  .select_mainttl-text02-01 span {
    line-height: 0;
  }
  .select_mainttl-text02-02 {
    font-size: clamp(20px, 6vw, 24px);
    margin: 0 auto 12px;
  }
  .select_mainttl-text02-02 .br {
    display: inline;
  }
  .select_conts {
    padding: 8px;
    margin-bottom: 20px;
  }
  .select_conts-wrap {
    padding: 16px;
  }
  .select_ttl {
    display: flex;
    flex-direction: column-reverse;
    min-height: 0;
  }
  .select_ttl-text {
    display: block;
    font-size: 18px;
    margin: 4px auto 0;
    width: 100%;
  }
  .select_num {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    width: 100%;
    max-width: 80px;
    height: auto;
    text-align: center;
    box-sizing: border-box;
    padding: 4px 0 8px;
    font-size: 16px;
  }
  .select_num span {
    font-size: 1.35em;
    display: inline;
    line-height: 1;
    position: relative;
    top: 1px;
    margin-left: 3px;
  }
  .select_textarea-text {
    margin-top: 8px;
  }
  /* profile */
  .profile_img,
  .case_profile-img {
    float: none;
    margin: 0 auto 16px;
    text-align: center;
    max-width: 200px;
  }
  .profile_info {
    padding: 8px;
    margin-top: 12px;
  }
  .profile_info-text01,
  .profile_info-text02,
  .case_profile-info-text01,
  .case_profile-info-text02 {
    font-size: 14px;
  }
  /* contscontact */
  .contscontact_ttl {
    padding: 12px;
    margin-bottom: 28px;
  }
  .contscontact_ttl:after {
    border: 16px solid transparent;
    border-top: 16px solid #006139;
    bottom: -32px;
  }
  .contscontact_ttl-text {
    font-size: 22px;
  }
  .contscontact_wrap {
    padding: 16px;
  }
  .contscontact_btn a {
    padding: 8px 12px;
  }
  .contscontact_btn01-text01 {
    font-size: clamp(13px, 4vw, 18px);
    line-height: 1.25;
    margin-bottom: 4px;
  }
  .contscontact_btn01-text02 {
    width: 90%;
    line-height: 0;
    margin: 4px auto 0;
  }
  .contscontact_logo {
    margin-bottom: 8px !important;
  }
  .contscontact_open {
    flex-direction: column;
    margin: 16px auto;
    padding: 8px 0;
  }
  .contscontact_open dl {
    margin-bottom: 4px;
  }
  .contscontact_open dl:last-of-type {
    margin-bottom: 0;
  }
  .contscontact_open dl dt, .contscontact_open dl dd {
    font-size: 14px;
  }
  .contscontact_open dl dt {
    width: 5em;
  }
  .contscontact_open dl dd {
    width: calc(100% - 6em);
    margin-left: 8px;
  }
  .contscontact_address dl {
    display: flex;
    flex-direction: row;
    margin-bottom: 4px;
  }
  .contscontact_address dl:last-of-type {
    margin-bottom: 0;
  }
  .contscontact_address dl dt, .contscontact_address dl dd {
    font-size: 14px;
    line-height: 1.5;
  }
  .contscontact_address dl dt {
    width: 6em;
  }
  .contscontact_address dl dd {
    width: 100%;
  }
  .contscontact_map {
    margin-top: 16px;
  }
  .contscontact_map iframe {
    width: 100%;
    min-height: 360px;
  }
  /* pagetop */
  #pagetop img {
    width: 48px;
    height: 48px;
  }
  /* common_conts */
  .common_contactconts {
    padding: 32px 0;
  }
  .common_contact-l {
    width: 95%;
    padding: 5px;
    margin-bottom: 16px;
    border: 1px;
  }
  .common_contact-l-wrap:before {
    border: 20px solid transparent;
    border-right: 20px solid #d71d1f;
    left: -20px;
    top: calc(0% - 20px);
    transform: rotate(45deg);
  }
  .common_contact-l-wrap:after {
    border: 20px solid transparent;
    border-top: 20px solid #006139;
    right: -20px;
    bottom: calc(0% - 20px);
    transform: rotate(-45deg);
  }
  .common_contact-l-img {
    width: clamp(160px, 74vw, 280px);
    max-width: 280px;
  }
  .common_contact-l-img img {
    width: auto;
    max-width: 80%;
    height: auto;
  }
  .common_contact-l-text {
    font-size: clamp(20px, 8vw, 26px);
    padding: 16px 8px;
    font-weight: bold;
  }
  .common_contact-l-text .common_contact-l-text-strong01 {
    font-size: 1em;
  }
  .common_contact-l-text .common_contact-l-text-strong02 {
    font-size: 1em;
  }
  .common_contact-r {
    margin-top: 16px;
    width: 100%;
  }
  .common_contact-r-text01 {
    flex-direction: column;
  }
  .common_contact-r-text01-text span {
    font-size: clamp(20px, 4vw, 24px);
  }
  .common_contact-r-info {
    width: 100%;
  }
  .common_contact-r-info-wrap {
    width: 100%;
    flex-direction: column;
  }
  .common_contact-r-infoconts {
    width: 100%;
    margin-left: 0;
    margin-top: 8px;
  }
  .common_contact-r-info-ttl {
    width: 5em;
    padding: 4px;
    text-align: center;
  }
  .common_contact-r-infotext {
    margin-left: 12px;
  }
  .common_contact-r-infotext dl dt, .common_contact-r-infotext dl dd {
    font-size: 14px;
  }
  .common_contact-r-infotext p {
    font-size: 14px;
    padding-top: 2px;
  }
  /* side */
  #side_btn {
    display: none !important;
  }
  /* footer */
  #footer {
    padding: 24px 0;
    width: 90%;
  }
  .f_menulist ul {
    flex-direction: row;
  }
  .f_menulist ul li:before {
    margin-left: 2px;
    margin-right: 2px;
  }
  .f_menulist ul li:first-of-type:before {
    content: none;
  }
  .f_menulist ul li:last-of-type:after {
    content: none;
  }
  .f_info {
    margin: 16px auto;
    padding: 8px 0;
  }
  .f_info ul {
    flex-direction: column;
    justify-content: center;
  }
  .f_info ul li {
    font-size: 13px;
    text-align: center;
    margin: 0 auto;
  }
  .f_info ul li:last-of-type {
    margin: 0 auto;
  }
  #f_copy {
    margin-bottom: 15vw;
    padding: 12px 0;
  }
  /* ご予約・お問い合わせ */
  .reserve_line-pc {
    display: none;
  }
  .reserve_line-sp {
    display: block;
  }
  .contact_formtbl {
    display: block;
    border: none;
  }
  .contact_formtbl tbody {
    display: block;
  }
  .contact_formtbl tbody tr {
    display: flex;
    flex-direction: column;
  }
  .contact_formtbl tbody tr th, .contact_formtbl tbody tr td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .contact_formtbl tbody tr th {
    padding: 12px 12px 0;
    margin-bottom: 8px;
  }
  .contact_formtbl tbody tr td {
    padding: 0 12px 12px;
  }
  .contact_formtbl tbody tr td .contact_form-datetime-wrap {
    flex-direction: column;
  }
  .contact_formtbl tbody tr td .contact_form-datetime-wrap .contact_form-date {
    margin-bottom: 4px;
  }
  .contact_formtbl tbody tr td .contact_form-datetime-wrap .contact_form-time {
    margin-top: 4px;
    margin-left: 0;
  }
  .contact_formtbl tbody tr td input[type='date'],
  .contact_formtbl tbody tr td select,
  .contact_formtbl tbody tr td option {
    width: 100% !important;
  }
  .contact_formtbl tbody tr th,
  .contact_formtbl tbody tr td {
    border: none;
  }
  .required {
    margin-left: 6px;
  }
  .contact_formtbl-submit {
    margin-bottom: 40px;
    margin-top: 20px;
  }
  .reserve_menu {
    display: flex;
    flex-direction: column;
  }
  .reserve_menu li {
    margin-bottom: 4px;
  }
  .reserve_menu li:last-of-type {
    margin-bottom: 0;
  }
  .reserve_menu input {
    display: inline-block !important;
    width: 1em;
  }
  /* スマホ首・肩こり */
  .case_textarea {
    display: flex;
    flex-direction: column;
  }
  .case_textarea p {
    display: flex;
    flex-direction: column;
    order: 1;
  }
  .case_textarea .img_f-r {
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 9;
    margin: 0 auto;
    text-align: center;
  }
  .case_textarea .img_f-r img {
    width: auto;
    max-width: 80%;
    height: auto;
    margin: 0 auto;
  }
  /* wp関連 */
  .category_archive-list ul {
    flex-direction: column;
  }
  .category_archive-list ul li {
    width: 100%;
    margin: 0 auto 24px;
  }
  .conts_single h5 {
    font-size: 16px;
    border-bottom: 1px dashed #ced9ef;
  }
  .conts_single h5:before {
    top: 14px;
  }
  .conts_single .block01_wrap {
    padding-bottom: calc(16px - 1em);
  }
  .conts_single .block02 {
    padding: 12px 12px calc(12px - 1em);
  }
  .conts_single ul.ul_list02 li {
    padding-left: 28px;
    min-height: 20px;
    font-size: 15px;
  }
  .conts_single ul.ul_list02 li:before {
    width: 20px;
    height: 20px;
    top: 2px;
  }
}
