@charset "UTF-8";
/*--------------------------
color
---------------------------*/
/*--------------------------

---------------------------*/
/*--------------------------

---------------------------*/
/*--------------------------
scroll-table
---------------------------*/
.scroll_table .scroll_table_wrap {
  position: relative;
}
.scroll_table .scroll_table_wrap::-webkit-scrollbar {
  height: 5px;
}
.scroll_table .scroll_table_wrap::-webkit-scrollbar-track {
  background: #F1F1F1;
}
.scroll_table .scroll_table_wrap::-webkit-scrollbar-thumb {
  background: #eee;
  border-radius: 50px;
}
@media only screen and (max-width: 768px) {
  .scroll_table .scroll_table_wrap {
    width: 100%;
    overflow: auto;
  }
}
@media only screen and (max-width: 768px) {
  .scroll_table .scroll_table_wrap table {
    min-width: 768px;
  }
  .scroll_table .scroll_table_wrap table tr th,
.scroll_table .scroll_table_wrap table tr td {
    white-space: nowrap;
  }
}
.scroll_table .scroll_table_wrap .swipe {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  font-size: 16px;
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .scroll_table .scroll_table_wrap .swipe {
    display: block;
  }
}
.scroll_table .scroll_table_wrap .swipe span {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
}

/*--------------------------
table_layout
---------------------------*/
/*----------------------------------------
Reset
----------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

ul, li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  outline: none;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*--------------------------
Tag Default
---------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
}

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

body {
  position: relative;
  font-size: 16px;
  font-family: "Noto Sans Japanese";
  font-weight: 400;
  color: #000;
  overflow-x: hidden;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #000;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

img {
  max-width: 100%;
  height: auto;
  margin: auto;
}

p {
  line-height: 1.85;
}
@media only screen and (max-width: 768px) {
  p {
    line-height: 1.75;
  }
}

.sp_none {
  display: block;
}
@media only screen and (max-width: 768px) {
  .sp_none {
    display: none !important;
  }
}

.pc_none {
  display: none;
}
@media only screen and (max-width: 768px) {
  .pc_none {
    display: block !important;
  }
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.iv {
  opacity: 0;
}

.animated {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -25%, 0);
    transform: translate3d(0, -25%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

/*--------------------------
FontSet Default
---------------------------*/
@font-face {
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-weight: 400;
  src: url("/asset/font/NotoSansJP-Regular.ttf") format("truetype"), url("/asset/font/NotoSansJP-Regular.woff") format("woff"), url("/asset/font/NotoSansJP-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-weight: 500;
  src: url("/asset/font/NotoSansJP-Medium.ttf") format("truetype"), url("/asset/font/NotoSansJP-Medium.woff") format("woff"), url("/asset/font/NotoSansJP-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-weight: 700;
  src: url("/asset/font/NotoSansJP-Bold.ttf") format("truetype"), url("/asset/font/NotoSansJP-Bold.woff") format("woff"), url("/asset/font/NotoSansJP-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  src: url("/asset/font/Barlow-Regular.ttf") format("truetype"), url("/asset/font/Barlow-Regular.woff") format("woff"), url("/asset/font/Barlow-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 600;
  src: url("/asset/font/Barlow-SemiBold.ttf") format("truetype"), url("/asset/font/Barlow-SemiBold.woff") format("woff"), url("/asset/font/Barlow-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "fontello";
  src: url("/asset/font/fontello.eot?71414482");
  src: url("/asset/font/fontello.eot?71414482#iefix") format("embedded-opentype"), url("/asset/font/fontello.woff2?71414482") format("woff2"), url("/asset/font/fontello.woff?71414482") format("woff"), url("/asset/font/fontello.ttf?71414482") format("truetype"), url("/asset/font/fontello.svg?71414482#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-]:before,
[class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: 0.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-plus:before {
  content: "\e800";
}

.icon-down-open:before {
  content: "\f004";
}

.icon-up-open:before {
  content: "\f005";
}

.icon-right-open:before {
  content: "\f006";
}

.icon-left-open:before {
  content: "\f007";
}

.icon-modal_close:before {
  content: "\f062";
}

/*--------------------------
header
---------------------------*/
#header {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 64px;
  top: 0;
  left: 0;
  margin: 0 auto;
  background: #fff;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
  z-index: 9998;
}
#header.head-animation {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
@media only screen and (max-width: 768px) {
  #header {
    height: 60px;
    background: #fff;
  }
}
#header .hd_logo {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  #header .hd_logo {
    position: static;
    margin: 0 0 0 2.5%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
#header .hd_logo a {
  display: block;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
#header .hd_logo a:hover {
  opacity: 0.7;
}
#header .contact_nav {
  margin: 0 24px 0 auto;
}
@media only screen and (max-width: 768px) {
  #header .contact_nav {
    margin: 0 2.5%;
  }
}
#header .contact_nav a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 208px;
  height: 36px;
  color: #fff;
  padding: 0 16px 0 12px;
  background: #00AFFF;
  border-radius: 4px;
  -webkit-transform: skewX(-10deg);
          transform: skewX(-10deg);
}
@media only screen and (max-width: 768px) {
  #header .contact_nav a {
    width: 176px;
    height: 32px;
  }
}
#header .contact_nav a::after {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  content: "\f006";
  right: 16px;
  -webkit-transform: skewX(10deg);
          transform: skewX(10deg);
}
#header .contact_nav a span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  -webkit-transform: skewX(10deg);
          transform: skewX(10deg);
}
@media only screen and (max-width: 768px) {
  #header .contact_nav a span {
    font-size: 12px;
  }
}
#header .contact_nav a:hover {
  opacity: 0.7;
}

/* -------------------------------------------
footer
---------------------------------------------*/
#footer {
  padding: 24px 16px;
  background: #000;
}
@media only screen and (max-width: 768px) {
  #footer {
    padding: 28px 16px 40px;
  }
}
#footer .container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
#footer .container .about_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 16px;
}
@media only screen and (max-width: 768px) {
  #footer .container .about_wrap {
    display: block;
  }
}
#footer .container .about_wrap dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#footer .container .about_wrap dl:not(:last-child) {
  padding: 0 12px 0 0;
  margin: 0 12px 0 0;
  border-right: 1px solid #888888;
}
@media only screen and (max-width: 768px) {
  #footer .container .about_wrap dl:not(:last-child) {
    padding: 0;
    margin: 0 0 8px;
    border-right: none;
  }
}
#footer .container .about_wrap dl dt, #footer .container .about_wrap dl dd {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  #footer .container .about_wrap dl dt, #footer .container .about_wrap dl dd {
    font-size: 13px;
  }
}
#footer .container .about_wrap dl dt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 768px) {
  #footer .container .about_wrap dl dt {
    width: 78px;
    min-width: 78px;
  }
}
#footer .container .about_wrap dl dt::after {
  content: "：";
  display: block;
}
@media only screen and (max-width: 768px) {
  #footer .container .about_wrap dl dt::after {
    position: absolute;
    right: 0;
  }
}
#footer .container .copy {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  #footer .container .copy {
    font-size: 13px;
  }
}

/* -------------------------------------------
page-top
---------------------------------------------*/
#page-top {
  position: fixed;
  display: block;
  bottom: 25px;
  right: 1.25%;
  z-index: 999;
}
@media only screen and (max-width: 1170px) {
  #page-top {
    bottom: 4.5%;
  }
}
#page-top a {
  position: relative;
  display: block;
  width: 64px;
  height: 64px;
  background: #00AFFF;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  z-index: 999;
}
@media only screen and (max-width: 768px) {
  #page-top a {
    width: 40px;
    height: 40px;
  }
}
#page-top a::after {
  position: absolute;
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f005";
  font-size: 20px;
  color: #fff;
  top: 46%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
  #page-top a::after {
    font-size: 16px;
    top: 48%;
  }
}
#page-top a:hover {
  opacity: 0.7;
}