@charset "UTF-8";
/*============================
animation
============================*/
@-webkit-keyframes moveleft {
  40% {
    width: 100%;
  }
  100% {
    width: 100%;
    -webkit-transform: translate3d(111%, 0, 0);
            transform: translate3d(111%, 0, 0);
  }
}
@keyframes moveleft {
  40% {
    width: 100%;
  }
  100% {
    width: 100%;
    -webkit-transform: translate3d(111%, 0, 0);
            transform: translate3d(111%, 0, 0);
  }
}
@-webkit-keyframes moveBg {
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes moveBg {
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes moveright {
  40% {
    width: 100%;
  }
  100% {
    width: 100%;
    -webkit-transform: translate3d(-111%, 0, 0);
            transform: translate3d(-111%, 0, 0);
  }
}
@keyframes moveright {
  40% {
    width: 100%;
  }
  100% {
    width: 100%;
    -webkit-transform: translate3d(-111%, 0, 0);
            transform: translate3d(-111%, 0, 0);
  }
}
@-webkit-keyframes moveLayer {
  40% {
    width: 100%;
  }
  100% {
    width: 100%;
    -webkit-transform: translateX(111%);
            transform: translateX(111%);
  }
}
@keyframes moveLayer {
  40% {
    width: 100%;
  }
  100% {
    width: 100%;
    -webkit-transform: translateX(111%);
            transform: translateX(111%);
  }
}
@-webkit-keyframes fadein {
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeinblock {
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeinblock {
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
/*===========================
reset style
===========================*/
/* autoprefixer grid: autoplace */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

html, body {
  min-height: 100%;
}

body {
  text-align: center;
  letter-spacing: 1.2px;
  color: #333333;
  background: #ffffff;
  font-size: 16px;
  font-family: YakuHanJP, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
}
body.is-en {
  font-family: "Roboto", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  color: #333333;
  font-weight: normal;
}

p {
  color: #333333;
  font-size: 16px;
  line-height: 2.2em;
}

ul, ol, li {
  list-style: none;
  color: #333333;
}

a {
  text-decoration: none;
  color: #333333;
}
a:visited {
  text-decoration: none;
  color: #333333;
}
a:hover {
  text-decoration: none;
}

address {
  color: #333333;
  font-style: normal;
}

img {
  vertical-align: bottom;
  border: none;
}

dl, dt, dd {
  margin: 0;
  padding: 0;
  color: #333333;
}

main {
  display: block;
}

picture {
  display: block;
}

table, th, td {
  color: #333333;
}

header {
  display: block;
}

footer {
  display: block;
}

aside {
  display: block;
}

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

data {
  display: block;
}

time {
  display: block;
}

a[href^="tel:"] {
  cursor: default;
  pointer-events: none;
}

/*==========================
l-header
==========================*/
.l-header {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  background-color: #333333;
}
.l-header__inner {
  height: 100%;
  padding: 0 40px;
}
.l-header__doboz {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.l-header__dobozSplit:nth-of-type(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__logo {
  font-size: 10px;
}
.l-header__gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.l-header__gnavItem {
  margin-left: 20px;
}
.l-header__gnavItem:first-of-type {
  margin-left: 0;
}
.l-header__gnavLink {
  position: relative;
  font-family: "A1 Gothic R";
  text-decoration: none;
  color: #ffffff;
}
.l-header__gnavLink:visited {
  text-decoration: none;
  color: #ffffff;
}
.l-header__gnavLink:hover {
  text-decoration: none;
}
.l-header__gnavLink::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: -5px;
  left: 0;
  display: block;
  visibility: hidden;
  width: 100%;
  height: 1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  background-color: #64c0ab;
}
.l-header__gnavLink:hover::after {
  visibility: visible;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}
.l-header__tel {
  margin-left: 20px;
}
.l-header__telLink {
  font-size: 28px;
  text-decoration: none;
  color: #64c0ab;
  font-family: "Roboto", sans-serif;
}
.l-header__telLink:visited {
  text-decoration: none;
  color: #64c0ab;
}
.l-header__telLink:hover {
  text-decoration: none;
}
.l-header__telLink span {
  font-size: 14px;
  text-decoration: none;
  color: #ffffff;
}
.l-header__telLink span:visited {
  text-decoration: none;
  color: #ffffff;
}
.l-header__telLink span:hover {
  text-decoration: none;
}
.l-header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 20px;
  padding: 10px 20px;
  border-radius: 60px;
  background-color: #64c0ab;
}
.l-header__contact::before {
  content: "";
  display: block;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 1px;
  height: 20px;
  margin: 0 10px;
  background-color: #ffffff;
}
.l-header__contactLink {
  font-family: "A1 Gothic R";
  text-decoration: none;
  color: #ffffff;
}
.l-header__contactLink:visited {
  text-decoration: none;
  color: #ffffff;
}
.l-header__contactLink:hover {
  text-decoration: none;
}
.l-header__contactLink:nth-of-type(1) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.l-header__contactLink:nth-of-type(2) {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.l-header__hmb {
  display: none;
}
.l-header__drwNav {
  display: none;
}
.l-header__drwNavToggle {
  width: 46%;
  margin-bottom: 20px;
}
.l-header__drwNavToggle.has-menu {
  width: 100%;
}
.l-header__drwNavToggleHead {
  padding-bottom: 15px;
  text-align: left;
  border-bottom: 1px solid #cccccc;
}
.l-header__drwNavToggleHeadLink {
  text-decoration: none;
  color: #333333;
}
.l-header__drwNavToggleHeadLink:visited {
  text-decoration: none;
  color: #333333;
}
.l-header__drwNavToggleHeadLink:hover {
  text-decoration: none;
}
.l-header__drwNavToggleMainList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.l-header__drwNavToggleMainListItem {
  width: 44%;
  margin-top: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #cccccc;
}
.l-header__drwNavToggleMainListItem--adj {
  width: 26%;
}
.l-header__drwNavToggleMainListItem a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__drwNavToggleMainListItem span {
  padding-top: 6px;
  color: #64c0ab;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
}
.l-header__drwNavToggleMainListItem p {
  padding-left: 10px;
  text-align: left;
  color: #333333;
  line-height: 1.4;
  font-family: "A1 Gothic M";
}
.l-header__drwNavToggleMainListItem p span {
  color: #64c0ab;
}
.l-header-megamenu {
  position: fixed;
  z-index: -1;
  top: 60px;
  left: 0;
  visibility: hidden;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.l-header-megamenu::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  display: block;
  width: 100%;
  height: 30px;
}
.l-header-megamenu.is-active {
  z-index: 9999;
  visibility: visible;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}
.l-header-megamenu__item {
  position: absolute;
  visibility: hidden;
  width: 100%;
  max-width: 1134px;
  margin: 0 auto;
  padding: 40px 20px;
  opacity: 0;
}
.l-header-megamenu__item.is-active {
  position: static;
  visibility: visible;
  opacity: 1;
}
.l-header-megamenu__doboz {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 64px;
  border-radius: 10px;
  background-blend-mode: multiply;
  background-color: rgba(255, 255, 255, 0.8);
}
.l-header-megamenu__tit {
  margin-right: 120px;
  text-align: left;
  white-space: nowrap;
  font-size: 32px;
  font-family: "A1 Gothic M";
}
.l-header-megamenu__tit span {
  display: block;
  color: #64c0ab;
  font-size: 12px;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
}
.l-header-megamenu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}
.l-header-megamenu__listItem {
  width: 214px;
}
.l-header-megamenu__listImg {
  overflow: hidden;
  border-radius: 10px;
}
.l-header-megamenu__listTit {
  padding-top: 15px;
  text-align: left;
}
.l-header-megamenu__listTitSplit:nth-of-type(1) {
  font-size: 14px;
  font-family: "A1 Gothic M";
}
.l-header-megamenu__listTitSplit:nth-of-type(1) span {
  padding-right: 10px;
  color: #64c0ab;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
}
.l-header-megamenu__listTitSplit:nth-of-type(2) {
  color: #64c0ab;
  font-size: 14px;
  font-family: "A1 Gothic M";
}

/*==========================
l-footer
==========================*/
.l-footer {
  position: relative;
  padding: 80px 0 40px;
  background-blend-mode: multiply;
  background-color: rgba(51, 51, 51, 0.7);
  background-image: url(../img/global/footer/bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.l-footer__inner {
  width: 100%;
  max-width: 1134px;
  margin: 0 auto;
  padding: 0 20px;
}
.l-footer__doboz:nth-of-type(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.l-footer__doboz:nth-of-type(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 35px;
}
.l-footer__doboz:nth-of-type(2) .l-footer__dobozSplit {
  display: block;
}
.l-footer__dobozSplit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 46%;
}
.l-footer__dobozSplitUnder {
  margin-top: 24px;
}
.l-footer__toggle {
  width: 46%;
  margin-bottom: 20px;
}
.l-footer__toggle.has-menu {
  width: 100%;
}
.l-footer__toggleHead {
  padding-bottom: 15px;
  text-align: left;
  border-bottom: 1px solid #ffffff;
}
.l-footer__toggleHeadLink {
  text-decoration: none;
  color: #ffffff;
}
.l-footer__toggleHeadLink:visited {
  text-decoration: none;
  color: #ffffff;
}
.l-footer__toggleHeadLink:hover {
  text-decoration: none;
}
.l-footer__toggleMainList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.l-footer__toggleMainListItem {
  width: 44%;
  margin-top: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ffffff;
}
.l-footer__toggleMainListItem--adj {
  width: 26%;
}
.l-footer__toggleMainListItem a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.l-footer__toggleMainListItem span {
  padding-top: 6px;
  color: #64c0ab;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
}
.l-footer__toggleMainListItem p {
  padding-left: 10px;
  text-align: left;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.8;
}
.l-footer__logo {
  display: block;
  width: 100%;
  max-width: 326px;
  margin-right: auto;
  margin-left: 0;
}
.l-footer__logo img {
  max-width: 100%;
}
.l-footer__bnr {
  text-align: right;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.l-footer__bnr:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-footer__address {
  display: block;
  text-align: left;
}
.l-footer__address p {
  color: #ffffff;
  font-size: 14px;
}
.l-footer__copy {
  display: block;
  text-align: right;
  color: #ffffff;
  font-size: 10px;
  font-family: "Roboto", sans-serif;
}

/*============================
.l-container
============================*/
.l-container {
  /* IE11 */
}
_:-ms-lang(x)::-ms-backdrop, .l-container {
  overflow-x: hidden;
  overflow-y: visible;
}

/*============================
.l-section
============================*/
.l-section__inner {
  width: 100%;
  max-width: 1134px;
  padding: 0 20px;
  margin: 0 auto;
}
.l-section__inner--small {
  max-width: 780px;
}

/*============================
.l-pankuzu
============================*/
.l-pankuzu {
  width: 100%;
  max-width: 1134px;
  margin: 27px auto 0;
  padding: 0 20px;
}
.l-pankuzu__list {
  width: 100%;
  max-width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.l-pankuzu__list > li {
  white-space: nowrap;
  font-size: 12px;
}
.l-pankuzu__list > li:last-child {
  text-overflow: ellipsis;
  overflow: hidden;
}
.l-pankuzu__list > li + li {
  margin-left: 10px;
}
.l-pankuzu__list > li a {
  color: #333333;
}
.l-pankuzu__list > li a:hover {
  border-bottom: 1px solid #333333;
}

/*============================
.l-main
============================*/
.l-main {
  overflow: hidden;
  margin-top: 80px;
}
.l-main__spacer {
  margin-top: 78px;
}

/*============================
.l-section
============================*/
.l-mv-top {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 65px);
}
.l-mv-top .l-mv__slider {
  width: 100%;
  height: 100%;
}
.l-mv-top .l-mv__sliderItem {
  position: relative;
  width: 100%;
  height: 100%;
}
.l-mv-top .l-mv__sliderItem.is-active .l-mv__titJa:nth-of-type(1) .l-mv__titJaInr {
  -webkit-animation: fadein 0.8s 0.8s forwards;
          animation: fadein 0.8s 0.8s forwards;
}
.l-mv-top .l-mv__sliderItem.is-active .l-mv__titJa:nth-of-type(1) .l-mv__titJaLayer {
  -webkit-animation: moveleft 0.6s 0.4s forwards ease;
          animation: moveleft 0.6s 0.4s forwards ease;
}
.l-mv-top .l-mv__sliderItem.is-active .l-mv__titJa:nth-of-type(2) .l-mv__titJaInr {
  -webkit-animation: fadein 0.8s 1s forwards;
          animation: fadein 0.8s 1s forwards;
}
.l-mv-top .l-mv__sliderItem.is-active .l-mv__titJa:nth-of-type(2) .l-mv__titJaLayer {
  -webkit-animation: moveleft 0.6s 0.8s forwards ease;
          animation: moveleft 0.6s 0.8s forwards ease;
}
.l-mv-top .l-mv__sliderItem.is-active .l-mv__titJa:nth-of-type(3) .l-mv__titJaInr {
  -webkit-animation: fadein 0.8s 1.2s forwards;
          animation: fadein 0.8s 1.2s forwards;
}
.l-mv-top .l-mv__sliderItem.is-active .l-mv__titJa:nth-of-type(3) .l-mv__titJaLayer {
  -webkit-animation: moveleft 0.6s 1.2s forwards ease;
          animation: moveleft 0.6s 1.2s forwards ease;
}
.l-mv-top .l-mv__sliderItem.is-active .l-mv__coverImgDobozItem:nth-of-type(1) .l-mv__coverImgDobozBg {
  -webkit-animation: moveBg 0.4s forwards ease;
          animation: moveBg 0.4s forwards ease;
}
.l-mv-top .l-mv__sliderItem.is-active .l-mv__coverImgDobozItem:nth-of-type(1) .l-mv__coverImgDobozBgLayer {
  -webkit-animation: moveleft 0.4s forwards ease 0.4s;
          animation: moveleft 0.4s forwards ease 0.4s;
}
.l-mv-top .l-mv__sliderItem.is-active .l-mv__coverImgDobozItem:nth-of-type(2) .l-mv__coverImgDobozBg {
  -webkit-animation: moveBg 0.4s forwards ease;
          animation: moveBg 0.4s forwards ease;
}
.l-mv-top .l-mv__sliderItem.is-active .l-mv__coverImgDobozItem:nth-of-type(2) .l-mv__coverImgDobozBgLayer {
  -webkit-animation: moveright 0.4s forwards ease 0.4s;
          animation: moveright 0.4s forwards ease 0.4s;
}
.l-mv-top .l-mv__sliderItem.is-active .l-mv__coverImgDobozItem:nth-of-type(3) .l-mv__coverImgDobozBg {
  -webkit-animation: moveBg 0.4s forwards ease;
          animation: moveBg 0.4s forwards ease;
}
.l-mv-top .l-mv__sliderItem.is-active .l-mv__coverImgDobozItem:nth-of-type(3) .l-mv__coverImgDobozBgLayer {
  -webkit-animation: moveleft 0.4s forwards ease 0.4s;
          animation: moveleft 0.4s forwards ease 0.4s;
}
.l-mv-top .l-mv__slider .slick-track,
.l-mv-top .l-mv__slider .slick-list,
.l-mv-top .l-mv__slider .slick-slide {
  height: 100%;
}
.l-mv-top .l-mv__logo {
  position: absolute;
  top: auto;
  right: 2%;
  bottom: 0;
  left: auto;
  width: 52.8%;
}
.l-mv-top .l-mv__logo img {
  width: 100%;
}
.l-mv-top .l-mv__cover {
  position: absolute;
  top: 50%;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1194px;
  padding: 0 20px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}
.l-mv-top .l-mv__cover--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-mv-top .l-mv__coverIcon {
  width: 120px;
}
.l-mv-top .l-mv__coverIcon img {
  width: 100%;
}
.l-mv-top .l-mv__coverIcon--center {
  margin: 0 auto;
}
.l-mv-top .l-mv__coverTxt {
  width: 50%;
  text-align: left;
}
.l-mv-top .l-mv__coverTxt--center {
  width: 100%;
  text-align: center;
}
.l-mv-top .l-mv__coverImg {
  position: relative;
  width: 45%;
  max-width: 600px;
}
.l-mv-top .l-mv__coverImg img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
}
.l-mv-top .l-mv__coverImgDoboz {
  width: 100%;
  height: 100%;
}
.l-mv-top .l-mv__coverImgDobozItem {
  position: relative;
}
.l-mv-top .l-mv__coverImgDobozItem:nth-of-type(1) {
  -webkit-transform: translateY(6%);
          transform: translateY(6%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}
.l-mv-top .l-mv__coverImgDobozItem:nth-of-type(1) .l-mv__coverImgDobozBgTit {
  position: absolute;
  top: auto;
  bottom: 20px;
  left: 0;
  width: 20%;
  max-width: 120px;
}
.l-mv-top .l-mv__coverImgDobozItem:nth-of-type(2) {
  -webkit-clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 90%);
          clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 90%);
}
.l-mv-top .l-mv__coverImgDobozItem:nth-of-type(2) .l-mv__coverImgDobozBgTit {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 30px;
  left: auto;
  width: 32%;
  max-width: 164px;
}
.l-mv-top .l-mv__coverImgDobozItem:nth-of-type(3) {
  -webkit-transform: translateY(-6%);
          transform: translateY(-6%);
  -webkit-clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
}
.l-mv-top .l-mv__coverImgDobozItem:nth-of-type(3) .l-mv__coverImgDobozBgTit {
  position: absolute;
  top: auto;
  bottom: 20px;
  left: 0;
  width: 37%;
  max-width: 192px;
}
.l-mv-top .l-mv__coverImgDobozBg {
  position: relative;
  overflow: hidden;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.l-mv-top .l-mv__coverImgDobozBgLayer {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.l-mv-top .l-mv__coverImgDobozBgTit {
  position: absolute;
}
.l-mv-top .l-mv__coverImgBg {
  display: none;
}
.l-mv-top .l-mv__coverLink--center .m-button--arrow {
  margin-right: auto;
  margin-left: auto;
}
.l-mv-top .l-mv__tit {
  margin-top: 10px;
  font-size: 0;
}
.l-mv-top .l-mv__titJa {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: #ffffff;
  font-size: 74px;
  line-height: 1.4;
  font-family: "A1 Gothic R";
}
.l-mv-top .l-mv__titJaInr {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.l-mv-top .l-mv__titJaLayer {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1px;
  height: 100%;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background-color: #000000;
}
.l-mv-top .l-mv__titEn {
  display: block;
  margin-top: 20px;
  color: #ffffff;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
}
.l-mv-top .m-button--arrow {
  width: 158px;
  margin-top: 40px;
  margin-left: 0;
  border-color: #ffffff;
  text-decoration: none;
  color: #ffffff;
}
.l-mv-top .m-button--arrow:visited {
  text-decoration: none;
  color: #ffffff;
}
.l-mv-top .m-button--arrow:hover {
  text-decoration: none;
}
.l-mv-top .m-button--arrow::after {
  border-color: #ffffff;
}
.l-mv-top .l-mv__img {
  display: block;
  width: 100%;
  height: 100%;
}
.l-mv-top .l-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
}
.l-mv-top .l-mv__link {
  display: none;
}
.l-mv-top .js-slider__modul {
  position: absolute;
  top: auto;
  bottom: 40px;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1194px;
  padding: 0 20px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  text-align: center;
}
.l-mv-top .js-slider__modulCount {
  margin-right: 15px;
}
.l-mv-top .js-slider__modulCount p {
  color: #ffffff;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
}
.l-mv-top .js-slider__modulDots .slick-dots {
  position: static;
  vertical-align: middle;
  font-size: 10px;
  line-height: 1;
}
.l-mv-top .js-slider__modulDots .slick-dots li {
  margin: 0 2px 8px;
}
.l-mv-top .l-mv__link {
  display: none;
}
.l-mv-under {
  position: relative;
  height: 344px;
}
.l-mv-under .l-mv__cover {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 1134px;
  padding: 0 20px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: left;
}
.l-mv-under .l-mv__tit {
  color: #ffffff;
  font-size: 38px;
}
.l-mv-under .l-mv__tit span {
  display: block;
  margin-top: 20px;
  color: #ffffff;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
}
.l-mv-under .l-mv__img {
  display: block;
  width: 100%;
  height: 100%;
}
.l-mv-under .l-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
}
.l-mv-recruit {
  position: relative;
  height: calc(100vh - 80px);
}
.l-mv-recruit .l-mv__cover {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 1134px;
  padding: 0 20px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}
.l-mv-recruit .l-mv__tit {
  color: #ffffff;
  font-size: 32px;
  line-height: 1.78;
  letter-spacing: 0.08em;
}
.l-mv-recruit .l-mv__tit span {
  display: block;
  margin-bottom: 40px;
  color: #ffffff;
  font-size: 14px;
  line-height: 2.5;
  font-family: "Roboto", sans-serif;
}
.l-mv-recruit .l-mv__img {
  display: block;
  width: 100%;
  height: 100%;
}
.l-mv-recruit .l-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
}

/*============================
.l-footcontact
============================*/
.l-footcontact {
  background-color: #64c0ab;
  padding: 80px 0;
}
.l-footcontact__desc {
  margin-top: 40px;
}
.l-footcontact__desc p {
  font-size: 18px;
  color: #ffffff;
}
.l-footcontact__doboz {
  width: 372px;
  margin-left: 20px;
  background-color: #ffffff;
  border-radius: 60px;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 40px auto 0;
  position: relative;
}
.l-footcontact__doboz::before {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #64c0ab;
  margin: 0 10px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.l-footcontact__doboz::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #64c0ab;
  border-right: 2px solid #64c0ab;
  position: absolute;
  top: 50%;
  left: auto;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.l-footcontact__dobozLink {
  width: 50%;
  font-family: "A1 Gothic R";
  text-decoration: none;
  color: #64c0ab;
}
.l-footcontact__dobozLink:visited {
  text-decoration: none;
  color: #64c0ab;
}
.l-footcontact__dobozLink:hover {
  text-decoration: none;
}
.l-footcontact__dobozLink:nth-of-type(1) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.l-footcontact__dobozLink:nth-of-type(2) {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

/*============================
.l-linklist
============================*/
/*============================
.l-information
============================*/
/*============================
.l-single-post
============================*/
/*============================
.l-bg
============================*/
.l-bg {
  position: relative;
  outline: none;
}
.l-bg:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  border-top: 180px solid #ffffff;
  border-right: 100vw solid transparent;
}
.l-bg:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  border-bottom: 180px solid #ffffff;
  border-left: 100vw solid transparent;
}

/*============================
.l-pager
============================*/
.l-pager {
  margin-top: 64px;
}
.l-pager--switch .l-pager__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.l-pager--switch .l-pager__list li {
  width: calc(100% / 3);
  color: #bababa;
}
.l-pager--switch .l-pager__list li:last-child {
  text-align: right;
}
.l-pager--switch .l-pager__list li:last-child a {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.l-pager--switch .l-pager__list .m-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  width: 240px;
  height: 60px;
  margin: 0 auto;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #64c0ab !important;
  border: 1px solid #64c0ab;
  border-radius: 30px;
  background-color: transparent;
  background-image: url("../img/global/arrow-left-green.svg");
  background-repeat: no-repeat;
  background-position: top 50% left 30px;
  background-size: 8px;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: #333333;
}
.l-pager--switch .l-pager__list .m-button:visited {
  text-decoration: none;
  color: #333333;
}
.l-pager--switch .l-pager__list .m-button:hover {
  text-decoration: none;
}
.l-pager--switch .l-pager__list .m-button:hover {
  color: #ffffff !important;
  background-color: #64c0ab;
  background-image: url("../img/global/arrow-left-white.svg");
}
.l-pager--switch .l-pager__list .m-hide-sp {
  color: #bababa;
  border-bottom: 1px solid transparent;
  display: inline-block;
}
.l-pager--switch .l-pager__list .m-hide-sp:hover {
  color: #64c0ab;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-bottom: 1px solid #64c0ab;
}

/*============================
.l-notfound
============================*/
.l-notfound {
  padding: 0 0 120px;
}
.l-notfound__desc {
  margin-top: 20px;
}
.l-notfound__link {
  margin-top: 60px;
}

/*============================
m-pagetop
============================*/
.m-pagetop {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-family: YakuHanJP, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  position: fixed;
  display: none;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 60px;
  height: 60px;
  top: auto;
  bottom: 40px;
  left: auto;
  right: 20px;
  background: url(../img/global/footer/m-pagetop.svg) no-repeat left top;
  background-size: contain;
  z-index: 99999;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.m-pagetop:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*============================
m-button
============================*/
.m-button--arrow {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  width: 220px;
  height: 50px;
  margin: 0 auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #595959;
  border-radius: 24px;
  background-color: transparent;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: #333333;
}
.m-button--arrow:visited {
  text-decoration: none;
  color: #333333;
}
.m-button--arrow:hover {
  text-decoration: none;
}
.m-button--arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  left: auto;
  display: block;
  width: 8px;
  height: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
}
.m-button--arrow:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #ffffff;
  text-decoration: none;
  color: #595959;
}
.m-button--arrow:hover:visited {
  text-decoration: none;
  color: #595959;
}
.m-button--arrow:hover:hover {
  text-decoration: none;
}
.m-button--arrow:hover::after {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-color: #595959;
}
.m-button--arrowRev {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 250px;
  height: 60px;
  margin: 0 auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #595959;
  background-color: #595959;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: #ffffff;
}
.m-button--arrowRev:visited {
  text-decoration: none;
  color: #ffffff;
}
.m-button--arrowRev:hover {
  text-decoration: none;
}
.m-button--arrowRev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 24px;
  display: block;
  width: 8px;
  height: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
}
.m-button--arrowRev:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #ffffff;
  text-decoration: none;
  color: #595959;
}
.m-button--arrowRev:hover:visited {
  text-decoration: none;
  color: #595959;
}
.m-button--arrowRev:hover:hover {
  text-decoration: none;
}
.m-button--arrowRev:hover::after {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-color: #595959;
}

/*============================
m-hide
============================*/
.m-hide--pc {
  display: none;
}

/*============================
m-tit
============================*/
.m-tit__ja {
  display: block;
  font-size: 32px;
  font-family: "A1 Gothic M";
}
.m-tit__ja--white {
  color: #ffffff;
}
.m-tit__en {
  display: block;
  margin-top: 10px;
  color: #64c0ab;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
}
.m-tit__en--white {
  color: #ffffff;
}
.m-tit--move .m-tit__inner {
  display: inline-block;
  overflow: hidden;
}
.m-tit--move .m-tit__split {
  position: relative;
  display: block;
  -webkit-transform: translateX(-110%);
          transform: translateX(-110%);
}
.m-tit--move .m-tit__layer {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.m-tit--move .m-tit__ja {
  opacity: 0;
}
.m-tit--move .m-tit__en {
  opacity: 0;
}
.m-tit--move.is-active .m-tit__split:nth-of-type(1) {
  -webkit-animation: moveBg 0.2s forwards ease;
          animation: moveBg 0.2s forwards ease;
}
.m-tit--move.is-active .m-tit__split:nth-of-type(1) .m-tit__layer {
  -webkit-animation: moveLayer 0.2s 0.2s forwards ease;
          animation: moveLayer 0.2s 0.2s forwards ease;
}
.m-tit--move.is-active .m-tit__split:nth-of-type(2) {
  -webkit-animation: moveBg 0.2s 0.2s forwards ease;
          animation: moveBg 0.2s 0.2s forwards ease;
}
.m-tit--move.is-active .m-tit__split:nth-of-type(2) .m-tit__layer {
  -webkit-animation: moveLayer 0.2s 0.4s forwards ease;
          animation: moveLayer 0.2s 0.4s forwards ease;
}
.m-tit--move.is-active .m-tit__ja {
  -webkit-animation: fadein 0.2s 0.2s forwards;
          animation: fadein 0.2s 0.2s forwards;
}
.m-tit--move.is-active .m-tit__en {
  -webkit-animation: fadein 0.2s 0.4s forwards;
          animation: fadein 0.2s 0.4s forwards;
}

/*============================
m-noposts
============================*/
.m-noposts {
  width: 100%;
  padding: 0 20px;
  text-align: center;
}
.m-noposts--white {
  color: #ffffff;
}

/*============================
m-pagenavi
============================*/
.m-pagenavi {
  margin-top: 66px;
}
.m-pagenavi--split .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.m-pagenavi--split .wp-pagenavi a,
.m-pagenavi--split .wp-pagenavi span {
  margin: 0 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  letter-spacing: 0;
  color: #bababa;
  font-size: 16px;
}
.m-pagenavi--split .wp-pagenavi a:hover, .m-pagenavi--split .wp-pagenavi a.current,
.m-pagenavi--split .wp-pagenavi span:hover,
.m-pagenavi--split .wp-pagenavi span.current {
  color: #64c0ab;
}
.m-pagenavi--split .wp-pagenavi .pages,
.m-pagenavi--split .wp-pagenavi .last,
.m-pagenavi--split .wp-pagenavi .first,
.m-pagenavi--split .wp-pagenavi .nextpostslink,
.m-pagenavi--split .wp-pagenavi .previouspostslink {
  display: none;
}

/*============================
m-desc
============================*/
.m-desc {
  text-align: left;
}
.m-desc--center {
  text-align: center;
}
.m-desc p {
  font-size: 16px;
  line-height: 1.87;
  letter-spacing: 0.12em;
}
.m-desc--split p + p {
  margin-top: 30px;
}

/*============================
m-tit
============================*/
.m-subtit {
  font-size: 24px;
}
.m-subtit--bold {
  font-weight: bold;
}

/*============================
m-scroll
============================*/
.m-scroll {
  height: 100px;
}
.m-scroll__line {
  height: 100%;
}
.m-scroll__line::before {
  height: 100px;
  background-color: #ffffff;
  -webkit-animation: scrollLine 1.4s linear infinite;
          animation: scrollLine 1.4s linear infinite;
}
@-webkit-keyframes scrollLine {
  0% {
    height: 100px;
  }
  100% {
    height: 0;
  }
}
@keyframes scrollLine {
  0% {
    height: 100px;
  }
  100% {
    height: 0;
  }
}
.m-scroll__tit {
  padding-bottom: 10px;
  color: #ffffff;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
}
.m-scroll__line {
  position: relative;
}
.m-scroll__line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1px;
  -webkit-transform: translateX(-50%) translateZ(0);
          transform: translateX(-50%) translateZ(0);
}

/*============================
.m-select
============================*/
.m-select {
  position: relative;
  width: 356px;
  height: 60px;
  margin: 0 auto;
  border: 1px solid #cccccc;
}
.m-select::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 20px;
  left: auto;
  display: block;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  pointer-events: none;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
}
.m-select select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  font-size: 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  background: transparent;
  font-family: YakuHanJP, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.m-select select::-ms-expand {
  display: none;
}

/*============================
m-card
============================*/
.m-card {
  width: 250px;
}
.m-card__link {
  display: block;
}
.m-card__link:hover .m-card__tit {
  color: #64c0ab;
}
.m-card__img {
  z-index: 1;
  overflow: hidden;
  border: 1px solid #cccccc;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.m-card__img::after {
  content: "";
  display: block;
  padding-top: 100%;
}
.m-card__img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  font-family: "object-fit:cover;";
}
.m-card__img img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.m-card__img:hover img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.m-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 14px;
}
.m-card__data {
  color: #484848;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0em;
}
.m-card__tit {
  margin-top: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.m-card__tit--white {
  color: #ffffff;
}
.m-card__tit--hidden {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.m-card__text {
  margin-top: 20px;
  text-align: left;
}
.m-card__text p {
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: 0.12em;
}

/*============================
.m-movie
============================*/
.m-movie {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.m-movie::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.m-movie__start {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.m-movie__start.is-hide {
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
.m-movie__startImg {
  width: 120px;
}
.m-movie__startImg img {
  width: 100%;
}
.m-movie video {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*==========================
共通タブ用 => .js-tab
==========================*/
.js-tab__switchItem {
  cursor: pointer;
}
.js-tab__main {
  position: relative;
}
.js-tab__mainItem {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.js-tab__mainItem.has-scroll {
  position: static;
  display: none;
}
.js-tab__mainItem.is-active {
  position: static;
  z-index: auto;
  visibility: visible;
  opacity: 1;
}
.js-tab__mainItem.is-active.has-scroll {
  display: block;
}

/*===================
タブの中のタブ => .js-tab_inr
===================*/
.js-tabInr__switchItem {
  cursor: pointer;
}
.js-tabInr__main {
  position: relative;
}
.js-tabInr__mainItem {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.js-tabInr__mainItem.has-scroll {
  position: static;
  display: none;
}
.js-tabInr__mainItem.is-active {
  position: static;
  z-index: auto;
  visibility: visible;
  opacity: 1;
}
.js-tabInr__mainItem.is-active.has-scroll {
  display: block;
}

/*==========================
共通トグル用 => .js-toggle
==========================*/
.js-toggle__switch {
  position: relative;
  cursor: pointer;
}
.js-toggle__switch.is-active {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.js-toggle__next {
  display: none;
}

/*==================
js-fadeIn
==================*/
.js-fadeIn {
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
.js-fadeIn.is-show {
  opacity: 1;
}
.js-fadeIn-up {
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
.js-fadeIn-up.is-show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

/*==========================
共通スライダー用 => .js-slider
==========================*/
.js-slider__modulDots {
  position: relative;
}
.js-slider__modulArw {
  cursor: pointer;
}

/*==================
js-move
==================*/
.js-move__titSingleInner {
  position: relative;
  overflow: hidden;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.js-move__titSingleInner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.js-move__titSingle.is-active .js-move__titSingleInner::after {
  -webkit-animation: moveLayer 0.4s forwards ease;
          animation: moveLayer 0.4s forwards ease;
}
.js-move__titSplit {
  position: relative;
}
.js-move__titSplit::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.js-move__block {
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  opacity: 0;
}
.js-move__block.is-active {
  -webkit-animation: fadeinblock 0.4s 0.2s forwards ease;
          animation: fadeinblock 0.4s 0.2s forwards ease;
}
.js-move__img {
  position: relative;
  overflow: hidden;
}
.js-move__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.js-move__img.is-active::after {
  -webkit-animation: moveLayer 0.4s 0.2s forwards ease;
          animation: moveLayer 0.4s 0.2s forwards ease;
}
.js-move__card {
  position: relative;
  overflow: hidden;
}
.js-move__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.js-move__card.is-active::after {
  -webkit-animation: moveLayer 0.4s 0.2s forwards ease;
          animation: moveLayer 0.4s 0.2s forwards ease;
}
.js-move__overlay {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.js-move__overlayInner {
  display: block;
  -webkit-transform: translateX(-110%);
          transform: translateX(-110%);
}
.js-move__overlayInner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.js-move__overlayContent {
  opacity: 0;
}
.js-move__overlay.is-active .js-move__overlayInner {
  -webkit-animation: moveBg 0.4s 0.2s forwards ease;
          animation: moveBg 0.4s 0.2s forwards ease;
}
.js-move__overlay.is-active .js-move__overlayInner::after {
  -webkit-animation: moveLayer 0.4s 0.2s forwards ease;
          animation: moveLayer 0.4s 0.2s forwards ease;
}
.js-move__overlay.is-active .js-move__overlayContent {
  -webkit-animation: fadein 0.4s 0.8s forwards;
          animation: fadein 0.4s 0.8s forwards;
}

/* slick-theme */
.slick-loading .slick-list {
  background: #fff url(../js/libs/slick/ajax-loader.gif) center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;
  src: url("../js/libs/slick/fonts/slick.eot");
  src: url("../js/libs/slick/fonts/slick.eot?#iefix") format("embedded-opentype"), url("../js/libs/slick/fonts/slick.woff") format("woff"), url("../js/libs/slick/fonts/slick.ttf") format("truetype"), url("../js/libs/slick/fonts/slick.svg#slick") format("svg");
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 999;
  top: 50%;
  display: block;
  width: 50px;
  height: 50px;
  padding: 0;
  cursor: pointer;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  font-size: 0;
  line-height: 0;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  opacity: 0.7;
}

.slick-prev {
  left: -25px;
  background-image: url("../js/libs/slick//img/prev_arrow.png");
}

.slick-next {
  right: -25px;
  background-image: url("../js/libs/slick//img/next_arrow.png");
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  display: block;
  width: 15px;
  height: 15px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 0;
  line-height: 0;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  content: "•";
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  text-align: center;
  opacity: 1;
  color: #CCCCCC;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #64C0AB;
}

/* slick */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*==========================
お知らせ
.p-information
==========================*/
.p-information-archive .l-mv__tit span {
  text-transform: uppercase;
}
.p-information-archive-tab__inner {
  width: 100%;
  max-width: 1134px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-information-archive-tab__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-information-archive-tab__item:not(:first-of-type) {
  margin-left: 20px;
}
.p-information-archive-tab__itemLink {
  display: inline-block;
  width: 11.2005856515vw;
  max-width: 153px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e0e0e0;
}
.p-information-archive-tab__itemLink:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #64c0ab;
  border-bottom: 1px solid #64c0ab;
}
.p-information-archive-tab__itemLink.is-active {
  color: #64c0ab;
  border-bottom: 1px solid #64c0ab;
}
.p-information-archive-content__inner {
  width: 100%;
  max-width: 1134px;
  margin: 0 auto;
  padding: 0 20px 120px;
}
.p-information-archive-content__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 48px;
}
.p-information-archive-content__list:before {
  content: "";
  display: block;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 22.3034734918vw;
  max-width: 244px;
}
.p-information-archive-content__list:after {
  content: "";
  display: block;
  width: 22.3034734918vw;
  max-width: 244px;
}
.p-information-archive-content__item {
  width: 22.3034734918vw;
  max-width: 244px;
}
.p-information-archive-content__item .m-card {
  width: 100%;
}
.p-information-archive-content__item .m-card__data {
  color: #64c0ab;
}
.p-information-archive-content__item:nth-of-type(4n) {
  margin-right: 0;
}
.p-information-archive-content__item:nth-of-type(n + 5) {
  margin-top: 40px;
}
.p-information-single .l-mv__img {
  background-color: #112f29;
}
.p-information-single .l-mv__img img {
  opacity: 0.3;
}
.p-information-single-content {
  text-align: left;
}
.p-information-single-content__inner {
  max-width: 875px;
  padding-bottom: 130px;
}
.p-information-single-content__tit {
  padding-bottom: 18px;
  border-bottom: 1px solid #64c0ab;
  margin-bottom: 32px;
}
.p-information-single-content__titDate {
  color: #64c0ab;
  font-size: 14px;
  line-height: 1.71;
}
.p-information-single-content__titMain {
  color: #707070;
  font-size: 26px;
  line-height: 1.84;
}
.p-information-single-content h2 {
  color: #64c0ab;
  font-size: 22px;
}
.p-information-single-content figure {
  border-radius: 10px;
}
.p-information-single-content img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    cursor: pointer;
    pointer-events: auto;
  }
  .l-header {
    height: 65px;
  }
  .l-header__inner {
    padding: 0% 5.3333333333%;
  }
  .l-header__gnav {
    display: none;
  }
  .l-header__tel {
    display: none;
  }
  .l-header__contact {
    display: none;
  }
  .l-header__hmb {
    position: fixed;
    z-index: 1000001;
    top: 18%;
    right: 20px;
    left: auto;
    display: block;
    width: 20px;
    height: 18px;
  }
  .l-header__hmbButton {
    position: relative;
    width: 100%;
    height: 40px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    resize: none;
    padding: 0;
    border: 0;
    outline: none;
    background: transparent;
    font-family: YakuHanJP, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .l-header__hmbButton > div {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 100%;
    height: 1.5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background: #ffffff;
  }
  .l-header__hmbButton > div:nth-of-type(1) {
    -webkit-transform: translate(-50%, 0) rotate(0deg);
            transform: translate(-50%, 0) rotate(0deg);
  }
  .l-header__hmbButton > div:nth-of-type(2) {
    top: 50%;
    -webkit-transform: translate(-50%, 0) rotate(0deg);
            transform: translate(-50%, 0) rotate(0deg);
  }
  .l-header__hmbButton > div:nth-of-type(3) {
    top: 70%;
    -webkit-transform: translate(-50%, 0) rotate(0deg);
            transform: translate(-50%, 0) rotate(0deg);
  }
  .l-header__hmbButton.is-active > div {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .l-header__hmbButton.is-active > div:nth-of-type(1) {
    top: 50%;
    -webkit-transform: translate(-50%, 0) rotate(45deg);
            transform: translate(-50%, 0) rotate(45deg);
  }
  .l-header__hmbButton.is-active > div:nth-of-type(2) {
    opacity: 0;
  }
  .l-header__hmbButton.is-active > div:nth-of-type(3) {
    top: 50%;
    -webkit-transform: translate(-50%, 0) rotate(-45deg);
            transform: translate(-50%, 0) rotate(-45deg);
  }
  .l-header__drwNav {
    position: fixed;
    top: 65px;
    left: 0;
    display: block;
    visibility: hidden;
    width: 100%;
    height: calc(100vh - 65px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.7);
  }
  .l-header__drwNav.is-active {
    z-index: 10000000000000000;
    visibility: visible;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  .l-header__drwNavDoboz {
    overflow: scroll;
    width: 90%;
    height: 100%;
    margin-right: 0;
    margin-left: auto;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
    background-color: #ffffff;
    padding: 12.8% 6.4% 29.3333333333%;
  }
  .l-header__drwNavToggle {
    width: 100%;
    margin-bottom: 0;
  }
  .l-header__drwNavToggle.has-menu .l-header__drwNavToggleHeadLink::before, .l-header__drwNavToggle.has-menu .l-header__drwNavToggleHeadLink::after {
    content: "";
    position: absolute;
    top: 40%;
    right: 4%;
    left: auto;
    display: block;
    width: 2px;
    height: 16px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    border: none;
    background-color: #cccccc;
  }
  .l-header__drwNavToggle.has-menu .l-header__drwNavToggleHeadLink::after {
    right: 4%;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .l-header__drwNavToggleHead {
    padding-bottom: 0;
  }
  .l-header__drwNavToggleHeadLink {
    position: relative;
    display: block;
    font-family: "A1 Gothic M";
    padding: 5.3333333333% 0%;
  }
  .l-header__drwNavToggleHeadLink::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4%;
    left: auto;
    display: block;
    width: 10px;
    height: 10px;
    -webkit-transform: rotate(45deg) translateY(-50%);
            transform: rotate(45deg) translateY(-50%);
    border-top: 2px solid #cccccc;
    border-right: 2px solid #cccccc;
  }
  .l-header__drwNavToggleHeadLink span {
    display: block;
    color: #64c0ab;
    font-size: 3.2vw;
    font-family: "Roboto", sans-serif;
  }
  .l-header__drwNavToggleHead.is-active .l-header__drwNavToggleHeadLink::before {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .l-header__drwNavToggleMain {
    display: none;
  }
  .l-header__drwNavToggleMainList {
    display: block;
  }
  .l-header__drwNavToggleMainListItem {
    width: 100%;
  }
  .l-header__drwNavToggleMainListItem--adj {
    width: 100%;
  }
  .l-header__drwNavToggleMainListItem p {
    font-size: 3.7333333333vw;
  }
  .l-header__drwNavTel {
    margin-top: 8%;
  }
  .l-header__drwNavTel .m-button--arrow {
    width: 78.5%;
    border-color: #64c0ab;
    font-size: 4.8vw;
    text-decoration: none;
    color: #64c0ab;
    font-family: "Roboto", sans-serif;
  }
  .l-header__drwNavTel .m-button--arrow:visited {
    text-decoration: none;
    color: #64c0ab;
  }
  .l-header__drwNavTel .m-button--arrow:hover {
    text-decoration: none;
  }
  .l-header__drwNavTel .m-button--arrow span {
    font-size: 3.7333333333vw;
  }
  .l-header__drwNavTel .m-button--arrow::after {
    right: 5.3333333333%;
    border-color: #64c0ab;
  }
  .l-header__drwNavContact {
    margin-top: 6.4%;
  }
  .l-header__drwNavContact .m-button--arrow {
    width: 78.5%;
    border-color: #ffffff;
    background-color: #64c0ab;
    text-decoration: none;
    color: #ffffff;
  }
  .l-header__drwNavContact .m-button--arrow:visited {
    text-decoration: none;
    color: #ffffff;
  }
  .l-header__drwNavContact .m-button--arrow:hover {
    text-decoration: none;
  }
  .l-header__drwNavContact .m-button--arrow::after {
    right: 5.3333333333%;
    border-color: #ffffff;
  }
  .l-header-megamenu {
    display: none;
  }
  .l-footer {
    padding: 10.6666666667% 0% 5.3333333333%;
  }
  .l-footer__inner {
    width: 100%;
    max-width: initial;
    padding: 0% 6.4%;
  }
  .l-footer__doboz:nth-of-type(1) {
    display: block;
  }
  .l-footer__doboz:nth-of-type(1) .l-footer__dobozSplit:nth-of-type(1) {
    border-top: 1px solid #ffffff;
  }
  .l-footer__doboz:nth-of-type(2) {
    display: block;
  }
  .l-footer__dobozSplit {
    display: block;
    width: 100%;
  }
  .l-footer__dobozSplitUpper {
    margin-top: 10.6666666667vw;
  }
  .l-footer__dobozSplitUnder {
    margin-top: 6.4vw;
  }
  .l-footer__toggle {
    width: 100%;
    margin-bottom: 0;
  }
  .l-footer__toggle.has-menu .l-footer__toggleHeadLink::before, .l-footer__toggle.has-menu .l-footer__toggleHeadLink::after {
    content: "";
    position: absolute;
    top: 40%;
    right: 4%;
    left: auto;
    display: block;
    width: 2px;
    height: 16px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    border: none;
    background-color: #ffffff;
  }
  .l-footer__toggle.has-menu .l-footer__toggleHeadLink::after {
    right: 4%;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .l-footer__toggleHead {
    padding-bottom: 0;
  }
  .l-footer__toggleHeadLink {
    position: relative;
    display: block;
    padding: 5.3333333333% 0%;
  }
  .l-footer__toggleHeadLink::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4%;
    left: auto;
    display: block;
    width: 10px;
    height: 10px;
    -webkit-transform: rotate(45deg) translateY(-50%);
            transform: rotate(45deg) translateY(-50%);
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
  }
  .l-footer__toggleHead.is-active .l-footer__toggleHeadLink::before {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .l-footer__toggleMain {
    display: none;
  }
  .l-footer__toggleMainList {
    display: block;
  }
  .l-footer__toggleMainListItem {
    width: 100%;
  }
  .l-footer__toggleMainListItem--adj {
    width: 100%;
  }
  .l-footer__logo {
    margin: 0 auto;
  }
  .l-footer__bnr {
    text-align: center;
  }
  .l-footer__address {
    margin-top: 4.2666666667%;
    text-align: center;
  }
  .l-footer__address p {
    font-size: 3.7333333333vw;
    line-height: 1.5;
  }
  .l-footer__address p + p {
    margin-top: 4.2666666667%;
  }
  .l-footer__copy {
    text-align: center;
    font-size: 2.6666666667vw;
  }
  .l-section__inner {
    max-width: initial;
    padding: 0% 6.4%;
  }
  .l-pankuzu {
    margin-top: 5.3333333333vw;
    padding: 0vw 2.6666666667vw;
  }
  .l-pankuzu__list {
    max-width: 100%;
  }
  .l-pankuzu__list > li {
    font-size: 3.2vw;
  }
  .l-pankuzu__list > li + li {
    margin-left: 2.6666666667vw;
  }
  .l-main {
    margin-top: 65px;
  }
  .l-main__spacer {
    margin-top: 50px;
  }
  .l-mv-top {
    height: auto;
  }
  .l-mv-top .l-mv__sliderItem.is-active .l-mv__titJa:nth-of-type(1) .l-mv__titJaLayer {
    -webkit-animation: moveLayer 0.6s 0.4s forwards ease;
            animation: moveLayer 0.6s 0.4s forwards ease;
  }
  .l-mv-top .l-mv__sliderItem.is-active .l-mv__titJa:nth-of-type(2) .l-mv__titJaLayer {
    -webkit-animation: moveLayer 0.6s 0.8s forwards ease;
            animation: moveLayer 0.6s 0.8s forwards ease;
  }
  .l-mv-top .l-mv__sliderItem.is-active .l-mv__titJa:nth-of-type(3) .l-mv__titJaLayer {
    -webkit-animation: moveLayer 0.6s 1.2s forwards ease;
            animation: moveLayer 0.6s 1.2s forwards ease;
  }
  .l-mv-top .l-mv__logo {
    top: 2%;
    right: -2%;
    left: auto;
    display: none;
    width: 18.6%;
  }
  .l-mv-top .l-mv__cover {
    display: block;
    max-width: initial;
    -webkit-transform: translate(-50%, -55%);
            transform: translate(-50%, -55%);
    padding: 0% 6.4%;
  }
  .l-mv-top .l-mv__coverIcon {
    width: 15%;
  }
  .l-mv-top .l-mv__coverIcon img {
    width: 100%;
  }
  .l-mv-top .l-mv__coverTxt {
    width: 100%;
  }
  .l-mv-top .l-mv__coverImg {
    width: 100%;
    margin-top: 2.6666666667%;
  }
  .l-mv-top .l-mv__coverImgDobozItem:nth-of-type(1).l-mv__coverImgDobozItem--adj {
    top: -8%;
  }
  .l-mv-top .l-mv__coverImgDobozItem:nth-of-type(3).l-mv__coverImgDobozItem--adj {
    bottom: -8%;
  }
  .l-mv-top .l-mv__coverImgBg {
    display: none;
  }
  .l-mv-top .l-mv__coverLink {
    display: none;
  }
  .l-mv-top .l-mv__titJa {
    line-height: 1.2;
    font-size: 9.6vw;
  }
  .l-mv-top .l-mv__titEn {
    margin-top: 2.6666666667%;
    font-size: 3.2vw;
  }
  .l-mv-top .m-button--arrow {
    width: 100%;
    height: 40px;
    margin-top: 2.5641025641%;
    font-size: 3.5897435897vw;
  }
  .l-mv-top .l-mv__link {
    display: block;
    width: 38%;
  }
  .l-mv-top .js-slider__modul {
    right: 6.4%;
    bottom: 4%;
    left: auto;
    width: auto;
    max-width: initial;
    padding: 0 0;
    -webkit-transform: initial;
            transform: initial;
    white-space: nowrap;
  }
  .l-mv-top .js-slider__modulCount {
    margin-right: 4%;
  }
  .l-mv-top .js-slider__modulCount p {
    font-size: 3.7333333333vw;
  }
  .l-mv-top .l-mv__link {
    position: absolute;
    top: auto;
    bottom: 4%;
    left: 6.4%;
  }
  .l-mv-under {
    height: 160px;
  }
  .l-mv-under .l-mv__cover {
    max-width: initial;
    padding: 0% 6.4%;
  }
  .l-mv-under .l-mv__tit {
    font-size: 7.4666666667vw;
  }
  .l-mv-under .l-mv__tit span {
    margin-top: 2.6666666667%;
    font-size: 3.2vw;
  }
  .l-mv-recruit {
    height: auto;
  }
  .l-mv-recruit .l-mv__cover {
    max-width: initial;
    padding: 0% 6.4%;
  }
  .l-mv-recruit .l-mv__tit {
    font-size: 7.4666666667vw;
    line-height: 1.42;
  }
  .l-mv-recruit .l-mv__tit span {
    margin-bottom: 5.3333333333%;
    font-size: 3.7333333333vw;
    letter-spacing: 0.08em;
  }
  .l-footcontact {
    padding: 14.4% 6.4% 15.4666666667%;
  }
  .l-footcontact .m-tit__ja {
    font-size: 6.4vw;
  }
  .l-footcontact .m-tit__en {
    font-size: 3.2vw;
  }
  .l-footcontact__desc {
    margin-top: 8%;
  }
  .l-footcontact__desc p {
    font-size: 4.8vw;
    line-height: 1.6;
  }
  .l-footcontact__doboz {
    width: 100%;
    margin-top: 8%;
  }
  .l-footcontact__doboz::after {
    right: 3.2%;
  }
  .l-footcontact__dobozLink {
    font-size: 4.2666666667vw;
  }
  .l-bg:before {
    border-top: 50px solid #ffffff;
  }
  .l-bg:after {
    border-bottom: 50px solid #ffffff;
  }
  .l-pager {
    margin-top: 12.8vw;
  }
  .l-pager--switch .l-pager__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 80%;
    margin: auto;
  }
  .l-pager--switch .l-pager__list li:nth-child(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .l-pager--switch .l-pager__list li:nth-child(2) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
    margin-top: 5.3333333333vw;
  }
  .l-pager--switch .l-pager__list li:nth-child(3) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .l-pager--switch .l-pager__list .m-button {
    width: 64vw;
    height: 16vw;
    border-radius: 8vw;
    background-position: top 50% left 2.6666666667vw;
    background-size: 2.1333333333vw;
    font-size: 4.2666666667vw;
  }
  .l-pager--switch .l-pager__list .m-hide-sp {
    font-size: 3.7333333333vw;
  }
  .l-notfound {
    padding: 0 0 60px;
  }
  .l-notfound__desc .m-desc--center {
    text-align: left;
  }
  .l-notfound__link {
    margin-top: 20px;
  }
  .m-pagetop {
    width: 35px;
    height: 35px;
  }
  .m-button--arrowRev {
    width: 100%;
  }
  .m-hide--sp {
    display: none;
  }
  .m-hide--pc {
    display: block;
  }
  .m-tit__en {
    margin-top: 2.6666666667%;
    font-size: 3.2vw;
  }
  .m-pagenavi {
    margin-top: 25.6%;
  }
  .m-pagenavi--split .wp-pagenavi a,
.m-pagenavi--split .wp-pagenavi span {
    margin: 0vw 3.2vw;
    font-size: 4.2666666667vw;
  }
  .m-desc p {
    font-size: 12px;
  }
  .m-desc p + p {
    margin-top: 20px;
  }
  .m-subtit {
    font-size: 16px;
  }
  .m-scroll {
    height: 50px;
  }
  .m-scroll__line {
    height: 100%;
  }
  .m-scroll__line::before {
    height: 50px;
    background-color: #ffffff;
    -webkit-animation: scrollLine 1.4s linear infinite;
            animation: scrollLine 1.4s linear infinite;
  }
  @-webkit-keyframes scrollLine {
    0% {
      height: 50px;
    }
    100% {
      height: 0;
    }
  }
  @keyframes scrollLine {
    0% {
      height: 50px;
    }
    100% {
      height: 0;
    }
  }
  .m-select {
    width: 100%;
    height: 42px;
  }
  .m-select::after {
    width: 5px;
    height: 5px;
  }
  .m-select select {
    padding: 0 15px;
    font-size: 12px;
  }
  .m-card__head {
    margin-top: 3.7333333333vw;
  }
  .m-movie {
    max-width: initial;
  }
  .m-movie__startImg {
    width: 60px;
  }
  .p-information-archive-tab__inner {
    max-width: initial;
    padding: 0% 6.4%;
  }
  .p-information-archive-tab__item:not(:first-of-type) {
    margin-left: 5.3333333333vw;
  }
  .p-information-archive-tab__itemLink {
    width: 25.3333333333vw;
    max-width: initial;
    padding-top: 3.7333333333vw;
    font-size: 4.2666666667vw;
  }
  .p-information-archive-content__inner {
    max-width: initial;
    padding: 0% 6.4% 21.8666666667%;
  }
  .p-information-archive-content__list {
    margin-top: 6.4vw;
  }
  .p-information-archive-content__list:before {
    width: 40.8vw;
    max-width: initial;
  }
  .p-information-archive-content__list:after {
    display: none;
  }
  .p-information-archive-content__item {
    width: 40.8vw;
    max-width: initial;
    margin-right: 5.3333333333vw;
  }
  .p-information-archive-content__item:nth-of-type(2n) {
    margin-right: 0;
  }
  .p-information-archive-content__item:nth-of-type(n + 3) {
    margin-top: 5.6vw;
  }
  .p-information-archive-content__item:nth-of-type(n + 5) {
    margin-top: 5.6vw;
  }
  .p-information-single-content__inner {
    padding-bottom: 64px;
  }
  .p-information-single-content__tit {
    margin-top: 6.4vw;
    padding-bottom: 4.2666666667vw;
  }
  .p-information-single-content__titDate {
    font-size: 3.7333333333vw;
  }
  .p-information-single-content__titMain {
    font-size: 5.3333333333vw;
  }
  .p-information-single-content h2 {
    font-size: 4.8vw;
  }
  .p-information-single-content figure {
    border-radius: 2.6666666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1094px) {
  .l-header {
    height: 65px;
  }
  .l-header__gnav {
    display: none;
  }
  .l-header__tel {
    display: none;
  }
  .l-header__contact {
    display: none;
  }
  .l-header__hmb {
    position: fixed;
    z-index: 1000001;
    top: 18%;
    right: 20px;
    left: auto;
    display: block;
    width: 20px;
    height: 18px;
  }
  .l-header__hmbButton {
    position: relative;
    width: 100%;
    height: 40px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    resize: none;
    padding: 0;
    border: 0;
    outline: none;
    background: transparent;
    font-family: YakuHanJP, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .l-header__hmbButton > div {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 100%;
    height: 1.5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background: #ffffff;
  }
  .l-header__hmbButton > div:nth-of-type(1) {
    -webkit-transform: translate(-50%, 0) rotate(0deg);
            transform: translate(-50%, 0) rotate(0deg);
  }
  .l-header__hmbButton > div:nth-of-type(2) {
    top: 50%;
    -webkit-transform: translate(-50%, 0) rotate(0deg);
            transform: translate(-50%, 0) rotate(0deg);
  }
  .l-header__hmbButton > div:nth-of-type(3) {
    top: 70%;
    -webkit-transform: translate(-50%, 0) rotate(0deg);
            transform: translate(-50%, 0) rotate(0deg);
  }
  .l-header__hmbButton.is-active > div {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .l-header__hmbButton.is-active > div:nth-of-type(1) {
    top: 50%;
    -webkit-transform: translate(-50%, 0) rotate(45deg);
            transform: translate(-50%, 0) rotate(45deg);
  }
  .l-header__hmbButton.is-active > div:nth-of-type(2) {
    opacity: 0;
  }
  .l-header__hmbButton.is-active > div:nth-of-type(3) {
    top: 50%;
    -webkit-transform: translate(-50%, 0) rotate(-45deg);
            transform: translate(-50%, 0) rotate(-45deg);
  }
  .l-header__drwNav {
    position: fixed;
    top: 65px;
    left: 0;
    display: block;
    visibility: hidden;
    width: 100%;
    height: calc(100vh - 65px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.7);
  }
  .l-header__drwNav.is-active {
    z-index: 10000000000000000;
    visibility: visible;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  .l-header__drwNavDoboz {
    overflow: scroll;
    width: 90%;
    height: 100%;
    margin-right: 0;
    margin-left: auto;
    padding: 48px 24px 110px;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
    background-color: #ffffff;
  }
  .l-header__drwNavToggle {
    width: 100%;
    margin-bottom: 0;
  }
  .l-header__drwNavToggle.has-menu .l-header__drwNavToggleHeadLink::before, .l-header__drwNavToggle.has-menu .l-header__drwNavToggleHeadLink::after {
    content: "";
    position: absolute;
    top: 40%;
    right: 4%;
    left: auto;
    display: block;
    width: 2px;
    height: 16px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    border: none;
    background-color: #cccccc;
  }
  .l-header__drwNavToggle.has-menu .l-header__drwNavToggleHeadLink::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .l-header__drwNavToggleHead {
    padding-bottom: 0;
  }
  .l-header__drwNavToggleHeadLink {
    position: relative;
    display: block;
    padding: 20px;
    font-family: "A1 Gothic M";
  }
  .l-header__drwNavToggleHeadLink::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4%;
    left: auto;
    display: block;
    width: 10px;
    height: 10px;
    -webkit-transform: rotate(45deg) translateY(-50%);
            transform: rotate(45deg) translateY(-50%);
    border-top: 2px solid #cccccc;
    border-right: 2px solid #cccccc;
  }
  .l-header__drwNavToggleHeadLink span {
    display: block;
    color: #64c0ab;
    font-size: 12px;
    font-family: "Roboto", sans-serif;
  }
  .l-header__drwNavToggleMain {
    display: none;
  }
  .l-header__drwNavToggleMainListItem {
    width: 100%;
  }
  .l-header__drwNavToggleMainListItem--adj {
    width: 100%;
  }
  .l-header__drwNavTel {
    margin-top: 30px;
  }
  .l-header__drwNavTel .m-button--arrow {
    border-color: #64c0ab;
    text-decoration: none;
    color: #64c0ab;
    font-family: "Roboto", sans-serif;
  }
  .l-header__drwNavTel .m-button--arrow:visited {
    text-decoration: none;
    color: #64c0ab;
  }
  .l-header__drwNavTel .m-button--arrow:hover {
    text-decoration: none;
  }
  .l-header__drwNavTel .m-button--arrow::after {
    right: 15px;
    border-color: #64c0ab;
  }
  .l-header__drwNavContact {
    margin-top: 20px;
  }
  .l-header__drwNavContact .m-button--arrow {
    border-color: #ffffff;
    background-color: #64c0ab;
    text-decoration: none;
    color: #ffffff;
  }
  .l-header__drwNavContact .m-button--arrow:visited {
    text-decoration: none;
    color: #ffffff;
  }
  .l-header__drwNavContact .m-button--arrow:hover {
    text-decoration: none;
  }
  .l-header__drwNavContact .m-button--arrow::after {
    right: 15px;
    border-color: #ffffff;
  }
  .l-header-megamenu {
    display: none;
  }
  .l-footer__inner {
    max-width: 750px;
  }
  .l-footer__doboz:nth-of-type(1) {
    display: block;
  }
  .l-footer__doboz:nth-of-type(2) {
    display: block;
  }
  .l-footer__dobozSplit {
    width: 100%;
  }
  .l-footer__dobozSplitUpper {
    margin-top: 40px;
  }
  .l-footer__toggleMainListItem {
    width: 46%;
  }
  .l-footer__logo {
    margin: 0 auto;
  }
  .l-footer__bnr {
    text-align: center;
  }
  .l-footer__address {
    margin-top: 16px;
    text-align: center;
  }
  .l-footer__copy {
    text-align: center;
  }
  .l-main {
    margin-top: 65px;
  }
  .l-mv-top .l-mv__coverIcon {
    width: 22%;
  }
  .l-mv-top .l-mv__coverIcon img {
    width: 100%;
  }
  .l-mv-top .l-mv__titJa {
    font-size: 6.7641681901vw;
  }
  .l-mv-top .l-mv__titEn {
    font-size: 1.6453382084vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1094px) and (min-width: 768px) and (max-width: 1094px) {
  .l-header__drwNav.is-active .l-header__drwNavDoboz {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@media screen and (min-width: 768px) and (max-width: 1094px) and (max-width: 767px) {
  .l-header__drwNav.is-active .l-header__drwNavDoboz {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .l-header__drwNav.is-active .l-header__drwNavDoboz {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  .m-tit__ja {
    font-size: 6.4vw;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) and (device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) {
  .l-mv-top .l-mv__coverIcon {
    width: 6%;
  }
}
@media screen and (max-width: 767px) and (device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) {
  .l-mv-top .l-mv__coverImg {
    margin-top: 1.3333333333%;
  }
  .l-mv-top .l-mv__coverImg img {
    height: 100%;
  }
  .l-mv-top .l-mv__coverImgDobozItem {
    height: calc(100% / 3);
  }
  .l-mv-top .l-mv__coverImgDobozBgImg {
    height: calc(34vh / 3);
  }
  .l-mv-top .l-mv__titJa {
    font-size: 6.9333333333vw;
  }
  .l-mv-top .l-mv__titEn {
    font-size: 2.6666666667vw;
  }
}
