@charset "UTF-8";
/******************************************************************
サイトコンテンツスタイルシート（スマホ版）
Author: T.Sugiyama
Author URI: http://fromdime.com
******************************************************************/
/*-------------------------------------------
ヘッダーバー
-------------------------------------------*/
/*
メニューボタン
*/
.menu-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-btn a,
.menu-btn a span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.menu-btn a {
  position: relative;
  width: 30px;
  height: 30px;
}

.menu-btn a span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #333333;
  border-radius: 4px;
}

.menu-btn a span:nth-of-type(1) {
  top: 5px;
}

.menu-btn a span:nth-of-type(2) {
  top: 13px;
}

.menu-btn a span:nth-of-type(3) {
  bottom: 5px;
}

.menu-btn a.btn-close span:nth-of-type(1) {
  -webkit-transform: translateY(7px) rotate(-45deg);
  transform: translateY(7px) rotate(-45deg);
}

.menu-btn a.btn-close span:nth-of-type(2) {
  opacity: 0;
}

.menu-btn a.btn-close span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}

/*
メニュー
*/
.overlay {
  position: fixed;
  z-index: 50;
  background-color: #f1f1f1;
  border-top: 1px solid #6f6067;
  border-bottom: 1px solid #6f6067;
  width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.5rem 1.2rem;
  height: calc(100% - 75px);
}

/* スクロールバーのカスタマイズ */
.overlay::-webkit-scrollbar {
  width: 5px;
}

.overlay::-webkit-scrollbar-track {
  background: #ffffff;
  border-left: solid 1px #ececec;
}

.overlay::-webkit-scrollbar-thumb {
  background: #bbbbbb;
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px #ffffff;
}

.wrap-globalnavi-sp {
  margin-bottom: 1.5rem;
}

.wrap-globalnavi-sp .globalnavi {
  background-color: #ffffff;
}

.wrap-globalnavi-sp .globalnavi > ul {
  flex-flow: wrap;
}

.wrap-globalnavi-sp .globalnavi > ul > li {
  flex-basis: 100%;
  max-width: 100%;
  padding: 0;
}

.wrap-globalnavi-sp .globalnavi ul li a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #dddddd;
}

.wrap-globalnavi-sp .globalnavi ul li a:hover {
  background-color: #cde4eb;
  color: #000000;
  opacity: 1;
}

/* アコーディオン装飾 */
.globalnavi-sp ul li .dropdown li a {
  padding: 0.8rem 0.5rem 0.8rem 2.5rem;
}

.globalnavi-sp ul li a {
  position: relative;
}

.globalnavi-sp ul li a:after {
  font-family: FontAwesome;
  content: "\f105";
  color: inherit;
  font-weight: normal;
  position: absolute;
  right: 15px;
  text-decoration: none;
}

.globalnavi-sp ul li.menu-item-has-children > a:after {
  content: "\f196";
}

.globalnavi-sp ul li.menu-item-has-children.dropdown_open > a:after {
  content: "\f147";
}

.globalnavi-sp-ul [class^=nav-] a::before {
  content: "";
  margin-right: 0.5rem;
  display: inline-block;
  font-size: 1.1rem;
}
.globalnavi-sp-ul .nav-home a::before {
  background: url(../../assets/images/nav-home.svg) no-repeat;
  background-size: contain;
  width: 2.5rem;
  height: 22px;
}
.globalnavi-sp-ul .nav-about a::before {
  background: url(../../assets/images/nav-about.svg) no-repeat;
  background-size: contain;
  width: 2.5rem;
  height: 30px;
}
.globalnavi-sp-ul .nav-equipment a::before {
  background: url(../../assets/images/nav-equipment.svg) no-repeat;
  background-size: contain;
  width: 2.5rem;
  height: 21px;
}
.globalnavi-sp-ul .nav-member a::before {
  background: url(../../assets/images/nav-member.svg) no-repeat;
  background-size: contain;
  width: 2.5rem;
  height: 22px;
}
.globalnavi-sp-ul .nav-faq a::before {
  background: url(../../assets/images/nav-faq.svg) no-repeat;
  background-size: contain;
  width: 2.5rem;
  height: 24px;
}
.globalnavi-sp-ul .nav-access a::before {
  background: url(../../assets/images/nav-access.svg) no-repeat;
  background-size: contain;
  width: 2.5rem;
  height: 20px;
}
.globalnavi-sp-ul .nav-privacy_policy a::before {
  width: 2.5rem;
}

.overlay .go-business {
  text-align: center;
}

.overlay .go-business a {
  display: block;
}

.overlay .go-business img {
  max-width: 120px;
}

/*
バナー
*/
.overlay .recommendlist {
  display: flex;
  flex-flow: wrap;
  margin-bottom: 2rem;
}

.overlay .recommendlist > li {
  flex-basis: 48%;
  max-width: 48%;
  margin-bottom: 1rem;
  border: 1px solid #dddddd;
}

.overlay .recommendlist > li:nth-child(1) {
  margin-right: 4%;
}

.overlay .recommendlist > li:nth-child(n+3) {
  flex-basis: 100%;
  max-width: 100%;
}

.overlay .recommendlist > li a {
  display: block;
}

.overlay .recommendlist > li a:hover {
  opacity: 0.7;
}

.overlay .btn-entry-wrapper {
  margin-bottom: 1.5rem;
}

.overlay .btn-entry-wrapper.btn-questionnaire-form {
  margin-bottom: 3rem;
}

.overlay .btn-entry {
  font-size: 1.1rem;
}

.overlay .btn-entry-wrapper.btn-questionnaire-form .btn-entry {
  background-color: #ffffff;
  border: 2px solid #547d86;
  color: #2c5962;
}

.overlay .btn-entry-wrapper.btn-questionnaire-form .btn-entry:hover {
  background-color: #eef2f3;
}

/******************************************************************
*******************************************************************

メディアクエリー

*******************************************************************
******************************************************************/
/* 1281px ~ : PC Large screens -> Default */
/* ~ 1280px : PC screens */
/* ~ 1024px : Medium screens */
/* ~ 960px : Tablet screens */
/* ~ 896px : スマホ横 */
@media only screen and (max-width: 56em) {
  .equipmentlist-other > li .equipment-name {
    font-size: 1rem;
  }
} /* 896px以下 End */
/* ~ 812px : iphone X screens */
@media only screen and (max-width: 50.75em) {
  /*-------------------------------------------
  メンバー
  -------------------------------------------*/
  .memberlist > li {
    flex-basis: 48%;
    max-width: 48%;
    margin-right: 4%;
    margin-bottom: 3rem;
  }
  .memberlist > li:nth-child(3n+3) {
    margin-right: 4%;
  }
  .memberlist > li:nth-child(2n+2) {
    margin-right: 0;
  }
  .memberlist > li .thumb {
    max-width: 300px;
    margin: 0 auto 1rem;
  }
  .single-post #main .article-header .single-title-text {
    flex-basis: 100%;
    max-width: 100%;
  }
  .single-post #main .article-header .single-title-thumb {
    flex-basis: 100%;
    max-width: 300px;
    margin-bottom: 1.5rem;
  }
  .single-post #main .article-header {
    margin-bottom: 1.5rem;
  }
}
/* ~ 767px : Tablet screens */
@media only screen and (max-width: 47.938em) {
  /*-------------------------------------------
  テーブルの基本レイアウト
  -------------------------------------------*/
  .page-about table.base_table tr th,
  .page-about table.base_table tr td {
    display: block;
    width: 100%;
  }
  .page-about table.base_table tr th {
    padding: 0.8rem 0 0.2rem;
    font-weight: bold;
  }
  .page-about table.base_table tr td {
    padding: 0.2rem 0 0.8rem;
  }
}
/* 641px ~ 1024px : Medium only */
/* 640px以下:Small screens */
@media only screen and (max-width: 40em) {
  /******************************************************************

  共通

  ******************************************************************/
  html {
    font-size: 0.9375rem;
  }
  h1, h2, h3, h4, h5, h6 {
    /* font-size: 1.1rem; */
    line-height: 1.4;
  }
  .button_wrapper {
    text-align: center;
  }
  img {
    width: 100%;
  }
  br.br-pc {
    display: none;
  }
  br.br-sp {
    display: block;
  }
  .pc-hidden {
    display: block;
  }
  .sp-hidden {
    display: none;
  }
  /******************************************************************

  構造調整タグ

  ******************************************************************/
  .base_width {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .base_width.base_width_sp {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .inner_width {
    width: 100% !important;
    margin: 0 auto !important;
  }
  main {
    padding-top: 0;
    padding-bottom: 0;
  }
  section {
    margin-bottom: 2.5rem;
  }
  #main-title {
    padding: 1rem 0;
  }
  /*-------------------------------------------
  テーブルの基本レイアウト
  -------------------------------------------*/
  table.base_table tr th,
  table.base_table tr td {
    display: block;
    width: 100%;
  }
  table.base_table tr th {
    padding: 0.8rem 0 0.2rem;
    font-weight: bold;
  }
  table.base_table tr td {
    padding: 0.2rem 0 0.8rem;
  }
  /******************************************************************

  汎用パーツ

  ******************************************************************/
  /*
  横並びレイアウト
  */
  .flexbox {
    flex-flow: row wrap;
  }
  .headline,
  .section_title.icon-title {
    margin-bottom: 2rem;
    font-size: 1.4rem;
  }
  .headline:before,
  .section_title.icon-title:before {
    width: 50px;
    height: 50px;
  }
  .home .headline.icon-title,
  .home .section_title.icon-title {
    padding-bottom: 1rem;
    border-bottom: 4px solid #dddddd;
  }
  /* 202309追加 */
  .top_news {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .top_news h2 {
    font-size: 1.1rem;
  }
  .top_news li {
    display: block;
    margin-bottom: 20px;
  }
  .top_news li:last-of-type {
    margin-bottom: 0;
  }
  .top_news a {
    display: block;
    margin: 0;
  }
  .top_news a:hover {
    opacity: 0.5;
  }
  .top_news a .date {
    margin-right: 45px;
  }
  .icon_news_cat_wrapper_top .icon_news_cat {
    width: -webkit-fit-content;
    width: fit-content;
    width: -moz-fit-content;
    padding: 5px 15px;
  }
  /**************************/
  .top_activity {
    display: block;
  }
  .top_activity > li .thumb {
    flex-basis: 100% !important;
    max-width: 100% !important;
  }
  .top_activity > li .text {
    flex-basis: 100% !important;
    max-width: 100% !important;
  }
  /**************************/
  .link-list_single {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
  }
  .link-list_single li > .button {
    padding: 0.5rem 1.5rem;
  }
  /**************************/
  .wrap_breadcrumb {
    border-top: none;
    border-bottom: none;
    margin-bottom: 1rem;
  }
  .breadcrumb {
    padding: 1rem 0;
    font-size: 0.8rem;
    margin-bottom: 0;
  }
  .breadcrumb > span {
    position: relative;
  }
  .breadcrumb > span span,
  .breadcrumb > span.current-item {
    padding: 0;
  }
  .breadcrumb > span a:after {
    border-right: none;
    content: " > ";
    -webkit-transform: rotate(45deg);
    transform: rotate(0);
    width: auto;
    height: auto;
    margin: auto;
    position: relative;
    top: 0;
    bottom: 0;
    right: 0;
  }
  .breadcrumb span.current-item {
    display: inline-block;
    padding: 0;
    vertical-align: bottom;
    max-width: auto;
    white-space: normal;
    overflow: hidden;
    text-overflow: initial;
  }
  /******************************************************************

  プラグイン

  ******************************************************************/
  .slick-slide .pc-hidden {
    display: block;
  }
  .slick-slide .sp-hidden {
    display: none;
  }
  .slick-slider .slick-track {
    height: 13.5rem;
    overflow: hidden;
  }
  /******************************************************************

  ヘッダー

  ******************************************************************/
  /*-------------------------------------------
  ヘッダーバー
  -------------------------------------------*/
  #inner-header {
    padding-top: 90px;
  }
  .home.overlay-open #header {
    z-index: 12 !important;
  }
  #head-bar {
    display: none;
  }
  #head-bar-sp {
    display: block;
    background-color: #ffffff;
    z-index: 20 !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
  }
  .wrap-globalnavi-pc {
    display: none;
  }
  #head-bar-sp .head-bar-inner {
    padding: 1rem;
    align-items: center;
  }
  #head-bar-sp .head-bar-inner .head-bar-left {
    flex-basis: 13%;
    max-width: 13%;
  }
  #head-bar-sp .head-bar-inner .head-bar-center {
    flex-basis: 74%;
    max-width: 74%;
  }
  #head-bar-sp .head-bar-inner .head-bar-right {
    flex-basis: 13%;
    max-width: 13%;
    position: relative;
    top: auto;
    right: auto;
  }
  .head-bar-inner .logo {
    margin-bottom: 0;
    padding: 0 1rem;
  }
  .head-bar-inner .logo img {
    width: auto;
    height: 100%;
    max-height: 60px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .wrap-main_image_header {
    margin-top: 0;
  }
  .page-about .wrap-main_image_header .wrap-sub-image,
  .post-type-archive-faq .wrap-main_image_header .wrap-sub-image,
  .post-type-archive-equipment .wrap-main_image_header .wrap-sub-image,
  .category .wrap-main_image_header .wrap-sub-image,
  .post-type-archive-member .wrap-main_image_header .wrap-sub-image {
    min-height: 200px;
  }
  /******************************************************************

  グローバルナビゲーション

  ******************************************************************/
  /******************************************************************

  サイドバー

  ******************************************************************/
  /******************************************************************

  ユーティリティナビゲーション

  ******************************************************************/
  /******************************************************************

  フッター

  ******************************************************************/
  .intbnr-list > li {
    flex-basis: 90%;
    max-width: 300px;
    margin-right: 0;
  }
  .extbnr-list > li {
    flex-basis: 80%;
    max-width: 300px;
    margin-right: 0;
  }
  .line-account .line-account-title {
    font-size: 1.1rem;
  }
  #company-area .section_title {
    margin-bottom: 0.5rem;
  }
  #company-area .section_title img {
    max-width: 250px;
  }
  #company-area .section_inner_title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  #company-area .section_inner {
    font-size: 0.9rem;
    text-align: left;
  }
  /******************************************************************

  トップページ(toppage)

  ******************************************************************/
  .home #main .bg-color {
    padding: 2.5rem 0;
  }
  .home .pickup-list > li {
    flex-basis: 100%;
    max-width: 100%;
    margin-right: 0;
  }
  .home .pickup-list > li .text {
    margin-bottom: 1.5rem;
  }
  #schedule-calendar-area {
    margin-bottom: 3rem;
  }
  /*-------------------------------------------
  Magazine掲載
  -------------------------------------------*/
  .home #magazine-area ul {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0;
  }
  .home #magazine-area ul li {
    padding-bottom: 2.8rem;
    width: 100%;
  }
  .home #magazine-area ul li a {
    flex-wrap: wrap;
  }
  .home #magazine-area ul li:nth-child(odd) {
    margin-right: 0;
  }
  .home #magazine-area .text {
    margin-top: 1rem;
    width: 100%;
    text-align: justify;
  }
  .home #magazine-area .thumb {
    width: 100%;
  }
  .home #magazine-area .date {
    margin-top: 1rem;
  }
  .home #magazine-area .morelink {
    margin-top: 1.7rem;
  }
  /*-------------------------------------------
  マップエリア
  -------------------------------------------*/
  #map-area .section_inner {
    flex-wrap: wrap;
  }
  #map-area iframe {
    width: 100%;
  }
  #map-area .text {
    margin-top: 1.5rem;
    width: 100%;
  }
  /*-------------------------------------------
  お問い合わせはこちら
  -------------------------------------------*/
  .home #contact-area.bg-color .section_inner::before {
    width: 8.5rem;
    height: 8rem;
    top: -7rem;
    right: -1rem;
    left: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .home #contact-area.bg-color .button.-pink {
    font-size: 1.4rem;
  }
  /******************************************************************

  投稿（お知らせ）

  ******************************************************************/
  .newsnavlist > li .button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  .category-event #content {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .single-post #wrap-content,
  .category #wrap-content {
    padding: 2rem 0 3rem;
  }
  .postlist > li .thumb {
    flex-basis: 100%;
    max-width: 300px;
    margin: 0 auto 1.5rem;
  }
  .postlist > li .text {
    flex-basis: 100%;
    max-width: 100%;
  }
  .single-post #main .bg-white {
    padding: 1.5rem 1.5rem 2.5rem;
  }
  .single-post #main .article-header .single-title {
    font-size: 1.1rem;
  }
  .single-post #main .article-header .icon_news_cat_wrapper {
    margin-bottom: 1rem;
  }
  /******************************************************************

  固定ページ(page)

  ******************************************************************/
  /*-------------------------------------------
  てくテックすさき
  -------------------------------------------*/
  .page-about .about-left {
    flex-basis: 100%;
    max-width: 100%;
    margin-right: 0;
  }
  .page-about .about-right {
    flex-basis: 100%;
    max-width: 100%;
  }
  .fun_fact_list li {
    flex-basis: 100%;
    max-width: 100%;
  }
  .fun_fact_list li + li {
    margin-top: 0.5rem;
    margin-left: 0;
  }
  /*-------------------------------------------
  よくある質問
  -------------------------------------------*/
  .post-type-archive-faq #faq-area .faqlist li .question_text .icon-question,
  .post-type-archive-faq #faq-area .faqlist li .answer_text .icon-answer {
    width: 25px;
    height: 25px;
  }
  .post-type-archive-faq #faq-area .faqlist li .answer .icon-close {
    right: 5px;
    bottom: 5px;
    width: 25px;
    height: 25px;
  }
  .faqlist > li {
    padding: 0.8rem 0;
  }
  .post-type-archive-faq #faq-area .faqlist li .question_inner .text-question {
    font-size: 1rem;
  }
  .post-type-archive-faq #faq-area .faqlist li .answer {
    font-size: 0.9rem;
    padding: 1.5rem 1.2rem 2rem 0.7rem;
  }
  /*-------------------------------------------
  お問い合わせ
  -------------------------------------------*/
  .page-contact #main iframe {
    height: 1600px;
  }
  /******************************************************************

  カスタム投稿

  ******************************************************************/
  /*-------------------------------------------
  設備一覧
  -------------------------------------------*/
  .equipmentlist > li {
    height: auto;
  }
  .equipmentlist > li .thumb {
    flex-basis: 100%;
    max-width: 100%;
    height: 200px;
  }
  .equipmentlist > li .text {
    flex-basis: 100%;
    max-width: 100%;
    padding: 1.5rem;
  }
  .equipmentlist > li .thumb:after {
    content: none;
  }
  .equipmentlist > li:nth-child(even) .thumb {
    order: 1;
  }
  .equipmentlist > li .equipment-name {
    font-size: 1.2rem;
  }
  .equipmentlist-other > li {
    flex-basis: 48%;
    max-width: 48%;
    margin-right: 4%;
    margin-bottom: 2rem;
  }
  .equipmentlist-other > li:nth-child(4n+4) {
    margin-right: 4%;
  }
  .equipmentlist-other > li:nth-child(2n+2) {
    margin-right: 0;
  }
  /*-------------------------------------------
  メンバー
  -------------------------------------------*/
  .memberlist > li {
    flex-basis: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 3rem;
  }
  .memberlist > li .thumb {
    max-width: 200px;
  }
  /******************************************************************

  404 Page Not Found

  ******************************************************************/
  /******************************************************************

  お問い合わせフォーム

  ******************************************************************/
} /* 641以下end */
/* 479px以下: SP screens */
@media only screen and (max-width: 29.938em) {
  .line-account {
    font-size: 0.9rem;
  }
  .footernavi-ul > li {
    flex-basis: 50%;
    max-width: 50%;
  }
  .footernavi-ul > li > a {
    border-left: none;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-size: 0.95rem;
  }
}
