@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
button,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 1em;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
  padding: 0px;
  margin: 0;
}

blockquote,
q {
  quotes: none;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

img {
  height: auto;
  display: block;
  max-width: 100%;
}

:root {
  --headerHeight: 90px;
  --flexMargin: 20px;
  --paddingSection: 100px;
}

:root .thin_margin {
  --flexMargin: 10px;
}

@media screen and (max-width: 961px) {
  :root {
    --headerHeight: 64px;
    --flexMargin: 10px;
    --paddingSection: 40px;
  }
}

/*==========　基本設定　==========*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #000;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
  font-weight: 500;
  width: 100%;
}

@media screen and (max-width: 961px) {
  body {
    font-size: 14px;
    line-height: 1.5;
  }
}

.body_wrap {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: calc(1000px + 25px * 2);
  padding-left: 25px;
  padding-right: 25px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.inner {
  width: 100%;
  max-width: calc(900px + 25px * 2);
  padding-left: 25px;
  padding-right: 25px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.inner_contents {
  width: 100%;
  max-width: calc(800px + 25px * 2);
  padding-left: 25px;
  padding-right: 25px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 961px) {
  .inner_contents .container,
  .container .inner,
  .container .inner_contents,
  .inner .inner_contents {
    padding-left: 0;
    padding-right: 0;
  }
}

.anchor {
  padding-top: var(--headerHeight);
  margin-top: calc(var(--headerHeight) * -1);
}

a {
  color: inherit;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

/*========== レイアウト用 ==========*/
.padding_section {
  padding-bottom: var(--paddingSection);
}

.layout_box {
  width: calc(100% + (var(--flexMargin) * 2));
  margin: calc(var(--flexMargin) * -1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.layout_box.justify_sb {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.layout_box.justify_sa {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

.layout_box.justify_fe {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.layout_box.justify_center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.layout_box.align_fs {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.layout_box.align_fe {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.layout_box.align_center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.layout_box > * {
  margin: var(--flexMargin);
}

.layout_box.col_02 > * {
  width: calc((100% / 2) - (var(--flexMargin) * 2));
}

.layout_box.col_03 > * {
  width: calc((100% / 3) - (var(--flexMargin) * 2));
}

.layout_box.col_04 > * {
  width: calc((100% / 4) - (var(--flexMargin) * 2));
}

.layout_box.col_05 > * {
  width: calc((100% / 5) - (var(--flexMargin) * 2));
}

.layout_box.col_06 > * {
  width: calc((100% / 6) - (var(--flexMargin) * 2));
}

@media screen and (max-width: 961px) {
  .layout_box {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .layout_box:not(.sp_same).col_02 > *,
  .layout_box:not(.sp_same).col_03 > *,
  .layout_box:not(.sp_same).col_04 > *,
  .layout_box:not(.sp_same).col_05 > *,
  .layout_box:not(.sp_same).col_06 > * {
    width: calc((100% / 1) - (var(--flexMargin) * 2));
  }
}

/*==========
汎用クラス
==========*/
.sp_only {
  display: none;
}

@media screen and (max-width: 961px) {
  .sp_only {
    display: block;
  }
}

.pc_only {
  display: block;
}

@media screen and (max-width: 961px) {
  .pc_only {
    display: none;
  }
}

.text_white {
  color: #fff;
}

.text_blue {
  color: #00304d;
}

/*==========
フォント
==========*/
.fw_mid {
  font-weight: 500;
}

.fw_bold {
  font-weight: 700;
}

.fw_black {
  font-weight: 900;
}

.fs_12 {
  font-size: 0.75em;
}

@media screen and (max-width: 961px) {
  .fs_12 {
    font-size: 1em;
  }
}

.fs_13 {
  font-size: 0.8125em;
}

@media screen and (max-width: 961px) {
  .fs_13 {
    font-size: 1em;
  }
}

.fs_14 {
  font-size: 0.875em;
}

@media screen and (max-width: 961px) {
  .fs_14 {
    font-size: 1em;
  }
}

.fs_15 {
  font-size: 0.9375em;
}

@media screen and (max-width: 961px) {
  .fs_15 {
    font-size: 1em;
  }
}

.fs_16 {
  font-size: 1em;
}

.fs_17 {
  font-size: 1.0625em;
}

@media screen and (max-width: 961px) {
  .fs_17 {
    font-size: 1em;
  }
}

.fs_18 {
  font-size: 1.125em;
}

@media screen and (max-width: 961px) {
  .fs_18 {
    font-size: 1em;
  }
}

.fs_19 {
  font-size: 1.1875em;
}

@media screen and (max-width: 961px) {
  .fs_19 {
    font-size: 1em;
  }
}

.fs_20 {
  font-size: 1.25em;
}

@media screen and (max-width: 961px) {
  .fs_20 {
    font-size: 1em;
  }
}

.fs_21 {
  font-size: 1.3125em;
}

@media screen and (max-width: 961px) {
  .fs_21 {
    font-size: 1em;
  }
}

.fs_22 {
  font-size: 1.375em;
}

@media screen and (max-width: 961px) {
  .fs_22 {
    font-size: 1em;
  }
}

.fs_24 {
  font-size: 1.5em;
}

@media screen and (max-width: 961px) {
  .fs_24 {
    font-size: 1.125em;
  }
}

.fs_25 {
  font-size: 1.5625em;
}

@media screen and (max-width: 961px) {
  .fs_25 {
    font-size: 1.125em;
  }
}

.fs_26 {
  font-size: 1.625em;
}

@media screen and (max-width: 961px) {
  .fs_26 {
    font-size: 1.125em;
  }
}

.fs_28 {
  font-size: 1.75em;
}

@media screen and (max-width: 961px) {
  .fs_28 {
    font-size: 1.125em;
  }
}

.fs_30 {
  font-size: 1.875em;
}

@media screen and (max-width: 961px) {
  .fs_30 {
    font-size: 1.125em;
  }
}

.fs_32 {
  font-size: 2em;
}

@media screen and (max-width: 961px) {
  .fs_32 {
    font-size: 1.25em;
  }
}

.fs_34 {
  font-size: 2.125em;
}

@media screen and (max-width: 961px) {
  .fs_34 {
    font-size: 1.25em;
  }
}

.fs_36 {
  font-size: 2.25em;
}

@media screen and (max-width: 961px) {
  .fs_36 {
    font-size: 1.25em;
  }
}

.fs_40 {
  font-size: 2.5em;
}

@media screen and (max-width: 961px) {
  .fs_40 {
    font-size: 1.25em;
  }
}

/*==========
IE排除
==========*/
/*========== 汎用オブジェクト ==========*/
.chinese {
  font-family: "Noto Sans SC", sans-serif;
}

/*==========
汎用デザイン
==========*/
.section_block {
  padding-top: var(--headerHeight);
  padding-bottom: 40px;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media all and (-ms-high-contrast: none) {
  .section_block {
    height: 100vh;
  }
}

@media screen and (max-width: 961px) {
  .section_block {
    padding-top: 80px;
    padding-bottom: 80px;
    min-height: auto;
  }
}

/*==========
リスト
==========*/
.list_01 {
  line-height: 1.75;
}

.list_01 .list {
  width: 100%;
  margin-right: -25px;
  padding: 0.75em 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  border-bottom: 1px solid #00304d;
  position: relative;
}

.list_01 .list:first-of-type {
  border-top: 1px solid #00304d;
}

.list_01 .list::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #00304d;
  position: absolute;
  left: 178px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.list_01 .title {
  width: 178px;
  font-size: 1.5625em;
  color: #00304d;
  padding-left: 0.5em;
}

.list_01 .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.375em;
  font-weight: 400;
  padding-left: 1em;
}

@media screen and (max-width: 961px) {
  .list_01 {
    line-height: 1.5;
  }
  .list_01 .list::after {
    display: none;
  }
  .list_01 .title,
  .list_01 .text {
    font-size: 1em;
    width: 100%;
  }
  .list_01 .text {
    margin-top: 0.5em;
  }
}

.dl_01 {
  border-top: 2px solid #00304d;
}

.dl_01 .list {
  border-bottom: 2px solid #00304d;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 2em 0;
}

.dl_01 .dt {
  width: 120px;
  font-size: 1.25em;
}

.dl_01 .dd {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.0625em;
}


@media screen and (max-width: 961px) {
  .dl_01 .list {
    padding: 1em 0;
  }
  .dl_01 .dt {
    font-weight: 700;
    width: 100px;
    font-size: 1em;
  }
  .dl_01 .dd {
    margin-top: 0.25em;
    padding-left: 1em;
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    font-size: 1em;
  }
}

/*==========
ボタン
==========*/
.btn_contact {
  border: 1px solid #00304d;
  background-color: #00304d;
  color: #fff;
  padding: 0.025em 1.25em;
  font-size: 1.0625em;
  font-weight: 700;
  -webkit-transition: color 0.5s, background-color 0.5s, border-color 0.5s;
  transition: color 0.5s, background-color 0.5s, border-color 0.5s;
}

.btn_contact:hover {
  background-color: #fff;
  color: #00304d;
}

.btn_01 {
  cursor: pointer;
  font-weight: 700;
  border: 1px solid #000;
  border-bottom: 4px solid #000;
  max-width: 240px;
  height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
  color: #000 !important;
}

.btn_01::before {
  content: "";
  width: 60px;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.btn_01::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: -100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: left 0.5s;
  transition: left 0.5s;
  z-index: -1;
}

.btn_01:hover::after {
  left: 0;
}

.btn_01.btn_white {
  color: #fff !important;
  border-color: #fff;
  -webkit-transition: color 0.5s, border-color 0.5s;
  transition: color 0.5s, border-color 0.5s;
}

.btn_01.btn_white::before {
  background-color: #fff;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}

.btn_01.btn_white:hover {
  color: #000 !important;
  border-color: #000;
}

.btn_01.btn_white:hover::before {
  background-color: #000;
}

@media screen and (max-width: 961px) {
  .btn_01 {
    height: 56px;
  }
  .btn_01::before {
    width: 40px;
  }
}

.btn_02 {
  cursor: pointer;
  width: 100%;
  max-width: 380px;
  height: 110px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #00304d;
  border: 1px solid #00304d;
  color: #fff !important;
  font-size: 1.25em;
  line-height: 1;
  -webkit-transition: color 0.5s, background-color 0.5s;
  transition: color 0.5s, background-color 0.5s;
}

.btn_02:hover {
  color: #00304d !important;
  background-color: #fff;
  color: #00304d;
}

@media screen and (max-width: 961px) {
  .btn_02 {
    height: 72px;
    font-size: 1.125em;
    max-width: 280px;
  }
}

/*==========
タイトル
==========*/
.title_01 {
  font-size: 2.5em;
  font-family: "Quicksand", sans-serif;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 961px) {
  .title_01 {
    font-size: 1.5em;
  }
}

.title_02 {
  line-height: 1.25;
  border-left: 6px solid #000;
  padding-left: 50px;
}

.title_02 .en {
  font-weight: 300;
  font-size: 1.4375em;
}

.title_02 .ja {
  font-size: 2.5em;
}

.title_02.title_white {
  color: #fff;
  border-color: #fff;
}

@media screen and (max-width: 961px) {
  .title_02 {
    padding-left: 1.5em;
    border-width: 4px;
  }
  .title_02 .en {
    font-size: 1.125em;
  }
  .title_02 .ja {
    font-size: 1.5em;
  }
}

.title_03 {
  text-align: center;
  font-size: 1.5625em;
  color: #00304d;
  padding-bottom: 0.25em;
  position: relative;
}

.title_03::after {
  content: "";
  width: 4em;
  height: 6px;
  background-color: #00304d;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 961px) {
  .title_03 {
    font-size: 1.5em;
  }
  .title_03::after {
    height: 3px;
  }
}

.title_04 {
  font-size: 1.375em;
  color: #00304d;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.title_04::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #00304d;
  opacity: 0.5;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 0.125em;
}

/*========== 汎用レイアウト ==========*/
/*==========
ヘッダー
==========*/
#header {
  position: fixed;
  top: 0%;
  left: 0;
  width: 100%;
  height: var(--headerHeight);
  z-index: 99;
}

#header .flex_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

#header .menu_area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

#header.hide {
  top: -100%;
}

#header.view {
  top: 0%;
  -webkit-transition: background-color 0.5s, top 1s;
  transition: background-color 0.5s, top 1s;
}

#header.bg {
  background-color: #00304d;
}

#header.bg .btn_contact {
  border-color: #fff;
}

@media screen and (max-width: 961px) {
  #header {
    background-color: #fff;
  }
  #header .logo_area {
    width: 56px;
  }
  #header .menu_area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: fixed;
    width: 100%;
    height: 0;
    left: 50%;
    top: var(--headerHeight);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: #00304d;
    overflow: hidden;
    -webkit-transition: height 0.5s;
    transition: height 0.5s;
    will-change: height;
  }
  #header .btn_contact {
    margin-top: 1em;
    background-color: #fff;
    color: #00304d;
  }
}

.menu_header {
  margin-right: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 0.9375em;
  font-weight: 700;
}

.menu_header > * p {
  display: inline-block;
}

.menu_header > *:not(:last-of-type)::after {
  content: "|";
  margin-right: 1.25em;
  margin-left: 1.25em;
}

.menu_header a {
  position: relative;
}

.menu_header a::after {
  content: "";
  background-color: #fff;
  width: 0em;
  height: 2px;
  display: block;
  position: absolute;
  bottom: -0.5em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
}

.menu_header a:hover::after {
  width: 1.5em;
}

@media screen and (max-width: 961px) {
  .menu_header {
    width: 100%;
    font-size: 1.125em;
    padding: 16px 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 0;
    background: center/contain url("../images/index_mv_deco.svg") no-repeat;
  }
  .menu_header > * {
    margin-bottom: 1em;
  }
  .menu_header > *:not(:last-of-type)::after {
    display: none;
  }
  .menu_header a::after {
    display: none;
  }
}

#humberger_btn {
  display: none;
  position: relative;
  width: calc(var(--headerHeight) / 3);
  height: calc(var(--headerHeight) / 4);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
}

#humberger_btn .span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #00304d;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
}

#humberger_btn .span:nth-child(1) {
  top: 0;
}

#humberger_btn .span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#humberger_btn .span:nth-child(3) {
  bottom: 0;
}

@media screen and (max-width: 961px) {
  #humberger_btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

#header.open .menu_area {
  height: calc(100vh - var(--headerHeight));
}

#header.open #humberger_btn .span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

#header.open #humberger_btn .span:nth-child(2) {
  width: 100%;
  height: 0;
  opacity: 0;
}

#header.open #humberger_btn .span:nth-child(3) {
  width: 100%;
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
}

/*==========
フッター
==========*/
#footer .contact_area {
  padding: 80px 0;
}

#footer .contact_area .btn_web::before {
  content: "";
  width: 25px;
  height: 22px;
  display: block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224.39%22%20height%3D%2221.34%22%20viewBox%3D%220%200%2024.39%2021.34%22%3E%3Cg%20id%3D%22c%22%3E%3Cpath%20d%3D%22M23.05%2C0H1.34C.6%2C0%2C0%2C.6%2C0%2C1.34V14.92c0%2C.74%2C.6%2C1.34%2C1.34%2C1.34H10.5v3.05H4.74v2.03h14.91v-2.03h-5.76v-3.05h9.16c.74%2C0%2C1.34-.6%2C1.34-1.34V1.34c0-.74-.6-1.34-1.34-1.34Zm-.2%2C12.84H1.55V1.46H22.85V12.84Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  margin-right: 0.75em;
  -webkit-transition: background-image 0.5s;
  transition: background-image 0.5s;
}

#footer .contact_area .btn_web:hover::before {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224.39%22%20height%3D%2221.34%22%20viewBox%3D%220%200%2024.39%2021.34%22%3E%3Cg%20id%3D%22c%22%3E%3Cpath%20d%3D%22M23.05%2C0H1.34C.6%2C0%2C0%2C.6%2C0%2C1.34V14.92c0%2C.74%2C.6%2C1.34%2C1.34%2C1.34H10.5v3.05H4.74v2.03h14.91v-2.03h-5.76v-3.05h9.16c.74%2C0%2C1.34-.6%2C1.34-1.34V1.34c0-.74-.6-1.34-1.34-1.34Zm-.2%2C12.84H1.55V1.46H22.85V12.84Z%22%20fill%3D%22%2300304d%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

#footer .contact_area .btn_tel::before {
  content: "";
  width: 30px;
  height: 24px;
  display: block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2229.35%22%20height%3D%2223.1%22%20viewBox%3D%220%200%2029.35%2023.1%22%3E%3Cg%20id%3D%22c%22%3E%3Cpath%20d%3D%22M27.26%2C3.58c-.8-.99-1.8-1.71-2.86-2.22-1.58-.77-3.92-1.1-5.35-1.24-.72-.07-1.37-.1-1.91-.11-.53%2C0-2.22%2C0-2.45%2C0h-.03c-.33%2C0-2.25%2C0-3.06%2C.02-1.22%2C.05-3.46%2C.2-5.07%2C.7-1.61%2C.5-3.24%2C1.36-4.45%2C2.85C.46%2C5.61%2C0%2C7.14%2C0%2C8.2c0%2C.95%2C.37%2C1.47%2C.44%2C1.55%2C.12%2C.15%2C.3%2C.23%2C.49%2C.23H6.78c.18%2C0%2C.36-.08%2C.47-.21%2C.12-.13%2C.18-.32%2C.15-.5h0c0-.1-.05-.5-.05-1%2C0-.53%2C.05-1.18%2C.21-1.67%2C.08-.25%2C.18-.45%2C.29-.58%2C.11-.13%2C.21-.2%2C.36-.24%2C.58-.16%2C2.02-.26%2C2.77-.31%2C.76-.05%2C2.75-.07%2C3.2-.07%2C.15%2C0%2C.27%2C0%2C.35%2C0h.28c.08%2C0%2C.2%2C0%2C.36%2C0%2C.45%2C0%2C2.44%2C.01%2C3.2%2C.07%2C.76%2C.05%2C2.2%2C.15%2C2.78%2C.31%2C.14%2C.04%2C.25%2C.11%2C.36%2C.24%2C.16%2C.2%2C.31%2C.56%2C.39%2C.97%2C.08%2C.41%2C.11%2C.88%2C.11%2C1.28%2C0%2C.29-.01%2C.54-.03%2C.72%2C0%2C.09-.01%2C.16-.02%2C.21v.05h0c-.02%2C.19%2C.03%2C.38%2C.15%2C.51%2C.12%2C.14%2C.29%2C.21%2C.48%2C.21h5.85c.19%2C0%2C.37-.09%2C.49-.23%2C.07-.08%2C.44-.6%2C.44-1.55%2C0-1.06-.46-2.59-2.1-4.62Zm-4.89%2C8.38c-1.51-1.9-2.26-3.8-2.64-5.21-.02-.08-.04-.16-.06-.24-.49-.05-.99-.08-1.35-.11h0c-.28-.02-.78-.04-1.31-.04v3.04h-4.65v-3.04c-.52%2C0-1.03%2C.02-1.3%2C.04h0c-.36%2C.02-.87%2C.06-1.35%2C.11-.36%2C1.43-1.11%2C3.43-2.7%2C5.44-1.54%2C1.95-2.42%2C3.69-2.91%2C5.39-.5%2C1.7-.62%2C3.34-.7%2C5.09%2C0%2C.17%2C.05%2C.34%2C.17%2C.47%2C.12%2C.12%2C.29%2C.2%2C.46%2C.2H25.34c.17%2C0%2C.33-.07%2C.45-.2%2C.12-.12%2C.18-.29%2C.18-.47-.08-1.75-.2-3.39-.7-5.09-.5-1.7-1.38-3.44-2.92-5.39Zm-9.79%2C8.03c0%2C.44-.35%2C.79-.79%2C.79h-.87c-.44%2C0-.79-.35-.79-.79v-.86c0-.44%2C.35-.79%2C.79-.79h.87c.44%2C0%2C.79%2C.35%2C.79%2C.79v.86Zm0-3.39c0%2C.44-.35%2C.79-.79%2C.79h-.87c-.44%2C0-.79-.35-.79-.79v-.86c0-.44%2C.35-.79%2C.79-.79h.87c.44%2C0%2C.79%2C.35%2C.79%2C.79v.86Zm0-3.39c0%2C.44-.35%2C.79-.79%2C.79h-.87c-.44%2C0-.79-.35-.79-.79v-.86c0-.44%2C.35-.79%2C.79-.79h.87c.44%2C0%2C.79%2C.35%2C.79%2C.79v.86Zm3.33%2C6.77c0%2C.44-.35%2C.79-.79%2C.79h-.86c-.44%2C0-.79-.35-.79-.79v-.86c0-.44%2C.35-.79%2C.79-.79h.86c.44%2C0%2C.79%2C.35%2C.79%2C.79v.86Zm0-3.39c0%2C.44-.35%2C.79-.79%2C.79h-.86c-.44%2C0-.79-.35-.79-.79v-.86c0-.44%2C.35-.79%2C.79-.79h.86c.44%2C0%2C.79%2C.35%2C.79%2C.79v.86Zm0-3.39c0%2C.44-.35%2C.79-.79%2C.79h-.86c-.44%2C0-.79-.35-.79-.79v-.86c0-.44%2C.35-.79%2C.79-.79h.86c.44%2C0%2C.79%2C.35%2C.79%2C.79v.86Zm3.33%2C6.77c0%2C.44-.35%2C.79-.79%2C.79h-.86c-.44%2C0-.79-.35-.79-.79v-.86c0-.44%2C.35-.79%2C.79-.79h.86c.44%2C0%2C.79%2C.35%2C.79%2C.79v.86Zm0-3.39c0%2C.44-.35%2C.79-.79%2C.79h-.86c-.44%2C0-.79-.35-.79-.79v-.86c0-.44%2C.35-.79%2C.79-.79h.86c.44%2C0%2C.79%2C.35%2C.79%2C.79v.86Zm0-3.39c0%2C.44-.35%2C.79-.79%2C.79h-.86c-.44%2C0-.79-.35-.79-.79v-.86c0-.44%2C.35-.79%2C.79-.79h.86c.44%2C0%2C.79%2C.35%2C.79%2C.79v.86Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  margin-right: 0.75em;
  -webkit-transition: background-image 0.5s;
  transition: background-image 0.5s;
}

#footer .contact_area .btn_tel:hover::before {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2229.35%22%20height%3D%2223.1%22%20viewBox%3D%220%200%2029.35%2023.1%22%3E%3Cg%20id%3D%22c%22%3E%3Cpath%20d%3D%22M27.26%2C3.58c-.8-.99-1.8-1.71-2.86-2.22-1.58-.77-3.92-1.1-5.35-1.24-.72-.07-1.37-.1-1.91-.11-.53%2C0-2.22%2C0-2.45%2C0h-.03c-.33%2C0-2.25%2C0-3.06%2C.02-1.22%2C.05-3.46%2C.2-5.07%2C.7-1.61%2C.5-3.24%2C1.36-4.45%2C2.85C.46%2C5.61%2C0%2C7.14%2C0%2C8.2c0%2C.95%2C.37%2C1.47%2C.44%2C1.55%2C.12%2C.15%2C.3%2C.23%2C.49%2C.23H6.78c.18%2C0%2C.36-.08%2C.47-.21%2C.12-.13%2C.18-.32%2C.15-.5h0c0-.1-.05-.5-.05-1%2C0-.53%2C.05-1.18%2C.21-1.67%2C.08-.25%2C.18-.45%2C.29-.58%2C.11-.13%2C.21-.2%2C.36-.24%2C.58-.16%2C2.02-.26%2C2.77-.31%2C.76-.05%2C2.75-.07%2C3.2-.07%2C.15%2C0%2C.27%2C0%2C.35%2C0h.28c.08%2C0%2C.2%2C0%2C.36%2C0%2C.45%2C0%2C2.44%2C.01%2C3.2%2C.07%2C.76%2C.05%2C2.2%2C.15%2C2.78%2C.31%2C.14%2C.04%2C.25%2C.11%2C.36%2C.24%2C.16%2C.2%2C.31%2C.56%2C.39%2C.97%2C.08%2C.41%2C.11%2C.88%2C.11%2C1.28%2C0%2C.29-.01%2C.54-.03%2C.72%2C0%2C.09-.01%2C.16-.02%2C.21v.05h0c-.02%2C.19%2C.03%2C.38%2C.15%2C.51%2C.12%2C.14%2C.29%2C.21%2C.48%2C.21h5.85c.19%2C0%2C.37-.09%2C.49-.23%2C.07-.08%2C.44-.6%2C.44-1.55%2C0-1.06-.46-2.59-2.1-4.62Zm-4.89%2C8.38c-1.51-1.9-2.26-3.8-2.64-5.21-.02-.08-.04-.16-.06-.24-.49-.05-.99-.08-1.35-.11h0c-.28-.02-.78-.04-1.31-.04v3.04h-4.65v-3.04c-.52%2C0-1.03%2C.02-1.3%2C.04h0c-.36%2C.02-.87%2C.06-1.35%2C.11-.36%2C1.43-1.11%2C3.43-2.7%2C5.44-1.54%2C1.95-2.42%2C3.69-2.91%2C5.39-.5%2C1.7-.62%2C3.34-.7%2C5.09%2C0%2C.17%2C.05%2C.34%2C.17%2C.47%2C.12%2C.12%2C.29%2C.2%2C.46%2C.2H25.34c.17%2C0%2C.33-.07%2C.45-.2%2C.12-.12%2C.18-.29%2C.18-.47-.08-1.75-.2-3.39-.7-5.09-.5-1.7-1.38-3.44-2.92-5.39Zm-9.79%2C8.03c0%2C.44-.35%2C.79-.79%2C.79h-.87c-.44%2C0-.79-.35-.79-.79v-.86c0-.44%2C.35-.79%2C.79-.79h.87c.44%2C0%2C.79%2C.35%2C.79%2C.79v.86Zm0-3.39c0%2C.44-.35%2C.79-.79%2C.79h-.87c-.44%2C0-.79-.35-.79-.79v-.86c0-.44%2C.35-.79%2C.79-.79h.87c.44%2C0%2C.79%2C.35%2C.79%2C.79v.86Zm0-3.39c0%2C.44-.35%2C.79-.79%2C.79h-.87c-.44%2C0-.79-.35-.79-.79v-.86c0-.44%2C.35-.79%2C.79-.79h.87c.44%2C0%2C.79%2C.35%2C.79%2C.79v.86Zm3.33%2C6.77c0%2C.44-.35%2C.79-.79%2C.79h-.86c-.44%2C0-.79-.35-.79-.79v-.86c0-.44%2C.35-.79%2C.79-.79h.86c.44%2C0%2C.79%2C.35%2C.79%2C.79v.86Zm0-3.39c0%2C.44-.35%2C.79-.79%2C.79h-.86c-.44%2C0-.79-.35-.79-.79v-.86c0-.44%2C.35-.79%2C.79-.79h.86c.44%2C0%2C.79%2C.35%2C.79%2C.79v.86Zm0-3.39c0%2C.44-.35%2C.79-.79%2C.79h-.86c-.44%2C0-.79-.35-.79-.79v-.86c0-.44%2C.35-.79%2C.79-.79h.86c.44%2C0%2C.79%2C.35%2C.79%2C.79v.86Zm3.33%2C6.77c0%2C.44-.35%2C.79-.79%2C.79h-.86c-.44%2C0-.79-.35-.79-.79v-.86c0-.44%2C.35-.79%2C.79-.79h.86c.44%2C0%2C.79%2C.35%2C.79%2C.79v.86Zm0-3.39c0%2C.44-.35%2C.79-.79%2C.79h-.86c-.44%2C0-.79-.35-.79-.79v-.86c0-.44%2C.35-.79%2C.79-.79h.86c.44%2C0%2C.79%2C.35%2C.79%2C.79v.86Zm0-3.39c0%2C.44-.35%2C.79-.79%2C.79h-.86c-.44%2C0-.79-.35-.79-.79v-.86c0-.44%2C.35-.79%2C.79-.79h.86c.44%2C0%2C.79%2C.35%2C.79%2C.79v.86Z%22%20fill%3D%22%2300304d%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

#footer .contact_area .tel {
  font-size: 0.95em;
}

#footer .contact_area .tel_big {
  font-size: 1.3em;
  font-weight: 900;
  vertical-align: -2px;
}

#footer .contact_area .time {
  font-size: 0.7em;
  margin-left: -0.5em;
}

@media screen and (max-width: 961px) {
  #footer .contact_area {
    padding: 64px 0;
  }
}

#footer .footer_area {
  background: center/cover url("../images/footer_bg.jpg") no-repeat;
}

#footer .footer_area .flex_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 0;
}

#footer .footer_area .left {
  line-height: 1.25;
}

#footer .footer_area .right {
  border-left: 1px solid #fff;
  padding-left: 2.25em;
}

@media screen and (max-width: 961px) {
  #footer .footer_area .flex_box {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  #footer .footer_area .right {
    width: 100%;
    margin-top: 40px;
    padding-left: 0;
    border-left: none;
  }
}

.menu_footer {
  font-weight: 700;
  line-height: 1.5;
}

.menu_footer > *:not(:last-of-type) {
  margin-bottom: 1em;
}

.menu_footer a {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.menu_footer a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 961px) {
  .menu_footer > *:not(:last-of-type) {
    margin-bottom: 0.5em;
  }
}

/*==========
コピーライト
==========*/
.copyrights {
  padding-bottom: 1em;
  font-weight: 300;
  font-size: 0.8125em;
  text-align: center;
}

/*==========
PageToTop
==========*/
#pageTop {
  position: fixed;
  right: 0;
  bottom: -100%;
  background-color: #00304d;
  color: #fff;
  width: 53px;
  height: 61px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: bottom 0.5s;
  transition: bottom 0.5s;
  z-index: 99;
  cursor: pointer;
}

#pageTop::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 14px 8px 14px;
  border-color: transparent transparent #ffffff transparent;
  opacity: 0.5;
}

#pageTop.view {
  bottom: 40px;
}

@media screen and (max-width: 961px) {
  #pageTop {
    font-size: 0.875em;
  }
  #pageTop::before {
    margin-bottom: 0.5em;
  }
}

.point-text-red {
    font-size: 18px !important;
    color: red;
  }

@media screen and (max-width: 961px) {
  .point-text-red {
    font-size: 15px !important;
  }
}
/*==========
Effect
==========*/
/*-- Effect --*/
.link_zoom .img_area {
  overflow: hidden;
}

.link_zoom .img_area img {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  width: 100%;
}

.link_zoom:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.animation_ready.zoomIn {
  opacity: 0;
  will-change: transform, opacity;
}

.animation_ready.zoomIn.trigger {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.animation_ready.fadeIn {
  opacity: 0;
}

.animation_ready.fadeIn.trigger {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.animation_ready.fadeUp {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  will-change: transform, opacity;
}

.animation_ready.fadeUp.trigger {
  -webkit-animation-name: fadeUp;
          animation-name: fadeUp;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

.animation_ready.fadeUpList > * {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  will-change: transform, opacity;
}

.animation_ready.fadeUpList.trigger > * {
  -webkit-animation-name: fadeUp;
          animation-name: fadeUp;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

.animation_ready.slideLeft {
  will-change: transform, opacity;
  -webkit-transform: translateX(-160px);
          transform: translateX(-160px);
  opacity: 0;
}

.animation_ready.slideLeft.trigger {
  -webkit-animation-name: slideLeft;
          animation-name: slideLeft;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-160px);
            transform: translateX(-160px);
  }
  25% {
    opacity: 0;
  }
  75% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-160px);
            transform: translateX(-160px);
  }
  25% {
    opacity: 0;
  }
  75% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.animation_ready.slideRight {
  will-change: transform, opacity;
  -webkit-transform: translateX(160px);
          transform: translateX(160px);
  opacity: 0;
}

.animation_ready.slideRight.trigger {
  -webkit-animation-name: slideRight;
          animation-name: slideRight;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes slideRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(160px);
            transform: translateX(160px);
  }
  25% {
    opacity: 0;
  }
  75% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(160px);
            transform: translateX(160px);
  }
  25% {
    opacity: 0;
  }
  75% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*# sourceMappingURL=style.css.map */