@charset "UTF-8";
/*********************************************************
base
*********************************************************/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: #f9f9f9;
  background-image: inear-gradient(#f9f9f9, #eeeeee);
  color: #333333;
  font-family: ArialMT, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

a {
  color: #3822ff;
}

a:hover {
  opacity: 0.8;
}

img {
  height: auto;
  max-width: 100%;
}

li {
  list-style: none;
}

span {
  font-weight: inherit;
}

/*-----------------------
toggle-ttl
-----------------------*/
.toggle-ttl {
  background: #eee;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f1f1f1));
  background-image: linear-gradient(#fff, #f1f1f1);
  border: 1px solid #ccc;
  color: #2f3e46;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  overflow: hidden;
  padding: 9px 7px 9px 40px;
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.toggle-ttl:hover {
  background: #dfdfdf;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dfdfdf));
  background-image: linear-gradient(#fff, #dfdfdf);
  opacity: 1;
}

.toggle-ttl::before {
  color: #999;
  content: "\f056";
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.toggle-ttl.open::before {
  content: "\f055";
}

/*-----------------------
toggle-content
-----------------------*/
.toggle-content {
  padding: 10px 15px;
}

.toggle-content .toggle-content__kana {
  display: block;
  font-size: 12px;
}

.toggle-content .toggle-content__kanji {
  display: block;
  padding-left: 12px;
}

/*********************************************************
header
*********************************************************/
/*-----------------------
header-top
-----------------------*/
.header-top {
  background: #f00;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ff1a1a), to(#e60000));
  background-image: linear-gradient(#ff1a1a, #e60000);
  border: 1px solid #f00;
  color: #ffffff;
  font-weight: bold;
  padding: .4em 15px;
}

@media (min-width: 1025px) {
  .header-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.header-top__ttl {
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 1px 0 #444;
}

@media (min-width: 1025px) {
  .header-top__ttl {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .header-top__ttl {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .header-top__ttl {
    font-size: 12px;
  }
}

.header-top__contact {
  text-align: right;
}

@media (min-width: 1025px) {
  .header-top__contact {
    width: 20%;
  }
}

@media (max-width: 1024px) {
  .header-top__contact {
    display: none;
  }
}

.header-top__contact a {
  background: #eee;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f1f1f1));
  background-image: linear-gradient(#fff, #f1f1f1);
  border: 1px solid #ccc;
  color: #2f3e46;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  display: inline-block;
  font-size: 12px;
  padding: 7px 12px;
  text-align: center;
}

.header-top__contact a:hover {
  background: #dfdfdf;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dfdfdf));
  background-image: linear-gradient(#fff, #dfdfdf);
  opacity: 1;
}

.header-top__contact a img {
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
  width: 16px;
}

/*-----------------------
header-top-sp
-----------------------*/
.header-top-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 15px 0;
}

.toppage .header-top-sp {
  margin-bottom: 15px;
}

@media (min-width: 1025px) {
  .header-top-sp {
    display: none;
  }
}

@media (max-width: 480px) {
  .header-top-sp__logo {
    width: 100px;
  }
}

.header-top-sp__contact a {
  background: #eee;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f1f1f1));
  background-image: linear-gradient(#fff, #f1f1f1);
  border: 1px solid #ccc;
  color: #2f3e46;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  display: inline-block;
  font-size: 14px;
  padding: 10px;
  text-align: center;
  vertical-align: middle;
}

.header-top-sp__contact a:hover {
  background: #dfdfdf;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dfdfdf));
  background-image: linear-gradient(#fff, #dfdfdf);
  opacity: 1;
}

.header-top-sp__contact a img {
  display: inline-block;
  vertical-align: middle;
  width: 50px;
}

@media (max-width: 480px) {
  .header-top-sp__contact a img {
    width: 25px;
  }
}

/*********************************************************
footer
*********************************************************/
footer {
  border: 1px solid #f00;
}

@media (max-width: 1024px) {
  footer {
    margin-top: 15px;
  }
}

.footer-bg {
  background: #f00;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ff1a1a), to(#e60000));
  background-image: linear-gradient(#ff1a1a, #e60000);
  color: #ffffff;
  font-weight: bold;
  padding: 10px;
  text-shadow: 0 1px 0 #444444;
}

.copy {
  font-size: 12px;
}

/*********************************************************
wrapper
*********************************************************/
.wrapper {
  border-left: 1px solid #CCC;
  border-right: 1px solid #CCC;
  margin: 0 auto;
  max-width: 1000px;
}

/*********************************************************
main
*********************************************************/
.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 1025px) {
  .main {
    min-height: 1000px;
  }
}

@media (max-width: 1024px) {
  .main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

/*********************************************************
side-column
*********************************************************/
.side-column .recommend-area {
  margin-top: 5px;
}

@media (min-width: 1025px) {
  .side-column {
    border-right: 1px solid #ccc;
    width: 234px;
  }
  .side-column .recommend-area {
    display: none;
  }
}

@media (max-width: 1024px) {
  .side-column {
    display: none;
  }
  .toppage .side-column {
    display: block;
  }
}

.side-column__logo {
  padding: 10px;
  text-align: center;
}

@media (max-width: 1024px) {
  .side-column__logo {
    display: none;
  }
}

.side-column__logo img {
  width: 100px;
}

/*-----------------------
side-column-nav
-----------------------*/
.side-column-nav li {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .side-column-nav li:last-child a {
    border-radius: 0 0 5px 5px;
  }
}

.side-column-nav .toggle-content {
  padding: 0;
}

.side-column-nav .toggle-ttl {
  border-bottom: none;
  border-radius: 10px 10px 0 0;
}

.side-column-nav .toggle-ttl.open {
  border: 1px solid #ccc;
  border-radius: 10px;
}

@media (min-width: 1025px) {
  .side-column-nav .toggle-ttl {
    display: none;
  }
}

.side-column-nav__list li a {
  background: #eee;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f1f1f1));
  background-image: linear-gradient(#fff, #f1f1f1);
  border: 1px solid #ccc;
  color: #2f3e46;
  font-weight: bold;
  text-decoration: none;
  border-width: 1px 0 0;
  display: block;
  font-size: 16px;
  padding: 12px;
  position: relative;
}

.side-column-nav__list li a:hover {
  background: #dfdfdf;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dfdfdf));
  background-image: linear-gradient(#fff, #dfdfdf);
  opacity: 1;
}

.side-column-nav__list li a::after {
  color: #999;
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.side-column-nav__list li:last-child a {
  border-width: 1px 0;
}

/*-----------------------
official-sns
-----------------------*/
.official-sns {
  margin-top: 5px;
}

.official-sns__list {
  margin-top: 15px;
}

.official-sns__list li {
  display: inline-block;
  padding: 0 15px;
  width: 48%;
}

@media (max-width: 1024px) {
  .official-sns__list li {
    width: 18%;
  }
}

/*-----------------------
qrcode
-----------------------*/
.qrcode {
  background: #fff;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.6);
          box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.6);
  margin: 20px;
  overflow: hidden;
  padding: 0 0 20px 0;
  text-align: center;
}

@media (max-width: 1024px) {
  .qrcode {
    display: none;
  }
}

.qrcode img {
  width: 100px;
}

.qrcode__ttl {
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px dotted #999;
  border-radius: 5px 5px 0 0;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 20px;
  padding: 5px 10px;
}

/*********************************************************
main-column
*********************************************************/
@media (min-width: 1025px) {
  .main-column {
    padding: 20px;
    width: 765px;
  }
}

@media (max-width: 1024px) {
  .main-column .recommend-area {
    display: none;
  }
}

.main-column__area:nth-of-type(n + 2) {
  margin-top: 10px;
}

/*-----------------------
flexslider
-----------------------*/
@media (max-width: 1024px) {
  .flex-direction-nav .flex-prev {
    opacity: 1 !important;
    left: 0 !important;
  }
}

@media (max-width: 1024px) {
  .flex-direction-nav .flex-next {
    opacity: 1 !important;
    right: 0 !important;
  }
}

/*-----------------------
recommend-area
-----------------------*/
.recommend-area__list {
  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;
}

.recommend-area__list li {
  border: 5px solid #eaeaea;
  padding: 5px;
  width: 30%;
}

.recommend-area__list li:nth-child(n + 4) {
  margin-top: 10px;
}

.recommend-area__list li p {
  color: #000;
}

/*-----------------------
information-area
-----------------------*/
.information-area__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.information-area__date {
  color: #000;
  text-shadow: 0 1px 0 #eee;
}

.information-area__ttl {
  margin-left: 5%;
}

.information-area__ttl a {
  color: #2489ce;
  font-weight: bold;
  text-decoration: underline;
  text-shadow: 0 1px 0 #eee;
}

/*********************************************************
下層ページ
*********************************************************/
/*-----------------------
page-ttl
-----------------------*/
.page-ttl {
  background-color: #f00;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ff1a1a), to(#e60000));
  background-image: linear-gradient(#ff1a1a, #e60000);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  padding: 8px 12px;
  text-shadow: 0 1px 0 #444;
}

/*-----------------------
contents
-----------------------*/
.contents {
  margin-top: 20px;
  padding: 0 15px 15px;
}

/*********************************************************
会社概要
*********************************************************/
/*-----------------------
company
-----------------------*/
.company {
  padding: 15px;
}

.company__ttl {
  background-color: #f00;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ff1a1a), to(#e60000));
  background-image: linear-gradient(#ff1a1a, #e60000);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  padding: 15px 0;
  text-align: center;
  text-shadow: 0 1px 0 #444;
}

/*-----------------------
company-list
-----------------------*/
.company-list dt {
  margin-top: 5px;
}

.company-list dd {
  margin-bottom: 5px;
}

.company-list dd p:nth-child(n + 2) {
  margin-top: 1em;
}

.company-list dd p a {
  color: #3822ff;
  font-weight: bold;
  text-decoration: underline;
}

/*********************************************************
contents
*********************************************************/
.contents__bg {
  background: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 15px;
  margin-top: 30px;
  padding: 30px;
}

@media (max-width: 480px) {
  .contents__bg {
    padding: 20px;
  }
}

.contents__img {
  margin: 15px 0 30px;
}

.contents__txt {
  border-top: 1px solid #333;
  padding: 15px 0 8px;
}

.contents__link {
  color: #a55a04;
  font-size: 18px;
  font-weight: bold;
  text-decoration: underline;
}

.contents__link:hover {
  opacity: 0.8;
}

.contents__return {
  border-top: 1px solid #333;
  padding-top: 30px;
}

.contents__return a {
  color: #00bfff;
  text-decoration: underline;
}

.contents__return a:hover {
  opacity: 0.8;
}

.page-ttl {
  text-align: center;
}

/*-----------------------
breadcrumbs
-----------------------*/
.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 10px 0;
}

.breadcrumbs__item {
  font-size: 14px;
}

@media (max-width: 480px) {
  .breadcrumbs__item {
    font-size: 12px;
  }
}

.breadcrumbs__item.-home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.breadcrumbs__item.-home::after {
  border-color: #333;
  border-style: solid;
  border-width: 1px 1px 0 0;
  content: "";
  display: inline-block;
  margin: 0 10px 0 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 7px;
  height: 7px;
}

.breadcrumbs__link:hover {
  text-decoration: none;
}

/*********************************************************
header
*********************************************************/
@media (max-width: 300px) {
  .header-top-sp {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.header-top-sp__logo img {
  width: 100px;
}

@media (max-width: 480px) {
  .header-top-sp__logo img {
    width: 70px;
  }
}

.header-top-sp__contact a:first-child {
  border-radius: 10px 0 0 10px;
  border-width: 1px 0 1px 1px;
}

.header-top-sp__contact a:last-child {
  border-radius: 0 10px 10px 0;
}

/*********************************************************
index.html
*********************************************************/
.top-bg {
  background: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 15px;
  padding: 30px;
}

@media (max-width: 1024px) {
  .top-bg {
    margin: 0 15px 30px;
  }
}

@media (max-width: 480px) {
  .top-bg {
    padding: 20px;
  }
}

/*-----------------------
profile
-----------------------*/
.profile__ttl {
  border-bottom: 2px solid #333;
  font-size: 24px;
  font-weight: bold;
  padding: 0 0 10px 10px;
}

@media (max-width: 480px) {
  .profile__ttl {
    font-size: 20px;
    text-align: center;
  }
}

.profile-list {
  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;
}

@media (max-width: 600px) {
  .profile-list {
    display: block;
  }
}

.profile-list__ttl {
  margin-top: 30px;
  width: 27%;
}

@media (max-width: 600px) {
  .profile-list__ttl {
    font-weight: bold;
    width: 100%;
  }
}

.profile-list__content {
  margin-top: 50px;
  width: 73%;
}

@media (max-width: 600px) {
  .profile-list__content {
    margin: 10px 0 0 5px;
    width: 100%;
  }
}

.profile-list__content li:not(:first-child) {
  margin-top: 5px;
}

/*********************************************************
profile.html
profile-en.html
*********************************************************/
/*-----------------------
business-contents
-----------------------*/
.business-contents li {
  list-style-type: disc;
  margin-left: 1em;
}

.business-contents li:not(:first-child) {
  margin-top: 5px;
}

/*-----------------------
company-list
-----------------------*/
.company-list {
  margin-top: 30px;
}

/*********************************************************
business.html
business-en.html
*********************************************************/
/*-----------------------
business-list
-----------------------*/
.business-list__ttl {
  border-bottom: 2px solid #333;
  font-size: 18px;
  font-weight: bold;
  padding: 0 0 10px 10px;
}

.business-list__ttl:not(:first-child) {
  margin-top: 50px;
}

@media (max-width: 480px) {
  .business-list__ttl {
    text-align: center;
  }
}

.business-list__content {
  line-height: 1.5;
  margin-top: 20px;
  padding: 0 5px;
}

.business-list__table {
  margin: 15px auto 0;
  table-layout: fixed;
  text-align: center;
  width: 95%;
  max-width: 500px;
}

.business-list__table thead th {
  font-weight: bold;
  padding-bottom: 5px;
}

.business-list__table tbody th,
.business-list__table tbody td {
  border: 1px solid #ddd;
  padding: 7px;
}

.business-list__table tbody th {
  background: #000;
  color: #fff;
  font-weight: bold;
}

.business-list__table tbody td {
  background: #fff;
  font-size: 14px;
}

/*********************************************************
footer
*********************************************************/
.copy {
  text-align: center;
}