@charset "UTF-8";
/* Sass Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;700&display=swap");
html, body {
  font-size: 16px;
  font-weight: 400;
  font-family: Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  html, body {
    min-width: 1230px;
  }
}
@media screen and (max-width: 575px) {
  html, body {
    font-size: 14px;
  }
}

body.open {
  overflow: hidden;
}

.container-fluid {
  max-width: 1230px; /*　画面幅の上限　*/
  margin-left: auto;
  margin-right: auto;
}

a:hover,
a:active,
a:focus {
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
}

p {
  color: #333;
}

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

HEADER

*******************************************************************************************/
header.global_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  header.global_header {
    min-width: 1230px;
  }
}
header.global_header nav.global_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  background-color: #fff;
  opacity: 0.92;
  padding-left: 3rem;
  padding-right: 1.75rem;
}
@media screen and (max-width: 767px) {
  header.global_header nav.global_nav {
    padding: 0 0 0 10px;
    height: 60px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
header.global_header nav.global_nav h1 {
  font-size: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
header.global_header nav.global_nav h1 a {
  width: 230px;
}
header.global_header nav.global_nav h1 a img {
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  header.global_header nav.global_nav h1 {
    margin-bottom: 0;
    width: 60%;
    max-width: 240px;
  }
  header.global_header nav.global_nav h1 a {
    padding-right: 0;
    border-right: none;
    margin-right: 0;
    width: 100%;
    display: block;
  }
}
header.global_header nav.global_nav div.global_menu {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
header.global_header nav.global_nav div.global_menu ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu {
  position: relative;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu a {
  display: block;
  position: relative;
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  padding: 2.75rem 2.5rem;
  letter-spacing: 0.013em;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu a:hover {
  background-color: #efece8;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu .sub_menu {
  display: none;
  position: absolute;
  top: 100%;
  padding-top: 0;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu .sub_menu div.inner {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  background-color: rgba(239, 236, 232, 0.9);
  text-align: left;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu .sub_menu div.inner a {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.25rem 1.5rem;
  line-height: 1.6;
  border-bottom: 1px solid #ddd;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu .sub_menu div.inner a:last-of-type {
  border-bottom: none;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu .sub_menu div.inner a::after {
  color: #777;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  padding-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  header.global_header nav.global_nav div.global_menu {
    display: none;
  }
}
header.global_header nav.global_nav label.modal_toggle_btn {
  padding: 0.75rem;
  margin: 0;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  line-height: 1;
  width: 3.625rem;
  height: 3.25rem;
  margin-left: auto;
  background-color: transparent;
}
header.global_header nav.global_nav label.modal_toggle_btn span {
  display: block;
  width: 100%;
  background-color: #707070;
  height: 2px;
}
@media screen and (max-width: 767px) {
  header.global_header nav.global_nav label.modal_toggle_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
header.global_header nav.global_nav a.contact_btn {
  display: inline-block;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  width: 200px;
  position: relative;
  line-height: 50px;
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
  margin-left: 1.25rem;
}
header.global_header nav.global_nav a.contact_btn:hover, header.global_header nav.global_nav a.contact_btn:active, header.global_header nav.global_nav a.contact_btn:focus {
  background-color: #888888;
  border-color: #888888;
}
@media screen and (max-width: 767px) {
  header.global_header nav.global_nav a.contact_btn {
    display: none;
  }
}

/******************/
input#modal_menu_flg {
  display: none;
}

div.modal_menu {
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
  opacity: 0;
  pointer-events: none;
  padding: 30px;
  overflow-y: scroll;
}
input#modal_menu_flg:checked + div.modal_menu {
  opacity: 1;
  pointer-events: auto;
}
div.modal_menu div.global_menu ul {
  padding: 10% 0 0;
  margin: 0;
  list-style: none;
  font-size: 1rem;
}
div.modal_menu div.global_menu ul li a {
  display: block;
  color: #151515;
  text-decoration: none;
  padding: 0.625rem;
  border-bottom: 1px solid #999999;
}
div.modal_menu div.global_menu ul li a:hover, div.modal_menu div.global_menu ul li a:active, div.modal_menu div.global_menu ul li a:focus {
  background-color: #999999;
  color: #ffffff;
}
div.modal_menu div.global_menu ul li div a {
  padding-left: 2rem;
  border-bottom: 1px solid #CCCCCC;
}
div.modal_menu label {
  padding: 0.75rem;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  border: none;
  display: block;
  cursor: pointer;
  line-height: 1;
  width: 3.625rem;
  height: 3.25rem;
  background-color: #ada29a;
}
div.modal_menu label span {
  display: block;
  width: 75%;
  background-color: #ffffff;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
div.modal_menu label span:first-of-type {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
div.modal_menu label span:last-of-type {
  -webkit-transform: translate(-50%, -50%) rotate(315deg);
          transform: translate(-50%, -50%) rotate(315deg);
}

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

FOOTER

*******************************************************************************************/
div.global_footer footer {
  color: #151515;
  background-color: #f0edea;
  text-align: center;
}
div.global_footer footer .footer_contact {
  background-image: url("../files/images/background.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 4.375rem;
  padding-bottom: 5.875rem;
}
div.global_footer footer .footer_contact > .container-fluid > div {
  border-left: 4px solid #888;
  padding-left: 40px;
}
div.global_footer footer .footer_contact > .container-fluid > div h3, div.global_footer footer .footer_contact > .container-fluid > div p {
  text-align: left;
}
div.global_footer footer .footer_contact > .container-fluid > div h3 {
  font-family: "Oswald";
  font-size: 2.75rem;
  font-weight: 200;
  letter-spacing: 0.085em;
  color: #333;
  margin-bottom: 0.625rem;
  margin-left: -0.15em;
}
div.global_footer footer .footer_contact > .container-fluid > div p {
  letter-spacing: 0.013em;
  color: #000;
  margin-bottom: 2.5rem;
  margin-left: -0.4375em;
}
div.global_footer footer .footer_contact > .container-fluid > div div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
div.global_footer footer .footer_contact > .container-fluid > div div p {
  font-family: "Roboto", Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 2.375rem;
  font-weight: 300;
  color: #4b3c24;
  margin: 0 2rem 0 0;
}
div.global_footer footer .footer_contact > .container-fluid > div div p i {
  margin-right: 10px;
  font-size: 1.5rem;
}
div.global_footer footer .footer_contact > .container-fluid > div div a.original-btn {
  background-color: transparent;
  border: 1px solid #777;
  font-family: "Noto Sans CJK JP";
  font-size: 0.875rem;
  color: #000;
  min-width: 250px;
}
div.global_footer footer .footer_contact > .container-fluid > div div a.original-btn:hover {
  background-color: #000;
  color: #fff;
}
@media screen and (max-width: 767px) {
  div.global_footer footer .footer_contact {
    padding-bottom: 3rem;
    padding-top: 3rem;
  }
  div.global_footer footer .footer_contact > .container-fluid > div {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  div.global_footer footer .footer_contact > .container-fluid > div h3 {
    font-size: 2rem;
  }
  div.global_footer footer .footer_contact > .container-fluid > div div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  div.global_footer footer .footer_contact > .container-fluid > div div p {
    font-size: 2rem;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
div.global_footer footer .footer_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 5rem;
  padding-bottom: 4rem;
}
div.global_footer footer .footer_flex div.footer_logo {
  margin-right: 4rem;
  margin-left: 1.125rem;
}
div.global_footer footer .footer_flex div.footer_logo img {
  max-width: 22.75rem;
}
div.global_footer footer .footer_flex div.footer_logo + div {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.101em;
  text-align: left;
}
div.global_footer footer .footer_flex div.footer_logo + div p {
  margin: 0;
}
@media screen and (max-width: 767px) {
  div.global_footer footer .footer_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  div.global_footer footer .footer_flex div.footer_logo {
    margin-bottom: 0.625rem;
    margin-right: 0;
  }
  div.global_footer footer .footer_flex div.footer_logo img {
    width: 16.5rem;
  }
  div.global_footer footer .footer_flex div.footer_logo + div {
    font-size: 1rem;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  div.global_footer footer {
    padding-top: 0;
    padding-bottom: 0;
  }
  div.global_footer footer .footer_contact > div div a.original-btn {
    width: 30%;
  }
}
div.global_footer .copyright {
  color: #000;
  text-align: center;
  background-color: #f0edea;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 1rem 0;
  border-top: 1px solid #d6d3cf;
  line-height: 1;
  letter-spacing: 0.101em;
}

/* ページトップへ戻るボタン */
#page-top {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 50;
}
#page-top a {
  text-decoration: none;
  color: #ffffff;
  background-color: rgba(21, 21, 21, 0.9);
  font-size: 1rem;
  text-align: center;
  display: block;
  width: 3.125rem;
  height: 3.125rem;
}
#page-top a img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 1rem;
}
#page-top a:hover, #page-top a:active {
  color: #999999;
}

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

MAIN

*******************************************************************************************/
body:not(.top-page) main {
  padding-bottom: 3rem;
}
main .rowwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  overflow: hidden;
}
main .rowwrap .primary {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
main .rowwrap .secondary {
  width: 28.333%;
  margin-left: 3.5%;
}
@media screen and (max-width: 767px) {
  main .rowwrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  main .rowwrap .primary {
    width: 100%;
  }
  main .rowwrap .secondary {
    width: 100%;
    margin-left: 0;
    margin-top: 3rem;
  }
}

/*****************/
/* ページタイトル */
/****************/
main div.page-title {
  background-color: #CCCCCC;
  height: 22.9375rem;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  main div.page-title {
    height: 240px;
  }
}
main div.page-title .title_inner {
  text-align: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 0 4.5rem;
  padding: 0 15px;
  z-index: 3;
}
main div.page-title .title_inner > h2 {
  margin: 0;
}
main div.page-title .title_inner span {
  display: block;
  line-height: 1.2;
}
main div.page-title .title_inner span.jp {
  font-size: 2.2rem;
  font-weight: 400;
  font-family: Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  letter-spacing: 0.5rem;
  color: #57514e;
  letter-spacing: 0.101em;
  margin-bottom: 0.675rem;
}
main div.page-title .title_inner span.en {
  font-size: 1.125rem;
  font-weight: 300;
  font-family: "Oswald";
  letter-spacing: 0.013em;
  color: #56514e;
}
@media screen and (max-width: 767px) {
  main div.page-title .title_inner {
    margin-bottom: 2.5rem;
  }
  main div.page-title .title_inner span.jp {
    font-size: 1.5rem;
    letter-spacing: 0.125rem;
  }
  main div.page-title .title_inner span.en {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 575px) {
  main div.page-title .title_inner {
    margin-bottom: 4rem;
  }
}
main div.page-title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #dfdddb;
  z-index: 1;
}
main div.page-title .second_back_01 {
  background: linear-gradient(to right bottom, rgba(175, 175, 175, 0.77), rgba(175, 175, 175, 0.77) 50%, transparent calc(50% + 1px), transparent);
  position: absolute;
  width: 21.666%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}
main div.page-title .second_back_02 {
  background: linear-gradient(to left bottom, rgba(175, 175, 175, 0.77), rgba(175, 175, 175, 0.77) 50%, transparent calc(50% + 1px), transparent);
  position: absolute;
  width: 21.666%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 3;
}
main div.page-title .second_back_03 {
  background: linear-gradient(to right top, rgba(245, 245, 245, 0.51), rgba(245, 245, 245, 0.51) 50%, transparent calc(50% + 1px), transparent);
  position: absolute;
  width: 13%;
  height: 49.86%;
  bottom: 0%;
  left: 0%;
  z-index: 3;
}
main div.page-title .second_back_04 {
  background: linear-gradient(to left top, rgba(245, 245, 245, 0.51), rgba(245, 245, 245, 0.51) 50%, transparent calc(50% + 1px), transparent);
  position: absolute;
  width: 13%;
  height: 49.86%;
  bottom: 0%;
  right: 0%;
  z-index: 3;
}

/***************+*/
/* ぱんくずリスト */
/****************/
nav.breadcrumb-filud {
  margin-bottom: 3.25rem;
  background-color: #EEEEEE;
}
nav.breadcrumb-filud ol.breadcrumb {
  margin: 0 auto;
  background-color: transparent;
  font-size: 0;
  padding: 0.675rem 0;
}
nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item {
  font-size: 0.75rem;
}
nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item a {
  color: #777;
}
nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.25rem;
}
nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item + .breadcrumb-item::before {
  content: "  ＞  ";
  padding-right: 0.25rem;
}
@media screen and (max-width: 767px) {
  nav.breadcrumb-filud {
    margin-bottom: 3.125rem;
  }
  nav.breadcrumb-filud ol.breadcrumb {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0.625rem 5%;
  }
  nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item {
    display: inline;
    font-size: 0.625rem;
  }
}

/****************/
/* サイドメニュー */
/***************/
aside.secondary nav.sidebar-menu {
  margin-bottom: 2rem;
  /* メニュー本体 */
}
aside.secondary nav.sidebar-menu > h3 {
  font-size: 1.3rem;
  color: #ffffff;
  background-color: #ada29a;
  margin: 0 auto;
  padding: 2rem 0;
  text-align: center;
  line-height: 1;
  font-weight: 400;
}
aside.secondary nav.sidebar-menu > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
aside.secondary nav.sidebar-menu > ul > li {
  border: 5px solid #f4f4f4;
  border-bottom: none;
  line-height: 1.2;
}
aside.secondary nav.sidebar-menu > ul > li > a {
  padding: 20px 15px;
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
aside.secondary nav.sidebar-menu > ul > li > a::after {
  color: #f88011;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
}
aside.secondary nav.sidebar-menu > ul > li:hover > a, aside.secondary nav.sidebar-menu > ul > li:active > a, aside.secondary nav.sidebar-menu > ul > li.active > a {
  text-decoration: none;
  background-color: #f4f4f4;
}
aside.secondary nav.sidebar-menu > ul > li:last-of-type {
  border-bottom: 5px solid #f4f4f4;
}
aside.secondary nav.sidebar-menu + nav.sidebar-menu {
  margin-top: 2rem;
}
aside.secondary ul.banner_list {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}
aside.secondary ul.banner_list li {
  margin-bottom: 1rem;
}
aside.secondary ul.banner_list li a {
  display: block;
  text-align: center;
}

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

BOOTCMS　コンテンツ設定部分

*******************************************************************************************/
/********/
/*見出し*/
/*******/
.lv1 {
  color: #333;
  font-size: 1.8rem;
  font-weight: 400;
  margin-top: 0;
  position: relative;
  padding-left: 20px;
  margin-bottom: 1.3rem;
}
.lv1::before, .lv1::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 50%;
  left: 0;
}
.lv1::before {
  top: 0;
  background-color: #f0edea;
}
.lv1::after {
  bottom: 0;
  background-color: #c8c1ba;
}
@media screen and (max-width: 767px) {
  .lv1 {
    font-size: 1.5rem;
  }
}

.lv2 {
  text-align: left;
  font-size: 1.45rem;
  margin-top: 0;
  color: #333;
  background-color: #f0edea;
  border-left: 5.97px solid #c8c1ba;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  padding: 0.5rem 1.5rem;
  margin-bottom: 1.3rem;
}
@media screen and (max-width: 767px) {
  .lv2 {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
  }
}

.lv3 {
  color: #444;
  font-size: 1.3rem;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 1.3rem;
}
@media screen and (max-width: 767px) {
  .lv3 {
    font-size: 1.125rem;
  }
}

.lv4 {
  color: #444;
  font-size: 1.3rem;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 1.3rem;
}
@media screen and (max-width: 767px) {
  .lv4 {
    font-size: 1.125rem;
  }
}

/*************/
/*テキストのみ*/
/************/
.text-only {
  margin-bottom: 1rem;
}
.text-only p {
  margin-bottom: 0;
  font-size: 1.0625rem;
  line-height: 1.8823529412;
}

/************/
/* 写真のみ */
/**********/
.photo-only {
  margin-bottom: 2rem;
  text-align: center;
}
.photo-only a img {
  display: inline-block;
}

/*****************/
/* 写真＋テキスト */
/****************/
.photo-and-text {
  margin-bottom: 1.5rem;
}
.photo-and-text:after {
  content: "";
  clear: both;
  display: block;
}
.photo-and-text p {
  margin-bottom: 0;
}
.photo-and-text img {
  margin-bottom: 1rem;
  max-width: 40%;
}
.photo-and-text img.float-right {
  margin-left: 1.875rem;
}
.photo-and-text img.float-left {
  margin-right: 1.875rem;
}
@media screen and (max-width: 575px) {
  .photo-and-text .photo-area {
    display: block;
    width: 100%;
    text-align: center;
  }
  .photo-and-text .photo-area img {
    max-width: 100%;
    margin: 0 0 1.5rem !important;
    float: none !important;
  }
}

/***********************/
/* 2列写真+キャプション */
/* 3列写真+キャプション */
/**********************/
.two-photo,
.three-photo {
  margin-bottom: 2rem;
}
.two-photo a img,
.three-photo a img {
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background-color: #ffffff;
}
.two-photo a:hover img,
.three-photo a:hover img {
  opacity: 0.7;
  background-color: #ffffff;
}
.two-photo .row div[class^=col],
.three-photo .row div[class^=col] {
  text-align: center;
}
.two-photo .row div[class^=col] img,
.three-photo .row div[class^=col] img {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .two-photo .row div[class^=col] + div,
  .three-photo .row div[class^=col] + div {
    margin-top: 2rem;
  }
}
.two-photo .caption-title,
.three-photo .caption-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 15px;
  text-align: left;
  margin-bottom: 0;
}
.two-photo .caption-text,
.three-photo .caption-text {
  margin: 5px 0;
  line-height: 1.6;
  text-align: left;
  font-weight: 400;
}

/**********/
/* リスト */
/*********/
ul.dot, ol.dot, ul.none, ol.none {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.dot > li, ol.dot > li, ul.none > li, ol.none > li {
  padding-left: 2em;
  line-height: 1.8;
  position: relative;
}
ul.dot > li::before, ol.dot > li::before, ul.none > li::before, ol.none > li::before {
  display: inline-block;
  width: 2em;
  position: absolute;
  left: 0;
  color: #888888;
}

ul.dot > li::before, ol.dot > li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "•";
  text-align: center;
}

ul.counter, ol.counter {
  display: table;
  margin: 0;
  padding: 0;
}
ul.counter li, ol.counter li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: table-row;
  counter-increment: number;
}
ul.counter li::before, ol.counter li::before {
  content: counter(number) ".";
  display: table-cell;
  padding-right: 0.4em;
  text-align: right;
}
ul.counter li::after, ol.counter li::after {
  content: "";
  display: block;
  margin-bottom: 0.5em;
}
ul.counter li:last-of-type:after, ol.counter li:last-of-type:after {
  margin-bottom: 0;
}

/**********/
/* ボタン */
/*********/
.btn-on {
  margin-bottom: 2rem;
}

.original-btn {
  display: inline-block;
  text-decoration: none;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  text-align: center;
  border: 1px solid #888888;
  background-color: #888888;
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  min-width: 200px;
}
.original-btn:hover, .original-btn:active, .original-btn:focus {
  text-decoration: none;
  background-color: #ffffff;
  color: #888888;
}
.original-btn.btn-big {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}
.original-btn.btn-small {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}
.original-btn.btn-blue {
  border: 2px solid #00238C;
  background-color: #00238C;
}
.original-btn.btn-blue:hover, .original-btn.btn-blue:active, .original-btn.btn-blue:focus {
  background-color: transparent;
  color: #00238C;
}
.original-btn.btn-green {
  border: 2px solid #006600;
  background-color: #006600;
}
.original-btn.btn-green:hover, .original-btn.btn-green:active, .original-btn.btn-green:focus {
  background-color: transparent;
  color: #006600;
}
.original-btn.btn-orange {
  border: 2px solid #FF8000;
  background-color: #FF8000;
}
.original-btn.btn-orange:hover, .original-btn.btn-orange:active, .original-btn.btn-orange:focus {
  background-color: transparent;
  color: #FF8000;
}
.original-btn.btn-gray {
  border: 2px solid #999999;
  background-color: #999999;
}
.original-btn.btn-gray:hover, .original-btn.btn-gray:active, .original-btn.btn-gray:focus {
  background-color: transparent;
  color: #999999;
}
@media screen and (max-width: 767px) {
  .original-btn {
    width: 100%;
    min-width: none;
  }
}

/***********************************************/
/* Youtube GoogleMap 埋め込みタグ レスポンシブ化 */
/***********************************************/
.youtube-box,
.gmap-box {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.youtube-box iframe,
.gmap-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/************/
/* テーブル */
/***********/
table.table-standard,
table.table-flexible {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc;
}
table.table-standard td,
table.table-flexible td {
  border: 1px solid #ccc;
  padding: 1em;
  width: 70%;
}
table.table-standard th,
table.table-flexible th {
  border: 1px solid #ccc;
  background-color: #f4f4f4;
  color: #000000;
  font-weight: normal;
  padding: 1em;
  white-space: nowrap;
  width: 30%;
}

.table-on {
  margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
  table.table-standard th, table.table-standard td,
  table.table-flexible th,
  table.table-flexible td {
    padding: 0.5em;
  }
}

@media screen and (max-width: 767px) {
  table.table-flexible {
    display: block;
    width: 100%;
    border-top: none;
    border-left: none;
    border-right: none;
  }
  table.table-flexible tbody, table.table-flexible tr, table.table-flexible th, table.table-flexible td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
}
@media screen and (max-width: 767px) {
  table.table-standard {
    margin-bottom: 0;
    border-left: none;
    border-top: none;
  }
  table.table-standard tr {
    white-space: nowrap;
  }
  table.table-standard tr::after {
    clear: both;
    display: block;
    content: "";
  }
  table.table-standard tr th, table.table-standard tr td {
    white-space: nowrap;
    border-right: none;
    border-bottom: none;
  }
}
/********/
/* 全幅 */
/*******/
section.extend {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 2rem 15px;
}
section.extend.extend_fixed {
  background-attachment: fixed;
}
section.extend.none_space {
  padding: 0;
}

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

トップページ

*******************************************************************************************/
body.top-page {
  background-color: #FFFFFF;
}
body.top-page section.top_mainvisual {
  width: 100%;
  height: 0;
  padding-bottom: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  /*div.top_slideshow {
  	width:100%;
  	min-width: 100%;
  	height: 0;
  	padding-bottom: 100vh;
  	overflow: hidden;
  	-webkit-backface-visibility:hidden;
  	backface-visibility:hidden;
  	position: relative;
  	@include mq-down(){
  		padding-bottom: 400px;
  	}
  	.slide {
  		position: absolute;
  		top: 0%;
  		left: 0%;
  		background-repeat: no-repeat;
  		background-position: center center;
  		background-size:cover;
  		z-index: -1;
  		width: 100%;
  		height: 100%;
  		-webkit-transition: opacity 3s ease, transform 5s linear;
  		-moz-transition: opacity 3s ease, transform 5s linear;
  		transition: opacity 3s ease, transform 5s linear;
  		-webkit-backface-visibility:hidden;
  		backface-visibility:hidden;
  		opacity: 0;
  		-webkit-transform: scale(1.15) translate3d(0,0,0);
  		-moz-transform: scale(1.15) translate3d(0,0,0);
  		transform: scale(1.15) translate3d(0,0,0);

  		&.showfase {
  			opacity: 1;
  			-webkit-transform: scale(1.075) translate3d(0,0,0) rotate(0.0001deg);
  			-moz-transform: scale(1.075) translate3d(0,0,0) rotate(0.0001deg);
  			transform: scale(1.075) translate3d(0,0,0) rotate(0.0001deg);
  		}

  		&.fadefase {
  			opacity: 0;
  			-webkit-transform: scale(1) translate3d(0,0,0) rotate(0.0001deg);
  			-moz-transform: scale(1) translate3d(0,0,0) rotate(0.0001deg);
  			transform: scale(1) translate3d(0,0,0) rotate(0.0001deg);
  		}
  	}
  }*/
}
@media screen and (max-width: 767px) {
  body.top-page section.top_mainvisual {
    padding-bottom: 280px;
  }
}
body.top-page section.top_mainvisual .swiper-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  body.top-page section.top_mainvisual .swiper-container {
    height: 280px;
  }
}
body.top-page section.top_mainvisual .swiper-container .swiper-slide {
  width: 100%;
  height: 100%;
}
body.top-page section.top_mainvisual .swiper-container .swiper-slide .slide-img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body.top-page section.top_mainvisual div.top_photo {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body.top-page section.top_mainvisual div.contents {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body.top-page section.top_mainvisual div.contents h2.catch {
  width: 80%;
  pointer-events: auto;
  color: #fff;
  margin: 115px 0 0;
  text-align: center;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  max-width: 1148px;
}
body.top-page section.top_mainvisual div.contents h2.catch img {
  max-width: 100%;
}
body.top-page section.top_mainvisual div.contents h2.catch img:first-of-type {
  display: block;
}
body.top-page section.top_mainvisual div.contents h2.catch img:last-of-type {
  display: none;
}
@media screen and (max-width: 767px) {
  body.top-page section.top_mainvisual div.contents h2.catch {
    width: 62.82%;
    margin-top: 60px;
  }
  body.top-page section.top_mainvisual div.contents h2.catch img:first-of-type {
    display: none;
  }
  body.top-page section.top_mainvisual div.contents h2.catch img:last-of-type {
    width: 100%;
    max-width: 400px;
    display: block;
  }
}
body.top-page section.top_mainvisual .mainvisual_back_01 {
  background: linear-gradient(to bottom right, rgba(175, 175, 175, 0.77), rgba(175, 175, 175, 0.77) 37%, transparent calc(37% + 1px), transparent);
  position: absolute;
  width: 21.614%;
  height: 33.95%;
  top: 0;
  left: 0;
  pointer-events: none;
}
body.top-page section.top_mainvisual .mainvisual_back_02 {
  background: linear-gradient(to top right, rgba(245, 245, 245, 0.43), rgba(245, 245, 245, 0.43) 50%, transparent calc(50% + 1px), transparent);
  position: absolute;
  width: 33.75%;
  height: 89.23%;
  bottom: 0%;
  left: 0%;
  pointer-events: none;
}
body.top-page section.top_mainvisual .mainvisual_back_03 {
  background: linear-gradient(to bottom left, rgba(245, 245, 245, 0.43), rgba(245, 245, 245, 0.43) 50%, transparent calc(50% + 1px), transparent);
  position: absolute;
  width: 42.03%;
  height: 68.73%;
  top: 0%;
  right: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  body.top-page section.top_mainvisual .mainvisual_back_03 {
    top: -11%;
  }
}
body.top-page section.top_mainvisual .swiper-button-next, body.top-page section.top_mainvisual .swiper-button-prev {
  color: #ffffff;
  margin-top: 40px;
}
body.top-page section.top_mainvisual .swiper-button-next::after, body.top-page section.top_mainvisual .swiper-button-prev::after {
  font-size: 33px;
}
@media screen and (max-width: 767px) {
  body.top-page section.top_mainvisual .swiper-button-next, body.top-page section.top_mainvisual .swiper-button-prev {
    display: none;
  }
}
body.top-page .top-news-block {
  background-color: #E5E5E5;
}
body.top-page .top-news-block #news-list {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 6.25rem;
}
body.top-page .top-news-block #news-list h3 {
  text-align: center;
  font-size: 2.75rem;
  -webkit-transform: translateY(-1.375rem);
          transform: translateY(-1.375rem);
}
body.top-page .top-news-block #news-list h3 span {
  font-size: 1.5rem;
}
body.top-page .top-news-block #news-list p.text-center {
  margin-top: 2.75rem;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  body.top-page .top-news-block #news-list {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 3.125rem;
  }
  body.top-page .top-news-block #news-list h3 {
    font-size: 2rem;
    -webkit-transform: translateY(-1rem);
            transform: translateY(-1rem);
  }
  body.top-page .top-news-block #news-list h3 span {
    font-size: 1rem;
  }
}
body.top-page h3 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
body.top-page h3 span {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #aaa;
}
@media screen and (max-width: 767px) {
  body.top-page h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  body.top-page h3 span {
    font-size: 1.25rem;
  }
}
body.top-page p.btn-area {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  body.top-page p.btn-area {
    margin-top: 2rem;
    text-align: center;
  }
}
body.top-page main#cnt {
  margin-top: -4rem;
  padding-top: 4rem;
}
body.top-page .top_business .top_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 4.5rem;
  margin-bottom: 5.25rem;
}
body.top-page .top_business .top_title h3 {
  color: #333;
  font-size: 1.3125rem;
  font-family: "Oswald";
  font-weight: 400;
  letter-spacing: 0.313em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
}
body.top-page .top_business .top_title h3 span {
  color: #4d4845;
  font-size: 2.5rem;
  font-family: Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 500;
  letter-spacing: 0.294em;
  margin: 0;
  padding-left: 0.294em;
  white-space: nowrap;
}
body.top-page .top_business .top_title::before, body.top-page .top_business .top_title::after {
  content: "";
  -webkit-box-flex: 0.05;
      -ms-flex-positive: 0.05;
          flex-grow: 0.05;
  height: 1px;
  background-color: #333;
  width: 25%;
  max-width: 120px;
}
body.top-page .top_business .top_title::before {
  margin-right: 30px;
}
body.top-page .top_business .top_title::after {
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  body.top-page .top_business .top_title {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 2rem;
  }
  body.top-page .top_business .top_title h3 {
    font-size: 1rem;
  }
  body.top-page .top_business .top_title h3 span {
    font-size: 1.875rem;
  }
  body.top-page .top_business .top_title::before {
    margin-right: 15px;
  }
  body.top-page .top_business .top_title::after {
    margin-left: 15px;
  }
}
body.top-page .top_business .top_list {
  padding: 0 15px;
}
body.top-page .top_business .top_list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
  width: 100%;
  max-width: 1564px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 7rem;
  text-decoration: none;
}
body.top-page .top_business .top_list ul li {
  width: 31.713%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2.375rem;
  list-style: none;
}
body.top-page .top_business .top_list ul li[id] {
  margin-top: -120px;
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  body.top-page .top_business .top_list ul li[id] {
    margin-top: -60px;
    padding-top: 60px;
  }
}
body.top-page .top_business .top_list ul li > a,
body.top-page .top_business .top_list ul li > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  text-decoration: none;
}
body.top-page .top_business .top_list ul li .photo {
  overflow: hidden;
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 47.177%;
}
body.top-page .top_business .top_list ul li .photo span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
body.top-page .top_business .top_list ul li .content {
  background-color: #fff;
}
body.top-page .top_business .top_list ul li .content h3 {
  font-family: "Oswald";
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.013em;
  padding-left: 1rem;
  margin-bottom: 0.625rem;
  margin-top: 2.75rem;
  margin-left: 1.6875rem;
}
body.top-page .top_business .top_list ul li .content h3 span {
  font-family: "游ゴシック", Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  color: #000;
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: 0.101em;
  margin-bottom: 0;
}
body.top-page .top_business .top_list ul li .content p {
  padding-left: 3.25rem;
  padding-right: 1.75rem;
  line-height: 2.25;
  letter-spacing: 0.013em;
  margin-bottom: 0.625rem;
  color: #000;
}
body.top-page .top_business .top_list ul li .content div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 1rem;
  padding-left: 1rem;
  padding-bottom: 1.75rem;
}
body.top-page .top_business .top_list ul li .content div p.original-btn {
  font-family: "Oswald";
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.082em;
  color: #fff;
  border: 1px solid;
  min-width: 95px;
  padding: 0.25rem 1.75rem;
  line-height: 1.4;
  margin-bottom: 0;
}
body.top-page .top_business .top_list ul li:nth-of-type(1) .content h3 {
  color: #f2afaf;
  border-left: 4px solid #f2afaf;
}
body.top-page .top_business .top_list ul li:nth-of-type(1) .content p.original-btn {
  background-color: #f2afaf;
  border-color: #f2afaf;
}
body.top-page .top_business .top_list ul li:nth-of-type(1):hover p.original-btn {
  color: #f2afaf;
  background-color: #fff;
}
body.top-page .top_business .top_list ul li:nth-of-type(2) .content h3 {
  color: #89af8a;
  border-left: 4px solid #89af8a;
}
body.top-page .top_business .top_list ul li:nth-of-type(2) .content p.original-btn {
  background-color: #89af8a;
  border-color: #89af8a;
}
body.top-page .top_business .top_list ul li:nth-of-type(2):hover p.original-btn {
  color: #89af8a;
  background-color: #fff;
}
body.top-page .top_business .top_list ul li:nth-of-type(3) .content h3 {
  color: #afa189;
  border-left: 4px solid #afa189;
}
body.top-page .top_business .top_list ul li:nth-of-type(3) .content p.original-btn {
  background-color: #afa189;
  border-color: #afa189;
}
body.top-page .top_business .top_list ul li:nth-of-type(3):hover p.original-btn {
  color: #afa189;
  background-color: #fff;
}
body.top-page .top_business .top_list ul li:nth-of-type(4) .content h3 {
  color: #af8c89;
  border-left: 4px solid #af8c89;
}
body.top-page .top_business .top_list ul li:nth-of-type(4) .content p.original-btn {
  background-color: #af8c89;
  border-color: #af8c89;
}
body.top-page .top_business .top_list ul li:nth-of-type(4):hover p.original-btn {
  color: #af8c89;
  background-color: #fff;
}
body.top-page .top_business .top_list ul li:nth-of-type(5) .content h3 {
  color: #af89a4;
  border-left: 4px solid #af89a4;
}
body.top-page .top_business .top_list ul li:nth-of-type(5) .content p.original-btn {
  background-color: #af89a4;
  border-color: #af89a4;
}
body.top-page .top_business .top_list ul li:nth-of-type(5):hover p.original-btn {
  color: #af89a4;
  background-color: #fff;
}
body.top-page .top_business .top_list ul li:nth-of-type(6) .content h3 {
  color: #7fc3c5;
  border-left: 4px solid #7fc3c5;
}
body.top-page .top_business .top_list ul li:nth-of-type(6) .content p.original-btn {
  background-color: #7fc3c5;
  border-color: #7fc3c5;
}
body.top-page .top_business .top_list ul li:nth-of-type(6):hover p.original-btn {
  color: #7fc3c5;
  background-color: #fff;
}
body.top-page .top_business .top_list ul li:hover .photo span {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}
@media screen and (max-width: 767px) {
  body.top-page .top_business .top_list {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 1rem;
  }
  body.top-page .top_business .top_list ul {
    margin-bottom: 3rem;
  }
  body.top-page .top_business .top_list ul li {
    width: 100%;
  }
}

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

お知らせ、インフォメーション

*******************************************************************************************/
/***************************/
/* 一覧表示（TOP・一覧共通） */
/***************************/
#news-list dl.headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #151515;
  text-decoration: none;
  border-bottom: 1px solid #888888;
  padding: 1.25rem 2.5rem;
  margin-bottom: 0;
}
#news-list dl.headline:first-of-type {
  border-top: 1px solid #888888;
}
#news-list dl.headline dt {
  white-space: nowrap;
}
#news-list dl.headline dd {
  margin: 0 0 0 2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#news-list dl.headline dd span.new {
  display: inline-block;
  font-size: 0.75rem;
  color: #ffffff;
  background-color: #FF7272;
  margin-right: 0.5rem;
  padding: 0 0.75rem;
}
#news-list dl.headline dd a {
  color: #888888;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  #news-list dl.headline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    padding: 1rem;
  }
  #news-list dl.headline dt {
    margin-left: 0;
    margin-bottom: 0.5rem;
  }
  #news-list dl.headline dd {
    margin-left: 0;
  }
}

/**************/
/* 一覧ページ */
/**************/
.page-item .page-link {
  color: #888888;
}
.page-item.active .page-link {
  background-color: #888888;
  border-color: #888888;
}
.page-item a.page-link[href="list.php?page="] {
  cursor: auto;
  pointer-events: none;
  color: #151515;
  background-color: #dddddd;
}

/*********/
/*詳細画面*/
/********/
body.news-page div.content em.content-title {
  display: block;
  border-bottom: 3px solid #888888;
  font-style: normal;
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
body.news-page div.content p.content-data {
  border-top: 1px solid #888888;
  border-bottom: 1px solid #888888;
  text-align: right;
  padding: 0.5rem 0;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

div.category-list {
  font-size: 12px;
  line-height: 32px;
  margin-left: 1rem;
  display: inline-block;
}

.category {
  text-align: center;
  display: inline-block;
  padding: 0 10px;
  text-decoration: none;
  border-width: 1px;
  border-style: solid;
  border-color: #888888;
  color: #888888;
}

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

メールフォーム

*******************************************************************************************/
body.form-page .custom-form {
  margin-top: -4.25rem;
  padding-top: 8.5rem;
}
body.form-page p.form_lead {
  margin-bottom: 3.25rem;
  letter-spacing: 0.092em;
}
body.form-page section.contactform_wrap {
  max-width: 950px;
  margin: 0 auto;
}
body.form-page section.contactform_wrap div.tel-number,
body.form-page section.contactform_wrap div.fax-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-bottom: 1px solid #CCCCCC;
  padding-top: 3rem;
  padding-bottom: 3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
body.form-page section.contactform_wrap div.tel-number h4,
body.form-page section.contactform_wrap div.fax-number h4 {
  font-size: 1.25rem;
  width: 100%;
  margin-bottom: 0;
}
body.form-page section.contactform_wrap div.tel-number p,
body.form-page section.contactform_wrap div.fax-number p {
  margin-bottom: 0;
}
body.form-page section.contactform_wrap div.tel-number p.type,
body.form-page section.contactform_wrap div.fax-number p.type {
  font-size: 1.25rem;
  font-weight: 500;
  border-bottom: 2px solid #000000;
  margin-right: 1em;
  letter-spacing: 0.092em;
}
body.form-page section.contactform_wrap div.tel-number p.number,
body.form-page section.contactform_wrap div.fax-number p.number {
  font-size: 2.5rem;
  font-weight: 500;
  margin-right: 2rem;
  letter-spacing: 0.092em;
}
body.form-page section.contactform_wrap div.tel-number p.supplementary,
body.form-page section.contactform_wrap div.fax-number p.supplementary {
  font-size: 1rem;
  letter-spacing: 0.092em;
}
@media screen and (max-width: 767px) {
  body.form-page section.contactform_wrap div.tel-number,
  body.form-page section.contactform_wrap div.fax-number {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  body.form-page section.contactform_wrap div.tel-number p.number,
  body.form-page section.contactform_wrap div.fax-number p.number {
    white-space: nowrap;
    font-size: 2rem;
  }
  body.form-page section.contactform_wrap div.tel-number p.supplementary,
  body.form-page section.contactform_wrap div.fax-number p.supplementary {
    width: 100%;
  }
}
body.form-page section.contactform_wrap section.input_wrap {
  width: 100%;
}
body.form-page section.contactform_wrap section.input_wrap .input_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-bottom: 1px solid #CCCCCC;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
body.form-page section.contactform_wrap section.input_wrap .input_group:first-of-type {
  border-top: 1px solid #CCCCCC;
}
body.form-page section.contactform_wrap section.input_wrap .input_group .input_label {
  display: block;
  width: 13em;
  font-size: 1.125rem;
  margin: 0;
  padding: 0;
}
body.form-page section.contactform_wrap section.input_wrap .input_group .input_label span.required {
  font-size: 1rem;
  color: #FF6A06;
  margin-left: 2em;
}
body.form-page section.contactform_wrap section.input_wrap .input_group .input_content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
body.form-page section.contactform_wrap section.input_wrap .input_group .input_content span.error_message {
  font-size: 1rem;
  color: #ff6A06;
  display: inline-block;
  font-weight: 600;
  margin-top: 0.5em;
}
body.form-page section.contactform_wrap section.input_wrap .input_group .input_content.name_set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
body.form-page section.contactform_wrap section.input_wrap .input_group .input_content.name_set div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
body.form-page section.contactform_wrap section.input_wrap .input_group .input_content.name_set div:first-of-type {
  padding-right: 1rem;
}
body.form-page section.contactform_wrap section.input_wrap .input_group .input_content.name_set div:last-of-type {
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  body.form-page section.contactform_wrap section.input_wrap .input_group .input_content.name_set div:first-of-type {
    padding-right: 0.5rem;
  }
  body.form-page section.contactform_wrap section.input_wrap .input_group .input_content.name_set div:last-of-type {
    padding-left: 0.5rem;
  }
}
body.form-page section.contactform_wrap section.input_wrap .input_group .input_content.address_set {
  width: 100%;
}
body.form-page section.contactform_wrap section.input_wrap .input_group .input_content.address_set div:first-of-type {
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  body.form-page section.contactform_wrap section.input_wrap .input_group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  body.form-page section.contactform_wrap section.input_wrap .input_group .input_label {
    width: auto;
    margin-bottom: 1rem;
  }
}
body.form-page section.contactform_wrap .submit_area {
  text-align: center;
  margin-top: 4.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body.form-page section.contactform_wrap .submit_area p {
  width: 100%;
  margin-bottom: 2.625rem;
}
body.form-page section.contactform_wrap .submit_area button + button {
  margin-left: 2rem;
}
body.form-page section.contactform_wrap .submit_area .original-btn.btn-big {
  padding: 2.125rem 1rem;
  font-size: 1.125rem;
  width: 46%;
  max-width: 400px;
}
@media screen and (max-width: 767px) {
  body.form-page section.contactform_wrap .submit_area .original-btn.btn-big {
    padding: 1rem;
  }
}

.input_item {
  display: block;
  width: 100%;
  height: 3.5em;
  padding: 1em 0.75rem;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #EBEBEB;
  background-clip: padding-box;
  border: none;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  outline: none;
}
.input_item::-webkit-input-placeholder {
  color: #AAAAAA;
}
.input_item::-moz-placeholder {
  color: #AAAAAA;
}
.input_item:-ms-input-placeholder {
  color: #AAAAAA;
}
.input_item::-ms-input-placeholder {
  color: #AAAAAA;
}
.input_item::placeholder {
  color: #AAAAAA;
}
.input_item.inline_parts {
  display: inline-block;
  width: auto;
}
@media screen and (max-width: 767px) {
  .input_item {
    height: 2.5em;
    padding: 0.5em;
  }
}

textarea.input_item {
  height: auto;
}

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

各種タブ

*******************************************************************************************/
/************************************
サイトマップテーブル
************************************/
table.sitemap-table {
  width: 100%;
}
table.sitemap-table th,
table.sitemap-table td {
  line-height: 1.2;
  border-top: none;
  border-bottom: 1px solid #cccccc;
  padding: 20px;
}
table.sitemap-table th {
  font-size: 1rem;
  width: 50px;
  white-space: nowrap;
  font-weight: normal;
}
table.sitemap-table a {
  color: #212529;
  text-decoration: none;
}
table.sitemap-table a:hover, table.sitemap-table a:active, table.sitemap-table a:focus {
  text-decoration: underline;
}
table.sitemap-table td {
  font-size: 1rem;
  font-weight: normal;
}
table.sitemap-table td a {
  display: inline-block;
  position: relative;
  padding-left: 10px;
}
table.sitemap-table td a:not(:last-child) {
  margin-bottom: 15px;
}
table.sitemap-table td a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  position: absolute;
  top: 0;
  left: 0;
  color: #00698C;
}
@media screen and (max-width: 767px) {
  table.sitemap-table {
    display: block;
  }
  table.sitemap-table tbody, table.sitemap-table tr, table.sitemap-table th, table.sitemap-table td {
    display: block;
  }
  table.sitemap-table th {
    width: auto;
    white-space: normal;
    border-bottom: none;
    padding: 15px 10px;
  }
  table.sitemap-table td {
    padding: 0 20px;
    margin: 10px;
  }
  table.sitemap-table td a {
    margin-bottom: 15px;
  }
}

/************************************
取扱製品一覧
************************************/
ul.item_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  padding: 0%;
  margin: 0 0 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem 30px;
}
ul.item_list li {
  width: calc(50% - 15px);
}
ul.item_list li a {
  display: block;
  text-align: center;
}
ul.item_list li a img {
  max-width: 100%;
  max-height: 400px;
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background-color: #ffffff;
}
ul.item_list li a:hover img {
  opacity: 0.7;
  background-color: #ffffff;
}
ul.item_list li .caption-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 15px;
  text-align: left;
  margin-bottom: 0;
}
ul.item_list li .caption-text {
  margin: 5px 0;
  line-height: 1.6;
  text-align: left;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  ul.item_list li {
    width: 100%;
  }
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}/*# sourceMappingURL=style.css.map */