@charset "UTF-8";
/* 幅1100px以下からcss適応 */
@media only screen and (max-width: 1100px) {
  /* ヘッダー */
  #header {
    padding: 8px 0 24px;
  }
  .h_logo {
    margin-top: 4px;
    margin-right: 16px;
  }
  .h_contact-no1 {
    width: 14vw;
    max-width: 153px;
  }
  .h_contact-no1 img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .h_conts {
    margin-top: 12px;
    align-items: flex-start;
  }
  .h_contact-info {
    width: 40vw;
    max-width: 262px;
    margin-left: 12px;
  }
  .h_contact-info-t {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .h_contact-info-tel {
    margin-bottom: 12px;
  }
  .h_contact-info-reserve {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
  }
  .h_contact-info-reserve-btn a {
    width: 100%;
    max-width: 100%;
    padding: 8px;
  }
  .h_contact-info-tel-img img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  #nav {
    padding: 0;
  }
  .nav_pc {
    display: none;
  }
  .nav_sp {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(to bottom, #ffa562 0%, #e57d30 100%);
  }
  .nav_sp-conts {
    width: calc(100% / 3);
    text-align: center;
    border-right: 1px solid #fff;
    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: 100%;
    display: block;
    top: 0;
    line-height: 1;
    color: #fff;
  }
  .hum_menu_nav {
    background: rgba(253, 253, 253, 0.98);
    height: 100%;
    right: 100%;
    position: fixed;
    top: 0;
    transition-duration: 0.3s;
    transition-property: right;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    width: 280px;
    color: #000;
  }
  .hum_menu_nav.clicked {
    right: calc(100% - 280px);
    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: 17px;
  }
  .hum_menu_cbtn_bar {
    position: relative;
    top: 0;
    width: 100%;
    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: #ef8b40;
    box-sizing: border-box;
    padding: 8px 0;
  }
  .hum_menu_nav_menu-ttl p {
      font-weight: bold;
      color: #fff;
  }

  .hum_menu_nav_menu-list.hum_menu_nav_menu-list01 {
      background: #f2f2e6;
      margin-bottom: 0;
  }
  .hum_menu_nav_menu-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: 1px solid #000;
  }
  .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: 15px;
    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;
  }
  .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 {
    line-height: 0;
  }
  .hum_menu_obtn p,
  .sp_tel a,
  .sp_contact a {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    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;
  }
  .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, #ff984f 0%, #f36b09 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);
  }
  #nav.on {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 990;
    width: 100%;
  }
  #nav.on .hum_menu_obtn p,
  #nav.on .sp_tel a,
  #nav.on .sp_contact a {
    max-height: 70px;
  }
  #nav.on .hum_menu_obtn p img,
  #nav.on .sp_tel a img,
  #nav.on .sp_contact a img {
    max-height: 50px;
  }
  /* common */
  #main {
    max-width: 800px;
    flex-direction: column;
  }
  #conts {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }
  .offer_btn {
    width: 80%;
  }
  /* top */
  .maincampaign {
    width: 95%;
  }
  .nayami_conts-text {
    width: 98.5%;
    padding: 0 23px 20px;
    box-sizing: border-box;
  }
  /* side */
  #side {
    display: none;
  }
}

/* 幅980px以下からcss適応 */
@media only screen and (max-width: 980px) {
  body {
    overflow-x: hidden;
  }
  #main {
    margin-bottom: 80px;
  }
  /* common_contact */
  .common_contactconts {
    padding: 40px 0;
  }
  .common_contact-wrap {
    flex-direction: column;
    justify-content: center;
  }
  .common_contact-l {
    width: 100%;
    max-width: 480px;
    margin: 0 auto 32px;
    box-sizing: border-box;
    padding: 24px 16px;
  }
  .common_contact-l:after {
    bottom: -32px;
    left: 0;
    right: 0;
    top: auto;
    width: 0;
    height: 0;
    margin: 0 auto;
    border: 16px solid transparent;
    border-top: 16px solid #fff;
  }
  .common_contact-l p {
    font-size: 24px;
    line-height: 1.25;
  }
  .common_contact-l p mark {
    font-size: 1.5em;
  }
  .common_contact-r {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .common_contact-r-tel {
    text-align: center;
  }
  .common_contact-r-tel img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .common_contact-r-info {
    justify-content: center;
  }
  .nayami_menulist-list {
    width: 100%;
    margin: 0 auto;
  }
  .nayami_menulist-list ul li img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
}

/* 幅800px以下からcss適応 */
@media only screen and (max-width: 800px) {
  #main {
    padding: 24px;
  }
}

/* 幅680px以下からcss適応 */
@media only screen and (max-width: 680px) {
  /* header */
  #header {
    margin-top: 64px;
  }
  .h_wrap {
    width: 100%;
  }
  .h_h1-t {
    padding: 0 2.5%;
    border-bottom: 1px dashed #ddd;
  }
  .h_conts {
    width: 90%;
    margin: 16px auto 0;
  }
  .h_conts {
    flex-direction: column;
  }
  .h_logo,
  .h_contact {
    width: 100%;
  }
  .h_logo {
    text-align: center;
    margin: 0 auto;
  }
  .h_logo img {
    width: auto;
    max-width: 200px;
    position: relative;
  }
  .h_logo-img {
    margin-left: 80px;
  }
  .h_logo-img a {
    position: relative;
  }
  .h_logo-img a:before {
    content: "";
    display: block;
    width: 100%;
    height: 46px;
    background: url("../images/common/h_no1.png") no-repeat left top;
    background-size: contain;
    position: absolute;
    left: -64px;
  }
  .h_contact {
    justify-content: center;
    margin: 0 auto;
  }
  .h_contact-no1,
  .h_contact-info-t {
    display: none;
  }
  .h_contact-info {
    width: 100%;
    max-width: 100%;
    margin: 12px auto 0;
    display: none;
  }
  .h_contact-info-b {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 0;
  }
  .h_contact-info-b dl {
    margin-bottom: 4px;
  }
  .h_contact-info-b dl:last-of-type {
    margin-bottom: 0;
  }
  .h_contact-info-b dl dd span {
    display: inline;
    position: relative;
  }
  .h_contact-info-b dl dd span:before {
    content: "|";
    margin: 0 0.5em;
  }
  .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;
  }
  /* mainimage */
  .mainimage_pc {
    display: none;
  }
  .mainimage_sp {
    display: block;
    line-height: 0;
  }
  .mainimage_sp img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  /* main */
  #main {
    margin-top: 24px;
    padding: 0;
    margin-bottom: 40px;
    width: 100%;
  }
  #conts {
    max-width: 90%;
  }
  .conts01 {
    margin-top: 28px;
  }
  /* common */
  .ttl01 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .ttl02 {
    margin-bottom: 16px;
  }
  .ttl02 .ttl02_wrap {
    font-size: 24px;
    line-height: 1.5;
  }
  .ttl03 {
    font-size: 20px;
    padding: 12px 0;
    margin-bottom: 24px;
    border-width: 2px 0;
  }
  .ttl04 {
    font-size: 18px;
    padding: 8px 16px;
    margin-bottom: 12px;
    line-height: 1.5;
  }
  .ttl05 {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.5;
    padding-bottom: 4px;
  }
  .ttl06 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.5;
    padding: 8px 12px 6px;
  }
  .ttl07 {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .ttl08 {
    font-size: 18px;
  }
  .ttl09 {
    margin-bottom: 4px;
  }
  .ttl10 {
    font-size: 15px;
    padding: 8px 16px 4px;
  }
  .ttl11 {
    margin-bottom: 16px;
  }
  .ttl11 span {
    display: inline-block;
    font-size: 18px;
    line-height: 1.5;
  }
  .list01 li {
    padding-left: 28px;
    background-size: 20px auto;
    background-position: left 4px;
    padding-top: 2px;
    padding-bottom: 4px;
    margin-bottom: 4px;
  }
  .campaign_img img {
    max-width: 110%;
    position: relative;
    left: -5%;
  }
  .img_f-r {
    max-width: 40%;
    margin-left: 8px;
    margin-bottom: 0;
  }
  .tbl01 {
    display: block;
  }
  .tbl01 tbody {
    display: block;
  }
  .tbl01 tbody tr {
    display: flex;
    flex-direction: column;
  }
  .tbl01 tbody tr:last-of-type {
    border: none;
  }
  .tbl01 tbody tr th, .tbl01 tbody tr td {
    display: block;
    width: 100%;
    padding: 8px 16px;
    text-align: left;
  }
  .tbl01 tbody tr th {
    border: none;
  }
  /* 準備中 */
  .comingsoon {
    padding: 12px;
  }
  .comingsoon p {
    font-size: 16px;
  }
  /* why_text */
  .why_text01 p {
    font-size: 4.8vw;
    line-height: 1.85;
  }
  /* reason */
  .reason {
    padding: 8px;
  }
  .reason_conts {
    margin-bottom: 16px;
  }
  .reason_conts-wrap {
    padding: 16px;
  }
  .reason_ttl {
    display: flex;
    flex-direction: column-reverse;
  }
  .reason_ttl-mainttl {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    display: block;
    min-height: 0;
    font-size: 20px;
  }
  .reason_ttl-mainttl .br {
    display: inline;
  }
  .reason_ttl-subttl {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 12px;
    position: relative;
    padding: 4px 8px 12px;
    line-height: 1;
    font-size: 18px;
  }
  .reason_ttl-subttl span {
    display: inline;
  }
  .reason_ttl-subttl strong {
    font-size: 1.25em;
    margin-left: 2px;
  }
  .reason_img {
    margin: 12px auto;
  }
  /* media */
  .media_mainttl {
    margin-top: 50px;
    justify-content: center;
    padding: 0;
  }
  .media_mainttl-medal {
    left: 0;
    right: 0;
    width: 17vw;
    max-width: 152px;
    margin: 0 auto;
    top: -9vw;
  }
  .media_mainttl-medal img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .media_mainttl-text {
    padding: 13vw 12px 20px;
    display: block;
    font-size: 20px;
    text-align: center;
  }
  .media_mainttl-text span {
    display: block;
    text-align: center;
    font-size: 22px;
  }
  .media_conts {
    padding: 8px;
  }
  .media_conts-wrap {
    padding: 16px;
  }
  /* nayami */
  .nayami_conts {
    margin-bottom: 24px;
  }
  .nayami_list {
    padding: 16px;
  }
  .nayami_kaizen-ttl {
    font-size: 24px;
    line-height: 1.5;
  }
  .nayami_kaizen-ttl strong {
    display: block;
  }
  .nayami_kaizen-img p {
    line-height: 0;
  }
  .nayami_kaizen-img p img {
    width: auto;
    max-width: 50%;
    height: auto;
  }
  .nayami_feature-ttl {
    font-size: 24px;
    line-height: 1.25;
    padding: 8px 8px 12px;
  }
  .nayami_feature-ttl strong {
    display: block;
  }
  .nayami_feature-ttl-bg:before {
    border-width: 24px 32px 32px 32px;
    bottom: -56px;
  }
  .nayami_feature-ttl-bg:after {
    border-width: 16px 24px 24px 24px;
    bottom: -39px;
  }
  .nayami_feature-inline {
    padding: 40px 16px 24px;
  }
  .nayami_featureconts {
    padding: 16px 8px;
    box-shadow: 6px 6px 0 rgba(198, 198, 198, 0.35);
    margin-top: 20px;
  }
  .nayami_featureconts-ttl {
    max-width: 7.5em;
    padding: 4px 0 2px;
    margin-bottom: 4px;
  }
  .nayami_featureconts-ttl span {
    font-size: 16px;
  }
  .nayami_featureconts-ttl span strong {
    font-size: 1.2em;
    top: 1px;
  }
  .nayami_featureconts-textarea p {
    font-size: 18px;
  }
  .nayami_featureconts-textarea p strong {
    font-size: 1.15em;
  }
  .prove {
    padding: 16px;
  }
  .prove_mainttl {
    padding: 0 28px;
    margin-top: 0;
    margin-bottom: 12px;
  }
  .prove_mainttl-text {
    font-size: clamp(16px, 10vw, 20px);
  }
  .prove_mainttl-imgconts {
    top: 36px;
  }
  .prove_mainttl-img img {
    width: auto;
    max-width: 32px;
    height: auto;
  }
  .prove_imglist {
    margin-top: 0;
  }
  .prove_imglist ul li {
    width: calc(50% - 4px);
    margin-top: 8px;
    margin-right: 8px;
  }
  /* nayami_menu */
  .nayami_menulist ul li {
    width: calc(50% - 6px);
    margin-right: 12px;
    margin-bottom: 12px;
    margin-top: 0;
  }
  .nayami_menulist ul li:nth-of-type(3n) {
    margin-right: 12px;
  }
  .nayami_menulist ul li:nth-of-type(2n) {
    margin-right: 0;
  }
  /* select */
  .select_detail-ttl {
    font-size: 24px;
    padding: 8px 16px;
  }
  .select_detail-ttltext strong {
    display: block;
  }
  .select_detail-ttl-bg:before {
    border-width: 24px 32px 32px 32px;
    bottom: -56px;
  }
  .select_detail-ttl-bg:after {
    border-width: 16px 24px 24px 24px;
    bottom: -39px;
  }
  .select_detail-inline {
    padding: 56px 8px 8px;
  }
  .select_detailconts {
    padding: 16px;
    margin-top: 40px;
  }
  .select_detailconts-ttl-icon {
    width: 56px;
    height: 56px;
    left: 0;
    right: 0;
    top: 0;
    margin: -40px auto 0;
    font-size: 14px;
  }
  .select_detailconts-ttl-text {
    margin-top: 24px;
    width: 100%;
    padding: 0;
    font-size: 18px;
    min-height: 0;
  }
  .select_detailconts-img {
    margin: 12px auto;
  }
  .message_info {
    padding: 8px;
    margin-top: 4px;
  }
  .message_info-text01 {
    font-size: 15px;
  }
  .message_info-text02 {
    font-size: 14px;
  }
  .message_info-text02 span {
    font-size: 15px;
  }
  .message_textarea {
    width: 100%;
    margin: 0 auto;
  }
  /* message */
  .message_wrap {
    flex-direction: column;
  }
  .message_img {
    max-width: 180px;
    margin: 0 auto 16px;
  }
  /* contact */
  .contact_ttl {
    padding: 12px;
  }
  .contact_ttl span {
    display: flex;
    align-items: center;
    font-size: 20px;
    text-align: left;
    line-height: 1.25;
    background-size: 36px auto;
    background-position: left center;
    padding-left: 44px;
    min-height: 36px;
  }
  .contact_wrap {
    border-width: 0 3px 3px;
    padding: 28px 16px 16px;
  }
  .contact_btn-tel {
    min-height: 0;
    padding: 0 15px;
  }
  .contact_btn-tel-textarea {
    padding: 8px 0 4px 17vw;
  }
  .contact_btn-tel-text01 {
    font-size: clamp(8px, 2.6vw, 12px);
  }
  .contact_btn-tel-text02 {
    margin-top: 2px;
  }
  .contact_btn-tel-img {
    width: 18vw;
    max-width: 64px;
    left: clamp(12px, 2vw, 17px);
  }
  .contact_btn-tel-img img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .contact_btnconts {
    margin-bottom: 16px;
  }
  .contact_btn-mail {
    box-sizing: border-box;
    padding: 14px 16px;
    min-height: 0;
  }
  .contact_btn-mail-text01 {
    line-height: 1;
  }
  .contact_btn-mail-text01 span {
    font-size: clamp(14px, 3.25vw, 18px);
    line-height: 1;
  }
  .contact_btn-mail-text02 {
    margin-top: 6px;
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .contact_btn-mail-text02 img {
    max-width: 18px;
    position: relative;
    margin-right: 6px;
    top: -1px;
  }
  .contact_btn-mail-text02-01 {
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.35;
    text-align: left;
  }
  .contact_btn-mail-text02-02 {
    display: inline;
  }
  .contact_open {
    margin: 16px auto;
    padding: 12px 0;
    flex-direction: column;
    justify-content: flex-start;
  }
  .contact_open dl {
    width: 100%;
    margin: 0 auto 8px;
  }
  .contact_open dl:last-of-type {
    margin-bottom: 0;
  }
  .contact_open dl dt, .contact_open dl dd {
    font-size: 14px;
    line-height: 1.5;
  }
  .contact_open dl dt {
    margin-left: 0;
  }
  .contact_info dl {
    margin-bottom: 8px;
  }
  .contact_info dl:last-of-type {
    margin-bottom: 0;
  }
  .contact_info dl dt, .contact_info dl dd {
    font-size: 14px;
    line-height: 1.5;
  }
  .contact_info dl dt {
    white-space: nowrap;
  }
  .contact_info-map iframe {
    height: 100%;
    min-height: 320px;
  }
  /* last */
  .last {
    padding: 8px;
  }
  .last_wrap {
    padding: 12px;
  }
  .last_bg {
    padding: 8px;
  }
  .last_bg-lt,
  .last_bg-lb {
    left: 8px;
  }
  .last_bg-rt,
  .last_bg-rb {
    right: 8px;
  }
  .last_bg-lt,
  .last_bg-rt {
    top: 8px;
  }
  .last_bg-lb,
  .last_bg-rb {
    bottom: 8px;
  }
  .last_bg-icon img {
    width: auto;
    max-width: 40px;
    height: auto;
  }
  .last_bg-tl,
  .last_bg-bl {
    width: calc(100% - 120px);
    border-top: 2px solid #e8e4c4;
  }
  .last_bg-ll,
  .last_bg-rl {
    height: calc(100% - 120px);
    border-left: 2px solid #e8e4c4;
  }
  .last_bg-tl {
    top: 8px;
  }
  .last_bg-bl {
    bottom: 8px;
  }
  .last_bg-ll {
    left: 8px;
  }
  .last_bg-rl {
    right: 8px;
  }
  .last_conts {
    padding: 16px;
  }
  .last_conts dl dt {
    font-size: 18px;
  }
  .last_conts dl dd {
    font-size: 15px;
  }
  .last_ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .last_ttl span strong {
    top: 2px;
  }
  /* pagetop */
  #pagetop {
    width: 100%;
    max-width: 48px;
  }
  #pagetop img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  /* common_contact */
  #common_contactconts {
    padding: 40px 0 32px;
  }
  .common_contact-wrap {
    width: 90%;
    margin: 0 auto;
  }
  .common_contact-l {
    padding: 16px 12px 20px;
    margin-bottom: 18px;
  }
  .common_contact-l:after {
    border-width: 12px;
    bottom: -24px;
  }
  .common_contact-l p {
    font-size: clamp(18px, 6vw, 20px);
  }
  .common_contact-r-info {
    flex-direction: column;
    margin-top: 12px;
  }
  .common_contact-r-tel p {
    line-height: 1;
  }
  .common_contact-tel-text {
    margin-bottom: 6px;
    margin-top: 8px;
  }
  .common_contact-tel-text span {
    font-size: 16px;
    font-weight: bold;
  }
  .common_contact-infoconts {
    margin-bottom: 8px;
  }
  .common_contact-infoconts:last-of-type {
    margin-bottom: 0;
  }
  .common_contact-infoconts dl {
    align-items: flex-start;
  }
  .common_contact-infoconts dl dt, .common_contact-infoconts dl dd {
    font-size: 14px;
    line-height: 1.75;
  }
  .common_contact-infoconts dl dt {
    width: 5em;
    padding: 0 8px;
  }
  /* sp_btm */
  .sp_btm {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 10;
  }
  .sp_btm img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  /* footer */
  #footer {
    padding: 16px 0 0;
    margin-bottom: 22vw;
  }
  .f_info {
    margin: 12px auto;
    padding: 8px 0;
  }
  .f_info p {
    font-size: 13px;
  }
  .f_menu ul li {
    border-left: 1px solid #433519;
    padding-right: 12px;
    margin-right: 0;
  }
  .f_menu ul li a {
    font-size: 14px;
  }
}
