@charset "UTF-8";
/******************************************************************
サイトコンテンツスタイルシート（スマホ版）
Author: Y.Yokoyama
Author URI: http://fromdime.com
******************************************************************/
/******************************************************************

共通

******************************************************************/
/*-------------------------------------------
ヘッダーバー
-------------------------------------------*/
/*
メニューボタン
*/
.menu-btn a,
.menu-btn a span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

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

.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: 7px;
}

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

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

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

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

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

/*
メニュー
*/
.overlay {
  position: fixed;
  z-index: 100;
  background-color: #f1f1f1;
  width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.5rem 1.2rem;
  height: calc(100% - 56px);
}

/* スクロールバーのカスタマイズ */
.overlay::-webkit-scrollbar {
  /*    width: 10px;*/
  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;
}

.overlay_inner {
  /*        overflow-y: scroll;*/
}

.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 {
  /*    font-size: 0.9rem;*/
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #dddddd;
}

.wrap-globalnavi-sp .globalnavi .globalnavi-ul > li:last-child a {
  border-bottom: none;
}

.wrap-globalnavi-sp .globalnavi ul li a:hover {
  opacity: 1;
}

.overlay .internal-links {
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay .internal-item {
  text-align: center;
}

.overlay .internal-item {
  margin-right: 4%;
}

.overlay .internal-item:last-child {
  margin-right: 0;
}

.overlay .internal-item > a {
  display: block;
}

.overlay .internal-item img {
  max-width: 40px;
}

.overlay .internal-item span {
  display: block;
  font-size: 0.7rem;
}

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

メディアクエリー

*******************************************************************
******************************************************************/
/* 1281px ~ : PC Large screens -> Default */
/* ~ 1280px : PC screens */
@media only screen and (max-width: 80em) {
  /* head-bar
  -------------------------------------------------------*/
  #head-bar .head-bar-inner {
    flex-wrap: wrap;
    gap: 1rem 0;
  }
  #head-bar .head-bar-inner .head-bar-left {
    order: 1;
  }
  #head-bar .head-bar-inner .head-bar-center {
    order: 3;
    flex-basis: 100%;
    max-width: 100%;
  }
  #head-bar .head-bar-inner .head-bar-right {
    order: 2;
  }
  /* globalnavi
  -------------------------------------------------------*/
  .globalnavi-ul .menu-item a {
    padding: 0.5rem 0.75rem;
  }
  #footer .wrap-footernavi {
    gap: 1rem 0;
  }
  #footer .wrap-footernavi .footernavi-left {
    display: none;
  }
  #footer .wrap-footernavi .footernavi-center {
    flex-basis: 100%;
    max-width: 100%;
  }
  #footer .wrap-footernavi .footernavi-right {
    display: none;
  }
  /* access
  -------------------------------------------------------*/
  #access .access-flex {
    justify-content: center;
    gap: 2rem 2%;
  }
  #access .access-flex .google_map {
    flex-basis: 100%;
    max-width: 800px;
  }
  #access .access-flex .company-info {
    flex-basis: 100%;
    max-width: 500px;
  }
}
/* ~ 1024px : Medium screens */
/* ~ 960px : Tablet screens */
/* ~ 896px : スマホ横 */
@media only screen and (max-width: 56em) {
  /* hanbai-stores
  -------------------------------------------------------*/
  #hanbai-stores .section_main .real-stores .hanbai-stores-item_main .hanbai-stores-item_content .hanbai-stores-item_content_header {
    flex-direction: column;
    max-width: 570px;
    margin: 0 auto 4rem;
  }
  #hanbai-stores .section_main .online-stores .hanbai-stores-item_main {
    flex-direction: column;
    justify-content: center;
    gap: 2rem 0;
  }
} /* 896px以下 End */
/* ~ 812px : iphone X screens */
/* ~ 767px : Tablet screens */
/* 641px ~ */
/* 640px以下:Small screens */
@media only screen and (max-width: 40em) {
  /******************************************************************

    共通

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

    構造調整タグ

  ******************************************************************/
  .base_width {
    padding-left: 1rem !important;
    padding-right: 1rem !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;
  }
  /*-------------------------------------------
    テーブルの基本レイアウト
  -------------------------------------------*/
  table.base_table {
    border: 1px solid #dbdbdb;
  }
  table.base_table tr th,
  table.base_table tr td {
    display: block;
    width: 100%;
  }
  table.base_table tr th {
    text-align: left;
    font-weight: normal;
    background-color: #eaeaea;
    padding: 0.3rem 1.3rem;
    border-bottom: 1px solid #dbdbdb;
  }
  table.base_table tr td {
    background-color: #ffffff;
    padding: 0.7rem 1.3rem;
    border-bottom: 1px solid #dbdbdb;
  }
  table.base_table tr:last-child td {
    border-bottom: none;
  }
  /******************************************************************

    汎用パーツ

  ******************************************************************/
  .text-40px {
    font-size: 1.8rem;
  }
  .text-30px {
    font-size: 1.6rem;
  }
  .text-26px {
    font-size: 1.5rem;
  }
  .text-25px {
    font-size: 1.4rem;
  }
  .text-21px {
    font-size: 1.3rem;
  }
  .text-20px {
    font-size: 1.2rem;
  }
  .text-18px {
    font-size: 1.1rem;
  }
  .breadcrumb {
    padding: 1rem 0 2rem;
  }
  /*
    横並びレイアウト
  */
  .flexbox {
    flex-flow: row wrap;
  }
  .contact-sns {
    justify-content: center;
  }
  /*-------------------------------------------
  パンくずリスト
  -------------------------------------------*/
  /*-------------------------------------------
  ページナビ
  -------------------------------------------*/
  .wrap_pagination {
    margin: 2.4rem 0;
  }
  .wp-pagenavi a,
  .wp-pagenavi span {
    padding: 5px 10px;
    margin: 5px;
  }
  /******************************************************************

    プラグイン

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

    ヘッダー

  ******************************************************************/
  #head-bar-sp {
    background-color: #ffffff;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding: 0.5rem 2%;
  }
  #head-bar-sp .head-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #head-bar-sp .head-bar-inner .head-bar-left {
    flex: 1;
  }
  #head-bar-sp .head-bar-inner .head-bar-left .menu-btn {
    display: flex;
  }
  #head-bar-sp .head-bar-inner .head-bar-center {
    flex-basis: 70%;
    max-width: 70%;
    text-align: center;
  }
  #head-bar-sp .head-bar-inner .head-bar-center .logo:hover {
    opacity: 0.6;
  }
  #head-bar-sp .head-bar-inner .head-bar-center .logo img {
    max-width: 120px;
  }
  #head-bar-sp .head-bar-inner .head-bar-right {
    flex: 1;
  }
  .wrap-globalnavi-sp ul li a {
    position: relative;
  }
  .wrap-globalnavi-sp ul li a::after {
    font-family: FontAwesome;
    content: "\f105";
    color: inherit;
    font-weight: normal;
    position: absolute;
    right: 15px;
  }
  .wrap-globalnavi-sp ul li a:hover, .wrap-globalnavi-sp ul li a:focus {
    color: #ffffff;
    background-color: #013887;
    opacity: 1;
  }
  .wrap-globalnavi-sp ul li.menu-item-has-children > a::after {
    content: "\f196";
  }
  .wrap-globalnavi-sp ul li.menu-item-has-children.dropdown_open > a::after {
    content: "\f147";
  }
  .overlay .sub-info {
    font-weight: 600;
    color: #013887;
  }
  .overlay .sub-info p:nth-child(2) {
    font-size: 1.625rem;
  }
  /* globalnavi
  -------------------------------------------------------*/
  .globalnavi-ul .menu-item a {
    display: block;
  }
  .slide-pc {
    display: none !important;
  }
  .slide-sp {
    display: block !important;
  }
  /******************************************************************

    サイドバー

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

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

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

    フッター

  ******************************************************************/
  #footer {
    padding: 1rem 0;
  }
  #footer .wrap-footernavi {
    padding: 0.6rem 1rem;
  }
  #footer .footer-logo {
    margin-bottom: 1rem;
  }
  #footer .company-info_inner {
    flex-direction: column;
    text-align: center;
    gap: 0;
  }
  /******************************************************************

    トップページ(toppage)

  ******************************************************************/
  /* メインビジュアル
  -------------------------------------------------------*/
  #home_mv {
    min-height: 400px;
  }
  #home_mv .catchphrase {
    gap: 1rem 0;
  }
  .home section {
    margin-bottom: 4.25rem;
  }
  .home .section_header {
    margin-bottom: 1.35rem;
  }
  .section_header .section_title,
  .section_header .headline,
  .headline_wrapper .section_title,
  .headline_wrapper .headline {
    margin-bottom: 0.5rem;
  }
  .section_header .section_title_object .section_title_bar_wrapper .section_title_bar,
  .section_header .section_title_object .section_title_bar_wrapper .headline_bar,
  .section_header .section_title_object .headline_bar_wrapper .section_title_bar,
  .section_header .section_title_object .headline_bar_wrapper .headline_bar,
  .section_header .headline_object .section_title_bar_wrapper .section_title_bar,
  .section_header .headline_object .section_title_bar_wrapper .headline_bar,
  .section_header .headline_object .headline_bar_wrapper .section_title_bar,
  .section_header .headline_object .headline_bar_wrapper .headline_bar,
  .headline_wrapper .section_title_object .section_title_bar_wrapper .section_title_bar,
  .headline_wrapper .section_title_object .section_title_bar_wrapper .headline_bar,
  .headline_wrapper .section_title_object .headline_bar_wrapper .section_title_bar,
  .headline_wrapper .section_title_object .headline_bar_wrapper .headline_bar,
  .headline_wrapper .headline_object .section_title_bar_wrapper .section_title_bar,
  .headline_wrapper .headline_object .section_title_bar_wrapper .headline_bar,
  .headline_wrapper .headline_object .headline_bar_wrapper .section_title_bar,
  .headline_wrapper .headline_object .headline_bar_wrapper .headline_bar {
    height: 3px;
  }
  .section_header .section_title_object .section_title_circle,
  .section_header .section_title_object .headline_circle,
  .section_header .headline_object .section_title_circle,
  .section_header .headline_object .headline_circle,
  .headline_wrapper .section_title_object .section_title_circle,
  .headline_wrapper .section_title_object .headline_circle,
  .headline_wrapper .headline_object .section_title_circle,
  .headline_wrapper .headline_object .headline_circle {
    width: 15px;
    height: 15px;
  }
  /* home-news
  -------------------------------------------------------*/
  #home-news .section_flex {
    flex-wrap: wrap;
  }
  #home-news .link-news_wrapper {
    order: 2;
    flex-basis: 100%;
    max-width: 100%;
    padding: 0 1rem;
  }
  #home-news .link-news_wrapper .link-news {
    order: 1;
    flex-basis: 100%;
    padding: 1rem 0;
    align-items: center;
    width: 100%;
    max-width: 200px;
  }
  #home-news .link-news_wrapper .link-news p {
    width: 100%;
    max-width: 100%;
    padding: 0.5rem 0;
  }
  #home-news .postlist .postlist-ul li .hover_ul {
    padding: 1rem;
  }
  #home-news .postlist .postlist-ul li .hover_ul .text {
    flex-direction: column;
    align-items: stretch;
  }
  #home-news .postlist .postlist-ul li .hover_ul .text .list-title .fas {
    margin-right: 1rem;
  }
  /* kaitori-products
  -------------------------------------------------------*/
  #kaitori-products .list-icons {
    gap: 1rem 1%;
    margin-bottom: 1.5rem;
  }
  #kaitori-products .list-icons .list-item-icon {
    width: 100%;
    max-width: 32.6666666667%;
    padding: 0.5rem;
  }
  #kaitori-products .list-icons .list-item-icon .icon-image img {
    max-width: 75px;
  }
  #kaitori-products .list-icons .list-item-icon .icon-name {
    font-size: 0.85rem;
    line-height: 1.2;
  }
  #kaitori-products .others {
    padding: 1rem;
    margin-bottom: 1.4rem;
  }
  #kaitori-products .others .others_title {
    margin-bottom: 0.5rem;
  }
  #kaitori-products .caution {
    gap: 0 5%;
    padding: 1rem;
  }
  /* kaitori-notes
  -------------------------------------------------------*/
  #kaitori-notes .kaitori-notes-item {
    padding-bottom: 1.8rem;
    margin-bottom: 1.5rem;
  }
  #kaitori-notes .kaitori-notes-item:last-child {
    margin-bottom: 3.2rem;
  }
  #kaitori-notes .kaitori-notes-item .kaitori-notes-item_header {
    margin-bottom: 0.8rem;
  }
  #kaitori-notes .kaitori-notes-item .kaitori-notes-item-desc-document {
    margin-bottom: 1rem;
  }
  #kaitori-notes .kaitori-notes-item .list-documents {
    gap: 1rem 1%;
    margin-bottom: 1.3rem;
  }
  #kaitori-notes .kaitori-notes-item .list-documents .list-item-document {
    width: 100%;
    max-width: 49.5%;
    padding: 0.7rem 0.5rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #kaitori-notes .link-tel .button-tel {
    padding: 1rem;
  }
  #kaitori-notes .link-tel .middle {
    margin-bottom: 0.5rem;
  }
  #kaitori-notes .link-tel .large {
    margin-bottom: 1rem;
  }
  #kaitori-notes .link-tel .large span {
    font-size: 1.7rem;
  }
  #kaitori-notes .link-tel .large span:last-child {
    font-size: 1.3rem;
  }
  #kaitori-notes .link-tel .small {
    font-size: 1rem;
  }
  /* faq
  -------------------------------------------------------*/
  #faq .section_main .c-plan-faq__list .c-plan-faq__list-item .c-plan-faq__checkbox:checked ~ .c-plan-faq__content {
    padding: 0 0 1rem 2rem;
  }
  #faq .section_main .c-plan-faq__list .c-plan-faq__list-item .c-plan-faq__title {
    padding: 1rem 0;
  }
  #faq .section_main .c-plan-faq__list .c-plan-faq__list-item .c-plan-faq__title-text {
    gap: 0.25rem 1rem;
    font-size: 1.2rem;
  }
  #faq .section_main .c-plan-faq__list .c-plan-faq__list-item .c-plan-faq__content {
    padding: 0 0 0 2rem;
  }
  /* access
  -------------------------------------------------------*/
  #access .access-flex .company-info .photos {
    order: 2;
    width: 100%;
    flex-direction: row;
    gap: 1%;
  }
  #access .access-flex .company-info .details {
    order: 1;
  }
  #access .access-flex .company-info .details .details_header {
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
  }
  #access .access-flex .company-info .details .details_main p {
    margin-bottom: 1rem;
  }
  #access .access-flex .company-info .details .details_main p:last-child {
    margin-bottom: 0;
  }
  /* hanbai-stores
  -------------------------------------------------------*/
  #hanbai-stores .section_main .hanbai-stores-item {
    margin-bottom: 4rem;
  }
  #hanbai-stores .section_main .hanbai-stores-item .hanbai-stores-item_header {
    margin-bottom: 1.5rem;
  }
  #hanbai-stores .section_main .real-stores .hanbai-stores-item_main .hanbai-stores-item_content .hanbai-stores-item_content_header {
    margin-bottom: 2rem;
  }
  #hanbai-stores .section_main .real-stores .hanbai-stores-item_main .hanbai-stores-item_content .hanbai-stores-item_content_main .title {
    padding-bottom: 0.4rem;
    margin-bottom: 0.5rem;
  }
  #hanbai-stores .section_main .real-stores .hanbai-stores-item_main .hanbai-stores-item_content .hanbai-stores-item_content_main .details {
    flex-direction: column;
  }
  #hanbai-stores .section_main .online-stores .hanbai-stores-item_main .hanbai-stores-item_content {
    width: 100%;
    max-width: 350px;
  }
  #hanbai-stores .section_main .online-stores .hanbai-stores-item_main .hanbai-stores-item_content .button-link {
    gap: 0 5%;
    padding: 0.5rem 1rem;
  }
  #hanbai-stores .section_main .online-stores .hanbai-stores-item_main .hanbai-stores-item_content .button-link i {
    margin-left: 0.5rem;
  }
  /******************************************************************

    投稿（お知らせ）

  ******************************************************************/
  /* category
  -------------------------------------------------------*/
  .headline_wrapper {
    margin-bottom: 2.5rem;
  }
  .category .postlist-ul li .hover_ul {
    padding: 1rem;
  }
  .category .postlist-ul li .hover_ul .text {
    flex-direction: column;
    align-items: initial;
  }
  .category .postlist-ul li .hover_ul .text .list-title .fas {
    margin-right: 1rem;
  }
  /* single
  -------------------------------------------------------*/
  .single-post .article_main {
    padding: 1.5rem 0;
    margin-bottom: 2.3rem;
  }
  .single-post .article_main .article-header {
    margin-bottom: 0.8rem;
  }
  .single-post .article_main .article-header .date {
    margin-bottom: 0.5rem;
  }
  .single-post .article_main .article-header .single-title {
    padding-bottom: 0.4rem;
  }
  .single-post .article-footer .post_link {
    margin-bottom: 2.5rem;
  }
  .single-post .article-footer .button-wrapper {
    margin-bottom: 2.4rem;
  }
  /******************************************************************

    固定ページ(page)

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

    カスタム投稿

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

    404 Page Not Found

  ******************************************************************/
  .error404 .linkbtn .button {
    padding: 0.6rem 1rem;
  }
  /******************************************************************

    お問い合わせフォーム

  ******************************************************************/
} /* 641以下end */
/* 479px以下: SP screens */
@media only screen and (max-width: 29.938em) {
  /******************************************************************

    トップページ(toppage)

  ******************************************************************/
  /* kaitori-products
  -------------------------------------------------------*/
  #kaitori-products .caution {
    flex-direction: column;
    gap: 1rem 2.2rem;
    padding: 1rem;
  }
  #kaitori-products .caution .image {
    max-width: 55px;
  }
  /* kaitori-notes
  -------------------------------------------------------*/
  #kaitori-notes .section_main .kaitori-notes-item .kaitori-notes-item_main .list-documents {
    justify-content: center;
  }
  #kaitori-notes .section_main .kaitori-notes-item .kaitori-notes-item_main .list-documents .list-item-document {
    max-width: 100%;
  }
  /* access
  -------------------------------------------------------*/
  #access .section_main .access-flex .company-info .photos {
    width: 100%;
  }
  #access .section_main .access-flex .company-info .details {
    width: 100%;
  }
  /* hanbai-stores
  -------------------------------------------------------*/
  #hanbai-stores .section_main .online-stores .hanbai-stores-item_main {
    gap: 1rem 0;
  }
  #hanbai-stores .section_main .online-stores .hanbai-stores-item_main .hanbai-stores-item_content .button-link {
    padding: 0.7rem 1rem;
  }
  #hanbai-stores .section_main .online-stores .hanbai-stores-item_main .hanbai-stores-item_content .button-link .logo-online-store {
    max-width: 70px;
  }
  #hanbai-stores .section_main .online-stores .hanbai-stores-item_main .hanbai-stores-item_content .button-link p {
    font-size: 1.2rem;
  }
  /******************************************************************

  フッター

  ******************************************************************/
  #footer .footer-logo .logo img {
    width: 100%;
    max-width: 160px;
  }
}/*# sourceMappingURL=style-sp.css.map */