@charset "UTF-8";
/******************************************************************
Theme Name: 末廣屋
Author: Y.Yokoyama
Author URI: http://fromdime.com
******************************************************************/
/******************************************************************

共通

******************************************************************/
/* root
-------------------------------------------------------*/
:root {
  --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --default-transition-duration: 150ms;
}

/* 電話リンクなし
-------------------------------------------------------*/
.notel a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none;
}

/* 電話リンク
-------------------------------------------------------*/
a.tel {
  color: inherit;
}
a.tel:hover {
  text-decoration: underline !important;
}

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

構造調整タグ

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

汎用パーツ

******************************************************************/
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.inline-block {
  display: inline-block;
}

.font-thin {
  font-weight: 100;
}

.font-light {
  font-weight: 300;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

a {
  transition-property: all;
  transition-timing-function: var(--default-transition-timing-function, cubic-bezier(0.4, 0, 0.2, 1));
  transition-duration: var(--default-transition-duration, 150ms);
}

/* ボタン
-------------------------------------------*/
.button {
  display: inline-block;
  padding: 0.6rem 4.5rem;
  border: 2px solid #013887;
  cursor: pointer;
}
.button:hover, .button:focus, .button:active {
  color: #ffffff !important;
  background-color: #013887;
}

/*-------------------------------------------
テーブルの基本レイアウト
-------------------------------------------*/
table.base_table tr th {
  width: 20%;
  text-align: left;
  padding: 0.5rem 0.5rem 0.5rem 0;
  border-bottom: 1px solid #dbdbdb;
}

table.base_table tr td {
  width: 80%;
  background-color: #ffffff;
  padding: 0.5rem 1rem 0.5rem 1rem;
  border-bottom: 1px solid #dbdbdb;
}

/*-------------------------------------------
ページナビ
-------------------------------------------*/
.wrap_pagination {
  text-align: center;
  margin: 4.7rem 0;
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: white;
  font-weight: 400 !important;
  text-decoration: none;
  border: 1px solid #e5e5e5;
  padding: 10px 20px;
  margin: 10px;
  background-color: #dddddd;
  border-radius: 0;
  font-size: 0.9375rem;
  display: inline-block;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current,
.wp-pagenavi span.pages {
  color: white;
  border: 1px solid #013887;
  background-color: #013887;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  color: white;
  border: 1px solid #e5e5e5;
}

/*-------------------------------------------
パンくずリスト
-------------------------------------------*/
#after-header {
  position: relative;
}

.breadcrumb,
.breadcrumb span {
  color: #414245;
}

.breadcrumb {
  padding: 1.8rem 0;
  margin-bottom: 0.8rem;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/*-------------------------------------------
ホバーでスケール
-------------------------------------------*/
.scale-img {
  position: relative;
  overflow: hidden;
}

.scale-img a:hover {
  opacity: 1;
}

.scale-img a,
.scale-img .thumb,
.scale-img .of_hide {
  position: relative;
  overflow: hidden;
  display: block;
}

.scale-img img {
  width: 100%;
  transition: all 0.3s cubic-bezier(0.045, 0.495, 0.685, 0.97);
}

.scale-img:hover img {
  transform: scale(1.1);
}

/*-------------------------------------------
横並びレイアウト
-------------------------------------------*/
.flexbox {
  display: flex;
  flex-flow: row;
  align-content: flex-start;
}

.flexbox-wrap {
  flex-flow: row wrap;
}

.flexbox-center {
  align-items: center;
}

/*-------------------------------------------
YouTube枠レスポンシブ
-------------------------------------------*/
.video-frame {
  position: relative;
  width: 100%;
}

.video-frame:before {
  content: "";
  display: block;
  padding-top: 56.3%;
  position: relative;
}

.video-frame-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

プラグイン

******************************************************************/
/*-------------------------------------------
slick
-------------------------------------------*/
.slick-slide a {
  display: block;
}

.slick-prev {
  left: 10px;
  z-index: 10;
}

.slick-next {
  right: 10px;
  z-index: 10;
}

.slick-dots {
  bottom: 0;
}

.slick-prev:before, .slick-next:before {
  color: #808080;
}

.slick-slide img {
  width: 100%;
}

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

ヘッダー

******************************************************************/
.overlay {
  display: none;
}

/* head-bar
-------------------------------------------------------*/
#head-bar {
  background-color: white;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
#head-bar .head-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 20px;
}
#head-bar .head-bar-inner .head-bar-left {
  width: 100%;
  max-width: 245px;
  padding: 0 0.6rem;
}
#head-bar .head-bar-inner .head-bar-left .logo:hover, #head-bar .head-bar-inner .head-bar-left .logo:focus, #head-bar .head-bar-inner .head-bar-left .logo:active {
  opacity: 0.5;
}
#head-bar .head-bar-inner .head-bar-left .logo img {
  width: 100%;
  max-width: 139px;
}
#head-bar .head-bar-inner .head-bar-center {
  flex: 1;
  max-width: 1004px;
  padding: 0 1rem;
  font-weight: 600;
  font-size: 0.875rem;
}
#head-bar .head-bar-inner .head-bar-right {
  width: 100%;
  max-width: 245px;
  padding: 0 1.4rem;
  font-weight: 600;
  color: #013887;
}
#head-bar .head-bar-inner .head-bar-right p:nth-child(2) {
  font-size: 1.625rem;
}

/* globalnavi
-------------------------------------------------------*/
.globalnavi-ul {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
}
.globalnavi-ul .menu-item {
  text-align: center;
}
.globalnavi-ul .menu-item a {
  color: #414245;
  padding: 0.5rem 1rem;
  white-space: nowrap;
}
.globalnavi-ul .menu-item.current-page-ancestor a, .globalnavi-ul .menu-item.active a, .globalnavi-ul .menu-item:hover a {
  color: #013887;
}
.globalnavi-ul .sub-menu {
  display: none !important;
}

/*-------------------------------------------
メインスライダー
-------------------------------------------*/
#wrap-main-slider {
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  position: relative;
}

#wrap-main-slider .text-slider {
  position: absolute;
  top: 0;
  z-index: 99;
  width: 100%;
}

#wrap-main-slider .text-slider .slick-slide img {
  opacity: 0;
  transform: scale3d(1.08, 1.08, 1);
  transition: opacity 2.5s ease 0.5s, transform 2.5s cubic-bezier(0.19, 0.68, 0.38, 0.99) 0.5s;
}
#wrap-main-slider .text-slider .slick-slide.slick-active img {
  transition: none;
  animation: slideIn 2.5s cubic-bezier(0.19, 0.68, 0.38, 0.99) 0.5s forwards;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: scale3d(1.08, 1.08, 1);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.silde-sp {
  display: none !important;
}

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

サイドバー

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

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

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

フッター

******************************************************************/
#footer {
  padding: 2rem 0;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.5);
}
#footer .wrap-external-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 1rem;
}
#footer .wrap-external-link .link-sns {
  width: 100%;
  max-width: 50px;
}
#footer .wrap-external-link .link-sns:hover {
  opacity: 0.5;
}
#footer .wrap-footernavi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 20px;
}
#footer .wrap-footernavi .footernavi-left {
  min-height: 1px;
  width: 100%;
  max-width: 245px;
}
#footer .wrap-footernavi .footernavi-center {
  flex: 1;
  max-width: 1004px;
  padding: 0 1rem;
  font-weight: 600;
  font-size: 0.875rem;
}
#footer .wrap-footernavi .footernavi-right {
  min-height: 1px;
  width: 100%;
  max-width: 245px;
}
#footer .footer-logo {
  margin-bottom: 1rem;
  text-align: center;
}
#footer .footer-logo .logo:hover, #footer .footer-logo .logo:focus, #footer .footer-logo .logo:active {
  opacity: 0.5;
}
#footer .footer-logo .logo img {
  width: 100%;
  max-width: 210px;
}
#footer .company-info_inner {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #414245;
}

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

トップページ(toppage)

******************************************************************/
/* メインビジュアル
-------------------------------------------------------*/
.mainvisual {
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#home_mv {
  min-height: 700px;
  background-image: url(assets/images/home/img-home-mv-01-pc.webp);
  display: flex;
  align-items: center;
  justify-content: center;
}
#home_mv .catchphrase {
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
}
#home_mv .catchphrase .text-image:first-of-type img {
  width: 100%;
  max-width: 618px;
}
#home_mv .catchphrase .text-image:nth-child(2) img {
  width: 100%;
  max-width: 708px;
}

.home section {
  margin-bottom: 8.5rem;
}
.home .section_header {
  margin-bottom: 2.7rem;
}

.section_header .section_title,
.section_header .headline,
.headline_wrapper .section_title,
.headline_wrapper .headline {
  font-size: 2.5rem;
  font-weight: 600;
  color: #013887;
  text-align: center;
  margin-bottom: 1rem;
}
.section_header .section_title_object,
.section_header .headline_object,
.headline_wrapper .section_title_object,
.headline_wrapper .headline_object {
  display: flex;
}
.section_header .section_title_object .section_title_bar_wrapper,
.section_header .section_title_object .headline_bar_wrapper,
.section_header .headline_object .section_title_bar_wrapper,
.section_header .headline_object .headline_bar_wrapper,
.headline_wrapper .section_title_object .section_title_bar_wrapper,
.headline_wrapper .section_title_object .headline_bar_wrapper,
.headline_wrapper .headline_object .section_title_bar_wrapper,
.headline_wrapper .headline_object .headline_bar_wrapper {
  flex: 1;
  display: flex;
  align-items: center;
}
.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 {
  width: 100%;
  height: 4px;
  background-color: #013887;
}
.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: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #013887;
}

/* home-news
-------------------------------------------------------*/
#home-news {
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.5);
}
#home-news .section_flex {
  display: flex;
}
#home-news .link-news_wrapper {
  width: 100%;
  max-width: 164px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #013887;
}
#home-news .link-news_wrapper .link-news {
  flex: 1;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-weight: 600;
}
#home-news .link-news_wrapper .link-news p {
  max-width: 100px;
}
#home-news .link-news_wrapper .link-news p:first-child {
  color: #ffffff;
}
#home-news .link-news_wrapper .link-news p:nth-child(2) {
  color: #333333;
  background-color: #ffffff;
  font-size: 0.75rem;
}
#home-news .link-news_wrapper .link-news:hover, #home-news .link-news_wrapper .link-news:focus, #home-news .link-news_wrapper .link-news:active {
  opacity: 0.5;
}
#home-news .postlist {
  flex: 1;
}
#home-news .postlist .postlist-ul li {
  width: 100%;
  border: 2px solid #e0e0e0;
  border-bottom: none;
}
#home-news .postlist .postlist-ul li .hover_ul {
  display: block;
  padding: 1.7rem 2rem;
}
#home-news .postlist .postlist-ul li .hover_ul:hover .title, #home-news .postlist .postlist-ul li .hover_ul:focus .title, #home-news .postlist .postlist-ul li .hover_ul:active .title {
  color: #013887;
  text-decoration: underline;
}
#home-news .postlist .postlist-ul li .hover_ul .text {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
}
#home-news .postlist .postlist-ul li .hover_ul .text .list-title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #666666;
}
#home-news .postlist .postlist-ul li .hover_ul .text .list-title .fas {
  color: #013887;
  margin-right: 1rem;
}
#home-news .postlist .postlist-ul li .hover_ul .text .date {
  font-size: 0.8125rem;
  color: #414245;
  text-align: right;
}

/* home-bnr
-------------------------------------------------------*/
#home-bnr .section_main .bnr_wrapper .bnr {
  display: block;
  box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.75);
}
#home-bnr .section_main .bnr_wrapper .bnr:hover {
  opacity: 0.5;
}
#home-bnr .section_main .bnr_wrapper .bnr img {
  width: 100%;
}

/* kaitori-products
-------------------------------------------------------*/
#kaitori-products .section_header .section_title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #013887;
  text-align: center;
}
#kaitori-products .section_main .list-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5625rem 1%;
  margin-bottom: 3rem;
}
#kaitori-products .section_main .list-icons .list-item-icon {
  width: 230px;
  border-radius: 10px;
  padding: 0 1rem;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  text-align: center;
}
#kaitori-products .section_main .list-icons .list-item-icon .icon-image img {
  width: 100%;
  max-width: 160px;
}
#kaitori-products .section_main .list-icons .list-item-icon .icon-name {
  padding-bottom: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #414245;
}
#kaitori-products .section_main .others {
  border-radius: 18px;
  padding: 1.5rem 3rem 2rem;
  margin-bottom: 2.75rem;
  background-color: #f1f1f1;
}
#kaitori-products .section_main .others .others_title {
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: #d42d26;
}
#kaitori-products .section_main .others p {
  font-size: 0.8125rem;
}
#kaitori-products .section_main .others p:nth-child(3) {
  color: #d42d26;
}
#kaitori-products .section_main .caution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 2.2rem;
  border: 4px solid #d42d26;
  padding: 1.2rem 1rem;
}
#kaitori-products .section_main .caution .image {
  width: 100%;
  max-width: 64px;
}
#kaitori-products .section_main .caution p {
  color: #d42d26;
  font-size: 1.125rem;
  font-weight: 700;
}

/* kaitori-notes
-------------------------------------------------------*/
#kaitori-notes .section_main .kaitori-notes-item {
  padding-bottom: 3.5rem;
  border-bottom: 1px solid #888888;
  margin-bottom: 3rem;
}
#kaitori-notes .section_main .kaitori-notes-item:last-child {
  margin-bottom: 6.4rem;
}
#kaitori-notes .section_main .kaitori-notes-item .kaitori-notes-item_header {
  margin-bottom: 1.5rem;
}
#kaitori-notes .section_main .kaitori-notes-item .kaitori-notes-item_header .kaitori-notes-item_title {
  font-size: 1.5625rem;
  font-weight: 600;
  color: #013887;
}
#kaitori-notes .section_main .kaitori-notes-item .kaitori-notes-item_main {
  font-size: 0.9375rem;
}
#kaitori-notes .section_main .kaitori-notes-item .kaitori-notes-item_main .kaitori-notes-item-desc-document {
  margin-bottom: 2rem;
  color: #414245;
}
#kaitori-notes .section_main .kaitori-notes-item .kaitori-notes-item_main .list-documents {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2%;
  margin-bottom: 2.5rem;
  font-weight: 600;
  color: #013887;
  text-align: center;
  max-width: 1000px;
}
#kaitori-notes .section_main .kaitori-notes-item .kaitori-notes-item_main .list-documents:last-of-type {
  margin-bottom: 0;
}
#kaitori-notes .section_main .kaitori-notes-item .kaitori-notes-item_main .list-documents .list-item-document {
  width: 220px;
  border: 1px solid #013887;
  padding: 0.5rem 1rem;
}
#kaitori-notes .section_main .kaitori-notes-item .kaitori-notes-item_main .kaitori-notes-item-download:hover, #kaitori-notes .section_main .kaitori-notes-item .kaitori-notes-item_main .kaitori-notes-item-download:focus, #kaitori-notes .section_main .kaitori-notes-item .kaitori-notes-item_main .kaitori-notes-item-download:active {
  color: #d42d26;
  text-decoration: underline;
}
#kaitori-notes .section_main .kaitori-notes-item .kaitori-notes-item_main .kaitori-notes-item_content {
  margin-bottom: 1rem;
  color: #414245;
}
#kaitori-notes .section_main .kaitori-notes-item .kaitori-notes-item_main .kaitori-notes-item_content:last-of-type {
  margin-bottom: 0;
}
#kaitori-notes .section_main .kaitori-notes-item .kaitori-notes-item_main .kaitori-notes-item_content .kaitori-notes-item_content_title {
  font-weight: 700;
}
#kaitori-notes .section_main .link-tel {
  text-align: center;
}
#kaitori-notes .section_main .link-tel .button-tel {
  display: block;
  width: 100%;
  max-width: 857px;
  padding: 1.9rem 2rem;
  margin: 0 auto;
  border-radius: 75px;
  box-shadow: 7px 7px 5px rgba(136, 136, 136, 0.75);
  background-color: #d42d26;
  color: #ffffff;
  font-weight: 600;
}
#kaitori-notes .section_main .link-tel .button-tel:hover, #kaitori-notes .section_main .link-tel .button-tel:focus, #kaitori-notes .section_main .link-tel .button-tel:active {
  color: white;
  opacity: 0.5;
}
#kaitori-notes .section_main .link-tel .middle {
  font-size: 1.3125rem;
  line-height: 1.5;
}
#kaitori-notes .section_main .link-tel .large {
  font-size: 1.875rem;
  line-height: 1.3;
}
#kaitori-notes .section_main .link-tel .small {
  font-size: 1.25rem;
  line-height: 1.3;
}

/* faq
-------------------------------------------------------*/
#faq .section_main .c-plan-faq__list .c-plan-faq__list-item {
  border-bottom: 1px solid #888888;
  cursor: pointer;
}
#faq .section_main .c-plan-faq__list .c-plan-faq__list-item:first-child {
  border-top: 1px solid #888888;
}
#faq .section_main .c-plan-faq__list .c-plan-faq__list-item::marker {
  content: "";
}
#faq .section_main .c-plan-faq__list .c-plan-faq__list-item .c-plan-faq__checkbox {
  display: none;
}
#faq .section_main .c-plan-faq__list .c-plan-faq__list-item .c-plan-faq__checkbox:checked ~ .c-plan-faq__title .c-plan-faq__title-icon--open {
  display: none;
}
#faq .section_main .c-plan-faq__list .c-plan-faq__list-item .c-plan-faq__checkbox:checked ~ .c-plan-faq__title .c-plan-faq__title-icon--close {
  display: inline-block;
}
#faq .section_main .c-plan-faq__list .c-plan-faq__list-item .c-plan-faq__checkbox:checked ~ .c-plan-faq__content {
  height: auto;
  padding: 0 0.5rem 2rem 4rem;
}
#faq .section_main .c-plan-faq__list .c-plan-faq__list-item .c-plan-faq__title {
  font-weight: bold;
  padding: 1.5rem 0;
  display: block;
  cursor: pointer;
}
#faq .section_main .c-plan-faq__list .c-plan-faq__list-item .c-plan-faq__title:hover .c-plan-faq__title-text {
  color: #013887;
}
#faq .section_main .c-plan-faq__list .c-plan-faq__list-item .c-plan-faq__title-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 2rem;
  flex-wrap: nowrap;
  justify-content: flex-start;
  font-size: 1.5625rem;
  font-weight: 600;
  color: #414245;
}
#faq .section_main .c-plan-faq__list .c-plan-faq__list-item .c-plan-faq__title-text .c-plan-faq__title-icon {
  font-size: 1.5625rem;
  color: #013887;
}
#faq .section_main .c-plan-faq__list .c-plan-faq__list-item .c-plan-faq__title-icon--close {
  display: none;
}
#faq .section_main .c-plan-faq__list .c-plan-faq__list-item .c-plan-faq__content {
  overflow: hidden;
  width: 100%;
  padding: 0 0.5rem 0 4rem;
  height: 0;
  transition: 0.3s;
}

/* access
-------------------------------------------------------*/
#access .section_main .access-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2%;
}
#access .section_main .access-flex .google_map {
  width: 630px;
}
#access .section_main .access-flex .company-info {
  width: 540px;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 7%;
}
#access .section_main .access-flex .company-info .photos {
  width: 218px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
#access .section_main .access-flex .company-info .details {
  flex: 1;
  color: #414245;
}
#access .section_main .access-flex .company-info .details .details_header {
  padding-bottom: 1rem;
  border-bottom: 1px solid #888888;
  margin-bottom: 1rem;
}
#access .section_main .access-flex .company-info .details .details_header .details_title {
  font-size: 1.0625rem;
  font-weight: 600;
}
#access .section_main .access-flex .company-info .details .details_main {
  font-size: 0.9375rem;
}
#access .section_main .access-flex .company-info .details .details_main p {
  margin-bottom: 2rem;
}
#access .section_main .access-flex .company-info .details .details_main p.caution {
  color: #d42d26;
}
#access .section_main .access-flex .company-info .details .details_main p:last-child {
  margin-bottom: 0;
}

/* hanbai-stores
-------------------------------------------------------*/
#hanbai-stores .section_main .hanbai-stores-item {
  margin-bottom: 8rem;
}
#hanbai-stores .section_main .hanbai-stores-item:last-child {
  margin-bottom: 0;
}
#hanbai-stores .section_main .hanbai-stores-item .hanbai-stores-item_header {
  margin-bottom: 3rem;
}
#hanbai-stores .section_main .hanbai-stores-item .hanbai-stores-item_header .hanbai-stores-item_title {
  font-size: 1.875rem;
  font-weight: 300;
  color: #414245;
  text-align: center;
}
#hanbai-stores .section_main .real-stores .hanbai-stores-item_main .hanbai-stores-item_content .hanbai-stores-item_content_header {
  margin-bottom: 4rem;
  display: flex;
  justify-content: space-between;
  gap: 3rem 5%;
}
#hanbai-stores .section_main .real-stores .hanbai-stores-item_main .hanbai-stores-item_content .hanbai-stores-item_content_header .hanbai-stores-item_content_image {
  flex: 1;
}
#hanbai-stores .section_main .real-stores .hanbai-stores-item_main .hanbai-stores-item_content .hanbai-stores-item_content_main {
  max-width: 570px;
  margin: 0 auto;
}
#hanbai-stores .section_main .real-stores .hanbai-stores-item_main .hanbai-stores-item_content .hanbai-stores-item_content_main .title {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #888888;
  margin-bottom: 1rem;
}
#hanbai-stores .section_main .real-stores .hanbai-stores-item_main .hanbai-stores-item_content .hanbai-stores-item_content_main .title h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #414245;
}
#hanbai-stores .section_main .real-stores .hanbai-stores-item_main .hanbai-stores-item_content .hanbai-stores-item_content_main .details {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
#hanbai-stores .section_main .real-stores .hanbai-stores-item_main .hanbai-stores-item_content .hanbai-stores-item_content_main .details .text {
  font-size: 0.9375rem;
}
#hanbai-stores .section_main .real-stores .hanbai-stores-item_main .hanbai-stores-item_content .hanbai-stores-item_content_main .details .link-real-stores {
  width: 100%;
  max-width: 224px;
}
#hanbai-stores .section_main .real-stores .hanbai-stores-item_main .hanbai-stores-item_content .hanbai-stores-item_content_main .details .link-real-stores .button-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #013887;
  text-align: center;
}
#hanbai-stores .section_main .real-stores .hanbai-stores-item_main .hanbai-stores-item_content .hanbai-stores-item_content_main .details .link-real-stores .button-link:hover, #hanbai-stores .section_main .real-stores .hanbai-stores-item_main .hanbai-stores-item_content .hanbai-stores-item_content_main .details .link-real-stores .button-link:focus, #hanbai-stores .section_main .real-stores .hanbai-stores-item_main .hanbai-stores-item_content .hanbai-stores-item_content_main .details .link-real-stores .button-link:active {
  color: white;
  opacity: 0.5;
}
#hanbai-stores .section_main .online-stores .hanbai-stores-item_header .hanbai-stores-item_title {
  font-size: 1.875rem;
  font-weight: 300;
  color: #414245;
  text-align: center;
}
#hanbai-stores .section_main .online-stores .hanbai-stores-item_main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem 5%;
}
#hanbai-stores .section_main .online-stores .hanbai-stores-item_main .hanbai-stores-item_content {
  flex: 1;
}
#hanbai-stores .section_main .online-stores .hanbai-stores-item_main .hanbai-stores-item_content .button-link {
  display: flex;
  align-items: center;
  gap: 0 1.4rem;
  width: 100%;
  max-width: 429px;
  border: 1px solid #4d4d4d;
  border-radius: 20px;
  margin: 0 auto;
  padding: 0.5rem 1.4rem;
  box-shadow: 1.7px 1.7px 1.7px rgba(0, 0, 0, 0.4);
  color: #333333;
  font-size: 1.5625rem;
  text-align: center;
}
#hanbai-stores .section_main .online-stores .hanbai-stores-item_main .hanbai-stores-item_content .button-link:hover, #hanbai-stores .section_main .online-stores .hanbai-stores-item_main .hanbai-stores-item_content .button-link:focus, #hanbai-stores .section_main .online-stores .hanbai-stores-item_main .hanbai-stores-item_content .button-link:active {
  opacity: 0.5;
}
#hanbai-stores .section_main .online-stores .hanbai-stores-item_main .hanbai-stores-item_content .button-link i {
  margin-left: 1rem;
}
#hanbai-stores .section_main .online-stores .hanbai-stores-item_main .hanbai-stores-item_content .button-link .logo-online-store {
  width: 100%;
  max-width: 78px;
}

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

投稿（お知らせ）

******************************************************************/
/* category
-------------------------------------------------------*/
.headline_wrapper {
  margin-bottom: 5rem;
}

.category .postlist-ul li {
  border: 2px solid #e0e0e0;
  border-bottom: none;
}
.category .postlist-ul li:last-child {
  border-bottom: 2px solid #e0e0e0;
}
.category .postlist-ul li .hover_ul {
  display: block;
  padding: 1.2rem 2rem;
}
.category .postlist-ul li .hover_ul:hover .title, .category .postlist-ul li .hover_ul:focus .title, .category .postlist-ul li .hover_ul:active .title {
  color: #013887;
  text-decoration: underline;
}
.category .postlist-ul li .hover_ul .text {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
}
.category .postlist-ul li .hover_ul .text .list-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #666666;
}
.category .postlist-ul li .hover_ul .text .list-title .fas {
  margin-right: 1rem;
  color: #013887;
}
.category .postlist-ul li .hover_ul .text .date {
  font-size: 0.8125rem;
  color: #414245;
  text-align: right;
}

/* single
-------------------------------------------------------*/
.single-post .article_main {
  padding: 3rem 0;
  margin-bottom: 4.5rem;
  box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.75);
  border-radius: 24px;
}
.single-post .article_main .article-header {
  margin-bottom: 1.5rem;
}
.single-post .article_main .article-header .date {
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #666666;
}
.single-post .article_main .article-header .single-title {
  padding-bottom: 0.7rem;
  border-bottom: 2px solid #013887;
  font-size: 1.5625rem;
  font-weight: 600;
  color: #013887;
}
.single-post .article_main .entry-content {
  color: #666666;
  font-size: 0.9375rem;
}
.single-post .article-footer .post_link {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 5rem;
}
.single-post .article-footer .post_link .fas {
  color: #013887;
}
.single-post .article-footer .button-wrapper {
  margin-bottom: 4.7rem;
  text-align: center;
}
.single-post .article-footer .button-wrapper .button {
  font-size: 1.5625rem;
  font-weight: 600;
  color: #013887;
}

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

固定ページ(page)

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

カスタム投稿

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

404 Page Not Found

******************************************************************/
.error404 .linkbtn {
  margin-bottom: 4.7rem;
}

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

メディアクエリー

*******************************************************************
******************************************************************/
/* style-sp.cssにコーディング *//*# sourceMappingURL=style.css.map */