@charset "UTF-8";
/* 幅1100px以下からcss適応 */
@media only screen and (max-width: 1100px) {
  body {
    font-size: 14px;
  }
  /* ヘッダー */
  #header {
    margin-top: 128px;
    background: #fff;
    padding: 12px 0 16px;
  }
  .h_h1-t h1 {
    text-align: left;
  }
  .h_contact {
    align-items: flex-start;
  }
  .h_contact-hukidashi {
    margin-top: 8%;
  }
  .h_conts {
    margin-top: 12px;
    align-items: flex-start;
  }
  #nav {
    padding: 0;
  }
  .nav_pc {
    display: none;
  }
  .nav_sp {
    display: flex;
    justify-content: space-between;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    border-top: 3px solid #d98d96;
    background: #faf7ed;
  }
  .nav_sp-conts {
    width: calc(100% / 3);
    text-align: center;
    border-right: 1px solid #d9cdc6;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .nav_sp-conts:last-of-type {
    border-right: none;
  }
  .nav_sp-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }
  .nav_sp-menutext {
    font-size: 18px;
    font-weight: bold;
    color: #d98d96;
  }
  /* ハンバーガーメニュー */
  .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;
    line-height: 2;
  }
  .hum_menu_nav {
    background: rgba(250, 247, 237, 0.98);
    height: 100%;
    left: 100%;
    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 {
    width: 100%;
    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;
    right: 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-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_contact {
    color: #fff;
    display: block;
    margin: 50px 20px 20px;
  }
  .hum_menu_contact a {
    margin: 0 auto;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85em;
    padding: 2px 0;
    display: block;
    width: 100%;
    max-width: 200px;
  }
  .hum_menu_contact a.h_menu_contact {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #d57580;
    color: #fff;
    padding: 5px 12px;
  }
  .hum_menu_contact a.h_menu_line {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #95ac5c;
    color: #fff;
    padding: 5px 12px;
    margin-top: 8px;
  }
  .hum_menu_contact img {
    width: auto;
    max-width: 15px;
    height: auto;
    margin-right: 10px;
  }
  .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: #ece7d5;
    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: 124px;
  }
  .nav_sp-menuicon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 66px;
  }
  .nav_sp-menuicon 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%;
  }
  /* mainimage */
  #mainimage {
    padding-top: 24px;
  }
  .mainimage_subconts {
    display: none;
  }
  /* common */
  #main {
    max-width: 800px;
    flex-direction: column;
  }
  #conts {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }
  .offer_btn {
    width: 80%;
  }
  /* side */
  #side {
    display: none;
  }
  /* sidebtn */
  #sidebtn {
    top: 18%;
  }
}
/* 幅980px以下からcss適応 */
@media only screen and (max-width: 980px) {
  #main {
    margin-bottom: 80px;
  }
  /* common_contact */
  .common_contactconts {
    padding: 40px 0;
  }
  .common_contact-wrap {
    flex-direction: column;
    justify-content: center;
  }
  .common_contact-l {
    margin: 0 auto 24px;
  }
  .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;
  }
  /* footer */
  .footer_wrap {
    flex-direction: column;
    justify-content: center;
  }
  .footer_l {
    margin: 0 auto 32px;
  }
}
/* 幅800px以下からcss適応 */
@media only screen and (max-width: 800px) {
  /* header */
  .h_conts {
    justify-content: center;
  }
  .h_contact {
    display: none;
  }
  /* common */
  .conts_contact {
    padding: 32px 16px;
  }
  .contact_ttl img {
    width: 70vw;
    max-width: 526px;
  }
  .contact_open {
    flex-direction: column;
  }
  .contact_open dl {
    width: 100%;
    margin: 0 auto 12px;
  }
  .contact_open dl:last-of-type {
    margin-bottom: 0;
  }
}
/* 幅680px以下からcss適応 */
@media only screen and (max-width: 680px) {
    
      /* 準備中 */
  .comingsoon_conts {
    padding: 12px;
    margin-bottom: 24px;
  }
  .comingsoon_conts p {
    font-size: 14px;
  }
    
  /* common */
  .strong03 {
    font-size: 1.1em;
  }
  /* header */
  #header {
    margin-top: 64px;
  }
  .h_wrap {
    width: 100%;
  }
  .h_h1-t {
    padding: 0 2.5%;
  }
  .h_conts {
    width: 95%;
    margin: 12px auto 0;
  }
  .h_contact-hukidashi, .h_contact-tel {
    display: none;
  }
  .h_conts {
    flex-direction: column;
  }
  .h_logo, .h_contact {
    width: 100%;
  }
  .h_logo {
    text-align: center;
    margin: 0 auto;
    line-height: 0;
  }
  .h_logo img {
    max-width: 280px;
  }
  .h_contact {
    justify-content: center;
  }
  .h_contact-access p {
    font-size: 13px;
    line-height: 1.5;
  }
  /* nav */
  .nav_sp {
    height: 68px;
  }
  .hum_menu_obtn, .sp_tel, .sp_contact {
    min-height: 0;
  }
  .nav_sp-menuicon {
    height: 32px;
  }
  .nav_sp-menuicon img {
    max-height: 32px;
  }
  .nav_sp-menutext {
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.2;
  }
  .hum_menu_obtn .nav_sp-menuicon img {
    max-height: 28px;
  }
  /* mainimage */
  #mainimage {
    padding-top: 0;
  }
  #mainimage_pc {
    display: none;
  }
  #mainimage_sp {
    display: block;
    line-height: 0;
  }
  #mainimage_sp img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  /* main */
  #main {
    margin: 24px auto 40px;
    width: 90%;
  }
  .conts01 {
    margin-top: 32px;
  }
  .sp_conts {
    display: block;
  }
  .conts01.pc_firstconts {
    margin-top: 32px;
  }
  .second_mainttl {
    font-size: 20px;
    padding: 12px 16px;
    margin-bottom: 16px;
  }
  .img_f-r {
    width: 45%;
    margin-left: 16px;
    margin-bottom: 8px;
  }
  .ttl01 {
    padding: 15px 4px 20px;
    font-size: 22px;
    margin-bottom: 16px;
  }
  .ttl02 {
    font-size: 20px;
    min-height: 32px;
    margin-bottom: 20px;
  }
  .ttl03 {
    width: calc(100% - 3em);
    margin: 0 auto 24px;
    font-size: 20px;
    text-align: center;
  }
  .ttl03 span.ttl03_wrap:before {
    transform: rotate(-20deg);
  }
  .ttl03 span.ttl03_wrap:after {
    transform: rotate(20deg);
  }
  .ttl04 {
    padding: 4px 4px 4px 12px;
  }
  .ttl05 {
    font-size: 22px;
  }
  .ttl05 > span {
    padding: 0 0.5em;
  }
  .ttl06 {
    font-size: 22px;
    padding: 20px 20px;
  }
  .list01 ul li {
    background-size: 20px auto;
    background-position: left 4px;
    margin-bottom: 8px;
    padding-left: 32px;
    font-size: 15px;
  }
  .list02 ul {
    flex-direction: column;
    padding: 12px;
  }
  .list02 ul li {
    font-size: 15px;
    background-size: 24px auto;
    background-position: left 3px;
    padding-left: 32px;
    margin-bottom: 8px;
  }
  .list03 {
    padding: 12px;
  }
  .list03 ul {
    padding: 12px;
  }
  .list03 ul li {
    font-size: 15px;
    background-size: 24px auto;
    background-position: left 3px;
    padding-left: 32px;
    margin-bottom: 8px;
  }
  .tbl01 tbody tr th {
    width: 7em;
  }
  .tbl01 tbody tr td {
    width: calc(100% - 7em);
  }
  .sp-br {
    display: block;
  }
  /* 卒業された方の声 */
  .voice_conts-info {
    flex-direction: column;
  }
  .voice_conts-info-img {
    margin: 0 auto 24px;
    width: 200px;
    text-align: center;
  }
  .voice_conts-info-text {
    width: 100%;
  }
  .voice_info-detail {
    font-size: 14px;
    margin: 0 auto 4px;
  }
  .voice_info-ttltext h3 {
    font-size: 16px;
  }
  .voice_conts-qa {
    margin-top: 16px;
    padding: 16px;
  }
  .voice_conts-qa dl dt {
    padding-left: 20px;
    line-height: 1.8;
  }
  .voice_conts-qa dl dt:before {
    width: 10px;
    height: 10px;
    top: 10px;
  }
  .voice_qa-memo {
    font-size: 13px;
    margin-top: 12px;
    border-top: 1px dashed #ddd;
    padding-top: 4px;
  }
  .voice_btn01 {
    margin-top: 16px;
    width: 100%;
  }
  .voice_btn01 a {
    font-size: 15px;
    padding: 8px;
  }
  .voice_btn01 a img {
    max-width: 24px;
  }
  /* common_conts */
  .common_contact-r-info {
    flex-direction: column;
    justify-content: flex-start;
  }
  .common_contact-infoconts {
    margin: 0 auto 0 0;
  }
  .common_contact-infoconts:last-of-type {
    margin: 12px auto 0 0;
  }
  /* sidebtn */
  #sidebtn {
    display: none;
  }
  /* pagetop */
  #pagetop img {
    width: 48px;
    height: 48px;
  }
  .common_contact-wrap {
    width: 90%;
  }
  .common_contact-ttl img {
    max-width: 90%;
  }
  .common_contactconts {
    padding: 24px 0 76px;
    background-position: left center;
  }
  .common_contact-btnlist {
    margin-top: 24px;
  }
  .common_contact-btnlist ul {
    display: flex;
    flex-direction: column;
  }
  .common_contact-btnlist ul li {
    width: 100%;
    margin: 0 auto 12px !important;
    text-align: center;
  }
  .common_contact-btnlist ul li:last-of-type {
    margin-bottom: 0 !important;
  }
  /* footer */
  #footer {
    width: 100%;
    margin: 0 auto;
    padding: 24px 0;
  }
  .footer_wrap {
    padding: 0;
  }
  .footer_l {
    margin-bottom: 16px;
  }
  .f_info {
    flex-direction: column;
    justify-content: center;
    margin: 16px auto;
    padding: 16px 0;
  }
  .f_info p {
    text-align: center;
  }
  .tbl_opentime thead tr th {
    font-size: 12px;
    padding: 4px;
  }
  .tbl_opentime tbody tr th, .tbl_opentime tbody tr td {
    font-size: 12px;
    padding: 4px;
  }
  .tbl_opentime tbody tr td:first-of-type {
    font-size: 10px;
  }
  .f_menu ul li a {
    font-size: 12px;
  }
  .f_memo {
    font-size: 12px;
  }
  .f_copy {
    margin-top: 16px;
    padding-bottom: 12vw;
  }
  .sp_btm .sp_btm-wrap {
    display: flex;
    justify-content: space-between;
  }
}