@charset "UTF-8";
/* ======================================================================
 common style index
・reset
・setting
・mixin
・base
・sprite
・utility
・component
・layout
・z-index
====================================================================== */
/* ======================================================================
 reset
====================================================================== */
html {
  overflow-y: scroll;
}

body {
  line-height: 1;
  color: #000;
}

/* html5doctor.com Reset Stylesheet v1.6.1
  Last Updated: 2010-09-17 Author: Richard Clark - http://richclarkdesign.com Twitter: @rich_clark */
abbr, address, article, aside, audio, b, blockquote, body, canvas, caption, cite, code, dd, del, details,
dfn, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup,
html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section,
small, span, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

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

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

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;
}

/* YUI 3.4.1 (build 4118) Copyright 2011 Yahoo! Inc. All rights reserved.
Licensed under the BSD License. http://yuilibrary.com/license/ */
/* ======================================================================
 setting
====================================================================== */
/* ======================================================================
 base
====================================================================== */
html {
  font-size: 62.5%;
}

body {
  position: relative;
  background: #fff;
  color: #141414;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック", YuGothic, Verdana;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
}
body.js_page_trans {
  opacity: 0;
}

html, body {
  width: 100%;
  height: 100%;
}

.page {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .page {
    padding-top: 55px;
  }
}

/* border-box */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* h1 - h6 */
h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  font-weight: normal;
}

/* a */
a:link {
  color: #141414;
  text-decoration: none;
  cursor: pointer;
}
a:visited {
  color: #141414;
  text-decoration: none;
}
a:hover {
  color: #141414;
  text-decoration: none;
}
a:active {
  color: #141414;
  text-decoration: none;
}

a[href^="tel"] {
  color: #141414;
}

/* Text Highlight */
/* button */
button {
  display: block;
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

/* input */
input, textarea, select {
  display: block;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  border-image: none;
  background: transparent;
  font-family: inherit;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
}
input::-ms-expand, textarea::-ms-expand, select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #141414;
}

/* placeholder */
input:placeholder-shown, textarea:placeholder-shown {
  color: #141414;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #141414;
}
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #141414;
  opacity: 1;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #141414;
  opacity: 1;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #141414;
}
input:focus:placeholder-shown, textarea:focus:placeholder-shown {
  color: #141414;
}
input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: #141414;
}
input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
  color: #141414;
  opacity: 1;
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: #141414;
  opacity: 1;
}
input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: #141414;
}

img {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* ======================================================================
 sprite
====================================================================== */
/* =================================
 hoge
================================= */
/* =================================
 hoge
================================= */
/* =================================
 hoge
================================= */
/* ======================================================================
 utility
====================================================================== */
/* =================================
 layout
================================= */
.cf {
  *zoom: 1;
}
.cf:after {
  display: block;
  visibility: hidden;
  clear: both;
  overflow: hidden;
  height: 0;
  content: '\0020';
}

@media screen and (min-width: 1025px) {
  .u_pc {
    display: block;
  }

  .u_sp {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .u_pc {
    display: none;
  }

  .u_sp {
    display: block;
  }
}
.u_fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.u_body_fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

/* =================================
 text pt
================================= */
.u_txt_1 {
  font-size: 1.3em;
  line-height: 1.75;
  letter-spacing: .1em;
}
@media screen and (min-width: 1025px) {
  .u_txt_1 {
    font-size: 1.6em;
  }
}

.u_txt_2 {
  font-size: 1.2em;
  line-height: 1.75;
  letter-spacing: .1em;
}
@media screen and (min-width: 1025px) {
  .u_txt_2 {
    font-size: 1.4em;
  }
}

.u_txt_3 {
  font-size: 2em;
  line-height: 1.75;
  letter-spacing: .5em;
}
@media screen and (min-width: 1025px) {
  .u_txt_3 {
    font-size: 2.8em;
  }
}

.u_txt_4 {
  font-size: 1em;
  line-height: 2.1;
  letter-spacing: .1em;
}
@media screen and (min-width: 1025px) {
  .u_txt_4 {
    font-size: 1.4em;
    line-height: 2;
  }
}

.u_txt_5 {
  font-size: 1.6em;
  line-height: 1.75;
  letter-spacing: .3em;
}
@media screen and (min-width: 1025px) {
  .u_txt_5 {
    font-size: 2.6em;
  }
}

.u_txt_6 {
  font-size: 1.7em;
  line-height: 1.75;
  letter-spacing: .3em;
}
@media screen and (min-width: 1025px) {
  .u_txt_6 {
    font-size: 2em;
  }
}

.u_txt_7 {
  font-size: 2.5em;
  line-height: 1.8;
  letter-spacing: .5em;
}
@media screen and (min-width: 1025px) {
  .u_txt_7 {
    font-size: 3em;
    line-height: 2.46;
  }
}

.u_txt_8 {
  font-size: 1em;
  line-height: 1.75;
  letter-spacing: .1em;
}
@media screen and (min-width: 1025px) {
  .u_txt_8 {
    font-size: 1.2em;
  }
}

.u_txt_9 {
  font-size: 1.5em;
  line-height: 1.75;
  letter-spacing: .3em;
}
@media screen and (min-width: 1025px) {
  .u_txt_9 {
    font-size: 1.8em;
  }
}

.u_txt_10 {
  font-size: 1em;
  line-height: 1.75;
  letter-spacing: .1em;
}
@media screen and (min-width: 1025px) {
  .u_txt_10 {
    line-height: 2.8;
  }
}

.u_txt_11 {
  font-size: 2.5em;
  line-height: 1.75;
  letter-spacing: .5em;
}
@media screen and (min-width: 1025px) {
  .u_txt_11 {
    font-size: 3em;
  }
}

.u_txt_12 {
  font-size: 1.6em;
  line-height: 1.75;
  letter-spacing: .3em;
}

.u_txt_13 {
  font-size: 2em;
  line-height: 1.75;
  letter-spacing: .3em;
}
@media screen and (min-width: 1025px) {
  .u_txt_13 {
    font-size: 2.8em;
    letter-spacing: .5em;
  }
}

.u_txt_14 {
  font-size: 1.3em;
  line-height: 1.75;
  letter-spacing: .1em;
}
@media screen and (min-width: 1025px) {
  .u_txt_14 {
    font-size: 1.2em;
  }
}

.u_txt_15 {
  font-size: 1.6em;
  line-height: 1.75;
  letter-spacing: .5em;
}
@media screen and (min-width: 1025px) {
  .u_txt_15 {
    font-size: 2.4em;
  }
}

.u_txt_16 {
  font-size: 1.6em;
  line-height: 1.75;
  letter-spacing: .1em;
}
@media screen and (min-width: 1025px) {
  .u_txt_16 {
    font-size: 2.4em;
  }
}

.u_txt_17 {
  font-size: 1.5em;
  line-height: 1.75;
  letter-spacing: .1em;
}
@media screen and (min-width: 1025px) {
  .u_txt_17 {
    font-size: 2em;
  }
}

.u_txt_18 {
  font-size: 1.5em;
  line-height: 1.75;
  letter-spacing: .3em;
}
@media screen and (min-width: 1025px) {
  .u_txt_18 {
    font-size: 2em;
  }
}

.u_txt_19 {
  font-size: 2em;
  line-height: 1.75;
  letter-spacing: .3em;
}
@media screen and (min-width: 1025px) {
  .u_txt_19 {
    font-size: 2.8em;
  }
}

.u_txt_20 {
  font-size: 1.8em;
  line-height: 1.75;
  letter-spacing: .3em;
}
@media screen and (min-width: 1025px) {
  .u_txt_20 {
    font-size: 2.6em;
  }
}

.u_txt_21 {
  font-size: 1.6em;
  line-height: 1.75;
  letter-spacing: .3em;
}
@media screen and (min-width: 1025px) {
  .u_txt_21 {
    font-size: 2.4em;
  }
}

.u_txt_22 {
  font-size: 2em;
  line-height: 1.75;
  letter-spacing: .3em;
}
@media screen and (min-width: 1025px) {
  .u_txt_22 {
    font-size: 2.8em;
    letter-spacing: .4em;
  }
}

/* =================================
 text weight
================================= */
.u_lighter {
  font-weight: lighter;
}

.u_bold {
  font-weight: bold;
}

/* =================================
 text marker
================================= */
.u_marker_1_1 {
  background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmY2NiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmY2NiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background: -moz-linear-gradient(top, #ffff66 0%, #ffff66 100%);
  background: -webkit-linear-gradient(top, #ffff66 0%, #ffff66 100%);
  background: linear-gradient(to bottom, #ffff66 0%, #ffff66 100%);
}

.u_marker_1_2 {
  background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjQwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmNjYiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 40%, #ffff66 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 40%, #ffff66 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 40%, #ffff66 100%);
}

/* =================================
 box-shadow
================================= */
.u_box_shadow_1 {
  -moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/* =================================
 gradation
================================= */
.u_gradient_1 {
  background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2E5ZTlmMyIvPjxzdG9wIG9mZnNldD0iMTAlIiBzdG9wLWNvbG9yPSIjYTllOWYzIi8+PHN0b3Agb2Zmc2V0PSIyNSUiIHN0b3AtY29sb3I9IiMyZDlkYWUiLz48c3RvcCBvZmZzZXQ9IjM3JSIgc3RvcC1jb2xvcj0iIzJkOWRhZSIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjMmQ5ZGFlIi8+PHN0b3Agb2Zmc2V0PSI4MyUiIHN0b3AtY29sb3I9IiMyZDlkYWUiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNiZGY1ZmQiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background: -moz-linear-gradient(270deg, #a9e9f3 0%, #a9e9f3 10%, #2d9dae 25%, #2d9dae 37%, #2d9dae 50%, #2d9dae 83%, #bdf5fd 100%);
  background: -webkit-linear-gradient(270deg, #a9e9f3 0%, #a9e9f3 10%, #2d9dae 25%, #2d9dae 37%, #2d9dae 50%, #2d9dae 83%, #bdf5fd 100%);
  background: linear-gradient(180deg, #a9e9f3 0%, #a9e9f3 10%, #2d9dae 25%, #2d9dae 37%, #2d9dae 50%, #2d9dae 83%, #bdf5fd 100%);
}

/* =================================
 animation
================================= */
/* =================================
 background
================================= */
.u_bg_1 {
  background: #009fe8;
}

.u_bg_2 {
  background: rgba(0, 159, 232, 0.85);
}

.u_bg_3 {
  background: #f5f5f5;
}

/* =================================
 font
================================= */
.u_font_1 {
  font-family: "Noto Serif JP", serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック", YuGothic, Verdana;
}

/* ======================================================================
 component
====================================================================== */
/* =================================
 title
================================= */
.c_ttl_1 .ja,
.c_ttl_1 .en {
  display: block;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .c_ttl_1 .ja,
  .c_ttl_1 .en {
    text-align: left;
  }
}
.c_ttl_1 .en {
  font-family: "Noto Serif JP", serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック", YuGothic, Verdana;
}

.c_ttl_2 {
  font-family: "Noto Serif JP", serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック", YuGothic, Verdana;
}
.c_ttl_2:after {
  content: '';
  width: 40px;
  height: 1px;
  background: #141414;
  display: block;
  margin: 20px 0 0;
}
@media screen and (min-width: 1025px) {
  .c_ttl_2:after {
    margin: 25px 0 0;
  }
}
.c_ttl_2 .sub_txt {
  margin: 15px 0 0;
}

/* =================================
 buttons
================================= */
.c_btn_1 {
  height: 40px;
  min-width: 180px;
  max-width: 100%;
  display: inline-flex;
  position: relative;
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  border-radius: 1px;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .c_btn_1 {
    min-width: 200px;
    -moz-transition: ease 0.4s;
    -webkit-transition: ease 0.4s;
    transition: ease 0.4s;
  }
}
.c_btn_1:before, .c_btn_1:after {
  content: '';
  position: absolute;
  height: 1px;
  width: 15px;
}
@media screen and (min-width: 1025px) {
  .c_btn_1:before, .c_btn_1:after {
    -moz-transition: ease 0.2s;
    -webkit-transition: ease 0.2s;
    transition: ease 0.2s;
  }
}
.c_btn_1:before {
  right: 0;
}
.c_btn_1:after {
  right: -15px;
}
@media screen and (min-width: 1025px) {
  .c_btn_1:hover:before {
    width: 25px;
  }
}
@media screen and (min-width: 1025px) {
  .c_btn_1:hover:after {
    width: 5px;
    right: -5px;
  }
}
.c_btn_1 .txt {
  color: #fff;
  padding: 0 30px;
}
.c_btn_1._pt1 {
  background: #009fe8;
}
.c_btn_1._pt1:before {
  background: #fff;
}
.c_btn_1._pt1:after {
  background: #009fe8;
}
@media screen and (min-width: 1025px) {
  .c_btn_1._pt1:hover {
    background: #078cc8;
  }
}
@media screen and (min-width: 1025px) {
  .c_btn_1._pt1:hover:after {
    background: #078cc8;
  }
}
.c_btn_1._pt2 {
  border: solid 1px #fff;
}
.c_btn_1._pt2:before, .c_btn_1._pt2:after {
  background: #fff;
}
@media screen and (min-width: 1025px) {
  .c_btn_1._pt2:hover {
    background: #088cc8;
  }
}

.c_btn_2 {
  height: 40px;
  min-width: 180px;
  max-width: 100%;
  background: #0185c1;
  display: inline-flex;
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  border-radius: 1px;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .c_btn_2 {
    min-width: 200px;
  }
}
.c_btn_2 .txt {
  color: #fff;
}

.c_btn_3 {
  width: 100%;
  height: 40px;
  border: solid 1px #009fe8;
  display: inline-flex;
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  border-radius: 1px;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .c_btn_3 {
    width: -moz-calc((100% - 60px) / 4);
    width: -o-calc((100% - 60px) / 4);
    width: -webkit-calc((100% - 60px) / 4);
    width: calc((100% - 60px) / 4);
    -moz-transition: ease 0.4s;
    -webkit-transition: ease 0.4s;
    transition: ease 0.4s;
  }
}
@media screen and (min-width: 1025px) {
  .c_btn_3:hover {
    background: #009fe8;
  }
}
@media screen and (min-width: 1025px) {
  .c_btn_3:hover .txt {
    color: #fff;
  }
}
.c_btn_3 .txt {
  color: #009fe8;
}
@media screen and (min-width: 1025px) {
  .c_btn_3 .txt {
    -moz-transition: ease 0.4s;
    -webkit-transition: ease 0.4s;
    transition: ease 0.4s;
  }
}

.c_btn_4 {
  height: 40px;
  width: 100%;
  padding: 0 20px;
  border: solid 1px #009fe8;
  display: inline-flex;
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  border-radius: 1px;
}
@media screen and (min-width: 1025px) {
  .c_btn_4 {
    width: 270px;
    -moz-transition: ease 0.4s;
    -webkit-transition: ease 0.4s;
    transition: ease 0.4s;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
  }
}
@media screen and (min-width: 1025px) {
  .c_btn_4:hover {
    background: #009fe8;
  }
}
@media screen and (min-width: 1025px) {
  .c_btn_4:hover > .inner:before {
    opacity: 0;
  }
}
@media screen and (min-width: 1025px) {
  .c_btn_4:hover > .inner:after {
    opacity: 1;
  }
}
@media screen and (min-width: 1025px) {
  .c_btn_4:hover > .inner .txt {
    color: #fff;
  }
}
.c_btn_4 > .inner {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.c_btn_4 > .inner:before, .c_btn_4 > .inner:after {
  content: '';
  width: 12px;
  height: 6px;
  margin: 0 20px 0 0;
}
@media screen and (min-width: 1025px) {
  .c_btn_4 > .inner:before, .c_btn_4 > .inner:after {
    margin: 0;
    position: absolute;
    left: 0;
    -moz-transition: ease 0.4s;
    -webkit-transition: ease 0.4s;
    transition: ease 0.4s;
  }
}
.c_btn_4 > .inner:before {
  background: url(../img/common/ico_arrow_01.svg) no-repeat;
}
.c_btn_4 > .inner:after {
  display: none;
  background: url(../img/common/ico_arrow_02.svg) no-repeat;
}
@media screen and (min-width: 1025px) {
  .c_btn_4 > .inner:after {
    display: block;
    opacity: 0;
  }
}
.c_btn_4 > .inner .txt {
  color: #009fe8;
}
@media screen and (min-width: 1025px) {
  .c_btn_4 > .inner .txt {
    padding: 0 0 0 20px;
    -moz-transition: ease 0.4s;
    -webkit-transition: ease 0.4s;
    transition: ease 0.4s;
  }
}

/* =================================
 icon
================================= */
.c_ico_1 {
  width: 105px;
  height: 22px;
  color: #fff;
  display: inline-flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .c_ico_1 {
    width: 130px;
    min-width: 130px;
    height: 24px;
  }
}
.c_ico_1._pt1, .c_ico_1._web {
  background: #36ad93;
}
.c_ico_1._pt2, .c_ico_1._newspaper {
  background: #3ecf81;
}
.c_ico_1._pt3, .c_ico_1._magazine {
  background: #39a5b8;
}
.c_ico_1._tv {
  background: #397bb8;
}
.c_ico_1._radio {
  background: #394eb8;
}
.c_ico_1._book {
  background: #b439b8;
}
.c_ico_1._other {
  background: #8a8a8a;
}

/* =================================
 alerts
================================= */
/* =================================
 pager
================================= */
.c_pager_num {
  text-align: center;
}
.c_pager_num .page-numbers {
  width: 30px;
  height: 30px;
  border: solid 1px #141414;
  margin: 0 3px;
  display: inline-flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
@media screen and (min-width: 1025px) {
  .c_pager_num .page-numbers {
    width: 26px;
    height: 26px;
    margin: 0 5px;
  }
}
.c_pager_num .page-numbers.current {
  background: #141414;
  color: #fff;
}
@media screen and (min-width: 1025px) {
  .c_pager_num .page-numbers.current:hover {
    background: #141414;
    color: #fff;
  }
}
@media screen and (min-width: 1025px) {
  .c_pager_num .page-numbers:hover {
    background: #009fe8;
    color: #fff;
  }
}
.c_pager_num .page-numbers.prev, .c_pager_num .page-numbers.next {
  background: transparent;
  border: 0;
}
.c_pager_num .page-numbers.prev > .ico, .c_pager_num .page-numbers.next > .ico {
  width: 10px;
  height: 10px;
}
@media screen and (min-width: 1025px) {
  .c_pager_num .page-numbers.prev > .ico:hover, .c_pager_num .page-numbers.next > .ico:hover {
    opacity: .7;
  }
}
.c_pager_num .page-numbers.prev > .ico {
  background: url(../img/news/ico_prev.svg) center no-repeat;
}
.c_pager_num .page-numbers.next > .ico {
  background: url(../img/news/ico_next.svg) center no-repeat;
}

/* =================================
 table
================================= */
/* =================================
 forms
================================= */
/* =================================
 list
================================= */
.c_list_1 > .item {
  margin: 0 0 20px;
  padding: 0 0 15px;
  border-bottom: solid 1px #c8c8c8;
}
@media screen and (min-width: 1025px) {
  .c_list_1 > .item {
    margin: 0 0 15px;
    padding: 0;
    border: 0;
  }
}
.c_list_1 > .item:last-child {
  margin: 0;
}
@media screen and (min-width: 1025px) {
  .c_list_1 > .item:hover {
    opacity: .7;
  }
}
@media screen and (min-width: 1025px) {
  .c_list_1 > .item._nolink:hover {
    opacity: 1;
  }
}
.c_list_1 > .item .link_wrap {
  display: block;
}
@media screen and (min-width: 1025px) {
  .c_list_1 > .item .link_wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
  }
}
.c_list_1 > .item .link_wrap .date {
  width: 130px;
  display: inline-block;
}
@media screen and (min-width: 1025px) {
  .c_list_1 > .item .link_wrap .date {
    width: 160px;
    min-width: 160px;
  }
}
@media screen and (min-width: 1025px) {
  .c_list_1 > .item .link_wrap .category {
    margin: 0 20px 0 0;
  }
}
.c_list_1 > .item .link_wrap .ttl_wrap {
  margin: 15px 0 0;
}
@media screen and (min-width: 1025px) {
  .c_list_1 > .item .link_wrap .ttl_wrap {
    margin: 0;
    width: -moz-calc(100% - 310px);
    width: -o-calc(100% - 310px);
    width: -webkit-calc(100% - 310px);
    width: calc(100% - 310px);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}
.c_list_1 > .item .link_wrap .ttl_wrap .media {
  color: #009fe8;
  display: block;
  margin: 0 0 5px;
}
@media screen and (min-width: 1025px) {
  .c_list_1 > .item .link_wrap .ttl_wrap .media {
    display: inline-block;
    margin: 0 20px 0 0;
  }
}
.c_list_1 > .item .link_wrap .ttl_wrap .ttl {
  display: block;
}
@media screen and (min-width: 1025px) {
  .c_list_1 > .item .link_wrap .ttl_wrap .ttl {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

/* =================================
 item
================================= */
.c_item_1 {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: block;
}
@media screen and (min-width: 1025px) {
  .c_item_1 {
    width: auto;
    height: 350px;
  }
}
.c_item_1:before {
  position: absolute;
  right: 0;
}
@media screen and (min-width: 1025px) {
  .c_item_1:before {
    -moz-transition: ease 0.4s;
    -webkit-transition: ease 0.4s;
    transition: ease 0.4s;
  }
}
.c_item_1 .txt_wrap {
  background: rgba(0, 159, 232, 0.85);
  color: #fff;
  padding: 25px 30px;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .c_item_1 .txt_wrap {
    height: 100%;
    padding: 0;
    top: 0;
    left: 0;
    -moz-transition: ease 0.4s;
    -webkit-transition: ease 0.4s;
    transition: ease 0.4s;
  }
}
@media screen and (min-width: 769px) {
  .c_item_1 .txt_wrap > .inner {
    width: 220px;
  }
}
.c_item_1 .txt_wrap > .inner .ttl {
  margin: 0 0 10px;
}
@media screen and (min-width: 1025px) {
  .c_item_1 .txt_wrap > .inner .ttl {
    margin: 0 0 20px;
  }
}
.c_item_1 .txt_wrap > .inner .ttl .en {
  margin: 10px 0 0;
}
@media screen and (min-width: 1025px) {
  .c_item_1 .txt_wrap > .inner .ttl .en {
    margin: 20px 0 0;
  }
}
.c_item_1 .txt_wrap > .inner .btn_wrap {
  text-align: center;
  margin: 30px 0 0;
}
@media screen and (min-width: 1025px) {
  .c_item_1 .txt_wrap > .inner .btn_wrap {
    text-align: left;
  }
}
@media screen and (min-width: 1025px) {
  .c_item_1._pt1:hover .c_btn_1._pt2, .c_item_1._pt2:hover .c_btn_1._pt2 {
    background: #088cc8;
  }
}
@media screen and (min-width: 1025px) {
  .c_item_1._pt1:hover .c_btn_1._pt2:before, .c_item_1._pt2:hover .c_btn_1._pt2:before {
    width: 25px;
  }
}
@media screen and (min-width: 1025px) {
  .c_item_1._pt1:hover .c_btn_1._pt2:after, .c_item_1._pt2:hover .c_btn_1._pt2:after {
    width: 5px;
    right: -5px;
  }
}
@media screen and (min-width: 1025px) {
  .c_item_1._pt1 {
    max-width: 700px;
    width: 50%;
  }
}
@media screen and (min-width: 1025px) {
  .c_item_1._pt1:hover:before {
    -moz-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
  }
}
@media screen and (min-width: 1025px) {
  .c_item_1._pt1:hover .txt_wrap {
    background: rgba(1, 133, 193, 0.85);
  }
}
@media screen and (min-width: 1025px) {
  .c_item_1._pt1 .txt_wrap {
    width: 350px;
  }
}
@media screen and (min-width: 1025px) {
  .c_item_1._pt1_noanimation {
    max-width: 700px;
    width: 50%;
  }
}
@media screen and (min-width: 1025px) {
  .c_item_1._pt1_noanimation .txt_wrap {
    width: 350px;
  }
}
@media screen and (min-width: 1025px) {
  .c_item_1._pt2 {
    max-width: 675px;
  }
}
@media screen and (min-width: 1025px) {
  .c_item_1._pt2:hover:before {
    -moz-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
  }
}
@media screen and (min-width: 1025px) {
  .c_item_1._pt2:hover .txt_wrap {
    background: rgba(1, 133, 193, 0.85);
  }
}
@media screen and (min-width: 1025px) {
  .c_item_1._pt2 .txt_wrap {
    width: 340px;
  }
}
@media screen and (min-width: 1025px) {
  .c_item_1._pt2_noanimation .txt_wrap {
    width: 340px;
  }
}

@media screen and (min-width: 1025px) {
  .c_item_2 {
    padding: 0;
    margin-left: -moz-calc(50% - 700px);
    margin-left: -o-calc(50% - 700px);
    margin-left: -webkit-calc(50% - 700px);
    margin-left: calc(50% - 700px);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}
@media screen and (max-width: 1650px) {
  .c_item_2 {
    margin-left: 0;
  }
}
.c_item_2 .txt_wrap {
  padding: 0 4%;
}
@media screen and (min-width: 1025px) {
  .c_item_2 .txt_wrap {
    padding: 0;
    width: 350px;
    min-width: 350px;
    margin: 0 150px 0 0;
  }
}
.c_item_2 .txt_wrap .main_ttl {
  margin: 0 0 15px;
}
@media screen and (min-width: 1025px) {
  .c_item_2 .txt_wrap .main_ttl {
    margin: 0 0 30px;
  }
}
.c_item_2 .txt_wrap .sub_ttl {
  margin: 0 0 15px;
}
.c_item_2 .img_wrap {
  margin: 35px 0 0;
}
@media screen and (min-width: 1025px) {
  .c_item_2 .img_wrap {
    margin: 0;
    width: 100%;
    max-width: 1920px;
  }
}
.c_item_2 .img_wrap .img {
  max-width: 100%;
}

/* =================================
 tab
================================= */
.c_tab_1 .list {
  border-top: solid 1px #141414;
  border-left: solid 1px #141414;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 1025px) {
  .c_tab_1 .list {
    border-top: 0;
    border-left: 0;
    border-bottom: solid 1px #141414;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
.c_tab_1 .list > .item {
  height: 45px;
  width: 50%;
  border-bottom: solid 1px #141414;
  border-right: solid 1px #141414;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .c_tab_1 .list > .item {
    height: auto;
    width: auto;
    border: 0;
    padding: 0 40px 15px;
    display: block;
    position: relative;
    cursor: pointer;
  }
}
@media screen and (min-width: 1025px) {
  .c_tab_1 .list > .item:hover:before, .c_tab_1 .list > .item._active:before {
    content: '';
    width: 100%;
    height: 4px;
    background: #009fe8;
    position: absolute;
    bottom: -3px;
    left: 0;
  }
}
@media screen and (min-width: 1025px) {
  .c_tab_1 .list > .item:hover {
    color: #009fe8;
  }
}
.c_tab_1 .list > .item._active {
  background: #009fe8;
  color: #fff;
}
@media screen and (min-width: 1025px) {
  .c_tab_1 .list > .item._active {
    background: transparent;
    color: #009fe8;
    position: relative;
  }
}
.c_tab_1 .list > .item._active .link:link, .c_tab_1 .list > .item._active .link:active, .c_tab_1 .list > .item._active .link:visited {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.c_tab_1 .list > .item._active .link:hover {
  color: #fff;
}
@media screen and (min-width: 1025px) {
  .c_tab_1 .list > .item._active .link:link, .c_tab_1 .list > .item._active .link:active, .c_tab_1 .list > .item._active .link:visited {
    color: #009fe8;
    text-decoration: none;
    cursor: pointer;
  }
  .c_tab_1 .list > .item._active .link:hover {
    color: #009fe8;
  }
}
@media screen and (min-width: 1025px) {
  .c_tab_1 .list > .item .link {
    padding: 0 0 15px;
  }
}

/* =================================
 link
================================= */
.c_link_1:after {
  content: '';
  background: url(../img/common/ico_link.svg) no-repeat;
  background-size: cover;
  width: 10px;
  height: 10px;
  display: inline-block;
  margin: 0 0 0 5px;
}

/* ======================================================================
 layout
====================================================================== */
/* =================================
 l_content_size
================================= */
.l_content_size {
  padding: 0 4%;
}
@media screen and (min-width: 1025px) {
  .l_content_size {
    padding: 0 75px;
    max-width: 1550px;
    min-width: 1115px;
    margin: 0 auto;
  }
}

/* =================================
 l_container
================================= */
.l_container {
  position: relative;
}

/* =================================
 l_header
================================= */
.l_header {
  padding: 15px;
  background: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 55px;
  -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
}
.l_header .inner {
  position: relative;
}
.l_header .inner .logo {
  width: 90px;
  display: block;
}
.l_header .inner .logo img {
  max-width: 100%;
}
.l_header .inner .spmenu_btn {
  background: url(../img/common/spmenu_close.svg) no-repeat center top/contain;
  width: 29px;
  height: 31px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
.l_header .inner .spmenu_btn.active {
  background: url(../img/common/spmenu_open.svg) no-repeat center top/contain;
}

/****
bodyに直クラスをつけます
内緒だよ
****/
body.fixed {
  position: fixed;
}

/****
メニュー開いた時のコンテンツだけど描く場所なかったからここに書いたことは内緒
****/
.l_openmenu {
  -moz-transition: ease 0.6s;
  -webkit-transition: ease 0.6s;
  transition: ease 0.6s;
  opacity: 0;
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  background: rgba(0, 159, 232, 0.8);
  height: 100%;
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 55px;
}
.l_openmenu.active {
  opacity: 1;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.l_openmenu .l_footer {
  background: #fff;
}

/* =================================
 l_breadcrumbs
================================= */
.l_breadcrumbs {
  height: 40px;
  margin: 0 0 20px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .l_breadcrumbs {
    margin: 0 0 80px;
    background: linear-gradient(to right, #ffffff 50%, #009fe8 50%);
  }
}
.l_breadcrumbs:before {
  content: '';
  height: 5px;
  background: #009fe8;
  width: 50%;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (min-width: 1025px) {
  .l_breadcrumbs:before {
    display: none;
  }
}
.l_breadcrumbs .breadcrumbs {
  height: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.l_breadcrumbs .breadcrumbs > .inner {
  padding: 10px 0 0;
  height: 100%;
  display: block;
  overflow: scroll;
}
@media screen and (min-width: 1025px) {
  .l_breadcrumbs .breadcrumbs > .inner {
    display: inline-block;
    overflow: auto;
    background: #fff;
    padding: 15px 15px 0 0;
    min-width: -moz-calc(50% + 45px);
    min-width: -o-calc(50% + 45px);
    min-width: -webkit-calc(50% + 45px);
    min-width: calc(50% + 45px);
  }
}
.l_breadcrumbs .breadcrumbs > .inner .home_ico {
  background: url(../img/common/ico_home.svg) no-repeat;
  width: 14px;
  height: 15px;
  display: inline-block;
  margin: 0 5px 0 0;
  position: relative;
  top: 3px;
}
@media screen and (min-width: 1025px) {
  .l_breadcrumbs .breadcrumbs > .inner .home_ico {
    top: 2px;
  }
}
.l_breadcrumbs .breadcrumbs > .inner a:link, .l_breadcrumbs .breadcrumbs > .inner a:active, .l_breadcrumbs .breadcrumbs > .inner a:visited {
  color: #009fe8;
  text-decoration: none;
  cursor: pointer;
}
.l_breadcrumbs .breadcrumbs > .inner a:hover {
  color: #009fe8;
}
@media screen and (min-width: 1025px) {
  .l_breadcrumbs .breadcrumbs > .inner a:hover {
    opacity: .7;
  }
}

/* =================================
 l_main_visual
================================= */
.l_main_visual {
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .l_main_visual {
    height: 350px;
  }
}
.l_main_visual .img {
  width: 100%;
  display: block;
}
@media screen and (min-width: 1025px) {
  .l_main_visual .img {
    min-width: 1920px;
  }
}

/* =================================
 l_content
================================= */
@media screen and (min-width: 1025px) {
  .l_content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}

/* =================================
 l_main
================================= */
@media screen and (min-width: 1025px) {
  .l_main {
    width: -moz-calc(100% - 250px);
    width: -o-calc(100% - 250px);
    width: -webkit-calc(100% - 250px);
    width: calc(100% - 250px);
    min-width: 1115px;
  }
}

/* =================================
 l_side
================================= */
@media screen and (min-width: 1025px) {
  .l_side {
    width: 250px;
    min-width: 250px;
    min-height: 700px;
    background: #fff;
    position: relative;
    height: 100vh;
  }
}
.l_side .l_sideinner {
  width: 250px;
  background: #fff;
  z-index: 2;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -moz-box-shadow: 0 0 10px rgba(50, 50, 50, 0.1);
  -webkit-box-shadow: 0 0 10px rgba(50, 50, 50, 0.1);
  box-shadow: 0 0 10px rgba(50, 50, 50, 0.1);
}
.l_side .l_sideinner .l_sidewrap {
  padding-left: 40px;
  z-index: 3;
}
.l_side .l_sideinner .l_sidewrap .logo {
  display: inline-block;
  margin-bottom: 50px;
}
.l_side .l_sideinner .l_sidewrap .list {
  width: 100%;
}
.l_side .l_sideinner .l_sidewrap .list.current_corp .item:nth-child(1) .link {
  color: #009fe8;
}
.l_side .l_sideinner .l_sidewrap .list.current_corp .item:nth-child(1):before {
  content: '';
}
.l_side .l_sideinner .l_sidewrap .list.current_service .item:nth-child(2) .link {
  color: #009fe8;
}
.l_side .l_sideinner .l_sidewrap .list.current_service .item:nth-child(2):before {
  content: '';
}
.l_side .l_sideinner .l_sidewrap .list.current_news .item:nth-child(3) .link {
  color: #009fe8;
}
.l_side .l_sideinner .l_sidewrap .list.current_news .item:nth-child(3):before {
  content: '';
}
.l_side .l_sideinner .l_sidewrap .list.current_careers .item:nth-child(4) .link {
  color: #009fe8;
}
.l_side .l_sideinner .l_sidewrap .list.current_careers .item:nth-child(4):before {
  content: '';
}
.l_side .l_sideinner .l_sidewrap .list.current_contact .item:nth-child(5) .link {
  color: #009fe8;
}
.l_side .l_sideinner .l_sidewrap .list.current_contact .item:nth-child(5):before {
  content: '';
}
.l_side .l_sideinner .l_sidewrap .list .item {
  margin-bottom: 30px;
  width: 100%;
}
.l_side .l_sideinner .l_sidewrap .list .item:before {
  width: 9px;
  height: 9px;
  background: #009fe8;
  display: inline-block;
  margin-right: 5px;
  border-radius: 4.5px;
}
.l_side .l_sideinner .l_sidewrap .list .item:last-child {
  margin-bottom: 0;
}
.l_side .l_sideinner .l_sidewrap .list .item .link {
  line-height: 1;
  -moz-transition: ease 0.3s;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}
.l_side .l_sideinner .l_sidewrap .list .item .link:hover {
  color: #009fe8;
}
.l_side .l_sideinner .subnav {
  position: fixed;
  left: 40px;
  bottom: 30px;
}
.l_side .l_sideinner .subnav .item {
  margin-top: 15px;
}
.l_side .l_sideinner .subnav .item .linkout {
  font-size: 1.4rem;
  letter-spacing: 1px;
  line-height: 1;
}
.l_side .l_sideinner .subnav .item .linkout:after {
  content: '';
  width: 10px;
  height: 10px;
  background: url(../img/common/icon_link.svg) no-repeat center center;
  display: inline-block;
  margin-left: 5px;
}

.l_meganav {
  -moz-transition: ease 0.8s;
  -webkit-transition: ease 0.8s;
  transition: ease 0.8s;
  opacity: 0;
  -moz-transform: translateX(-700px);
  -ms-transform: translateX(-700px);
  -webkit-transform: translateX(-700px);
  transform: translateX(-700px);
  background: rgba(0, 159, 232, 0.95);
  height: 100vh;
  left: 250px;
  top: 0;
  width: 350px;
  display: block;
  position: fixed;
  z-index: 1;
  padding-left: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.l_meganav.active {
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
}
.l_meganav .mega_inner {
  width: 350px;
}
.l_meganav .mega_inner .navttl {
  margin-bottom: 40px;
  color: #fff;
}
.l_meganav .mega_inner .navttl .ja {
  font-size: 2.2rem;
  letter-spacing: 5px;
  display: block;
  margin-bottom: 15px;
}
.l_meganav .mega_inner .navttl .en {
  font-size: 1.4rem;
  letter-spacing: 1px;
}
.l_meganav .mega_inner .list .item {
  margin-bottom: 25px;
}
.l_meganav .mega_inner .list .item:last-child {
  margin-bottom: 0;
}
.l_meganav .mega_inner .list .item .link {
  color: #fff;
}
.l_meganav .mega_inner .list .item .link._icon:after {
  content: '';
  width: 10px;
  height: 10px;
  background: url(../img/common/icon_link_white.svg) no-repeat center center;
  display: inline-block;
  margin-left: 5px;
}
.l_meganav .cancel_trg {
  height: 100vh;
  display: block;
  width: 100px;
  z-index: 1;
  transform: translateX(67px);
}

/* =================================
 l_footer
================================= */
@media screen and (min-width: 1025px) {
  .l_footer {
    height: 270px;
    border-top: solid 1px #dcdcdc;
  }
}
@media screen and (min-width: 1025px) {
  .l_footer .inner {
    padding: 50px 75px 0;
    max-width: 1550px;
    min-width: 1115px;
    margin: 0 auto;
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}
.l_footer .inner .gotop_btn {
  height: 30px;
  background: #009fe8 url(../img/common/ico_arrow_03.svg) center center no-repeat;
}
@media screen and (min-width: 1025px) {
  .l_footer .inner .gotop_btn {
    cursor: pointer;
    width: 60px;
    top: -30px;
    right: 0;
    position: absolute;
  }
}
@media screen and (min-width: 1025px) {
  .l_footer .inner .gotop_btn:hover {
    opacity: .7;
  }
}
@media screen and (min-width: 1025px) {
  .l_footer .inner > .list {
    margin: 0 45px 0 0;
    min-width: 100px;
  }
}
.l_footer .inner > .list > .item._accordion._open > .link_wrap > .link:before {
  background: url("../img/common/sp/ico_minus.svg") no-repeat;
  height: 2px;
}
.l_footer .inner > .list > .item._accordion > .link_wrap > .link {
  position: relative;
}
.l_footer .inner > .list > .item._accordion > .link_wrap > .link:before {
  content: '';
  background: url("../img/common/sp/ico_plus.svg") no-repeat;
  background-size: cover;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 4%;
}
@media screen and (min-width: 1025px) {
  .l_footer .inner > .list > .item._accordion > .link_wrap > .link:before {
    display: none;
  }
}
.l_footer .inner > .list > .item .child_lsit {
  display: none;
}
@media screen and (min-width: 1025px) {
  .l_footer .inner > .list > .item .child_lsit {
    display: block;
    margin: 10px 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .l_footer .inner > .list > .item .child_lsit > .item {
    margin: 0 0 10px;
  }
}
.l_footer .inner > .list > .item .child_lsit > .item .link {
  padding: 0 8%;
  background: #f0f0f0;
}
.l_footer .inner > .list > .item .child_lsit > .item .link:link, .l_footer .inner > .list > .item .child_lsit > .item .link:active, .l_footer .inner > .list > .item .child_lsit > .item .link:visited {
  color: #646464;
  text-decoration: none;
  cursor: pointer;
}
.l_footer .inner > .list > .item .child_lsit > .item .link:hover {
  color: #646464;
}
@media screen and (min-width: 1025px) {
  .l_footer .inner > .list > .item .child_lsit > .item .link {
    padding: 0;
    background: transparent;
  }
}
@media screen and (min-width: 1025px) {
  .l_footer .inner .ico_list {
    margin: 5px 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .l_footer .inner .ico_list .link {
    margin: 0 30px;
    display: inline-block;
    vertical-align: middle;
  }
}
@media screen and (min-width: 1025px) {
  .l_footer .inner .ico_list .link:last-child {
    margin: 0;
  }
}
@media screen and (min-width: 1025px) {
  .l_footer .inner .ico_list .link .ico_fb {
    width: 32px;
  }
}
@media screen and (min-width: 1025px) {
  .l_footer .inner .ico_list .link .ico_youtube {
    width: 42px;
  }
}
.l_footer .inner .link {
  padding: 0 4%;
  border-bottom: solid 1px #dcdcdc;
  height: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .l_footer .inner .link {
    padding: 0;
    display: inline;
    border: 0;
    height: auto;
    -moz-transition: ease 0.4s;
    -webkit-transition: ease 0.4s;
    transition: ease 0.4s;
  }
}
@media screen and (min-width: 1025px) {
  .l_footer .inner .link:hover {
    opacity: .7;
  }
}
.l_footer .sp_footer {
  padding: 20px 4%;
}
.l_footer .sp_footer .img_wrap {
  margin: 0 0 15px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.l_footer .sp_footer .txt_wrap {
  margin: 0 0 5px;
}
.l_footer .sp_footer .link {
  display: inline-block;
  margin: 0 20px 0 0;
}
.l_footer .sp_footer .link .logo {
  width: 80px;
}
@media screen and (min-width: 1025px) {
  .l_footer .sp_footer .link .logo {
    width: auto;
  }
}
.l_footer .sp_footer .link .ico_fb {
  width: 24px;
}
@media screen and (min-width: 1025px) {
  .l_footer .sp_footer .link .ico_fb {
    width: auto;
  }
}
.l_footer .sp_footer .link .ico_youtube {
  width: 28px;
}
@media screen and (min-width: 1025px) {
  .l_footer .sp_footer .link .ico_youtube {
    width: auto;
  }
}

/* =================================
 l_culture_office
================================= */
.l_culture_office {
  margin: 0 0 40px;
}
@media screen and (min-width: 1025px) {
  .l_culture_office {
    margin: 0 0 95px;
  }
}
@media screen and (min-width: 1025px) {
  .l_culture_office .item_wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}
.l_culture_office .item_wrap > .item._01 {
  margin: 0 0 15px;
}
@media screen and (min-width: 1025px) {
  .l_culture_office .item_wrap > .item._01 {
    margin: 0;
  }
}
.l_culture_office .item_wrap > .item._01:before {
  content: '';
  background: url(../img/common/sp/culture_bg.jpg);
  background-size: cover;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1025px) {
  .l_culture_office .item_wrap > .item._01:before {
    content: url(../img/common/culture_bg.jpg);
    width: auto;
    width: auto;
  }
}
.l_culture_office .item_wrap > .item._02:before {
  content: '';
  background: url(../img/common/sp/office_bg.jpg);
  background-size: cover;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1025px) {
  .l_culture_office .item_wrap > .item._02:before {
    content: url(../img/common/office_bg.jpg);
    width: auto;
    width: auto;
  }
}

/* ======================================================================
 layout p_top
====================================================================== */
/* =================================
 l_main_visual_top
================================= */
.l_main_visual_top > .inner {
  width: 100%;
  background: url(../img/top/sp/kv.jpg) center no-repeat;
  background-size: cover;
  padding: 40px 4% 0;
  position: relative;
  height: -moz-calc(100vh - 55px);
  height: -o-calc(100vh - 55px);
  height: -webkit-calc(100vh - 55px);
  height: calc(100vh - 55px);
}
@media screen and (min-width: 1025px) {
  .l_main_visual_top > .inner {
    padding: 0;
    height: 100vh;
    background: url(../img/top/kv.jpg) center no-repeat;
    background-size: cover;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
  }
}
.l_main_visual_top > .inner .txt_wrap {
  background-size: contain;
  padding: 0 0 0 10px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1025px) {
  .l_main_visual_top > .inner .txt_wrap {
    width: 1400px;
    height: 374px;
    margin: 0 auto;
    padding: 0 0 0 100px;
    background: none;
  }
}
.l_main_visual_top > .inner .txt_wrap .only_5s {
  display: none;
}
@media screen and (max-width: 320px) {
  .l_main_visual_top > .inner .txt_wrap .only_5s {
    display: block;
  }
}
.l_main_visual_top > .inner .scroll_wrap {
  position: absolute;
  overflow: hidden;
  width: 70px;
  bottom: 55px;
  text-align: center;
  height: 20px;
  left: -moz-calc(50% - 20px);
  left: -o-calc(50% - 20px);
  left: -webkit-calc(50% - 20px);
  left: calc(50% - 20px);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media screen and (min-width: 1025px) {
  .l_main_visual_top > .inner .scroll_wrap {
    bottom: 50px;
    left: 50%;
    height: auto;
    z-index: 2;
  }
}
.l_main_visual_top > .inner .scroll_wrap:before {
  content: '';
  height: 1px;
  width: 70px;
  background: #fff;
  display: block;
  position: absolute;
  bottom: 0;
}
@-webkit-keyframes scroll {
  0% {
    left: -20px;
  }
  10% {
    left: -20px;
  }
  100% {
    left: 90px;
  }
}
@-moz-keyframes scroll {
  0% {
    left: -20px;
  }
  10% {
    left: -20px;
  }
  100% {
    left: 90px;
  }
}
@keyframes scroll {
  0% {
    left: -20px;
  }
  10% {
    left: -20px;
  }
  100% {
    left: 90px;
  }
}
.l_main_visual_top > .inner .scroll_wrap:after {
  content: '';
  height: 1px;
  width: 20px;
  background: #009fe8;
  position: absolute;
  left: -20px;
  bottom: 0;
  -webkit-animation: scroll 1.5s ease infinite;
  -moz-animation: scroll 1.5s ease infinite;
  animation: scroll 1.5s ease infinite;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}
.l_main_visual_top > .inner .particles-js-canvas-el {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (min-width: 1025px) {
  .l_main_visual_top > .inner .particles-js-canvas-el {
    width: 400px;
    height: 400px;
  }
}
.l_main_visual_top:after {
  content: '';
  height: 25px;
  background: #009fe8;
  display: block;
  width: 80%;
  margin: 0 0 0 20%;
}
@media screen and (min-width: 1025px) {
  .l_main_visual_top:after {
    height: 40px;
    width: -moz-calc(50% + 45px);
    width: -o-calc(50% + 45px);
    width: -webkit-calc(50% + 45px);
    width: calc(50% + 45px);
    margin-left: -moz-calc(50% - 45px);
    margin-left: -o-calc(50% - 45px);
    margin-left: -webkit-calc(50% - 45px);
    margin-left: calc(50% - 45px);
  }
}

/* ======================================================================
 z-index
====================================================================== */
.l_loader {
  z-index: 1000;
}

.l_menu_sp {
  z-index: 999;
}

.l_header {
  z-index: 998;
}

.l_header_sp {
  z-index: 998;
}

.c_btn_p_top {
  z-index: 997;
}

.l_side {
  z-index: 996;
}

/* =================================
 p_top
================================= */
.l_menu_sp_top {
  z-index: 999;
}

.l_header_top {
  z-index: 998;
}

.l_header_sp_top {
  z-index: 998;
}

.c_btn_p_top_top {
  z-index: 997;
}

.l_side_top {
  z-index: 996;
}

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