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

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

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

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

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

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

del {
  text-decoration: line-through;
}

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

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

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

sup{
    vertical-align: top;
    font-size: 70%;
}

input, select {
  vertical-align: middle;
}

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

body {
  position: relative;
  background: transparent;
  color: #333;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "hiragino kaku gothic pro", "メイリオ", Meiryo, "游ゴシック", YuGothic, Verdana, sans-serif;
  word-wrap: break-word;
  word-break: break-word;
  -webkit-text-size-adjust: 100%;
}

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

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

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

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

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

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

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

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

textarea {
  resize: vertical;
}

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

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

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

.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: 1.6;
  letter-spacing: .06em;
}

.u_txt_2 {
  font-size: 1.6em;
  line-height: 1.4;
  letter-spacing: .06em;
}

.u_txt_3 {
  font-size: 1.2em;
  line-height: 1.4;
  letter-spacing: .06em;
}

.u_txt_4 {
  font-size: 2em;
  line-height: 1.5;
  letter-spacing: .06em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .u_txt_4 {
    font-size: 1.8em;
    line-height: 1.6;
    letter-spacing: .06em;
  }
}

.u_txt_5 {
  font-size: 3.6em;
  line-height: 1.1;
  letter-spacing: .06em;
}
@media screen and (max-width: 768px) {
  .u_txt_5 {
    font-size: 2.4em;
    line-height: 1.6;
    letter-spacing: .05em;
  }
}

.u_txt_6 {
  font-size: 2.4em;
  font-family: 'Caveat', 'Comic Sans MS', 'cursive';
  line-height: 1;
  letter-spacing: .06em;
}
@media screen and (max-width: 768px) {
  .u_txt_6 {
    font-size: 1.6em;
    line-height: 1;
    letter-spacing: .06em;
  }
}

.u_txt_7 {
  font-size: 1.6em;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .u_txt_7 {
    font-size: 1.6em;
    line-height: 1.6;
  }
}

.u_txt_8 {
  font-size: 1em;
  line-height: 1.9;
}

.u_txt_9 {
  font-size: 1.6em;
  line-height: 1.6;
  letter-spacing: .06em;
}
@media screen and (max-width: 768px) {
  .u_txt_9 {
    font-size: 1.2em;
    line-height: 1.6;
    letter-spacing: .06em;
  }
}

.u_txt_10 {
  font-size: 2em;
  line-height: 1;
  letter-spacing: .06em;
}
@media screen and (max-width: 768px) {
  .u_txt_10 {
    font-size: 1.6em;
    line-height: 1;
    letter-spacing: .06em;
  }
}

.u_txt_11 {
  font-size: 1.4em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .u_txt_11 {
    font-size: 1.2em;
    line-height: 1;
  }
}

.u_txt_12 {
  font-size: 2.8em;
  line-height: 1.35;
}
@media screen and (max-width: 768px) {
  .u_txt_12 {
    font-size: 1.8em;
    line-height: 1.55;
  }
}

/* =================================
 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_anime_1 {
  animation-name: move-right;
  animation-duration: .7s;
  animation-fill-mode: backwards;
}

.u_anime_2 {
  animation-name: move-under;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}

@keyframes move-right {
  0% {
    right: 0;
  }
  1% {
    right: -100%;
  }
  1% {
    right: 100%;
  }
  100% {
    right: 0;
  }
}
@keyframes move-under {
  0% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: 10px;
    opacity: 0;
  }
}
/* =================================
 hoge
================================= */
/* ======================================================================
 component
====================================================================== */
/* =================================
 title
================================= */
.c_ttl_1 {
  text-align: center;
}
.c_ttl_1 .u_txt_6 {
  margin: 0 0 15px;
}
@media screen and (max-width: 768px) {
  .c_ttl_1 .u_txt_6 {
    margin: 0 0 10px;
  }
}

.c_ttl_2 {
  padding: 30px 0 0;
  text-align: center;
  position: relative;
}
.c_ttl_2:before {
  content: url(../img/common/ico.svg);
  position: absolute;
  top: -7px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .c_ttl_2:before {
    top: 0;
  }
}

.c_ttl_3 .u_txt_7 {
  font-family: 'Caveat', cursive;
}
.c_ttl_3 .txt {
  margin: 2px 0 0;
  font-size: 1.8em;
  letter-spacing: .05em;
}

.c_ttl_4 {
  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;
  text-align: center;
}
.c_ttl_4:before, .c_ttl_4:after {
  border-top: 1px solid;
  content: "";
  flex-grow: 1;
}
.c_ttl_4:before {
  border-top: 1px solid #1AA5AA;
}
.c_ttl_4:after {
  border-top: 1px solid #F5C000;
}
.c_ttl_4 .u_txt_4 {
  display: inline-block;
  padding: 0 20px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c_ttl_4 .u_txt_4 {
    padding: 0 15px 0;
  }
}
.c_ttl_4 .u_txt_4:before, .c_ttl_4 .u_txt_4:after {
  content: '';
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  border-radius: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.c_ttl_4 .u_txt_4:before {
  left: -8px;
  background: #1AA5AA;
}
.c_ttl_4 .u_txt_4:after {
  right: -8px;
  background: #F5C000;
}

/* =================================
 buttons
================================= */
.c_btn_1 {
  width: 220px;
  height: 50px;
  border-radius: 50px;
  background: #333;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c_btn_1 {
    width: 160px;
    height: 40px;
  }
}
.c_btn_1:before {
  content: "";
  width: 120px;
  height: 40px;
  border-radius: 40px 0 0 40px / 40px 0 0 40px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 5px;
  z-index: 1;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c_btn_1:before {
    width: 90px;
    height: 30px;
  }
}
.c_btn_1:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 40px 0;
  border-color: transparent #333 transparent transparent;
  position: absolute;
  top: 50%;
  left: 105px;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c_btn_1:after {
    border-width: 0 15px 30px 0;
    left: 80px;
  }
}
.c_btn_1 .u_txt_9 {
  color: #fff;
  position: relative;
  z-index: 3;
  pointer-events: none;
}
.c_btn_1 .c_ico_1 {
  position: absolute;
  top: 50%;
  right: 15px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c_btn_1 .c_ico_1 {
    right: 10px;
  }
}
.c_btn_1 .c_ico_1 .circle.u_anime_1 {
  animation-name: none;
}
.c_btn_1._hover .c_ico_1 .circle.u_anime_1 {
  animation-name: move-right;
}
.c_btn_1._hover .c_ico_1 .border,
.c_btn_1._hover .c_ico_1 .circle {
  background: #F5C000;
}
@media screen and (max-width: 768px) {
  .c_btn_1._hover .c_ico_1 .border,
  .c_btn_1._hover .c_ico_1 .circle {
    background: #fff;
  }
}
.c_btn_1._hover .u_txt_9 {
  color: #F5C000;
}
@media screen and (max-width: 768px) {
  .c_btn_1._hover .u_txt_9 {
    color: #fff;
  }
}

.c_btn_1.invite{
    background: #f96b96;
}
.c_btn_1.invite._hover .c_ico_1 .border,
.c_btn_1.invite._hover .c_ico_1 .circle {
  background: #ed3465;
}
.c_btn_1.invite::before{
    background: #ed3465;
}
.c_btn_1.invite::after{
    border-color: transparent #f96b96 transparent transparent;
    background: #ed3465;
}

.c_btn_2 {
  width: 250px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid #333;
  position: relative;
  background: #fff;
  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;
}
.c_btn_2:before {
  content: "";
  width: 135px;
  height: 40px;
  border-radius: 40px 0 0 40px / 40px 0 0 40px;
  background: #CFEBEF;
  position: absolute;
  top: 50%;
  left: 5px;
  z-index: 1;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.c_btn_2:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 40px 0;
  border-color: transparent #fff transparent transparent;
  position: absolute;
  top: 50%;
  left: 120px;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.c_btn_2 .u_txt_1 {
  font-weight: bold;
  position: relative;
  z-index: 3;
  pointer-events: none;
}
.c_btn_2 .c_ico_2 {
  position: absolute;
  top: 50%;
  right: 15px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c_btn_2 .c_ico_2 {
    right: 10px;
  }
}
.c_btn_2 .c_ico_2 .circle.u_anime_1 {
  animation-name: none;
}
.c_btn_2._hover .c_ico_2 .circle.u_anime_1 {
  animation-name: move-right;
}
.c_btn_2._hover .c_ico_2 .border,
.c_btn_2._hover .c_ico_2 .circle {
  background: #6ABFC2;
}
@media screen and (max-width: 768px) {
  .c_btn_2._hover .c_ico_2 .border,
  .c_btn_2._hover .c_ico_2 .circle {
    background: #fff;
  }
}

.c_btn_3 {
  background: #fff;
  width: 375px;
  height: 160px;
  border-radius: 30px;
  border: 1px solid #333;
  position: relative;
  padding: 0 0 0 130px;
  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;
}
@media screen and (max-width: 768px) {
  .c_btn_3 {
    width: 100%;
    height: 106px;
    border-radius: 20px;
    padding: 0 0 0 90px;
  }
}
@media screen and (max-width: 320px) {
  .c_btn_3 {
    padding: 0 0 0 80px;
  }
}
.c_btn_3:before {
  content: "";
  width: 215px;
  height: 140px;
  border-radius: 30px 0 0 30px / 30px 0 0 30px;
  background: #CFEBEF;
  position: absolute;
  top: 50%;
  left: 10px;
  z-index: 1;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c_btn_3:before {
    border-radius: 15px 0 0 15px / 15px 0 0 15px;
    height: 90px;
    left: 8px;
    width: -moz-calc(50% + 30px);
    width: -o-calc(50% + 30px);
    width: -webkit-calc(50% + 30px);
    width: calc(50% + 30px);
  }
}
.c_btn_3:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 140px 0;
  border-color: transparent #fff transparent transparent;
  position: absolute;
  top: 8px;
  left: 175px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .c_btn_3:after {
    top: 7px;
    border-width: 0 30px 90px 0;
    left: -moz-calc(50% + 10px);
    left: -o-calc(50% + 10px);
    left: -webkit-calc(50% + 10px);
    left: calc(50% + 10px);
  }
}
.c_btn_3 .u_txt_4 {
  position: relative;
  z-index: 3;
  pointer-events: none;
}
.c_btn_3 .img {
  position: absolute;
  top: 50%;
  left: 30px;
  z-index: 3;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c_btn_3 .img {
    left: 23px;
    width: 50px;
  }
}
.c_btn_3 .c_ico_2 {
  position: absolute;
  top: 50%;
  right: 15px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c_btn_3 .c_ico_2 {
    right: 10px;
  }
}
.c_btn_3 .c_ico_2 .circle.u_anime_1 {
  animation-name: none;
}
.c_btn_3._hover .c_ico_2 .circle.u_anime_1 {
  animation-name: move-right;
}
.c_btn_3._hover .c_ico_2 .border,
.c_btn_3._hover .c_ico_2 .circle {
  background: #6ABFC2;
}
@media screen and (max-width: 768px) {
  .c_btn_3._hover .c_ico_2 .border,
  .c_btn_3._hover .c_ico_2 .circle {
    background: #fff;
  }
}

.c_btn_4 {
  width: 320px;
  height: 64px;
  border-radius: 40px;
  background: #333;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c_btn_4 {
    width: 220px;
    height: 50px;
  }
}
.c_btn_4:before {
  content: "";
  width: 170px;
  height: 54px;
  border-radius: 40px 0 0 40px / 40px 0 0 40px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 5px;
  z-index: 1;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c_btn_4:before {
    width: 120px;
    height: 40px;
  }
}
.c_btn_4:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 54px 0;
  border-color: transparent #333 transparent transparent;
  position: absolute;
  top: 50%;
  left: 155px;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c_btn_4:after {
    border-width: 0 15px 40px 0;
    left: 110px;
  }
}
.c_btn_4 .u_txt_10 {
  color: #fff;
  position: relative;
  z-index: 3;
  pointer-events: none;
}
.c_btn_4 .c_ico_2 {
  position: absolute;
  top: 50%;
  right: 15px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c_btn_4 .c_ico_2 {
    width: 22px;
    height: 6px;
    right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .c_btn_4 .c_ico_2 .circle {
    width: 6px;
    height: 6px;
  }
}
.c_btn_4 .c_ico_2 .circle.u_anime_1 {
  animation-name: none;
}
.c_btn_4 .c_ico_2 .border,
.c_btn_4 .c_ico_2 .circle {
  background: #fff;
}
.c_btn_4._hover .c_ico_2 .circle.u_anime_1 {
  animation-name: move-right;
}
.c_btn_4._hover .c_ico_2 .border,
.c_btn_4._hover .c_ico_2 .circle {
  background: #F5C000;
}
@media screen and (max-width: 768px) {
  .c_btn_4._hover .c_ico_2 .border,
  .c_btn_4._hover .c_ico_2 .circle {
    background: #fff;
  }
}
.c_btn_4._hover .u_txt_10 {
  color: #F5C000;
}
@media screen and (max-width: 768px) {
  .c_btn_4._hover .u_txt_10 {
    color: #fff;
  }
}

.c_btn_4.invite{
    background: #f96b96;
}
.c_btn_4.invite._hover .c_ico_1 .border,
.c_btn_4.invite._hover .c_ico_1 .circle {
  background: #ed3465;
}
.c_btn_4.invite::before{
    background: #ed3465;
}
.c_btn_4.invite::after{
    border-color: transparent #f96b96 transparent transparent;
    background: #ed3465;
}



.c_btn_5 {
  display: inline-flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c_btn_5 {
    width: 160px;
    height: 40px;
    border-radius: 40px;
    position: relative;
    border: 1px solid #333;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
  }
}
.c_btn_5:hover .u_txt_11 {
  opacity: .7;
}
.c_btn_5 .u_txt_11 {
  font-weight: bold;
  color: #333;
  margin: 0 0 0 4px;
  pointer-events: none;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

/* =================================
 icon
================================= */
.c_ico_1 {
  width: 21px;
  height: 6px;
  position: relative;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .c_ico_1 {
    width: 16px;
    height: 4px;
  }
}
.c_ico_1 .border {
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  background: #fff;
  -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;
}
@media screen and (max-width: 768px) {
  .c_ico_1 .border {
    -moz-transition: none;
    -webkit-transition: none;
    transition: none;
  }
}
.c_ico_1 .circle {
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  -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;
}
@media screen and (max-width: 768px) {
  .c_ico_1 .circle {
    width: 4px;
    height: 4px;
    -moz-transition: none;
    -webkit-transition: none;
    transition: none;
  }
}

.c_ico_2 {
  width: 35px;
  height: 8px;
  position: relative;
  pointer-events: none;
}
.c_ico_2 .border {
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  background: #333;
  -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;
}
@media screen and (max-width: 768px) {
  .c_ico_2 .border {
    -moz-transition: none;
    -webkit-transition: none;
    transition: none;
  }
}
.c_ico_2 .circle {
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333;
  -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;
}
@media screen and (max-width: 768px) {
  .c_ico_2 .circle {
    -moz-transition: none;
    -webkit-transition: none;
    transition: none;
  }
}

/* =================================
 list
================================= */
.c_list_1 {
  background: #fff;
  width: 365px;
  padding: 30px;
  border: 2px dashed #1AA5AA;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .c_list_1 {
    width: 100%;
    padding: 30px 25px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 320px) {
  .c_list_1 {
    padding: 15px 10px;
  }
}
.c_list_1 .center {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c_list_1 .center > img {
    width: 75px;
  }
}
.c_list_1 .u_txt_4 {
  text-align: center;
  margin: 15px 0 0;
}
.c_list_1 .u_txt_1 {
  margin: 15px 0 0;
}
@media screen and (max-width: 768px) {
  .c_list_1 .u_txt_1 {
    margin: 10px 0 0;
  }
}
.c_list_1 .u_txt_3 {
  margin: 10px 0 0;
}

.c_list_2 {
  background: #fff;
  /* width: 565px; */
  width: 100%;
  padding: 50px;
  border-radius: 30px;
  border: 1px solid #333;
}
@media screen and (max-width: 768px) {
  .c_list_2 {
    width: 100%;
    border-radius: 20px;
    padding: 15px 11px 30px 15px;
  }
}
.c_list_2 .wrap {
  margin: 20px 0 0;
  height: 200px;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  .c_list_2 .wrap {
    height: 130px;
  }
}
.c_list_2 .wrap .row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 768px) {
  .c_list_2 .wrap .row {
    display: block;
  }
}
.c_list_2 .wrap .row:not(:first-child) {
  margin: 15px 0 0;
}
.c_list_2 .wrap .row .date {
  width: 100px;
  color: #808080;
}
.c_list_2 .wrap .row .txt {
  text-decoration: underline;
  width: -moz-calc(100% - 100px);
  width: -o-calc(100% - 100px);
  width: -webkit-calc(100% - 100px);
  width: calc(100% - 100px);
}
.c_list_2 .wrap .row .txt:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .c_list_2 .wrap .row .txt:hover {
    text-decoration: underline;
  }
}
.c_list_2 .wrap .row .date,
.c_list_2 .wrap .row .txt {
  font-size: 13px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .c_list_2 .wrap .row .date,
  .c_list_2 .wrap .row .txt {
    font-size: 12px;
  }
}
.c_list_2 .mCSB_scrollTools .mCSB_draggerRail {
  width: 8px;
  background: none;
}
.c_list_2 .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 8px;
  background: #E5E5E5;
}
.c_list_2 .mCSB_inside > .mCSB_container {
  margin-right: 38px;
}
@media screen and (max-width: 768px) {
  .c_list_2 .mCSB_inside > .mCSB_container {
    margin-right: 28px;
  }
}

.c_list_3 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}
@media screen and (max-width: 768px) {
  .c_list_3 {
    margin: 0 4.6875%;
    margin-top: 80px;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c_list_3 > .c_btn_3 {
  background: #fff;
  width: 275px;
  height: 100px;
  border-radius: 20px;
  border: 1px solid #333;
  position: relative;
  padding: 0 0 0 70px;
}
@media screen and (max-width: 768px) {
  .c_list_3 > .c_btn_3 {
    width: 49%;
    height: 61px;
    border-radius: 10px;
    padding: 0 0 0 42px;
    margin-bottom: 2%;
  }
}
.c_list_3 > .c_btn_3._n {
  display: none;
}
.c_list_3 > .c_btn_3 > .img {
  width: 40px;
  left: 22px;
}
@media screen and (max-width: 768px) {
  .c_list_3 > .c_btn_3 > .img {
    width: 28px;
    left: 10px;
  }
}
.c_list_3 > .c_btn_3 > .u_txt_4 {
  letter-spacing: .04rem;
}
@media screen and (max-width: 768px) {
  .c_list_3 > .c_btn_3 > .u_txt_4 {
    font-size: 14px;
  }
}
.c_list_3 > .c_btn_3::before {
  content: "";
  width: 160px;
  height: 90px;
  border-radius: 20px 0 0 20px / 20px 0 0 20px;
  background: #CFEBEF;
  position: absolute;
  top: 50%;
  left: 4px;
}
@media screen and (max-width: 768px) {
  .c_list_3 > .c_btn_3::before {
    width: 98px;
    height: 55px;
    border-radius: 5px 0 0 5px / 10px 0 0 10px;
    left: 2px;
  }
}
.c_list_3 > .c_btn_3::after {
  border-width: 0 50px 90px 0;
  top: 4px;
  left: 115px;
}
@media screen and (max-width: 768px) {
  .c_list_3 > .c_btn_3::after {
    border-width: 0 35px 56px 0;
    top: 2px;
    left: 65px;
  }
}
@media screen and (max-width: 768px) {
  .c_list_3 > .c_btn_3 .c_ico_2 {
    width: 12px;
  }
  .c_list_3 > .c_btn_3 .c_ico_2 > .circle {
    width: 5px;
    height: 5px;
  }
}

/* =================================
 item
================================= */
/* =================================
 hoge
================================= */
/* ======================================================================
 layout
====================================================================== */
.preload {
  transition: 0 !important;
}

/* =================================
 l_content_size
================================= */
.l_content_size_sp_1 {
  padding: 0 4.6875%;
}
@media screen and (min-width: 1025px) {
  .l_content_size_sp_1 {
    max-width: 100%;
    margin: 0 auto;
  }
}

.l_content_size_pc_1 {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l_content_size_pc_1 {
    width: auto;
    padding: 0 4.6875%;
  }
}

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

/* =================================
 l_header
================================= */
.l_header {
  width: 100vw;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .l_header {
    display: none;
  }
}
.l_header > .max_wrap {
  position: relative;
  width: 100%;
}
.l_header > .max_wrap > .inner {
  padding: 20px 0 0;
  margin: 0 auto;
  width: 1160px;
  position: relative;
  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_header > .max_wrap > .inner > .left {
  width: 405px;
  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: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -moz-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px);
}
.l_header > .max_wrap > .inner > .left > .box {
  margin: 8px 0 0;
  -moz-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
}
.l_header > .max_wrap > .inner > .left > .box > ul {
  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;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.l_header > .max_wrap > .inner > .left > .box > ul > li:nth-child(2) {
  margin: 0 18px;
}
.l_header > .max_wrap > .inner > .left > .box > ul > li > a {
  display: block;
}
.l_header > .max_wrap > .inner > .left > .box > .u_txt_8 {
  margin: 10px 0 0;
  transform-origin: left top;
  white-space: nowrap;
  -moz-transform: scale(0.9) translateX(40px);
  -ms-transform: scale(0.9) translateX(40px);
  -webkit-transform: scale(0.9) translateX(40px);
  transform: scale(0.9) translateX(40px);
}
.l_header > .max_wrap > .inner > .right > .line1 {
  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;
}
.l_header > .max_wrap > .inner > .right > .line1 .wrap {
  margin: 20px 20px 0 0;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list {
  margin: 25px 0 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item {
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item:not(:last-child) {
  margin: 0 30px 0 0;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item.js_add_hover > a {
  position: relative;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item.js_add_hover > a:before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 4px;
  background: #6ABFC2;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item.js_add_hover._hover > a:before {
  width: 100%;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > a {
  position: relative;
  padding: 0 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_header > .max_wrap > .inner > .right > .line2 > .list > .item > a:before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 4px;
  background: #6ABFC2;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > a:hover .u_txt_1,
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > a:hover .arrow {
  opacity: .7;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > a:hover:before {
  width: 100%;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > a > .u_txt_1 {
  font-size: 1.6em;
  letter-spacing: .05em;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item .arrow {
  position: relative;
  width: 14px;
  height: 14px;
  margin: 0 0 0 2px;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item .arrow:before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #8B8B8B;
  border-right: 2px solid #8B8B8B;
  transform: translate(-50%) rotate(135deg);
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega {
  pointer-events: none;
  position: absolute;
  background: #6ABFC2;
  width: 100%;
  opacity: 0;
  top: 140px;
  left: 0;
  z-index: 1;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega > .mega_list {
  width: 1160px;
  padding: 40px 0 30px;
  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;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega > .mega_list > .menu_item {
  width: 275px;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega > .mega_list > .menu_item > a {
  display: block;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega > .mega_list > .menu_item > a:hover > .txt_btn .c_ico_2 .circle.u_anime_1 {
  animation-name: move-right;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega > .mega_list > .menu_item > a:hover > .txt_btn .c_ico_2 .border,
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega > .mega_list > .menu_item > a:hover > .txt_btn .c_ico_2 .circle {
  background: #F5C000;
}
@media screen and (max-width: 768px) {
  .l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega > .mega_list > .menu_item > a:hover > .txt_btn .c_ico_2 .border,
  .l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega > .mega_list > .menu_item > a:hover > .txt_btn .c_ico_2 .circle {
    background: #fff;
  }
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega > .mega_list > .menu_item > a > img {
  max-width: 100%;
}
@media all and (-ms-high-contrast: none) {
  .l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega > .mega_list > .menu_item > a > img {
    width: 100%;
  }
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega > .mega_list > .menu_item > a > .txt_btn {
  position: relative;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega > .mega_list > .menu_item > a > .txt_btn > .u_txt_1 {
  color: #fff;
  margin: 10px 0 0;
  font-weight: bold;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega > .mega_list > .menu_item > a > .txt_btn > .c_ico_2 {
  position: absolute;
  left: 100%;
  top: 50%;
  -moz-transform: translateX(-100%) translateY(-50%);
  -ms-transform: translateX(-100%) translateY(-50%);
  -webkit-transform: translateX(-100%) translateY(-50%);
  transform: translateX(-100%) translateY(-50%);
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega > .mega_list > .menu_item > a > .txt_btn > .c_ico_2 .border {
  background: #fff;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega > .mega_list > .menu_item > a > .txt_btn > .c_ico_2 .circle {
  background: #fff;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega > .mega_list > .menu_item > a > .txt_btn > .c_ico_2 .circle.u_anime_1 {
  animation-name: none;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega > .link {
  width: 1160px;
  margin: 0 auto;
  border-top: 1px solid #4A9DA0;
  padding: 25px 0;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega > .link > .txt_btn {
  width: 230px;
  position: relative;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega > .link > .txt_btn:hover > .c_ico_2 > .circle {
  animation-name: move-right;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega > .link > .txt_btn:hover > .c_ico_2 > .border,
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega > .link > .txt_btn:hover > .c_ico_2 > .circle {
  background: #F5C000;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega > .link > .txt_btn > .u_txt_1 {
  color: #fff;
  font-weight: bold;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega > .link > .txt_btn > .c_ico_2 {
  position: absolute;
  top: 50%;
  left: 100%;
  -moz-transform: translateY(-50%) translateX(-100%);
  -ms-transform: translateY(-50%) translateX(-100%);
  -webkit-transform: translateY(-50%) translateX(-100%);
  transform: translateY(-50%) translateX(-100%);
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega > .link > .txt_btn > .c_ico_2 > .border,
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega > .link > .txt_btn > .c_ico_2 > .circle {
  background: #fff;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega > .link > .txt_btn > .c_ico_2 > .circle {
  animation-name: none;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega2 {
  pointer-events: none;
  position: absolute;
  background: #6ABFC2;
  width: 100%;
  opacity: 0;
  top: 140px;
  left: 0;
  z-index: 1;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega2 > .mega_list {
  width: 1160px;
  padding: 40px 0 30px;
  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;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega2 > .mega_list:after {
  content: '';
  display: block;
  width: 275px;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega2 > .mega_list > .menu_item {
  width: 275px;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega2 > .mega_list > .menu_item > a {
  display: block;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega2 > .mega_list > .menu_item > a:hover > .txt_btn .c_ico_2 .circle.u_anime_1 {
  animation-name: move-right;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega2 > .mega_list > .menu_item > a:hover > .txt_btn .c_ico_2 .border,
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega2 > .mega_list > .menu_item > a:hover > .txt_btn .c_ico_2 .circle {
  background: #F5C000;
}
@media screen and (max-width: 768px) {
  .l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega2 > .mega_list > .menu_item > a:hover > .txt_btn .c_ico_2 .border,
  .l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega2 > .mega_list > .menu_item > a:hover > .txt_btn .c_ico_2 .circle {
    background: #fff;
  }
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega2 > .mega_list > .menu_item > a > img {
  max-width: 100%;
}
@media all and (-ms-high-contrast: none) {
  .l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega2 > .mega_list > .menu_item > a > img {
    width: 100%;
  }
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega2 > .mega_list > .menu_item > a > .txt_btn {
  position: relative;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega2 > .mega_list > .menu_item > a > .txt_btn > .u_txt_1 {
  color: #fff;
  margin: 10px 0 0;
  font-weight: bold;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega2 > .mega_list > .menu_item > a > .txt_btn > .c_ico_2 {
  position: absolute;
  left: 100%;
  top: 50%;
  -moz-transform: translateX(-100%) translateY(-50%);
  -ms-transform: translateX(-100%) translateY(-50%);
  -webkit-transform: translateX(-100%) translateY(-50%);
  transform: translateX(-100%) translateY(-50%);
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega2 > .mega_list > .menu_item > a > .txt_btn > .c_ico_2 .border {
  background: #fff;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega2 > .mega_list > .menu_item > a > .txt_btn > .c_ico_2 .circle {
  background: #fff;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega2 > .mega_list > .menu_item > a > .txt_btn > .c_ico_2 .circle.u_anime_1 {
  animation-name: none;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega2 > .link {
  width: 1160px;
  margin: 0 auto;
  border-top: 1px solid #4A9DA0;
  padding: 25px 0;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega2 > .link > .txt_btn {
  width: 180px;
  position: relative;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega2 > .link > .txt_btn:hover > .c_ico_2 > .circle {
  animation-name: move-right;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega2 > .link > .txt_btn:hover > .c_ico_2 > .border,
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega2 > .link > .txt_btn:hover > .c_ico_2 > .circle {
  background: #F5C000;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega2 > .link > .txt_btn > .u_txt_1 {
  color: #fff;
  font-weight: bold;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega2 > .link > .txt_btn > .c_ico_2 {
  position: absolute;
  top: 50%;
  left: 100%;
  -moz-transform: translateY(-50%) translateX(-100%);
  -ms-transform: translateY(-50%) translateX(-100%);
  -webkit-transform: translateY(-50%) translateX(-100%);
  transform: translateY(-50%) translateX(-100%);
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega2 > .link > .txt_btn > .c_ico_2 > .border,
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega2 > .link > .txt_btn > .c_ico_2 > .circle {
  background: #fff;
}
.l_header > .max_wrap > .inner > .right > .line2 > .list > .item > .mega2 > .link > .txt_btn > .c_ico_2 > .circle {
  animation-name: none;
}
.l_header > .max_wrap > .inner >  p.recomend{
    background: url("/assets/img/top/back-fukidashi.svg") no-repeat;
    height:95px;
    width:115px;
    color: #fff;
    text-align: center;
    line-height: 1.4;
    position: absolute;
    right: -1em;
    top: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: -100px;
  }

/* =================================
 l_header_fixed
================================= */
.l_header_fixed {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  opacity: 0;
  z-index: 5;
  pointer-events: none;
  -moz-transition: opacity 0.5s linear;
  -webkit-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
}
@media screen and (max-width: 768px) {
  .l_header_fixed {
    display: none;
  }
}
.l_header_fixed._active {
  top: 0;
  opacity: 1;
  pointer-events: all;
}
.l_header_fixed > .max_wrap {
  position: relative;
  width: 100%;
}
.l_header_fixed > .max_wrap > .inner {
  margin: 0 auto;
  width: 1160px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
}
.l_header_fixed > .max_wrap > .inner > .left {
  width: 160px;
  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: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.l_header_fixed > .max_wrap > .inner > .right {
  width: -moz-calc(100% - 160px);
  width: -o-calc(100% - 160px);
  width: -webkit-calc(100% - 160px);
  width: calc(100% - 160px);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -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_header_fixed > .max_wrap > .inner > .right > .line1 {
  padding: 20px 0;
  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;
}
.l_header_fixed > .max_wrap > .inner > .right > .line1 .wrap {
  margin: 20px 20px 0 0;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list {
  padding: 20px 0 0;
  margin: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item {
  margin: 20px 0 0;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item:not(:last-child) {
  margin: 20px 20px 0 0;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item.js_add_hover > a {
  position: relative;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item.js_add_hover > a:before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 4px;
  background: #6ABFC2;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item.js_add_hover._hover > a:before {
  width: 100%;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > a {
  position: relative;
  padding: 0 0 28px;
  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_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > a:before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 4px;
  background: #6ABFC2;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > a:hover .u_txt_1,
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > a:hover .arrow {
  opacity: .7;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > a:hover:before {
  width: 100%;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item .arrow {
  position: relative;
  width: 14px;
  height: 14px;
  margin: 0 0 0 2px;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item .arrow:before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #8B8B8B;
  border-right: 2px solid #8B8B8B;
  transform: translate(-50%) rotate(135deg);
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega {
  pointer-events: none;
  position: absolute;
  background: #6ABFC2;
  width: 100%;
  opacity: 0;
  top: 90px;
  left: 0;
  z-index: 1;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega > .mega_list {
  width: 1160px;
  padding: 40px 0 30px;
  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;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega > .mega_list > .menu_item {
  width: 275px;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega > .mega_list > .menu_item > a {
  display: block;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega > .mega_list > .menu_item > a:hover > .txt_btn .c_ico_2 .circle.u_anime_1 {
  animation-name: move-right;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega > .mega_list > .menu_item > a:hover > .txt_btn .c_ico_2 .border,
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega > .mega_list > .menu_item > a:hover > .txt_btn .c_ico_2 .circle {
  background: #F5C000;
}
@media screen and (max-width: 768px) {
  .l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega > .mega_list > .menu_item > a:hover > .txt_btn .c_ico_2 .border,
  .l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega > .mega_list > .menu_item > a:hover > .txt_btn .c_ico_2 .circle {
    background: #fff;
  }
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega > .mega_list > .menu_item > a > img {
  max-width: 100%;
}
@media all and (-ms-high-contrast: none) {
  .l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega > .mega_list > .menu_item > a > img {
    width: 100%;
  }
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega > .mega_list > .menu_item > a > .txt_btn {
  position: relative;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega > .mega_list > .menu_item > a > .txt_btn > .u_txt_1 {
  color: #fff;
  margin: 10px 0 0;
  font-weight: bold;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega > .mega_list > .menu_item > a > .txt_btn > .c_ico_2 {
  position: absolute;
  left: 100%;
  top: 50%;
  -moz-transform: translateX(-100%) translateY(-50%);
  -ms-transform: translateX(-100%) translateY(-50%);
  -webkit-transform: translateX(-100%) translateY(-50%);
  transform: translateX(-100%) translateY(-50%);
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega > .mega_list > .menu_item > a > .txt_btn > .c_ico_2 .border {
  background: #fff;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega > .mega_list > .menu_item > a > .txt_btn > .c_ico_2 .circle {
  background: #fff;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega > .mega_list > .menu_item > a > .txt_btn > .c_ico_2 .circle.u_anime_1 {
  animation-name: none;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega > .link {
  width: 1160px;
  margin: 0 auto;
  border-top: 1px solid #4A9DA0;
  padding: 25px 0;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega > .link > .txt_btn {
  width: 230px;
  position: relative;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega > .link > .txt_btn:hover > .c_ico_2 > .circle {
  animation-name: move-right;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega > .link > .txt_btn:hover > .c_ico_2 > .border,
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega > .link > .txt_btn:hover > .c_ico_2 > .circle {
  background: #F5C000;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega > .link > .txt_btn > .u_txt_1 {
  color: #fff;
  font-weight: bold;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega > .link > .txt_btn > .c_ico_2 {
  position: absolute;
  top: 50%;
  left: 100%;
  -moz-transform: translateY(-50%) translateX(-100%);
  -ms-transform: translateY(-50%) translateX(-100%);
  -webkit-transform: translateY(-50%) translateX(-100%);
  transform: translateY(-50%) translateX(-100%);
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega > .link > .txt_btn > .c_ico_2 > .border,
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega > .link > .txt_btn > .c_ico_2 > .circle {
  background: #fff;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega > .link > .txt_btn > .c_ico_2 > .circle {
  animation-name: none;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega2 {
  pointer-events: none;
  position: absolute;
  background: #6ABFC2;
  width: 100%;
  opacity: 0;
  top: 90px;
  left: 0;
  z-index: 1;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega2 > .mega_list {
  width: 1160px;
  padding: 40px 0 30px;
  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;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega2 > .mega_list:after {
  content: '';
  display: block;
  width: 275px;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega2 > .mega_list > .menu_item {
  width: 275px;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega2 > .mega_list > .menu_item > a {
  display: block;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega2 > .mega_list > .menu_item > a:hover > .txt_btn .c_ico_2 .circle.u_anime_1 {
  animation-name: move-right;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega2 > .mega_list > .menu_item > a:hover > .txt_btn .c_ico_2 .border,
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega2 > .mega_list > .menu_item > a:hover > .txt_btn .c_ico_2 .circle {
  background: #F5C000;
}
@media screen and (max-width: 768px) {
  .l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega2 > .mega_list > .menu_item > a:hover > .txt_btn .c_ico_2 .border,
  .l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega2 > .mega_list > .menu_item > a:hover > .txt_btn .c_ico_2 .circle {
    background: #fff;
  }
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega2 > .mega_list > .menu_item > a > img {
  max-width: 100%;
}
@media all and (-ms-high-contrast: none) {
  .l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega2 > .mega_list > .menu_item > a > img {
    width: 100%;
  }
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega2 > .mega_list > .menu_item > a > .txt_btn {
  position: relative;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega2 > .mega_list > .menu_item > a > .txt_btn > .u_txt_1 {
  color: #fff;
  margin: 10px 0 0;
  font-weight: bold;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega2 > .mega_list > .menu_item > a > .txt_btn > .c_ico_2 {
  position: absolute;
  left: 100%;
  top: 50%;
  -moz-transform: translateX(-100%) translateY(-50%);
  -ms-transform: translateX(-100%) translateY(-50%);
  -webkit-transform: translateX(-100%) translateY(-50%);
  transform: translateX(-100%) translateY(-50%);
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega2 > .mega_list > .menu_item > a > .txt_btn > .c_ico_2 .border {
  background: #fff;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega2 > .mega_list > .menu_item > a > .txt_btn > .c_ico_2 .circle {
  background: #fff;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega2 > .mega_list > .menu_item > a > .txt_btn > .c_ico_2 .circle.u_anime_1 {
  animation-name: none;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega2 > .link {
  width: 1160px;
  margin: 0 auto;
  border-top: 1px solid #4A9DA0;
  padding: 25px 0;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega2 > .link > .txt_btn {
  width: 180px;
  position: relative;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega2 > .link > .txt_btn:hover > .c_ico_2 > .circle {
  animation-name: move-right;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega2 > .link > .txt_btn:hover > .c_ico_2 > .border,
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega2 > .link > .txt_btn:hover > .c_ico_2 > .circle {
  background: #F5C000;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega2 > .link > .txt_btn > .u_txt_1 {
  color: #fff;
  font-weight: bold;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega2 > .link > .txt_btn > .c_ico_2 {
  position: absolute;
  top: 50%;
  left: 100%;
  -moz-transform: translateY(-50%) translateX(-100%);
  -ms-transform: translateY(-50%) translateX(-100%);
  -webkit-transform: translateY(-50%) translateX(-100%);
  transform: translateY(-50%) translateX(-100%);
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega2 > .link > .txt_btn > .c_ico_2 > .border,
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega2 > .link > .txt_btn > .c_ico_2 > .circle {
  background: #fff;
}
.l_header_fixed > .max_wrap > .inner > .right > .line2 > .list > .item > .fixed_mega2 > .link > .txt_btn > .c_ico_2 > .circle {
  animation-name: none;
}

.l_header_fixed > .max_wrap > .inner >  p.recomend{
    background: url("/assets/img/top/back-fukidashi.svg") no-repeat;
    height:95px;
    width:115px;
    color: #fff;
    text-align: center;
    line-height: 1.4;
    position: absolute;
    right: -1em;
    top: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: -100px;
  }
/* =================================
 l_header_sp
================================= */
.l_header_sp {
  display: none;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l_header_sp {
    display: block;
  }
}
.l_header_sp._active > .wrap > .inner .u_txt_8 {
  opacity: 0;
}
.l_header_sp > .wrap {
  padding: 10px 0;
  background: #fff;
}
.l_header_sp > .wrap > .inner {
  padding: 0 4.6875%;
  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;
}
.l_header_sp > .wrap > .inner > a > img {
  width: 84px;
}
.l_header_sp > .wrap > .inner > .box > .link {
  margin: 0 0 0 10px;
  width: 150px;
  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_header_sp > .wrap > .inner > .box > .link > .item > a {
  display: inline-block;
}
.l_header_sp > .wrap > .inner > .box > .link > .item > a .img01 {
  width: 24px;
}
.l_header_sp > .wrap > .inner > .box > .link > .item > a .img02 {
  width: 70px;
}
.l_header_sp > .wrap > .inner > .box > .link > .item > a .img03 {
  width: 35px;
}
.l_header_sp > .wrap > .inner > .box > .u_txt_8 {
  font-weight: normal;
  margin: 0 0 0 10px;
  opacity: 1;
  -moz-transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
@media screen and (max-width: 768px) {
  .l_header_sp > .wrap > .inner > .box > .u_txt_8 {
    margin: 5px 0 0 10px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 320px) {
  .l_header_sp > .wrap > .inner > .box > .u_txt_8 {
    margin: 0 0 0 5px;
  }
}
.l_header_sp > .wrap > .menu_btn {
  position: fixed;
  top: 15px;
  right: 4.6875%;
  width: 50px;
  height: 50px;
  z-index: 6;
}
.l_header_sp > .wrap > .menu_btn > .wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid #333;
  border-radius: 50%;
  background: #fff;
}
.l_header_sp > .wrap > .menu_btn > .wrap .border {
  position: absolute;
  content: '';
  width: 25px;
  height: 1px;
  background: #333;
  left: 50%;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l_header_sp > .wrap > .menu_btn > .wrap .border.border_1 {
  top: 17px;
  -moz-transform-origin: top right;
  -ms-transform-origin: top right;
  -webkit-transform-origin: top right;
  transform-origin: top right;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.l_header_sp > .wrap > .menu_btn > .wrap .border.border_2 {
  top: 25px;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.l_header_sp > .wrap > .menu_btn > .wrap .border.border_3 {
  top: 33px;
  -moz-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.l_header_sp > .wrap > .menu_btn._active > .wrap .border_1 {
  top: 6px;
  left: 16px;
  -moz-transform: rotate(-45deg) translateX(-50%);
  -ms-transform: rotate(-45deg) translateX(-50%);
  -webkit-transform: rotate(-45deg) translateX(-50%);
  transform: rotate(-45deg) translateX(-50%);
}
.l_header_sp > .wrap > .menu_btn._active > .wrap .border_2 {
  opacity: 0;
}
.l_header_sp > .wrap > .menu_btn._active > .wrap .border_3 {
  top: 42px;
  left: 16px;
  -moz-transform: rotate(45deg) translateX(-50%);
  -ms-transform: rotate(45deg) translateX(-50%);
  -webkit-transform: rotate(45deg) translateX(-50%);
  transform: rotate(45deg) translateX(-50%);
}

/* =================================
 l_menu_sp
================================= */
.l_menu_sp {
  opacity: 0;
  padding: 10px 0 0;
  overflow: scroll;
  background-image: url(../img/common/sp/fixed_bg.svg);
  background-size: initial;
  background-position: top 100px left -227px;
  background-repeat: no-repeat;
  height: 150%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 5;
  pointer-events: none;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l_menu_sp._active {
  opacity: 1;
  pointer-events: all;
}
.l_menu_sp > .inner {
  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;
  padding: 0 4.6875%;
}
.l_menu_sp > .inner > a > img {
  width: 84px;
}
.l_menu_sp > .inner > .box > .link {
  margin: 0 0 0 10px;
  width: 150px;
  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_menu_sp > .inner > .box > .link > .item > a {
  display: inline-block;
}
.l_menu_sp > .inner > .box > .link > .item > a .img01 {
  width: 24px;
}
.l_menu_sp > .inner > .box > .link > .item > a .img02 {
  width: 70px;
}
.l_menu_sp > .inner > .box > .link > .item > a .img03 {
  width: 35px;
}
.l_menu_sp > .inner > .box > .u_txt_8 {
  margin: 0 0 0 10px;
  opacity: 1;
  -moz-transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
@media screen and (max-width: 768px) {
  .l_menu_sp > .inner > .box > .u_txt_8 {
    margin: 5px 0 0 10px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 320px) {
  .l_menu_sp > .inner > .box > .u_txt_8 {
    margin: 0 0 0 5px;
  }
}
.l_menu_sp > .scroll_wrap {
  overflow: scroll;
  padding: 0 4.6875% 40px;
  height: -moz-calc(100vh - 71px);
  height: -o-calc(100vh - 71px);
  height: -webkit-calc(100vh - 71px);
  height: calc(100vh - 71px);
}
.l_menu_sp > .scroll_wrap > .lists {
  margin: 20px 0 0;
}
.l_menu_sp > .scroll_wrap > .lists > li {
  position: relative;
  margin: 16px 0 !important;
}
.l_menu_sp > .scroll_wrap > .lists > li:not(:first-child) {
  margin: 20px 0 0;
}
.l_menu_sp > .scroll_wrap > .lists > li > a > .u_txt_1 {
  font-weight: bold;
}
.l_menu_sp > .scroll_wrap > .lists > li .arrow {
  position: absolute;
  top: -2px;
  right: 0;
  width: 20px;
  height: 20px;
}
.l_menu_sp > .scroll_wrap > .lists > li .arrow > .wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.l_menu_sp > .scroll_wrap > .lists > li .arrow > .wrap .vertical,
.l_menu_sp > .scroll_wrap > .lists > li .arrow > .wrap .horizontal {
  position: absolute;
  width: 20px;
  height: 1px;
  background: #333;
  top: 50%;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.l_menu_sp > .scroll_wrap > .lists > li .arrow > .wrap .horizontal {
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.l_menu_sp > .scroll_wrap > .lists > li._active .arrow > .wrap .horizontal {
  -moz-transform: translateY(-50%) rotate(0deg);
  -ms-transform: translateY(-50%) rotate(0deg);
  -webkit-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
}
.l_menu_sp > .scroll_wrap > .lists > li > ul {
  margin: 15px 0 15px 20px;
}
.l_menu_sp > .scroll_wrap > .lists > li > ul > li:not(:first-child) {
  margin: 20px 0 0;
}
.l_menu_sp > .scroll_wrap > .flex {
  margin: 30px 0 0;
  padding: 0 0 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.l_menu_sp > .scroll_wrap > .flex > .item {
  margin: 0 20px 0 0;
}
.l_menu_sp > .scroll_wrap > .line1 {
  margin: 20px 0 0;
  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: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (max-width: 360px) {
    .l_menu_sp > .scroll_wrap > .line1 .c_btn_1,
    .l_menu_sp > .scroll_wrap > .line1 .c_btn_5 {
        width:140px;
    }
}

/* =================================
 l_main_visual
================================= */
.l_main_visual {
  position: relative;
  width: 1280px;
  margin: 0 auto 210px;
  padding: 20px 0 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .l_main_visual {
    width: 100%;
    padding: 0 4.6875%;
    margin: 0;
  }
}
.l_main_visual > .imgwrap {
  width: 100%;
  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;
}
@media screen and (max-width: 768px) {
  .l_main_visual > .imgwrap {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: initial;
    -moz-justify-content: initial;
    -ms-justify-content: initial;
    justify-content: initial;
    -ms-flex-pack: initial;
  }
}
.l_main_visual > .imgwrap > .img01 {
  position: absolute;
  left: 0;
}
@media screen and (max-width: 768px) {
  .l_main_visual > .imgwrap > .img01 {
    position: static;
    width: 100%;
    text-align: left;
  }
}
.l_main_visual > .imgwrap > .img01 > img {
  width: 474px;
}
@media screen and (max-width: 768px) {
  .l_main_visual > .imgwrap > .img01 > img {
    max-width: 100%;
    width: initial;
  }
}
@media screen and (max-width: 768px) {
  .l_main_visual > .imgwrap > .img02 {
    position: static;
    width: 100%;
    text-align: center;
  }
}
.l_main_visual > .imgwrap > .img02 > p > img {
  margin: 160px 0 0;
  width: 388px;
}
@media screen and (max-width: 768px) {
  .l_main_visual > .imgwrap > .img02 > p > img {
    max-width: 100%;
    width: initial;
    margin: 25px 0 0;
  }
}
.l_main_visual > .imgwrap > .img03 {
  position: absolute;
  right: 0;
}
@media screen and (max-width: 768px) {
  .l_main_visual > .imgwrap > .img03 {
    position: static;
    width: 100%;
    text-align: right;
  }
}
.l_main_visual > .imgwrap > .img03 > img {
  margin: 205px 0 0;
  width: 546px;
}
@media screen and (max-width: 768px) {
  .l_main_visual > .imgwrap > .img03 > img {
    max-width: 100%;
    width: initial;
    margin: 25px 0 0;
  }
}
.l_main_visual > .scroll_block {
  position: absolute;
  bottom: -210px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .l_main_visual > .scroll_block {
    display: none;
  }
}
.l_main_visual > .scroll_block > .u_txt_6 {
  font-size: 1.8em;
}
.l_main_visual > .scroll_block > .wrap {
  position: relative;
  width: 18px;
  height: 8px;
  top: 8px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.l_main_visual > .scroll_block > .wrap > .absolute {
  position: absolute;
  width: 100%;
  height: 100%;
}
.l_main_visual > .scroll_block > .wrap > .absolute > .arrow {
  position: relative;
  width: 18px;
  height: 8px;
}
.l_main_visual > .scroll_block > .wrap > .absolute > .arrow > .vertical,
.l_main_visual > .scroll_block > .wrap > .absolute > .arrow > .horizontal {
  content: '';
  width: 10px;
  height: 2px;
  background: #333;
  position: absolute;
  top: 3px;
}
.l_main_visual > .scroll_block > .wrap > .absolute > .arrow > .vertical {
  left: 0;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.l_main_visual > .scroll_block > .wrap > .absolute > .arrow > .horizontal {
  right: 1px;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* =================================
 l_main_visual_1
================================= */
.l_main_visual_1 {
  width: 1160px;
  margin: 0 auto;
  background: #CFEBEF;
  padding: 10px;
  border-radius: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l_main_visual_1 {
    width: 95.3125%;
    margin: 0 4.6875% 0 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
  }
}
.l_main_visual_1 > .inner {
  width: 100%;
  height: 160px;
  background: #fff;
  border-radius: 30px;
  padding: 0 0 0 50px;
  background-image: url(../img/procedure_up/mv.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right 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 (max-width: 768px) {
  .l_main_visual_1 > .inner {
    width: 100%;
    height: 190px;
    border-radius: 0;
    padding: 27%;
    background-image: url(../img/procedure_up/sp/mv.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right 0;
    position: relative;
  }
}
.l_main_visual_1 > .inner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 584px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 160px 0 0 110px;
  border-color: transparent transparent transparent #fff;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .l_main_visual_1 > .inner:before {
    display: none;
  }
}
@media all and (-ms-high-contrast: none) {
  .l_main_visual_1 > .inner:before {
    /*
    left: 594px;
    */
  }
}
@media screen and (max-width: 768px) {
  .l_main_visual_1 > .inner:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: #CFEBEF;
    width: 100%;
    height: 43px;
    border-radius: 0 0 17px 0;
    z-index: 1;
  }
}
.l_main_visual_1 > .inner > .u_txt_12 {
  position: relative;
}
@media screen and (max-width: 768px) {
  .l_main_visual_1 > .inner > .u_txt_12 {
    position: absolute;
    bottom: 20px;
    left: 0;
    border-radius: 0 100px 100px 0;
    background: #fff;
    padding: 10px 0 10px 4.6875%;
    z-index: 2;
    width: -moz-calc(100% - 20px);
    width: -o-calc(100% - 20px);
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
  }
}

/* =================================
 l_content
================================= */
.l_content {
  position: relative;
  padding: 80px 0;
  margin: 0 auto;
  width: 1160px;
}
@media screen and (max-width: 768px) {
  .l_content {
    width: 100%;
    padding: 40px 0 80px;
    overflow: hidden;
  }
}

/* =================================
 l_main
================================= */
/* =================================
 l_footer
================================= */
.l_footer {
  position: relative;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .l_footer {
    display: none;
  }
}
.l_footer > .inner > .wrap {
  border-bottom: 1px solid #C9C9C9;
  padding: 30px 0;
}
.l_footer > .inner > .wrap > .inner {
  width: 1160px;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.l_footer > .inner > .wrap > .inner > .item {
  width: -moz-calc(100% / 3);
  width: -o-calc(100% / 3);
  width: -webkit-calc(100% / 3);
  width: calc(100% / 3);
}
.l_footer > .inner > .wrap > .inner > .item:not(:first-child) {
  border-left: 1px dashed #C9C9C9;
  padding: 0 0 0 30px;
}
.l_footer > .inner > .wrap > .inner > .item p:not(:first-child) {
  margin: 10px 0 0;
}
.l_footer > .inner > .wrap > .inner > .item p.min:not(:first-child) {
  margin: 15px 0 0;
}
.l_footer > .inner > .wrap > .inner > .item p > .u_txt_7 {
  font-weight: bold;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l_footer > .inner > .wrap > .inner > .item p > .u_txt_7:hover {
  opacity: .7;
}
@media screen and (max-width: 768px) {
  .l_footer > .inner > .wrap > .inner > .item p > .u_txt_7:hover {
    opacity: 1;
  }
}
.l_footer > .inner > .wrap > .inner > .item p > .u_txt_11 {
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l_footer > .inner > .wrap > .inner > .item p > .u_txt_11:hover {
  opacity: .7;
}
@media screen and (max-width: 768px) {
  .l_footer > .inner > .wrap > .inner > .item p > .u_txt_11:hover {
    opacity: 1;
  }
}
.l_footer > .inner > .wrap > .inner > .item p > .u_txt_11 img {
  width: 11px;
}
@media all and (-ms-high-contrast: none) {
  .l_footer > .inner > .wrap > .inner > .item p > .u_txt_11 img {
    width: 16px;
    height: 16px;
  }
}
.l_footer > .inner > .wrap > .inner > .item > .lists {
  margin: 5px 0 0 20px;
}
.l_footer > .inner > .wrap > .inner > .item > .lists > li {
  margin: 2px 0 0;
}
.l_footer > .inner > .wrap > .inner > .item > .lists > li:first-child {
  margin: 0;
}
.l_footer > .inner > .wrap > .inner > .item > .lists > li > a {
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l_footer > .inner > .wrap > .inner > .item > .lists > li > a:hover {
  opacity: .7;
}
.l_footer > .inner > .wrap2 {
  margin: 0 auto;
  padding: 40px 0 40px;
  width: 1160px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  -ms-flex-pack: space-around;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.l_footer > .inner > .wrap2 .left {
  width: 720px;
  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_footer > .inner > .wrap2 .left > .u_txt_8 {
  margin: 0 0 40px 20px;
}
.l_footer > .inner > .wrap2 .left > .u_txt_8 > span {
  display: inline-block;
  vertical-align: text-top;
}
.l_footer > .inner > .wrap2 .left > .u_txt_8 > span > .img01 {
  width: 34px;
}
.l_footer > .inner > .wrap2 .left > .u_txt_8 > span > .img02 {
  width: 50px;
}
.l_footer > .inner > .wrap2 > .right {
  -webkit-align-self: flex-start;
  -moz-align-self: flex-start;
  -ms-align-self: flex-start;
  align-self: flex-start;
}
.l_footer > .inner > .wrap2 > .right > .infobox {
  background: #F3F3F3;
  width: 388px;
  padding: 28px 0;
  text-align: center;
  border-radius: 30px;
}
.l_footer > .inner > .wrap2 > .right > .infobox > .u_txt_2 {
  font-weight: bold;
  text-align: center;
  font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "hiragino kaku gothic pro", "メイリオ", Meiryo;
  margin: 0 0 5px;
}
.l_footer > .inner > .wrap2 > .right > .infobox > .inline {
  position: relative;
  text-align: center;
  display: inline-block;
  margin: 20px auto 0;
}
.l_footer > .inner > .wrap2 > .right > .infobox > .inline > img {
  width: 24px;
  position: absolute;
  left: -25px;
  bottom: 6px;
}
.l_footer > .inner > .wrap2 > .right > .infobox > .inline > .tel {
  font-size: 38px;
  color: #1AA5AA;
  font-weight: bold;
  font-family: Helvetica;
  letter-spacing: .05em;
}
.l_footer > .inner > .wrap2 > .right > .infobox > .inline > .tel [data-ruby] {
  position: relative;
}
.l_footer > .inner > .wrap2 > .right > .infobox > .inline > .tel [data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -.6em;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 10px;
  text-align: center;
}
.l_footer > .inner > .wrap2 > .right > .infobox > .u_txt_3 {
  text-align: center;
  margin: 3px 0 0;
}
.l_footer > .inner > .wrap2 > .right > .u_txt_8 {
  text-align: right;
  margin: 25px 0 0;
}
.l_footer > .inner > .wrap2 > .right > .line2 > .list {
  margin: 15px 0 0;
  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;
}
.l_footer > .inner > .wrap2 > .right > .line2 > .list > .item:not(:last-child) {
  margin: 0 10px 0 0;
}
.l_footer > .inner > .wrap2 > .right > .line2 > .list > .item > a {
  display: inline-block;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l_footer > .inner > .wrap2 > .right > .line2 > .list > .item > a:hover {
  opacity: .7;
}
.l_footer > .inner > .wrap2 > .right > .line2 .u_txt_3 {
  margin: 8px 0 0;
}

.l_footer .social ul{
    text-align: center;
    margin-top: 1em;
}
.l_footer .social li{
    display: inline-block;
    width: 4em;
    height: 4em;
    border-radius: 2em;
    margin: 0 0.5em;
}
.l_footer .social li:hover{
    transform:scale(1.2,1.2);
    transition:0.25s all;
}
.l_footer .social li a{
    display: block;
}
.l_footer .social li img{
    width: 100%;
    height: 100%;
}
.l_footer .social li.note{
    background-color:#41C9B4;
}


/* =================================
 l_footer_sp
================================= */
.l_footer_sp {
  display: none;
  position: relative;
  width: 100%;
  background: #fff;
  padding: 45px 4.7875% 0;
}
@media screen and (max-width: 768px) {
  .l_footer_sp {
    display: block;
  }
}
.l_footer_sp > .inner > .wrap {
  padding: 0 0 20px;
}
.l_footer_sp > .inner > .wrap > .imgwrap {
  text-align: center;
}
.l_footer_sp > .inner > .wrap > .imgwrap > a {
  display: inline-block;
  margin: 0 auto;
}
.l_footer_sp > .inner > .wrap > .imgwrap > a > img {
  width: 112px;
}
.l_footer_sp > .inner > .wrap > .inner {
  margin: 30px 0 0;
  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_footer_sp > .inner > .wrap > .inner > .item {
  width: -moz-calc(50% - 10px);
  width: -o-calc(50% - 10px);
  width: -webkit-calc(50% - 10px);
  width: calc(50% - 10px);
}
.l_footer_sp > .inner > .wrap > .inner > .item > .lists > li:not(:first-child) {
  margin: 15px 0 0;
}
.l_footer_sp > .inner > .wrap > .inner > .item > .lists > li.indent {
  padding: 0 0 0 1em;
  text-indent: -1em;
}
.l_footer_sp > .inner > .wrap > .inner > .item > .lists > li > .u_txt_1 {
  font-weight: bold;
}
.l_footer_sp > .inner > .wrap > .inner > .item > .lists > li > .u_txt_1.sml {
  font-size: 12px;
  font-weight: normal;
}
.l_footer_sp > .inner > .wrap > .item {
  margin: 30px 0 0;
}
.l_footer_sp > .inner > .wrap > .item > .lists > li:not(:first-child) {
  margin: 15px 0 0;
}
.l_footer_sp > .inner > .wrap > .item > .lists > li > .u_txt_3 > img {
  width: 10px;
}
.l_footer_sp > .inner > .wrap > .infobox {
  background: #F3F3F3;
  width: 100%;
  padding: 20px 0;
  text-align: center;
  border-radius: 30px;
  margin: 30px 0 0;
  display: block;
}
.l_footer_sp > .inner > .wrap > .infobox > .u_txt_1 {
  font-weight: bold;
  text-align: center;
  font-family: "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "hiragino kaku gothic pro", "メイリオ", Meiryo;
  margin: 0 0 5px;
}
.l_footer_sp > .inner > .wrap > .infobox > .inline {
  position: relative;
  text-align: center;
  margin: 15px auto 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: baseline;
  -moz-align-items: baseline;
  -ms-align-items: baseline;
  align-items: baseline;
}
.l_footer_sp > .inner > .wrap > .infobox > .inline > img {
  width: 22px;
}
.l_footer_sp > .inner > .wrap > .infobox > .inline > .tel {
  font-size: 32px;
  color: #1AA5AA;
  font-weight: bold;
  font-family: Helvetica;
}
.l_footer_sp > .inner > .wrap > .infobox > .inline > .tel [data-ruby] {
  position: relative;
}
.l_footer_sp > .inner > .wrap > .infobox > .inline > .tel [data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -.6em;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 10px;
  text-align: center;
}
.l_footer_sp > .inner > .wrap > .infobox > .u_txt_3 {
  text-align: center;
  margin: 3px 0 0;
}
.l_footer_sp > .inner > .wrap2 {
  padding: 15px 0 75px;
}
.l_footer_sp > .inner > .wrap2 > .left > .u_txt_8:not(:first-child) {
  margin: 25px 0 0;
}
.l_footer_sp > .inner > .wrap2 > .left > .u_txt_8 > span {
  display: inline-block;
  vertical-align: text-top;
}
.l_footer_sp > .inner > .wrap2 > .left > .u_txt_8 > span .img01 {
  width: 34px;
}
.l_footer_sp > .inner > .wrap2 > .left > .u_txt_8 > span .img02 {
  width: 50px;
}
.l_footer_sp > .inner > .wrap2 > .right {
  margin: 15px 0 0;
}
.l_footer_sp > .inner > .wrap2 > .right > .line1 {
  margin: 20px 0 15px;
  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: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.l_footer_sp > .inner > .wrap2 > .right > .line2 {
  text-align: center;
}
.l_footer_sp .social ul{
    text-align: center;
    margin: 0.5em;
}
.l_footer_sp .social li{
    display: inline-block;
    width: 4em;
    height: 4em;
    border-radius: 2em;
    margin: 0 0.5em;
}
.l_footer_sp .social li:hover{
    transform:scale(1.2,1.2);
    transition:0.25s all;
}
.l_footer_sp .social li a{
    display: block;
}
.l_footer_sp .social li img{
    width: 100%;
    height: 100%;
}
.l_footer_sp .social li.note{
    background-color:#41C9B4;
}


/* =================================
 l_bg_fixed
================================= */
.l_bg_fixed {
  pointer-events: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  background: url(../img/common/fixed_bg.svg);
  background-size: contain;
  background-position: top -100px center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .l_bg_fixed {
    background: url(../img/common/sp/fixed_bg.svg);
    background-repeat: no-repeat;
    background-position: top 100px left 69%;
  }
}

/* =================================
 l_cv
================================= */
.l_cv {
  min-width: 1160px;
  position: relative;
  padding: 80px 0;
  background: linear-gradient(90deg, #90cfd1 0%, #90cfd1 50%, #f7ca28 50%, #f7ca28 100%);
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .l_cv {
    padding: 40px 4.6875%;
    min-width: initial;
  }
}
.l_cv:before {
  content: '';
  position: absolute;
  background: url(../img/common/cv_bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
  top: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .l_cv:before {
    left: 0;
    background: url(../img/common/sp/cv_bg.svg);
    background-repeat: no-repeat;
    background-position: center center;
  }
}
.l_cv > .inner {
  width: 820px;
  margin: 0 auto;
  background: #fff;
  padding: 50px 0;
  border-radius: 30px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l_cv > .inner {
    width: 100%;
    padding: 25px 25px 30px;
    border-radius: 20px;
  }
}
.l_cv > .inner:before {
  position: absolute;
  content: '';
  background: url(../img/fee/kids.svg);
  background-size: cover;
  bottom: -2px;
  left: 10px;
  width: 222px;
  height: 164px;
}
@media screen and (max-width: 768px) {
  .l_cv > .inner:before {
    content: '';
    background: url(../img/fee/kids.svg);
    background-size: cover;
    width: 142px;
    height: 104px;
    bottom: -40px;
    left: -10px;
    z-index: 2;
    pointer-events: none;
  }
}
@media screen and (max-width: 320px) {
  .l_cv > .inner:before {
    width: 65px;
    height: 81px;
  }
}
.l_cv > .inner:after {
  position: absolute;
  content: '';
  background: url(../img/fee/mom.svg);
  background-size: cover;
  width: 120px;
  height: 192px;
  bottom: -2px;
  right: 65px;
}
@media screen and (max-width: 768px) {
  .l_cv > .inner:after {
    content: '';
    background: url(../img/fee/mom.svg);
    background-size: cover;
    width: 66px;
    height: 106px;
    bottom: -40px;
    right: -10px;
  }
}
@media screen and (max-width: 320px) {
  .l_cv > .inner:after {
    width: 62px;
    height: 90px;
  }
}
.l_cv > .inner > .u_txt_5 {
  font-weight: bold;
}
.l_cv > .inner > .u_txt_1 {
  margin: 35px 0 0;
}
@media screen and (max-width: 768px) {
  .l_cv > .inner > .u_txt_1 {
    margin: 15px 0 0;
    text-align: left;
  }
}
.l_cv > .inner > .c_btn_4 {
  margin: 35px auto 0;
}
@media screen and (max-width: 768px) {
  .l_cv > .inner > .c_btn_4 {
    margin: 25px auto 0;
  }
}

/* =================================
 l_breadcrumbs
================================= */
.l_breadcrumbs {
  width: 100%;
  height: 50px;
  margin: 0 auto;
  white-space: nowrap;
  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 (max-width: 768px) {
  .l_breadcrumbs {
    width: 100%;
    padding: 0 4.6875%;
    overflow: scroll;
  }
}
.l_breadcrumbs > ul {
  width: 1160px;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 768px) {
  .l_breadcrumbs > ul {
    width: 100%;
  }
}
.l_breadcrumbs > ul > li {
  margin: 0 23px 0 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;
}
.l_breadcrumbs > ul > li:last-child {
  margin: 0;
}
.l_breadcrumbs > ul > li:last-child:before {
  content: '';
  border: none;
}
.l_breadcrumbs > ul > li:before {
  content: '';
  position: absolute;
  right: -11px;
  top: 50%;
  display: block;
  width: 5px;
  height: 5px;
  border-top: solid 1px #1AA5AA;
  border-right: solid 1px #1AA5AA;
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.l_breadcrumbs > ul > li .u_txt_3 {
  font-size: 1.3em;
}
.l_breadcrumbs > ul > li > a {
  display: inline-block;
  color: #1AA5AA;
  text-decoration: underline;
}
.l_breadcrumbs > ul > li > a:hover {
  text-decoration: none;
}

/* =================================
 l_cv_sp
================================= */
.l_cv_sp {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 68px;
  padding: 0 5px;
  background: #fff;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .l_cv_sp {
    display: block;
  }
}
.l_cv_sp > ul {
  height: 100%;
  width: 100%;
  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: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.l_cv_sp > ul > li {
  height: 58px;
  width: -moz-calc((100% - 10px) / 2);
  width: -o-calc((100% - 10px) / 2);
  width: -webkit-calc((100% - 10px) / 2);
  width: calc((100% - 10px) / 2);
}
.l_cv_sp > ul > li > a {
  width: 100%;
  height: 58px;
  border: 1px solid #333;
  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;
}
.l_cv_sp > ul > li > a._last {
  background: #ed3465;
  color: #fff;
  border: none;
}
.l_cv_sp > ul > li > a._last > .wrap {
  padding: 5px 0 0;
}
.l_cv_sp > ul > li > a._last > .wrap > p {
  margin: 6px 0 0;
}
.l_cv_sp > ul > li > a > .wrap {
  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;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.l_cv_sp > ul > li > a > .wrap > p {
  width: 100%;
  text-align: center;
  margin: 3px 0 0;
}
.l_cv_sp > p.recomend {
  position:absolute;
  right: calc(25% - 4.6em);
  top: -3.5rem;
  /*background:#1aa5aa;*/
  background: #fff;
  color:#ed3465;
  border: 1px solid #ed3465;
  padding:0.5em 1em 0.2em 1em;
  text-align: center;
  line-height: 1.2;
  border-radius: 2rem;
}
.l_cv_sp > p.recomend:after,
.l_cv_sp > p.recomend:before {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.l_cv_sp > p.recomend:after {
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #ffffff;
    border-width: 5px;
    margin-left: -5px;
}
.l_cv_sp > p.recomend:before {
    border-color: rgba(237, 52, 101, 0);
    border-top-color: #ed3465;
    border-width: 6px;
    margin-left: -6px;
}
/* ======================================================================
 z-index
====================================================================== */
.l_loader {
  z-index: 1000;
}

.l_header {
  z-index: 998;
}

.l_header_sp {
  z-index: 998;
}

.c_btn_p_top {
  z-index: 997;
}

.l_side {
  z-index: 996;
}

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

.l_header_top {
  z-index: 998;
}

.l_header_sp_top {
  z-index: 998;
}

.c_btn_p_top_top {
  z-index: 997;
}

.l_side_top {
  z-index: 996;
}

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