@charset "UTF-8";
/*****************************************************************
コーポレートサイト ベースレイアウト設定ファイル（common.css）
      - Version: 1.0.0 (2017/09/04)
      - Create:  (2017/09/04)
      - Release: (yyyy/mm/dd)
*****************************************************************/
/*==========================================
/
/ 1■body
/ 2■common
/ 3■header
/ 4■breadcrumbs
/ 5■title
/ 6■footer
/ 7■slider(top)
/ 8■contents
/ 9■news
/ 10■faq
/ 11■free
/
==========================================*/
/******************************************************************
  1■body
*****************************************************************/
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  color: #333;
  font-weight: 500;
  font-size: 1.6rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

*, *:after, *:before {
  box-sizing: border-box;
}

.main {
  padding-top: 104px;
}

/******************************************************************
  2■common
*****************************************************************/
a {
  color: #352216;
  text-decoration: underline;
  transition: opacity 0.25s linear;
}
a:link {
  color: #352216;
  text-decoration: underline;
}
@media (min-width: 992px) {
  a:hover {
    color: #352216;
    text-decoration: none;
  }
}
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
a.link-arrow {
  display: inline-block;
  padding-left: 16px;
  position: relative;
}
a.link-arrow::before, a.link-arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  margin-right: 0;
  content: "";
  vertical-align: middle;
  opacity: 1;
}
a.link-arrow::before {
  left: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #352216;
  border-right: 1px solid #352216;
  transform: rotate(45deg);
}
a.blank::after {
  content: url("../img/icon-blank.png");
  margin-left: 6px;
}

@media (min-width: 992px) {
  section a:hover {
    opacity: 0.8;
  }
}
a[href^="tel:"] {
  cursor: default;
  text-decoration: none !important;
}
a[href^="tel:"]:hover {
  opacity: 1;
}

.btn-01, .btn-02 {
  display: table;
  min-width: 268px;
  margin: 32px auto;
}
.btn-01 a, .btn-02 a {
  display: table-cell;
  border-radius: 1.1em;
  text-align: center;
  vertical-align: middle;
  background-color: #402b24;
  padding: 0.6em;
  font-size: 2.4rem;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  .btn-01 a, .btn-02 a {
    font-size: 2rem;
  }
}

/******************************************************************
  3■header
*****************************************************************/
header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 104px;
  border-top: 4px solid #402b24;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
  background-color: rgba(255, 255, 255, 0.9);
  transition: height 0.1s ease;
}
header .header-logo {
  display: flex;
  align-items: center;
  height: 100px;
  margin: 0;
  font-size: 1.2rem;
  transition: height 0.2s ease;
}
@media (min-width: 992px) {
  header .header-logo img {
    width: 100%;
  }
}
header .row {
  position: relative;
}
header .nav {
  display: flex;
  justify-content: center;
}
header .nav li {
  color: #333;
  font-weight: bold;
  font-size: 1.6rem;
}
@media (min-width: 992px) {
  header .nav li {
    padding: 0 30px;
  }
}
header .nav li a {
  display: flex;
  align-items: center;
  height: 100px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}
header .nav li a span {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}
header .nav li a span.focus {
  border-bottom-color: #402b24;
  color: #402b24;
}
@media (min-width: 992px) {
  header .nav li a:hover {
    color: #402b24;
  }
  header .nav li a:hover span {
    border-bottom-color: #402b24;
  }
}
header .nav li.contact-btn {
  width: auto;
  text-align: right;
}
header .nav li.contact-btn .contact-btn-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 0 20px 0;
  border-radius: 4px;
  background-color: #402b24;
  color: #fff;
  transition: opacity 0.2s ease;
}
header .nav li.contact-btn a {
  padding-bottom: 6px;
}
@media (min-width: 992px) {
  header .nav li.contact-btn a:hover {
    border-bottom: none;
  }
  header .nav li.contact-btn a:hover .contact-btn-bg {
    opacity: 0.8;
  }
}
header .nav .drawer-menu, header .nav .drawer-menu span {
  display: none;
}
@media (min-width: 992px) {
  header.mini-header {
    height: 56px;
    transition: all 0.2s ease;
  }
  header.mini-header .header-logo {
    height: 52px;
  }
  header.mini-header .header-logo img {
    width: 56%;
    transition: width 0.2s ease;
  }
  header.mini-header nav li a {
    height: 52px;
    padding: 15px 0 7px;
    transition: all 0.2s ease;
  }
  header.mini-header nav li.contact-btn a {
    height: 52px;
    padding: 7px 0;
    transition: all 0.2s ease;
  }
}

@media print {
  header {
    position: absolute;
  }
}
@media (max-width: 991px) {
  .main {
    padding-top: 54px;
  }
  header {
    height: 54px;
    transition: all 0.2s ease;
  }
  header .container {
    width: 100%;
    padding: 0;
  }
  .sm-header {
    width: 100%;
    padding: 0 24px;
    background-color: #fff;
  }
  header .header-logo {
    height: 50px;
  }
  .header-logo img {
    width: auto;
    height: 20px;
  }
  ul.nav {
    display: none;
    padding: 0 28px;
  }
  .drawer-menu {
    display: block;
    position: absolute;
    top: 16px;
    right: 24px;
    width: 24px;
    height: 17px;
    cursor: pointer;
  }
  .drawer-menu span {
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    box-sizing: border-box;
    background-color: #402b24;
    transition: all 0.4s;
  }
  .drawer-menu span:nth-of-type(1) {
    top: 0;
  }
  .drawer-menu span:nth-of-type(2) {
    top: 8px;
  }
  .drawer-menu span:nth-of-type(3) {
    bottom: 0;
  }
  header.open {
    height: 100%;
    background-color: #e9e0da;
    transition: all 0.2s ease;
  }
  header.open .drawer-menu span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  header.open .drawer-menu span:nth-of-type(2) {
    opacity: 0;
  }
  header.open .drawer-menu span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }
  header.open ul.nav {
    display: block;
  }
  header.open ul.nav li {
    display: block;
    width: 100%;
    border-bottom: 1px solid #ccc;
  }
  header.open ul.nav li a {
    position: relative;
    height: auto;
    padding: 16px 0;
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: left;
  }
  header.open ul.nav li a span {
    padding: 0;
  }
  header.open ul.nav li a::before {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    content: "";
  }
  header.open ul.nav .contact-btn {
    border-bottom: none;
  }
  header.open ul.nav .contact-btn a {
    display: flex;
    justify-content: center;
    margin: 16px 0;
  }
  header.open ul.nav .contact-btn a .contact-btn-bg {
    width: 144px;
    height: 48px;
  }
  header.open ul.nav .contact-btn a::before {
    content: none;
  }
}
/******************************************************************
  4■breadcrumbs
*****************************************************************/
.breadcrumbs {
  padding: 4px 0;
  background-color: #f1f1f1;
  margin-bottom: 8px;
}
.breadcrumbs li {
  display: inline-block;
  position: relative;
  margin-right: 16px;
  padding-right: 16px;
  font-size: 1.4rem;
  color: #999;
}
.breadcrumbs li::before {
  content: "";
  position: absolute;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  top: 50%;
  right: 0;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
}
.breadcrumbs li:last-child::before {
  content: none;
}
@media (max-width: 767px) {
  .breadcrumbs {
    margin-bottom: 32px;
  }
  .breadcrumbs .container {
    overflow-x: scroll;
  }
  .breadcrumbs .container ul {
    overflow: hidden;
    display: table;
    width: initial;
    width: auto;
  }
  .breadcrumbs .container ul li {
    display: table-cell;
    white-space: nowrap;
    padding-left: 16px;
  }
  .breadcrumbs .container ul li:first-child {
    padding-left: 0;
  }
}

/******************************************************************
  5■title
*****************************************************************/
.main-img {
  height: 700px;
  position: relative;
}
@media (max-width: 767px) {
  .main-img {
    height: 432px;
  }
}
.main-img .kv-img {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
}

.img-text {
  color: #402b24;
  width: 100%;
  text-align: center;
  font-size: 4vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .img-text {
    font-size: 8vw;
  }
}
.img-text.dark-color {
  color: #333;
  text-shadow: 0px 0px 3px #fff;
}
.img-text.bright-color {
  color: #fff;
  text-shadow: 0px 0px 3px #333;
}

.title-box {
  height: 344px;
  position: relative;
  overflow: hidden;
  background-color: #9f9894;
}

.title-bg {
  opacity: 0.7;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
}

.title-text {
  color: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 0;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.title-text-upper {
  font-size: 4rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .title-text-upper {
    font-size: 3rem;
  }
}
.title-text-lower {
  font-size: 2.4rem;
  padding-top: 24px;
}
@media (max-width: 767px) {
  .title-text-lower {
    font-size: 2rem;
  }
}

.contents-ttl {
  position: relative;
  font-weight: bold;
  text-align: center;
  font-size: 2.8rem;
  line-height: 1.25;
  padding-bottom: 16px;
  margin-bottom: 48px;
  color: #333;
}
@media (max-width: 767px) {
  .contents-ttl {
    font-size: 2rem;
    margin-bottom: 24px;
  }
}
.contents-ttl::after {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: 0;
  background-color: #402b24;
  width: 104px;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
}
.contents-ttl-sub {
  font-size: 2.4rem;
  color: #402b24;
  line-height: 1.25;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .contents-ttl-sub {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .contents-ttl.ttl-left {
    text-align: left;
  }
  .contents-ttl.ttl-left::after {
    left: 0;
    transform: translateX(0);
  }
}
/******************************************************************
  6■footer
*****************************************************************/
footer section {
  background-color: #222;
  margin: 0;
  color: #FFF;
}
footer section a {
  color: #ccc;
}
footer section a:link, footer section a:visited {
  text-decoration: none;
  color: #ccc;
}
@media (min-width: 992px) {
  footer section a:hover {
    color: #fff;
    opacity: 1;
  }
}

.footer-nav-title {
  border-bottom: 1px solid #999;
  font-size: 1.6rem;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .footer-nav-title {
    font-size: 1.5rem;
    padding: 16px 32px 16px 0;
    margin-bottom: 0;
    position: relative;
  }
  .footer-nav-title .trigger {
    position: absolute;
    display: block;
    width: 15px;
    height: 15px;
    right: 8px;
    top: 18px;
    cursor: pointer;
  }
  .footer-nav-title .trigger::before, .footer-nav-title .trigger::after {
    content: "";
    position: absolute;
    display: block;
    background-color: #fff;
    width: 15px;
    height: 1px;
    top: 7px;
    right: 0;
  }
  .footer-nav-title .trigger::after {
    transition: all 0.4s;
    width: 1px;
    height: 15px;
    top: 0;
    right: 7px;
  }
  .footer-nav-title .trigger.op::after {
    transform: rotate(-90deg);
  }
}

.footer-sub-menu li {
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .footer-sub-menu li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .footer-sub-menu {
    display: none;
    padding-left: 16px;
    padding-bottom: 8px;
    font-size: 1.3rem;
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  footer dl {
    border-bottom: 1px solid #999;
  }
  footer dl .footer-nav-title {
    border-bottom: none;
  }
}
@media (min-width: 768px) {
  dd.footer-sub-menu {
    display: block !important;
  }
}
.copyright {
  text-align: center;
  margin: 64px 0 0;
}

footer .ga-pdf {
  padding: 16px 0 0 0;
}

.footer-logo {
  width: 280px;
  margin: 0 auto 16px;
  text-align: center;
}
@media (max-width: 767px) {
  .footer-logo {
    width: 200px;
  }
}
.footer-logo img {
  width: 100%;
}

.pagetop {
  position: fixed;
  right: 20px;
  bottom: 60px;
  z-index: 100;
  display: none;
}
.pagetop a {
  display: block;
  position: relative;
  right: 0;
  background: #402b24;
  width: 40px;
  height: 40px;
  border-radius: 4px;
}
.pagetop a::before {
  content: "";
  position: absolute;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 16px;
  left: 50%;
  margin-left: -8px;
  width: 16px;
  height: 16px;
  transform: rotate(315deg);
}

.sns-box {
  font-size: 0;
}
.sns-box li {
  width: 40px;
  display: inline-block;
  margin-right: 16px;
  height: 40px;
}
.sns-box li a {
  display: block;
}
.sns-box li img {
  width: 100%;
}
@media (max-width: 767px) {
  .sns-box {
    margin-top: 40px;
    text-align: center;
  }
  .sns-box li {
    margin: 0 8px;
  }
}

/******************************************************************
  7■slider(top)
*****************************************************************/
.mainimg {
  position: relative;
}
.mainimg .no-link {
  cursor: default;
}
.mainimg img {
  width: 100%;
}
.mainimg img.object-fit-img {
  height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media (max-width: 767px) {
  .mainimg img.object-fit-img {
    height: 432px;
  }
}
.mainimg .slick-dots li {
  margin: 0 8px;
}
.mainimg .slick-dots li button::before {
  font-size: 18px;
}

/******************************************************************
  8■contents
*****************************************************************/
@media (min-width: 768px) {
  .pcHdn {
    display: none;
  }
}

@media (max-width: 767px) {
  .spHdn {
    display: none;
  }
}

section {
  padding: 64px 0 32px;
}
@media (max-width: 767px) {
  section {
    padding: 32px 0 40px;
  }
}
section p {
  line-height: 1.5;
}
section.section-colored {
  background-color: #e9e0da;
  margin-bottom: 0;
}
section.section-image, section.section-image-dark {
  background-position: center center;
  background-size: cover;
  position: relative;
}
section.section-image::before, section.section-image-dark::before {
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  width: 100%;
  height: 100%;
  background-color: #e9e0da;
  opacity: 0.8;
  z-index: 1;
}
section.section-image .container, section.section-image-dark .container {
  position: relative;
  z-index: 10;
}
section.recruit {
  color: #fff;
}
section.recruit::before {
  background-color: #333;
}
section.recruit .contents-ttl {
  color: #fff;
}
section.recruit .contents-ttl::after {
  background-color: #fff;
}
section.recruit .contents-ttl-sub {
  color: #fff;
}
section.contact {
  background-color: #333;
  position: relative;
  color: #fff;
}
section.contact::before {
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  width: 100%;
  height: 100%;
  background-color: #402b24;
  opacity: 0.4;
  z-index: 0;
}
section.contact .contents-ttl {
  color: #fff;
}
section.contact .contents-ttl::after {
  background-color: #fff;
}
section.contact .tel-number {
  font-size: 2.8rem;
  font-weight: normal;
  vertical-align: middle;
}
section.contact .contact-info {
  margin: 8px auto;
}
section.contact a, section.recruit a {
  color: #fff;
}
section.contact a:link, section.contact a:visited, section.recruit a:link, section.recruit a:visited {
  text-decoration: underline;
  color: #fff;
}
section.contact a:hover, section.recruit a:hover {
  text-decoration: none;
}
section.contact .btn-02 a, section.recruit .btn-02 a {
  position: relative;
  letter-spacing: 1px;
  border-radius: 0;
  padding-left: 4px;
  background-color: transparent;
  border: 2px solid #fff;
  font-weight: normal;
  color: #fff;
}
section.contact .btn-02 a:link, section.contact .btn-02 a:visited, section.recruit .btn-02 a:link, section.recruit .btn-02 a:visited {
  text-decoration: none;
}
@media (min-width: 992px) {
  section.contact .btn-02 a:hover, section.recruit .btn-02 a:hover {
    background-color: #fff;
    color: #402b24;
    opacity: 1;
  }
  section.contact .btn-02 a:hover::before, section.recruit .btn-02 a:hover::before {
    border-color: #402b24;
  }
}
section.contact .btn-02 a::before, section.contact .btn-02 a::after, section.recruit .btn-02 a::before, section.recruit .btn-02 a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  margin-right: 0;
  content: "";
  vertical-align: middle;
  opacity: 1;
}
section.contact .btn-02 a::before, section.recruit .btn-02 a::before {
  right: 24px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

.row.flx .flx-box {
  background-clip: content-box;
}
.row.flx .flx-box .flx-box-inner {
  padding: 32px 16px;
}

@media (min-width: 768px) {
  .row.flx {
    display: flex;
  }
}
.m-b-sm {
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .m-b-sm {
    margin-bottom: 8px;
  }
}

.m-b-md {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .m-b-md {
    margin-bottom: 16px;
  }
}

.m-b-lg {
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .m-b-lg {
    margin-bottom: 32px;
  }
}

@media (min-width: 768px) {
  .sm-right-space {
    padding-right: 3%;
  }
  .sm-left-space {
    padding-left: 3%;
  }
}
.font-size-xs {
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .font-size-xs {
    font-size: 1rem;
  }
}

.font-size-sm {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .font-size-sm {
    font-size: 1rem;
  }
}

.font-size-md {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .font-size-md {
    font-size: 1.2rem;
  }
}

.font-size-lg {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .font-size-lg {
    font-size: 1.6rem;
  }
}

.font-size-xl {
  font-size: 5rem;
}
@media (max-width: 767px) {
  .font-size-xl {
    font-size: 3rem;
  }
}

.text-indent {
  text-indent: -1em;
  padding-left: 1em;
}

.lead {
  line-height: 2;
}

.article {
  line-height: 2;
}

.valign-m {
  vertical-align: middle;
}

.emphasis {
  font-weight: bold;
}
.emphasis-colored {
  color: #402b24;
}
.emphasis-boldcolored {
  font-weight: bold;
  color: #402b24;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.h-line {
  border-left: 4px solid #402b24;
  padding-left: 8px;
}

.label {
  color: #fff;
  background-color: #402b24;
  padding: 4px 8px;
}

.blockquote {
  position: relative;
  margin: 0 0 16px;
  padding: 0;
  z-index: 1;
}
.blockquote p {
  position: relative;
  z-index: 3;
  padding: 16px;
  font-size: 2.4rem;
  color: #402b24;
}
.blockquote::before, .blockquote::after {
  content: "“";
  font-size: 60px;
  line-height: 0.8em;
  font-family: "Times New Roman", "ＭＳ Ｐゴシック", sans-serif;
  color: #402b24;
  position: absolute;
  z-index: 2;
  opacity: 0.5;
}
.blockquote::before {
  left: 0;
  top: 0;
}
.blockquote::after {
  content: "”";
  line-height: 0em;
  right: 0;
  bottom: 0;
}

.colored-box {
  background-color: #e9e0da;
  border: 1px solid #402b24;
  padding: 16px;
}

.bg-gray {
  background-color: #ccc;
}

.bg-white {
  background-color: #fff;
}

.bg-colored {
  background-color: #e9e0da;
}

.no-wrap {
  white-space: nowrap;
}

.inline-block {
  display: inline-block;
}

/* リスト関連 */
.dot-list li {
  position: relative;
  padding-left: 15px;
  margin: 16px 0;
}
.dot-list li::after {
  color: #333;
  content: "・";
  left: 0;
  position: absolute;
  top: 0;
}
.dot-list.lh-sm li {
  margin: 8px 0;
}

.check-list li {
  margin: 16px 0 16px 24px;
  position: relative;
  padding-left: 4px;
}
@media (max-width: 767px) {
  .check-list li {
    margin: 8px 0 8px 24px;
  }
}
.check-list li::after {
  opacity: 0.8;
  display: block;
  content: "";
  position: absolute;
  top: 0.2em;
  left: -1.4em;
  width: 16px;
  height: 10px;
  border-left: 4px solid #402b24;
  border-bottom: 4px solid #402b24;
  transform: rotate(-45deg);
}
.check-list.lh-sm li {
  margin: 8px 0 8px 24px;
}

/* 画像関連 */
.img-fluid {
  width: 100%;
  height: auto;
}

.img-radius {
  border-radius: 4px;
}

.img-radius-round {
  border-radius: 50%;
}

.img-cadre {
  border: 1px solid #ccc;
  padding: 8px;
}

.img-link {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  opacity: 1;
}
.img-link figure {
  top: 0;
  left: 0;
  background-color: #333;
}
.img-link figure img {
  width: 100%;
  opacity: 0.4;
  transition: transform 0.2s ease;
}
@media (min-width: 992px) {
  .img-link:hover figure img {
    transform: scale(1.08);
  }
}
.img-link .img-link-text {
  position: absolute;
  top: 16px;
  left: 16px;
  color: #fff;
}
.img-link .img-link-text-ttl {
  font-size: 2.8rem;
}
.img-link .box-arrow::before, .img-link .box-arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  margin-right: 0;
  content: "";
  vertical-align: middle;
  opacity: 1;
}
.img-link .box-arrow::before {
  right: 24px;
  width: 16px;
  height: 16px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

.fukidashi-top {
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding: 8px;
  margin: 16px 0 0;
  border: 1px solid #999;
}
.fukidashi-top::before, .fukidashi-top::after {
  border: 10px solid transparent;
  border-bottom-color: #fff;
  border-top-width: 0;
  position: absolute;
  top: -9px;
  content: " ";
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  z-index: 1;
}
.fukidashi-top::after {
  border-bottom-color: #999;
  top: -10px;
  z-index: 0;
}

/* テーブル関連 */
@media (min-width: 768px) {
  .table-list dl {
    display: table;
    width: 100%;
  }
  .table-list dt, .table-list dd {
    display: table-cell;
    vertical-align: middle;
    border-right: 1px solid #bbb;
    border-top: 1px solid #bbb;
    padding: 24px;
  }
  .table-list dt {
    width: 25%;
    text-align: center;
    position: relative;
  }
  .table-list dd {
    display: table-cell;
    width: auto;
    border-right: none;
  }
  .table-list dl:first-child dt, .table-list dl:first-child dd {
    border-top: none;
  }
  .table-list.no-v-line dt, .table-list.no-v-line dd {
    border-right: none;
  }
  .table-list.time-line dt {
    color: #402b24;
  }
  .table-list.time-line dt, .table-list.time-line dd {
    vertical-align: top;
    border-top: none;
  }
  .table-list.time-line dt::after {
    content: "";
    height: 8px;
    width: 8px;
    background-color: #402b24;
    position: absolute;
    right: -5px;
    top: 32px;
    border-radius: 4px;
  }
  .table-list.time-line dd p {
    margin-top: 8px;
  }
}
@media (max-width: 767px) {
  .table-list dt, .table-list dd {
    padding: 8px;
  }
  .table-list dt {
    background-color: #e9e0da;
  }
  .table-list dd {
    padding-bottom: 16px;
  }
  .table-list dl:first-child dt, .table-list dl:first-child dd {
    border-top: none;
  }
  .table-list.time-line dt {
    color: #402b24;
    background-color: transparent;
    position: relative;
    font-weight: bold;
  }
  .table-list.time-line dt, .table-list.time-line dd {
    vertical-align: top;
    border-top: none;
    border-left: 1px solid #bbb;
    padding-left: 16px;
  }
  .table-list.time-line dt::after {
    content: "";
    height: 7px;
    width: 7px;
    background-color: #402b24;
    position: absolute;
    left: -4px;
    top: 13px;
    border-radius: 4px;
  }
  .table-list.time-line dd {
    padding-top: 0;
  }
  .table-list.time-line dd p {
    margin: 8px 0 0 8px;
  }
}
/* その他 */
a.map-link {
  display: inline-block;
  margin-top: 14px;
  padding: 11.5px 37px;
  background-color: #402b24;
  vertical-align: middle;
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
}
a.map-link::after {
  content: url(../img/common/icon-blank-white.png);
  margin-left: 10px;
}

.g-map {
  border: 0;
  width: 100%;
  height: 320px;
}

.map-responsive {
  position: relative;
  width: 100%;
}
.map-responsive::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
@media (max-width: 767px) {
  .map-responsive::before {
    padding-top: 100%;
  }
}
.map #map-canvas {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: auto;
  height: auto;
}

.anchor {
  margin-top: -72px;
  padding-top: 72px;
}
@media (max-width: 767px) {
  .anchor {
    margin-top: -64px;
    padding-top: 64px;
  }
}

/******************************************************************
  9■news
*****************************************************************/
.news-list ul {
  margin-bottom: 32px;
}
.news-list ul li {
  border-bottom: 1px solid #bbb;
}
.news-list ul li a {
  display: table;
  text-decoration: none !important;
  width: 100%;
  padding: 8px 0;
}
@media (min-width: 768px) {
  .news-list ul li a {
    font-size: 1.4rem;
    height: 96px;
  }
  .news-list ul li a:hover {
    background-color: #e9e0da;
  }
}
.news-list ul li a .news-date, .news-list ul li a .news-category, .news-list ul li a .news-title {
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .news-list ul li a .news-date, .news-list ul li a .news-category, .news-list ul li a .news-title {
    display: inline-block;
    margin: 4px 0;
  }
}
@media (min-width: 768px) {
  .news-list ul li a .news-date {
    width: 136px;
  }
  .news-list ul li a .news-category {
    width: 168px;
    padding-right: 24px;
  }
  .news-list ul li a .news-category .category-frame {
    width: 100%;
    text-align: center;
  }
}
.news-list ul li a .news-date {
  color: #402b24;
  text-align: center;
}
@media (max-width: 767px) {
  .news-list ul li a .news-date {
    text-align: left;
    margin-right: 24px;
  }
}
.news-list ul li a .news-category {
  margin: 4px 0;
}
.news-list ul li a .news-category .category-frame {
  border: 1px solid #bbb;
  padding: 2px 8px;
  background-color: #fff;
  display: inline-block;
}
@media (max-width: 767px) {
  .news-list ul li a .news-title {
    display: block;
  }
}
.news-list ul li a .news-text {
  width: 100%;
  color: #333;
}
@media (min-width: 768px) {
  .news-list ul li a .news-text {
    position: relative;
    display: inline-block;
    padding-right: 56px;
  }
  .news-list ul li a .news-text::before, .news-list ul li a .news-text::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 24px;
    margin: auto;
    margin-right: 0;
    content: "";
    vertical-align: middle;
    opacity: 1;
  }
  .news-list ul li a .news-text::before {
    right: 24px;
    width: 12px;
    height: 12px;
    border-top: 1px solid #352216;
    border-right: 1px solid #352216;
    transform: rotate(45deg);
  }
}
@media (max-width: 767px) {
  .news-list ul li a {
    position: relative;
    display: inline-block;
    padding-right: 24px;
  }
  .news-list ul li a::before, .news-list ul li a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 8px;
    margin: auto;
    margin-right: 0;
    content: "";
    vertical-align: middle;
    opacity: 1;
  }
  .news-list ul li a::before {
    right: 8px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #352216;
    border-right: 1px solid #352216;
    transform: rotate(45deg);
  }
}

.table-news-list .news-box {
  width: 100%;
  border-top: 1px solid #bbb;
}
.table-news-list .news-box a {
  display: block;
  padding: 24px 16px;
  text-decoration: none;
}
@media (max-width: 767px) {
  .table-news-list .news-box a {
    padding: 16px 0;
  }
}
.table-news-list .news-box a h3 {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 16px;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .table-news-list .news-box a h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
}
.table-news-list .news-box:first-child {
  border-top: none;
}

.news-info {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .news-info {
    margin-bottom: 8px;
    font-size: 1.3rem;
  }
}
.news-info .news-date {
  margin-right: 16px;
}
.news-info .category-frame {
  border: 1px solid #bbb;
  padding: 2px 8px;
  background-color: #fff;
  display: inline-block;
  text-align: center;
  min-width: 8em;
}

.news-img {
  max-width: 500px;
}

/******************************************************************
10■faq
*****************************************************************/
.faq-container {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.faq-q {
  display: block;
  position: relative;
  margin: 0;
  padding: 20px 60px;
  background: #f1f1f1;
  cursor: pointer;
}
@media (max-width: 767px) {
  .faq-q {
    padding: 15px 35px 10px;
  }
}
.faq-q:not(:first-child) {
  margin-top: 20px;
}
.faq-q:before {
  content: "Q";
  top: 18px;
}
@media (max-width: 767px) {
  .faq-q:before {
    top: 15px;
  }
}
.faq-q:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 38%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(135deg);
}
@media (max-width: 767px) {
  .faq-q:after {
    right: 10px;
  }
}
.faq-q.open:after {
  transform: rotate(-45deg);
  top: 45%;
  border-color: #fff;
}
@media (min-width: 992px) {
  .faq-q:hover:after {
    border-color: #fff;
  }
}

.faq-a {
  display: none;
  padding: 30px 20px 30px 60px;
  position: relative;
  background-color: #f1f1f1;
}
@media (max-width: 767px) {
  .faq-a {
    padding: 20px 10px 20px 35px;
  }
}
.faq-a:before {
  content: "A";
  top: 28px;
}
@media (max-width: 767px) {
  .faq-a:before {
    top: 20px;
  }
}

.faq-q:before, .faq-a:before {
  position: absolute;
  left: 20px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 767px) {
  .faq-q:before, .faq-a:before {
    left: 10px;
    font-size: 1.8rem;
  }
}

@media (min-width: 992px) {
  .faq-container .faq-q:hover {
    background-color: #402b24;
    color: white;
  }
}

.faq-container .faq-q:active,
.faq-container .faq-q.open {
  background-color: #402b24;
  color: white;
}

.faq-container .faq-q:hover i:before,
.faq-container .faq-q:hover i:active,
.faq-container .faq-q.open i {
  color: #333;
}

/******************************************************************
  11■free(その他、独自のスタイルは以下に記述してください)
*****************************************************************/
header {
  border-top: 4px solid #0099FF;
  box-shadow: none;
}
header .container {
  width: 100%;
}
@media (min-width: 992px) {
  header .container .header-inner {
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 991px) {
  header .container .header-inner .sm-header {
    padding: 0 14px 0 12px;
  }
}
header .container .header-inner .header-logo {
  max-width: 166px;
  justify-content: center;
  margin: 0 25px;
}
@media (max-width: 991px) {
  header .container .header-inner .header-logo {
    max-width: 94px;
    margin: 0;
  }
  header .container .header-inner .header-logo img {
    height: 37px;
  }
}
header .container .header-inner .nav li {
  font-size: 1.8rem;
  font-weight: normal;
}
header .container .header-inner .nav li a:hover {
  color: #0099FF;
}
header .container .header-inner .nav li a:hover span {
  border-bottom-color: #0099FF;
}
header .container .header-inner .nav li a span.focus {
  border-bottom-color: #0099FF;
}
header .container .header-inner .nav li.contact-btn .contact-btn-bg {
  background-color: #0099FF;
}

@media (max-width: 991px) {
  header.open {
    background-color: #0099FF;
  }
  header.open ul.nav li {
    border-bottom: 1px solid #FFF;
  }
  header.open ul.nav li a {
    color: #FFF;
  }
  header.open ul.nav li a::before {
    border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
  }
  header.open ul.nav li a:hover {
    color: #FFF !important;
  }
  header.open ul.nav li a span {
    font-weight: bold;
  }
  header.open ul.nav li a span.focus {
    color: #FFF;
    border-bottom: none;
  }
  header.open ul.nav li.contact-btn .contact-btn-bg {
    color: #0099FF;
    background-color: #FFF !important;
  }
  header.open ul.nav .contact-btn a .contact-btn-bg {
    width: 100%;
  }
  .drawer-menu span {
    background-color: #0099FF;
  }
}
.breadcrumbs {
  margin-bottom: 0;
}

section {
  padding: 100px 0;
}
@media (max-width: 767px) {
  section {
    padding: 60px 0;
  }
}
section p, section li {
  line-height: 1.75;
  letter-spacing: 0.075em;
}

.contents-ttl-01 {
  position: relative;
  font-weight: bold;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.25;
  margin-bottom: 32px;
  color: #0099FF;
}
@media (max-width: 767px) {
  .contents-ttl-01 {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}
.contents-ttl-01 span {
  display: block;
  padding: 4px 0 0;
  letter-spacing: 0.5rem;
}
.contents-ttl-01 figure {
  padding-bottom: 12px;
}
.contents-ttl-01 figure img {
  height: 47px;
}
@media (max-width: 767px) {
  .contents-ttl-01 figure img {
    height: 30px;
  }
}

.contents-ttl-sub-01 {
  font-size: 2.8rem;
  color: #333;
  line-height: 1.5;
  padding: 7px 0;
}
@media (max-width: 767px) {
  .contents-ttl-sub-01 {
    font-size: 1.8rem;
    padding: 5px 0;
  }
}

.contents-ttl-02 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #FFF;
  background: #0099FF;
  padding: 14px 16px;
}
@media (max-width: 767px) {
  .contents-ttl-02 {
    font-size: 2rem;
    padding: 7px 16px;
  }
}

.contents-ttl-sub-02 {
  font-size: 1.8rem;
  font-weight: bold;
  background: #E6F5FF;
  padding: 11px 16px;
}
@media (max-width: 767px) {
  .contents-ttl-sub-02 {
    font-size: 1.8rem;
    padding: 6px 16px;
  }
}

.lead-01 {
  font-size: 1.8rem;
  line-height: 1.75;
  padding: 7px 0;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .lead-01 {
    text-align: left;
    font-size: 1.6rem;
    line-height: 1.5;
    padding: 4px 0;
  }
}

.lead-img .col-sm-4,
.lead-img .col-sm-6 {
  padding: 0;
}

.row.lead-img {
  margin-left: -8px;
  margin-right: -8px;
}

.btn-03 {
  display: table;
  min-width: 360px;
  margin: 60px auto 0;
}
@media (max-width: 767px) {
  .btn-03 {
    min-width: 100%;
    margin: 32px auto 0;
  }
}
.btn-03 a {
  display: table-cell;
  border-radius: 50vh;
  text-align: center;
  vertical-align: middle;
  background-color: #0099FF;
  padding: 3rem;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  letter-spacing: 2px;
  position: relative;
}
@media (max-width: 767px) {
  .btn-03 a {
    padding: 2rem;
    font-size: 1.8rem;
  }
}
.btn-03 a .arrow-right {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 1.2rem;
  height: 1.2rem;
  transform: translateX(-25%) rotate(45deg);
  position: absolute;
  right: 32px;
  margin-top: 3px;
  border-top: #fff 2px solid;
  border-right: #fff 2px solid;
}

.m-b-8 {
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .m-b-8 {
    margin-bottom: 4px;
  }
}

.m-b-24 {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .m-b-24 {
    margin-bottom: 16px;
  }
}

.m-b-40 {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .m-b-40 {
    margin-bottom: 20px;
  }
}

.m-b-48 {
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .m-b-48 {
    margin-bottom: 24px;
  }
}

.img-radius-16 {
  border-radius: 16px;
}

.img-radius-24 {
  border-radius: 24px;
}
@media (max-width: 767px) {
  .img-radius-24 {
    border-radius: 16px;
  }
}

.img-radius-40 {
  border-radius: 40px;
}

.image-box .image-box-area {
  width: 100%;
  height: 360px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  .image-box .image-box-area {
    height: 200px;
    background-attachment: scroll;
  }
}
.image-box .image-box-area.n-01 {
  background-image: url(../img/top/bg-ph-001.jpg);
  position: relative;
  z-index: 100;
}
.image-box .image-box-area.n-02 {
  background-image: url(../img/about/bg-ph-001.jpg);
  position: relative;
  z-index: 100;
}
.image-box .image-box-area.n-03 {
  background-image: url(../img/maintenance/bg-ph-001.jpg);
  position: relative;
  z-index: 100;
}

.appeal-box {
  padding: 40px;
  background: #FFFAE2;
  border: 8px solid #FFED91;
  box-sizing: border-box;
  text-align: center;
}
.appeal-box p {
  color: #5C3C35;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 7px 0;
}
@media (max-width: 767px) {
  .appeal-box p {
    font-size: 1.6rem;
  }
}

#index .mainimg {
  background-color: #E6F5FF;
}
@media (max-width: 767px) {
  #index .mainimg {
    height: 568px;
  }
}
#index .mainimg img.object-fit-img {
  margin-right: auto;
  height: 800px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 89%;
  border-radius: 0 0 120px 0;
}
@media (max-width: 991px) {
  #index .mainimg img.object-fit-img {
    height: 700px;
  }
}
@media (max-width: 767px) {
  #index .mainimg img.object-fit-img {
    height: 432px;
    width: 100%;
    border-radius: 0 0 40px 0;
  }
}
#index .mainimg .catch-box {
  position: absolute;
  top: 205px;
  right: 7.2%;
  width: 706px;
}
@media (max-width: 991px) {
  #index .mainimg .catch-box {
    width: 606px;
  }
}
@media (max-width: 767px) {
  #index .mainimg .catch-box {
    top: 337px;
    right: 8.5%;
    width: 339px;
  }
}
@media (max-width: 375px) {
  #index .mainimg .catch-box {
    width: 90.4%;
  }
}
#index .flx .flx-box .flx-box-inner {
  padding: 32px 8px 0;
}
@media (max-width: 767px) {
  #index .flx .flx-box .flx-box-inner {
    padding: 16px 8px 0;
  }
}
#index .news-list {
  background-color: #E6F5FF;
  padding: 100px 0 0;
}
@media (max-width: 767px) {
  #index .news-list {
    padding: 60px 0 0;
  }
}
#index .news-list .news-box {
  background-color: #FFF;
  border-radius: 40px;
  padding: 80px;
}
@media (max-width: 767px) {
  #index .news-list .news-box {
    border-radius: 16px;
    padding: 40px 15px;
  }
}
#index .news-list .news-box .contents-ttl-01 {
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  #index .news-list .news-box ul li a {
    font-size: 1.3rem;
  }
}
#index .news-list .news-box ul li a:hover {
  background-color: #E6F5FF;
}
#index .news-list .news-box ul li a .news-date {
  color: #0099FF;
}
#index .news-list .news-box ul li a .news-category .category-frame {
  color: #FFF;
  border: 1px solid #014699;
  background-color: #014699;
  border-radius: 4px;
}
#index .index-about {
  background-color: #E6F5FF;
}
@media (max-width: 767px) {
  #index .index-about .lead-img img {
    aspect-ratio: 345/210;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#index .index-maintenance {
  background: top left/360px no-repeat url(../img/top/maintenance-bg-left.png), bottom right/360px no-repeat url(../img/top/maintenance-bg-right.png);
}
@media (max-width: 991px) {
  #index .index-maintenance {
    background: #FFF;
  }
}
@media (max-width: 767px) {
  #index .index-maintenance .contents-ttl-01 figure img {
    height: 28px;
  }
}
@media (max-width: 767px) {
  #index .index-maintenance .lead-img img {
    aspect-ratio: 345/210;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#index .index-product {
  background: no-repeat url(../img/top/product-bg.jpg);
  background-size: cover;
}
#index .index-product .contents-ttl-01,
#index .index-product .contents-ttl-sub-01,
#index .index-product .lead-01 {
  color: #FFF;
}
@media (max-width: 767px) {
  #index .index-product .lead-img img {
    aspect-ratio: 345/210;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#index .index-product .btn-03 a {
  background-color: #FFF;
  color: #014699;
}
#index .index-product .btn-03 a .arrow-right {
  border-top: #014699 2px solid;
  border-right: #014699 2px solid;
}
#index .index-product .btn-03 a.blank::after {
  content: url("../img/common/icon-blank-blue.png");
  margin-left: 6px;
}
#index .index-product .col-sm-6:nth-child(1) .btn-03 {
  margin: 60px 4px 0 auto;
}
@media (max-width: 767px) {
  #index .index-product .col-sm-6:nth-child(1) .btn-03 {
    margin: 32px auto 0;
  }
}
#index .index-product .col-sm-6:nth-child(2) .btn-03 {
  margin: 60px auto 0 4px;
}
@media (max-width: 767px) {
  #index .index-product .col-sm-6:nth-child(2) .btn-03 {
    margin: 20px auto 0;
  }
}

#news-list .contents-ttl,
#about .contents-ttl,
#maintenance .contents-ttl,
#product .contents-ttl {
  color: #014699;
  font-size: 3.6rem;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}
#news-list .contents-ttl::after,
#about .contents-ttl::after,
#maintenance .contents-ttl::after,
#product .contents-ttl::after {
  background-color: #0099FF;
}
@media (max-width: 767px) {
  #news-list .contents-ttl,
  #about .contents-ttl,
  #maintenance .contents-ttl,
  #product .contents-ttl {
    font-size: 2.8rem;
    margin-bottom: 24px;
  }
}
#news-list .contents-ttl-sub,
#about .contents-ttl-sub,
#maintenance .contents-ttl-sub,
#product .contents-ttl-sub {
  font-size: 2.8rem;
  padding: 7px 0;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  #news-list .contents-ttl-sub,
  #about .contents-ttl-sub,
  #maintenance .contents-ttl-sub,
  #product .contents-ttl-sub {
    font-size: 2rem;
  }
}
#news-list .flx .flx-box .flx-box-inner,
#about .flx .flx-box .flx-box-inner,
#maintenance .flx .flx-box .flx-box-inner,
#product .flx .flx-box .flx-box-inner {
  padding: 32px 8px 0;
}
@media (max-width: 767px) {
  #news-list .flx .flx-box .flx-box-inner,
  #about .flx .flx-box .flx-box-inner,
  #maintenance .flx .flx-box .flx-box-inner,
  #product .flx .flx-box .flx-box-inner {
    padding: 16px 8px 0;
  }
}
#news-list .common-recruit .contents-ttl-01,
#about .common-recruit .contents-ttl-01,
#maintenance .common-recruit .contents-ttl-01,
#product .common-recruit .contents-ttl-01 {
  margin-bottom: 40px;
}

#news-detail .flx .flx-box .flx-box-inner {
  padding: 32px 8px 0;
}
@media (max-width: 767px) {
  #news-detail .flx .flx-box .flx-box-inner {
    padding: 16px 8px 0;
  }
}
#news-detail .common-recruit .contents-ttl-01 {
  margin-bottom: 40px;
}

#about .message {
  background: url(../img/about/message-bg.jpg) no-repeat;
  background-size: cover;
  color: #FFF;
}
#about .message .contents-ttl {
  color: #FFF;
}
#about .message .contents-ttl::after {
  background-color: #FFF;
}
#about .message .contents-ttl-sub {
  color: #FFF;
}
@media (max-width: 767px) {
  #about .message img {
    margin-bottom: 32px;
  }
}
#about .message .lead-01 {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  #about .message .lead-01 {
    font-size: 1.6rem;
  }
}
#about .message .name {
  font-size: 2.4rem;
  padding: 3px 0;
  margin-top: 24px;
}
@media (max-width: 767px) {
  #about .message .name {
    font-size: 2rem;
    margin-top: 0;
  }
}
#about .business {
  background-color: #E6F5FF;
}
@media (max-width: 767px) {
  #about .business .lead-img img {
    aspect-ratio: 345/210;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#about .business .lead-img span {
  display: block;
  text-align: center;
  font-size: 1.6rem;
  padding: 4px 0;
  margin-top: 16px;
}
@media (max-width: 767px) {
  #about .business .lead-img span {
    margin-top: 8px;
  }
}
@media (max-width: 767px) {
  #about .outline .table-list dt {
    background-color: #E6F5FF;
  }
}
#about .outline a.map-link {
  background-color: #0099FF;
  line-height: 1.5;
  letter-spacing: 0em;
}
#about .history {
  background-color: #E6F5FF;
}
#about .history .history-box {
  background: #FFF;
  padding: 80px;
  border-radius: 40px;
}
@media (max-width: 767px) {
  #about .history .history-box {
    padding: 40px 15px 40px 30px;
    border-radius: 16px;
  }
}
#about .history .history-box .table-list.time-line dt::after {
  background-color: #014699;
}

@media (min-width: 992px) {
  #maintenance .various .row.lead-img {
    margin-left: -16px;
    margin-right: -16px;
  }
}
#maintenance .various .row.lead-img img {
  aspect-ratio: 555/360;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  #maintenance .various .row.lead-img img {
    aspect-ratio: 345/210;
  }
}
@media (min-width: 992px) {
  #maintenance .various .col-sm-6 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 767px) {
  #maintenance .various .col-sm-6:last-child .flx-box-inner {
    padding: 16px 8px;
  }
}
@media (min-width: 768px) {
  #maintenance .various .flx .flx-box .flx-box-inner {
    padding: 32px 8px 13px;
  }
}
#maintenance .various .lead-01:last-child {
  margin-bottom: 0;
}
#maintenance .reason {
  background-color: #E6F5FF;
}
#maintenance .reason .flx-box {
  display: flex;
}
#maintenance .reason .flx-box .flx-box-inner {
  display: flex;
  flex: 0 0 100%;
}
#maintenance .reason .flx-box .flx-box-inner .reason-box {
  padding: 36px 34px;
  background-color: #FFF;
  border-radius: 24px;
  display: flex;
  flex: 0 0 100%;
  flex-direction: column;
}
@media (max-width: 767px) {
  #maintenance .reason .flx-box .flx-box-inner .reason-box {
    padding: 24px 30px;
    border-radius: 16px;
  }
}
#maintenance .reason .flx-box .flx-box-inner .reason-box img {
  max-width: 237px;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 767px) {
  #maintenance .reason .flx-box .flx-box-inner .reason-box img {
    max-width: 180px;
  }
}
#maintenance .reason .flx-box .flx-box-inner .reason-box h4 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 7px 0;
  margin-bottom: 16px;
}
#maintenance .reason .flx-box .flx-box-inner .reason-box p {
  padding: 4px 0;
  flex-grow: 1;
}

#product .machine .container {
  margin: 60px auto;
}
@media (max-width: 767px) {
  #product .machine .container {
    margin: 30px auto;
  }
}
#product .machine .container:first-child {
  margin: 0 auto 60px;
}
@media (max-width: 767px) {
  #product .machine .container:first-child {
    margin: 0 auto 30px;
  }
}
#product .machine .container:last-child {
  margin: 60px auto 0;
}
@media (max-width: 767px) {
  #product .machine .container:last-child {
    margin: 30px auto 0;
  }
}
#product .contents-ttl-02 {
  font-size: 2rem;
  padding: 0;
  /* padding: 8px 16px; */
}
#product .contents-ttl-02 a {
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  display: block;
  position: relative;
}
#product .contents-ttl-02 a.blank::after {
  content: url("../img/common/icon-blank-white.png");
  margin-left: 6px;
}
#product .contents-ttl-02 a span {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1;
  position: absolute;
  right: 32px;
  margin-top: 7px;
}
@media (max-width: 767px) {
  #product .contents-ttl-02 a span {
    font-size: 1.2rem;
    margin-top: 8px;
  }
}
#product .contents-ttl-02 a .arrow-right {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 1.2rem;
  height: 1.2rem;
  transform: translateX(-25%) rotate(45deg);
  position: absolute;
  right: 16px;
  margin-top: 8px;
  border-top: #fff 2px solid;
  border-right: #fff 2px solid;
}
#product .contents-ttl-02 a:hover {
  opacity: 1;
  background: #33adff;
}
@media (max-width: 767px) {
  #product .contents-ttl-02 {
    font-size: 1.8rem;
  }
}
#product .contents-ttl-sub-02 {
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  #product .contents-ttl-sub-02 {
    margin-bottom: 24px;
  }
}
#product .honda1 .contents-ttl-sub-02 {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  #product .honda1 .contents-ttl-sub-02 {
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  #product .honda1 .row.machine-cont img {
    aspect-ratio: 1/1;
  }
}
@media (min-width: 992px) {
  #product .row.machine-cont {
    margin-left: -20px;
    margin-right: -20px;
  }
}
#product .row.machine-cont h5 {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 5px 0 9px;
  margin: 14px 0 12px;
  border-bottom: 1px solid #333;
}
@media (max-width: 767px) {
  #product .row.machine-cont h5 {
    margin: 0 0 12px;
  }
}
#product .row.machine-cont p {
  letter-spacing: 0;
  padding: 4px 0;
}
@media (max-width: 767px) {
  #product .row.machine-cont img {
    aspect-ratio: 329/280;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#product .row.machine-cont:last-child .col-sm-4 .flx-box-inner {
  padding: 0 8px;
}
@media (max-width: 767px) {
  #product .row.machine-cont:last-child .col-sm-4 .flx-box-inner {
    padding: 0 8px 24px;
  }
}
@media (max-width: 767px) {
  #product .row.machine-cont:last-child .col-sm-4:last-child .flx-box-inner:last-child {
    padding: 0 8px;
  }
}
#product .flx .flx-box .flx-box-inner {
  padding: 0 8px 24px;
}
@media (max-width: 767px) {
  #product .flx .flx-box .flx-box-inner {
    padding: 0 8px 24px;
  }
}
@media (max-width: 767px) {
  #product .honda2 .row.machine-cont img {
    aspect-ratio: 1/1;
  }
}
#product .honda2 .row.machine-cont:nth-of-type(3) .col-sm-4 .flx-box-inner {
  padding: 0 8px;
}
@media (max-width: 767px) {
  #product .honda2 .row.machine-cont:nth-of-type(3) .col-sm-4 .flx-box-inner {
    padding: 0 8px 24px;
  }
}
@media (max-width: 767px) {
  #product .honda2 .row.machine-cont:nth-of-type(3) .col-sm-4:last-child .flx-box-inner:last-child {
    padding: 0 8px;
  }
}
#product .honda2 .appeal-box {
  margin-top: 60px;
}
@media (max-width: 767px) {
  #product .honda2 .appeal-box {
    padding: 30px;
    margin-top: 30px;
  }
}
#product .no-sliding-box .no-sliding-box-area {
  height: 17.2vw;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  #product .no-sliding-box .no-sliding-box-area {
    height: 48vw;
  }
}
#product .no-sliding-box .no-sliding-box-area.n-01 {
  background-image: url(../img/product/machine-bg-pc-001.jpg);
}
@media (max-width: 767px) {
  #product .no-sliding-box .no-sliding-box-area.n-01 {
    background-image: url(../img/product/machine-bg-sp-001.jpg);
  }
}
#product .no-sliding-box .no-sliding-box-area.n-02 {
  background-image: url(../img/product/machine-bg-pc-002.jpg);
}
@media (max-width: 767px) {
  #product .no-sliding-box .no-sliding-box-area.n-02 {
    background-image: url(../img/product/machine-bg-sp-002.jpg);
  }
}
#product .no-sliding-box .no-sliding-box-area.n-03 {
  background-image: url(../img/product/machine-bg-pc-003.jpg);
}
@media (max-width: 767px) {
  #product .no-sliding-box .no-sliding-box-area.n-03 {
    background-image: url(../img/product/machine-bg-sp-003.jpg);
  }
}
#product .nintei {
  background: no-repeat url(../img/top/product-bg.jpg);
  background-size: cover;
}
#product .nintei .contents-ttl {
  color: #FFF;
}
#product .nintei .contents-ttl::after {
  background-color: #FFF;
}
#product .nintei .lead-01 {
  color: #FFF;
}
#product .nintei .btn-03 {
  min-width: 480px;
}
@media (max-width: 767px) {
  #product .nintei .btn-03 {
    min-width: 100%;
  }
}
#product .nintei .btn-03 a {
  background-color: #FFF;
  color: #014699;
}
#product .nintei .btn-03 a .arrow-right {
  border-top: #014699 2px solid;
  border-right: #014699 2px solid;
}
#product .nintei .btn-03 a.blank::after {
  content: url("../img/common/icon-blank-blue.png");
  margin-left: 6px;
}
#product .voice {
  background-color: #E6F5FF;
}
#product .voice .voice-txt span {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: bold;
  padding: 3px 0;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  #product .voice .voice-txt span {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
#product .voice .voice-txt h3 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #0099FF;
  padding: 3px 0;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  #product .voice .voice-txt h3 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
#product .voice .voice-txt p {
  font-size: 1.8rem;
  padding: 7px 0;
}
#product .voice .voice-txt p:nth-of-type(1) {
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  #product .voice .voice-txt p:nth-of-type(1) {
    margin-bottom: 14px;
  }
}
@media (max-width: 767px) {
  #product .voice .voice-txt p {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  #product .voice .voice-txt {
    margin-bottom: 16px;
  }
}
#product .voice hr {
  display: block;
  border-top: 1px solid #999;
}
#product .voice .note {
  padding: 4px 0;
}
@media (max-width: 767px) {
  #product .voice .note {
    font-size: 1.2rem;
  }
}

.common-recruit {
  background-color: #0099FF;
}
.common-recruit .contents-ttl-01,
.common-recruit .contents-ttl-sub-01 {
  color: #FFF;
}
.common-recruit .lead-01 {
  color: #FFF;
  margin-bottom: 40px !important;
}
.common-recruit .btn-03 {
  min-width: 480px;
}
@media (max-width: 767px) {
  .common-recruit .btn-03 {
    min-width: 100%;
  }
}
.common-recruit .btn-03 a {
  background-color: #FFD609;
  color: #014699;
}
.common-recruit .btn-03 a .arrow-right {
  border-top: #014699 2px solid;
  border-right: #014699 2px solid;
}

.sliding-box .sliding {
  height: 328px;
  animation: slide 80s linear infinite;
  background-size: cover;
}
@media (max-width: 767px) {
  .sliding-box .sliding {
    height: 200px;
  }
}
.sliding-box .sliding.n-01 {
  background-image: url(../img/top/sliding-ph-001.jpg);
}
.sliding-box .sliding.n-02 {
  background-image: url(../img/about/sliding-ph-001.jpg);
}
.sliding-box .sliding.n-03 {
  background-image: url(../img/maintenance/sliding-ph-001.jpg);
}

@keyframes slide {
  0% {
    background-position: 0px 0;
  }
  100% {
    background-position: 2460px 0;
  }
}
.common-contact {
  background: no-repeat url(../img/common/contact-bg.jpg);
  background-size: cover;
}
.common-contact .col-sm-10 {
  margin: 0 auto;
  float: none;
}
.common-contact .contact-box {
  background-color: #FFF;
  border-radius: 40px;
  padding: 80px;
  text-align: center;
}
.common-contact .contact-box .lead-01 {
  text-align: center !important;
  padding: 4px 0;
}
@media (max-width: 767px) {
  .common-contact .contact-box {
    border-radius: 16px;
    padding: 40px 15px;
  }
  .common-contact .contact-box .lead-01 {
    margin-bottom: 8px;
  }
}
.common-contact .contact-box .contact-info {
  color: #014699;
  font-size: 2.4rem;
  font-weight: bold;
}
.common-contact .contact-box .contact-info .tel-number {
  font-size: 4rem;
  padding: 7px 0;
  vertical-align: middle;
  letter-spacing: 0.05em;
}
.common-contact .contact-box .contact-info .tel-number a {
  color: #014699;
}
@media (max-width: 767px) {
  .common-contact .contact-box .contact-info {
    font-size: 1.6rem;
  }
  .common-contact .contact-box .contact-info .tel-number {
    font-size: 2.8rem;
  }
}
.common-contact .contact-box .btn-03 {
  min-width: 480px;
  margin: 40px auto 0;
}
@media (max-width: 767px) {
  .common-contact .contact-box .btn-03 {
    min-width: 100%;
  }
}
@media (max-width: 767px) {
  .common-contact .contact-box .btn-03 {
    margin: 20px auto 0;
  }
}
.common-contact .contact-box .btn-03 a {
  background-color: #EE0F31;
  color: #FFF;
}
@media (max-width: 375px) {
  .common-contact .contact-box .btn-03 a {
    letter-spacing: 0;
  }
}
.common-contact .contact-box .btn-03 a .arrow-right {
  border-top: #FFF 2px solid;
  border-right: #FFF 2px solid;
}
@media (max-width: 375px) {
  .common-contact .contact-box .btn-03 a .arrow-right {
    right: 24px;
  }
}

.footer {
  background-color: #01469B;
}
.footer a:link, .footer a:visited {
  color: #ccdaeb;
}
.footer a:hover {
  color: #FFF;
}
.footer .footer-logo {
  width: 174px;
}
@media (max-width: 767px) {
  .footer .footer-logo {
    width: 136px;
  }
}

.footer-nav-title {
  border-bottom: 1px solid #ccdaeb;
}

@media (max-width: 767px) {
  footer dl {
    border-bottom: 1px solid #ccdaeb;
  }
}
.pagetop a {
  background: #0099FF;
}/*# sourceMappingURL=common.css.map */