@charset "UTF-8";
/* Scss Document */
/* CSS Document */
@media (min-width: 641px) and (max-width: 1460px){
  body,
  .nav_wrap.fixed,
  .mainvisual_wrap,
  #mainvisual,
  header,
  footer {
    min-width: 1300px;
  }
  header .inner {
    max-width: calc(100% - 470px);
  }
  header .header_logo {
    left: 20px;
    width: 300px;
  }
  .head_ank_nav {
    gap: 0 10px;
  }
  .head_ank_nav a {
    font-size: 14px;
  }
  h1{
    width: 1240px;
  }
  .text_merit{
    margin-right: 0;
  }
/*  .item_feature01 .text_feature{
    margin-right: 0;
  }*/
}

@media screen and (max-width: 640px) {
  body {
    font-size: 14px;
  }
  body,
  .nav_wrap.fixed,
  #mainvisual .inner,
  header,
  footer {
    min-width: 100%;
  }
  /* ナビ展開時スクロール禁止処理 */
  body.nav-open {
    overflow: hidden !important;
  }
  /*============================================================================

    header

  ============================================================================*/
  header {
    display: none;
  }
  /*============================================================================

    nav

  ============================================================================*/
  .nav_wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #fff;
  }
  .nav_wrap .header_logo {
    width: calc(100% - 56px);
  }
  .nav_wrap .header_logo a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 5px 0;
  }
  .nav_wrap .header_logo img {
    width: 100%;
    height: 45px;
  }
  /* ハンバーガーボタン */
  .btn_tgl_menu {
    position: relative;
    right: 0;
    color: #fff;
    width: 55px;
    background: var(--main-color);
    border: none;
    padding: 0;
    margin: 0;
    text-align: center;
    transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .btn_tgl_menu i {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    margin: auto;
    font-style: normal;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.1em;
  }
  .btn_tgl_menu span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: 35px;
    height: 2px;
    background: #fff;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 1;
  }
  .btn_tgl_menu span:nth-of-type(1) {
    top: 10px;
  }
  .btn_tgl_menu span:nth-of-type(2) {
    top: 20px;
  }
  .btn_tgl_menu span:nth-of-type(3) {
    top: 30px;
  }
  /* MENUボタン押下時 */
  .btn_tgl_menu.active {
    right: 16.25rem;
  }
  .btn_tgl_menu.active span:nth-of-type(1) {
    top: 20px;
    -webkit-transform: rotate(225deg);
            transform: rotate(225deg);
  }
  .btn_tgl_menu.active span:nth-of-type(2) {
    opacity: 0;
  }
  .btn_tgl_menu.active span:nth-of-type(3) {
    top: 20px;
    -webkit-transform: rotate(-225deg);
            transform: rotate(-225deg);
  }
  /* ドロップダウンメニュー */
  .tgl_menu_list {
    position: fixed;
    top: 0;
    right: -16.25rem;
    z-index: 2;
    overflow: hidden;
    width: 16.25rem;
    height: 100%;
    transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    background: var(--main-color);
    padding: 15px;
  }
  .tgl_menu_list ul {
    flex-flow: column wrap;
  }
  .tgl_menu_list ul li {
    display: block;
    border-bottom: 1px solid #fff;
    width: 100%;
  }
  .tgl_menu_list ul li:first-child {
    border-top: 1px solid #fff;
  }
  .tgl_menu_list ul li::after {
    display: none;
  }
  .tgl_menu_list ul li a,
  .tgl_menu_list ul li p {
    position: relative;
    display: block;
    padding: 15px 10px;
    width: auto;
    color: #fff;
  }
  .tgl_menu_list ul li a span,
  .tgl_menu_list ul li p span {
    display: none;
  }
  .tgl_menu_list ul li a:hover {
    color: #fff;
  }
  body.nav-open .tgl_menu_list {
    overflow-y: scroll;
    overscroll-behavior-y: none;
    right: 0;
  }
  /* ------- スライドメニュー シングル------- */
  .tgl_menu_list ul li.nav_single_menu div {
    position: static;
    padding-bottom: 10px;
  }
  .tgl_menu_list ul li.nav_single_menu div a {
    margin-left: 15px;
    background: none;
    padding: 3px 3px 3px 1.2em;
    line-height: 2;
    text-indent: -1.2em;
  }
  .tgl_menu_list ul li.nav_single_menu div a::before {
    position: static;
    display: inline;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    margin-right: 10px;
  }
  .tgl_menu_list ul li.nav_single_menu div a i.nav_arrow {
    display: none;
  }
  .tgl_menu_list ul li.nav_single_menu div a:hover {
    color: #fff;
    background: none;
  }
  /* ------- スライドメニュー メガ------- */
  .tgl_menu_list .nav_mega_menu {
    position: relative;
  }
  .tgl_menu_list .nav_mega_menu p::before {
    position: absolute;
    display: flex;
    align-items: center;
    width: auto;
    height: auto;
    border: none;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f067";
  }
  .tgl_menu_list .nav_mega_menu .mega_menu_wrap {
    display: none;
    position: static;
    opacity: 0;
    visibility: hidden;
    background: none;
    box-shadow: none;
    transition: height 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .tgl_menu_list .nav_mega_menu.active .mega_menu_wrap {
    opacity: 1;
    visibility: visible;
  }
  .tgl_menu_list .mega_menu_inner {
    display: block;
    padding: 0 0 10px 0;
    width: 100%;
  }
  .tgl_menu_list .mega_menu_top a {
    padding: 12px 12px 12px 0;
  }
  .tgl_menu_list .mega_menu_top a::before {
    position: static;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    border: none;
    margin-right: 10px;
  }
  .tgl_menu_list .menu_list {
    margin-left: 0;
  }
  .tgl_menu_list .nav_mega_menu .mega_menu_inner .menu_list p {
    display: none;
  }
  .tgl_menu_list .nav_mega_menu .mega_menu_inner .menu_list li {
    border: none !important;
  }
  .tgl_menu_list .nav_mega_menu .mega_menu_inner .menu_list li a {
    padding: 3px 3px 3px 1.2em;
  }
  .tgl_menu_list .nav_mega_menu .mega_menu_inner .menu_list li a::before {
    position: static;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    border: none;
    margin-right: 10px;
  }
  .tgl_menu_list .nav_mega_menu div a {
    margin-left: 15px;
    background: none;
    padding: 3px;
    line-height: 2;
    text-indent: -1.2em;
    padding-left: 1.2em;
  }
  /* メガメニュー展開時 */
  .tgl_menu_list .nav_mega_menu.active p::before {
    content: "\f068";
  }
  /* ナビ展開時の後ろの背景 */
  .nav_overlay {
    display: none;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
  }
  body.nav-open .nav_overlay {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  /* ヘッダー固定ボタンエリア */
  .btn_area {
    width: 100%;
  }
  .btn_area ul {
    display: flex;
    background: #fff;
    padding: 5px 2.5px;
  }
  .btn_area li.btn {
    width: 100%;
    margin: 0 2.5px;
  }
  .btn_area li.btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
    font-weight: bold;
    padding: 10px 2%;
  }
  .btn_area li.btn a i {
    width: 15px;
    margin-right: 3px;
  }
  .btn_area li.btn_tel a {
    background: #857A49;
  }
  .btn_area li.btn_yoyaku a {
    background: #20618B;
  }
  .btn_area li.btn_monshin a {
    background: #00A3BB;
  }
  .btn_area li.btn_access a {
    background: #AC6B76;
  }
  /* 準備中用のクラス */
  .btn_area li.btn.coming a {
    background: #aaa !important;
  }
  .btn_area li.btn.coming a {
    pointer-events: none;
    padding: 2px 2% 18px;
  }
  .btn_area li.btn.coming a::before {
    content: "（準備中）";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    font-size: 90%;
  }
  .btn_area li.btn a[href="tel:準備中"] {
    pointer-events: none;
    padding: 2px 2% 18px;
    background: #aaa;
  }
  .btn_area li.btn a[href="tel:準備中"]::after {
    content: "（準備中）";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    font-size: 90%;
  }
  /*============================================================================

  #mainvisual

  ============================================================================*/
  /* 共通 */
  #mainvisual {
    background-attachment: scroll;
    margin-top: 110px;
    height: 320px;
  }
  #mainvisual .inner {
    width: auto;
    height: inherit;
  }
  .mainvisual_wrap {
    height: 320px;
  }
  #slick_fade {
    height: 320px;
  }
  #slick_fade .slide_item img {
    height: 320px;
  }
  .mainvisual_catch {
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .mainvisual_catch p {
    font-size: 5vw;
  }
  .sec_smp {
    padding: 20px 0;
    background: url(../images/bg_stone.jpg);
  }
  .mv_point {
    flex-wrap: wrap;
    gap: 5px 2%;
  }
  .mv_point li {
    width: 49%;
    padding: 15px 0;
    letter-spacing: 0;
    min-width: unset;
    min-height: unset;
  }
  /*============================================================================

  #contents

  ============================================================================*/
  .box1 {
    width: auto;
    margin: 0 5%;
  }
  .box2 {
    width: auto;
    margin: 0 5% 80px;
  }
  /*============================================================================

  footer

  ============================================================================*/
  .footer_info {
    width: auto;
    padding: 0 5%;
  }
  .footer_info .inner {
    padding: 80px 0;
  }
  .footer_info_left,
  .footer_info_right {
    width: 100%;
  }
  .footer_info_tel a {
    font-size: 240%;
  }
  .footer_info_left {
    margin-bottom: 20px;
  }
  .footer_info_logo {
    margin: 0 auto 20px;
  }
  .footer_info_logo,
  .footer_info_logo img {
    max-width: 300px;
    width: 100%;
  }
  .footer_info_sche {
    float: none;
    width: 100%;
  }
  .tb01 tr th {
    height: 60px;
  }
  .tb01 tr:nth-of-type(1) th,
  .footer_info_sche .tb01 :is(th, td) {
    font-size: 13.5px;
  }
  .footer_info_sche p {
    margin: 0;
  }
  .tb01 tr td .pink {
    left: auto;
    right: 0;
  }
  .pagetop {
    right: 10px;
    bottom: 10px;
  }
  .pagetop, .pagetop img {
    width: 70px;
    height: 70px;
  }
  .footer_info_bottom ul {
    gap: 10px;
  }
	.footer_info_bottom ul li {
		width: 90%;
	}	
.footer_info_bottom ul li:first-child a,
.footer_info_bottom ul li:nth-child(2) a,
.footer_info_bottom ul li:nth-child(3) a,
	.footer_info_bottom ul li:nth-child(4) a {
		width: 100%;
		font-size: 18px;
	}
  /*============================================================================

  $共通

  ============================================================================*/
  hgroup p {
    font-size: 280%;
  }
  hgroup h2 {
    font-size: 150%;
  }
  /*============================================================================

  $見出し

  ============================================================================*/
  h1 {
	  display: none;
    font-size: 12px;
    width: auto;
    padding: 5px 15px;
    text-align: center;
    position: static;
    margin-top: 0 !important;
  }
  .nowrap {
    white-space: normal;
  }
  /* テーブル */
  .tb01 {
    white-space: inherit;
  }
  .tb01 th {
    width: 30%;
    font-size: 14px;
  }
  .tb01 td {
    font-size: 14px;
    text-align: center;
  }
  /* 横スクロール */
  .scroll_tb {
    overflow-x: scroll;
  }
  .scroll_tb table {
    width: 816px;
  }
  /* ボタン */
  .btn01 a {
    display: block;
  }
  /*==================================================================

    Trouble

  ==================================================================*/
  .sec_trouble {
    padding: 80px 5%;
    flex-wrap: wrap;
    background-size: 30% auto;
  }
  .img_trouble {
    max-width: 910px;
    width: 100%;
    margin: 0 auto;
  }
  .text_trouble {
    max-width: 670px;
    min-width: unset;
    width: 100%;
    margin: 0 auto 20px;
  }
  .pop span {
    font-size: 140%;
  }
  .pop.pop_trouble {
    margin: 0 auto 40px;
  }
  .pop.pop_merit {
    font-size: 100%;
  }
  .list_check_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0 23px;
  }
  .list_check_wrap ul li {
    font-size: 100%;
    background-position: left top 11px;
  }
  .trouble_approach {
    position: relative;
    z-index: 1;
    margin: -15px 0;
    padding: 15px 0;
    text-align: center;
    background: url(../images/approach_text01.svg) no-repeat center top / 320px auto,
    url(../images/approach_text02.svg) no-repeat center bottom / 320px auto;
  }
  .trouble_approach p {
    padding: 25px 10px;
    font-size: 150%;
  }
  .trouble_approach p span {
    display: inline-block;
  }
  /*==================================================================

    Merit

  ==================================================================*/
  .sec_merit {
    padding: 80px 5%;
    flex-wrap: wrap;
  }
  .sec_merit::after {
    clip-path: polygon(0% 83.4%,100% 15.8%,100% 100%,0% 100%);
    -webkit-clip-path: polygon(0% 83.4%,100% 15.8%,100% 100%,0% 100%);
  }
  .img_merit {
    max-width: 910px;
    width: 100%;
    margin: 0 auto;
  }
  .text_merit {
    min-width: unset;
    width: 100%;
    margin: 0 auto 20px;
  }
  .text_merit .list_check_wrap {
    max-width: 580px;
    margin: 0 auto;
  }
  /*==================================================================

    CTA

  ==================================================================*/
  .sec_cta {
    padding: 80px 0;
    background: url(../images/bg_contact_sp.jpg) no-repeat center/cover;
  }
  .sec_feature + .sec_cta {
    background-image: url(../images/bg_contact02_sp.jpg);
  }
  .sec_price + .sec_cta {
    background-image: url(../images/bg_contact03_sp.jpg);
  }
  .sec_cta hgroup {
    margin-bottom: 50px;
  }
  .sec_cta hgroup p {
    margin-bottom: -40px;
  }
  .cta_list {
    flex-wrap: wrap;
    justify-content: center;
  }
  /*==================================================================

    About

  ==================================================================*/
  .sec_about {
    flex-wrap: wrap;
    justify-content: center;
    padding: 80px 5%;
  }
  .img_about {
    width: 100%;
    margin: 0 auto;
  }
  .img_about ul {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -50px;
    justify-content: center;
    gap: 0 10px;
  }
  .img_about ul li {
    width: 110px;
    font-size: 12px;
  }
  .text_about {
    max-width: 640px;
    width: 100%;
    margin: 0 auto 20px;
  }
	.img_about_s {
		font-size: 11.5px;
	}
  /*==================================================================

    Feature

  ==================================================================*/
  .sec_feature {
    padding: 80px 0 0;
  }
  .sec_feature hgroup {
    margin-bottom: 45px;
  }
  .sec_feature .box1 {
    flex-wrap: wrap;
    gap: 60px 0;
    padding-bottom: 80px;
  }
  .text_feature h3 {
    display: flex;
    align-items: flex-start;
    gap: 0 10px;
    font-size: 125%;
  }
  .text_feature h3 .num {
    color: #857a49;
    font-size: 40px;
  }
  .item_feature01 {
    flex-wrap: wrap;
    margin-bottom: 60px;
    padding: 0 5%;
  }
  .item_feature01 .img_feature {
    max-width: 920px;
    width: 100%;
    margin: 0 auto 20px;
  }
  .item_feature01 .text_feature {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }
  .item_feature02,
  .item_feature03 {
    max-width: 600px;
  }
  .item_feature02 .img_feature,
  .item_feature03 .img_feature {
    margin-bottom: 20px;
  }
  .box_feature_list li {
    width: 100%;
  }
  .box_feature_list .num {
    top: 20px;
    left: 5%;
    font-size: 50px;
  }
  .box_feature_list p:not(.num) {
    font-size: 130%;
    margin-bottom: 20px;
  }
  /*==================================================================

    Flow

  ==================================================================*/
  .sec_flow {
    padding: 80px 0;
    background: #eee url(../images/bg_stone.jpg) repeat-y right top/30% auto;
  }
  .sec_flow hgroup p {
    color: var(--main-color);
  }
  .intro_flow {
    padding: 25px 5%;
    margin-bottom: 85px;
  }
  .intro_flow p {
    font-size: 110%;
  }
  .img_flow {
    margin: 0 auto 20px;
  }
  .text_flow h3 {
    font-size: 140%;
  }
  .text_flow h3::after {
    width: calc(100% + 20px);
  }
  .text_flow h3 .num {
    font-size: 200%;
  }
  .text_flow h4 {
    max-width: unset;
  }
  .flow_table td {
    height: auto;
  }
  .flow_table.vertical th {
    display: block;
    width: 100%;
    padding: 10px 0;
    border-bottom: none;
    border-left: 1px solid #d9d9d9;
    border-right: 1px solid #d9d9d9;
  }
  .flow_table.vertical td {
    display: block;
    width: 100%;
  }
  .flow_table.vertical tr:not(:last-of-type) td {
    border-bottom: none;
  }
  .annotation {
    margin-top: 20px;
    border-spacing: 0;
    border-collapse: collapse;
    border: 1px solid #d9d9d9;
  }
  .annotation th {
    display: block;
    width: 100%;
    height: auto;
    font-size: 110%;
    padding: 15px 0;
  }
  .annotation th .red {
    color: #e81919;
  }
  .annotation td {
    display: block;
    width: 100%;
    padding: 15px;
  }
  .annotation tr:nth-of-type(1) th {
    border-bottom: none;
  }
  .annotation tr:nth-of-type(1) td {
    border-bottom: none;
  }
  /*==================================================================

    Price

  ==================================================================*/
  .sec_price {
    position: relative;
    z-index: 0;
    padding: 80px 0;
    background: #fff url(../images/bg_price.jpg) no-repeat center bottom/auto calc(100% - 100px);
  }
  .sec_price hgroup {
    margin-bottom: 40px;
  }
  .sec_price h3 {
    font-size: 120%;
  }
  /* table */
  .price th, .price td {
    min-height: 70px;
    height: auto;
  }
  .price thead th {
    font-size: 110%;
  }
  .price tbody th {
    font-size: 100%;
    padding: 5px;
  }
  .price tbody th span {
    display: inline-block;
  }
  .price tbody td {
    padding: 5px;
    font-size: 100%;
  }
  /*common*/
  .pc{display:none!important}.sp{display:block!important}.pc_inline{display:none!important}.sp_inline{display:inline!important}.pc_table{display:table!important}.sp_table{display:table!important}.sp_mb00{margin-bottom:0!important}.sp_mr00{margin-right:0!important}.sp_ml00{margin-left:0!important}.sp_mt00{margin-top:0!important}.sp_pb00{padding-bottom:0!important}.sp_pr00{padding-right:0!important}.sp_pl00{padding-left:0!important}.sp_pt00{padding-top:0!important}.sp_center{text-align:center}

}
@media screen and (max-width: 320px) {
  .sp_inline_iP {
    display: inline !important;
  }
}