@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700');
@font-face {
  font-family: 'Custom Yu Gothic';
  src: local('Yu Gothic Medium');
}
@font-face {
  font-family: 'Custom Yu Gothic';
  src: local('Yu Gothic Bold');
  font-weight: bold;
}


/* Base
-------------------------------------- */
html {
  overflow: auto;
}
body {
  position: relative;
  min-width: 320px;
  background-color: #008CD6;
  color: #000;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', HelveticaNeue, Arial, '游ゴシック体', YuGothic, 'Custom Yu Gothic', '游ゴシック Medium', 'Yu Gothic Medium', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN W3', HiraKakuProN-W3, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}
a {
  color: #008CD6;
  text-decoration: none;
}
img {
  width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}


/* Header
-------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #FFF;
  border-bottom: 1px solid #F3F3F3;
  z-index: 9999;
}
.header-logo a {
  display: block;
  position: absolute;
  top: 16px;
  left: 10px;
  width: 120px;
  height: 28px;
  background: url('/assets/img/logo.svg') no-repeat 0 center;
  background-size: 120px 28px;
  text-indent: -9999px;
}
.header-tagline {
  display: block;
  position: absolute;
  top: 14px;
  left: 140px;
  font-size: 10px;
}

.header-trigger {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  text-align: center;
  cursor: pointer;
  transition: .3s;
}
.header-trigger span {
  display: block;
  position: absolute;
  top: 19px;
  right: 0;
  left: 0;
  width: 20px;
  height: 2px;
  margin: auto;
  background-color: #008CD6;
  transition: .3s;
}
.header-trigger span::before,
.header-trigger span::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: #008CD6;
  transition: .3s;
}
.header-trigger span::before {
  margin-top: -8px;
}
.header-trigger span::after {
  margin-top: 6px;
}
.header-trigger.is-active span {
  background: transparent;
}
.header-trigger.is-active span::before,
.header-trigger.is-active span::after {
  margin-top: -1px;
  background-color: #008CD6;
}
.header-trigger.is-active span::before {
  transform: rotate(-45deg);
}
.header-trigger.is-active span::after {
  transform: rotate(-135deg);
}

.header-nav-wrap {
  display: none;
  position: fixed;
  top: 59px;
  left: 0;
  width: 100%;
  height: calc(100vh - 59px);
  background-color: #FFF;
  overflow: auto;
  z-index: 9999;
}
.header-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  width: 100%;
  padding-bottom: 20px;
  background-color: #FFF;
}
.header-nav-list {
  width: 100%;
  border-top: 1px solid #DDD;
}
.header-nav-list li a {
  display: block;
  position: relative;
  padding: 20px 50px 20px 20px;
  border-bottom: 1px solid #DDD;
  font-weight: bold;
  text-decoration: none;
  line-height: 1;
}
.header-nav-list li a::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 20px;
  height: 6px;
  margin: auto;
  background: url('/assets/img/ico_arrow_link.svg') no-repeat right center;
  background-size: 20px 6px;
}

/* Footer
-------------------------------------- */
.footer {
  width: 100%;
  background-color: #008CD6;
}
.footer-nav {
  height: 80px;
  background-color: #EEE;
  font-size: 14px;
  line-height: 80px;
  text-align: center;
}
.footer-nav-list li {
  display: inline-block;
  margin: 0 10px;
}
.footer-copyright {
  height: 40px;
  color: #FFF;
  font-size: 12px;
  font-weight: 300;
  line-height: 40px;
  text-align: center;
}

.footer-pagetop {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 2000;
}
.footer-pagetop a {
  display: block;
  position: relative;
  width: 80px;
  height: 80px;
  color: #FFF;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
}
.footer-pagetop a span {
  display: block;
  position: absolute;
  bottom: 5px;
  right: 5px;
  padding-top: 25px;
  background: url('/assets/img/ico_arrow_top.svg') no-repeat center 0;
  background-size: 11px 20px;
}
.footer-pagetop a::before {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 80px 80px;
  border-color: transparent transparent #006FAA transparent;
}

/* Content
-------------------------------------- */
.wrapper {
  position: relative;
  width: 100%;
  padding: 60px 0 0 0;
}
.content {
  position: relative;
  width: 100%;
  background-color: #FFF;
}


/* ======= Top ======= */
.top-keyvisual {
  position: relative;
  width: 100%;
  height: auto;
}
.top-keyvisual-img {
  position: relative;
  width: 100%;
  height: auto;
  padding: 34.5% 0 0 0;
  overflow: hidden;
}
.top-keyvisual-img li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.top-keyvisual-img img {
  width: 100%;
}

.top-content {
  position: relative;
  padding: 40px 0 0 0;
}

.top-content h1 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #E5E5E5;
  color: #008CD6;
  font-size: 24px;
  line-height: 1;
}
.top-content h1 span {
  position: absolute;
  top: 6px;
  right: 0;
  color: #666;
  font-size: 12px;
  font-weight: bold;
}
.top-content h1::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -2px;
  width: 30%;
  height: 2px;
  margin: auto;
  background-color: #008CD6;
}

.top-products {
  padding: 0 20px 40px 20px;
}
.top-products-item {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  width: calc(100% + 20px);
  margin: 0 -20px -20px 0;
}
.top-products-item .-col {
  width: calc(100% / 2 - 20px);
  margin: 0 20px 20px 0;
}
.top-products-item figure {
  margin-bottom: 10px;
  border: 1px solid #DDD;
}

.top-topics {
  padding: 0 20px 40px 20px;
}
.top-topics-list li {
  border-bottom: 1px solid #DDD;
}
.top-topics-list li a,
.top-topics-list li .no-link {
  display: block;
  position: relative;
  width: 100%;
  padding: 10px 40px 10px 0;
}
.top-topics-list li a::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  width: 20px;
  height: 6px;
  margin: auto;
  background: url('/assets/img/ico_arrow_link.svg') no-repeat right center;
  background-size: 20px 6px;
  transition: all .3s;
}
.top-topics-list time {
  display: block;
  margin-bottom: 3px;
  color: #000;
}

.top-sns {
  padding: 0 20px 40px 20px;
}
iframe.twitter-timeline {
  width: 100% !important;
  border: 1px solid #DDD !important;
}

.top-parallax {
  width: 100%;
  height: 34.5vw;
  background: url('/assets/img/top_parallax_01.jpg') no-repeat center bottom;
  background-size: 100% auto;
}

/* ======= Lower ======= */
.topicpath {
  padding: 10px 20px 30px 20px;
  color: #999;
  font-size: 12px;
  line-height: 1;
}
.topicpath ul li {
  position: relative;
  display: inline-block;
}
.topicpath ul li:after {
  content: '>';
  margin: 0 8px;
}
.topicpath ul li:last-child:after {
  content: '';
  margin: 0;
}

.lower-head {
  position: relative;
  width: 100%;
  background-color: #EBF6FC;
}
.lower-head-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.lower-head-heading h1 {
  color: #008CD6;
  font-size: 28px;
  line-height: 1;
  text-align: center;
}
.lower-head-heading span {
  display: block;
  margin-top: 10px;
  color: #666;
  font-size: 12px;
  line-height: 1;
}

.lower-grid {
  padding: 0 20px 40px 20px;
}
.lower-grid h2 {
  margin-top: 10px;
}
.lower-grid-item {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  width: calc(100% + 20px);
  margin: 0 -20px -20px 0;
}
.lower-grid-item .-col {
  width: calc(100% / 2 - 20px);
  margin: 0 20px 20px 0;
}
.lower-grid-item figure {
  border: 1px solid #DDD;
}

.lower-item {
  padding: 0 20px 40px 20px;
}
.lower-item-main .-img {
  margin-bottom: 30px;
}
.lower-item h2 {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid #DDD;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
}
.lower-item h2::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -2px;
  width: 22%;
  height: 2px;
  margin: auto;
  background-color: #008CD6;
}
.lower-item h3 {
  display: block;
  margin-bottom: 15px;
  padding: 10px 0;
  background-color: #666;
  color: #FFF;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
.lower-item h4 {
  margin: 20px 0 15px 0;
  font-size: 20px;
  font-weight: bold;
}
.lower-item dl {
  margin-bottom: 20px;
}
.lower-item dl:last-of-type {
  margin-bottom: 0;
}
.lower-item dl dt {
  margin-bottom: 10px;
  padding-left: 10px;
  font-size: 18px;
  font-weight: bold;
  border-left: 4px solid #008CD6;
  line-height: 1.4;
}

.lower-item-sub,
.lower-item-gallery {
  width: 100%;
  margin-top: 40px;
  padding: 0 15px 15px 15px;
  border: 1px solid #DDD;
}
.lower-item-gallery-list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  width: calc(100% + 15px);
  margin: 0 -15px -15px 0;
}
.lower-item-gallery-list .-col {
  display: block;
  width: calc(100% / 3 - 15px);
  margin: 0 15px 15px 0;
}

.lower-video-list .-col {
  position: relative;
  width: 100%;
  margin: 20px auto 0 auto;
  padding-top: 56.25%;
}
.lower-video-list .-col iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}


.lower-article {
  padding: 0 20px 40px 20px;
}
.lower-article-list li {
  border-bottom: 1px solid #DDD;
}
.lower-article-list li a {
  display: block;
  position: relative;
  width: 100%;
  padding: 10px 40px 10px 0;
}
.lower-article-list li a::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  width: 20px;
  height: 6px;
  margin: auto;
  background: url('/assets/img/ico_arrow_link.svg') no-repeat right center;
  background-size: 20px 6px;
  transition: all .3s;
}
.lower-article-list time {
  display: block;
  margin-bottom: 3px;
  color: #000;
}
.lower-article-list p {
  margin: 0 !important;
}
.lower-article h2 {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid #DDD;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
}
.lower-article h2::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -2px;
  width: 22%;
  height: 2px;
  margin: auto;
  background-color: #008CD6;
}
.lower-article h3 {
  margin-bottom: 20px;
  padding: 10px;
  background-color: #F6F6F6;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
}
.lower-article h4 {
  margin-bottom: 20px;
  padding-left: 10px;
  font-size: 18px;
  font-weight: bold;
  border-left: 4px solid #008CD6;
  line-height: 1.6;
}
.lower-article p {
  margin-bottom: 30px;
}
.lower-article p.-last {
  margin-bottom: 0;
}

.lower-contact {
  padding: 0 20px 80px 20px;
}

/* Utility
-------------------------------------- */
.center {
  display: block;
  text-align: center;
}
.list {
  margin-bottom: 30px;
  list-style: disc;
}
.list li {
  margin: 0 0 0 1.5em;
  padding: 0 0 0 0.1em;
}
.btn-link {
  display: block;
  position: relative;
  width: 100%;
  margin: 20px auto 0 auto;
  background-color: #FFF;
  border: 1px solid #008CD6;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
}
.btn-link::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  width: 20px;
  height: 6px;
  margin: auto;
  background: url('/assets/img/ico_arrow_link.svg') no-repeat right center;
  background-size: 20px 6px;
}

.anchor {
  margin-top: -60px;
  padding-top: 60px;
}


/* State
-------------------------------------- */
.pc {
  display: none !important;
}
.cf:after {
  content: '';
  display: table;
  clear: both;
}
.cf {
  zoom: 1;
}
em {
  color: #D00;
}

/* Plug-in
-------------------------------------- */
.bx-wrapper {
  position: relative;
  margin: auto;
  padding: 0;
  *zoom: 1;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.bx-wrapper img {
  display: block;
  max-width: 100%;
}
.bx-viewport {
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
}
.bx-wrapper .bx-loading {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: 100%;
  min-height: 50px;
  background: #FFF url('/assets/img/loader.svg') no-repeat center center;
}
.bx-wrapper .bx-controls-direction a {
  display: block;
  position: absolute;
  outline: 0;
  width: 20px;
  height: 50px;
  background-color: #008CD6;
  text-indent: -9999px;
  z-index: 1000;
}
.bx-wrapper .bx-prev {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 50px;
  margin: auto;
}
.bx-wrapper .bx-prev::before {
  content: '';
  display: block;
  position: absolute;
  top: 20px;
  left: 8px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  transform: rotate(-45deg);
}
.bx-wrapper .bx-next {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 50px;
  margin: auto;
}
.bx-wrapper .bx-next::before {
  content: '';
  display: block;
  position: absolute;
  top: 20px;
  right: 8px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  transform: rotate(45deg);
}
