@charset "UTF-8";
/*------------------------------------------------------------
	Reset
------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

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

html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
}

body, table,
input, textarea, select, option,
h1, h2, h3, h4, h5, h6 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

table,
input, textarea, select, option {
  line-height: 1.1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
}

a,
a img {
  transition: 0.3s ease-in-out;
}

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

a:hover,
a:hover img {
  opacity: 0.80;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}

img {
  max-width: 100%;
}

.sp-only {
  display: none;
}

@media only screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Layout .l-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/* Header
------------------------------------------------------------*/
.c-header {
  padding: 0px 4.16666666667vw;
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
}

@media only screen and (max-width: 1199px) {
  .c-header {
    padding: 0 20px;
  }
}

.c-header__inner {
  display: flex;
  flex-wrap: wrap;
  padding: 39px 0px;
  position: relative;
  transition: .3s background-color linear, .6s padding ease, .4s opacity linear, .4s transform ease;
}

@media only screen and (max-width: 1199px) {
  .c-header__inner {
    padding: 9px 0px;
  }
}
.c-header.is-active .c-header__inner {
  padding: 15px 0;
}
@media only screen and (max-width: 1199px) {
  .c-header.is-active .c-header__inner {
    padding: 9px 0;
  }
}
.c-header__logo {
  width: 30%;
}

@media only screen and (max-width: 1199px) {
  .c-header__logo {
    width: 50%;
  }
}

.c-header__logo *{
  height: 100%;
}

.c-header__logo img{
  width: 188px;
}

@media only screen and (max-width: 1199px) {
  .c-header__logo img{
    width: 140px;
  }
}

.c-header__line{
  position: absolute;
  bottom: 10px;
  left: 4.16666666667vw;
  width: calc(100% - 8.33333333333vw);
  height: 2px;
  background-color: #000;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition: .8s transform cubic-bezier(0.48, 0.44, 0.15, 1.01);
  transition: .8s transform cubic-bezier(0.48, 0.44, 0.15, 1.01);
  z-index: 50;
}
@media only screen and (max-width: 1199px) {
  .c-header__line{
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 1px;
  }
}
.c-header.is-active .c-header__line{
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right;
  transform-origin: right;
}
body.menu-open .c-header__line{
  display: none;
}

/* Main menu
------------------------------------------------------------*/
.c-gnav{
  width: 70%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .c-gnav{
    display: none;
  }
}
.c-gnav ul{
  display: flex;
}
.c-gnav li + li{
  margin-left: 50px;
}
.c-gnav a{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #000;
  font-weight: 400;
}
.c-gnavsp {
  display: none;
  position: fixed;
  top: 60px;
  right: 0;
  background-color: #fff;
  z-index: 999;
  width: 100%;
  height: auto;
  overflow: scroll;
}

.c-gnavsp ul ul li {
  position: relative;
}

.c-gnavsp ul ul li:before {
  content: "・";
  position: absolute;
  font-size: 4rem;
  top: 7px;
  left: -5px;
  color: #ffffff;
  height: 100%;
}

@media only screen and (max-width: 1199px) {
  .c-gnavsp ul ul li:before {
    font-size: 3rem;
    top: 2px;
    left: 0;
  }
}

.c-gnavsp ul ul li a {
  padding: 20px 10px 18px 30px;
}

@media only screen and (max-width: 1199px) {
  .c-gnavsp ul ul li a {
    padding: 14px 10px 14px 25px;
  }
}

.c-gnavsp ul ul li:first-child a {
  border-top: none;
}

.c-gnavsp ul li a {
  padding: 15px;
  display: block;
  border-bottom: 1px solid #000;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}

.c-gnavsp ul li:first-child a {
  border-top: 1px solid #000;
}

.c-menu {
  position: fixed;
  display: none;
  width: 60px;
  height: 60px;
  background-color: #000;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: pointer;
  top: 0;
  right: 0;
}

@media only screen and (max-width: 1199px) {
  .c-menu {
    display: flex;
  }
}

.c-menu__icon {
  height: 2px;
  width: 33px;
  background-color: #ffffff;
  position: absolute;
  transition: transform .2s ease, background-color .5s ease;
}

.c-menu__icon:nth-child(1) {
  top: 28px;
}

@media only screen and (max-width: 1199px) {
  .c-menu__icon:nth-child(1) {
    top: 18px;
  }
}

.c-menu__icon:nth-child(2) {
  top: 43px;
}

@media only screen and (max-width: 1199px) {
  .c-menu__icon:nth-child(2) {
    top: 30px;
  }
}

.c-menu__icon:nth-child(3) {
  top: 58px;
}

@media only screen and (max-width: 1199px) {
  .c-menu__icon:nth-child(3) {
    top: 42px;
  }
}

body.menu-open .c-menu__icon {
  top: 43px;
}

@media only screen and (max-width: 1199px) {
  body.menu-open .c-menu__icon {
    top: 30px;
  }
}

body.menu-open .c-menu__icon:nth-child(1) {
  transform: rotate(45deg);
}

body.menu-open .c-menu__icon:nth-child(2) {
  transform: rotate(135deg);
}

body.menu-open .c-menu__icon:nth-child(3) {
  display: none;
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.c-footer {
  color: #666666;
}

.c-footer1 {
  position: relative;
  padding-top: 90px;
  text-align: center;
}

@media only screen and (max-width: 1199px) {
  .c-footer1 {
    padding-top: 0px;
  }
}

.c-footer1__inner {
  position: relative;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 110px;
}

@media only screen and (max-width: 1199px) {
  .c-footer1__inner {
    padding-top: 40px;
    flex-direction: column-reverse;
    width: calc(100% - 40px);
    margin: 0 auto;
    align-items: center;
    padding-bottom: 40px;
  }
}

.c-footer1__item {
  width: 485px;
  height: 180px;
  border: 1px solid #666666;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .c-footer1__item {
    max-width: 335px;
    width: 100%;
    height: 120px;
  }
}

.c-footer1__item:hover {
  color: #ffffff;
  background-color: #666666;
  opacity: 1;
}

.c-footer1__item:hover:nth-child(1) p:nth-child(1) {
  border-bottom: 1px solid #ffffff;
}

.c-footer1__item:hover .c-footer1__item__mail {
  display: none;
}

.c-footer1__item:hover .c-footer1__item__mailhover {
  display: block;
  opacity: 1;
}

.c-footer1__item:nth-child(1) {
  margin-right: 115px;
}

@media only screen and (max-width: 1199px) {
  .c-footer1__item:nth-child(1) {
    margin-right: 0px;
  }
}

.c-footer1__item:nth-child(1):before {
  content: "";
  position: absolute;
  right: -58px;
  width: 1px;
  height: 240px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #666666;
}

@media only screen and (max-width: 1199px) {
  .c-footer1__item:nth-child(1):before {
    display: none;
  }
}

.c-footer1__item:nth-child(1) p:nth-child(1) {
  font-size: 1.8rem;
  line-height: 1.75;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 500;
  border-bottom: 1px solid #666666;
  padding-bottom: 8px;
}

@media only screen and (max-width: 1199px) {
  .c-footer1__item:nth-child(1) p:nth-child(1) {
    font-size: 1.4rem;
  }
}

.c-footer1__item:nth-child(1) p:nth-child(2) {
  font-size: 4.8rem;
  line-height: 1.2;
  font-family: "Arial";
  font-weight: bold;
  padding-top: 10px;
}

@media only screen and (max-width: 1199px) {
  .c-footer1__item:nth-child(1) p:nth-child(2) {
    font-size: 3.3rem;
  }
}

.c-footer1__item:nth-child(1) p:nth-child(3) {
  font-size: 1.8rem;
  line-height: 1.75;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 500;
}

@media only screen and (max-width: 1199px) {
  .c-footer1__item:nth-child(1) p:nth-child(3) {
    font-size: 1.3rem;
  }
}

.c-footer1__item:nth-child(2) {
  flex-direction: row;
}

@media only screen and (max-width: 1199px) {
  .c-footer1__item:nth-child(2) {
    margin-bottom: 25px;
  }
}

.c-footer1__item__box {
  margin-right: 55px;
}

@media only screen and (max-width: 1199px) {
  .c-footer1__item__box {
    margin-right: 25px;
  }
}

.c-footer1__item__box p:nth-child(1) {
  font-size: 1.8rem;
  line-height: 1.75;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 500;
}

@media only screen and (max-width: 1199px) {
  .c-footer1__item__box p:nth-child(1) {
    font-size: 1.4rem;
  }
}

.c-footer1__item__box p:nth-child(2) {
  font-size: 1.8rem;
  line-height: 1.75;
  font-family: "Arial";
  font-weight: bold;
}

@media only screen and (max-width: 1199px) {
  .c-footer1__item__box p:nth-child(2) {
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 1199px) {
  .c-footer1__item > img {
    width: 60px;
  }
}

.c-footer1__item__mailhover {
  display: none;
}

.c-footer1__title {
  display: flex;
  justify-content: center;
  height: 120px;
  width: 100%;
}

@media only screen and (max-width: 1199px) {
  .c-footer1__title {
    height: 80px;
  }
}

.c-footer2 {
  background-color: #e6e6e6;
  padding: 50px 0px;
  color: #000;
}

@media only screen and (max-width: 1199px) {
  .c-footer2 {
    padding: 40px 0px;
  }
}

.c-footer2__inner {
  display: flex;
  flex-wrap: wrap;
}

.c-footer2__logo img{
  width: 120px;
}

.c-footer2__left {
  width: 30%;
}

@media only screen and (max-width: 1199px) {
  .c-footer2__left {
    width: 100%;
  }
}

.c-footer2__right {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media only screen and (max-width: 1199px) {
  .c-footer2__right {
    width: 100%;
    justify-content: flex-start;
    padding: 20px 20px 0px;
  }
}

@media only screen and (max-width: 1199px) {
  .c-footer2__logo {
    text-align: center;
  }
}

.c-footer2__logo p {
  font-size: 2.1rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.75;
  font-weight: 400;
  padding-top: 10px;
}

@media only screen and (max-width: 1199px) {
  .c-footer2__logo p {
    font-size: 1.6rem;
  }
}

.c-footer2__text {
  font-size: 1.7rem;
  line-height: 1.76470588235;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  padding-top: 15px;
}

@media only screen and (max-width: 1199px) {
  .c-footer2__text {
    padding: 15px 20px 0px;
    font-size: 1.6rem;
    text-align: center;
  }
}

@media only screen and (max-width: 1199px) {
  .c-footer2__link {
    width: 100%;
  }
}

.c-footer2__link li {
  font-size: 1.8rem;
  line-height: 1.94444444444;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

@media only screen and (max-width: 1199px) {
  .c-footer2__link li {
    font-size: 1.6rem;
  }
}

.c-footer2__link li a{
  position: relative;
  display: inline-block;
}

.c-footer2__link li a:hover{
  transform: translateY(-1px);
}

.c-footer2__link li a:after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border-bottom: 1px dotted #000;
  position: absolute;
  left: 0;
  bottom: 2px;
  opacity: 0;
  transition: 0.2s;
}

.c-footer2__link li a:hover:after{
  opacity: 1;
}

.c-footer2__link:nth-child(1) > ul {
  border-right: 1px solid #000;
  padding-right: 60px;
}

@media only screen and (max-width: 1199px) {
  .c-footer2__link:nth-child(1) > ul {
    padding-right: 0px;
    border-right: 0px;
  }
}

.c-footer2__link:nth-child(1) > ul ul {
  list-style: disc;
  padding-left: 25px;
}

.c-footer2__link:nth-child(2) > ul {
  padding-left: 60px;
  padding-right: 50px;
}

@media only screen and (max-width: 1199px) {
  .c-footer2__link:nth-child(2) > ul {
    padding-left: 0px;
    padding-right: 0px;
  }
}

/*------------------------------------------------------------
sidebar
------------------------------------------------------------*/
/* Breadcrumb
------------------------------------------------------------*/
.c-breadcrumb {
  padding-bottom: 80px;
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .c-breadcrumb {
    padding: 0px 20px 0px;
    padding-bottom: 40px;
  }
}

.c-breadcrumb--diff {
  padding-bottom: 0px;
}

.c-breadcrumb--diff:before {
  bottom: 0px;
}

.c-breadcrumb__inner {
  padding: 8px 0px 8px;
  color: #4d4d4d;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  font-family: "noto-sans-cjk-jp", sans-serif;
}

.c-breadcrumb__inner a {
  padding-right: 30px;
  cursor: pointer;
  position: relative;
  float: left;
  padding-top: 5px;
  line-height: 15px;
}

.c-breadcrumb__inner a img{
  width: 16px;
  height: 15px;
}

.c-breadcrumb__inner a:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 9px;
  background: url("../images/arrow-right.svg") no-repeat;
  background-size: cover;
  right: 10px;
  top: 10px;
}

.c-breadcrumb__inner a i {
  font-size: 1.5rem;
}

/* layout
------------------------------------------------------------*/
body {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.4rem;
  min-width: 320px;
  line-height: 1.5;
  overflow-x: hidden;
}

@media only screen and (max-width: 767px) {
  body {
    min-width: 320px;
  }
}

.l-container {
  width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 1199px) {
  .l-container {
    width: 100%;
  }
}
.l-container1 {
  width: 1000px;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
  .l-container1 {
    width: 100%;
  }
}
.l-container2 {
  width: 1120px;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
  .l-container2 {
    width: 100%;
  }
}
.c-mainvisual {
  padding: 150px 0px 0px;
  background: #fff;
}
@media only screen and (max-width: 1199px) {
  .c-mainvisual {
    padding: 60px 0 0;
  }
}
.c-mainvisual--subpage {
  padding-top: 150px;
  height: 430px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .c-mainvisual--subpage {
    padding-top: 60px;
    height: 280px;
    margin-top: 0;
  }
}
.c-mainvisual--subpage:before{
  content: "";
  position: absolute;
  height: 280px;
  background: #f2f2f2;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 0;
}
.c-mainvisual--recruit{
  height: 550px;
  background: transparent;
}
@media only screen and (max-width: 1199px) {
  .c-mainvisual--recruit{
    height: 280px;
  }
}
.c-mainvisual--recruit:before{
  background: #fff;
  bottom: 0px;
  height: 400px;
}
@media only screen and (max-width: 1199px) {
  .c-mainvisual--recruit:before{
	height: 280px;
  }
}
.c-mainvisual--recruit:after{
  content:"";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url('../images/mainvisual-recruit.png') bottom center no-repeat;
  width: 100%;
  height: 100%;
  z-index: 0;
}
@media only screen and (max-width: 1199px) {
  .c-mainvisual__title {
    padding: 0 20px;
  }
}
.c-mainvisual > img {
  width: 100%;
}

.c-mainvisual__pc {
  display: block;
}

@media only screen and (max-width: 1199px) {
  .c-mainvisual__pc {
    display: none;
  }
}

.c-mainvisual__sp {
  display: none;
}

@media only screen and (max-width: 1199px) {
  .c-mainvisual__sp {
    display: block;
  }
}

.c-mainvisual__inner {
  padding: 0px 0px 69px;
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Component .c-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
btn
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-btn1 {
  background-color: #000;
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1.5;
  font-family: "Arial", sans-serif;
  width: 200px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 20px;
  transition: all 1s cubic-bezier(0.48, 0.44, 0.15, 1.01);
}

@media only screen and (max-width: 1199px) {
  .c-btn1 {
    font-size: 1.6rem;
  }
}

.c-btn1:hover {
  opacity: 1;
  background-color: #ffffff;
  color: #000;
  border: 1px solid #000;
  box-sizing: border-box;
}
.c-btn2{
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  height: 84px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.75;
  font-weight: 500;
  margin-top: 30px;
  box-sizing: border-box;
}
@media only screen and (max-width: 1199px) {
  .c-btn2{
    height: 65px;
    margin-top: 20px;
    font-size: 1.6rem;
  }
}
.c-btn2:hover{
  background: #fff;
  color: #000;
  border: 1px solid #000;
  box-sizing: border-box;
}
.c-btn2:hover .c-textIn{
  transform: translateY(-100%);
}
.c-btn2 .c-textWrap{
  height: clamp(10px, 1.8rem, 18px);
}
@media only screen and (max-width: 1199px) {
  .c-btn2 .c-textWrap{
    height: clamp(10px, 1.6rem, 16px);
  }
}
.c-btn__top {
  position: fixed;
  bottom: 145px;
  right: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 3px;
  z-index: 1000;
  color: #ffffff;
  font-size: 2rem;
}

.c-btn__top:hover {
  opacity: 1;
}

@media only screen and (max-width: 1199px) {
  .c-btn__top {
    bottom: 128px;
    width: 45px;
    height: 45px;
    right: 15px;
  }
}

/*------------------------------------------------------------
title
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-title1 h2 {
  font-size: 3.6rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}

@media only screen and (max-width: 1199px) {
  .c-title1 h2 {
    font-size: 2.6rem;
  }
}
.c-title1 p {
  font-size: 1.6rem;
  line-height: 1.875;
  font-family: "Arial";
  font-weight: bold;
  color: #333333;
}
.c-title1--1 p{
  padding-bottom: 10px;
}
.c-title2 h2{
  position: relative;
  margin-bottom: 15px;
  z-index: 100;
}
.c-title2 h2 span{
  display: block;
}
.c-title2 h2 span:first-child{
  font-size: 8rem;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: bold;
  line-height: 1.75;
  color: #fff;
}
@media only screen and (max-width: 1199px) {
  .c-title2 h2 span:first-child{
    font-size: 5rem;
  }
}
.c-title2 h2 span:last-child{
  position: absolute;
  left: 0;
  bottom: 5px;
  font-size: 3.6rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}
@media only screen and (max-width: 1199px) {
  .c-title2 h2 span:last-child{
    font-size: 2rem;
  }
}
.c-title2 p {
  font-size: 1.5rem;
  line-height: 1.86666666667;
  font-weight: 500;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
}

.c-title3 {
  border-bottom: 1px solid #000;
  padding-bottom: 17px;
}

.c-title3--1{
  border-bottom: none;
}
@media only screen and (max-width: 1199px) {
  .c-title3--1{
    border-bottom: 1px solid #000;
  }
}
.c-title3 h2 {
  font-size: 3.6rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}
@media only screen and (max-width: 1199px) {
  .c-title3 h2 {
    font-size: 2.6rem;
  }
}
.c-title3 p {
  font-size: 1.6rem;
  line-height: 1.875;
  font-family: "Arial";
  font-weight: bold;
  color: #000;
  padding-top: 5px;
}
.c-title4 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #ffffff;
  height: 55px;
  background-color: #333;
  line-height: 1.2;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding-left: 15px;
}

/*------------------------------------------------------------
icon
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
form
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
text
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
navi
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
img
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
list
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
table
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
line
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
video
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
video
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
post
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-post1 {
  position: relative;
}

.c-post1:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 50%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (max-width: 1199px) {
  .c-post1:after {
    display: none;
  }
}

.c-post1--1:after {
  background: url(../images/top1_image1.jpg) no-repeat bottom 0px right 80px;
}

.c-post1--2:after {
  background: url(../images/top1_image3.jpg) no-repeat bottom 0px left 80px;
  right: 0;
  left: auto;
  height: calc(100% - 100px);
}

.c-post1--2 .c-post1__color {
  left: 80px;
  right: auto;
  top: 170px;
}

.c-post1--2 .c-post1__color--diff {
  top: 15px;
  left: 0;
}

.c-post1--3:after {
  background: url(../images/top1_image2.jpg) no-repeat bottom 0px right 80px;
}

.c-post1--4:after {
  background: url(../images/top3_image1.jpg) no-repeat bottom 0px right 80px;
}

.c-post1 + .c-post1 {
  margin-top: 50px;
}

@media only screen and (max-width: 1199px) {
  .c-post1 + .c-post1 {
    margin-top: 40px;
  }
}

.c-post1__inner {
  display: flex;
  flex-wrap: wrap;
}

.c-post1--diff {
  padding: 50px 0px;
}

@media only screen and (max-width: 1199px) {
  .c-post1--diff {
    padding: 0 0 40px;
  }
}

.c-post1--diff:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #f2f2f2;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
}

.c-post1--diff .c-post1__inner {
  flex-direction: column-reverse;
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .c-post1--diff .c-post1__inner {
    flex-direction: unset;
  }
}

.c-post1__left {
  width: 50%;
}

@media only screen and (max-width: 1199px) {
  .c-post1__left {
    width: 100%;
  }
}

.c-post1__left img {
  display: none;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 1199px) {
  .c-post1__left img {
    display: block;
  }
}

.c-post1__right {
  width: 50%;
}

@media only screen and (max-width: 1199px) {
  .c-post1__right {
    width: 100%;
  }
}

.c-post1__box {
  padding-top: 10px;
}

@media only screen and (max-width: 1199px) {
  .c-post1__box {
    padding: 15px 20px 0px;
  }
}

.c-post1__text {
  font-size: 1.6rem;
  line-height: 1.875;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #333333;
  padding-top: 72px;
}

@media only screen and (max-width: 1199px) {
  .c-post1__text {
    padding-top: 40px;
  }
}

.c-post1__text p + p {
  padding-top: 30px;
}

@media only screen and (max-width: 1199px) {
  .c-post1__text p + p {
    padding-top: 20px;
  }
}

.c-post1__color {
  width: calc(50% - 80px);
  height: 1px;
  display: flex;
  position: absolute;
  right: 80px;
  top: 120px;
}

@media only screen and (max-width: 1199px) {
  .c-post1__color {
    display: none;
  }
}

.c-post1__color--diff {
  display: none;
}

@media only screen and (max-width: 1199px) {
  .c-post1__color--diff {
    display: flex;
    position: relative;
    width: 100%;
    top: 12px;
    right: auto;
  }
}

.c-post1__color span {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.c-post1__color span:before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: #808080;
}

.c-post1__color.is-active span:before {
  animation: color_anime1 1s cubic-bezier(0.48, 0.44, 0.15, 1.01);
  width: 100%;
}

.c-post1__btn {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  padding-top: 68px;
}

@media only screen and (max-width: 1199px) {
  .c-post1__btn {
    padding-top: 35px;
    justify-content: center;
  }
}

.c-post2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #000;
  padding-top: 14px;
  padding-bottom: 14px;
}

.c-post2:nth-child(1) {
  border-top: 1px solid #000;
}

.c-post2__date {
  font-size: 1.6rem;
  line-height: 1.75;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  padding: 0px 15px;
}

@media only screen and (max-width: 1199px) {
  .c-post2__date {
    padding: 0px 20px;
  }
}

.c-post2__cat {
  font-size: 1.2rem;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  color: #ffffff;
  margin: 0 15px;
  padding: 4px 0px;
  width: 100px;
  text-align: center;
  background: #000;
}

@media only screen and (max-width: 1199px) {
  .c-post2__cat {
    margin: 0px;
    padding: 0px;
  }
}

.c-post2__title {
  font-size: 1.6rem;
  line-height: 1.875;
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  padding-left: 25px;
}

@media only screen and (max-width: 1199px) {
  .c-post2__title {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
  }
}

.c-post2__title:hover {
  text-decoration: underline;
  opacity: 1;
}

@keyframes color_anime1 {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.c-post3 {
  margin-bottom: 60px;
}
.c-post3:last-child {
  margin-bottom: 0;
}
.c-post3__cnt > a {
  font-size: 2.4rem;
  line-height: 1.25;
  color: #333333;
  font-weight: 600;
  margin-bottom: 12px;
  height: 35px;
  overflow: hidden;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-family: "noto-sans-cjk-jp", sans-serif;
}
.c-post3__text {
  font-size: 1.6rem;
  line-height: 1.75;
  color: #333333;
  margin-bottom: 31px;
  padding-top: 20px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-family: "noto-sans-cjk-jp", sans-serif;
  border-top: 1px solid #000;
}
.c-post3__box {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  background-color: #333;
  height: 40px;
}
.c-post3__date {
  font-size: 1.4rem;
  line-height: 2;
  font-family: "Arial";
  padding-left: 20px;
  padding-right: 35px;
  position: relative;
  color: #ffffff;
  display: flex;
  align-items: center;
}
/*------------------------------------------------------------
other
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-tabs1 {
  display: flex;
  height: 100%;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #000;
}

.c-tabs1 li {
  width: 25%;
  height: 100%;
  cursor: pointer;
  text-align: center;
  color: #000;
  font-size: 1.8rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  padding: 6px 0px 7px;
  background: transparent;
  border-right: 1px solid #000;
}

@media only screen and (max-width: 1199px) {
  .c-tabs1 li {
    font-size: 1.2rem;
    line-height: 2;
    padding: 7px 0px;
  }
}

.c-tabs1 li.is-active{
  background: #000;
  color: #fff;
}

.c-tabs1 li:last-child{
  border-right: none;
}

.c-tabs1 li span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #ffffff;
  font-family: "Arial";
  font-size: 2rem;
  line-height: 1.4;
}

@media only screen and (max-width: 1199px) {
  .c-tabs1 li span {
    font-size: 1.2rem;
  }
}

.c-copyright {
  text-align: center;
  color: #000;
  padding-top: 35px;
}

@media only screen and (max-width: 1199px) {
  .c-copyright {
    padding-top: 30px;
  }
}

.c-copyright h3 {
  font-size: 3rem;
  line-height: 0.8;
  font-family: "Arial";
}

@media only screen and (max-width: 1199px) {
  .c-copyright h3 {
    font-size: 2rem;
  }
}

.c-copyright p {
  font-size: 1.6rem;
  line-height: 2.1875;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding-bottom: 20px;
  padding-top: 10px;
}

@media only screen and (max-width: 1199px) {
  .c-copyright p {
    font-size: 1.4rem;
  }
}

.is-overlay {
  position: fixed;
  z-index: 998;
  background: #000;
  opacity: 0;
  display: none;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.is-overlay.navOpen {
  display: block;
  opacity: 0.4;
  animation-duration: 0.5s;
  animation-name: ovarlayed;
  -moz-animation-duration: 0.5s;
  -moz-animation-name: ovarlayed;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-name: ovarlayed;
}

@keyframes ovarlayed {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 0.4;
  }
}

.js-effect02 {
  opacity: 0;
  transform: translate(0, 100px);
}

.is-effect02 {
  opacity: 1;
  transform: translate(0, 0);
}

.is-transition {
  transition: opacity 1.2s 
  cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s, visibility 1.2s 
  cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s, transform 1.2s 
  cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s, -webkit-transform 1.2s 
  cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Project .p-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
Css of home page
------------------------------------------------------------*/
body.home:before{
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: -1;
}
body.home.bg-show:before {
  background: url("../images/top-bg.svg") center top / cover no-repeat;
}
.p-top__wrap {
  position: relative;
}
.p-top1 {
  padding: 95px 0px 100px;
}

@media only screen and (max-width: 1199px) {
  .p-top1 {
    padding: 40px 0px;
  }
}

.p-top2 {
  background-color: #f2f2f2;
  padding: 100px 0px 75px;
}

@media only screen and (max-width: 1199px) {
  .p-top2 {
    padding: 40px 0px;
  }
}

.p-top2__box {
  display: flex;
  flex-wrap: wrap;
}

.p-top2__title {
  width: 33.33333%;
  font-size: 4rem;
  font-family: "Arial";
  line-height: 1;
  font-weight: 600;
  color: #000000;
}

@media only screen and (max-width: 1199px) {
  .p-top2__title {
    width: 100%;
    text-align: center;
    font-size: 3.2rem;
  }
}

.p-top2__tabs {
  display: flex;
  justify-content: flex-end;
  width: calc(100% - 33.33333%);
}

@media only screen and (max-width: 1199px) {
  .p-top2__tabs {
    margin-top: 30px;
    height: 40px;
    width: 100%;
  }
}

.p-top2__cnt {
  padding-top: 55px;
}

@media only screen and (max-width: 1199px) {
  .p-top2__cnt {
    padding-top: 40px;
  }
}

.p-top2__btn {
  padding-top: 50px;
  display: flex;
  justify-content: flex-end;
}

@media only screen and (max-width: 1199px) {
  .p-top2__btn {
    padding: 40px 20px 0px;
    justify-content: center;
  }
}

.p-top3 {
  padding: 100px 0px 146px;
}

@media only screen and (max-width: 1199px) {
  .p-top3 {
    padding: 40px 0px;
  }
}
.p-top4{
  background: #f2f2f2;
  padding: 95px 0 120px;
}
@media only screen and (max-width: 1199px) {
  .p-top4{
    padding: 40px 20px 40px;
  }
}
.p-top4__inner{
  display: flex;
  flex-wrap: wrap;
}
.p-top4__left{
  width: 650px;
  margin-right: 50px;
}
@media only screen and (max-width: 1199px) {
  .p-top4__left{
    width: 100%;
    margin-right: 0px;
    padding-top: 0px;
  }
}
.p-top4__text{
  font-size: 1.6rem;
  line-height: 1.875;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  padding-top: 55px;
}
@media only screen and (max-width: 1199px) {
  .p-top4__text{
    padding-top: 30px;
  }
}
.p-top4__txt + .p-top4__txt{
  margin-top: 30px;
}
.p-top4__txt h3{
  font-size: 1.8rem;
  line-height: 1.66666666667;
  padding-bottom: 5px;
}
.p-top4__txt p{
  font-size: 1.6rem;
  line-height: 1.875;
}
.p-top4__right{
  width: calc(100% - 700px);
}
@media only screen and (max-width: 1199px) {
  .p-top4__right{
    width: 100%;
	padding-top: 30px;
  }
}
.p-top4__right > p{
	font-size: 1.6rem;
    line-height: 1.875;
    font-family: "Arial";
    font-weight: bold;
    color: #333333;
	padding-bottom: 5px;
}
.p-top4__image img{
  width: 100%;
}
@keyframes fadeIn{
  0%{
    opacity: 0;
    transform: translateY(10px);
  }
  100%{
    opacity: 1;
    transform: translateY(0);
  }
}

/*------------------------------------------------------------
Css of home page
------------------------------------------------------------*/
.p-about {
  line-height: 2;
}

/*------------------------------------------------------------
Css of profile page
------------------------------------------------------------*/
.p-profile1 {
  position: relative;
  padding-top: 35px;
}
@media only screen and (max-width: 1199px) {
  .p-profile1 {
    padding-top: 25px;
  }
}
.p-profile1:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 400px;
  top: 236px;
  left: 0;
  background: #c8ced3;
  z-index: 0;
}
@media only screen and (max-width: 1199px) {
  .p-profile1:before{
    display: none;
  }
}
.p-profile1:after{
  content: "";
  position: absolute;
  width: 645px;
  height: 990px;
  top: 35px;
  left: calc(50% - 535px);
  background: #fff;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .p-profile1:after{
    display: none;
  }
}
.p-profile1__inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}

.p-profile1__inner:before{
  content: "";
  position: absolute;
  left: 0px;
  top: 123px;
  background-color: #000;
  height: 1px;
  width: 100%;
}
@media only screen and (max-width: 1199px) {
  .p-profile1__inner:before{
    display: none;
  }
}

.p-profile1__cnt {
  display: flex;
  flex-wrap: wrap;
}

.p-profile1__left {
  width: 575px;
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  background: #fff;
  padding-top: 20px;
  padding-bottom: 50px;
}

@media only screen and (max-width: 1199px) {
  .p-profile1__left {
    width: 100%;
    padding: 0 20px 30px;
  }
}

.p-profile1__text{
  padding-top: 75px;
}
@media only screen and (max-width: 1199px) {
  .p-profile1__text{
    padding-top: 35px;
  }
}

.p-profile1__text p + p {
  padding-top: 30px;
}

@media only screen and (max-width: 1199px) {
  .p-profile1__text p + p {
    padding-top: 15px;
  }
}

.p-profile1__left__img {
  text-align: right;
  padding-top: 35px;
}

@media only screen and (max-width: 1199px) {
  .p-profile1__left__img {
    padding-top: 30px;
  }
}

.p-profile1__right {
  width: 450px;
  text-align: right;
  padding-left: 65px;
}

@media only screen and (max-width: 1199px) {
  .p-profile1__right {
    width: 100%;
    text-align: left;
    margin-top: 45px;
    padding: 0 20px;
    height: 300px;
    background: #c8ced3;
  }
}

.p-profile1__right img {
  width: 100%;
  display: none;
}

@media only screen and (max-width: 1199px) {
  .p-profile1__right img {
    display: block;
  }
}

.p-profile1__color {
  height: 15px;
  display: flex;
  position: absolute;
  right: 0px;
  top: 0px;
  width: 100%;
}

.p-profile1__color span {
  height: 15px;
  display: block;
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .p-profile1__color span {
    height: 10px;
  }
}

.p-profile1__color span:before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
}

.p-profile1__color span:nth-child(1) {
  width: 57.9166666667%;
}

@media only screen and (max-width: 1199px) {
  .p-profile1__color span:nth-child(1) {
    width: 53.9772727273%;
  }
}

.p-profile1__color span:nth-child(1):before {
  background-color: #f2f2f2;
}

.p-profile1__color span:nth-child(2) {
  width: 14.0277777778%;
}

@media only screen and (max-width: 1199px) {
  .p-profile1__color span:nth-child(2) {
    width: 15.3409090909%;
  }
}

.p-profile1__color span:nth-child(2):before {
  background-color: #5d93b5;
}

.p-profile1__color span:nth-child(3) {
  width: 14.0277777778%;
}

@media only screen and (max-width: 1199px) {
  .p-profile1__color span:nth-child(3) {
    width: 15.3409090909%;
  }
}

.p-profile1__color span:nth-child(3):before {
  background-color: #4e155a;
}

.p-profile1__color span:nth-child(4) {
  width: 14.0277777778%;
}

@media only screen and (max-width: 1199px) {
  .p-profile1__color span:nth-child(4) {
    width: 15.3409090909%;
  }
}

.p-profile1__color span:nth-child(4):before {
  background-color: #162c83;
}

.p-profile1__color.is-active span:before {
  animation: color_anime1 0.5s linear;
  width: 100%;
}

.p-profile2 {
  padding-top: 70px;
  position: relative;
  z-index: 100;
}

@media only screen and (max-width: 1199px) {
  .p-profile2 {
    padding: 45px 20px 0px;
  }
}

.p-profile2__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.p-profile2__cnt {
  padding-top: 50px;
}

@media only screen and (max-width: 1199px) {
  .p-profile2__cnt {
    padding-top: 35px;
  }
}

.p-profile2__cnt dl {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #000;
}

.p-profile2__cnt dl dt, .p-profile2__cnt dl dd {
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #000;
}

.p-profile2__cnt dl dt {
  width: 150px;
  position: relative;
  z-index: 100;
  padding: 18px 0px 18px 40px;
  border-right: 1px solid #000;
}

@media only screen and (max-width: 1199px) {
  .p-profile2__cnt dl dt {
    padding: 13px 0px 13px 20px;
  }
}

.p-profile2__cnt dl dd {
  width: calc(100% - 150px);
  padding: 18px 0px 18px 40px;
}

@media only screen and (max-width: 1199px) {
  .p-profile2__cnt dl dd {
    padding: 13px 0px 13px 20px;
  }
}

.p-profile2__cnt dl:last-child {
  border-bottom: 1px solid #000;
}

.p-profile3 {
  padding-top: 90px;
  padding-bottom: 110px;
}

@media only screen and (max-width: 1199px) {
  .p-profile3 {
    padding: 45px 20px 45px;
  }
}

.p-profile3__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.p-profile3__cnt {
  padding-top: 50px;
}

@media only screen and (max-width: 1199px) {
  .p-profile3__cnt {
    padding-top: 35px;
  }
}
.p-profile3__map {
  padding-top: 50%;
  position: relative;
}
.p-profile3__map iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-profile3__text {
  display: flex;
  flex-wrap: wrap;
}

.p-profile3__text + .p-profile3__text {
  margin-top: 10px;
}

@media only screen and (max-width: 1199px) {
  .p-profile3__text + .p-profile3__text {
    margin-top: 15px;
  }
}

.p-profile3__route {
  font-size: 1.4rem;
  line-height: 2.14285714286;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  display: flex;
  font-weight: 400;
}

.p-profile3__route span {
  width: 80px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.p-profile3__route span + span {
  margin-left: 10px;
}

.p-profile3__route--color1 {
  background-color: #339cc1;
  color: #ffffff;
}

.p-profile3__route--color2 {
  background-color: #a8a8a0;
}

.p-profile3__route--color3 {
  background-color: #ea8d00;
}

.p-profile3__route--color4 {
  background-color: #8e77d9;
}

.p-profile3__box {
  padding-top: 20px;
}

.p-profile3__txt {
  font-size: 1.6rem;
  line-height: 1.875;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  margin-left: 20px;
  font-weight: 400;
}

@media only screen and (max-width: 1199px) {
  .p-profile3__txt {
    margin-left: 0px;
    padding-top: 5px;
  }
}

/*------------------------------------------------------------
Css of policy page
------------------------------------------------------------*/
.p-policy1 {
  position: relative;
}

.p-policy1__text {
  font-size: 1.6rem;
  line-height: 1.75;
  color: #000;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
}

.p-policy1__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 85px 0px 160px;
}

@media only screen and (max-width: 1199px) {
  .p-policy1__inner {
    padding: 45px 20px 80px;
  }
}

.p-policy1__item h2 {
  font-size: 1.8rem;
  line-height: 1.55555555556;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  padding-bottom: 20px;
}

.p-policy1__item p {
  font-size: 1.6rem;
  line-height: 1.75;
  color: #000;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
}

.p-policy1__item + .p-policy1__item {
  padding-top: 30px;
}

.p-policy1__item ol {
  counter-reset: section1;
  list-style-type: none;
  padding-top: 25px;
}

.p-policy1__item ol li {
  counter-increment: section1;
  position: relative;
  padding-left: 30px;
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}

.p-policy1__item ol li:before {
  content: "(" counter(section1) ") ";
  position: absolute;
  left: 0;
}

.p-policy1__item .p-policy1__item__number {
  counter-reset: section1;
  list-style-type: none;
}

.p-policy1__item .p-policy1__item__number li {
  counter-increment: section1;
  position: relative;
  padding-left: 20px;
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}

.p-policy1__item .p-policy1__item__number li:before {
  content: counter(section1) ") ";
  position: absolute;
  left: 0;
}

.p-policy1__item__text {
  padding-top: 25px;
}

.p-policy1__cnt {
  padding-top: 30px;
}

/* Contact page */
.p-contact1__inner{
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 0px 180px;
  font-family: "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 1199px) {
  .p-contact1__inner{
    padding: 50px 20px 90px;
  }
}
.p-contact1__inner h2{
  font-size: 2.4rem;
  line-height: 1.75;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 500;
  color: #000;
}
@media only screen and (max-width: 1199px) {
  .p-contact1__inner h2{
    font-size: 2rem;
  }
}
.p-contact1__form{
  padding-top: 70px;
}
@media only screen and (max-width: 1199px) {
  .p-contact1__form{
    padding-top: 35px;
  }
}
.p-contact1__form dl{
  display: flex;
  flex-wrap: wrap;
}
.p-contact1__form dl + dl{
  margin-top: 40px;
}
@media only screen and (max-width: 1199px) {
  .p-contact1__form dl + dl{
    margin-top: 20px;
  }
}
.p-contact1__form dl dt{
  width: 260px;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #4d4d4d;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .p-contact1__form dl dt{
    width: 100%;
    font-size: 1.4rem;
    padding-bottom: 5px;
  }
}
.p-contact1__form dl dt span{
  color: #ea5614;
}
.p-contact1__form dl dd{
  width: calc(100% - 260px);
}
@media only screen and (max-width: 1199px) {
  .p-contact1__form dl dd{
    width: 100%;
  }
}
.p-contact1__form dl dd input[type="text"], .p-contact1__form dl dd input[type="email"]{
  width: 100%;
  height: 50px;
  background: #f2efef;
  padding: 15px;
  border: 1px solid #b3b3b3;
  box-sizing: border-box;
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 1199px) {
  .p-contact1__form dl dd input[type="text"], .p-contact1__form dl dd input[type="email"]{
    font-size: 1.4rem;
  }
}
.p-contact1__form dl dd textarea{
  width: 100%;
  background: #f2efef;
  padding: 10px 15px;
  border: 1px solid #d6d6d6;
  height: 400px;
  box-sizing: border-box;
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 1199px) {
  .p-contact1__form dl dd textarea{
    font-size: 1.4rem;
    height: 200px;
  }
}
.p-contact1__form dl:nth-child(6) dt{
  align-items: flex-start;
  padding-top: 15px;
}
@media only screen and (max-width: 1199px) {
  .p-contact1__form dl:nth-child(6) dt{
    padding-top: 0;
  }
}
.p-contact1__submit{
  margin-top: 35px;
  border-top: 1px solid #000;
  display: flex;
  justify-content: center;
  padding-top: 60px;
}
@media only screen and (max-width: 1199px) {
  .p-contact1__submit{
    padding-top: 35px;
  }
}
.p-contact1__submit p{
  position: relative;
}
.p-contact1__submit input[type="submit"]{
  width: 200px;
  height: 60px;
  background: #000;
  color: #fff;
  font-size: 1.8rem;
  line-height: 2.36111111111;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}
@media only screen and (max-width: 1199px) {
  .p-contact1__submit input[type="submit"]{
    font-size: 1.6rem;
  }
}
.p-contact1__thanks {
  font-size: 1.6rem;
  font-family: "メイリオ", sans-serif;
  line-height: 1.75;
  width: 100%;
  margin: 70px auto 0;
}
@media only screen and (max-width: 1024px) {
  .p-contact1__thanks {
	font-size: 1.4rem;
    margin: 40px auto 0px;
  }
}
/* News */
.p-news1{
  padding-top: 60px;
}
@media only screen and (max-width: 1199px) {
  .p-news1{
    padding-top: 40px;
  }
}
.p-news1__title {
  font-size: 3.4rem;
  line-height: 1.25;
  color: #000000;
  font-weight: 600;
  margin-bottom: 12px;
  overflow: hidden;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  height: 45px;
  font-family: "noto-sans-cjk-jp", sans-serif;
}
@media only screen and (max-width: 767px) {
  .p-news1__title {
    height: auto;
    -webkit-line-clamp: inherit;
  }
}
.p-news1__cnt {
  font-size: 1.6rem;
  line-height: 1.75;
  color: #4d4d4d;
  margin-bottom: 55px;
  padding-top: 45px;
  font-family: "noto-sans-cjk-jp", sans-serif;
  border-top: 1px solid #000;
}
.p-news1__cnt p + p{
  padding-top: 30px;
}
.p-news1__box {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  background-color: #333333;
  height: 50px;
}
.p-news1__date {
  font-size: 1.6rem;
  line-height: 2;
  font-family: "Arial";
  padding-left: 20px;
  padding-right: 35px;
  position: relative;
  color: #ffffff;
  display: flex;
  align-items: center;
}
.p-news1__notfound{
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
}
.archive_wrap{
  position: relative;
  padding-bottom: 115px;
}
@media only screen and (max-width: 1220px){
  .archive_wrap{
    padding: 0px 20px 60px;
  }
}
.archive_inner {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.archive_main {
  width: 750px;
  margin-right: 70px;
}
@media only screen and (max-width: 1500px){
  .archive_main {
    margin-right: 5%;
    width: 65%;
  }
}
@media only screen and (max-width: 1220px){
  .archive_main {
    margin-right: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 1199px){
  .archive_main {
    margin-right: 0;
    width: 100%;
  }
}
.archive_side{
  width: 300px;
}
@media screen and (max-width: 1500px) {
  .archive_side{
    width: 30%;
  }
}
@media screen and (max-width: 1220px) {
  .archive_side{
      width: 100%;
  }
}
/* Recruit */
.p-recruit1{
  padding: 75px 0px 195px;
}
@media only screen and (max-width: 1199px){
  .p-recruit1{
    padding: 50px 20px 90px;
  }
}
.p-recruit1__cnt{
  padding-top: 40px;
}
.p-recruit1__cnt h3{
  font-size: 2.4rem;
  line-height: 1.75;
  color: #000;
}
@media only screen and (max-width: 1199px){
  .p-recruit1__cnt h3{
    font-size: 2rem;
  }
}
.p-recruit1__btn{
  padding-top: 100px;
}
@media only screen and (max-width: 1199px){
  .p-recruit1__btn{
    padding-top: 50px;
  }
}
.p-recruit1__btn > p{
  font-size: 2.1rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  text-align: center;
  color: #000;
}
@media only screen and (max-width: 1199px){
  .p-recruit1__btn > p{
    font-size: 1.8rem;
  }
}
/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Utility .u-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
.c-textWrap{
  display: block;
  overflow: hidden;
  line-height: 1.1;
}
.c-btn__link.c-textWrap{
  height: clamp(13px, 2.5rem, 28px);
}
.c-textIn{
  display: block;
  transition: transform .4s cubic-bezier(.5, 1, .89, 1);
  will-change: transform;
}
.c-btn__link:hover .c-textIn{
  transform: translateY(-100%);
}
.c-btn1:hover .c-textIn{
  transform: translateY(-100%);
}
.c-btn1 .c-textWrap{
  height: clamp(10px, 1.6rem, 16px);
}
.c-contact{
  padding: 50px 0px;
  background: #fff;
}
@media only screen and (max-width: 1199px) {
  .c-contact{
    padding: 25px 0px;
  }
}
.c-contact__inner{
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1199px) {
  .c-contact__inner{
    padding: 0 20px;
  }
}
.c-contact__left{
  width: 400px;
  font-size: 2.4rem;
  line-height: 1.75;
  color: #000;
  display: flex;
  align-items: center;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 500;
}
@media only screen and (max-width: 1199px) {
  .c-contact__left{
    width: 100%;
    font-size: 2rem;
  }
}
.c-contact__right{
  width: calc(100% - 400px);
}
@media only screen and (max-width: 1199px) {
  .c-contact__right{
    width: 100%;
    padding-top: 20px;
  }
}
.c-contact__box{
  width: 100%;
  border: 1px solid #000;
  border-radius : 4px;
  -moz-border-radius : 4px;
  -webkit-border-radius : 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0px;
}
@media only screen and (max-width: 1199px) {
  .c-contact__box{
    padding: 20px 0px;
  }
}
.c-contact__box > p{
  font-size: 1.8rem;
  line-height: 1.75;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 500;
  color: #000;
}
@media only screen and (max-width: 1199px) {
  .c-contact__box > p{
    font-size: 1.6rem;
  }
}
.c-contact__phone{
  display: flex;
  align-items: center;
  font-size: 4.8rem;
  line-height: 1.2;
  font-weight: bold;
  font-family: "Arial", sans-serif;
  color: #000;
}
@media only screen and (max-width: 1199px) {
  .c-contact__phone{
    font-size: 3.6rem;
  }
}
.c-contact__phone img{
  width: 40px;
  height: 40px;
  margin-right: 20px;
}
@media only screen and (max-width: 1199px) {
  .c-contact__phone img{
    width: 30px;
    height: 30px;
    margin-right: 15px;
  }
}
.wpcf7-spinner{
  position: absolute;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  bottom: -40px;
}
.c-widget form {
  margin-bottom: 50px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}
.c-widget form input[type="search"] {
  width: 100%;
  border: none;
  background: #f2f2f2;
  height: 40px;
  padding: 0px 10px;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  padding-right: 40px;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.c-widget__cnt ul {
  padding: 10px 15px 25px;
}
.c-widget__cnt ul li a {
  font-size: 1.6rem;
  line-height: 1.8;
  padding: 5px 0px;
  display: block;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  .c-widget__cnt ul li a {
    font-size: 1.8rem;
  }
}
.c-widget__cnt ul li a:hover {
  text-decoration: none;
}
.c-widget--modify1 {
  margin-bottom: 60px;
}
.c-widget--modify2 .c-widget__cnt ul {
  padding: 0;
}
.c-widget--modify2 .c-widget__cnt ul li a {
  padding: 10px 18px;
  border-top: none;
  border-right: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  display: block;
}
.c-widget--modify2 .c-widget__cnt ul li:nth-child(1) a {
  border-top: 1px solid #dddddd;
}
.c-form__search {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0px;
  top: 0px;
  background-color: #222222;
  overflow: hidden;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.c-form__search input[type="submit"] {
  border: 0;
  background: url(../images/ico-search.png) no-repeat;
  text-indent: 40px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.c-pagination{
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .c-pagination{
    margin-bottom: 50px;
  }
}
.c-pagination a, .c-pagination a:hover, .c-pagination span{
  font-size: 1.7rem;
  line-height: 1.0588;
  color: #4d4d4d;
  padding: 15px 18px;
}
.c-pagination .current{
  background-color: #333333;
  color: #fff;
}
.c-pages {
  width: 100%;
  margin-top: 50px;
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  font-family: "Arial", serif;
  font-weight: 500;
  color: #534741;
}
.c-pages li span{
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333333;
}
.c-pages li.prev_link span{
  margin-right: 15px;
}
.c-pages li.next_link span{
  margin-left: 15px;
}
.c-pages li a {
  color: #333;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance:none;
}
.c-list1{
  padding-top: 25px;
  font-family: "Noto Sans JP", sans-serif;
}
.c-list1__item{
  border: 1px solid #000;
  background: #fff;
}
.c-list1__item + .c-list1__item{
  margin-top: 20px;
}
.c-list1__item__btn{
  height: 120px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 40px;
  cursor: pointer;
}
@media only screen and (max-width: 1199px) {
  .c-list1__item__btn{
    height: 80px;
    padding: 0 20px;
  }
}
.c-list1__item__btn:before{
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  background: url('../images/ico-plus.svg') no-repeat;
  transition: 0.3s ease-in-out;
  opacity: 1;
}
@media only screen and (max-width: 1199px) {
  .c-list1__item__btn:before{
    width: 15px;
    height: 15px;
    right: 20px;
  }
}
.c-list1__item.is-active .c-list1__item__btn:before{
  opacity: 0;
}
.c-list1__item__btn:after{
  content: "";
  position: absolute;
  width: 20px;
  height: 3.5px;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  background: url('../images/ico-minus.svg') no-repeat;
  opacity: 0;
  transition: 0.3s ease-in-out;
}
@media only screen and (max-width: 1199px) {
  .c-list1__item__btn:after{
    width: 15px;
    height: 2.5px;
    right: 20px;
  }
}
.c-list1__item.is-active .c-list1__item__btn:after{
  opacity: 1;
}
.c-list1__item__btn span:first-child{
  font-size: 1.6rem;
  line-height: 1.75;
  background: #0071bc;
  color: #fff;
  font-weight: 400;
  padding: 0px 35px;
}
@media only screen and (max-width: 1199px) {
  .c-list1__item__btn span:first-child{
    font-size: 1.4rem;
    padding: 0px 25px;
  }
}
.c-list1__item__btn span:last-child{
  font-size: 2.1rem;
  line-height: 1.75;
  font-weight: 400;
  padding-left: 30px;
}
@media only screen and (max-width: 1199px) {
  .c-list1__item__btn span:last-child{
    font-size: 1.8rem;
    padding-left: 20px;
  }
}
.c-list1__item__cnt{
  display: none;
  padding: 0 40px 80px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .c-list1__item__cnt{
    padding: 0 20px 65px;
  }
}
.c-list1__text > p{
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.625;
  font-weight: bold;
}
@media only screen and (max-width: 1199px) {
  .c-list1__text > p{
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
}
.c-list1__text + .c-list1__text > p{
  margin-top: 40px;
}
@media only screen and (max-width: 1199px) {
  .c-list1__text + .c-list1__text > p{
    margin-top: 30px;
  }
}
.c-list1__text dl{
  display: flex;
  flex-wrap: wrap;
  line-height: 1.625;
  border-top: 1px solid #e6e6e6;
  color: #000;
}
.c-list1__text dl:last-child{
  border-bottom: 1px solid #e6e6e6;
}
.c-list1__text dl dt{
  width: 160px;
  font-weight: bold;
}
@media only screen and (max-width: 1199px) {
  .c-list1__text dl dt{
    width: 120px;
  }
}
.c-list1__text dl dd{
  width: calc(100% - 160px);
}
@media only screen and (max-width: 1199px) {
  .c-list1__text dl dd{
    width: calc(100% - 120px);
  }
}
.c-list1__text dl dt, .c-list1__text dl dd{
  font-size: 1.6rem;
  padding: 16px 0;
}
@media only screen and (max-width: 1199px) {
  .c-list1__text dl dt, .c-list1__text dl dd{
    font-size: 1.4rem;
    padding: 12px 0;
  }
}
.c-list1__item__close{
  display: flex;
  align-items: center;
  line-height: 1;
  border: 1px solid #000;
  position: absolute;
  bottom: -1px;
  right: -1px;
  cursor: pointer;
  width: 200px;
  height: 40px;
  padding: 0 15px 1px 15px;
}
@media only screen and (max-width: 1199px) {
  .c-list1__item__close{
    width: 150px;
  }
}
.c-list1__item__close:hover{
  color: #fff;
  background-color: #000;
}
.c-list1__item__close:after{
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 15px;
  height: 1px;
  transition: 0.3s;
  z-index: 1;
  background: #000;
  transition: 0.3s;
}
.c-list1__item__close:hover:after{
  background: #fff;
}
/* ========== LOADING ========== */
.loading {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading__logo svg{
  width: 264px;
  height: 30px;
  line-height: 0;
}
@media only screen and (max-width: 1199px) {
  .loading__logo svg{
    width: 226px;
    height: 16px;
  }
}

.loading__bg {
  position: absolute;
  inset: 0;
  background: #ffffff;
}

.loading__logo {
  position: relative;
  z-index: 1;
}

/* Logo reveal bằng clip-path từ trên xuống */
.loading__logo svg {
  display: block;
  max-width: 70vw;
  height: auto;
  clip-path: inset(100% 0 0 0);
  will-change: clip-path, opacity, transform;
}

/* ========== TRANSITION OVERLAY ========== */

.transition {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
}
.transition__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
  background-color: #262626;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
}
.transition__bg.move {
  -webkit-animation: pagesTransition 2.2s cubic-bezier(.86,.02,.1,.96) 1 running;
  animation: pagesTransition 2.2s cubic-bezier(.86,.02,.1,.96) 1 running
}
[data-barba="container"] {
  opacity: 0;
  transform: translate(0px, -50px);
  transition: opacity 1.5s cubic-bezier(.86,.02,.1,.96), transform 1.5s cubic-bezier(.86,.02,.1,.96);
}

[data-barba="container"].show {
  opacity: 1;
  transform: translate(0px, 0px);
}
@-webkit-keyframes pagesTransition {
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0)
  }

  46% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1)
  }

  54% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1)
  }

  100% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0)
  }
}

@keyframes pagesTransition {
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0)
  }

  46% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1)
  }

  54% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1)
  }

  100% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0)
  }
}
/*# sourceMappingURL=style.css.map */
