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

.l_container {
  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 */
}
.l_container abbr, .l_container address, .l_container article, .l_container aside, .l_container audio, .l_container b, .l_container blockquote, .l_container body, .l_container canvas, .l_container caption, .l_container cite, .l_container dd, .l_container del, .l_container details,
.l_container dfn, .l_container div, .l_container dl, .l_container dt, .l_container em, .l_container fieldset, .l_container figcaption, .l_container figure, .l_container footer, .l_container form, .l_container h1, .l_container h2, .l_container h3, .l_container h4, .l_container h5, .l_container h6, .l_container header, .l_container hgroup,
.l_container html, .l_container i, .l_container iframe, .l_container img, .l_container ins, .l_container kbd, .l_container label, .l_container legend, .l_container li, .l_container mark, .l_container menu, .l_container nav, .l_container object, .l_container ol, .l_container p, .l_container pre, .l_container q, .l_container samp, .l_container section,
.l_container small, .l_container span, .l_container strong, .l_container sub, .l_container summary, .l_container sup, .l_container table, .l_container tbody, .l_container td, .l_container tfoot, .l_container th, .l_container thead, .l_container time, .l_container tr, .l_container ul, .l_container var, .l_container video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}
.l_container article, .l_container aside, .l_container details, .l_container figcaption, .l_container figure, .l_container footer, .l_container header, .l_container hgroup, .l_container menu, .l_container nav, .l_container section {
  display: block;
}
.l_container ul {
  list-style: none;
}
.l_container blockquote,
.l_container q {
  quotes: none;
}
.l_container blockquote:after, .l_container blockquote:before, .l_container q:after, .l_container q:before {
  content: '';
  content: none;
}
.l_container a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}
.l_container ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
.l_container mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
.l_container del {
  text-decoration: line-through;
}
.l_container abbr[title], .l_container dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
.l_container table {
  border-collapse: collapse;
  border-spacing: 0;
}
.l_container hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
.l_container input, .l_container select {
  vertical-align: middle;
}

/* ======================================================================
 setting
====================================================================== */
/* ======================================================================
 base
====================================================================== */
html, body {
  width: 100%;
  height: 100%;
  background: none !important;
  line-height: 1;
}
html.page, body.page {
  min-width: 100%;
}
@media screen and (min-width: 769px) {
  html.page, body.page {
    min-width: 1400px;
  }
}

.page {
  width: 100%;
  margin: 0 auto;
}

.l_container {
  font-size: 10px;
  position: relative;
  background: #fff;
  color: #4d4d4d;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  word-wrap: break-word;
  word-break: break-all;
  -webkit-text-size-adjust: 100%;
  -moz-transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
  /* border-box */
  /* h1 - h6 */
  /* a */
  /* button */
  /* placeholder */
}
@media screen and (max-width: 768px) {
  .l_container {
    -moz-transition: none;
    -webkit-transition: none;
    transition: none;
  }
}
.l_container.js_page_trans {
  opacity: 0;
}
.l_container * {
  -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);
}
.l_container a:link {
  color: #4d4d4d;
  text-decoration: none;
  cursor: pointer;
}
.l_container a:visited {
  color: #4d4d4d;
  text-decoration: none;
}
.l_container a:hover {
  color: #4d4d4d;
  text-decoration: none;
}
.l_container a:active {
  color: #4d4d4d;
  text-decoration: none;
}
.l_container a[href^="tel"] {
  color: #4d4d4d;
}
.l_container button {
  display: block;
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.l_container input, .l_container textarea, .l_container 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;
}
.l_container input::-ms-expand, .l_container textarea::-ms-expand, .l_container select::-ms-expand {
  display: none;
}
.l_container textarea {
  resize: vertical;
}
.l_container select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #4d4d4d;
}
.l_container input:placeholder-shown, .l_container textarea:placeholder-shown {
  color: #4d4d4d;
}
.l_container input::-webkit-input-placeholder, .l_container textarea::-webkit-input-placeholder {
  color: #4d4d4d;
}
.l_container input:-moz-placeholder, .l_container textarea:-moz-placeholder {
  color: #4d4d4d;
  opacity: 1;
}
.l_container input::-moz-placeholder, .l_container textarea::-moz-placeholder {
  color: #4d4d4d;
  opacity: 1;
}
.l_container input:-ms-input-placeholder, .l_container textarea:-ms-input-placeholder {
  color: #4d4d4d;
}
.l_container input:focus:placeholder-shown, .l_container textarea:focus:placeholder-shown {
  color: #4d4d4d;
}
.l_container input:focus::-webkit-input-placeholder, .l_container textarea:focus::-webkit-input-placeholder {
  color: #4d4d4d;
}
.l_container input:focus:-moz-placeholder, .l_container textarea:focus:-moz-placeholder {
  color: #4d4d4d;
  opacity: 1;
}
.l_container input:focus::-moz-placeholder, .l_container textarea:focus::-moz-placeholder {
  color: #4d4d4d;
  opacity: 1;
}
.l_container input:focus:-ms-input-placeholder, .l_container textarea:focus:-ms-input-placeholder {
  color: #4d4d4d;
}
.l_container 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: 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%;
}

/* =================================
 text pt
================================= */
.u_txt_1 {
  font-size: 1.4em;
  line-height: 2;
}

.u_txt_2 {
  font-size: 1.2em;
  line-height: 2;
}

.u_txt_3 {
  font-size: 2.5em;
  line-height: 1.28;
}
@media screen and (min-width: 769px) {
  .u_txt_3 {
    font-size: 3em;
    line-height: 1.66;
  }
}

.u_txt_4 {
  font-size: 2em;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .u_txt_4 {
    font-size: 2.5em;
    line-height: 1.92;
  }
}

.u_txt_5 {
  font-size: 1.8em;
  line-height: 1.75;
}
@media screen and (min-width: 769px) {
  .u_txt_5 {
    font-size: 2em;
  }
}

.u_txt_6 {
  font-size: 1.6em;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .u_txt_6 {
    font-size: 1.8em;
    line-height: 2;
  }
}

.u_txt_7 {
  font-size: 1.5em;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .u_txt_7 {
    font-size: 1.6em;
    line-height: 2;
  }
}

.u_txt_8 {
  font-size: 1.4em;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .u_txt_8 {
    font-size: 1.6em;
    line-height: 2;
  }
}

@media screen and (min-width: 769px) {
  .u_txt_9 {
    font-size: 1.4em;
    line-height: 1.7;
  }
}

.u_txt_10 {
  font-size: 1.6em;
  line-height: 1.5;
}

.u_txt_11 {
  font-size: 1.6em;
  line-height: 1.5;
}

.u_txt_12 {
  font-size: 1.2em;
  line-height: 2.3;
}

.u_txt_13 {
  font-size: 1.2em;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .u_txt_13 {
    font-size: 1.4em;
    line-height: 2;
  }
}

.u_txt_14 {
  font-size: 2em;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .u_txt_14 {
    font-size: 3em;
    line-height: 1.6;
  }
}

.u_txt_15 {
  font-size: 2em;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .u_txt_15 {
    font-size: 3em;
    line-height: 1.6;
  }
}

.u_txt_16 {
  font-size: 1.4em;
  line-height: 1.7;
}
@media screen and (min-width: 769px) {
  .u_txt_16 {
    font-size: 1.6em;
    line-height: 1.5;
  }
}

.u_txt_17 {
  font-size: 2.6em;
  line-height: 1.38;
}
@media screen and (min-width: 769px) {
  .u_txt_17 {
    font-size: 4em;
    line-height: 1.25;
  }
}

.u_txt_18 {
  font-size: 2em;
  line-height: 2;
}

.u_txt_19 {
  font-size: 1.4em;
  line-height: 1.4;
}

.u_txt_20 {
  font-size: 1.5em;
  line-height: 1.87;
}
@media screen and (min-width: 769px) {
  .u_txt_20 {
    font-size: 1.4em;
    line-height: 2;
  }
}

.u_txt_21 {
  font-size: 2em;
  line-height: 1.5;
}

.u_txt_22 {
  font-size: 3.73333vw;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .u_txt_22 {
    font-size: 1.6em;
  }
}

.u_txt_23 {
  font-size: 2.66667vw;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .u_txt_23 {
    font-size: 1.2em;
    line-height: 1.4;
  }
}

/* =================================
 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
================================= */
/* =================================
 u_color
================================= */
.u_color_1 {
  color: #fff;
}

.u_color_2 {
  color: #d01026;
}

/* =================================
 hoge
================================= */
/* ======================================================================
 component
====================================================================== */
.l_container {
  /* =================================
   title
  ================================= */
  /* =================================
   buttons
  ================================= */
  /* =================================
   icon
  ================================= */
  /* =================================
   pager
  ================================= */
  /* =================================
   table
  ================================= */
  /* =================================
   list
  ================================= */
  /* =================================
   item
  ================================= */
  /* =================================
   c_slider
  ================================= */
  /* =================================
   c_tab
  ================================= */
  /* =================================
   c_toggle
  ================================= */
  /* =================================
   c_link
  ================================= */
}
.l_container .c_ttl_1 {
  padding: 20px 0 0;
  background: linear-gradient(to top, #ffffff 50px, #c11126 50px);
  width: 100%;
  margin: 0 0 30px;
}
@media screen and (min-width: 769px) {
  .l_container .c_ttl_1 {
    padding: 30px 0 0;
    background: linear-gradient(to top, #ffffff 30px, #c11126 30px);
    margin: 0 0 50px;
  }
}
.l_container .c_ttl_1 > .inner {
  border: solid 2px #d01026;
  background: #fff;
  padding: 15px 20px;
  width: 90.4%;
  margin: 0 auto;
  text-align: center;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
@media screen and (min-width: 769px) {
  .l_container .c_ttl_1 > .inner {
    min-height: 150px;
    width: 1200px;
  }
}
.l_container .c_ttl_1 > .inner .small_txt {
  margin: 0 0 -5px;
}
.l_container .c_ttl_2 {
  border-bottom: dashed 1px #d01026;
  margin: 0 0 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media screen and (min-width: 769px) {
  .l_container .c_ttl_2 {
    margin: 0 0 30px;
  }
}
.l_container .c_ttl_2:before {
  content: '';
  width: 5px;
  height: 15px;
  background: #d01026;
  display: inline-block;
  margin: 0 10px 0 0;
  position: relative;
  top: 13px;
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  border-radius: 1px;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .l_container .c_ttl_2:before {
    top: 16px;
    margin: 0 12px 0 0;
  }
}
.l_container .c_ttl_3 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.l_container .c_ttl_3:before {
  content: '';
  width: 5px;
  height: 12px;
  background: #d01026;
  display: inline-block;
  margin: 0 12px 0 0;
  position: relative;
  top: 12px;
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  border-radius: 1px;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .l_container .c_ttl_3:before {
    top: 14px;
  }
}
.l_container .c_ttl_4 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.l_container .c_ttl_4:before {
  content: '';
  width: 5px;
  height: 12px;
  background: #d01026;
  display: inline-block;
  margin: 0 12px 0 0;
  position: relative;
  top: 10px;
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  border-radius: 1px;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .l_container .c_ttl_4:before {
    top: 12px;
  }
}
.l_container .c_ttl_5 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.l_container .c_ttl_5:before {
  content: '';
  width: 5px;
  height: 10px;
  background: #d01026;
  display: inline-block;
  margin: 0 12px 0 0;
  position: relative;
  top: 9px;
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  border-radius: 1px;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .l_container .c_ttl_5:before {
    top: 11px;
  }
}
.l_container .c_ttl_6 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.l_container .c_ttl_6:before {
  content: '';
  width: 5px;
  height: 10px;
  background: #d01026;
  display: inline-block;
  margin: 0 12px 0 0;
  position: relative;
  top: 8px;
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  border-radius: 1px;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .l_container .c_ttl_6:before {
    top: 9px;
  }
}
.l_container .c_btn_1 {
  width: 250px;
  height: 45px;
  border-radius: 5px;
  padding: 0 20px;
  display: inline-flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  position: relative;
}
.l_container .c_btn_1:before {
  position: absolute;
  top: 50%;
  right: 15px;
  content: '';
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.l_container .c_btn_1 > .u_txt_1 {
  font-weight: bold;
}
.l_container .c_btn_1._pt1 {
  background: #d01026;
}
@media screen and (min-width: 769px) {
  .l_container .c_btn_1._pt1:hover {
    background: #ad0b1e;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
}
.l_container .c_btn_1._pt1 > .u_txt_1 {
  color: #fff;
}
.l_container .c_btn_1._pt2 {
  border: 1px solid #d01026;
}
@media screen and (min-width: 769px) {
  .l_container .c_btn_1._pt2:hover {
    border: none;
    background: #ad0b1e;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .l_container .c_btn_1._pt2:hover > .u_txt_1 {
    color: #fff;
  }
  .l_container .c_btn_1._pt2:hover:before {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}
.l_container .c_btn_1._pt2:before {
  border-top: 1px solid #d01026;
  border-right: 1px solid #d01026;
}
.l_container .c_btn_1._pt2 > .u_txt_1 {
  color: #d01026;
}
.l_container .c_btn_1._pt3 {
  border: 1px solid #4d4d4d;
}
@media screen and (min-width: 769px) {
  .l_container .c_btn_1._pt3:hover {
    border: 1px solid #d01026;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .l_container .c_btn_1._pt3:hover > .u_txt_1 {
    color: #d01026;
  }
  .l_container .c_btn_1._pt3:hover:before {
    border-top: 1px solid #d01026;
    border-right: 1px solid #d01026;
  }
}
.l_container .c_btn_1._pt3:before {
  border-top: 1px solid #4d4d4d;
  border-right: 1px solid #4d4d4d;
}
.l_container .c_btn_1._pt3 > .u_txt_1 {
  color: #4d4d4d;
}
.l_container .c_btn_2 {
  width: 250px;
  height: 45px;
  border-radius: 5px;
  padding: 0 40px;
  display: inline-flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  position: relative;
}
.l_container .c_btn_2:before {
  content: url(../img/common/icon_outlink1.svg);
  position: absolute;
  top: 50%;
  right: 15px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.l_container .c_btn_2 > .u_txt_1 {
  font-weight: bold;
}
.l_container .c_btn_2._pt1 {
  background: #d01026;
}
@media screen and (min-width: 769px) {
  .l_container .c_btn_2._pt1:hover {
    background: #ad0b1e;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
}
.l_container .c_btn_2._pt1 > .u_txt_1 {
  color: #fff;
}
.l_container .c_btn_2._pt2 {
  border: 1px solid #d01026;
}
@media screen and (min-width: 769px) {
  .l_container .c_btn_2._pt2:hover {
    border: none;
    background: #ad0b1e;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .l_container .c_btn_2._pt2:hover > .u_txt_1 {
    color: #fff;
  }
  .l_container .c_btn_2._pt2:hover:before {
    content: url(../img/common/icon_outlink1.svg);
  }
}
.l_container .c_btn_2._pt2:before {
  content: url(../img/common/icon_outlink2.svg);
}
.l_container .c_btn_2._pt2 > .u_txt_1 {
  color: #d01026;
}
.l_container .c_btn_2._pt3 {
  border: 1px solid #4d4d4d;
}
@media screen and (min-width: 769px) {
  .l_container .c_btn_2._pt3:hover {
    border: 1px solid #d01026;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .l_container .c_btn_2._pt3:hover > .u_txt_1 {
    color: #d01026;
  }
  .l_container .c_btn_2._pt3:hover:before {
    content: url(../img/common/icon_outlink2.svg);
  }
}
.l_container .c_btn_2._pt3:before {
  content: url(../img/common/icon_outlink3.svg);
}
.l_container .c_btn_2._pt3 > .u_txt_1 {
  color: #4d4d4d;
}
.l_container .c_btn_3 {
  width: 250px;
  height: 45px;
  border-radius: 5px;
  display: inline-flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  position: relative;
}
.l_container .c_btn_3 > .u_txt_1 {
  font-weight: bold;
  padding: 0 0 0 23px;
  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;
}
.l_container .c_btn_3._pt1 {
  background: #d01026;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l_container .c_btn_3._pt1 > .u_txt_1:before {
  content: url(../img/common/icon_map1.svg);
  position: absolute;
  top: 4px;
  left: 0;
}
.l_container .c_btn_3._pt1 > .u_txt_1 {
  color: #fff;
}
@media screen and (min-width: 769px) {
  .l_container .c_btn_3._pt1:hover {
    background: #ad0b1e;
  }
}
.l_container .c_btn_3._pt2 {
  border: 1px solid #d01026;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media screen and (min-width: 769px) {
  .l_container .c_btn_3._pt2:hover {
    border: none;
    background: #ad0b1e;
  }
  .l_container .c_btn_3._pt2:hover > .u_txt_1 {
    color: #fff;
  }
  .l_container .c_btn_3._pt2:hover > .u_txt_1:before {
    content: url(../img/common/icon_map1.svg);
  }
}
.l_container .c_btn_3._pt2 > .u_txt_1 {
  color: #d01026;
  position: relative;
}
.l_container .c_btn_3._pt2 > .u_txt_1:before {
  content: url(../img/common/icon_map2.svg);
  position: absolute;
  top: 4px;
  left: 0;
}
.l_container .c_btn_3._pt3 {
  border: 1px solid #4d4d4d;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media screen and (min-width: 769px) {
  .l_container .c_btn_3._pt3:hover {
    border: 1px solid #d01026;
  }
  .l_container .c_btn_3._pt3:hover > .u_txt_1 {
    color: #d01026;
  }
  .l_container .c_btn_3._pt3:hover > .u_txt_1:before {
    content: url(../img/common/icon_map2.svg);
  }
}
.l_container .c_btn_3._pt3 > .u_txt_1 {
  color: #4d4d4d;
}
.l_container .c_btn_3._pt3 > .u_txt_1:before {
  content: url(../img/common/icon_map3.svg);
  position: absolute;
  top: 4px;
  left: 0;
}
.l_container .c_btn_4 {
  width: 250px;
  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;
}
.l_container .c_btn_4 .button {
  width: 120px;
  height: 35px;
  border-radius: 5px;
  background: #d01026;
  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;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l_container .c_btn_4 .button._pt1 > .u_txt_1 {
  color: #fff;
}
@media screen and (min-width: 769px) {
  .l_container .c_btn_4 .button._pt1:hover {
    background: #ad0b1e;
  }
}
.l_container .c_btn_4 .button._pt2 {
  background: #fff;
  border: 1px solid #d01026;
}
.l_container .c_btn_4 .button._pt2 > .u_txt_1 {
  color: #d01026;
}
.l_container .c_btn_4 .button._pt2.prev > .u_txt_1:before {
  border-top: 1px solid #d01026;
  border-left: 1px solid #d01026;
}
@media screen and (min-width: 769px) {
  .l_container .c_btn_4 .button._pt2.prev:hover {
    background: #ad0b1e;
  }
  .l_container .c_btn_4 .button._pt2.prev:hover > .u_txt_1 {
    color: #fff;
  }
  .l_container .c_btn_4 .button._pt2.prev:hover > .u_txt_1:before {
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
  }
}
.l_container .c_btn_4 .button._pt2.next > .u_txt_1:before {
  border-top: 1px solid #d01026;
  border-right: 1px solid #d01026;
}
.l_container .c_btn_4 .button._pt3 {
  background: #fff;
  border: 1px solid #4d4d4d;
}
.l_container .c_btn_4 .button._pt3 > .u_txt_1 {
  color: #4d4d4d;
}
.l_container .c_btn_4 .button._pt3.prev > .u_txt_1:before {
  border-top: 1px solid #4d4d4d;
  border-left: 1px solid #4d4d4d;
}
@media screen and (min-width: 769px) {
  .l_container .c_btn_4 .button._pt3.prev:hover {
    border: 1px solid #d01026;
  }
  .l_container .c_btn_4 .button._pt3.prev:hover > .u_txt_1 {
    color: #d01026;
  }
  .l_container .c_btn_4 .button._pt3.prev:hover > .u_txt_1:before {
    border-top: 1px solid #d01026;
    border-left: 1px solid #d01026;
  }
}
.l_container .c_btn_4 .button._pt3.next > .u_txt_1:before {
  border-top: 1px solid #4d4d4d;
  border-right: 1px solid #4d4d4d;
}
@media screen and (min-width: 769px) {
  .l_container .c_btn_4 .button._pt3.next:hover {
    background: #fff;
    border: 1px solid #d01026;
  }
  .l_container .c_btn_4 .button._pt3.next:hover > .u_txt_1 {
    color: #d01026;
  }
  .l_container .c_btn_4 .button._pt3.next:hover > .u_txt_1:before {
    border-top: 1px solid #d01026;
    border-right: 1px solid #d01026;
  }
}
.l_container .c_btn_4 .button.prev > .u_txt_1 {
  position: relative;
  padding: 0 0 0 16px;
}
.l_container .c_btn_4 .button.prev > .u_txt_1:before {
  position: absolute;
  top: 50%;
  left: 0;
  content: '';
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  -moz-transform: rotate(-45deg) translateY(-50%);
  -ms-transform: rotate(-45deg) translateY(-50%);
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
}
.l_container .c_btn_4 .button.next > .u_txt_1 {
  padding: 0 16px 0 0;
  position: relative;
}
.l_container .c_btn_4 .button.next > .u_txt_1:before {
  position: absolute;
  top: 50%;
  right: 0;
  content: '';
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -moz-transform: rotate(45deg) translateY(-50%);
  -ms-transform: rotate(45deg) translateY(-50%);
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}
@media screen and (min-width: 769px) {
  .l_container .c_btn_4 .button.next:hover {
    background: #ad0b1e;
  }
  .l_container .c_btn_4 .button.next:hover > .u_txt_1 {
    color: #fff;
  }
  .l_container .c_btn_4 .button.next:hover > .u_txt_1:before {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}
.l_container .c_btn_4 .button > .u_txt_1 {
  font-weight: bold;
}
.l_container .c_btn_5 {
  position: relative;
  width: 300px;
  max-width: 100%;
  height: 60px;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .l_container .c_btn_5 {
    width: 320px;
    max-width: none;
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_btn_5:hover > .inner {
    background: #de790e;
    margin: 3px 0 0;
  }
}
.l_container .c_btn_5:before {
  content: '';
  width: 100%;
  height: 8px;
  background: #de790e;
  -moz-border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0;
  border-radius: 0 0 5px 5px;
  position: absolute;
  bottom: -3px;
  left: 0;
}
.l_container .c_btn_5 > .inner {
  position: relative;
  height: 100%;
  background: #ff9321;
  color: #fff;
  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;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
@media screen and (min-width: 769px) {
  .l_container .c_btn_5 > .inner {
    width: 320px;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
}
.l_container .c_btn_5 > .inner .ico {
  width: 24px;
  margin: 0 5px 0 0;
}
@media screen and (min-width: 769px) {
  .l_container .c_btn_5 > .inner .ico {
    margin: 0 10px 0 0;
  }
}
.l_container .c_btn_5._pt2 > .inner {
  padding: 0 10px;
}
.l_container .c_pager {
  width: 100%;
  margin: 40px 0;
  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;
}
.l_container .c_pager span,
.l_container .c_pager a {
  width: auto;
  min-width: 30px;
  min-height: 30px;
  margin: 0 5px;
  border: 1px solid #4d4d4d;
  border-radius: 2px;
  font-size: 1.4em;
  background-color: #fff;
  text-decoration: none;
  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;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l_container .c_pager a:hover {
  color: #fff;
  border-color: #4d4d4d;
  background-color: #4d4d4d;
}
.l_container .c_pager a._none {
  background: transparent;
  color: transparent;
  border: transparent;
  pointer-events: none;
  opacity: 0;
}
.l_container .c_pager a.prev {
  margin-right: 6px;
  color: #4d4d4d;
  border: none;
  position: relative;
}
.l_container .c_pager a.prev:hover {
  background: transparent;
}
.l_container .c_pager a.prev:before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 1px solid #4d4d4d;
  border-left: 1px solid #4d4d4d;
  top: 50%;
  left: 12px;
  -moz-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}
.l_container .c_pager a.next {
  margin-left: 6px;
  position: relative;
  border-color: transparent;
  background-color: transparent;
}
.l_container .c_pager a.next:before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 1px solid #4d4d4d;
  border-right: 1px solid #4d4d4d;
  top: 50%;
  right: 12px;
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.l_container .c_pager a.next:hover {
  border-color: transparent;
  background-color: transparent;
}
.l_container .c_pager a.first {
  position: relative;
  border-color: transparent;
  background-color: transparent;
  margin: 0;
}
.l_container .c_pager a.first:before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 1px solid #4d4d4d;
  border-left: 1px solid #4d4d4d;
  top: 50%;
  left: 10px;
  -moz-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}
.l_container .c_pager a.first:after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 1px solid #4d4d4d;
  border-left: 1px solid #4d4d4d;
  top: 50%;
  left: 16px;
  -moz-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}
.l_container .c_pager a.first:hover {
  border-color: transparent;
  background-color: transparent;
}
.l_container .c_pager a.last {
  position: relative;
  border-color: transparent;
  background-color: transparent;
  margin: 0;
}
.l_container .c_pager a.last:before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 1px solid #4d4d4d;
  border-right: 1px solid #4d4d4d;
  top: 50%;
  right: 10px;
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.l_container .c_pager a.last:after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 1px solid #4d4d4d;
  border-right: 1px solid #4d4d4d;
  top: 50%;
  right: 16px;
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.l_container .c_pager a.last:hover {
  border-color: transparent;
  background-color: transparent;
}
.l_container .c_pager span.page_num {
  display: none;
}
.l_container .c_pager .pager {
  color: #4d4d4d;
}
.l_container .c_pager .pager.current {
  color: #fff;
  border-color: #4d4d4d;
  background-color: #4d4d4d;
}
.l_container .c_table_1 {
  border-bottom: solid 1px #ffd3d3;
}
.l_container .c_table_1 .tr {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .l_container .c_table_1 .tr {
    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;
  }
}
.l_container .c_table_1 .tr .th {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .l_container .c_table_1 .tr .th {
    width: 300px;
  }
}
.l_container .c_table_1 .tr .td {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .l_container .c_table_1 .tr .td {
    width: calc(100% - 300px);
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_table_1 {
    width: 920px;
  }
}
.l_container .c_table_1 > .tr {
  border-top: solid 1px #ffd3d3;
}
.l_container .c_table_1 > .tr > .th {
  background: #fff8f8;
  padding: 13px 20px;
}
@media screen and (min-width: 769px) {
  .l_container .c_table_1 > .tr > .th {
    padding: 15px 20px;
  }
}
.l_container .c_table_1 > .tr > .td {
  padding: 13px 20px;
}
@media screen and (min-width: 769px) {
  .l_container .c_table_1 > .tr > .td {
    padding: 15px 20px;
  }
}
.l_container .c_table_2 {
  border-bottom: solid 1px #ffd3d3;
}
.l_container .c_table_2 .tr {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .l_container .c_table_2 .tr {
    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;
  }
}
.l_container .c_table_2 .tr .th {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .l_container .c_table_2 .tr .th {
    width: 300px;
  }
}
.l_container .c_table_2 .tr .td {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .l_container .c_table_2 .tr .td {
    width: calc(100% - 300px);
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_table_2 {
    width: 920px;
  }
}
.l_container .c_table_2 > .tr {
  border-top: solid 1px #ffd3d3;
}
.l_container .c_table_2 > .tr > .th {
  font-family: "Century Gothic", arial, sans-serif;
  background: #fff8f8;
  padding: 13px 20px;
}
@media screen and (min-width: 769px) {
  .l_container .c_table_2 > .tr > .th {
    padding: 15px 20px;
  }
}
.l_container .c_table_2 > .tr > .td {
  padding: 20px;
  padding: 13px 20px;
}
@media screen and (min-width: 769px) {
  .l_container .c_table_2 > .tr > .td {
    padding: 15px 20px;
  }
}
.l_container .c_table_2 > .tr > .td > .txt {
  margin: 0 0 5px;
}
.l_container .c_table_2 > .tr > .td > .month_list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.l_container .c_table_2 > .tr > .td > .month_list .month_term {
  padding: 0 10px 0 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
}
.l_container .c_table_2 > .tr > .td > .month_list .month_desc {
  width: 100%;
}
.l_container .c_table_2 > .tr > .td .block {
  background: #fff8f8;
  padding: 20px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
@media screen and (min-width: 769px) {
  .l_container .c_table_2 > .tr > .td .block {
    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;
  }
}
.l_container .c_table_2 > .tr > .td .block > .txt_wrap > .ttl {
  margin: 0 0 5px;
}
.l_container .c_table_2 > .tr > .td .block > .img_wrap {
  text-align: center;
  margin: 10px 0 0;
  height: 120px;
}
@media screen and (min-width: 769px) {
  .l_container .c_table_2 > .tr > .td .block > .img_wrap {
    width: 170px;
    margin: 0 0 0 20px;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-shrink: 0;
    flex-shrink: 0;
  }
}
.l_container .c_list_1 > .item {
  margin: 0 0 5px;
  padding: 0 0 0 18px;
  text-indent: -18px;
}
.l_container .c_list_1 > .item:last-child {
  margin: 0;
}
.l_container .c_list_1 > .item:before {
  content: '';
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0 10px 0 0;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.l_container .c_list_1._pt1 > .item:before {
  background: #d01026;
}
.l_container .c_list_1._pt2 > .item:before {
  background: #4d4d4d;
}
.l_container .c_list_2 > .item {
  margin: 0 0 5px;
  padding: 0 0 0 18px;
  text-indent: -18px;
}
.l_container .c_list_2 > .item .num {
  font-family: "Century Gothic", arial, sans-serif;
  display: inline-block;
  width: 18px;
  padding: 0 0 0 18px;
}
.l_container .c_list_2._pt1 > .item .num {
  color: #d01026;
}
.l_container .c_list_2._pt2 > .item .num {
  color: #4d4d4d;
}
.l_container .c_list_3 > .item {
  margin: 0 0 25px;
}
.l_container .c_list_3 > .item:last-child {
  margin: 0;
}
.l_container .c_list_3 > .item > .ttl {
  padding: 0 0 0 18px;
  text-indent: -18px;
}
.l_container .c_list_3 > .item > .ttl:before {
  content: '';
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0 10px 0 0;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.l_container .c_list_3 > .item .txt {
  padding: 0 0 0 18px;
}
.l_container .c_list_3._pt1 > .item > .ttl:before {
  background: #d01026;
}
.l_container .c_list_3._pt2 > .item > .ttl:before {
  background: #4d4d4d;
}
.l_container .c_list_4 {
  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: 769px) {
  .l_container .c_list_4 {
    width: 920px;
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_list_4 > .item {
    margin: 30px 30px 0 0;
    width: calc((99.9% - 30px * (3 - 1)) / 3);
    -moz-transition: opacity 0.4s ease;
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }
  .l_container .c_list_4 > .item:nth-child(-n+3) {
    margin-top: 0;
  }
  .l_container .c_list_4 > .item:nth-child(3n) {
    margin-right: 0;
  }
}
.l_container .c_list_4 > .item:first-of-type {
  border: 0;
  padding: 0 0 15px;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_4 > .item:first-of-type {
    padding: 0;
  }
}
.l_container .c_list_4 > .item:last-child {
  padding: 15px 0 0;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_4 > .item:last-child {
    padding: 0;
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_list_4 > .item:hover {
    opacity: 0.7;
  }
}
.l_container .c_list_4 > .item > .inner {
  color: #4d4d4d;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border-top: solid 1px #f5f5f5;
  padding: 15px 0;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_4 > .item > .inner {
    display: block;
    border: 0;
    padding: 0;
  }
}
.l_container .c_list_4 > .item > .inner .img_wrap {
  width: 100px;
  height: 82px;
  margin: 0 15px 0 0;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_4 > .item > .inner .img_wrap {
    width: 100%;
    height: 240px;
    margin: 0 0 20px;
  }
}
.l_container .c_list_4 > .item > .inner .img_wrap .img {
  max-width: 100%;
}
.l_container .c_list_4 > .item > .inner .txt_wrap {
  width: -moz-calc(100% - 115px);
  width: -o-calc(100% - 115px);
  width: -webkit-calc(100% - 115px);
  width: calc(100% - 115px);
}
@media screen and (min-width: 769px) {
  .l_container .c_list_4 > .item > .inner .txt_wrap {
    width: auto;
  }
}
.l_container .c_list_4 > .item > .inner .txt_wrap > .ttl {
  margin: 0 0 10px;
}
.l_container .c_list_5 {
  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: 769px) {
  .l_container .c_list_5 {
    width: 920px;
  }
}
.l_container .c_list_5 > .item {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_5 > .item {
    margin: 30px 30px 0 0;
    width: calc((100% - 30px * (4 - 1)) / 4);
    -moz-transition: opacity 0.4s ease;
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }
  .l_container .c_list_5 > .item:nth-child(-n+4) {
    margin-top: 0;
  }
  .l_container .c_list_5 > .item:nth-child(4n) {
    margin-right: 0;
  }
}
.l_container .c_list_5 > .item:first-of-type {
  border: 0;
  padding: 0 0 15px;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_5 > .item:first-of-type {
    padding: 0;
  }
}
.l_container .c_list_5 > .item:last-child {
  padding: 15px 0 0;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_5 > .item:last-child {
    padding: 0;
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_list_5 > .item:hover {
    opacity: 0.7;
  }
}
.l_container .c_list_5 > .item > .inner {
  color: #4d4d4d;
  border-top: solid 1px #f5f5f5;
  padding: 15px 0;
  width: 100%;
  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: 769px) {
  .l_container .c_list_5 > .item > .inner {
    display: block;
    border: 0;
  }
}
.l_container .c_list_5 > .item > .inner .img_wrap {
  width: 60px;
  height: 50px;
  margin: 0 15px 0 0;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_5 > .item > .inner .img_wrap {
    width: 100%;
    height: 174px;
    margin: 0 0 15px;
  }
}
.l_container .c_list_5 > .item > .inner .img_wrap .img {
  max-width: 100%;
}
.l_container .c_list_5 > .item > .inner > .ttl {
  width: -moz-calc(100% - 75px);
  width: -o-calc(100% - 75px);
  width: -webkit-calc(100% - 75px);
  width: calc(100% - 75px);
}
@media screen and (min-width: 769px) {
  .l_container .c_list_5 > .item > .inner > .ttl {
    text-align: center;
    width: auto;
  }
}
.l_container .c_list_6 {
  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: 769px) {
  .l_container .c_list_6 {
    width: 920px;
  }
}
.l_container .c_list_6 > .item {
  background: #fff;
  border: solid 5px #fde9e9;
  border-top: 0;
  position: relative;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .l_container .c_list_6 > .item {
    margin: 15px 0 0 0;
    width: 100%;
  }
  .l_container .c_list_6 > .item:nth-child(-n+1) {
    margin-top: 0;
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_list_6 > .item {
    margin: 30px 30px 0 0;
    width: calc((100% - 30px * (2 - 1)) / 2);
  }
  .l_container .c_list_6 > .item:nth-child(-n+2) {
    margin-top: 0;
  }
  .l_container .c_list_6 > .item:nth-child(2n) {
    margin-right: 0;
  }
}
.l_container .c_list_6 > .item .info_wrap {
  margin: 0 0 10px;
  background: #fde9e9;
  padding: 15px 5px;
  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;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_6 > .item .info_wrap {
    margin: 0 0 20px;
    padding: 20px 15px;
  }
}
.l_container .c_list_6 > .item .info_wrap:before {
  content: '';
  background: #fff;
  position: absolute;
  width: 0;
  height: 0;
  border-top: solid 0 #fde9e9;
  border-bottom: solid 10px #fff;
  border-left: solid 10px #fde9e9;
  border-right: solid 10px #fde9e9;
  bottom: 0;
  left: 25px;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_6 > .item .info_wrap:before {
    left: 60px;
  }
}
.l_container .c_list_6 > .item .info_wrap .img_wrap {
  margin: 0 15px 0 0;
  width: 60px;
  height: 60px;
  background: #fff;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_6 > .item .info_wrap .img_wrap {
    margin: 0 20px 0 0;
    width: 110px;
    height: 110px;
  }
}
.l_container .c_list_6 > .item .info_wrap .img_wrap > img {
  width: 100%;
}
.l_container .c_list_6 > .item .info_wrap .txt_wrap {
  width: -moz-calc(100% - 75px);
  width: -o-calc(100% - 75px);
  width: -webkit-calc(100% - 75px);
  width: calc(100% - 75px);
}
@media screen and (min-width: 769px) {
  .l_container .c_list_6 > .item .info_wrap .txt_wrap {
    width: -moz-calc(100% - 130px);
    width: -o-calc(100% - 130px);
    width: -webkit-calc(100% - 130px);
    width: calc(100% - 130px);
  }
}
.l_container .c_list_6 > .item .info_wrap .txt_wrap .profile {
  margin: 0 0 10px;
}
.l_container .c_list_6 > .item .info_wrap .txt_wrap .profile .age {
  padding: 0 8px 0 0;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_6 > .item .info_wrap .txt_wrap .profile .age {
    padding: 0;
  }
}
.l_container .c_list_6 > .item .info_wrap .txt_wrap .tag_wrap {
  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;
}
.l_container .c_list_6 > .item .info_wrap .txt_wrap .tag_wrap .tag {
  background: #d01026;
  margin: 0 5px 5px 0;
  height: 25px;
  padding: 0 10px;
  display: inline-flex;
  -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;
}
.l_container .c_list_6 > .item .comment {
  background: #fff;
  position: relative;
  padding: 0 20px 30px;
  height: 130px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_6 > .item .comment {
    height: auto;
  }
}
.l_container .c_list_6 > .item .comment._open {
  height: auto;
}
.l_container .c_list_6 > .item .more {
  width: 100%;
  padding: 60px 0 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(to top, #ffffff 30px, #ffffff 30px, rgba(255, 255, 255, 0));
}
@media screen and (min-width: 769px) {
  .l_container .c_list_6 > .item .more {
    cursor: pointer;
  }
}
.l_container .c_list_6 > .item .more:after {
  content: '';
  width: 7px;
  height: 7px;
  display: inline-block;
  border-bottom: solid 1px #d01026;
  border-right: solid 1px #d01026;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: 0 0 0 7px;
  position: relative;
  top: -3px;
}
.l_container .c_list_7 > .item {
  margin: 0 0 15px;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_7 > .item {
    margin: 0 0 10px;
    min-height: 84px;
    width: 920px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}
.l_container .c_list_7 > .item .ttl {
  background: #d01026;
  padding: 10px 20px;
  position: relative;
  -moz-border-radius: 3px 3px 0 0;
  -webkit-border-radius: 3px;
  border-radius: 3px 3px 0 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;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_7 > .item .ttl {
    padding: 22px 15px;
    width: 240px;
    -moz-border-radius: 3px 0 0 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px 0 0 3px;
  }
}
.l_container .c_list_7 > .item .ttl:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #d01026 transparent transparent transparent;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -9px;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_7 > .item .ttl:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #d01026;
    right: -10px;
    left: auto;
    bottom: auto;
  }
}
.l_container .c_list_7 > .item .ttl .num {
  font-family: "Century Gothic", arial, sans-serif;
  width: 30px;
  height: 30px;
  margin: 0 10px 0 0;
  display: inline-block;
  background: #fff;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: inline-flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_7 > .item .ttl .num {
    width: 40px;
    height: 40px;
    margin: 0 15px 0 0;
  }
}
.l_container .c_list_7 > .item .desc {
  background: #fde9e9;
  padding: 30px 15px 20px;
  -moz-border-radius: 0 0 3px 3px;
  -webkit-border-radius: 0;
  border-radius: 0 0 3px 3px;
  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: 769px) {
  .l_container .c_list_7 > .item .desc {
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    width: -moz-calc(100% - 240px);
    width: -o-calc(100% - 240px);
    width: -webkit-calc(100% - 240px);
    width: calc(100% - 240px);
    padding: 20px 40px;
    -moz-border-radius: 0 3px 3px 0;
    -webkit-border-radius: 0;
    border-radius: 0 3px 3px 0;
  }
}
.l_container .c_list_8 > .item > .item.left {
  padding: 0 0 0 70px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_8 > .item > .item.left {
    padding: 0 0 0 130px;
  }
}
.l_container .c_list_8 > .item > .item.left:before {
  content: '';
  width: 60px;
  height: 60px;
  background: #fde9e9;
  position: absolute;
  top: -5px;
  left: 0;
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_8 > .item > .item.left:before {
    width: 110px;
    height: 110px;
    top: -24px;
  }
}
.l_container .c_list_8 > .item > .item.left > .wrap {
  position: relative;
}
.l_container .c_list_8 > .item > .item.left > .wrap:before {
  position: absolute;
  top: 0;
  left: -5px;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 15px 0;
  border-color: rgba(0, 0, 0, 0) #d01026 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}
.l_container .c_list_8 > .item > .item.left > .wrap:after {
  position: absolute;
  top: 1px;
  left: -4px;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 14px 0;
  border-color: rgba(0, 0, 0, 0) #fde9e9 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}
.l_container .c_list_8 > .item > .item.left > .wrap > .u_txt_1 {
  padding: 11px 10px 9px 35px;
  background: #fde9e9;
  color: #4d4d4d;
  border: 1px solid #d01026;
  border-radius: 0 5px 5px 5px;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_8 > .item > .item.left > .wrap > .u_txt_1 {
    max-width: 600px;
    display: inline-block;
    padding: 18px 70px 16px 70px;
    border-radius: 0 10px 10px 10px;
  }
}
.l_container .c_list_8 > .item > .item.left > .wrap > .u_txt_1 > span {
  position: relative;
}
.l_container .c_list_8 > .item > .item.left > .wrap > .u_txt_1 > span:before {
  content: url(../img/common/sp/icon_Q.svg);
  position: absolute;
  top: -4px;
  left: -23px;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_8 > .item > .item.left > .wrap > .u_txt_1 > span:before {
    content: url(../img/common/icon_Q.svg);
    top: -7px;
    left: -38px;
  }
}
.l_container .c_list_8 > .item > .item.right {
  position: relative;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_8 > .item > .item.right {
    padding: 0 120px 0 0;
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_list_8 > .item > .item.right:before {
    content: '';
    width: 110px;
    height: 110px;
    background: #fde9e9;
    position: absolute;
    top: -5px;
    right: 0;
    border-radius: 50%;
  }
}
.l_container .c_list_8 > .item > .item.right > .wrap {
  position: relative;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_8 > .item > .item.right > .wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-pack: flex-end;
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_list_8 > .item > .item.right > .wrap:before {
    position: absolute;
    top: 20px;
    right: -5px;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 5px 0 0;
    border-color: #d01026 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_list_8 > .item > .item.right > .wrap:after {
    position: absolute;
    top: 21px;
    right: -4px;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 5px 0 0;
    border-color: #fff8f0 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  }
}
.l_container .c_list_8 > .item > .item.right > .wrap > .u_txt_1 {
  margin: 15px 0 0;
  padding: 11px 10px 9px 35px;
  background: #fff8f0;
  color: #4d4d4d;
  border: 1px solid #d01026;
  border-radius: 5px 5px 5px 5px;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_8 > .item > .item.right > .wrap > .u_txt_1 {
    max-width: 600px;
    margin: 20px 0 0;
    padding: 18px 30px 16px 70px;
    border-radius: 10px 0 10px 10px;
  }
}
.l_container .c_list_8 > .item > .item.right > .wrap > .u_txt_1 > span {
  position: relative;
}
.l_container .c_list_8 > .item > .item.right > .wrap > .u_txt_1 > span:before {
  content: url(../img/common/sp/icon_A.svg);
  position: absolute;
  top: -4px;
  left: -23px;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_8 > .item > .item.right > .wrap > .u_txt_1 > span:before {
    content: url(../img/common/icon_A.svg);
    left: -38px;
  }
}
.l_container .c_list_9 {
  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: 769px) {
  .l_container .c_list_9 {
    width: 920px;
  }
}
.l_container .c_list_9 > .item {
  background: #fff;
  border: solid 5px #fde9e9;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .l_container .c_list_9 > .item {
    margin: 15px 0 0 0;
    width: 100%;
  }
  .l_container .c_list_9 > .item:nth-child(-n+1) {
    margin-top: 0;
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_list_9 > .item {
    margin: 30px 30px 0 0;
    width: calc((100% - 30px * (2 - 1)) / 2);
    -moz-transition: opacity 0.4s ease;
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }
  .l_container .c_list_9 > .item:nth-child(-n+2) {
    margin-top: 0;
  }
  .l_container .c_list_9 > .item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_list_9 > .item:hover {
    opacity: .7;
  }
}
.l_container .c_list_9 > .item > a.inner {
  color: #4d4d4d;
}
.l_container .c_list_9 > .item > a.inner .ttl {
  background: #fde9e9;
  padding: 5px 20px 10px;
  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;
}
.l_container .c_list_9 > .item > a.inner .ttl:before {
  content: '';
  width: 8px;
  height: 8px;
  position: absolute;
  right: 20px;
  border-top: solid 1px #d01026;
  border-right: solid 1px #d01026;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.l_container .c_list_9 > .item > a.inner .txt {
  padding: 10px 20px;
}
.l_container .c_list_10 {
  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: 769px) {
  .l_container .c_list_10 {
    width: 920px;
  }
}
.l_container .c_list_10 > .item {
  background: #fff;
  border: solid 5px #fde9e9;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .l_container .c_list_10 > .item {
    margin: 15px 0 0 0;
    width: 100%;
  }
  .l_container .c_list_10 > .item:nth-child(-n+1) {
    margin-top: 0;
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_list_10 > .item {
    margin: 30px 30px 0 0;
    width: calc((100% - 30px * (2 - 1)) / 2);
  }
  .l_container .c_list_10 > .item:nth-child(-n+2) {
    margin-top: 0;
  }
  .l_container .c_list_10 > .item:nth-child(2n) {
    margin-right: 0;
  }
}
.l_container .c_list_10 > .item .ttl {
  background: #fde9e9;
  padding: 5px 20px 10px;
  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;
}
.l_container .c_list_10 > .item .txt {
  padding: 10px 20px;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_10 > .item .txt {
    min-height: 76px;
  }
}
.l_container .c_list_10 > .item .btn_wrap {
  padding: 0 20px 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;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}
.l_container .c_list_10 > .item .btn_wrap > .link_btn {
  position: relative;
  background: #d01026;
  border: solid 1px #d01026;
  min-height: 30px;
  color: #fff;
  width: -moz-calc(50% - 8px);
  width: -o-calc(50% - 8px);
  width: -webkit-calc(50% - 8px);
  width: calc(50% - 8px);
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  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: 769px) {
  .l_container .c_list_10 > .item .btn_wrap > .link_btn {
    width: 192px;
    min-height: 35px;
    padding: 0 20px;
    -moz-transition: background-color 0.2s;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_list_10 > .item .btn_wrap > .link_btn:hover {
    background: #ad0b1e;
  }
}
.l_container .c_list_10 > .item .btn_wrap > .link_btn:after {
  content: '';
  width: 6px;
  height: 6px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  right: 10px;
  top: 11px;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (min-width: 769px) {
  .l_container .c_list_10 > .item .btn_wrap > .link_btn:after {
    width: 8px;
    height: 8px;
    top: 38%;
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_list_11 {
    width: 205px;
  }
}
.l_container .c_list_11 > .wrap {
  padding: 0 5px 5px 5px;
  background: #fde9e9;
}
.l_container .c_list_11 > .wrap > .u_txt_10 {
  display: block;
  padding: 10px 20px;
  color: #4d4d4d;
  position: relative;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_11 > .wrap > .u_txt_10 {
    width: 155px;
    margin: 0 auto;
    padding: 10px 0;
  }
}
.l_container .c_list_11 > .wrap > .u_txt_10:before {
  content: '';
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid #d01026;
  border-right: 1px solid #d01026;
  right: 20px;
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (min-width: 769px) {
  .l_container .c_list_11 > .wrap > .u_txt_10:before {
    right: 12px;
  }
}
.l_container .c_list_11 > .wrap > .list {
  padding: 0 20px;
  background: #fff;
}
.l_container .c_list_11 > .wrap > .list > li:not(:first-child) {
  border-top: 1px solid #fde9e9;
}
.l_container .c_list_11 > .wrap > .list > li > a {
  position: relative;
}
.l_container .c_list_11 > .wrap > .list > li > a:before {
  position: absolute;
  content: '';
  width: 7px;
  height: 7px;
  top: 50%;
  right: 0;
  border-top: 1px solid #d01026;
  border-right: 1px solid #d01026;
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (min-width: 769px) {
  .l_container .c_list_11 > .wrap > .list > li > a:before {
    right: 12px;
  }
}
.l_container .c_list_11 > .wrap > .list > li > a > .u_txt_1 {
  color: #4d4d4d;
}
.l_container .c_list_11 > .wrap > .list > .link > a {
  width: 100%;
  height: 55px;
  padding: 0;
  background: #fff;
  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: 769px) {
  .l_container .c_list_11 > .wrap > .list > .link > a {
    height: 35px;
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_list_12 {
    max-width: 920px;
  }
}
.l_container .c_list_12 > .wrap > .parent {
  pointer-events: all;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_12 > .wrap > .parent {
    pointer-events: none;
  }
}
.l_container .c_list_12 > .wrap > .parent:first-child {
  border-top: 1px solid #d01026;
}
.l_container .c_list_12 > .wrap > .parent._active {
  display: block;
}
.l_container .c_list_12 > .wrap > .parent._active > .item > .absolute > .wrap > .vertical {
  -moz-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.l_container .c_list_12 > .wrap > .parent > .item {
  min-height: 50px;
  padding: 10px 20px;
  border: 1px solid #d01026;
  border-top: none;
  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;
}
.l_container .c_list_12 > .wrap > .parent > .item > .u_txt_1 {
  color: #d01026;
}
.l_container .c_list_12 > .wrap > .parent > .item > .absolute {
  position: absolute;
  top: 50%;
  right: 17px;
  width: 15px;
  height: 15px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  .l_container .c_list_12 > .wrap > .parent > .item > .absolute {
    display: none;
  }
}
.l_container .c_list_12 > .wrap > .parent > .item > .absolute > .wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.l_container .c_list_12 > .wrap > .parent > .item > .absolute > .wrap > .horizontal,
.l_container .c_list_12 > .wrap > .parent > .item > .absolute > .wrap > .vertical {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  top: 50%;
  background: #d01026;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l_container .c_list_12 > .wrap > .parent > .item > .absolute > .wrap > .horizontal {
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.l_container .c_list_12 > .wrap > .parent > .item > .absolute > .wrap > .vertical {
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.l_container .c_list_12 > .wrap > .children {
  padding: 0 20px;
  background: #fff8f8;
  display: none;
  border-bottom: 1px solid #d01026;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_12 > .wrap > .children {
    display: block;
    padding: 15px 0 25px;
    background: #fff;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
  }
}
.l_container .c_list_12 > .wrap > .children:last-child {
  border-bottom: none;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_12 > .wrap > .children > .item:not(:first-child) {
    padding: 0 0 0 30px;
  }
}
.l_container .c_list_12 > .wrap > .children > .item:not(:first-child) > a {
  border-top: 1px solid #ffd3d3;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_12 > .wrap > .children > .item:not(:first-child) > a {
    border: none;
  }
}
.l_container .c_list_12 > .wrap > .children > .item > a {
  min-height: 70px;
  padding: 15px 7px 15px 0;
  color: #4d4d4d;
  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: 769px) {
  .l_container .c_list_12 > .wrap > .children > .item > a {
    display: block;
    padding: 0;
  }
}
.l_container .c_list_12 > .wrap > .children > .item > a > .img_wrap {
  max-width: 80px;
  border: solid 1px #fee9e9;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_12 > .wrap > .children > .item > a > .img_wrap {
    max-width: 160px;
  }
}
.l_container .c_list_12 > .wrap > .children > .item > a > .img_wrap > .img {
  max-width: 100%;
  vertical-align: bottom;
}
.l_container .c_list_12 > .wrap > .children > .item > a > .u_txt_1 {
  padding: 0 0 0 20px;
  position: relative;
  width: -moz-calc(100% - 80px);
  width: -o-calc(100% - 80px);
  width: -webkit-calc(100% - 80px);
  width: calc(100% - 80px);
}
@media screen and (min-width: 769px) {
  .l_container .c_list_12 > .wrap > .children > .item > a > .u_txt_1 {
    margin: 5px 0 0;
    width: 100%;
    padding: 0;
    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;
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_list_12 > .wrap > .children > .item > a > .u_txt_1 > span {
    padding: 0 16px 0 0;
    position: relative;
  }
  .l_container .c_list_12 > .wrap > .children > .item > a > .u_txt_1 > span:before {
    content: '';
    width: 7px;
    height: 7px;
    position: absolute;
    top: 50%;
    right: -4px;
    border-top: 1px solid #d01026;
    border-right: 1px solid #d01026;
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
  }
}
.l_container .c_list_12 > .wrap > .children > .item > a > .u_txt_1:before {
  content: '';
  width: 7px;
  height: 7px;
  position: absolute;
  top: 50%;
  right: -4px;
  border-top: 1px solid #d01026;
  border-right: 1px solid #d01026;
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (min-width: 769px) {
  .l_container .c_list_12 > .wrap > .children > .item > a > .u_txt_1:before {
    display: none;
  }
}
.l_container .c_list_13 {
  max-width: 920px;
}
.l_container .c_list_13 > .lists {
  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 (max-width: 768px) {
  .l_container .c_list_13 > .lists > .list {
    margin: 15px 20px 0 0;
    width: calc((100% - 20px * (2 - 1)) / 2);
  }
  .l_container .c_list_13 > .lists > .list:nth-child(-n+2) {
    margin-top: 0;
  }
  .l_container .c_list_13 > .lists > .list:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_list_13 > .lists > .list {
    margin: 20px 30px 0 0;
    width: calc((100% - 30px * (4 - 1)) / 4);
  }
  .l_container .c_list_13 > .lists > .list:nth-child(-n+4) {
    margin-top: 0;
  }
  .l_container .c_list_13 > .lists > .list:nth-child(4n) {
    margin-right: 0;
  }
}
.l_container .c_list_13 > .lists > .list a {
  text-align: center;
  display: block;
  color: #4d4d4d;
}
.l_container .c_list_13 > .lists > .list a > .u_txt_1 {
  margin: 5px 0 0;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_13 > .lists > .list a > .u_txt_1 {
    margin: 0;
  }
}
.l_container .c_list_14 {
  max-width: 920px;
}
.l_container .c_list_14 > .lists {
  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;
}
.l_container .c_list_14 > .lists > .list {
  border-bottom: solid 1px #f5f5f5;
}
@media screen and (max-width: 768px) {
  .l_container .c_list_14 > .lists > .list {
    margin: 15px 0 0 0;
    width: 100%;
  }
  .l_container .c_list_14 > .lists > .list:nth-child(-n+1) {
    margin-top: 0;
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_list_14 > .lists > .list {
    border: 0;
    margin: 30px 30px 0 0;
    width: calc((99.9% - 30px * (3 - 1)) / 3);
  }
  .l_container .c_list_14 > .lists > .list:nth-child(-n+3) {
    margin-top: 0;
  }
  .l_container .c_list_14 > .lists > .list:nth-child(3n) {
    margin-right: 0;
  }
}
.l_container .c_list_14 > .lists > .list:last-child {
  border: 0;
}
.l_container .c_list_14 > .lists > .list > a {
  width: 100%;
  padding: 0 0 15px;
  color: #4d4d4d;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_14 > .lists > .list > a {
    display: block;
    padding: 0;
  }
}
.l_container .c_list_14 > .lists > .list > a > .img_wrap {
  width: 100px;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_14 > .lists > .list > a > .img_wrap {
    width: 100%;
  }
}
.l_container .c_list_14 > .lists > .list > a > .img_wrap > img {
  max-width: 100%;
}
.l_container .c_list_14 > .lists > .list > a > .txt_wrap {
  padding: 0 0 0 15px;
  width: -moz-calc(100% - 100px);
  width: -o-calc(100% - 100px);
  width: -webkit-calc(100% - 100px);
  width: calc(100% - 100px);
}
@media screen and (min-width: 769px) {
  .l_container .c_list_14 > .lists > .list > a > .txt_wrap {
    width: 100%;
    padding: 0;
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_list_14 > .lists > .list > a > .txt_wrap > .u_txt_11 {
    margin: 5px 0;
  }
}
.l_container .c_list_14 > .lists > .list > a > .txt_wrap > .u_txt_12 {
  display: none;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_14 > .lists > .list > a > .txt_wrap > .u_txt_12 {
    display: inline-block;
    padding: 0 15px 0 0;
    position: relative;
    color: #d01026;
  }
  .l_container .c_list_14 > .lists > .list > a > .txt_wrap > .u_txt_12:before {
    content: '';
    width: 7px;
    height: 7px;
    position: absolute;
    top: 50%;
    right: 0;
    border-top: 1px solid #d01026;
    border-right: 1px solid #d01026;
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
  }
}
.l_container .c_list_15 {
  background: #fde9e9;
  padding: 0 5px 5px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_15 {
    width: 920px;
  }
}
.l_container .c_list_15 > .ttl {
  padding: 20px;
  padding: 15px 20px;
}
.l_container .c_list_15 > .list {
  background: #fff;
  padding: 0 20px;
  height: 200px;
  overflow: scroll;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_15 > .list {
    padding: 0 20px;
    height: auto;
    overflow: visible;
  }
}
.l_container .c_list_15 > .list > .item {
  border-bottom: solid 1px #fde9e9;
  padding: 10px 0;
  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;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_15 > .list > .item {
    padding: 10px 0;
    -moz-transition: opacity 0.4s ease;
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }
}
.l_container .c_list_15 > .list > .item:before {
  content: '';
  width: 8px;
  height: 8px;
  position: absolute;
  right: 10px;
  border-top: solid 1px #d01026;
  border-right: solid 1px #d01026;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (min-width: 769px) {
  .l_container .c_list_15 > .list > .item:before {
    right: 20px;
  }
}
.l_container .c_list_15 > .list > .item:last-child {
  border: 0;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_15 > .list > .item:hover {
    opacity: .7;
  }
}
.l_container .c_list_15 > .list > .item > .inner {
  background: #fff;
  color: #4d4d4d;
  padding: 0 30px 0 0;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_15 > .list > .item > .inner {
    padding: 0 40px 0 0;
  }
}
.l_container .c_list_15 > .list > .item > .inner .date,
.l_container .c_list_15 > .list > .item > .inner .area {
  margin: 0 5px 0 0;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_15 > .list > .item > .inner .date,
  .l_container .c_list_15 > .list > .item > .inner .area {
    margin: 0 10px 0 0;
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_list_16 {
    width: 920px;
  }
}
.l_container .c_list_16._pt1 > .inner .list_wrap > .list {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_16._pt2 > .inner .list_wrap {
    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;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_list_16._pt2 > .inner .list_wrap > .list {
    width: -moz-calc(50% - 5px);
    width: -o-calc(50% - 5px);
    width: -webkit-calc(50% - 5px);
    width: calc(50% - 5px);
  }
}
.l_container .c_list_16 > .inner {
  padding: 0 5px;
  background: #fde9e9;
}
.l_container .c_list_16 > .inner > .ttl {
  display: block;
  padding: 10px 20px;
  color: #4d4d4d;
  position: relative;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_16 > .inner > .ttl {
    margin: 0 auto;
    padding: 10px 20px;
  }
}
.l_container .c_list_16 > .inner > .ttl._none {
  pointer-events: none;
}
.l_container .c_list_16 > .inner > .ttl._none:before {
  display: none;
}
.l_container .c_list_16 > .inner > .ttl:before {
  content: '';
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid #d01026;
  border-right: 1px solid #d01026;
  right: 20px;
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (min-width: 769px) {
  .l_container .c_list_16 > .inner > .ttl:before {
    right: 30px;
  }
}
.l_container .c_list_16 > .inner .list_wrap {
  padding: 0 0 5px;
}
.l_container .c_list_16 > .inner .list_wrap > .list {
  padding: 0 20px;
  background: #fff;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_16 > .inner .list_wrap > .list {
    padding: 10px 20px 10px;
  }
}
.l_container .c_list_16 > .inner .list_wrap > .list > .item {
  border-bottom: solid 1px #fde9e9;
  padding: 10px 0;
}
.l_container .c_list_16 > .inner .list_wrap > .list > .item:last-child {
  border: 0;
  padding: 10px 0 0;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_16 > .inner .list_wrap > .list > .item:last-child {
    padding: 10px 0;
  }
}
.l_container .c_list_16 > .inner .list_wrap > .list > .item._pt2 {
  padding: 10px 0;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_16 > .inner .list_wrap > .list > .item._pt2 {
    padding: 0 0 10px;
  }
}
.l_container .c_list_16 > .inner .list_wrap > .list > .item._pt2 > .child_list {
  border-top: 0;
  margin: 0;
}
.l_container .c_list_16 > .inner .list_wrap > .list > .item._pt2 > .child_list > .item:first-of-type {
  border-top: solid 1px #fde9e9;
}
@media screen and (min-width: 769px) {
  .l_container .c_list_16 > .inner .list_wrap > .list > .item._pt2 > .child_list > .item:first-of-type {
    border-top: 0;
  }
}
.l_container .c_list_16 > .inner .list_wrap > .list > .item > .child_list {
  margin: 5px 0 0;
  padding: 0 0 0 20px;
  border-top: solid 1px #fde9e9;
}
.l_container .c_list_16 > .inner .list_wrap > .list > .item > .child_list > .item {
  border-bottom: solid 1px #fde9e9;
  padding: 10px 0;
}
.l_container .c_list_16 > .inner .list_wrap > .list > .item > .child_list > .item:last-child {
  border: 0;
  padding: 10px 0 0;
}
.l_container .c_list_16 > .inner .list_wrap > .list > .item .link {
  position: relative;
  display: block;
}
.l_container .c_list_16 > .inner .list_wrap > .list > .item .link:before {
  position: absolute;
  content: '';
  width: 7px;
  height: 7px;
  top: 50%;
  right: 0;
  border-top: 1px solid #d01026;
  border-right: 1px solid #d01026;
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (min-width: 769px) {
  .l_container .c_list_16 > .inner .list_wrap > .list > .item .link:before {
    right: 10px;
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 {
    width: 920px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    align-items: flex-end;
    -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 (min-width: 769px) {
  .l_container .c_item_1 .rank_wrap {
    width: 590px;
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .rank_wrap > .list {
    min-height: 340px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-pack: flex-end;
  }
}
.l_container .c_item_1 .rank_wrap > .list > .item {
  margin: 0 0 10px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.l_container .c_item_1 .rank_wrap > .list > .item:last-child {
  margin: 0;
}
.l_container .c_item_1 .rank_wrap > .list > .item .reason_txt {
  padding: 10px 25px 10px 15px;
  background: #fde9e9;
  -moz-border-radius: 3px 0 0 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px 0 0 3px;
  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;
  width: -moz-calc(100% - 80px);
  width: -o-calc(100% - 80px);
  width: -webkit-calc(100% - 80px);
  width: calc(100% - 80px);
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .rank_wrap > .list > .item .reason_txt {
    min-height: 60px;
    padding: 10px 20px;
    width: -moz-calc(100% - 200px);
    width: -o-calc(100% - 200px);
    width: -webkit-calc(100% - 200px);
    width: calc(100% - 200px);
  }
}
.l_container .c_item_1 .rank_wrap > .list > .item .rank_txt {
  background: #d01026;
  width: 80px;
  padding: 10px 8px;
  text-align: center;
  -moz-border-radius: 0 3px 3px 0;
  -webkit-border-radius: 0;
  border-radius: 0 3px 3px 0;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .rank_wrap > .list > .item .rank_txt {
    padding: 12px 15px;
    width: 200px;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .rank_wrap > .list > .item .rank_txt .ranking {
    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-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.l_container .c_item_1 .rank_wrap > .list > .item .rank_txt .ranking .en,
.l_container .c_item_1 .rank_wrap > .list > .item .rank_txt .ranking .ja {
  display: block;
  font-family: "Century Gothic", arial, sans-serif;
  line-height: 1.2;
}
.l_container .c_item_1 .rank_wrap > .list > .item .rank_txt .num {
  color: #ff8;
  font-family: "Century Gothic", arial, sans-serif;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .rank_wrap > .list > .item .rank_txt .num {
    padding: 0 5px;
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .rank_wrap > .list > .item .rank_txt .u_bold {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-self: center;
    -moz-align-self: center;
    -ms-align-self: center;
    align-self: center;
    -webkit-align-items: baseline;
    -moz-align-items: baseline;
    -ms-align-items: baseline;
    align-items: baseline;
  }
}
.l_container .c_item_1 .level_wrap {
  position: relative;
  background: #fde9e9;
  border: dashed 1px #d01026;
  margin: 140px auto 0;
  padding: 20px 0 15px 15px;
  min-width: 260px;
  width: -moz-calc(100% - 60px);
  width: -o-calc(100% - 60px);
  width: -webkit-calc(100% - 60px);
  width: calc(100% - 60px);
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap {
    width: 300px;
    padding: 25px 0 25px 15px;
    margin: 0;
  }
}
.l_container .c_item_1 .level_wrap:after {
  content: '';
  background: url(../img/common/sp/ranking_img.png) no-repeat;
  width: 200px;
  height: 124px;
  background-size: cover;
  position: absolute;
  top: -120px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap:after {
    background: url(../img/common/ranking_img.png) no-repeat;
    width: 245px;
    height: 151px;
    top: -145px;
  }
}
.l_container .c_item_1 .level_wrap.sideburns:after {
  background: url(../img/common/ranking_img-sideburns.png) no-repeat;
  background-size: cover;
  height: 133px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap.sideburns:after {
    background: url(../img/common/ranking_img-sideburns.png) no-repeat;
    width: 245px;
    height: 163px;
    top: -145px;
  }
}
.l_container .c_item_1 .level_wrap.under-mouth:after {
  background: url(../img/common/ranking_img-under-mouth.png) no-repeat;
  background-size: cover;
  height: 133px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap.under-mouth:after {
    background: url(../img/common/ranking_img-under-mouth.png) no-repeat;
    width: 245px;
    height: 163px;
    top: -145px;
  }
}
.l_container .c_item_1 .level_wrap.under-nose:after {
  background: url(../img/common/ranking_img-under-nose.png) no-repeat;
  background-size: cover;
  height: 133px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap.under-nose:after {
    background: url(../img/common/ranking_img-under-nose.png) no-repeat;
    width: 245px;
    height: 163px;
    top: -145px;
  }
}
.l_container .c_item_1 .level_wrap.collar-leg:after {
  background: url(../img/common/ranking_img-collar-leg.png) no-repeat;
  background-size: cover;
  height: 133px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap.collar-leg:after {
    background: url(../img/common/ranking_img-collar-leg.png) no-repeat;
    width: 245px;
    height: 163px;
    top: -145px;
  }
}
.l_container .c_item_1 .level_wrap.breast:after {
  background: url(../img/common/ranking_img-breast.png) no-repeat;
  background-size: cover;
  height: 133px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap.breast:after {
    background: url(../img/common/ranking_img-breast.png) no-repeat;
    width: 245px;
    height: 163px;
    top: -145px;
  }
}
.l_container .c_item_1 .level_wrap.areola:after {
  background: url(../img/common/ranking_img-areola.png) no-repeat;
  background-size: cover;
  height: 133px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap.areola:after {
    background: url(../img/common/ranking_img-areola.png) no-repeat;
    width: 245px;
    height: 163px;
    top: -145px;
  }
}
.l_container .c_item_1 .level_wrap.on-back:after {
  background: url(../img/common/ranking_img-on-back.png) no-repeat;
  background-size: cover;
  height: 133px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap.on-back:after {
    background: url(../img/common/ranking_img-on-back.png) no-repeat;
    width: 245px;
    height: 163px;
    top: -145px;
  }
}
.l_container .c_item_1 .level_wrap.waist:after {
  background: url(../img/common/ranking_img-waist.png) no-repeat;
  background-size: cover;
  height: 133px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap.waist:after {
    background: url(../img/common/ranking_img-waist.png) no-repeat;
    width: 245px;
    height: 163px;
    top: -145px;
  }
}
.l_container .c_item_1 .level_wrap.ryowaki:after {
  background: url(../img/common/ranking_img-ryowaki.png) no-repeat;
  background-size: cover;
  height: 133px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap.ryowaki:after {
    background: url(../img/common/ranking_img-ryowaki.png) no-repeat;
    width: 245px;
    height: 163px;
    top: -145px;
  }
}
.l_container .c_item_1 .level_wrap.on-elbow:after {
  background: url(../img/common/ranking_img-on-elbow.png) no-repeat;
  background-size: cover;
  height: 133px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap.on-elbow:after {
    background: url(../img/common/ranking_img-on-elbow.png) no-repeat;
    width: 245px;
    height: 163px;
    top: -145px;
  }
}
.l_container .c_item_1 .level_wrap.under-elbow:after {
  background: url(../img/common/ranking_img-under-elbow.png) no-repeat;
  background-size: cover;
  height: 133px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap.under-elbow:after {
    background: url(../img/common/ranking_img-under-elbow.png) no-repeat;
    width: 245px;
    height: 163px;
    top: -145px;
  }
}
.l_container .c_item_1 .level_wrap.shell-finger:after {
  background: url(../img/common/ranking_img-shell-finger.png) no-repeat;
  background-size: cover;
  height: 133px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap.shell-finger:after {
    background: url(../img/common/ranking_img-shell-finger.png) no-repeat;
    width: 245px;
    height: 163px;
    top: -145px;
  }
}
.l_container .c_item_1 .level_wrap.belly:after {
  background: url(../img/common/ranking_img-belly.png) no-repeat;
  background-size: cover;
  height: 133px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap.belly:after {
    background: url(../img/common/ranking_img-belly.png) no-repeat;
    width: 245px;
    height: 163px;
    top: -145px;
  }
}
.l_container .c_item_1 .level_wrap.navel:after {
  background: url(../img/common/ranking_img-navel.png) no-repeat;
  background-size: cover;
  height: 133px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap.navel:after {
    background: url(../img/common/ranking_img-navel.png) no-repeat;
    width: 245px;
    height: 163px;
    top: -145px;
  }
}
.l_container .c_item_1 .level_wrap.vline:after {
  background: url(../img/common/ranking_img-vline.png) no-repeat;
  background-size: cover;
  height: 133px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap.vline:after {
    background: url(../img/common/ranking_img-vline.png) no-repeat;
    width: 245px;
    height: 163px;
    top: -145px;
  }
}
.l_container .c_item_1 .level_wrap.hips:after {
  background: url(../img/common/ranking_img-hips.png) no-repeat;
  background-size: cover;
  height: 133px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap.hips:after {
    background: url(../img/common/ranking_img-hips.png) no-repeat;
    width: 245px;
    height: 163px;
    top: -145px;
  }
}
.l_container .c_item_1 .level_wrap.hips-back:after {
  background: url(../img/common/ranking_img-hips-back.png) no-repeat;
  background-size: cover;
  height: 133px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap.hips-back:after {
    background: url(../img/common/ranking_img-hips-back.png) no-repeat;
    width: 245px;
    height: 163px;
    top: -145px;
  }
}
.l_container .c_item_1 .level_wrap.vline-i:after {
  background: url(../img/common/ranking_img-vline-i.png) no-repeat;
  background-size: cover;
  height: 133px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap.vline-i:after {
    background: url(../img/common/ranking_img-vline-i.png) no-repeat;
    width: 245px;
    height: 163px;
    top: -145px;
  }
}
.l_container .c_item_1 .level_wrap.knees:after {
  background: url(../img/common/ranking_img-knees.png) no-repeat;
  background-size: cover;
  height: 133px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap.knees:after {
    background: url(../img/common/ranking_img-knees.png) no-repeat;
    width: 245px;
    height: 163px;
    top: -145px;
  }
}
.l_container .c_item_1 .level_wrap.on-knees:after {
  background: url(../img/common/ranking_img-on-knees.png) no-repeat;
  background-size: cover;
  height: 133px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap.on-knees:after {
    background: url(../img/common/ranking_img-on-knees.png) no-repeat;
    width: 245px;
    height: 163px;
    top: -145px;
  }
}
.l_container .c_item_1 .level_wrap.under-knees:after {
  background: url(../img/common/ranking_img-under-knees.png) no-repeat;
  background-size: cover;
  height: 133px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap.under-knees:after {
    background: url(../img/common/ranking_img-under-knees.png) no-repeat;
    width: 245px;
    height: 163px;
    top: -145px;
  }
}
.l_container .c_item_1 .level_wrap.shell-feet:after {
  background: url(../img/common/ranking_img-shell-feet.png) no-repeat;
  background-size: cover;
  height: 133px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap.shell-feet:after {
    background: url(../img/common/ranking_img-shell-feet.png) no-repeat;
    width: 245px;
    height: 163px;
    top: -145px;
  }
}
.l_container .c_item_1 .level_wrap .img_wrap {
  text-align: center;
  margin: 0 0 15px;
  padding: 0 15px 0 0;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap .img_wrap {
    margin: 0 0 20px;
    padding: 0 20px 0 0;
  }
}
.l_container .c_item_1 .level_wrap .img_wrap .img {
  width: 160px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap .img_wrap .img {
    width: auto;
  }
}
.l_container .c_item_1 .level_wrap .list .item {
  margin: 0 0 10px;
  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;
}
.l_container .c_item_1 .level_wrap .list .item:last-child {
  margin: 0;
}
.l_container .c_item_1 .level_wrap .list .item._pt1:before {
  content: '★★★★★';
}
.l_container .c_item_1 .level_wrap .list .item._pt1:after {
  content: '★';
}
.l_container .c_item_1 .level_wrap .list .item._pt2:before {
  content: '★★★★★';
}
.l_container .c_item_1 .level_wrap .list .item._pt2:after {
  content: '★★';
  width: 22px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap .list .item._pt2:after {
    width: 30px;
  }
}
.l_container .c_item_1 .level_wrap .list .item._pt3:before {
  content: '★★★★★';
}
.l_container .c_item_1 .level_wrap .list .item._pt3:after {
  content: '★★';
}
.l_container .c_item_1 .level_wrap .list .item._pt4:before {
  content: '★★★★★';
}
.l_container .c_item_1 .level_wrap .list .item._pt4:after {
  content: '★★★';
  width: 36px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap .list .item._pt4:after {
    width: 51px;
  }
}
.l_container .c_item_1 .level_wrap .list .item._pt5:before {
  content: '★★★★★';
}
.l_container .c_item_1 .level_wrap .list .item._pt5:after {
  content: '★★★';
}
.l_container .c_item_1 .level_wrap .list .item._pt6:before {
  content: '★★★★★';
}
.l_container .c_item_1 .level_wrap .list .item._pt6:after {
  content: '★★★★';
  width: 51px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap .list .item._pt6:after {
    width: 72px;
  }
}
.l_container .c_item_1 .level_wrap .list .item._pt7:before {
  content: '★★★★★';
}
.l_container .c_item_1 .level_wrap .list .item._pt7:after {
  content: '★★★★';
}
.l_container .c_item_1 .level_wrap .list .item._pt8:before {
  content: '★★★★★';
}
.l_container .c_item_1 .level_wrap .list .item._pt8:after {
  content: '★★★★★';
  width: 66px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap .list .item._pt8:after {
    width: 92px;
  }
}
.l_container .c_item_1 .level_wrap .list .item._pt9:before {
  display: none;
}
.l_container .c_item_1 .level_wrap .list .item._pt9:after {
  content: '★★★★★';
}
.l_container .c_item_1 .level_wrap .list .item:before, .l_container .c_item_1 .level_wrap .list .item:after {
  font-size: 14px;
  white-space: nowrap;
  position: absolute;
  overflow: hidden;
  left: 165px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap .list .item:before, .l_container .c_item_1 .level_wrap .list .item:after {
    font-size: 20px;
  }
}
.l_container .c_item_1 .level_wrap .list .item:before {
  color: #fff;
}
.l_container .c_item_1 .level_wrap .list .item:after {
  color: #d01026;
}
.l_container .c_item_1 .level_wrap .list .item .ttl {
  margin: 0 10px 0 0;
  position: relative;
  padding: 0 0 0 12px;
  width: 155px;
  height: 20px;
  background: #d01026;
  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: 769px) {
  .l_container .c_item_1 .level_wrap .list .item .ttl {
    height: 30px;
    padding: 0 0 0 10px;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
  }
}
.l_container .c_item_1 .level_wrap .list .item .ttl:after {
  content: '';
  width: 0;
  height: 0;
  border-top: solid 10px #d01026;
  border-bottom: solid 10px #d01026;
  border-left: solid 0 #d01026;
  border-right: solid 5px #fde9e9;
  position: absolute;
  right: 0;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_1 .level_wrap .list .item .ttl:after {
    border-top: solid 15px #d01026;
    border-bottom: solid 15px #d01026;
    border-left: solid 0 #d01026;
    border-right: solid 10px #fde9e9;
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_item_2 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}
.l_container .c_item_2 > .list {
  background: #fde9e9;
  margin: 0 0 20px;
  padding: 20px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_2 > .list {
    width: 410px;
    margin: 0 30px 0 0;
    padding: 25px;
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_item_2 .txt {
    width: -moz-calc(100% - 440px);
    width: -o-calc(100% - 440px);
    width: -webkit-calc(100% - 440px);
    width: calc(100% - 440px);
  }
}
.l_container .c_item_3 {
  padding: 20px;
  border: solid 5px #fee9e9;
  border-radius: 3px;
}
.l_container .c_item_4 {
  padding: 20px;
  border: solid 5px #fee9e9;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_4 {
    flex-direction: row;
  }
}
.l_container .c_item_4 .txt {
  flex: 1;
}
.l_container .c_item_4 .img {
  width: 100%;
  margin: 0 0 20px 0;
  border-radius: 3px;
  align-self: flex-start;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_4 .img {
    width: 250px;
    margin: 0 20px 0 0;
  }
}
.l_container .c_item_5 .img {
  width: 100%;
  margin: 0 0 10px;
  border-radius: 3px;
}
.l_container .c_item_6 {
  position: relative;
}
.l_container .c_item_6 .comment {
  height: 130px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .l_container .c_item_6 .comment {
    height: auto;
  }
}
.l_container .c_item_6 .comment._open {
  height: auto;
}
.l_container .c_item_6 .more {
  width: 100%;
  padding: 60px 0 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(to top, #ffffff 30px, #ffffff 30px, rgba(255, 255, 255, 0));
}
.l_container .c_item_6 .more:after {
  content: '';
  width: 7px;
  height: 7px;
  display: inline-block;
  border-bottom: solid 1px #d01026;
  border-right: solid 1px #d01026;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: 0 0 0 7px;
  position: relative;
  top: -3px;
}
.l_container .c_slider {
  position: relative;
  padding: 0 0 40px;
}
@media screen and (min-width: 769px) {
  .l_container .c_slider {
    width: 580px;
    padding: 0 0 33px;
    margin: 0 auto;
  }
}
.l_container .c_slider .slick-slide {
  border: 1px solid #fee9e9;
  border-radius: 3px;
}
.l_container .c_slider .slick-prev,
.l_container .c_slider .slick-next {
  top: auto;
  bottom: -10px;
  width: 30px;
  height: 30px;
  background: #d01026;
  border-radius: 3px;
}
@media screen and (min-width: 769px) {
  .l_container .c_slider .slick-prev,
  .l_container .c_slider .slick-next {
    width: 25px;
    height: 80px;
    top: 50%;
    bottom: auto;
  }
}
.l_container .c_slider .slick-prev:before,
.l_container .c_slider .slick-next:before {
  font-family: '';
}
.l_container .c_slider .slick-prev {
  left: 0;
}
.l_container .c_slider .slick-prev:before {
  content: '';
  position: absolute;
  opacity: 1;
  width: 7px;
  height: 7px;
  left: 13px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  -moz-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (min-width: 769px) {
  .l_container .c_slider .slick-prev:before {
    left: 10px;
  }
}
.l_container .c_slider .slick-next {
  right: 0;
}
.l_container .c_slider .slick-next:before {
  content: '';
  position: absolute;
  opacity: 1;
  width: 7px;
  height: 7px;
  right: 13px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (min-width: 769px) {
  .l_container .c_slider .slick-next:before {
    right: 10px;
  }
}
.l_container .c_slider .slick-dots {
  position: absolute;
  bottom: 12px;
}
@media screen and (min-width: 769px) {
  .l_container .c_slider .slick-dots {
    bottom: 0;
  }
}
.l_container .c_slider .slick-dots li {
  width: 15px;
  height: 15px;
  margin: 0 10px;
}
.l_container .c_slider .slick-dots li.slick-active button {
  background: #d01026;
}
.l_container .c_slider .slick-dots li.slick-active button:before {
  font-family: '';
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.l_container .c_slider .slick-dots li button {
  border: 1px solid #fee9e9;
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .l_container .c_slider .slick-dots li button {
    width: 15px;
    height: 15px;
  }
}
.l_container .c_slider .slick-dots li button:before {
  font-family: '';
  color: transparent;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .l_container .c_tab {
    width: 920px;
  }
}
.l_container .c_tab > .switch {
  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: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
}
.l_container .c_tab > .switch > .tab {
  width: 150px;
  height: 40px;
  border: 1px solid #ffd3d3;
  background: #fff8f8;
  border-radius: 5px 5px 0 0;
  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: 769px) {
  .l_container .c_tab > .switch > .tab {
    width: 250px;
    cursor: pointer;
  }
}
.l_container .c_tab > .switch > .tab:not(:first-child) {
  margin: 0 0 0 10px;
}
.l_container .c_tab > .switch > .tab > .u_txt_1 {
  color: #d01026;
  font-weight: bold;
}
.l_container .c_tab > .switch > .tab._active {
  height: 45px;
  background: #d01026;
  border: none;
}
.l_container .c_tab > .switch > .tab._active > .u_txt_1 {
  color: #fff;
}
.l_container .c_tab > .box {
  width: 100%;
  padding: 25px 20px 20px 20px;
  background: #fff8f8;
  border-top: 5px solid #d01026;
}
.l_container .c_tab > .box > .item.item1 > .iframe {
  position: relative;
  width: 100%;
  height: 470px;
}
.l_container .c_tab > .box > .item.item1 > .iframe > iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
.l_container .c_toggle_1 > .parent {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border: 1px solid #d01026;
  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;
}
@media screen and (min-width: 769px) {
  .l_container .c_toggle_1 > .parent {
    cursor: pointer;
    width: 920px;
  }
}
.l_container .c_toggle_1 > .parent._active > .absolute > .wrap > .horizontal {
  -moz-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.l_container .c_toggle_1 > .parent > .u_txt_1 {
  color: #d01026;
}
.l_container .c_toggle_1 > .parent > .absolute {
  position: absolute;
  top: 50%;
  right: 17px;
  width: 15px;
  height: 15px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.l_container .c_toggle_1 > .parent > .absolute > .wrap {
  width: 15px;
  height: 15px;
  position: relative;
}
.l_container .c_toggle_1 > .parent > .absolute > .wrap > .horizontal,
.l_container .c_toggle_1 > .parent > .absolute > .wrap > .vertical {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #d01026;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.l_container .c_toggle_1 > .parent > .absolute > .wrap > .horizontal {
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.l_container .c_toggle_1 > .child {
  background: #fff8f8;
  padding: 0 20px;
  display: none;
}
@media screen and (min-width: 769px) {
  .l_container .c_toggle_1 > .child {
    width: 920px;
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_toggle_1 > .child > .list {
    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;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
  }
  .l_container .c_toggle_1 > .child > .list:after {
    content: '';
    width: 273px;
  }
}
.l_container .c_toggle_1 > .child > .list > .item:last-child > a {
  border-bottom: none;
}
@media screen and (min-width: 769px) {
  .l_container .c_toggle_1 > .child > .list > .item:nth-child(n + 4) {
    border-top: 1px solid #ffd3d3;
  }
}
.l_container .c_toggle_1 > .child > .list > .item > a {
  padding: 15px 0;
  border-bottom: 1px solid #ffd3d3;
  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;
}
@media screen and (min-width: 769px) {
  .l_container .c_toggle_1 > .child > .list > .item > a {
    width: 273px;
    min-height: 45px;
    border-bottom: none;
  }
}
.l_container .c_toggle_1 > .child > .list > .item > a:before {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  border-top: 1px solid #d01026;
  border-right: 1px solid #d01026;
  right: 0;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.l_container .c_toggle_1 > .child > .list > .item > a > .img {
  padding: 0 20px 0 0;
}
.l_container .c_toggle_1 > .child > .list > .item > a .u_txt_1 {
  color: #4d4d4d;
  line-height: 1;
}
.l_container .c_toggle_1 .child + .parent {
  border-top: none;
}
.l_container .c_toggle_1 .child._active + .parent {
  border-top: 1px solid #d01026;
}
.l_container .c_toggle_2 {
  padding: 5px;
  background: #fde9e9;
}
@media screen and (min-width: 769px) {
  .l_container .c_toggle_2 {
    width: 285px;
  }
}
.l_container .c_toggle_2 > li:not(:first-child) {
  margin: 5px 0 0;
}
.l_container .c_toggle_2 > li > a {
  position: relative;
}
.l_container .c_toggle_2 > li > a:before {
  position: absolute;
  content: '';
  width: 7px;
  height: 7px;
  top: 50%;
  right: 26px;
  border-top: 1px solid #d01026;
  border-right: 1px solid #d01026;
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (min-width: 769px) {
  .l_container .c_toggle_2 > li > a:before {
    right: 12px;
  }
}
.l_container .c_toggle_2 > li > a > .u_txt_1 {
  color: #4d4d4d;
}
.l_container .c_toggle_2 > .link > a {
  width: 100%;
  height: 55px;
  padding: 0 0 0 20px;
  background: #fff;
  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: 769px) {
  .l_container .c_toggle_2 > .link > a {
    height: 35px;
  }
}
.l_container .c_toggle_2 > .parent {
  background: #fff;
  width: 100%;
  height: 55px;
  padding: 0 20px;
  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;
}
@media screen and (min-width: 769px) {
  .l_container .c_toggle_2 > .parent {
    height: 35px;
    cursor: pointer;
  }
}
.l_container .c_toggle_2 > .parent._active > .absolute > .wrap > .horizontal {
  -moz-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.l_container .c_toggle_2 > .parent > .u_txt_1 {
  color: #4d4d4d;
}
.l_container .c_toggle_2 > .parent > .absolute {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 15px;
  height: 15px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  .l_container .c_toggle_2 > .parent > .absolute {
    right: 8px;
  }
}
.l_container .c_toggle_2 > .parent > .absolute > .wrap {
  width: 15px;
  height: 15px;
  position: relative;
}
.l_container .c_toggle_2 > .parent > .absolute > .wrap > .horizontal,
.l_container .c_toggle_2 > .parent > .absolute > .wrap > .vertical {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #d01026;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.l_container .c_toggle_2 > .parent > .absolute > .wrap > .horizontal {
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.l_container .c_toggle_2 > .child {
  margin: 0 !important;
  background: #fff8f8;
  padding: 15px 20px 15px 40px;
  display: none;
}
@media screen and (min-width: 769px) {
  .l_container .c_toggle_2 > .child {
    padding: 10px 12px 10px 30px;
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_toggle_2 > .child > .list {
    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;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
  }
  .l_container .c_toggle_2 > .child > .list:after {
    content: '';
    width: 273px;
  }
}
@media screen and (min-width: 769px) {
  .l_container .c_toggle_2 > .child > .list > .item {
    width: 100%;
  }
}
.l_container .c_toggle_2 > .child > .list > .item:last-child > a {
  border-bottom: none;
}
.l_container .c_toggle_2 > .child > .list > .item > a {
  padding: 15px 0;
  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;
}
@media screen and (min-width: 769px) {
  .l_container .c_toggle_2 > .child > .list > .item > a {
    padding: 10px 0;
    border-bottom: none;
  }
}
.l_container .c_toggle_2 > .child > .list > .item > a:before {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  border-top: 1px solid #d01026;
  border-right: 1px solid #d01026;
  right: 5px;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (min-width: 769px) {
  .l_container .c_toggle_2 > .child > .list > .item > a:before {
    right: 0;
  }
}
.l_container .c_toggle_2 > .child > .list > .item > a > .img {
  padding: 0 20px 0 0;
}
.l_container .c_toggle_2 > .child > .list > .item > a .u_txt_2 {
  color: #4d4d4d;
  line-height: 1;
}
.l_container .c_toggle_3 > .parent {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border: 1px solid #d01026;
  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;
}
@media screen and (min-width: 769px) {
  .l_container .c_toggle_3 > .parent {
    cursor: pointer;
  }
}
.l_container .c_toggle_3 > .parent._active > .absolute > .wrap > .horizontal {
  -moz-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.l_container .c_toggle_3 > .parent > .u_txt_1 {
  color: #d01026;
}
.l_container .c_toggle_3 > .parent > .absolute {
  position: absolute;
  top: 50%;
  right: 17px;
  width: 15px;
  height: 15px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.l_container .c_toggle_3 > .parent > .absolute > .wrap {
  width: 15px;
  height: 15px;
  position: relative;
}
.l_container .c_toggle_3 > .parent > .absolute > .wrap > .horizontal,
.l_container .c_toggle_3 > .parent > .absolute > .wrap > .vertical {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #d01026;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l_container .c_toggle_3 > .parent > .absolute > .wrap > .horizontal {
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.l_container .c_toggle_3 > .child {
  background: #fff8f8;
  padding: 0 20px;
  display: none;
}
@media screen and (min-width: 769px) {
  .l_container .c_toggle_3 > .child > .list {
    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;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
  }
  .l_container .c_toggle_3 > .child > .list:after {
    content: '';
    width: 273px;
  }
}
.l_container .c_toggle_3 > .child > .list > .item {
  width: 100%;
}
.l_container .c_toggle_3 > .child > .list > .item:last-child > a {
  width: 100%;
  border-bottom: none;
}
.l_container .c_toggle_3 > .child > .list > .item > a {
  padding: 15px 0;
  border-bottom: 1px solid #ffd3d3;
  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;
}
@media screen and (min-width: 769px) {
  .l_container .c_toggle_3 > .child > .list > .item > a {
    width: 100%;
    min-height: 45px;
  }
}
.l_container .c_toggle_3 > .child > .list > .item > a:before {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  border-top: 1px solid #d01026;
  border-right: 1px solid #d01026;
  right: 0;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.l_container .c_toggle_3 > .child > .list > .item > a > .img {
  padding: 0 20px 0 0;
}
.l_container .c_toggle_3 > .child > .list > .item > a .u_txt_1 {
  color: #4d4d4d;
  line-height: 1;
}
.l_container .c_toggle_3 .child + .parent {
  border-top: none;
}
.l_container .c_toggle_3 .child._active + .parent {
  border-top: 1px solid #d01026;
}
.l_container a.c_link_1:link, .l_container a.c_link_1:visited, .l_container a.c_link_1:active {
  color: #d01026;
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .l_container a.c_link_1:hover {
    text-decoration: none;
  }
}

/* ======================================================================
 layout
====================================================================== */
/* =================================
breadcrumb
================================= */
div.breadcrumb {
  background: #fbe8e8;
  padding: 0 4.6875%;
  margin: 17.33333vw 0 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  div.breadcrumb {
    margin: 0;
    min-width: 1400px;
  }
}
div.breadcrumb ul {
  font-size: 12px;
  padding: 10px 0 8px;
  overflow-x: scroll;
  white-space: nowrap;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}
div.breadcrumb ul::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}
div.breadcrumb ul li {
  display: inline-block;
}
div.breadcrumb ul li .bread-arrow {
  padding: 0 5px;
}
div.breadcrumb ul li a {
  color: #333;
}
div.breadcrumb ul li a:hover {
  text-decoration: underline;
}

/* =================================
 l_container
================================= */
.l_container {
  position: relative;
  /* =================================
  l_content_size
  ================================= */
  /* =================================
   l_content
  ================================= */
  /* =================================
   l_plan_blk
  ================================= */
}
@media screen and (min-width: 769px) {
  .l_container {
    min-width: 1400px;
  }
}
.l_container .l_content_size {
  padding: 0 4.8%;
}
@media screen and (min-width: 769px) {
  .l_container .l_content_size {
    width: 920px;
    padding: 0;
  }
}
.l_container .l_content {
  /* =================================
   l_main
  ================================= */
  /* =================================
   l_side
  ================================= */
}
@media screen and (min-width: 769px) {
  .l_container .l_content {
    width: 1200px;
    margin: 0 auto;
    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 (min-width: 769px) {
  .l_container .l_content .l_main {
    width: 920px;
  }
}
.l_container .l_content .l_side {
  padding: 0 4.7875%;
}
@media screen and (min-width: 769px) {
  .l_container .l_content .l_side {
    padding: 0;
    width: 230px;
  }
}
.l_container .l_content .l_side .relation_box {
  margin: 20px 0 0;
}
.l_container .l_content .l_side .box {
  border-radius: 3px;
  background: #FDE9E9;
}
.l_container .l_content .l_side .box > h2 {
  background: #d01026;
  text-align: center;
  border-radius: 3px 3px 0 0;
  padding: 10px 0;
  color: #fff;
}
.l_container .l_content .l_side .box > .wrap {
  padding: 10px;
  margin: 0 0 20px;
}
.l_container .l_content .l_side .box > .wrap li {
  background: #fff;
  border: none;
}
.l_container .l_content .l_side .box > .wrap li:not(:first-child) {
  margin: 10px 0 0;
}
.l_container .l_content .l_side .box > .wrap li.child {
  background: #fff8f8;
  margin: 0 !important;
}
@media screen and (min-width: 769px) {
  .l_container .l_content .l_side .box > .wrap li.child {
    padding: 0;
  }
}
.l_container .l_content .l_side .box > .wrap li.child > .list > .item {
  margin: 0;
  background: #fff8f8;
}
.l_container .l_content .l_side .box > .wrap li.child > .list > .item > a {
  border-bottom: none;
  padding: 15px 20px 15px 30px;
}
@media screen and (min-width: 769px) {
  .l_container .l_content .l_side .box > .wrap li.child > .list > .item > a {
    padding: 0 34px 0 30px;
  }
}
.l_container .l_content .l_side .box > .wrap li.child > .list > .item > a:before {
  right: 0;
}
@media screen and (min-width: 769px) {
  .l_container .l_content .l_side .box > .wrap li.child > .list > .item > a:before {
    right: 22px;
  }
}
.l_container .l_content .l_side .box > .wrap > .list_wrap > .item > .inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.l_container .l_content .l_side .box > .wrap > .list_wrap > .item > .inner > .img_wrap {
  width: 70px;
  height: 70px;
  position: relative;
  overflow: hidden;
}
.l_container .l_content .l_side .box > .wrap > .list_wrap > .item > .inner > .img_wrap > img {
  position: absolute;
  width: 100%;
  height: auto;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.l_container .l_content .l_side .box > .wrap > .list_wrap > .item > .inner > .ttl {
  padding: 0 20px;
  width: -moz-calc(100% - 70px);
  width: -o-calc(100% - 70px);
  width: -webkit-calc(100% - 70px);
  width: calc(100% - 70px);
}
.l_container .l_content .l_side .banner_area {
  margin: 20px 0 0;
}
.l_container .l_content .l_side .banner_area > ul > li:not(:first-child) {
  margin: 10px 0 0;
}
.l_container .l_content .l_side .banner_area > ul > li > a {
  display: block;
}
@media screen and (min-width: 769px) {
  .l_container .l_content .l_side .banner_area > ul > li > a {
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .l_container .l_content .l_side .banner_area > ul > li > a:hover {
    opacity: .7;
  }
}
.l_container .l_content .l_side .c_toggle_3.salon_side .parent {
  padding: 0;
}
.l_container .l_content .l_side .c_toggle_3.salon_side .parent > a {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  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_container .l_plan_blk {
  margin: 30px auto 0;
}
@media screen and (min-width: 769px) {
  .l_container .l_plan_blk {
    width: 1200px;
    margin: 50px auto 0;
  }
}
.l_container .l_plan_blk > .inner > .popular_wrap {
  margin: 0 0 20px;
}
@media screen and (min-width: 769px) {
  .l_container .l_plan_blk > .inner > .popular_wrap {
    margin: 0 0 30px;
  }
}
.l_container .l_plan_blk > .inner > .popular_wrap > .ttl {
  margin: 0 0 15px;
}
@media screen and (min-width: 769px) {
  .l_container .l_plan_blk > .inner > .popular_wrap > .ttl {
    margin: 0 0 25px;
  }
}
.l_container .l_plan_blk > .inner > .popular_wrap > .link {
  width: 100%;
  display: block;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media screen and (min-width: 769px) {
  .l_container .l_plan_blk > .inner > .popular_wrap > .link {
    width: 628px;
    margin: 0 auto;
  }
  .l_container .l_plan_blk > .inner > .popular_wrap > .link:hover {
    opacity: .7;
  }
}
.l_container .l_plan_blk > .inner > .campaign_wrap > .lists {
  margin: 15px 0 0;
}
@media screen and (min-width: 769px) {
  .l_container .l_plan_blk > .inner > .campaign_wrap > .lists {
    width: 920px;
    margin: 25px auto 0;
    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;
    -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 (min-width: 769px) {
  .l_container .l_plan_blk > .inner > .campaign_wrap > .lists > .list {
    width: 445px;
  }
}
.l_container .l_plan_blk > .inner > .campaign_wrap > .lists > .list:not(:first-child) {
  margin: 10px 0 0;
}
@media screen and (min-width: 769px) {
  .l_container .l_plan_blk > .inner > .campaign_wrap > .lists > .list:not(:first-child) {
    margin: 30px 0 0;
  }
}
@media screen and (min-width: 769px) {
  .l_container .l_plan_blk > .inner > .campaign_wrap > .lists > .list:nth-child(2) {
    margin: 0;
  }
}
.l_container .l_plan_blk > .inner > .campaign_wrap > .lists > .list > .link {
  border: 1px solid #d01026;
  border-radius: 3px;
  padding: 5px 35px 10px 10px;
  display: block;
  position: relative;
  background: linear-gradient(270deg, #d01026 0%, #d01026 25px, #ffffff 25px, #ffffff 100%);
}
@media screen and (min-width: 769px) {
  .l_container .l_plan_blk > .inner > .campaign_wrap > .lists > .list > .link {
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .l_container .l_plan_blk > .inner > .campaign_wrap > .lists > .list > .link:hover {
    opacity: .7;
  }
}
.l_container .l_plan_blk > .inner > .campaign_wrap > .lists > .list > .link:before {
  content: '';
  position: absolute;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 8px;
  height: 8px;
  top: 50%;
  right: 14px;
  -moz-transform: rotate(45deg) translateY(-50%);
  -ms-transform: rotate(45deg) translateY(-50%);
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}
@media screen and (min-width: 769px) {
  .l_container .l_plan_blk > .inner > .campaign_wrap > .lists > .list > .link:before {
    width: 12px;
    height: 12px;
  }
}
.l_container .l_plan_blk > .inner > .campaign_wrap > .lists > .list > .link > .ttl {
  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_container .l_plan_blk > .inner > .campaign_wrap > .lists > .list > .link > .ttl .tag {
  width: 100px;
  height: 25px;
  background: #d01026;
  color: #fff;
  border-radius: 2px;
  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;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
@media screen and (max-width: 768px) {
  .l_container .l_plan_blk > .inner > .campaign_wrap > .lists > .list > .link > .ttl .tag {
    width: 130px;
  }
}
.l_container .l_plan_blk > .inner > .campaign_wrap > .lists > .list > .link > .ttl .u_txt_18 {
  margin: 0 0 0 15px;
  color: #d01026;
  line-height: 1.2;
  width: -moz-calc(100% - 115px);
  width: -o-calc(100% - 115px);
  width: -webkit-calc(100% - 115px);
  width: calc(100% - 115px);
}
@media screen and (min-width: 769px) {
  .l_container .l_plan_blk > .inner > .campaign_wrap > .lists > .list > .link > .ttl .u_txt_18 {
    line-height: 2;
  }
}
.l_container .l_plan_blk > .inner > .campaign_wrap > .lists > .list > .link > .txt {
  margin: 5px 0 0;
  color: #4d4d4d;
  background: #fee9e9;
  padding: 5px 15px;
  border-radius: 5px;
}
@media screen and (min-width: 769px) {
  .l_container .l_plan_blk > .inner > .campaign_wrap > .lists > .list > .link > .txt {
    min-height: 55px;
    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_container .l_plan_blk > .inner > .btn_wrap {
  margin: 20px auto 0;
  text-align: center;
}

/* =================================
header footer
================================= */
.u_sp .mg-footer {
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding-top: 45px;
  padding-top: 9.46667vw;
  padding-bottom: 120px;
  padding-bottom: 32vw;
}
.u_sp .mg-footer .mg-page-inside {
  width: 90.53333vw;
}
.u_sp .mg-footer-tel {
  margin-bottom: 37px;
  margin-bottom: 10.66667vw;
}
.u_sp .mg-footer-tel a {
  display: block;
}
.u_sp .mg-footer-tel img {
  width: 100%;
}
.u_sp .mg-footer-share {
  margin-bottom: 32px;
  margin-bottom: 6vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.u_sp .mg-footer-share li:nth-child(n+2) {
  margin-left: 20px;
  margin-left: 7.2vw;
}
.u_sp .mg-footer-share a {
  background-color: #6f3e45;
  border-radius: 50%;
  width: 40px;
  width: 13.73333vw;
  height: 40px;
  height: 13.73333vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.u_sp .mg-footer-share img {
  width: 100%;
}
.u_sp .mg-footer-nav {
  margin-bottom: 32px;
  margin-bottom: 8.53333vw;
}
.u_sp .mg-footer-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.u_sp .mg-footer-menu:nth-child(n+2) {
  margin-top: 12px;
  margin-top: 3.2vw;
}
.u_sp .mg-footer-menu li:nth-child(n+2) {
  margin-left: 22px;
  margin-left: 5.86667vw;
}
.u_sp .mg-footer-menu a {
  color: #6f3e45;
  font-size: 12px;
  font-size: 3.2vw;
}
.u_sp .mg-footer-banners {
  margin-bottom: 32px;
  margin-bottom: 8.53333vw;
}
.u_sp .mg-footer-banners li {
  width: 100%;
  text-align: center;
}
.u_sp .mg-footer-banners li:nth-child(n+2) {
  margin-top: 12px;
  margin-top: 3.2vw;
}
.u_sp .mg-footer-copyright {
  text-align: center;
  color: #6f3e45;
  font-size: 10px;
  font-size: 2.66667vw;
}
.u_sp .mg-header-main {
  background-color: #d01026;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  z-index: 1000;
  height: 65px;
  height: 17.33333vw;
  padding-left: 12px;
  padding-left: 3.2vw;
  width: 100vw;
  top: 0;
}
.u_sp .mg-header-logo img {
  width: 25vw;
}
.u_sp .mg-header-burger {
  position: fixed;
  z-index: 10000;
  background-color: #fff;
  border: 0;
  outline: none;
  overflow: hidden;
  border-radius: 50%;
  -webkit-box-shadow: 4px 4px 12px rgba(112, 62, 68, 0.2);
  box-shadow: 4px 4px 12px rgba(112, 62, 68, 0.2);
  width: 40px;
  width: 10.66667vw;
  height: 40px;
  height: 10.66667vw;
  top: 12px;
  top: 3.2vw;
  right: 12px;
  right: 3.2vw;
}
.u_sp .mg-header-burger span {
  position: absolute;
  top: 50%;
  left: 50%;
  background-image: url(../../resource/img/migrate/header/sp/burger_line.png);
  width: 18px;
  width: 4.8vw;
  height: 3px;
  height: 0.8vw;
  margin-top: -2px;
  margin-top: -0.53333vw;
  margin-left: -9px;
  margin-left: -2.4vw;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.u_sp .mg-header-burger span:nth-child(1) {
  -webkit-transform: translateY(-180%);
  -ms-transform: translateY(-180%);
  transform: translateY(-180%);
}
.u_sp .mg-header-burger span:nth-child(3) {
  -webkit-transform: translateY(180%);
  -ms-transform: translateY(180%);
  transform: translateY(180%);
}
.u_sp .mg-gnav {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: none;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  background-color: #d01026;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 50px 28px 120px 28px;
  padding: 13.33333vw 7.46667vw 32vw 7.46667vw;
  overflow-x: hidden;
}
.u_sp .mg-gnav.is-active {
  display: block;
}
.u_sp .mg-gnav-logo {
  margin-bottom: 42px;
  margin-bottom: 11.2vw;
}
.u_sp .mg-header-logo img {
  width: 25vw;
}
.u_sp .mg-gnav-flower {
  position: absolute;
  z-index: -1;
  bottom: 82px;
  bottom: 21.86667vw;
  right: -64px;
  right: -17.06667vw;
  width: 239px;
  width: 63.73333vw;
}
.u_sp .mg-gnav-menu li:nth-child(n+2) {
  margin-top: 32px;
  margin-top: 8.53333vw;
}
.u_sp .mg-gnav-menu li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  color: #fff;
  padding-left: 10px;
  padding-left: 2.66667vw;
  font-size: 16px;
  font-size: 4.26667vw;
}
.u_sp .mg-gnav-menu li a:before {
  content: "";
  border-radius: 50%;
  background-color: #fff;
  width: 4px;
  width: 1.06667vw;
  height: 4px;
  height: 1.06667vw;
  margin-right: 10px;
  margin-right: 2.66667vw;
}
.u_sp .mg-gnav-buttons {
  width: 100vw;
  position: fixed;
  z-index: 10000;
  bottom: -1px;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.u_sp .mg-gnav-buttons li {
  width: 50%;
}
.u_sp .mg-gnav-buttons li a {
  width: 100%;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 374px) {
  .u_sp .mg-gnav-buttons li a {
    height: 55px;
    height: 14.66667vw;
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
@media only screen and (min-width: 375px) {
  .u_sp .mg-gnav-buttons li a {
    height: 55px;
    font-size: 14px;
  }
}
.u_sp .mg-gnav-buttons li.mod-salon a {
  color: #f03c51;
  border-top: 1px solid #f03c51;
  background-color: #fff;
}
.u_sp .mg-gnav-buttons li.mod-salon a:before {
  content: "";
  background-image: url(../img/migrate/header/icon_salon.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 374px) {
  .u_sp .mg-gnav-buttons li.mod-salon a:before {
    width: 14px;
    width: 3.73333vw;
    height: 18px;
    height: 4.8vw;
    margin-right: 7px;
    margin-right: 1.86667vw;
  }
}
@media only screen and (min-width: 375px) {
  .u_sp .mg-gnav-buttons li.mod-salon a:before {
    width: 14px;
    height: 18px;
    margin-right: 7px;
  }
}
.u_sp .mg-gnav-buttons li.mod-reserve a {
  color: #fff;
  background-color: #f03c51;
}
.u_sp .mg-gnav-buttons li.mod-reserve a:before {
  content: "";
  background-image: url(../img/migrate/header/icon_reserve.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 374px) {
  .u_sp .mg-gnav-buttons li.mod-reserve a:before {
    width: 18px;
    width: 4.8vw;
    height: 18px;
    height: 4.8vw;
    margin-right: 7px;
    margin-right: 1.86667vw;
  }
}
@media only screen and (min-width: 375px) {
  .u_sp .mg-gnav-buttons li.mod-reserve a:before {
    width: 18px;
    height: 18px;
    margin-right: 7px;
  }
}
.u_sp .header-cvbox {
  color: #d01027;
  background: #fff;
  margin: 0 4vw;
  width: 32vw;
  height: 13.33333vw;
  font-size: 3.3vw;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  border-radius: 4px;
}
.u_sp .flexiblebox {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  /* 縦方向中央揃え（Safari用） */
  align-items: center;
  /* 縦方向中央揃え */
  -webkit-justify-content: center;
  /* 横方向中央揃え（Safari用） */
  justify-content: center;
  /* 横方向中央揃え */
}

.mg-header.u_pc {
  min-width: 1400px;
}

/* ======================================================================
 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;
}

.tag_link:hover {
  opacity: .6;
}

.p_archive_voice .btn_wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 20px auto 30px;
}
.p_archive_voice .btn_wrap .link_btn {
  position: relative;
  width: 250px;
  height: 45px;
  background: #d01026;
  border: solid 1px #d01026;
  color: #fff;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p_archive_voice .btn_wrap .link_btn:after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  right: 10px;
  top: 18px;
  transform: rotate(45deg);
}
.p_archive_voice .btn_wrap .link_btn:hover {
  background: #ad0b1e;
}
.l_container h1 span.big_ttl {
  display: block;
  margin: -5px 0 0;
  font-size: 2.5em;
  line-height: 1.28;
}
@media screen and (min-width: 769px) {
  .p_archive_voice .btn_wrap {
    margin: 40px auto 0;
  }
  .p_archive_voice .btn_wrap .link_btn {
    padding: 0 20px;
    transition: background-color 0.2s;
  }
  .l_container h1 span.big_ttl {
    font-size: 3em;
    line-height: 1.66;
  }
}
.l_container .back_btn {
  margin: 0 0 50px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .l_container .back_btn {
    margin: 0;
  }
}

.short_code_link {
  margin: 40px auto;
  text-align: center;
}
.short_code_link a {
  width: 250px;
  height: 45px;
  border-radius: 5px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #d01026;
}
.short_code_link a:hover {
  background: #ad0b1e;
  transition: all 0.2s linear;
}
.short_code_link a:before {
  position: absolute;
  top: 50%;
  right: 15px;
  content: '';
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.short_code_link a p {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}

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