@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: #202020;
  font-family: "Quicksand", "Noto Sans JP", "メイリオ", Meiryo, "游ゴシック", YuGothic, Verdana, sans-serif;
  font-weight: 500;
  word-wrap: break-word;
  word-break: break-all;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
  body {
    font-family: "Quicksand", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック", YuGothic, Verdana, sans-serif;
  }
}

html, body {
  width: 100%;
  height: 100%;
}

.page {
  width: 100%;
  margin: 0 auto;
}

/* border-box */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* h1 - h6 */
h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
}

/* a */
a:link {
  color: #202020;
  text-decoration: none;
  cursor: pointer;
}
a:visited {
  color: #202020;
  text-decoration: none;
}
a:hover {
  color: #202020;
  text-decoration: none;
}
a:active {
  color: #202020;
  text-decoration: none;
}

/* 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;
  -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 #202020;
}

input[type='radio'], input[type='checkbox'] {
  -moz-appearance: none;
  -webkit-appearance: none;
}

/* placeholder */
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #888;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #888;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #888;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #888;
}
input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
  color: #888;
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: #888;
}
input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: #888;
}
input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: #888;
}

/* ======================================================================
 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: 769px) {
  .u_pc {
    display: block;
  }

  .u_sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .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%;
}

@media screen and (max-width: 768px) {
  .u_max_w_100 {
    max-width: 100%;
  }
}

/* =================================
 text
================================= */
.u_txt_1 {
  font-size: 1.6em;
  line-height: 2.25;
  letter-spacing: .04em;
}
@media screen and (max-width: 768px) {
  .u_txt_1 {
    font-size: 1.5em;
    line-height: 2;
    letter-spacing: .06em;
  }
}

.u_txt_2 {
  font-size: 1.6em;
  line-height: 1.75;
  letter-spacing: .04em;
}
@media screen and (max-width: 768px) {
  .u_txt_2 {
    font-size: 1.5em;
    line-height: 2;
    letter-spacing: .06em;
  }
}

.u_txt_3 {
  font-size: 1.2em;
  line-height: 1;
  letter-spacing: .06em;
  font-weight: 400;
}

.u_txt_4 {
  font-size: 1.6em;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .u_txt_4 {
    font-size: 1.3em;
  }
}

.u_txt_5 {
  font-size: 3.4em;
  line-height: 1;
  letter-spacing: .06em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .u_txt_5 {
    font-size: 1.7em;
  }
}

.u_txt_6 {
  font-size: 1.8em;
  line-height: 1;
  letter-spacing: .06em;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .u_txt_6 {
    font-size: 1em;
  }
}

.u_txt_7 {
  font-size: 3em;
  line-height: 1;
  letter-spacing: .06em;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .u_txt_7 {
    font-size: 1.5em;
  }
}

.u_txt_8 {
  font-size: 2.6em;
  line-height: 1.5;
  letter-spacing: .06;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .u_txt_8 {
    font-size: 1.3em;
  }
}

.u_txt_9 {
  font-size: 3.2em;
  line-height: 1;
  letter-spacing: .06em;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .u_txt_9 {
    font-size: 1.6em;
  }
}

.u_txt_10 {
  font-size: 2.4em;
  line-height: 1;
  letter-spacing: .06em;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .u_txt_10 {
    font-size: 1.2em;
  }
}

.u_txt_11 {
  font-size: 2em;
  line-height: 1;
  letter-spacing: .06em;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .u_txt_11 {
    font-size: 1em;
  }
}

.u_txt_12 {
  font-size: 1.6em;
  line-height: 1;
  letter-spacing: .06em;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .u_txt_12 {
    font-size: 1em;
  }
}

.u_txt_13 {
  font-size: 2em;
  line-height: 2;
  letter-spacing: .06em;
  font-weight: 500;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "游ゴシック", YuGothic, Verdana, sans-serif;
}
@media screen and (max-width: 768px) {
  .u_txt_13 {
    font-size: 1.8em;
    line-height: 1.5;
    font-family: "Quicksand", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック", YuGothic, Verdana, sans-serif;
  }
}

.u_txt_14 {
  font-size: 1.6em;
  line-height: 2;
  letter-spacing: .06em;
  font-weight: 600;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "游ゴシック", YuGothic, Verdana, sans-serif;
}
@media screen and (max-width: 768px) {
  .u_txt_14 {
    font-size: 1.5em;
    line-height: 1.5;
    font-family: "Quicksand", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック", YuGothic, Verdana, sans-serif;
  }
}

.u_txt_15 {
  font-size: 1.2em;
  line-height: 1.5;
  letter-spacing: .06em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .u_txt_15 {
    font-size: 1.3em;
  }
}

.u_txt_16 {
  font-size: 2.6em;
  line-height: 2;
  letter-spacing: .06em;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .u_txt_16 {
    font-size: 1.9em;
    line-height: 1.5;
  }
}

.u_txt_17 {
  font-size: 2.6em;
  line-height: 1.1;
  letter-spacing: .06em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .u_txt_17 {
    font-size: 1.8em;
    line-height: 1.5;
  }
}

.u_txt_18 {
  font-size: 2.4em;
  line-height: 1.5;
  letter-spacing: .06em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .u_txt_18 {
    font-size: 1.6em;
    line-height: 1.5;
  }
}

.u_txt_19 {
  font-size: 1.6em;
  line-height: 2;
  letter-spacing: .06em;
  font-weight: 500;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "游ゴシック", YuGothic, Verdana, sans-serif;
}
@media screen and (max-width: 768px) {
  .u_txt_19 {
    font-size: 1.5em;
    font-weight: normal;
    line-height: 1.7;
  }
}

.u_txt_20 {
  font-size: 1.6em;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .u_txt_20 {
    font-size: 1.3em;
  }
}

.u_txt_21 {
  font-size: 2.8em;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .u_txt_21 {
    font-size: 2.8em;
  }
}

/* =================================
 box shadow
================================= */
.u_box_shadow {
  -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);
}

/* =================================
 hover opacity
================================= */
.u_opacity {
  display: inline-block;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.u_opacity._hover {
  opacity: .7;
}
@media screen and (max-width: 768px) {
  .u_opacity._hover {
    opacity: 1;
  }
}

/* =================================
 line_marker
================================= */
.u_point {
  background: linear-gradient(rgba(0, 0, 0, 0) 75%, #fee24a 75%);
  font-weight: bold;
}

/* =================================
 check
================================= */
.u_check {
  color: #f95b5b;
  font-weight: bold;
}

/* ======================================================================
 component
====================================================================== */
/* =================================
 buttons
================================= */
@media screen and (max-width: 768px) {
  .c_btn_p_top_wrapper {
    position: relative;
    text-align: center;
  }
}
.c_btn_p_top_wrapper .c_btn_p_top {
  position: fixed;
  right: 100px;
  bottom: 50px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .c_btn_p_top_wrapper .c_btn_p_top {
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: -85px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .c_btn_p_top_wrapper .c_btn_p_top .img {
    height: 75px;
  }
}

.c_btn_1 {
  height: 50px;
  line-height: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  border: solid 2px #018fa7;
  color: #018fa7;
  background: #fff;
  padding: 0 60px;
  display: inline-block;
  font-size: 1.8em;
  overflow: hidden;
  position: relative;
  z-index: 0;
  cursor: pointer;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .c_btn_1 {
    font-weight: 600;
  }
}
.c_btn_1:link, .c_btn_1:visited, .c_btn_1:hover, .c_btn_1:active {
  color: #018fa7;
}
.c_btn_1 .effect {
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
}
@media all and (-ms-high-contrast: none) {
  .c_btn_1 .effect {
    display: none;
  }
}
.c_btn_1 .effect:before {
  position: relative;
  content: '';
  display: block;
  margin-top: 100%;
}
.c_btn_1 .effect:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.c_btn_1:hover {
  background: #018fa7;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c_btn_1:hover {
    background: #fff;
    color: #018fa7;
  }
}
.c_btn_1:hover .effect {
  -webkit-animation: anim-out 0.75s;
  animation: anim-out 0.75s;
}
@media screen and (max-width: 768px) {
  .c_btn_1:hover .effect {
    -webkit-animation: none;
    animation: none;
  }
}
.c_btn_1:hover .effect:after {
  -webkit-animation: anim-out-pseudo 0.75s;
  animation: anim-out-pseudo 0.75s;
}
@media screen and (max-width: 768px) {
  .c_btn_1:hover .effect:after {
    -webkit-animation: none;
    animation: none;
  }
}

@-webkit-keyframes anim-out {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}
@keyframes anim-out {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}
@-webkit-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }

  100% {
    background: transparent;
  }
}
@keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }

  100% {
    background: transparent;
  }
}
@media screen and (max-width: 768px) {
  .c_btn_2 {
    height: 60px;
    width: 345px;
    max-width: 100%;
    position: relative;
    background: #f95b5b;
    display: block;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
  }
  .c_btn_2 .txt {
    color: #fff;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    font-weight: 600;
  }
}
@media screen and (max-width: 320px) {
  .c_btn_2 .txt {
    font-size: 1.3em;
  }
}

.c_btn_3 {
  height: 50px;
  line-height: 45px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  border: solid 2px #018fa7;
  color: #018fa7;
  background: #fff;
  padding: 0 85px 0 60px;
  display: inline-block;
  font-size: 1.8em;
  overflow: hidden;
  position: relative;
  z-index: 0;
  cursor: pointer;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "游ゴシック", YuGothic, Verdana, sans-serif;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .c_btn_3 {
    font-weight: 600;
  }
}
.c_btn_3:link, .c_btn_3:visited, .c_btn_3:hover, .c_btn_3:active {
  color: #018fa7;
}
.c_btn_3 .effect {
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
}
@media all and (-ms-high-contrast: none) {
  .c_btn_3 .effect {
    display: none;
  }
}
.c_btn_3 .effect:before {
  position: relative;
  content: '';
  display: block;
  margin-top: 100%;
}
.c_btn_3 .effect:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.c_btn_3:hover {
  background: #018fa7;
  color: #fff;
}
.c_btn_3:hover .c_ico_4 .wrap .vertical {
  background: #fff;
}
.c_btn_3:hover .c_ico_4 .wrap .horizontal {
  background: #fff;
}
@media screen and (max-width: 768px) {
  .c_btn_3:hover {
    background: #fff;
    color: #018fa7;
  }
}
.c_btn_3:hover .effect {
  -webkit-animation: anim-out 0.75s;
  animation: anim-out 0.75s;
}
@media screen and (max-width: 768px) {
  .c_btn_3:hover .effect {
    -webkit-animation: none;
    animation: none;
  }
}
.c_btn_3:hover .effect:after {
  -webkit-animation: anim-out-pseudo 0.75s;
  animation: anim-out-pseudo 0.75s;
}
@media screen and (max-width: 768px) {
  .c_btn_3:hover .effect:after {
    -webkit-animation: none;
    animation: none;
  }
}
.c_btn_3 .c_ico_4 {
  width: 11px;
  height: 11px;
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
  top: 50%;
  right: 0;
  right: 57px;
}
.c_btn_3 .c_ico_4 .wrap .vertical {
  height: 1px;
}
.c_btn_3 .c_ico_4 .wrap .horizontal {
  height: 1px;
}

.c_btn_4 {
  height: 50px;
  line-height: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  border: solid 2px #fff;
  color: #fff;
  background: none;
  padding: 0 60px;
  display: inline-block;
  font-size: 1.8em;
  overflow: hidden;
  position: relative;
  z-index: 0;
  cursor: pointer;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .c_btn_4 {
    font-weight: 600;
  }
}
.c_btn_4:link, .c_btn_4:visited, .c_btn_4:hover, .c_btn_4:active {
  color: #018fa7;
}
.c_btn_4 .effect {
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
}
@media all and (-ms-high-contrast: none) {
  .c_btn_4 .effect {
    display: none;
  }
}
.c_btn_4 .effect:before {
  position: relative;
  content: '';
  display: block;
  margin-top: 100%;
}
.c_btn_4 .effect:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.c_btn_4:hover {
  background: #018fa7;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c_btn_4:hover {
    background: #fff;
    color: #018fa7;
  }
}
.c_btn_4:hover .effect {
  -webkit-animation: anim-out 0.75s;
  animation: anim-out 0.75s;
}
@media screen and (max-width: 768px) {
  .c_btn_4:hover .effect {
    -webkit-animation: none;
    animation: none;
  }
}
.c_btn_4:hover .effect:after {
  -webkit-animation: anim-out-pseudo 0.75s;
  animation: anim-out-pseudo 0.75s;
}
@media screen and (max-width: 768px) {
  .c_btn_4:hover .effect:after {
    -webkit-animation: none;
    animation: none;
  }
}

@-webkit-keyframes anim-out {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}
@keyframes anim-out {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}
@-webkit-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }

  100% {
    background: transparent;
  }
}
@keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }

  100% {
    background: transparent;
  }
}
.c_fixed_btn {
  position: fixed;
  right: 0;
  bottom: 200px;
}
@media screen and (max-width: 768px) {
  .c_fixed_btn {
    width: 100%;
    background: rgba(32, 32, 32, 0.9);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
  }
}
@media screen and (max-width: 768px) {
  .c_fixed_btn .txt {
    font-size: 1.3em;
    letter-spacing: .06em;
    line-height: 1.5;
    color: #fff;
    display: inline-table;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    font-weight: 600;
  }
}
.c_fixed_btn .txt_block {
  width: 115px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 320px) {
  .c_fixed_btn .txt_block .txt {
    font-size: 1.1em;
  }
}
@media screen and (max-width: 360px) {
  .c_fixed_btn .txt_block .txt {
    font-size: 1.1em;
  }
}
.c_fixed_btn .btn_block {
  width: 80px;
  height: 300px;
  background: #f95b5b;
  position: relative;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -moz-border-radius: 6px 0 0 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px 0 0 6px;
}
@media screen and (max-width: 768px) {
  .c_fixed_btn .btn_block {
    height: 60px;
    width: 235px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
  }
}
.c_fixed_btn .btn_block._hover {
  background: #e93a3a;
}
@media screen and (max-width: 768px) {
  .c_fixed_btn .btn_block._hover {
    background: #f95b5b;
  }
}
.c_fixed_btn .btn_block .btn {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .c_fixed_btn {
    bottom: 0;
    padding: 10px;
  }
}
.c_fixed_btn .img {
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

/* =================================
 icon
================================= */
.c_ico_1 {
  display: inline-block;
  height: 20px;
  padding: 0 5px;
  font-size: 1.3em;
  line-height: 18px;
  font-weight: 400;
  border: solid 1px #505050;
  margin: 0 5px 5px 0;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .c_ico_1 {
    font-size: .9em;
    height: 15px;
    line-height: 15px;
    padding: 0 5px;
    margin: 0 3px 3px 0;
  }
}
.c_ico_1:before {
  content: '#';
}

.c_ico_2 {
  display: inline-block;
  width: 50px;
  height: 50px;
  font-size: 1.6em;
  font-weight: 600;
  text-align: center;
  line-height: 50px;
  background-color: #fee24a;
  color: #202020;
}
@media screen and (max-width: 768px) {
  .c_ico_2 {
    width: 33px;
    height: 33px;
    line-height: 33px;
    font-size: 1em;
  }
}

.c_ico_3 {
  padding: 0 25px;
  display: inline-block;
  border: 1px solid #202020;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.c_ico_3:hover {
  border: 1px solid #018fa7;
  background: #018fa7;
}
.c_ico_3:hover p {
  color: #fff;
}

.c_ico_4 {
  display: block;
  width: 9px;
  height: 9px;
}
.c_ico_4 .wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.c_ico_4 .wrap .horizontal {
  width: 100%;
  height: 2px;
  display: block;
  background: #018fa7;
  position: absolute;
  top: 1px;
  left: 50%;
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.c_ico_4 .wrap .vertical {
  width: 100%;
  height: 2px;
  display: block;
  background: #018fa7;
  position: absolute;
  bottom: 1px;
  left: 50%;
  -moz-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

/* =================================
 article_box
================================= */
.article_block .c_article_1 {
  display: inline-block;
  width: 350px;
  float: left;
  position: relative;
}
.article_block .c_article_1 > .inner {
  border: solid 1px #dcdcdc;
  position: relative;
  background: #fff;
  width: 100%;
  *zoom: 1;
  -moz-transition: 0.2s;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.article_block .c_article_1 > .inner:after {
  display: block;
  visibility: hidden;
  clear: both;
  overflow: hidden;
  height: 0;
  content: '\0020';
}
.article_block .c_article_1 > .inner .c_ico_2 {
  position: absolute;
  top: -1px;
  left: 20px;
}
.article_block .c_article_1 > .inner .img_block {
  text-align: center;
  width: 100%;
  height: 225px;
  position: relative;
  overflow: hidden;
}
.article_block .c_article_1 > .inner .img_block .thumb {
  min-width: 100%;
  height: 100%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  top: calc(50% - 1px);
}
.article_block .c_article_1 > .inner .txt_block {
  min-height: 200px;
  padding: 20px;
  position: relative;
  line-height: 2.25;
  letter-spacing: .04em;
}
@media screen and (max-width: 768px) {
  .article_block .c_article_1 > .inner .txt_block {
    min-height: auto;
  }
}
.article_block .c_article_1 > .inner .txt_block .txt {
  display: inline;
  font-weight: 600;
}
.article_block .c_article_1 > .inner .txt_block .date {
  text-align: right;
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 1em;
  color: #dcdcdc;
}
@media screen and (max-width: 768px) {
  .article_block .c_article_1 > .inner .txt_block .date {
    right: 10px;
    bottom: 10px;
  }
}
.article_block .c_article_1:before {
  content: '';
  background: #018fa7;
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
}
@media screen and (max-width: 768px) {
  .article_block .c_article_1:before {
    background: none;
  }
}
.article_block .c_article_1._hover > .inner {
  -moz-transform: translate3d(-10px, -10px, 0);
  -ms-transform: translate3d(-10px, -10px, 0);
  -webkit-transform: translate3d(-10px, -10px, 0);
  transform: translate3d(-10px, -10px, 0);
}
.article_block .c_article_1._hover > .inner .txt_block .txt {
  border-bottom: solid 1px #505050;
}
.article_block .c_article_2 {
  display: inline-block;
  width: 505px;
  height: 150px;
  float: left;
  position: relative;
}
.article_block .c_article_2 > .inner {
  border: solid 1px #dcdcdc;
  position: relative;
  background: #fff;
  width: 100%;
  height: 100%;
  *zoom: 1;
  -moz-transition: 0.2s;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.article_block .c_article_2 > .inner:after {
  display: block;
  visibility: hidden;
  clear: both;
  overflow: hidden;
  height: 0;
  content: '\0020';
}
.article_block .c_article_2 > .inner .c_ico_2 {
  position: absolute;
  top: -1px;
  left: 20px;
}
.article_block .c_article_2 > .inner .img_block {
  float: left;
  text-align: center;
  width: 230px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.article_block .c_article_2 > .inner .img_block .thumb {
  min-width: 100%;
  height: 100%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
.article_block .c_article_2 > .inner .txt_block {
  float: left;
  padding: 20px;
  width: calc(100% - 230px);
  position: relative;
  height: 100%;
  line-height: 2;
}
.article_block .c_article_2 > .inner .txt_block .txt {
  display: inline;
}
.article_block .c_article_2 > .inner .txt_block .date {
  text-align: right;
  color: #dcdcdc;
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 1em;
}
@media screen and (max-width: 768px) {
  .article_block .c_article_2 > .inner .txt_block .date {
    right: 10px;
    bottom: 10px;
  }
}
.article_block .c_article_2:before {
  content: '';
  background: #018fa7;
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
}
.article_block .c_article_2._hover > .inner {
  -moz-transform: translate3d(-10px, -10px, 0);
  -ms-transform: translate3d(-10px, -10px, 0);
  -webkit-transform: translate3d(-10px, -10px, 0);
  transform: translate3d(-10px, -10px, 0);
}
.article_block .c_article_2._hover > .inner .txt_block .txt {
  border-bottom: solid 1px #505050;
}
@media screen and (max-width: 768px) {
  .article_block .c_article_1,
  .article_block .c_article_2 {
    width: calc(50% - 8px);
    height: auto;
  }
  .article_block .c_article_1 > .inner .img_block,
  .article_block .c_article_2 > .inner .img_block {
    float: none;
    height: 110px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) and (min-width: 768px) {
  .article_block .c_article_1 > .inner .img_block,
  .article_block .c_article_2 > .inner .img_block {
    height: 220px;
  }
}
@media screen and (max-width: 768px) {
  .article_block .c_article_1 > .inner .img_block .thumb,
  .article_block .c_article_2 > .inner .img_block .thumb {
    min-height: 100%;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    top: calc(50% - 1px);
  }
}
@media screen and (max-width: 768px) and (min-width: 768px) {
  .article_block .c_article_1 > .inner .img_block .thumb,
  .article_block .c_article_2 > .inner .img_block .thumb {
    min-height: auto;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .article_block .c_article_1 > .inner .txt_block,
  .article_block .c_article_2 > .inner .txt_block {
    float: none;
    width: 100%;
    padding: 10px 10px 25px;
  }
  .article_block .c_article_1 > .inner .txt_block .cat_block,
  .article_block .c_article_2 > .inner .txt_block .cat_block {
    height: initial;
    line-height: 20px;
  }
  .article_block .c_article_1._hover > .inner,
  .article_block .c_article_2._hover > .inner {
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }
  .article_block .c_article_1._hover > .inner .txt_block .txt,
  .article_block .c_article_2._hover > .inner .txt_block .txt {
    border: 0;
  }
}

/* =================================
 単一article
================================= */
.c_article_1 {
  display: inline-block;
  width: 350px;
  float: left;
  position: relative;
  margin: 0 0 30px 25px;
}
@media screen and (max-width: 768px) {
  .c_article_1 {
    margin: 0 0 15px 15px;
  }
}
.c_article_1:nth-child(3n+1) {
  margin: 0 0 30px;
}
@media screen and (max-width: 768px) {
  .c_article_1:nth-child(3n+1) {
    margin: 0 0 15px 15px;
  }
}
@media screen and (max-width: 768px) {
  .c_article_1:nth-child(odd) {
    margin: 0 0 15px 0;
  }
}
@media screen and (max-width: 768px) {
  .c_article_1 {
    width: calc(50% - 8px);
    height: auto;
  }
  .c_article_1 > .inner div.img_block {
    float: none;
    height: 110px;
    width: 100%;
  }
  .c_article_1 > .inner div.img_block .thumb {
    min-height: 100%;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    top: calc(50% - 1px);
  }
  .c_article_1 > .inner .txt_block {
    float: none;
    width: 100%;
    padding: 10px 10px 25px;
  }
  .c_article_1 > .inner .txt_block .cat_block {
    height: 40px;
  }
  .c_article_1._hover > .inner {
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }
  .c_article_1._hover > .inner .txt_block .txt {
    border: 0;
  }
}
.c_article_1 > .inner {
  border: solid 1px #dcdcdc;
  position: relative;
  background: #fff;
  width: 100%;
  *zoom: 1;
  -moz-transition: 0.2s;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.c_article_1 > .inner:after {
  display: block;
  visibility: hidden;
  clear: both;
  overflow: hidden;
  height: 0;
  content: '\0020';
}
.c_article_1 > .inner .c_ico_2 {
  position: absolute;
  top: -1px;
  left: 20px;
}
.c_article_1 > .inner .img_block {
  text-align: center;
  width: 100%;
  height: 225px;
  position: relative;
  overflow: hidden;
}
.c_article_1 > .inner .img_block .thumb {
  min-width: 100%;
  height: 100%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  top: calc(50% - 1px);
}
.c_article_1 > .inner .txt_block {
  min-height: 200px;
  padding: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c_article_1 > .inner .txt_block {
    min-height: auto;
  }
}
.c_article_1 > .inner .txt_block .txt {
  display: inline;
}
.c_article_1 > .inner .txt_block .date {
  text-align: right;
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: #dcdcdc;
}
@media screen and (max-width: 768px) {
  .c_article_1 > .inner .txt_block .date {
    right: 10px;
    bottom: 10px;
  }
}
.c_article_1:before {
  content: '';
  background: #018fa7;
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
}
@media screen and (max-width: 768px) {
  .c_article_1:before {
    background: none;
  }
}
.c_article_1._hover > .inner {
  -moz-transform: translate3d(-10px, -10px, 0);
  -ms-transform: translate3d(-10px, -10px, 0);
  -webkit-transform: translate3d(-10px, -10px, 0);
  transform: translate3d(-10px, -10px, 0);
}
.c_article_1._hover > .inner .txt_block .txt {
  border-bottom: solid 1px #505050;
}

/* =================================
 c_search_block
================================= */
.c_search_block {
  position: relative;
}
.c_search_block input.search_window {
  font-size: 1.4em;
  width: 100%;
  border: solid 1px #dcdcdc;
  height: 40px;
  padding: 0 50px 0 20px;
  caret-color: #202020;
}
.c_search_block input.search_window:placeholder-shown {
  color: #dcdcdc;
}
.c_search_block input.search_window::-webkit-input-placeholder {
  color: #dcdcdc;
}
.c_search_block input.search_window:-moz-placeholder {
  color: #dcdcdc;
  opacity: 1;
}
.c_search_block input.search_window::-moz-placeholder {
  color: #dcdcdc;
  opacity: 1;
}
.c_search_block input.search_window:-ms-input-placeholder {
  color: #dcdcdc;
}
@media screen and (max-width: 768px) {
  .c_search_block input.search_window {
    padding: 0 60px 0 20px;
  }
}
.c_search_block .search_submit {
  width: 50px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .c_search_block .search_submit {
    width: 60px;
    right: 15px;
  }
}
.c_search_block .search_submit .fa-search {
  font-size: 1.4em;
  color: #dcdcdc;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
  top: 50%;
  right: 0;
  right: 20px;
}
.c_search_block .search_submit._active .fa-search {
  color: #018fa7;
}

/* =================================
 pager
================================= */
.c_pagination {
  clear: both;
  padding: 50px 0 0;
  font-size: 1.6em;
}
@media screen and (max-width: 768px) {
  .c_pagination {
    padding: 25px 0 0;
    font-size: 1.5em;
  }
}
.c_pagination .inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -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;
}
.c_pagination .inner a {
  float: left;
  margin: 0 15px;
  text-align: center;
  line-height: 46px;
  width: 50px;
  height: 50px;
  border: solid 2px #018fa7;
  border-radius: 50%;
  color: #018fa7;
  background: #fff;
  display: block;
  position: relative;
  font-weight: bold;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.c_pagination .inner a:hover {
  background: #018fa7;
  color: #fff;
}
.c_pagination .inner a:hover span {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c_pagination .inner a {
    min-width: 50px;
    height: 50px;
    margin: 0 10px;
    line-height: 50px;
  }
}
.c_pagination .inner > span {
  float: left;
  margin: 0 15px;
  text-align: center;
  line-height: 46px;
  border: 1px solid #000;
  width: 50px;
  height: 50px;
  border: solid 2px #018fa7;
  border-radius: 50%;
  background: #018fa7;
  color: #fff;
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c_pagination .inner > span {
    min-width: 50px;
    height: 50px;
    margin: 0 10px;
    line-height: 50px;
  }
}
.c_pagination .inner > span.current {
  font-weight: bold;
}

.c_prev_next_nav {
  clear: both;
  padding: 70px 0 0;
}
@media screen and (max-width: 768px) {
  .c_prev_next_nav {
    padding: 30px 0 0;
  }
}
.c_prev_next_nav ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -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;
}
.c_prev_next_nav ul li.prev a, .c_prev_next_nav ul li.next a {
  font-size: 1.8em;
  margin: 0 15px;
  text-align: center;
  line-height: 46px;
  width: 50px;
  height: 50px;
  border: solid 2px #018fa7;
  border-radius: 50%;
  background: #fff;
  color: #018fa7;
  display: block;
  position: relative;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c_prev_next_nav ul li.prev a._hover, .c_prev_next_nav ul li.next a._hover {
  background: #018fa7;
  color: #fff;
}
@media screen and (max-width: 360px) {
  .c_prev_next_nav ul li.curr .c_btn_1 {
    padding: 0 30px;
  }
}

.c_pager_1 {
  width: 50px;
  height: 50px;
  border: solid 2px #018fa7;
  border-radius: 50%;
  color: #018fa7;
  display: block;
  position: relative;
}
.c_pager_1:hover {
  background: #018fa7;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.c_pager_1:hover div.inner div.arrow i {
  background: #fff;
}
.c_pager_1 .inner {
  width: 9px;
  height: 9px;
  position: absolute;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.c_pager_1 .inner .arrow {
  position: relative;
}
.c_pager_1 .inner .arrow i.border_1 {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #018fa7;
  left: 50%;
  top: 3px;
  display: block;
  -moz-transform: translate(-50%, -50%) rotate(-30deg);
  -ms-transform: translate(-50%, -50%) rotate(-30deg);
  -webkit-transform: translate(-50%, -50%) rotate(-30deg);
  transform: translate(-50%, -50%) rotate(-30deg);
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.c_pager_1 .inner .arrow i.border_2 {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #018fa7;
  left: 50%;
  top: 7px;
  display: block;
  -moz-transform: translate(-50%, -50%) rotate(30deg);
  -ms-transform: translate(-50%, -50%) rotate(30deg);
  -webkit-transform: translate(-50%, -50%) rotate(30deg);
  transform: translate(-50%, -50%) rotate(30deg);
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.c_pager_2 {
  width: 50px;
  height: 50px;
  border: solid 2px #018fa7;
  border-radius: 50%;
  color: #018fa7;
  display: block;
  position: relative;
}
.c_pager_2:hover {
  background: #018fa7;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.c_pager_2:hover div.inner div.arrow i {
  background: #fff;
}
.c_pager_2 .inner {
  width: 9px;
  height: 9px;
  position: absolute;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.c_pager_2 .inner .arrow {
  width: 100%;
  height: 100%;
  position: relative;
}
.c_pager_2 .inner .arrow i.border_1 {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #018fa7;
  left: 50%;
  top: 3px;
  display: block;
  -moz-transform: translate(-50%, -50%) rotate(30deg);
  -ms-transform: translate(-50%, -50%) rotate(30deg);
  -webkit-transform: translate(-50%, -50%) rotate(30deg);
  transform: translate(-50%, -50%) rotate(30deg);
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.c_pager_2 .inner .arrow i.border_2 {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #018fa7;
  left: 50%;
  top: 7px;
  display: block;
  -moz-transform: translate(-50%, -50%) rotate(-30deg);
  -ms-transform: translate(-50%, -50%) rotate(-30deg);
  -webkit-transform: translate(-50%, -50%) rotate(-30deg);
  transform: translate(-50%, -50%) rotate(-30deg);
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

/* =================================
 table
================================= */
/* =================================
 forms
================================= */
/* =================================
 list
================================= */
.c_list_1 {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .c_list_1 {
    padding: 10px;
  }
}
.c_list_1 .item {
  margin: 0 0 20px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .c_list_1 .item {
    margin: 0 0 10px;
  }
}
.c_list_1 .item:last-child {
  margin: 0;
}
.c_list_1 .item > a {
  display: block;
  *zoom: 1;
}
.c_list_1 .item > a:after {
  display: block;
  visibility: hidden;
  clear: both;
  overflow: hidden;
  height: 0;
  content: '\0020';
}
.c_list_1 .item > a .thumb {
  float: left;
  position: relative;
  width: 150px;
  height: 150px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c_list_1 .item > a .thumb {
    width: 100px;
    height: 100px;
  }
}
.c_list_1 .item > a .thumb img {
  width: 125%;
  height: auto;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
.c_list_1 .item > a .contents {
  float: left;
  height: 150px;
  overflow: hidden;
  width: -moz-calc(100% - 150px);
  width: -o-calc(100% - 150px);
  width: -webkit-calc(100% - 150px);
  width: calc(100% - 150px);
}
@media screen and (max-width: 768px) {
  .c_list_1 .item > a .contents {
    height: 100px;
    width: -moz-calc(100% - 100px);
    width: -o-calc(100% - 100px);
    width: -webkit-calc(100% - 100px);
    width: calc(100% - 100px);
  }
}
.c_list_1 .item > a .contents .wrap {
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .c_list_1 .item > a .contents .wrap {
    padding: 5px;
  }
}
.c_list_1 .item > a .contents .wrap .date_wrap {
  *zoom: 1;
}
.c_list_1 .item > a .contents .wrap .date_wrap:after {
  display: block;
  visibility: hidden;
  clear: both;
  overflow: hidden;
  height: 0;
  content: '\0020';
}
.c_list_1 .item > a .contents .wrap .date_wrap .date {
  float: left;
  font-size: 1.6em;
  line-height: 26px;
}
@media screen and (max-width: 768px) {
  .c_list_1 .item > a .contents .wrap .date_wrap .date {
    font-size: 1.2em;
    line-height: 20px;
  }
}
.c_list_1 .item > a .contents .wrap .date_wrap .c_ico_1 {
  float: right;
}
.c_list_1 .item > a .contents .wrap .ttl {
  margin: 1em 0 0;
  font-size: 2.4em;
}
@media screen and (max-width: 768px) {
  .c_list_1 .item > a .contents .wrap .ttl {
    font-size: 1.8em;
  }
}
.c_list_1 .item > a .contents .wrap .detail .inner p {
  margin: 1em 0 0;
  font-size: 1.6em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .c_list_1 .item > a .contents .wrap .detail .inner p {
    font-size: 1.4em;
  }
}

.c_list_voice {
  font-size: 1.6em;
  line-height: 2.25;
  letter-spacing: .04em;
  margin: 0 0 30px;
}
.c_list_voice li {
  position: relative;
  margin: 0 0 50px 92px;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .c_list_voice li {
    margin: 0 0 80px 0;
    padding: 10px 10px 30px;
  }
}
.c_list_voice li:before {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: -30px;
  border-width: 10px 15px;
  border-style: solid;
}
@media screen and (max-width: 768px) {
  .c_list_voice li:before {
    left: 85px;
    bottom: -20px;
  }
}
.c_list_voice li.male {
  background-color: #018fa730;
}
.c_list_voice li.male:before {
  border-color: transparent #018fa730 transparent transparent;
}
@media screen and (max-width: 768px) {
  .c_list_voice li.male:before {
    border-color: #018fa730 transparent transparent #018fa730;
  }
}
.c_list_voice li.male:after {
  background: url(../img/ico_man.png) left top no-repeat;
  background-size: contain;
}
.c_list_voice li.female {
  background-color: #f95b5b40;
}
.c_list_voice li.female:before {
  border-color: transparent #f95b5b40 transparent transparent;
}
@media screen and (max-width: 768px) {
  .c_list_voice li.female:before {
    border-color: #f95b5b40 transparent transparent #f95b5b40;
  }
}
.c_list_voice li.female:after {
  background: url(../img/ico_woman.png) left top no-repeat;
  background-size: contain;
}
.c_list_voice li:after {
  content: '';
  display: block;
  text-align: center;
  position: absolute;
  width: 80px;
  height: 80px;
  top: 0;
  left: -110px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .c_list_voice li:after {
    top: auto;
    left: 10px;
    bottom: -50px;
  }
}

/* =================================
 box
================================= */
.c_box_1 .txt_wrap_1 {
  padding: 30px;
  border: 1px solid #dcdcdc;
  border-left: none;
  border-right: none;
}
@media screen and (max-width: 768px) {
  .c_box_1 .txt_wrap_1 {
    padding: 15px;
  }
}
.c_box_1 .txt_wrap_2 {
  padding: 30px;
  border: 1px solid #dcdcdc;
  border-top: none;
  border-left: none;
  border-right: none;
}
@media screen and (max-width: 768px) {
  .c_box_1 .txt_wrap_2 {
    padding: 15px;
  }
}

/* =================================
 hoge
================================= */
/* ======================================================================
 layout
====================================================================== */
/* =================================
 l_content_size
================================= */
.l_content_size {
  width: 1100px;
}
@media screen and (max-width: 768px) {
  .l_content_size {
    width: auto;
    padding: 0 4.6875%;
  }
}

/* =================================
 l_container
================================= */
@media screen and (max-width: 768px) {
  .l_container {
    padding: 80px 0 0;
  }
}

/* =================================
 l_header
================================= */
.l_header {
  background: #fff;
  min-width: 100%;
}
@media screen and (max-width: 768px) {
  .l_header {
    height: 70px;
    width: 100%;
    margin: -80px 0 0;
    position: fixed;
  }
}
.l_header .inner {
  width: 1100px;
  margin: 0 auto;
  padding: 30px 0 10px;
}
@media screen and (max-width: 768px) {
  .l_header .inner {
    width: 100%;
    padding: 0;
  }
}
.l_header .inner .header_content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}
@media screen and (max-width: 768px) {
  .l_header .inner .header_content .left_block {
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .l_header .inner .header_content .left_block .logo_block {
    width: 208px;
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    left: 0;
    left: 15px;
  }
}
@media screen and (max-width: 360px) {
  .l_header .inner .header_content .left_block .logo_block {
    width: 198px;
  }
}
@media screen and (max-width: 320px) {
  .l_header .inner .header_content .left_block .logo_block {
    width: 156px;
  }
}
.l_header .inner .header_content .right_block {
  *zoom: 1;
}
.l_header .inner .header_content .right_block:after {
  display: block;
  visibility: hidden;
  clear: both;
  overflow: hidden;
  height: 0;
  content: '\0020';
}
.l_header .inner .header_content .right_block .center_block {
  float: left;
  margin: 0 20px 0 0;
  width: 380px;
}
.l_header .inner .header_content .right_block .center_block .link_block {
  margin: 0 0 10px;
}
.l_header .inner .header_content .right_block .center_block .link_block .link {
  font-size: 1.3em;
  margin: 0 25px 0 0;
  position: relative;
  padding: 0 0 0 15px;
}
.l_header .inner .header_content .right_block .center_block .link_block .link:last-child {
  margin: 0;
}
.l_header .inner .header_content .right_block .center_block .link_block .link:before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: solid 1px #202020;
  border-right: solid 1px #202020;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.l_header .inner .header_content .right_block .tel_block {
  float: right;
}
@media screen and (max-width: 768px) {
  .l_header .inner .header_content .right_block .tel_block {
    float: left;
    background: #f95b5b;
    height: 70px;
    width: 70px;
    text-align: center;
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .l_header .inner .header_content .right_block .tel_block .link {
    padding: 15px 5px;
    position: absolute;
    display: block;
    color: #fff;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .l_header .inner .header_content .right_block .tel_block .link .fa-phone-volume {
    font-size: 2em;
    margin: 0 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .l_header .inner .header_content .right_block .menu_block {
    float: left;
    width: 70px;
    height: 70px;
    background: #018fa7;
    text-align: center;
    color: #fff;
    padding: 15px 5px;
  }
}
@media screen and (max-width: 768px) {
  .l_header .inner .header_content .right_block .menu_block .line {
    display: block;
    width: 30px;
    height: 1px;
    background: #fff;
    margin: 0 auto 8px;
    -moz-transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }
}
.l_header .inner .header_content .right_block .menu_block .line._03 {
  margin: 0 auto 10px;
}
.l_header .inner .header_content .right_block .menu_block .txt .open {
  display: none;
}
.l_header .inner .header_content .right_block .menu_block .txt .close {
  display: block;
}
.l_header .inner .header_content .right_block .menu_block._open .line._01 {
  width: 30px;
  top: 8px;
  transform: rotate(25deg);
  position: relative;
}
.l_header .inner .header_content .right_block .menu_block._open .line._02 {
  background: transparent;
}
.l_header .inner .header_content .right_block .menu_block._open .line._03 {
  width: 30px;
  bottom: 10px;
  transform: rotate(-25deg);
  position: relative;
}
.l_header .inner .header_content .right_block .menu_block._open .txt .open {
  display: block;
}
.l_header .inner .header_content .right_block .menu_block._open .txt .close {
  display: none;
}
.l_header .inner .header_menu {
  margin: 40px 0 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l_header .inner .header_menu.l_menu_sp_1 {
    margin: 0;
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 70px 0 0;
    border-top: solid 3px #0e95ab;
    overflow: scroll;
  }
}
.l_header .inner .header_menu.l_menu_sp_1.a_menu_open_1 {
  -webkit-animation: a_menu_open_1 0.4s ease-in-out forwards;
  -moz-animation: a_menu_open_1 0.4s ease-in-out forwards;
  animation: a_menu_open_1 0.4s ease-in-out forwards;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes a_menu_open_1 {
  0% {
    height: 0;
    opacity: 0;
  }

  1% {
    height: 100%;
    opacity: 0;
  }

  100% {
    height: 100%;
    opacity: 1;
  }
}
@-moz-keyframes a_menu_open_1 {
  0% {
    height: 0;
    opacity: 0;
  }

  1% {
    height: 100%;
    opacity: 0;
  }

  100% {
    height: 100%;
    opacity: 1;
  }
}
@keyframes a_menu_open_1 {
  0% {
    height: 0;
    opacity: 0;
  }

  1% {
    height: 100%;
    opacity: 0;
  }

  100% {
    height: 100%;
    opacity: 1;
  }
}
.l_header .inner .header_menu.l_menu_sp_1.a_menu_close_1 {
  -webkit-animation: a_menu_close_1 0.4s ease-in-out forwards;
  -moz-animation: a_menu_close_1 0.4s ease-in-out forwards;
  animation: a_menu_close_1 0.4s ease-in-out forwards;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes a_menu_close_1 {
  0% {
    height: 100%;
    opacity: 1;
  }

  99% {
    height: 100%;
    opacity: 0;
  }

  100% {
    height: 0;
    opacity: 0;
  }
}
@-moz-keyframes a_menu_close_1 {
  0% {
    height: 100%;
    opacity: 1;
  }

  99% {
    height: 100%;
    opacity: 0;
  }

  100% {
    height: 0;
    opacity: 0;
  }
}
@keyframes a_menu_close_1 {
  0% {
    height: 100%;
    opacity: 1;
  }

  99% {
    height: 100%;
    opacity: 0;
  }

  100% {
    height: 0;
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  .l_header .inner .header_menu.l_menu_sp_1 .c_search_block {
    padding: 0 15px;
    margin: 15px 0;
  }
}
.l_header .inner .header_menu .list {
  *zoom: 1;
  display: inline-block;
  margin: 0 auto;
  position: relative;
}
.l_header .inner .header_menu .list:after {
  display: block;
  visibility: hidden;
  clear: both;
  overflow: hidden;
  height: 0;
  content: '\0020';
}
@media screen and (max-width: 768px) {
  .l_header .inner .header_menu .list {
    width: 100%;
    padding: 0 15px;
  }
}
.l_header .inner .header_menu .list:before {
  content: '';
  width: 1px;
  height: 10px;
  background: #dcdcdc;
  display: inline-block;
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
  top: 50%;
  right: 0;
  top: calc(50% - 15px);
}
@media screen and (max-width: 768px) {
  .l_header .inner .header_menu .list:before {
    display: none;
  }
}
.l_header .inner .header_menu .list > .item {
  float: left;
  position: relative;
  padding: 0 0 30px;
}
@media screen and (max-width: 768px) {
  .l_header .inner .header_menu .list > .item {
    float: none;
    padding: 0;
    position: static;
  }
}
@media screen and (max-width: 768px) {
  .l_header .inner .header_menu .list > .item:first-child {
    border-top: solid 1px #dcdcdc;
  }
}
.l_header .inner .header_menu .list > .item:before {
  content: '';
  width: 1px;
  height: 10px;
  background: #dcdcdc;
  display: inline-block;
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
  top: 50%;
  left: 0;
  top: calc(50% - 15px);
}
@media screen and (max-width: 768px) {
  .l_header .inner .header_menu .list > .item:before {
    display: none;
  }
}
.l_header .inner .header_menu .list > .item:after {
  content: '';
  width: 0;
  height: 3px;
  background: #018fa7;
  display: block;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  bottom: 15px;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .l_header .inner .header_menu .list > .item:after {
    display: none;
  }
}
.l_header .inner .header_menu .list > .item._hover:after {
  width: 100%;
}
.l_header .inner .header_menu .list > .item > .link {
  padding: 0 29px;
  font-size: 1.8em;
}
@media screen and (max-width: 768px) {
  .l_header .inner .header_menu .list > .item > .link {
    padding: 0 20px;
    color: #018fa7;
    height: 55px;
    display: block;
    border-bottom: solid 1px #dcdcdc;
    text-align: left;
    position: relative;
    font-size: 1.5em;
  }
}
@media screen and (max-width: 768px) {
  .l_header .inner .header_menu .list > .item > .link > .txt {
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    left: 0;
    left: 20px;
    padding: 0 50px 0 0;
    font-weight: 600;
  }
}
@media screen and (max-width: 768px) {
  .l_header .inner .header_menu .list > .item > .link:before {
    content: '＋';
    color: #018fa7;
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    right: 0;
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .l_header .inner .header_menu .list > .item > .link.open:before {
    content: '－';
  }
}
.l_header .inner .header_menu .list > .item .child_list {
  display: none;
  text-align: center;
  width: 200px;
  border: solid 1px #018fa7;
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  position: absolute;
  top: 0;
  left: 50%;
  top: 40px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .l_header .inner .header_menu .list > .item .child_list {
    display: block;
    text-align: left;
    width: 100%;
    border: 0;
    position: static;
    background: none;
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }
}
.l_header .inner .header_menu .list > .item .child_list .item {
  border-bottom: solid 1px #018fa7;
}
@media screen and (max-width: 768px) {
  .l_header .inner .header_menu .list > .item .child_list .item {
    border-bottom: solid 1px #dcdcdc;
  }
}
.l_header .inner .header_menu .list > .item .child_list .item:last-child {
  border: 0;
}
@media screen and (max-width: 768px) {
  .l_header .inner .header_menu .list > .item .child_list .item:last-child {
    border-bottom: solid 1px #dcdcdc;
  }
}
.l_header .inner .header_menu .list > .item .child_list .item > .link {
  width: 100%;
  padding: 0 20px;
  display: block;
  color: #018fa7;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .l_header .inner .header_menu .list > .item .child_list .item > .link {
    padding: 0 30px;
    height: 55px;
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .l_header .inner .header_menu .list > .item .child_list .item > .link > .txt {
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    left: 0;
    left: 40px;
    padding: 0 50px 0 0;
    font-weight: 600;
  }
}
@media screen and (max-width: 768px) {
  .l_header .inner .header_menu .list > .item .tgl {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l_header .inner .header_menu > .txt_block {
    padding: 0 15px;
    margin: 25px 0 45px;
    text-align: left;
  }
}
@media screen and (max-width: 768px) and (min-width: 768px) {
  .l_header .inner .header_menu > .txt_block {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .l_header .inner .header_menu > .txt_block > .txt {
    font-size: 1.3em;
    font-weight: 400;
    line-height: 1.54;
    text-align: center;
  }
}
.l_header .inner .header_menu > .txt_block .contact_block {
  margin: 10px auto;
  width: 345px;
  max-width: 100%;
}
.l_header .inner .header_menu > .txt_block .contact_block .c_btn_2 {
  margin: 10px 0;
}
.l_header .inner .header_menu > .txt_block .contact_block .c_btn_2 .txt {
  display: inline-table;
}
.l_header .inner .header_menu .close_btn {
  margin: 0 auto 140px;
  color: #018fa7;
  width: 40px;
}
.l_header .inner .header_menu .close_btn .close_inner {
  height: 25px;
  margin: 0 auto;
}
.l_header .inner .header_menu .close_btn .close_inner .line {
  background: #018fa7;
  display: block;
  height: 1px;
  margin: 0 auto;
}
.l_header .inner .header_menu .close_btn .close_inner .line._01 {
  width: 30px;
  top: 8px;
  transform: rotate(25deg);
  position: relative;
}
.l_header .inner .header_menu .close_btn .close_inner .line._02 {
  background: transparent;
}
.l_header .inner .header_menu .close_btn .close_inner .line._03 {
  width: 30px;
  bottom: -6px;
  transform: rotate(-25deg);
  position: relative;
}

/* =================================
 l_header_sp
================================= */
/* =================================
 l_menu_sp
================================= */
/* =================================
 l_breadcrumbs
================================= */
.l_breadcrumbs {
  min-width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l_breadcrumbs {
    min-width: auto;
    min-width: initial;
    overflow: scroll;
    height: 32px;
    margin: -15px 0 0;
  }
}
.l_breadcrumbs .l_content_size {
  margin: 0 auto;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 50px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l_breadcrumbs .l_content_size {
    overflow: visible;
    height: 32px;
    top: 0;
  }
}
.l_breadcrumbs .l_content_size .breadcrumbs {
  width: 1100px;
  height: 40px;
  margin: 0 auto;
  min-width: 100%;
  white-space: nowrap;
  *zoom: 1;
}
.l_breadcrumbs .l_content_size .breadcrumbs:after {
  display: block;
  visibility: hidden;
  clear: both;
  overflow: hidden;
  height: 0;
  content: '\0020';
}
@media screen and (max-width: 768px) {
  .l_breadcrumbs .l_content_size .breadcrumbs {
    height: 30px;
    width: auto;
    min-width: auto;
    min-width: initial;
  }
}
@media screen and (max-width: 768px) {
  .l_breadcrumbs .l_content_size .breadcrumbs > span {
    padding: 0 1em 0 0;
  }
}
.l_breadcrumbs .l_content_size .breadcrumbs > span > a, .l_breadcrumbs .l_content_size .breadcrumbs > span > span {
  font-size: 1.2em;
  line-height: 40px;
}
@media screen and (max-width: 768px) {
  .l_breadcrumbs .l_content_size .breadcrumbs > span > a, .l_breadcrumbs .l_content_size .breadcrumbs > span > span {
    line-height: 30px;
  }
}
.l_breadcrumbs .l_content_size .breadcrumbs > span > a a,
.l_breadcrumbs .l_content_size .breadcrumbs > span > a .breadcrumb_last, .l_breadcrumbs .l_content_size .breadcrumbs > span > span a,
.l_breadcrumbs .l_content_size .breadcrumbs > span > span .breadcrumb_last {
  padding: 0 30px 0 50px;
  display: inline-block;
  background: #f8f8f8;
  margin: 0 0 0 -30px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  position: relative;
  border: solid 1px #dcdcdc;
}
.l_breadcrumbs .l_content_size .breadcrumbs > span > a a.breadcrumbs_home,
.l_breadcrumbs .l_content_size .breadcrumbs > span > a .breadcrumb_last.breadcrumbs_home, .l_breadcrumbs .l_content_size .breadcrumbs > span > span a.breadcrumbs_home,
.l_breadcrumbs .l_content_size .breadcrumbs > span > span .breadcrumb_last.breadcrumbs_home {
  background: #018fa7;
  color: #fff;
  padding: 0 30px;
  margin: 0;
  border: solid 1px #018fa7;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
}
.l_breadcrumbs .l_content_size .breadcrumbs > span > a a.breadcrumbs_home:before,
.l_breadcrumbs .l_content_size .breadcrumbs > span > a .breadcrumb_last.breadcrumbs_home:before, .l_breadcrumbs .l_content_size .breadcrumbs > span > span a.breadcrumbs_home:before,
.l_breadcrumbs .l_content_size .breadcrumbs > span > span .breadcrumb_last.breadcrumbs_home:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 28px;
  background: url(../img/ico_drop_little.png);
  background-size: cover;
  vertical-align: middle;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 768px) {
  .l_breadcrumbs .l_content_size .breadcrumbs > span > a a.breadcrumbs_home:before,
  .l_breadcrumbs .l_content_size .breadcrumbs > span > a .breadcrumb_last.breadcrumbs_home:before, .l_breadcrumbs .l_content_size .breadcrumbs > span > span a.breadcrumbs_home:before,
  .l_breadcrumbs .l_content_size .breadcrumbs > span > span .breadcrumb_last.breadcrumbs_home:before {
    width: 13px;
    height: 18px;
    background: url(../img/sp/ico_drop_little.png);
    background-size: cover;
  }
}
.l_breadcrumbs .l_content_size .breadcrumbs a {
  -moz-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l_breadcrumbs .l_content_size .breadcrumbs a:hover {
  opacity: .7;
}
@media screen and (max-width: 768px) {
  .l_breadcrumbs .l_content_size .breadcrumbs a:hover {
    opacity: 1;
  }
}
.l_breadcrumbs .l_content_size .mCSB_dragger_bar {
  height: 5px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background: rgba(80, 80, 80, 0.2);
  margin: 5px 0 0;
  cursor: pointer;
}

/* =================================
 l_main_visual
================================= */
.l_main_visual {
  margin: -30px 0 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l_main_visual {
    margin: 0;
  }
}
.l_main_visual:before {
  content: '';
  margin: 0;
  background: url(../img/category/bg_water.png) no-repeat;
  height: 118px;
  width: 100%;
  background-size: cover;
  display: block;
}
@media screen and (max-width: 768px) {
  .l_main_visual:before {
    content: '';
    background: url(../img/category/sp/bg_water.png) no-repeat;
    height: 64px;
    background-size: cover;
  }
}
.l_main_visual > .inner {
  background: #cef0f6;
}
.l_main_visual > .inner > .drop_wrap {
  width: 1100px;
  margin: 0 auto;
  position: relative;
  min-height: 220px;
}
@media screen and (max-width: 768px) {
  .l_main_visual > .inner > .drop_wrap {
    width: 100%;
    min-height: 400px;
  }
}
.l_main_visual > .inner > .drop_wrap:before {
  content: '';
  background: url(../img/category/bg_drop.png) no-repeat;
  width: 501px;
  height: 311px;
  display: block;
  position: absolute;
  right: -45px;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .l_main_visual > .inner > .drop_wrap:before {
    background: url(../img/category/sp/bg_drop.png) no-repeat;
    width: 375px;
    height: 396px;
    right: 0;
    background-size: cover;
  }
}
.l_main_visual > .inner > .drop_wrap > .content {
  width: 1100px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l_main_visual > .inner > .drop_wrap > .content {
    width: 100%;
    padding: 30px 4.6875% 0;
    position: static;
  }
}
.l_main_visual.pt1 > .inner > .drop_wrap > .content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 768px) {
  .l_main_visual.pt1 > .inner > .drop_wrap > .content {
    width: 100%;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .l_main_visual.pt2:before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l_main_visual.pt2 > .inner {
    background: url(../img/category/sp/bg.png) no-repeat;
    background-size: cover;
    height: 214px;
  }
}
@media screen and (max-width: 768px) {
  .l_main_visual.pt2 > .inner > .drop_wrap {
    min-height: 214px;
  }
}
@media screen and (max-width: 768px) {
  .l_main_visual.pt2 > .inner > .drop_wrap:before {
    display: none;
  }
}
.l_main_visual.pt2 > .inner > .drop_wrap > .content .box_1 {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .l_main_visual.pt2 > .inner > .drop_wrap > .content .box_1 {
    padding: 0 4.6875%;
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    left: 0;
  }
}
.l_main_visual.pt2 > .inner > .drop_wrap > .content .box_1:before {
  content: '';
  background: url(../img/category/drop_middle.png) no-repeat;
  width: 52px;
  height: 72px;
  display: inline-block;
  margin: 0 10px 0 0;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .l_main_visual.pt2 > .inner > .drop_wrap > .content .box_1:before {
    width: 26px;
    height: 36px;
    background-size: cover;
  }
}
.l_main_visual.pt2 > .inner > .drop_wrap > .content .box_1 .main_ttl {
  font-size: 3.4em;
  line-height: 1.765;
  letter-spacing: .06em;
  font-weight: 500;
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .l_main_visual.pt2 > .inner > .drop_wrap > .content .box_1 .main_ttl {
    font-size: 2.8em;
    line-height: 1.4285;
    margin: 0 0 3px;
  }
}
.l_main_visual.pt2 > .inner > .drop_wrap > .content .box_1 .sub_ttl {
  font-size: 1.6em;
  letter-spacing: .06em;
  font-weight: 600;
  padding: 0 0 0 70px;
}
@media screen and (max-width: 768px) {
  .l_main_visual.pt2 > .inner > .drop_wrap > .content .box_1 .sub_ttl {
    font-size: 1.3em;
    padding: 0 0 0 40px;
  }
}
.l_main_visual.pt3 > .inner > .drop_wrap {
  min-height: 320px;
}
.l_main_visual.pt3 > .inner > .drop_wrap .date {
  color: #fff;
  font-size: 2em;
  line-height: 2.5;
  position: absolute;
  right: 0;
  bottom: 100px;
}
@media screen and (max-width: 768px) {
  .l_main_visual.pt3 > .inner > .drop_wrap .date {
    font-size: 1.5em;
    line-height: 2;
    right: 20px;
    bottom: 40px;
  }
}
.l_main_visual.pt3 > .inner > .drop_wrap > .content {
  position: relative;
}
.l_main_visual.pt3 > .inner > .drop_wrap > .content .box_1 .ttl {
  font-size: 3.7em;
  line-height: 1.47;
  letter-spacing: .06em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .l_main_visual.pt3 > .inner > .drop_wrap > .content .box_1 .ttl {
    font-size: 2.8em;
    line-height: 1.4285;
    font-weight: 500;
  }
}
.l_main_visual.pt3 > .inner > .drop_wrap > .content .box_1 .cat_box {
  margin: 10px 0 0;
}
.l_main_visual.pt3 > .inner > .drop_wrap > .content .box_1 .cat_box .cat_tag {
  background: #fff;
}

/* =================================
 l_content
================================= */
.l_content {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
  *zoom: 1;
}
.l_content:after {
  display: block;
  visibility: hidden;
  clear: both;
  overflow: hidden;
  height: 0;
  content: '\0020';
}
@media screen and (max-width: 768px) {
  .l_content {
    width: auto;
    padding: 25px 0;
  }
}

/* =================================
 l_main
================================= */
.l_main {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l_main {
    float: none;
    width: auto;
  }
}
.l_main > .inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .l_main > .inner {
    min-height: 250px;
  }
}
.l_main > .inner > .u_txt_2 {
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
}

/* =================================
 l_footer
================================= */
.l_footer {
  min-width: 100%;
  background: #087081;
  padding: 70px 0 60px;
}
@media screen and (max-width: 768px) {
  .l_footer {
    min-width: auto;
    min-width: initial;
    padding: 50px 0 100px;
  }
}
.l_footer .l_content_size {
  margin: 0 auto;
  *zoom: 1;
}
.l_footer .l_content_size:after {
  display: block;
  visibility: hidden;
  clear: both;
  overflow: hidden;
  height: 0;
  content: '\0020';
}
.l_footer .l_content_size .u_txt_2 {
  color: #fff;
  text-align: center;
}
.l_footer .l_content_size .left_block {
  width: 600px;
  float: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  -ms-flex-pack: space-around;
}
@media screen and (max-width: 768px) {
  .l_footer .l_content_size .left_block {
    width: 100%;
    float: none;
    display: block;
  }
}
.l_footer .l_content_size .left_block .col_block {
  width: 180px;
}
@media screen and (max-width: 768px) {
  .l_footer .l_content_size .left_block .col_block {
    width: 100%;
  }
}
.l_footer .l_content_size .left_block .col_block .list_ttl {
  font-size: 1.4em;
  color: #fff;
  letter-spacing: .06em;
  font-weight: 400;
  border-bottom: solid 1px #fff;
  padding: 0 0 5px;
}
.l_footer .l_content_size .left_block .col_block .list {
  padding: 5px 0 0;
}
.l_footer .l_content_size .left_block .col_block .list .item .link {
  font-weight: 400;
  color: #dcdcdc;
  font-size: 1.3em;
  letter-spacing: .06em;
  line-height: 1.75;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l_footer .l_content_size .left_block .col_block .list .item .link._hover {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .l_footer .l_content_size .left_block .col_block .list._categories .item, .l_footer .l_content_size .left_block .col_block .list._case .item {
    height: 50px;
    border-bottom: solid 1px #167787;
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .l_footer .l_content_size .left_block .col_block .list._categories .item:before, .l_footer .l_content_size .left_block .col_block .list._case .item:before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
  }
}
@media screen and (max-width: 768px) {
  .l_footer .l_content_size .left_block .col_block .list._categories .item .link, .l_footer .l_content_size .left_block .col_block .list._case .item .link {
    line-height: 50px;
    display: block;
    padding: 0 20px;
    width: 100%;
    height: 100%;
    position: absolute;
  }
}
.l_footer .l_content_size .left_block .col_block .list._case {
  margin: 0 0 50px;
}
@media screen and (max-width: 768px) {
  .l_footer .l_content_size .left_block .col_block .list._case {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .l_footer .l_content_size .left_block .col_block .list._about {
    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;
    margin: 30px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .l_footer .l_content_size .left_block .col_block .list._about .item {
    margin: 0 0 30px 25px;
  }
  .l_footer .l_content_size .left_block .col_block .list._about .item:nth-child(even) {
    margin: 0 0 30px 40px;
  }
  .l_footer .l_content_size .left_block .col_block .list._about .item:nth-child(n+3) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 320px) {
  .l_footer .l_content_size .left_block .col_block .list._about .item {
    margin: 0 0 30px 15px;
  }
  .l_footer .l_content_size .left_block .col_block .list._about .item:nth-child(even) {
    margin: 0 0 30px 30px;
  }
}
.l_footer .l_content_size .right_block {
  float: right;
  text-align: right;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .l_footer .l_content_size .right_block {
    float: none;
    width: 100%;
    text-align: center;
    margin: 30px 0 0;
  }
}
.l_footer .l_content_size .right_block .footer_btn {
  display: inline-block;
  background: #f95b5b;
  width: 300px;
  height: 80px;
  color: #fff;
  position: relative;
  text-align: center;
  margin: 0 0 10px;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .l_footer .l_content_size .right_block .footer_btn {
    width: 100%;
    margin: 0 0 25px;
  }
}
.l_footer .l_content_size .right_block .footer_btn._hover {
  background: #e93a3a;
}
.l_footer .l_content_size .right_block .footer_btn .txt {
  display: block;
  width: 100%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
.l_footer .l_content_size .right_block .footer_btn .txt .large_txt {
  font-size: 2em;
  letter-spacing: .2em;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .l_footer .l_content_size .right_block .footer_btn .txt .large_txt {
    font-weight: 600;
  }
}
.l_footer .l_content_size .right_block .footer_btn .txt .small_txt {
  font-size: 1.6em;
  letter-spacing: .1em;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .l_footer .l_content_size .right_block .footer_btn .txt .small_txt {
    font-weight: 600;
  }
}
.l_footer .l_content_size .right_block .logo_img {
  margin: 40px 0 10px;
}
.l_footer .l_content_size .right_block .logo_img.u_pc {
  display: inline;
}
@media screen and (max-width: 768px) {
  .l_footer .l_content_size .right_block .logo_img.u_pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l_footer .l_content_size .right_block .logo_img {
    margin: 40px auto 15px;
    width: 220px;
  }
}

/* =================================
 l_hoge
================================= */
/* ======================================================================
 layout p_top
====================================================================== */
/* =================================
 l_container_top
================================= */
@media screen and (max-width: 768px) {
  .l_container_top {
    padding: 80px 0 0;
  }
}

/* =================================
 l_main_visual_top
================================= */
.l_main_visual_top {
  height: 764px;
  background: url(../img/bg_water.png) center no-repeat;
  background-size: cover;
  position: relative;
  margin: -30px 0 0;
}
@media screen and (max-width: 768px) {
  .l_main_visual_top {
    height: auto;
    background: url(../img/sp/bg_water.jpg) no-repeat;
    background-size: cover;
    margin: 0;
  }
}
.l_main_visual_top .l_content_size {
  padding: 25px 0 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l_main_visual_top .l_content_size {
    padding: 25px 0 70px;
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .l_main_visual_top .l_content_size .main_ttl {
    padding: 0 15px 0 0;
    margin: -25px auto 0;
  }
}

/* =================================
 l_content_top
================================= */
/* =================================
 l_main_top
================================= */
.l_main_top {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l_main_top {
    width: auto;
  }
}

/* =================================
 l_hoge_top
================================= */
/* ======================================================================
 z-index
====================================================================== */
.l_menu_sp {
  z-index: 1000;
}

.l_header {
  z-index: 1000;
}
.l_header .inner .header_menu.l_menu_sp_1 {
  z-index: 1000;
}
.l_header .inner .header_menu .list > .item .child_list {
  z-index: 999;
}

.l_header_sp {
  z-index: 999;
}

.js_btn_p_top {
  z-index: 998;
}

.l_side {
  z-index: 997;
}

.l_main_visual .content {
  z-index: 996;
}

/* =================================
 p_top
================================= */
.l_menu_sp_top {
  z-index: 1000;
}

.l_header_top {
  z-index: 999;
}

.l_header_sp_top {
  z-index: 999;
}

.js_btn_p_top_top {
  z-index: 998;
}

.l_side_top {
  z-index: 997;
}

/* =================================
c_article
================================= */
.c_article_1 .c_ico_2 {
  z-index: 1;
}
.c_article_1:before {
  z-index: 0;
}

.c_article_2 .c_ico_2 {
  z-index: 1;
}

/* =================================
c_fixed_btn
================================= */
@media screen and (max-width: 768px) {
  .c_fixed_btn {
    z-index: 999;
  }
}

/* =================================
p_single
================================= */
.p_single #movie_wrap:before {
  z-index: 995;
}
.p_single #movie_wrap .btn {
  z-index: 995;
}

/*# sourceMappingURL=style.css.map */
