@charset "UTF-8";
/* BASE
 * ----------------------------------------------- */
/* MEDIA QUERIES
 * ----------------------------------------------- */
/* ADDITIONAL RESET
 * ----------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

body * {
  max-height: 99999em;
  word-break: break-word;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

input,
label,
select,
button {
  line-height: inherit;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  word-break: normal;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  -webkit-appearance: none;
  font: inherit;
}

button:focus {
  outline: 0;
}

input:focus,
textarea:focus,
select:focus {
  outline: auto;
}

/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Turn off scroll bars in IE unless needed */
textarea {
  overflow: auto;
  white-space: pre-line;
  resize: none;
}

/* PRINTING
 * ----------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
  }

  html,
  body {
    margin: 0;
  }

  @page {
    margin: 0;
  }
  @page :left {
    margin: 0;
  }
  @page :right {
    margin: 0;
  }
  @page :first {
    margin-top: 0;
  }
}
/* GENERAL
 * ----------------------------------------------- */
body {
  color: #000;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, Verdana, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

.font-serif {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Times New Roman", "游明朝", YuMincho, "メイリオ", Meiryo, Georgia, serif;
}

/* HELPERS
 * ----------------------------------------------- */
a {
  color: #000;
  text-decoration: none;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

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

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

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

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

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

/* RESPONSIVE
 * ----------------------------------------------- */
@media print, (min-width: 768px) {
  body {
    font-size: 12px;
  }

  .container {
    min-width: 1000px;
    overflow: hidden;
  }

  .wrapper {
    width: 860px;
    margin-left: auto;
    margin-right: auto;
  }

  .sm {
    display: none !important;
  }

  .trans {
    opacity: 1;
    transition: opacity 0.26s ease;
  }
  .trans:hover {
    opacity: 0.8;
  }
}
@media only screen and (max-width: 767.98px) {
  .md {
    display: none !important;
  }

  html {
    font-size: calc(100vw / 7.5);
  }

  body {
    font-size: 0.24rem;
  }

  .container {
    min-width: 320px;
  }

  .wrapper {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }
}
/* PARTS
 * ----------------------------------------------- */
/* COMMON HEADER
 * ----------------------------------------------- */
header {
  position: relative;
}
header:before {
  position: absolute;
  content: "";
  background: url(../img/common/header_list_color.png) top center/100% 100% no-repeat;
  width: 100%;
  top: 0;
}
header .header-color {
  margin: 0 auto;
}
header .header-color img {
  width: 100%;
}
header .logo-image {
  display: inline-block;
}
header .list-navigation {
  font-weight: 500;
}
header .list-navigation li {
  position: relative;
}
header .list-navigation li:before {
  width: 0;
  position: absolute;
  content: "";
  height: 1px;
  background-color: #00aada;
  bottom: 0;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  transition: width 0.3s;
}
header .list-navigation .active-hover {
  position: relative;
}
header .list-navigation .active-hover:before {
  background-color: #644b45;
}

@media print, (min-width: 768px) {
  header {
    padding-top: 16px;
  }
  header:before {
    height: 16px;
  }
  header .wrapper {
    text-align: center;
  }
  header .header-logo {
    height: 16px;
  }
  header .wrapper {
    padding: 28px 0 12px;
  }
  header .logo {
    margin-bottom: 13px;
  }
  header .header-navigation {
    display: block !important;
    margin-right: 8px;
  }
  header .list-navigation {
    display: -ms-flexbox;
    display: flex;
    font-size: 10px;
    -ms-flex-pack: center;
        justify-content: center;
  }
  header .list-navigation li:not(:last-child) {
    margin-right: 82px;
  }
  header .list-navigation li:hover:before {
    width: calc(100% + 11px);
  }
  header .list-navigation .active-hover:before {
    width: calc(100% + 11px);
    left: 50%;
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
  }

  .is-ipad .list-navigation li:not(:last-child) {
    margin-right: 73px;
  }
}
@media only screen and (max-width: 767.98px) {
  header:before {
    height: 0.32rem;
  }
  header .wrapper {
    padding-top: 0.82rem;
    padding-bottom: 0.5rem;
  }
  header .header-color {
    height: 0.32rem;
  }
  header .header-color img {
    height: 100%;
  }
  header .logo {
    width: 100%;
    margin-bottom: 0.13rem;
  }
  header .logo-image {
    width: 4.06rem;
    margin: 0 auto;
  }
  header .list-navigation {
    padding: 0 0.4rem;
  }
  header .list-navigation li {
    margin-bottom: 0.3rem;
  }
  header .list-navigation a {
    color: #fff;
    font-size: 0.3rem;
  }
  header .list-navigation .active-hover {
    display: inline-block;
  }
  header .list-navigation .active-hover:before {
    width: 100%;
  }
  header .menu-icon {
    background: #fff;
    width: 0.85rem;
    height: 0.85rem;
    position: fixed;
    top: 0.7rem;
    right: 0.4rem;
    z-index: 101;
    cursor: pointer;
    border-radius: 0.1rem;
  }
  header .menu-icon span {
    display: block;
    width: 0.55rem;
    min-height: 0.05rem;
    height: 0.01rem;
    margin-left: -0.27rem;
    background: #161616;
    transition: all 0.4s ease;
    position: absolute;
    border-radius: 0.05rem;
    left: 50%;
  }
  header .menu-icon span:nth-child(1) {
    top: 0.17rem;
  }
  header .menu-icon span:nth-child(2) {
    top: 0.38rem;
  }
  header .menu-icon span:nth-child(3) {
    top: 0.6rem;
  }
  header .is-active span:nth-child(1) {
    -ms-transform: translateY(0.27rem) rotate(-45deg);
        transform: translateY(0.27rem) rotate(-45deg);
    top: 0.13rem;
  }
  header .is-active span:nth-child(2) {
    opacity: 0;
  }
  header .is-active span:nth-child(3) {
    -ms-transform: translateY(-0.22rem) rotate(45deg);
        transform: translateY(-0.22rem) rotate(45deg);
    top: 0.62rem;
  }
  header .header-navigation {
    display: none;
    background: #000;
    color: #fff;
    margin-right: -0.4rem;
    padding: 2.5rem 0.8rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    z-index: 11;
  }
}
/* COMMON FOOTER
 * ----------------------------------------------- */
footer {
  background-color: #05c57c;
  position: relative;
}
footer:before {
  position: absolute;
  content: "";
  background: url(../img/common/footer_list_color.png) bottom center/100% 100% no-repeat;
  width: 100%;
  bottom: 0;
}
footer .wrapper {
  text-align: center;
  position: relative;
}
footer .footer-logo a {
  display: inline-block;
}
footer .footer-color {
  margin: 0 auto;
}
footer .footer-color img {
  width: 100%;
}
footer .footer-navigation {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer .footer-navigation a {
  position: relative;
  color: #fff;
}
footer .footer-navigation a:before {
  position: absolute;
  content: "";
  background: url(../img/common/icon_arrow_01.png) center/100% auto no-repeat;
  top: 48%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  left: 1px;
}
footer .small {
  display: block;
  text-align: center;
  letter-spacing: 0.02em;
  color: #fff;
  position: absolute;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
}
footer .button-to-top {
  position: absolute;
  z-index: 100;
  cursor: pointer;
}
footer .button-to-top span {
  bottom: 6px;
  right: 14px;
  width: 100%;
  height: 100%;
  display: block;
  background: url(../img/common/button_to_top.png) left center/contain no-repeat;
}

@media print, (min-width: 768px) {
  footer:before {
    height: 20px;
  }
  footer .wrapper {
    padding: 46px 0 88px;
  }
  footer .footer-logo {
    margin-bottom: 17px;
  }
  footer .footer-navigation {
    margin-right: 32px;
    -ms-flex-pack: center;
        justify-content: center;
  }
  footer .footer-navigation a {
    padding-left: 29px;
    font-size: 13px;
  }
  footer .footer-navigation a:before {
    width: 21px;
    height: 21px;
  }
  footer .footer-navigation li:not(:last-child) {
    margin-right: 39px;
  }
  footer .button-to-top {
    width: 51px;
    height: 51px;
    bottom: 8px;
    right: 14px;
  }
  footer .small {
    font-size: 10px;
    bottom: 2px;
  }

  .is-mac .footer-navigation a:before {
    top: 45%;
  }
}
@media only screen and (max-width: 767.98px) {
  footer:before {
    height: 0.4rem;
  }
  footer .wrapper {
    padding-top: 0.46rem;
    padding-bottom: 1rem;
  }
  footer .footer-logo {
    width: 4.06rem;
    margin: 0 auto 0.17rem;
  }
  footer .footer-color img {
    height: 0.4rem;
    width: 100%;
  }
  footer .footer-navigation {
    width: 5rem;
    margin: 0 auto;
  }
  footer .footer-navigation a {
    padding-left: 0.29rem;
  }
  footer .footer-navigation a:before {
    width: 0.21rem;
    height: 0.21rem;
  }
  footer .footer-navigation li {
    width: 50%;
    text-align: left;
  }
  footer .button-to-top {
    width: 0.51rem;
    height: 0.51rem;
    bottom: 0.2rem;
    right: 0.5rem;
  }
  footer .small {
    font-size: 0.2rem;
    bottom: 0.04rem;
  }
}
/* MODULES
 * ----------------------------------------------- */
/* COMMON TITLE
 * ----------------------------------------------- */
.section-title {
  text-align: center;
  font-weight: 700;
}
.section-title .english {
  display: block;
  letter-spacing: 0.26em;
}
.section-title .japan {
  display: inline;
  position: relative;
  letter-spacing: 0.36em;
}
.section-title .japan:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #00aada;
  bottom: 0;
  left: 47%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
}

@media print, (min-width: 768px) {
  .section-title {
    margin-bottom: 14px;
  }
  .section-title .english {
    font-size: 33px;
  }
  .section-title .japan {
    font-size: 10px;
    top: -3px;
  }

  .is-mac .section-title .japan:before {
    bottom: -1px;
  }

  .is-mac.is-chrome .section-title .japan:before {
    bottom: -3px;
  }
}
@media only screen and (max-width: 767.98px) {
  .section-title {
    margin-bottom: 0.5rem;
  }
  .section-title .english {
    font-size: 0.3rem;
  }
  .section-title .japan {
    font-size: 0.2rem;
  }
  .section-title .japan:before {
    bottom: -0.04rem;
  }
}
/*----------section-title-big------ */
.button-common {
  border: solid 2px #00aada;
  color: #00aada;
  font-weight: 500;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  letter-spacing: 0.28em;
}

.is-green {
  border-color: #05c57c;
  color: #05c57c;
}

@media print, (min-width: 768px) {
  .button-common {
    font-size: 21px;
    width: 802px;
    min-height: 102px;
  }
}
@media only screen and (max-width: 767.98px) {
  .button-common {
    font-size: 0.26rem;
    min-height: 1.02rem;
  }
}
.banner-common {
  background: center/100% auto no-repeat;
  color: #fff;
}
.banner-common .wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 100%;
}
.banner-common .banner-title {
  font-weight: 700;
}
.banner-common .banner-title span {
  display: block;
  font-weight: 500;
  letter-spacing: 0.12em;
}

@media print, (min-width: 768px) {
  .banner-common {
    height: 250px;
  }
  .banner-common .banner-title {
    font-size: 41px;
    padding-left: 31px;
  }
  .banner-common .banner-title span {
    font-size: 16px;
    margin-top: -8px;
  }
}
@media only screen and (max-width: 767.98px) {
  .banner-common {
    height: 1.9rem;
  }
  .banner-common .banner-title {
    font-size: 0.4rem;
  }
  .banner-common .banner-title span {
    font-size: 0.2rem;
  }
}
.section-product {
  background-color: #e6e6e6;
}
.section-product .block-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.section-product .item-block {
  color: #fff;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.28em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.section-product .item-text {
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.2em;
}
.section-product .is-orange {
  background-color: #ff6b00;
}
.section-product .is-green {
  background-color: #05c57c;
}
.section-product .is-blue {
  background-color: #00aada;
}
.section-product .is-yellow {
  background-color: #ffbf43;
}
.section-product .is-purple {
  background-color: #d13aaa;
}
.section-product .is-red {
  background-color: #d12d2f;
}
.section-product .section-title .english {
  color: #05c57c;
}
.section-product .section-title .japan {
  color: #000;
}

.is-mac .item-text {
  letter-spacing: 0.12em;
}

@media print, (min-width: 768px) {
  .section-product {
    padding: 25px 0 16px;
  }
  .section-product .wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
    padding: 0 27px;
  }
  .section-product .list-product li {
    margin-bottom: 10px;
  }
  .section-product .item-block {
    width: 150px;
    min-height: 100px;
    font-size: 15px;
    margin-right: 13px;
  }
  .section-product .item-text {
    font-size: 15px;
  }
  .section-product .block-left {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 70px;
  }

  .is-ipad .item-block {
    letter-spacing: 0.25em;
  }
  .is-ipad .item-text {
    letter-spacing: 0.15em;
  }
}
@media only screen and (max-width: 767.98px) {
  .section-product {
    padding: 0.5rem 0;
  }
  .section-product .list-product li {
    margin-bottom: 0.2rem;
  }
  .section-product .item-block {
    width: 3rem;
    min-height: 2rem;
    margin-right: 0.15rem;
  }
  .section-product .block-left {
    width: 4rem;
    margin: 0 auto;
  }
}
/* PAGE
 * ----------------------------------------------- */
.banner-common {
  background-image: url(../img/aboutus/aboutus_banner.jpg);
}
.banner-common .wrapper {
  -ms-flex-pack: end;
      justify-content: flex-end;
}

/*--.section-product--- */
.section-product {
  background-color: #fff;
}

@media print, (min-width: 768px) {
  .section-product {
    padding-top: 17px;
    padding-bottom: 20px;
  }
  .section-product .wrapper {
    padding-left: 0;
    padding-right: 106px;
  }
  .section-product .block-left {
    padding-top: 6px;
  }
  .section-product .list-product li {
    margin-bottom: 11px;
  }
  .section-product .list-product li:not(first-child) .item-text {
    letter-spacing: 0.04em;
  }
  .section-product .phone {
    pointer-events: none;
  }
  .section-product .item-block {
    width: 150px;
    min-height: 32px;
  }
  .section-product .item-text {
    padding-top: 3px;
  }
  .section-product .block-left {
    width: 303px;
    margin-right: 45px;
  }

  .is-mac .section-product .item-block {
    padding-top: 1px;
  }
}
@media only screen and (max-width: 767.98px) {
  .section-product .block-left {
    margin-bottom: 0.3rem;
    width: 3.03rem;
  }
  .section-product .block-left img {
    width: 100%;
  }
}
/*-----.google-map---- */
.google-map .map-api {
  width: 100%;
}

@media print, (min-width: 768px) {
  .google-map {
    padding-bottom: 30px;
  }
  .google-map .map-api {
    height: 330px;
  }
}
@media only screen and (max-width: 767.98px) {
  .google-map {
    padding-bottom: 0.5rem;
  }
  .google-map .map-api {
    height: 3.5rem;
  }
}
/*----.block-button---- */
@media print, (min-width: 768px) {
  .block-button {
    padding-bottom: 35px;
  }
}
@media only screen and (max-width: 767.98px) {
  .block-button {
    padding-bottom: 0.5rem;
  }
}

/*# sourceMappingURL=aboutus.css.map */