@charset "UTF-8";
body {
  min-width: 1350px;
}

@media screen and (max-width: 769px) {
  body {
    min-width: 499px;
  }
}
body {
  font-family: "Shippori Mincho", serif;
  background-color: #fff;
}

html {
  font-size: 10px;
}

h2 {
  font-weight: 500;
}

p {
  font-size: 1.5rem;
  color: #171717;
  line-height: 2.666667;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 1.4rem;
    line-height: 1.785;
  }
}

ul {
  list-style-type: none;
}

img {
  vertical-align: bottom;
}

@-webkit-keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-webkit-keyframes hover_line {
  0% {
    width: 100%;
    left: 0;
  }
  49% {
    width: 0;
    left: 100%;
  }
  50% {
    width: 0;
    left: 0;
  }
  to {
    width: 100%;
    left: 0;
  }
}
@keyframes hover_line {
  0% {
    width: 100%;
    left: 0;
  }
  49% {
    width: 0;
    left: 100%;
  }
  50% {
    width: 0;
    left: 0;
  }
  to {
    width: 100%;
    left: 0;
  }
}
@-webkit-keyframes ttl__sm {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
  }
}
@keyframes ttl__sm {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes ttl__md {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
  }
}
@keyframes ttl__md {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes ttl__lg {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
  }
}
@keyframes ttl__lg {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes circle {
  0% {
    stroke-dashoffset: 91px;
    stroke-dasharray: 91px 101px;
  }
  90% {
    stroke-dashoffset: 0px;
    stroke-dasharray: 91px 101px;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -91px;
    stroke-dasharray: 0px 101px;
    opacity: 0;
  }
}
@keyframes circle {
  0% {
    stroke-dashoffset: 91px;
    stroke-dasharray: 91px 101px;
  }
  90% {
    stroke-dashoffset: 0px;
    stroke-dasharray: 91px 101px;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -91px;
    stroke-dasharray: 0px 101px;
    opacity: 0;
  }
}
.l-inner {
  width: 100%;
  padding: 0 130px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding: 0 30px;
  }
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
}
.header__inner {
  width: 100%;
  padding: 0 52px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 0 23px 0 18px;
  }
}
.header__logo {
  margin-top: 27.5px;
  width: 125px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .header__logo {
    margin-top: 16.5px;
    width: 93px;
  }
}
.header__logo-link:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.header__btn {
  position: relative;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  margin-top: 29px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .header__btn {
    margin-top: 18px;
  }
}
.header__btn.active .header__line:nth-of-type(1) {
  top: 16px;
}
.header__btn.active .header__line:nth-of-type(3) {
  top: 16px;
}
.header__line {
  display: block;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  height: 2px;
  border-radius: 2px;
  width: 100%;
  background-color: #000;
}
.header__line:nth-of-type(1) {
  top: 10px;
}
.header__line:nth-of-type(2) {
  top: 16px;
}
.header__line:nth-of-type(3) {
  top: 22px;
}
.header__line.white {
  background-color: #fff;
}
.header__nav {
  visibility: hidden;
  opacity: 0;
}
.header__nav.show {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.header__list {
  padding: 363px 0 0 135px;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.95;
  background: -o-linear-gradient(320deg, #090A0F, #0A0A14, #0F1E33, #304562, #354465, #3A4467, #162441);
  background: linear-gradient(130deg, #090A0F, #0A0A14, #0F1E33, #304562, #354465, #3A4467, #162441);
  background-size: 200% 100%;
  -webkit-animation: bggradient 10s ease infinite;
          animation: bggradient 10s ease infinite;
}
@media screen and (max-width: 768px) {
  .header__list {
    display: block;
    padding: 100px 0 0 0;
  }
}
.header__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-top: 67px;
}
@media screen and (max-width: 768px) {
  .header__flex {
    display: block;
    text-align: center;
    margin-top: 30px;
  }
}
.header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .header__wrap {
    display: block;
  }
}
.header__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 24.5%;
          flex: 0 1 24.5%;
  height: 90px;
}
@media screen and (max-width: 768px) {
  .header__item {
    display: block;
    height: 20px;
    text-align: center;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .header__item2 {
    margin-bottom: 20px;
  }
}
.header__item3 {
  margin-left: 47px;
}
@media screen and (max-width: 768px) {
  .header__item3 {
    margin-left: 0;
  }
}
.header__item4 {
  display: inline-block;
  color: #fff;
  margin-left: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 24.5%;
          flex: 0 1 24.5%;
  padding-left: 90px;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .header__item4 {
    padding-left: 0;
    margin-top: 40px;
  }
}
.header__link {
  font-size: 3.6rem;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  color: #d0d4d9;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header__link {
    font-size: 1.8rem;
  }
}
.header__link::before {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transform: scale(0, 1);
      -ms-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header__link:hover::before {
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1);
}
.header__link2 {
  font-family: "Marcellus", serif;
  font-size: 1.5rem;
  color: #d0d4d9;
  text-transform: uppercase;
  position: relative;
}
.header__link2::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transform: scale(0, 1);
      -ms-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header__link2:hover::after {
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1);
}
.header__reserv::before {
  content: "\f108";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}
.header__inst-svg {
  width: 17px;
  height: 17px;
  fill: #fff;
  margin-right: 5px;
}
.header__inst {
  vertical-align: top;
}

.footer {
  background-color: #171717;
  position: relative;
}
.footer__inner {
  padding-top: 120px;
  padding-bottom: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    display: block;
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
.footer__logo {
  width: 106px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    display: block;
    margin: 0 auto;
  }
}
.footer__info {
  margin-top: 53px;
}
@media screen and (max-width: 768px) {
  .footer__box {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .footer__box1 {
    margin: 0 auto;
    width: 235px;
  }
}
.footer__text {
  display: inline-block;
  font-size: 1.4rem;
  color: #dddddd;
  text-transform: uppercase;
  display: block;
  line-height: 1;
  font-family: "Cinzel", serif;
}
.footer__map {
  display: inline-block;
  font-size: 1.4rem;
  color: #dddddd;
  line-height: 1;
  letter-spacing: 0.14em;
  margin-left: 13px;
  text-decoration: underline;
}
.footer__map::after {
  content: "\f3c5";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}
.footer__map:hover {
  text-decoration: none;
}
.footer__adress {
  display: inline-block;
}
.footer__tell {
  margin-top: 23px;
}
.footer__open {
  margin-top: 34px;
}
@media screen and (max-width: 768px) {
  .footer__open {
    margin-top: 15px;
  }
}
.footer__open2 {
  margin-top: 3px;
}
.footer__close {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .footer__close {
    margin-top: 15px;
  }
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 103px;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 60px;
  }
}
.footer__list {
  margin-right: 80px;
}
@media screen and (max-width: 768px) {
  .footer__list {
    margin-right: 20px;
  }
}
.footer__list2 {
  margin-right: 68px;
}
@media screen and (max-width: 768px) {
  .footer__list2 {
    margin-right: 20px;
  }
}
.footer__list3 {
  margin-right: 104px;
}
@media screen and (max-width: 768px) {
  .footer__list3 {
    margin-right: 0px;
  }
}
.footer__item {
  margin-bottom: 28px;
}
.footer__item2 {
  color: #666666;
}
.footer__link {
  font-size: 1.6rem;
  color: #dddddd;
  text-transform: uppercase;
  font-family: "Cinzel", serif;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 768px) {
  .footer__link {
    font-size: 1.4rem;
  }
}
.footer__inst-svg {
  width: 17px;
  height: 17px;
  fill: #dddddd;
  margin-right: 5px;
}

.ttl__md {
  font-family: "Cinzel", serif;
  font-size: 6.5rem;
  font-weight: 400;
  color: #3A4467;
}
.ttl__md span.fade {
  -webkit-animation: ttl__md 1s backwards;
          animation: ttl__md 1s backwards;
  display: inline-block;
}
.ttl__md-sub {
  font-family: "Cinzel", serif;
  font-size: 10rem;
  font-weight: 400;
  color: #3A4467;
}
.ttl__md-sub span.fade {
  -webkit-animation: ttl__lg 1s backwards;
          animation: ttl__lg 1s backwards;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .ttl__md-sub {
    font-size: 4.6rem;
  }
}
.ttl__lg {
  font-family: "Cinzel", serif;
  font-size: 9.8rem;
  color: #fff;
  font-weight: 400;
  mix-blend-mode: overlay;
}
.ttl__lg span.fade {
  -webkit-animation: ttl__lg 1s backwards;
          animation: ttl__lg 1s backwards;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .ttl__lg {
    font-size: 6.3rem;
  }
}
.ttl__lg-gray {
  font-family: "Cinzel", serif;
  font-size: 9.8rem;
  color: #3A4467;
  opacity: 0.2;
  font-weight: 400;
}
.ttl__lg-gray span.fade {
  -webkit-animation: ttl__lg 1s backwards;
          animation: ttl__lg 1s backwards;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .ttl__lg-gray {
    font-size: 6.3rem;
  }
}
.ttl-sub {
  font-family: "Marcellus", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #3A4467;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .ttl-sub {
    font-size: 0.5rem;
  }
}

.txt {
  font-size: 1.5rem;
  line-height: 2.6667;
  letter-spacing: 0.1em;
}
.txt-sm {
  font-size: 1.4rem;
  line-height: 1;
  margin-left: 47px;
  letter-spacing: 0.05em;
  width: 300px;
  position: relative;
}
.txt-sm::before {
  position: absolute;
  content: "";
  left: -14%;
  top: 50%;
  width: 35px;
  height: 1px;
  background: #171717;
}
.txt-lg {
  font-size: 2.6rem;
  line-height: 1.923;
  letter-spacing: 0.1em;
  background: -o-linear-gradient(290deg, #3A3A3C, #44556F, #5A748F, #5D7490);
  background: linear-gradient(160deg, #3A3A3C, #44556F, #5A748F, #5D7490);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  display: block;
  width: 151px;
  color: #171717;
  font-family: "Marcellus", serif;
  font-size: 1.7rem;
  text-transform: uppercase;
  line-height: 1;
  padding-bottom: 17px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .btn {
    margin: 0 auto;
  }
}
.btn::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 1px;
  left: 85%;
  top: 25%;
  background: #171717;
}
@media screen and (max-width: 768px) {
  .btn::before {
    left: 87%;
  }
}
.btn::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  top: 16%;
  left: 90.5%;
  border-top: 1px solid #171717;
  border-right: 1px solid #171717;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .btn::after {
    left: 92.5%;
  }
}
.btn__line {
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background: #171717;
}
.btn:hover .btn__line {
  -webkit-animation: hover_line 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
          animation: hover_line 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.btn-grd {
  width: 540px;
  height: 100px;
  background: -o-linear-gradient(290deg, #3A3A3C, #44556F, #5A748F, #5D7490, #5A6380, #505A75);
  background: linear-gradient(160deg, #3A3A3C, #44556F, #5A748F, #5D7490, #5A6380, #505A75);
  background-size: 200% 100%;
  -webkit-animation: bggradient 10s ease infinite;
          animation: bggradient 10s ease infinite;
  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: 0 auto;
}
@media screen and (max-width: 768px) {
  .btn-grd {
    width: 300px;
    height: 70px;
  }
}
.btn-grd__txt {
  color: #fff;
  font-size: 2.4rem;
  font-family: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: 0.15em;
  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;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .btn-grd__txt {
    font-size: 1.6rem;
  }
}
.btn-grd__txt::before {
  position: absolute;
  content: "";
  right: -153px;
  top: 50%;
  width: 17px;
  height: 1px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .btn-grd__txt::before {
    right: -81px;
  }
}
.btn-grd__txt::after {
  position: absolute;
  content: "";
  top: 47%;
  right: -153px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .btn-grd__txt::after {
    top: 45.5%;
    right: -81px;
  }
}

.top-btn {
  position: absolute;
  font-size: 1.2rem;
  font-family: "Marcellus";
  text-transform: uppercase;
  top: 53%;
  right: 4%;
  background: #171717;
  border: 0;
  padding: 0;
  z-index: 10;
}
.top-btn::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 60px;
  right: 5px;
  top: -135%;
  background: #dddddd;
}
.top-btn__link {
  color: #dddddd;
  display: block;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}

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

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

#stalker.hov_ {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 750;
  mix-blend-mode: color-dodge;
  pointer-events: none;
  border-radius: 50%;
  overflow: hidden;
  width: 22.875rem;
  height: 22.875rem;
  margin: -11.4375rem 0px 0px -11.4375rem;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
#stalker__bg.hov_ {
  pointer-events: none;
  width: 22.875rem;
  height: 22.875rem;
  position: absolute;
  top: 0px;
  left: 0px;
  background: -o-radial-gradient(50% 50%, closest-side, #193f91 0%, rgba(6, 19, 52, 0) 100%) 0% 0% no-repeat padding-box padding-box transparent;
  background: radial-gradient(closest-side at 50% 50%, #193f91 0%, rgba(6, 19, 52, 0) 100%) 0% 0% no-repeat padding-box padding-box transparent;
  -webkit-transition: opacity 0.4s cubic-bezier(0.34, 0.174, 0.304, 1) 0s;
  -o-transition: opacity 0.4s cubic-bezier(0.34, 0.174, 0.304, 1) 0s;
  transition: opacity 0.4s cubic-bezier(0.34, 0.174, 0.304, 1) 0s;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
          transform: scale(1.02);
}

.breadcrumb {
  margin-top: 20px;
}
.breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.breadcrumb__item {
  font-size: 1.2rem;
  font-family: "Marcellus", serif;
  color: #959599;
  text-transform: uppercase;
  position: relative;
}
.breadcrumb__item::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 1px;
  background: #959599;
  top: 50%;
  left: 71%;
}
@media screen and (max-width: 768px) {
  .breadcrumb__item::after {
    width: 3px;
    height: 1px;
    top: 40%;
    left: 76%;
  }
}
.breadcrumb__item:last-child::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .breadcrumb__item {
    font-size: 1rem;
  }
}
.breadcrumb__link {
  margin-right: 20px;
  color: #959599;
}
@media screen and (max-width: 768px) {
  .breadcrumb__link {
    margin-right: 10px;
  }
}
.breadcrumb__link:hover {
  text-decoration: underline;
}

.sub-mv {
  width: 75.85%;
  height: 889px;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sub-mv {
    width: 78%;
    background-position: top center;
    height: 340px;
    padding-bottom: 0;
  }
}
.sub-mv__head {
  position: absolute;
  top: 39%;
  left: -19%;
}
@media screen and (max-width: 768px) {
  .sub-mv__head {
    top: 67.5%;
    left: -19%;
  }
}
.sub-mv__ttl-sub {
  margin-top: 4px;
}

.sub-bg__concept {
  background-image: url(../image/concept__mv.png);
  background-position: top center;
  background-size: cover;
}
.sub-bg__appr {
  background-image: url(../image/approach__mv.png);
  background-position: top center;
  background-size: cover;
}
.sub-bg__service {
  background-image: url(../image/service__mv.png);
  background-position: top center;
  background-size: cover;
}
.sub-bg__gallery {
  background-image: url(../image/gallery__mv.png);
  background-position: top center;
  background-size: cover;
}
.sub-bg__designers {
  background-image: url(../image/designers__mv.png);
  background-position: top center;
  background-size: cover;
}
.sub-bg__recruit {
  background-image: url(../image/recruit__mv.png);
  background-position: top center;
  background-size: cover;
}

.sub-mv2 {
  text-align: right;
  margin-top: 197px;
}
@media screen and (max-width: 768px) {
  .sub-mv2 {
    margin-top: 68px;
  }
}
@media screen and (max-width: 768px) {
  .sub-mv2__inner {
    padding: 0 20px;
  }
}

.category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.category__list {
  display: inline-block;
  font-size: 1.4rem;
  font-family: "Marcellus", serif;
  color: #71859e;
  line-height: 1;
  text-transform: uppercase;
  border: solid 0.5px #71859e;
  padding: 5.5px 17px 4px;
  margin-right: 9px;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .pagination {
    padding-top: 20px;
  }
}
.pagination__current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Cinzel", serif;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  margin: 0 17px;
  border: solid 1px #8c8c8c;
  border-radius: 22.5px;
  color: #8c8c8c;
  font-weight: bold;
  font-size: 1.5rem;
}
.pagination__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  color: #8c8c8c;
  font-family: "Cinzel", serif;
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0 11px;
}
.pagination__next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  color: #8c8c8c;
  margin: 0 29px;
}

.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi {
    padding-top: 30px;
  }
}
.wp-pagenavi > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  color: #8c8c8c;
  font-family: "Marcellus", serif;
  font-weight: bold;
  font-size: 1.4rem;
  border: 1px solid #ccc !important;
  margin: 0 10px !important;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi > * {
    margin: 0 5px !important;
  }
}
.wp-pagenavi > *.page-dot {
  border-color: transparent;
}
.wp-pagenavi > *.current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Cinzel", serif;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  color: #fff !important;
  background: #000 !important;
  border: 1px solid #000 !important;
}
.wp-pagenavi > *.previouspostslink, .wp-pagenavi > *.nextpostslink {
  color: transparent;
}
.wp-pagenavi > *.previouspostslink:before, .wp-pagenavi > *.nextpostslink:before {
  color: #8c8c8c;
}
.wp-pagenavi > *.nextpostslink:before {
  content: "＞";
}
.wp-pagenavi > *.previouspostslink:before {
  content: "＜";
}
.wp-pagenavi a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.wp-pagenavi a:hover {
  color: #fff;
  background: #000;
}
.wp-pagenavi .pages,
.wp-pagenavi .last,
.wp-pagenavi .first {
  display: none;
}

/*----------------------------------
 mv
----------------------------------*/
.mv {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .mv {
    display: block;
    padding-bottom: 80px;
  }
}
.mv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0 110px 0 135px;
}
@media screen and (max-width: 768px) {
  .mv__inner {
    padding: 11px 39px 0;
  }
}
.mv__head {
  margin-top: 88%;
}
@media screen and (max-width: 768px) {
  .mv__head {
    margin-top: 29%;
  }
}
.mv__ttl {
  font-size: 6rem;
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .mv__ttl {
    font-size: 4.2rem;
  }
}
.mv__heigth {
  line-height: 1.5;
  display: block;
  font-size: 6rem;
}
@media screen and (max-width: 768px) {
  .mv__heigth {
    font-size: 4.2rem;
  }
}
.mv__sub {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.1em;
  padding-top: 197px;
  margin-left: 0.5%;
}
@media screen and (max-width: 768px) {
  .mv__sub {
    font-size: 1.6rem;
    padding-top: 127px;
    margin-left: 1.5%;
  }
}
.mv__bg {
  position: absolute;
  width: 22.5%;
  z-index: -1;
  top: 242px;
  left: 3.9%;
}
@media screen and (max-width: 768px) {
  .mv__bg {
    width: 60.5%;
    top: 32%;
    left: 0%;
  }
}
.mv__body {
  margin-top: 120%;
}
@media screen and (max-width: 768px) {
  .mv__body {
    margin-top: 750px;
  }
}
.mv__txt {
  margin-top: 12.2%;
}
.mv__txt-lg {
  margin-top: 8%;
}
.mv__btn {
  margin-top: 12%;
}
.mv__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 153%;
          flex: 0 1 153%;
}
@media screen and (max-width: 768px) {
  .mv__slide {
    position: absolute;
    top: 11.5%;
    right: 0;
    z-index: -1;
  }
}
.mv__list {
  position: relative;
}
@media screen and (max-width: 768px) {
  .mv__list {
    margin-left: 59px;
    width: 442px;
  }
}
.mv__img {
  opacity: 0;
  position: absolute;
  -webkit-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

/*----------------------------------
 approach
----------------------------------*/
.appr__bg {
  background-image: url(../image/top__appr__bg.png);
  background-position: center center;
  background-size: cover;
  height: 40.5vw;
  z-index: -1;
}
.appr__ttl {
  font-weight: 400;
  font-size: 9rem;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  color: #fff;
  mix-blend-mode: overlay;
  padding: 412px 130px 0;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .appr__ttl {
    font-size: 6.3rem;
    padding: 115px 40px 0;
  }
}
.appr__head {
  background-image: url(../image/top__appr.png);
  background-position: center center;
  background-size: cover;
  height: 545px;
}
@media screen and (max-width: 768px) {
  .appr__head {
    height: 245px;
  }
}
.appr__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 111px;
  top: 88px;
  background-image: url(../image/top__appr__bg.png);
  background-position: center center;
  background-size: cover;
  height: 478px;
  padding: 63px 135px 0;
}
@media screen and (max-width: 768px) {
  .appr__body {
    display: block;
    padding: 40px 40px 0;
    height: 625px;
  }
}
.appr__sub {
  margin-top: 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45.5%;
          flex: 0 0 45.5%;
}
.appr__txt-lg {
  margin-top: 28px;
}
.appr__cont {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 47%;
          flex: 0 0 47%;
}
.appr__block {
  margin-top: 41px;
}

/*----------------------------------
 service
----------------------------------*/
.service {
  margin-bottom: 125px;
}
@media screen and (max-width: 768px) {
  .service {
    margin-bottom: 80px;
  }
}
.service__head {
  margin-top: 141px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service__head {
    margin-top: 80px;
  }
}
.service__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 65px;
}
@media screen and (max-width: 768px) {
  .service__body {
    display: block;
  }
}
.service__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .service__block {
    margin-bottom: 40px;
  }
}
.service__block2 {
  margin-top: 63px;
}
.service__flex {
  position: relative;
}
.service__flex2 {
  margin-top: 50px;
  position: relative;
}
.service__link {
  display: inline-block;
}
.service__sub {
  position: absolute;
  color: #fff;
  font-size: 3rem;
  font-family: "Marcellus", serif;
  text-transform: uppercase;
  mix-blend-mode: overlay;
  top: 72%;
  left: 8%;
}
.service__sub2 {
  position: absolute;
  color: #fff;
  font-size: 3rem;
  font-family: "Marcellus", serif;
  text-transform: uppercase;
  mix-blend-mode: overlay;
  top: 81%;
  left: 9%;
}
.service__btn {
  margin: 0 auto;
}

/*----------------------------------
 product
----------------------------------*/
.product {
  background-image: url(../image/top__product1.png);
  background-position: center center;
  background-size: cover;
  height: 600px;
  margin-bottom: 500px;
}
@media screen and (max-width: 1600px) {
  .product {
    height: 482px;
  }
}
@media screen and (max-width: 768px) {
  .product {
    height: 300px;
    margin-bottom: 150vw;
  }
}
@media screen and (max-width: 500px) {
  .product {
    margin-bottom: 780px;
  }
}
.product__head {
  top: 10%;
  padding-left: 63px;
  padding-top: 296px;
}
@media screen and (max-width: 768px) {
  .product__head {
    padding-left: 10px;
    padding-top: 196px;
  }
}
.product__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 54px;
}
@media screen and (max-width: 768px) {
  .product__body {
    display: block;
    margin-top: 90px;
  }
}
.product__block {
  margin-right: 47px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .product__block {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.product__block2 {
  position: relative;
}
.product__link {
  display: block;
}
.product__btn {
  position: absolute;
  display: inline-block;
  width: 191.5px;
  font-size: 3rem;
  top: 45%;
  left: 52%;
  padding-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .product__btn {
    left: 47%;
    width: 186px;
  }
}
.product__btn::before {
  left: 87%;
  top: 29%;
}
.product__btn::after {
  top: 23%;
  left: 91.5%;
}

/*----------------------------------
 gallery
----------------------------------*/
@media screen and (max-width: 768px) {
  .gallery {
    margin-bottom: 70px;
  }
}
.gallery__inner {
  padding-top: 27px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .gallery__inner {
    display: block;
  }
}
.gallery__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .gallery__link {
    display: block;
  }
}
.gallery__bg {
  position: absolute;
  content: "";
  top: -3%;
  left: 14.5%;
  width: 76%;
  height: 383px;
  z-index: -1;
  background: -o-linear-gradient(290deg, #3A3A3C, #44556F, #5A748F, #5D7490, #5A6380, #505A75);
  background: linear-gradient(160deg, #3A3A3C, #44556F, #5A748F, #5D7490, #5A6380, #505A75);
  background-size: 200% 100%;
  -webkit-animation: bggradient 10s ease infinite;
          animation: bggradient 10s ease infinite;
}
@media screen and (max-width: 768px) {
  .gallery__bg {
    width: 85.6%;
    height: 800px;
  }
}
.gallery__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gallery__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 348px;
  height: 384px;
}
@media screen and (max-width: 768px) {
  .gallery__img {
    width: 50%;
  }
}
.gallery__img2 {
  -o-object-fit: cover;
     object-fit: cover;
  width: 348px;
  height: 384px;
  margin-top: 52px;
}
@media screen and (max-width: 768px) {
  .gallery__img2 {
    width: 50%;
  }
}
.gallery__cont {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 36%;
          flex: 0 0 36%;
  text-align: center;
}
.gallery__ttl {
  margin-top: 78px;
  -webkit-text-fill-color: #ffffff;
  opacity: 0.5;
  mix-blend-mode: overlay;
}
.gallery__svg {
  margin-top: 5px;
  width: 190px;
}
.gallery__btn {
  text-align: left;
  margin: 0 auto;
  color: #fff;
  margin-top: 43px;
}
.gallery__btn::before {
  background: #fff;
}
.gallery__btn::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.gallery__btn .btn__line {
  background: #fff;
}

/*----------------------------------
 desiger
----------------------------------*/
.designer {
  padding-top: 185px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 768px) {
  .designer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-top: 100px;
  }
}
.designer__block {
  -ms-flex-preferred-size: 69%;
      flex-basis: 69%;
}
@media screen and (max-width: 768px) {
  .designer__block {
    margin-top: 90%;
  }
}
@media screen and (max-width: 768px) {
  .designer__head {
    text-align: center;
  }
}
.designer__ttl {
  padding-left: 130px;
}
@media screen and (max-width: 768px) {
  .designer__ttl {
    padding-left: 0px;
    text-align: center;
  }
}
.designer__inner {
  padding: 0 118px 40px 134px;
}
@media screen and (max-width: 768px) {
  .designer__inner {
    padding: 0 30px;
  }
}
.designer__txt-lg {
  margin-top: 24px;
}
.designer__txt {
  margin-top: 30px;
}
.designer__btn {
  margin-top: 45px;
}
.designer__slide {
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
  margin-top: 75px;
  position: relative;
  padding-bottom: 37%;
}
@media screen and (max-width: 768px) {
  .designer__slide {
    margin-top: 0;
    padding-bottom: 0;
  }
}
.designer__slide::before {
  position: absolute;
  content: "";
  top: -14%;
  left: 13%;
  width: 87%;
  height: 383px;
  z-index: -1;
  background: #dddddd;
  background-size: 200% 100%;
}
@media screen and (max-width: 768px) {
  .designer__slide::before {
    height: 75px;
  }
}
.designer__img {
  position: absolute;
  opacity: 0;
  width: 100%;
  -webkit-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
@media screen and (max-width: 768px) {
  .designer__img {
    margin-top: 75px;
  }
}
.designer__timer {
  position: absolute;
  top: 466px;
  right: 26px;
}
@media screen and (max-width: 768px) {
  .designer__timer {
    top: 300px;
  }
}
.designer__item {
  position: relative;
  width: 33px;
  height: 33px;
}
.designer__circle {
  stroke-dashoffset: -91px;
  stroke-dasharray: 0px 101px;
  stroke-opacity: 1;
}
.designer .active {
  -webkit-animation-name: circle;
          animation-name: circle;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
.designer__bg {
  opacity: 0.3;
}
.designer__dot {
  width: 4px;
  height: 4px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border-radius: 50%;
  background-color: #fff;
}
.designer__svg {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

/*----------------------------------
 recruit
----------------------------------*/
.recruit {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .recruit {
    margin-top: 80px;
  }
}
.recruit__inner {
  padding: 0 60px;
}
@media screen and (max-width: 768px) {
  .recruit__inner {
    padding: 0;
  }
}
.recruit__link {
  display: block;
}
.recruit__bg {
  background-image: url(../image/top__recruit.png);
  background-position: top center;
  background-size: cover;
  height: 720px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .recruit__bg {
    background-image: url(../image/top__recruit__sp.png);
    height: 310px;
  }
}
.recruit__bg::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.recruit__block {
  text-align: right;
  margin-right: 90px;
  padding-top: 440px;
}
@media screen and (max-width: 768px) {
  .recruit__block {
    margin-right: 40px;
    padding-top: 60px;
  }
}
.recruit__txt-lg {
  color: #fff;
  font-size: 3rem;
  margin-right: -6px;
  line-height: 1.923;
  letter-spacing: 0.1em;
  mix-blend-mode: overlay;
}
@media screen and (max-width: 768px) {
  .recruit__txt-lg {
    font-size: 2rem;
  }
}
.recruit__btn {
  color: #fff;
  margin-top: 13px;
  margin-left: auto;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .recruit__btn {
    margin-right: 0;
  }
}
.recruit__btn::before {
  background: #fff;
}
.recruit__btn::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.recruit__btn .btn__line {
  background: #fff;
}

/*----------------------------------
 access
----------------------------------*/
.access {
  position: relative;
  margin-top: 150px;
  margin-bottom: 110px;
}
@media screen and (max-width: 768px) {
  .access {
    margin-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .access {
    margin-bottom: 40px;
  }
}
.access__bg {
  position: relative;
}
.access__bg::before {
  position: absolute;
  content: "";
  margin-top: 88px;
  left: 0;
  width: 95%;
  height: 515px;
  z-index: -1;
  background: #dddddd;
  background-size: 200% 100%;
}
@media screen and (max-width: 768px) {
  .access__bg::before {
    width: 100%;
    margin-top: 30px;
    height: 1080px;
  }
}
.access__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .access__flex {
    display: block;
  }
}
.access__inner {
  margin: 0 auto;
  margin-top: 58px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 19%;
          flex: 0 0 19%;
}
@media screen and (max-width: 768px) {
  .access__inner {
    padding: 0;
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .access__ttl {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .access__box {
    margin: 0 auto;
    width: 260px;
  }
}
.access__adress {
  font-size: 1.8rem;
  margin-top: 30px;
}
.access__open {
  font-size: 1.6rem;
  line-height: 1;
  margin-top: 55px;
}
.access__open2 {
  font-size: 1.6rem;
  line-height: 1;
  margin-top: 17px;
}
.access__close {
  font-size: 1.6rem;
  line-height: 1;
  margin-top: 44px;
}
.access__tell {
  font-size: 1.6rem;
  line-height: 1;
  margin-top: 44px;
}
@media screen and (max-width: 768px) {
  .access__map {
    text-align: center;
    margin-top: 60px;
    padding: 0 30px;
  }
}
.access__iframe {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
@media screen and (max-width: 1920px) {
  .access__iframe {
    width: 1000px;
  }
}
@media screen and (max-width: 1600px) {
  .access__iframe {
    width: 860px;
  }
}
@media screen and (max-width: 768px) {
  .access__iframe {
    width: 100%;
  }
}
.access__link {
  width: 540px;
  height: 100px;
  background: -o-linear-gradient(290deg, #3A3A3C, #44556F, #5A748F, #5D7490, #5A6380, #505A75);
  background: linear-gradient(160deg, #3A3A3C, #44556F, #5A748F, #5D7490, #5A6380, #505A75);
  background-size: 200% 100%;
  -webkit-animation: bggradient 10s ease infinite;
          animation: bggradient 10s ease infinite;
  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: 0 auto;
}
@media screen and (max-width: 768px) {
  .access__link {
    width: 300px;
    height: 70px;
  }
}
.access__btn {
  color: #fff;
  font-size: 2.4rem;
  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;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .access__btn {
    font-size: 1.6rem;
  }
}
.access__btn::before {
  position: absolute;
  content: "";
  left: 242%;
  top: 50%;
  width: 17px;
  height: 1px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .access__btn::before {
    left: 182%;
  }
}
.access__btn::after {
  position: absolute;
  content: "";
  top: 47%;
  left: 251.5%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .access__btn::after {
    top: 45.5%;
    left: 195.5%;
  }
}

/*----------------------------------
　news
----------------------------------*/
.news {
  padding-top: 102px;
  margin-bottom: 145px;
}
.news__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .news__inner {
    display: block;
  }
}
.news__head {
  position: relative;
}
.news__ttl {
  width: 116%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .news__ttl {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .news__block {
    position: absolute;
    top: 550%;
    width: 100%;
  }
}
.news__btn {
  margin-top: 38px;
}
.news__time {
  width: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.news__body {
  margin-left: 122px;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .news__body {
    margin-left: 0;
    margin-top: 40px;
  }
}
.news__body {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .news__body {
    width: 100%;
  }
}
.news__list {
  padding-bottom: 18px;
  margin-bottom: 14px;
}
.news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-bottom: 19px;
}
.news__link:hover .news__line {
  -webkit-animation: hover_line 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
          animation: hover_line 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.news__link::before {
  position: absolute;
  content: "";
  right: 26px;
  top: 28.5%;
  width: 15px;
  height: 1px;
  background: #9ea2aa;
}
@media screen and (max-width: 768px) {
  .news__link::before {
    right: 10px;
  }
}
.news__link::after {
  position: absolute;
  content: "";
  top: 22.8%;
  right: 26px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #9ea2aa;
  border-right: 1px solid #9ea2aa;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .news__link::after {
    right: 10px;
  }
}
.news__day {
  color: #171717;
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
}
.news__number {
  display: block;
  font-size: 3.6rem;
  line-height: 0.9;
  color: #171717;
  font-family: "Cinzel", serif;
  margin-left: 3px;
}
.news__category {
  font-size: 1.2rem;
  font-family: "Marcellus", serif;
  color: #9ea2aa;
  margin-left: 50px;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .news__category {
    margin-left: 20px;
  }
}
.news__text {
  line-height: 1.4;
  letter-spacing: 0.075em;
  margin-left: 54px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news__text {
    margin-left: 20px;
    width: 47%;
  }
}
.news__line {
  background: #9ea2aa;
}

/*----------------------------------
 vision
----------------------------------*/
.vision {
  margin-top: 52px;
  margin-bottom: 85px;
}
.vision__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .vision__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.vision__img {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .vision__img {
    width: 100%;
    height: 460px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
  }
}
.vision__cont {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
  margin-top: 90px;
  margin-left: 79px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .vision__cont {
    margin: 0;
    padding-top: 40px;
  }
}
.vision__now {
  position: absolute;
  font-size: 1.2rem;
  left: 130px;
  letter-spacing: 0.2em;
}
.vision__txt {
  margin-top: 38px;
}
@media screen and (max-width: 768px) {
  .vision__txt {
    margin-top: 0;
  }
}

/*----------------------------------
 philosophy
----------------------------------*/
.philosophy {
  background-image: url(../image/concept__phil__bg.png);
  background-position: center center;
  background-size: cover;
  height: 480px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .philosophy {
    height: 600px;
  }
}
.philosophy__img {
  width: 212.5px;
  height: 75px;
}
@media screen and (max-width: 768px) {
  .philosophy__img {
    width: 133.5px;
    height: 45px;
  }
}
.philosophy__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 81px;
  padding-left: 91px;
}
@media screen and (max-width: 768px) {
  .philosophy__head {
    padding-left: 0;
  }
}
.philosophy__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-left: 31px;
}
.philosophy__ttl {
  font-size: 9.5rem;
}
.philosophy__ttl__lg {
  position: absolute;
  left: 30%;
  top: 13%;
  font-size: 9.5rem;
  opacity: 0.2;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .philosophy__ttl__lg {
    top: 8%;
    left: 22%;
  }
}
.philosophy__sp {
  line-height: 0.5;
}
.philosophy__txt {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  line-height: 1.7;
  position: relative;
}
.philosophy__txt::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 1px;
  top: 54%;
  left: 110%;
  background: #171717;
}
.philosophy__txt2 {
  font-size: 1.2rem;
  color: #9ea0a5;
  line-height: 1;
  display: inline-block;
  border: solid 1px #9ea0a5;
  padding: 4px 14px;
  margin-bottom: 5px;
}
.philosophy__txt3 {
  line-height: 1.6;
}
.philosophy__block {
  margin-left: 56px;
}
.philosophy__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .philosophy__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.philosophy__txt-lg {
  -ms-flex-preferred-size: 47.8%;
      flex-basis: 47.8%;
  font-size: 2.4rem;
  margin-top: 66px;
  margin-left: 4px;
}
@media screen and (max-width: 768px) {
  .philosophy__txt-lg {
    font-size: 2.3rem;
    margin-top: 90px;
  }
}
.philosophy__txt4 {
  -ms-flex-preferred-size: 51%;
      flex-basis: 51%;
  margin-top: 67px;
  line-height: 2.4;
}
@media screen and (max-width: 768px) {
  .philosophy__txt4 {
    margin-top: 20px;
    line-height: 2.667;
  }
}

/*----------------------------------
 theory
----------------------------------*/
.theory__inner {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .theory__inner {
    padding: 0px;
  }
}
.theory__ttl {
  text-align: center;
  margin-top: 105px;
}
@media screen and (max-width: 768px) {
  .theory__ttl {
    padding: 0 30px;
    margin-top: 60px;
  }
}
.theory__txt {
  text-align: center;
  margin-top: 28px;
}
@media screen and (max-width: 768px) {
  .theory__txt {
    padding: 0 30px;
  }
}
.theory__block {
  text-align: center;
  position: relative;
  width: 1090px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .theory__block {
    width: 450px;
  }
}
.theory__img {
  width: 80%;
  margin-top: 75px;
  margin-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .theory__img {
    width: 100%;
    margin-bottom: 80px;
  }
}
.theory__box {
  display: none;
  position: absolute;
  font-size: 1.4rem;
  text-align: left;
  line-height: 2.2;
  width: 288px;
  color: #71859e;
  background-color: #fff;
  padding: 34px 30px 35px 40px;
  -webkit-box-shadow: 0px 0px 65px rgba(81, 109, 139, 0.1);
          box-shadow: 0px 0px 65px rgba(81, 109, 139, 0.1);
}
@media screen and (max-width: 768px) {
  .theory__box {
    padding: 15px;
    font-size: 1.2rem;
    line-height: 2;
    width: 140px;
  }
}
.theory__btn {
  position: absolute;
  display: block;
  width: 35px;
  height: 35px;
  background: rgba(0, 0, 0, 0);
  border: none;
}
@media screen and (max-width: 768px) {
  .theory__btn {
    width: 20px;
    height: 20px;
  }
}
.theory__btn::before {
  display: block;
  content: "";
  position: absolute;
  width: 16px;
  height: 1px;
  top: 48%;
  left: 25%;
  background-color: #171717;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  -ms-transform: rotate(90deg);
      transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  .theory__btn::before {
    width: 10px;
  }
}
.theory__btn::after {
  display: block;
  content: "";
  position: absolute;
  width: 16px;
  height: 1px;
  top: 48%;
  left: 25%;
  background-color: #171717;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .theory__btn::after {
    width: 10px;
  }
}
.theory__btn.on::before {
  -ms-transform: rotate(0deg);
      transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}

/*----------------------------------
 tech
----------------------------------*/
.tech__head {
  background-image: url(../image/concept__tecq.png);
  background-position: center;
  background-size: cover;
  height: 547px;
  z-index: -2;
  position: relative;
}
@media screen and (max-width: 768px) {
  .tech__head {
    background-position: bottom left;
    height: 400px;
  }
  .tech__head::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -1;
  }
}
.tech__block {
  width: 500px;
  display: block;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .tech__block {
    width: 100%;
  }
}
.tech__ttl {
  color: #fff;
  font-size: 2.6rem;
  line-height: 1.923;
  letter-spacing: 0.1em;
  padding-top: 238px;
}
@media screen and (max-width: 768px) {
  .tech__ttl {
    padding-top: 50px;
  }
}
.tech__txt {
  color: #fff;
  margin-top: 26px;
}
.tech__body {
  margin-top: 75px;
  margin-bottom: 133px;
}
@media screen and (max-width: 768px) {
  .tech__body {
    margin-bottom: 60px;
  }
}
.tech__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .tech__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.tech__img {
  width: 46%;
}
@media screen and (max-width: 768px) {
  .tech__img {
    width: 100%;
  }
}
.tech__box {
  width: 500px;
  margin-left: 45px;
}
@media screen and (max-width: 768px) {
  .tech__box {
    width: 100%;
    margin-left: 0px;
  }
}
.tech__sub-ttl {
  font-family: "Marcellus", serif;
  font-size: 1.8rem;
  color: #71859e;
  margin-top: 44px;
}
.tech__txt-lg {
  font-size: 2.4rem;
  margin-top: 16px;
  margin-left: 3px;
  line-height: 1.6;
  position: relative;
}
.tech__txt1 {
  margin-top: 28px;
}
.tech__line {
  position: absolute;
  bottom: 2px;
  left: 0;
  content: "";
  height: 10px;
  background: #e9ecf2;
  z-index: -1;
}
.tech__width-1 {
  width: 105px;
}
.tech__width-2 {
  width: 257px;
}
.tech__width-3 {
  width: 187px;
}
.tech__width-4 {
  width: 210px;
}

/*----------------------------------
 keyword
----------------------------------*/
.keyword {
  position: relative;
}
.keyword__inner {
  margin-bottom: 250px;
}
@media screen and (max-width: 768px) {
  .keyword__inner {
    margin-bottom: 60px;
  }
}
.keyword__bg {
  position: absolute;
  background-image: url(../image/approach__keyword.png);
  background-position: center;
  background-size: cover;
  width: 778px;
  height: 672px;
  top: -145px;
  left: 31%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .keyword__bg {
    position: static;
    background-image: url(../image/approach__keyword__sp.png);
    background-position: center;
    background-size: cover;
    width: 425px;
    height: 394px;
    left: 0;
    margin: 20px auto 0;
  }
}
.keyword__block {
  width: 330px;
  letter-spacing: 0.15em;
  margin-top: 241px;
}
@media screen and (max-width: 768px) {
  .keyword__block {
    width: 100%;
    margin-top: 30px;
  }
}
.keyword__txt {
  margin-top: 20px;
  margin-left: 6px;
}

/*----------------------------------
 appr-menu
----------------------------------*/
.appr-menu {
  position: relative;
  margin-bottom: 133px;
}
@media screen and (max-width: 768px) {
  .appr-menu {
    margin-bottom: 60px;
  }
}
.appr-menu::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 355px;
  background-image: url(../image/approach__bg.png);
  background-position: center center;
  background-size: cover;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .appr-menu__inner {
    padding: 0 40px;
  }
}
.appr-menu__head {
  text-align: center;
}
.appr-menu__ttl {
  padding-top: 85px;
}
@media screen and (max-width: 768px) {
  .appr-menu__ttl {
    padding-top: 40px;
  }
}
.appr-menu__txt {
  letter-spacing: 0.1em;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .appr-menu__txt {
    margin-top: 20px;
    text-align: left;
  }
}
.appr-menu__flex {
  margin-top: 67px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.appr-menu__flex:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .appr-menu__flex:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .appr-menu__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.appr-menu__picture {
  width: 56.5%;
}
@media screen and (max-width: 768px) {
  .appr-menu__picture {
    width: 100%;
  }
}
.appr-menu__img {
  width: 100%;
}
.appr-menu__box {
  width: 37.5%;
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .appr-menu__box {
    width: 100%;
    margin-top: 40px;
  }
}
.appr-menu__txt-lg {
  margin-top: 18px;
  line-height: 1.8;
}
.appr-menu__sm {
  font-size: 2rem;
}
.appr-menu__txt1 {
  margin-top: 28px;
  letter-spacing: 0em;
  line-height: 2.4;
}
@media screen and (max-width: 768px) {
  .appr-menu__txt1 {
    margin-top: 20px;
  }
}
.appr-menu__category {
  margin-top: 33px;
}

/*----------------------------------
 serv-detail
----------------------------------*/
.serv-detail__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 128px;
}
@media screen and (max-width: 768px) {
  .serv-detail__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 80px;
  }
}
.serv-detail__txt-lg {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
@media screen and (max-width: 768px) {
  .serv-detail__txt-lg {
    font-size: 2.5rem;
  }
}
.serv-detail__txt {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
}
@media screen and (max-width: 768px) {
  .serv-detail__txt {
    margin-top: 30px;
  }
}

/*----------------------------------
 serv-menu
----------------------------------*/
.serv-menu {
  position: relative;
  margin-bottom: 132px;
}
@media screen and (max-width: 768px) {
  .serv-menu {
    margin-bottom: -20px;
  }
}
.serv-menu::before {
  position: absolute;
  background-image: url(../image/service__bg.png);
  content: "";
  width: 630px;
  height: 208px;
  top: 77px;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  .serv-menu::before {
    width: 80%;
    height: 100px;
    top: 120px;
  }
}
.serv-menu::after {
  position: absolute;
  background-image: url(../image/service__bg.png);
  content: "";
  width: 630px;
  height: 208px;
  bottom: 226px;
  right: 0;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  .serv-menu::after {
    display: none;
  }
}
.serv-menu__ttl {
  text-align: center;
  font-size: 9rem;
  margin-top: 100px;
  margin-bottom: 46px;
}
@media screen and (max-width: 768px) {
  .serv-menu__ttl {
    margin-top: 80px;
    font-size: 5.9rem;
    text-align: left;
  }
}
.serv-menu__list {
  position: relative;
  margin-bottom: 122px;
}
@media screen and (max-width: 768px) {
  .serv-menu__list {
    margin-bottom: 0px;
  }
}
.serv-menu__bg-cut {
  position: absolute;
  background-image: url(../image/service__cut.png);
  background-position: top center;
  background-size: cover;
  width: 67%;
  height: 540px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .serv-menu__bg-cut {
    width: 100%;
    height: 250px;
    background-position: top center;
  }
}
.serv-menu__bg-color {
  position: absolute;
  background-image: url(../image/serivce__color.png);
  background-position: top center;
  background-size: cover;
  width: 67%;
  height: 540px;
  z-index: -1;
  right: 0;
}
@media screen and (max-width: 768px) {
  .serv-menu__bg-color {
    width: 100%;
    height: 250px;
    background-position: top center;
  }
}
.serv-menu__bg-perm {
  position: absolute;
  background-image: url(../image/service__perm.png);
  background-position: top center;
  background-size: cover;
  width: 67%;
  height: 540px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .serv-menu__bg-perm {
    width: 100%;
    height: 250px;
    background-position: top center;
  }
}
.serv-menu__bg-care {
  position: absolute;
  background-image: url(../image/service__care.png);
  background-position: top center;
  background-size: cover;
  width: 67%;
  height: 540px;
  z-index: -1;
  right: 0;
}
@media screen and (max-width: 768px) {
  .serv-menu__bg-care {
    width: 100%;
    height: 250px;
    background-position: top center;
  }
}
.serv-menu__block {
  width: 38%;
  padding-top: 90px;
  padding-bottom: 80px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .serv-menu__block {
    width: 100%;
    margin-left: 0;
    padding-top: 300px;
  }
}
.serv-menu__block2 {
  width: 38%;
  padding-top: 90px;
  padding-bottom: 80px;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .serv-menu__block2 {
    width: 100%;
    margin-left: 0;
    padding-top: 300px;
  }
}
.serv-menu__block3 {
  width: 39.5%;
  padding-top: 90px;
  padding-bottom: 80px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .serv-menu__block3 {
    width: 100%;
    margin-left: 0;
    padding-top: 300px;
  }
}
.serv-menu__sub {
  font-family: "Marcellus", serif;
  font-weight: 500;
  color: #171717;
  text-transform: uppercase;
  font-size: 6rem;
  margin-left: 60px;
}
.serv-menu__num1 {
  position: relative;
}
@media screen and (max-width: 768px) {
  .serv-menu__num1 {
    font-size: 5rem;
  }
}
.serv-menu__num1::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 70px;
  height: 70px;
  top: -30%;
  left: -60px;
  background-image: url(../image/service__cut__num.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .serv-menu__num1::before {
    width: 60px;
    height: 60px;
    background-image: url(../image/service__cut__sp.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.serv-menu__num2 {
  position: relative;
  margin-left: 70px;
}
@media screen and (max-width: 768px) {
  .serv-menu__num2 {
    font-size: 5rem;
    margin-left: 60px;
  }
}
.serv-menu__num2::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 77px;
  height: 77px;
  top: -31%;
  left: -70px;
  background-image: url(../image/service__color__num.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .serv-menu__num2::before {
    width: 60px;
    height: 60px;
    left: -60px;
  }
}
.serv-menu__num3 {
  position: relative;
}
@media screen and (max-width: 768px) {
  .serv-menu__num3 {
    font-size: 5rem;
  }
}
.serv-menu__num3::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 70px;
  height: 70px;
  top: -30%;
  left: -60px;
  background-image: url(../image/service__perm__num.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .serv-menu__num3::before {
    width: 60px;
    height: 60px;
    background-image: url(../image/service__perm__sp.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.serv-menu__num4 {
  position: relative;
  margin-left: 70px;
}
@media screen and (max-width: 768px) {
  .serv-menu__num4 {
    font-size: 5rem;
    margin-left: 60px;
  }
}
.serv-menu__num4::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 80px;
  height: 72px;
  top: -30%;
  left: -70px;
  background-image: url(../image/service__care__num.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .serv-menu__num4::before {
    width: 60px;
    height: 60px;
    left: -60px;
  }
}
.serv-menu__txt-lg {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .serv-menu__txt-lg {
    margin-top: 20px;
  }
}
.serv-menu__txt {
  letter-spacing: 0;
  margin-top: 16px;
}
.serv-menu__btn {
  margin-top: 47px;
}
.serv-menu__btn-grd {
  margin-top: 210px;
}
@media screen and (max-width: 768px) {
  .serv-menu__btn-grd {
    margin-top: 0;
    margin-bottom: 80px;
  }
}

/*----------------------------------
 gallery-btn
----------------------------------*/
.gallery-btn__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 103px;
}
.gallery-btn__link {
  display: block;
  font-size: 1.6rem;
  font-family: "Marcellus", serif;
  color: #171717;
  text-transform: uppercase;
  text-align: center;
  margin: 0 23px;
  position: relative;
}
.gallery-btn__link::before {
  display: none;
}
.gallery-btn__link::after {
  display: none;
}

/*----------------------------------
 gallery-short
----------------------------------*/
.gallery-detail {
  margin-bottom: 185px;
}
@media screen and (max-width: 768px) {
  .gallery-detail {
    margin-bottom: 30px;
  }
}
.gallery-detail__ttl {
  font-size: 2.5rem;
  font-family: "Cinzel", serif;
  text-align: center;
  text-transform: uppercase;
  padding-top: 88px;
}
@media screen and (max-width: 768px) {
  .gallery-detail__ttl {
    padding-top: 11.45vw;
    padding-bottom: 40px;
  }
}
.gallery-detail__flex {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 40px;
}
@media screen and (max-width: 768px) {
  .gallery-detail__flex {
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }
}
.gallery-detail__box {
  margin-top: 60px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .gallery-detail__box {
    margin-top: 0;
    margin-bottom: 30px;
  }
}
@media all and (any-hover: hover) {
  .gallery-detail__box:hover {
    opacity: 0.7;
  }
}
.gallery-detail__box > img {
  width: 100%;
}
.gallery-detail__box:nth-child(2) > img, .gallery-detail__box:nth-child(5) > img, .gallery-detail__box:nth-child(8) > img, .gallery-detail__box:nth-child(11) > img, .gallery-detail__box:nth-child(14) > img, .gallery-detail__box:nth-child(17) > img, .gallery-detail__box:nth-child(20) > img, .gallery-detail__box:nth-child(23) > img, .gallery-detail__box:nth-child(26) > img, .gallery-detail__box:nth-child(29) > img, .gallery-detail__box:nth-child(32) > img, .gallery-detail__box:nth-child(35) > img, .gallery-detail__box:nth-child(38) > img, .gallery-detail__box:nth-child(41) > img, .gallery-detail__box:nth-child(44) > img, .gallery-detail__box:nth-child(47) > img, .gallery-detail__box:nth-child(50) > img, .gallery-detail__box:nth-child(53) > img, .gallery-detail__box:nth-child(56) > img, .gallery-detail__box:nth-child(59) > img, .gallery-detail__box:nth-child(61) > img, .gallery-detail__box:nth-child(64) > img, .gallery-detail__box:nth-child(67) > img, .gallery-detail__box:nth-child(70) > img, .gallery-detail__box:nth-child(73) > img, .gallery-detail__box:nth-child(76) > img, .gallery-detail__box:nth-child(79) > img, .gallery-detail__box:nth-child(81) > img, .gallery-detail__box:nth-child(83) > img, .gallery-detail__box:nth-child(86) > img, .gallery-detail__box:nth-child(89) > img, .gallery-detail__box:nth-child(91) > img, .gallery-detail__box:nth-child(94) > img, .gallery-detail__box:nth-child(97) > img, .gallery-detail__box:nth-child(100) > img {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .gallery-detail__box:nth-child(2) > img, .gallery-detail__box:nth-child(5) > img, .gallery-detail__box:nth-child(8) > img, .gallery-detail__box:nth-child(11) > img, .gallery-detail__box:nth-child(14) > img, .gallery-detail__box:nth-child(17) > img, .gallery-detail__box:nth-child(20) > img, .gallery-detail__box:nth-child(23) > img, .gallery-detail__box:nth-child(26) > img, .gallery-detail__box:nth-child(29) > img, .gallery-detail__box:nth-child(32) > img, .gallery-detail__box:nth-child(35) > img, .gallery-detail__box:nth-child(38) > img, .gallery-detail__box:nth-child(41) > img, .gallery-detail__box:nth-child(44) > img, .gallery-detail__box:nth-child(47) > img, .gallery-detail__box:nth-child(50) > img, .gallery-detail__box:nth-child(53) > img, .gallery-detail__box:nth-child(56) > img, .gallery-detail__box:nth-child(59) > img, .gallery-detail__box:nth-child(61) > img, .gallery-detail__box:nth-child(64) > img, .gallery-detail__box:nth-child(67) > img, .gallery-detail__box:nth-child(70) > img, .gallery-detail__box:nth-child(73) > img, .gallery-detail__box:nth-child(76) > img, .gallery-detail__box:nth-child(79) > img, .gallery-detail__box:nth-child(81) > img, .gallery-detail__box:nth-child(83) > img, .gallery-detail__box:nth-child(86) > img, .gallery-detail__box:nth-child(89) > img, .gallery-detail__box:nth-child(91) > img, .gallery-detail__box:nth-child(94) > img, .gallery-detail__box:nth-child(97) > img, .gallery-detail__box:nth-child(100) > img {
    margin-top: 0;
  }
}
.gallery-detail__txt {
  font-family: "Marcellus", serif;
  line-height: 1;
  margin-top: 24px;
}
.gallery-detail__txt-lg {
  font-size: 1.8rem;
}
.gallery-detail__category {
  color: #959599;
  font-family: "Marcellus", serif;
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 20px;
}

/*----------------------------------
 gallery-popup
----------------------------------*/
/* モーダル */
.modal-overlay {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(48, 48, 48, 0.8);
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000;
}

.modal-container {
  position: relative;
  background-color: #fff;
  max-height: 86vh;
  max-width: 680px;
  overflow-y: auto;
  padding: 30px;
  width: 80%;
  text-align: center;
}
.modal-container img {
  width: 100%;
  max-height: 100%;
}
@media screen and (max-width: 768px) {
  .modal-container {
    padding: 15px;
  }
}

.modal-close {
  position: absolute;
  left: 0px;
  top: 0px;
  padding: 0;
  width: 40px;
  height: 40px;
  color: #878585;
  font-size: 40px;
  line-height: 40px;
  text-align: center;
  background: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
}

/* モーダルアニメーション */
@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
@keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal-overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal-container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal-overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal-container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal-container,
.micromodal-slide .modal-overlay {
  will-change: transform;
}

/*----------------------------------
 partner
----------------------------------*/
.partner {
  position: relative;
  margin-bottom: 40px;
}
.partner::before {
  position: absolute;
  background-image: url(../image/designers__bg.png);
  background-position: center center;
  background-size: cover;
  content: "";
  width: 84.5%;
  height: 90%;
  top: 90px;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .partner::before {
    width: 100%;
    height: 100%;
  }
}
.partner__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .partner__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.partner__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
.partner__cont {
  -ms-flex-preferred-size: 53%;
      flex-basis: 53%;
  margin-top: 155px;
}
@media screen and (max-width: 768px) {
  .partner__cont {
    margin-top: 55px;
  }
}
.partner__img1 {
  height: 88%;
}
@media screen and (max-width: 768px) {
  .partner__img1 {
    width: 25%;
  }
}
.partner__img2 {
  margin-top: 60px;
  height: 88%;
}
@media screen and (max-width: 768px) {
  .partner__img2 {
    width: 25%;
  }
}
.partner__txt {
  margin-top: 20px;
}

/*----------------------------------
 hair-designer
----------------------------------*/
.hair-designer {
  padding-top: 144px;
}
.hair-designer__ttl {
  font-size: 9rem;
}
@media screen and (max-width: 768px) {
  .hair-designer__ttl {
    font-size: 6.3rem;
  }
}
.hair-designer__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 120px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hair-designer__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 90px;
  }
}
.hair-designer__flex::before {
  position: absolute;
  background-image: url(../image/designers__bg1.png);
  background-position: center center;
  background-size: cover;
  content: "";
  width: 578px;
  height: 71px;
  right: 0;
  top: -70px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .hair-designer__flex::before {
    width: 80%;
  }
}
.hair-designer__flex1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 120px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hair-designer__flex1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 90px;
  }
}
.hair-designer__flex1::before {
  position: absolute;
  background-image: url(../image/designers__bg1.png);
  background-position: center center;
  background-size: cover;
  content: "";
  width: 578px;
  height: 71px;
  left: 0;
  top: -70px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .hair-designer__flex1::before {
    width: 80%;
  }
}
.hair-designer__block {
  margin-top: 147px;
}
.hair-designer__cont {
  padding-left: 130px;
  padding-right: 86px;
}
@media screen and (max-width: 768px) {
  .hair-designer__cont {
    padding: 30px;
  }
}
.hair-designer__cont1 {
  padding-left: 77px;
  padding-right: 130px;
}
@media screen and (max-width: 768px) {
  .hair-designer__cont1 {
    padding: 30px;
  }
}
.hair-designer__stylist {
  font-size: 2rem;
  line-height: 1;
  margin-top: 21px;
  margin-left: 4px;
}
.hair-designer__name {
  display: inline-block;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-top: 19px;
  margin-left: 7px;
}
.hair-designer__margin {
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .hair-designer__margin {
    margin-bottom: 0;
  }
}
.hair-designer__link {
  display: inline-block;
}
.hair-designer__link:hover {
  opacity: 0.5;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.hair-designer__inst-svg {
  width: 24px;
  height: 24px;
  margin-left: 17px;
  vertical-align: bottom;
}
.hair-designer__old {
  line-height: 1;
  margin-top: 37px;
  margin-left: 6px;
  letter-spacing: 0.1em;
}
.hair-designer__box {
  margin-top: 40px;
  padding: 38px 49px;
  position: relative;
}
.hair-designer__box::before {
  content: "";
  width: 145px;
  height: 148px;
  position: absolute;
  border-right: solid 1px #dddddd;
  border-top: solid 1px #dddddd;
  top: 0;
  right: 0;
}
.hair-designer__box::after {
  content: "";
  width: 145px;
  height: 148px;
  position: absolute;
  border-left: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
  bottom: 0;
  left: 0;
}
.hair-designer__box1 {
  margin-top: 40px;
  padding: 38px 49px;
  position: relative;
}
.hair-designer__box1::before {
  content: "";
  width: 145px;
  height: 148px;
  position: absolute;
  border-left: solid 1px #dddddd;
  border-top: solid 1px #dddddd;
  top: 0;
  left: 0;
}
.hair-designer__box1::after {
  content: "";
  width: 145px;
  height: 148px;
  position: absolute;
  border-right: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
  bottom: 0;
  right: 0;
}
.hair-designer__img {
  height: 80%;
  width: 673px;
}
@media screen and (max-width: 768px) {
  .hair-designer__img {
    width: 100%;
  }
}

/*----------------------------------
 product-care
----------------------------------*/
.product-care {
  position: relative;
  margin-bottom: 97px;
}
@media screen and (max-width: 768px) {
  .product-care__inner {
    padding-right: 0;
  }
}
.product-care__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 93px;
}
@media screen and (max-width: 768px) {
  .product-care__flex {
    margin-top: 10px;
  }
}
.product-care__img {
  width: 32%;
  height: 80%;
}
@media screen and (max-width: 768px) {
  .product-care__img {
    width: 50%;
  }
}
.product-care__img2 {
  width: 32%;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .product-care__img2 {
    width: 50%;
    margin-top: 32px;
  }
}
.product-care__head {
  position: relative;
  bottom: 163px;
}
@media screen and (max-width: 768px) {
  .product-care__head {
    bottom: -18px;
  }
}
.product-care__ttl {
  position: absolute;
  font-size: 9rem;
}
@media screen and (max-width: 768px) {
  .product-care__ttl {
    font-size: 4rem;
  }
}
.product-care__ttl2 {
  position: absolute;
  font-size: 9rem;
  top: 91px;
}
@media screen and (max-width: 768px) {
  .product-care__ttl2 {
    font-size: 4rem;
    top: 40px;
  }
}
.product-care__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 52px;
}
@media screen and (max-width: 768px) {
  .product-care__cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 108px;
    padding-right: 30px;
  }
}
.product-care__txt-lg {
  -ms-flex-preferred-size: 50.4%;
      flex-basis: 50.4%;
}
@media screen and (max-width: 768px) {
  .product-care__txt-lg {
    font-size: 2.4rem;
  }
}
.product-care__txt {
  -ms-flex-preferred-size: 48.4%;
      flex-basis: 48.4%;
  margin-top: 2px;
}

/*----------------------------------
 hair-item
----------------------------------*/
.hair-item {
  position: relative;
}
.hair-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 400px;
  background-image: url(../image/product__bg.png);
  background-position: center center;
  background-size: cover;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .hair-item::before {
    height: 250px;
  }
}
.hair-item__head {
  text-align: center;
  text-transform: uppercase;
  font-size: 5rem;
  font-family: "Cinzel", serif;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .hair-item__head {
    font-size: 4rem;
  }
}
.hair-item__body {
  margin-top: 115px;
}
@media screen and (max-width: 768px) {
  .hair-item__body {
    margin-top: 130px;
  }
}
.hair-item__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .hair-item__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.hair-item__ttl {
  padding-top: 175px;
  letter-spacing: 0em;
}
@media screen and (max-width: 768px) {
  .hair-item__ttl {
    padding-top: 115px;
  }
}
.hair-item__block {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
}
.hair-item__box {
  position: relative;
}
.hair-item__sub {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 7px;
  left: 24px;
}
.hair-item__sub-num {
  display: inline-block;
  font-size: 6rem;
  font-family: "Cinzel", serif;
  color: #fff;
  opacity: 0.8;
  mix-blend-mode: overlay;
  margin-top: 6px;
}
.hair-item__sub-ttl {
  display: inline-block;
  font-size: 4rem;
  font-family: "Marcellus", serif;
  color: #171717;
  mix-blend-mode: overlay;
  vertical-align: top;
  margin-top: 14px;
  margin-left: 11px;
}
.hair-item__cont {
  padding: 34px 44px 60px 25px;
}
.hair-item__txt-lg {
  font-size: 2.1rem;
  line-height: 1.7;
}
.hair-item__txt {
  letter-spacing: 0em;
  margin-top: 20px;
  line-height: 2.4;
}

/*----------------------------------
 skin-care
----------------------------------*/
.skin-care {
  position: relative;
  margin-top: 55px;
  margin-bottom: 255px;
}
@media screen and (max-width: 768px) {
  .skin-care {
    margin-bottom: 135px;
  }
}
.skin-care::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 400px;
  background-image: url(../image/product__bg.png);
  background-position: center center;
  background-size: cover;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .skin-care::before {
    height: 250px;
  }
}
.skin-care__head {
  text-align: center;
  text-transform: uppercase;
  font-size: 5rem;
  font-family: "Cinzel", serif;
  color: #fff;
}
.skin-care__body {
  text-align: center;
  margin-top: 247px;
}
@media screen and (max-width: 768px) {
  .skin-care__body {
    margin-top: 147px;
  }
}
.skin-care__txt {
  font-family: "Marcellus", serif;
  font-size: 3rem;
  letter-spacing: 0em;
}

/*----------------------------------
 access-detail
----------------------------------*/
.access-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 190px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .access-detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 90px;
  }
}
@media screen and (max-width: 768px) {
  .access-detail__block {
    height: 250px;
  }
}
.access-detail__block::before {
  position: absolute;
  background-image: url(../image/service__bg.png);
  content: "";
  width: 580px;
  height: 208px;
  top: -50px;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  .access-detail__block::before {
    width: 80%;
  }
}
.access-detail__img {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  margin-top: 20px;
  height: 90%;
}
@media screen and (max-width: 768px) {
  .access-detail__img {
    margin-top: 0px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.access-detail__cont {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
@media screen and (max-width: 768px) {
  .access-detail__cont {
    margin-top: 30px;
  }
}
.access-detail__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .access-detail__flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.access-detail__logo {
  width: 142px;
  height: 50px;
}
.access-detail__txt {
  line-height: 1;
  margin-left: 13px;
  font-size: 1.6rem;
}
.access-detail__link {
  margin-left: 14px;
}
.access-detail__link:hover {
  opacity: 0.5;
  -webkit-transition: opacity 0.1s;
  -o-transition: opacity 0.1s;
  transition: opacity 0.1s;
}
.access-detail__inst-svg {
  width: 24px;
  height: 24px;
}
.access-detail__btn-grd {
  width: 420px;
  margin-top: 85px;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .access-detail__btn-grd {
    margin: 85px auto 0;
  }
}
.access-detail__btn-grd-txt::before {
  right: -103px;
}
.access-detail__btn-grd-txt::after {
  right: -103px;
}

/*----------------------------------
 access-map
----------------------------------*/
.access-map {
  margin-bottom: 185px;
}
@media screen and (max-width: 768px) {
  .access-map {
    margin-bottom: 40px;
    margin-top: 85px;
  }
}
.access-map__map {
  display: inline-block;
  font-size: 1.8rem;
  font-family: "Marcellus", serif;
  color: #171717;
  line-height: 1;
  letter-spacing: 0.14em;
  text-decoration: underline;
}
.access-map__map::after {
  content: "\f3c5";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}
.access-map__adress {
  margin-top: 25px;
  font-size: 1.7rem;
}
@media screen and (max-width: 768px) {
  .access-map__adress {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .access-map__map {
    display: block;
    text-align: center;
  }
}
.access-map__map:hover {
  text-decoration: none;
}

.menu__cut {
  padding-top: 137px;
}
.menu__perm {
  padding-top: 98px;
}
.menu__treatment {
  padding-top: 82px;
}
.menu__spa-menu {
  padding-top: 81px;
}
.menu__color {
  padding-top: 172px;
}
.menu__other {
  padding-top: 77px;
  padding-bottom: 180px;
}
.menu__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .menu__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.menu__block {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
}
.menu__block1 {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .menu__block1 {
    margin-top: 20px;
  }
}
.menu__ttl {
  font-size: 4rem;
  font-family: "Marcellus", serif;
  font-weight: 400;
  color: #3A4467;
  text-transform: uppercase;
}
.menu__sub {
  font-size: 1.2rem;
}
.menu__txt {
  font-size: 1.4rem;
  line-height: 2.15;
  margin-top: 25px;
}
.menu__txt-s {
  letter-spacing: 0.02em;
}
.menu__list {
  margin-left: 55px;
  border-bottom: solid 1px #dddddd;
}
@media screen and (max-width: 768px) {
  .menu__list {
    margin-left: 0;
  }
}
.menu__list1 {
  border-bottom: solid 1px #dddddd;
  padding-bottom: 36px;
  margin-bottom: 3px;
  margin-left: 55px;
}
@media screen and (max-width: 768px) {
  .menu__list1 {
    margin-left: 0;
    padding-bottom: 25px;
  }
}
.menu__list2 {
  border-bottom: solid 1px #dddddd;
  padding-bottom: 30px;
  margin-bottom: 9px;
  margin-left: 55px;
}
@media screen and (max-width: 768px) {
  .menu__list2 {
    margin-left: 0;
  }
}
.menu__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 9px 0 12px;
}
@media screen and (max-width: 768px) {
  .menu__flex {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.menu__flex1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 9px 0 8px;
}
@media screen and (max-width: 768px) {
  .menu__flex1 {
    padding: 9px 0 30px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.menu__flex2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 3px 0;
}
@media screen and (max-width: 768px) {
  .menu__flex2 {
    padding: 3px 0 30px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.menu__name {
  font-size: 2rem;
  font-weight: bold;
}
.menu__cost {
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .menu__cost {
    margin-top: 7px;
  }
}
.menu__cost1 {
  letter-spacing: 0.1em;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .menu__cost1 {
    margin-top: 7px;
  }
}
.menu__ex {
  font-size: 1.3rem;
  line-height: 1;
  margin-left: 2px;
}
.menu__ex2 {
  font-size: 1.3rem;
  line-height: 1.9;
  margin-left: 2px;
}

.news-detail {
  padding-top: 140px;
  margin-bottom: 145px;
}
@media screen and (max-width: 768px) {
  .news-detail {
    padding-top: 60px;
    margin-bottom: 60px;
  }
}
.news-detail__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.news-detail__content {
  max-width: 69.75%;
  width: calc(100% - 258px);
}
@media screen and (max-width: 768px) {
  .news-detail__content {
    margin-bottom: 50px;
    max-width: 100%;
    width: 100%;
  }
}
.news-detail__list:not(:last-child) {
  margin-bottom: 43px;
}
@media screen and (max-width: 768px) {
  .news-detail__list:not(:last-child) {
    margin-bottom: 50px;
  }
}
.news-detail__link {
  padding-bottom: 19px;
}
.news-detail__link:hover .news-detail__line {
  -webkit-animation: hover_line 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
          animation: hover_line 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.news-detail__block {
  position: relative;
  padding-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .news-detail__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 20px;
  }
}
.news-detail__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 45px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .news-detail__flex {
    margin-bottom: 20px;
  }
}
.news-detail__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.news-detail__time {
  width: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.news-detail__day {
  color: #171717;
  font-family: "Cinzel", serif;
  font-size: 1.6rem;
  text-align: center;
}
.news-detail__number {
  display: block;
  font-size: 4.2rem;
  line-height: 0.9;
  color: #171717;
  font-family: "Cinzel", serif;
  margin-left: 11px;
}
.news-detail__category {
  font-size: 1.4rem;
  font-family: "Marcellus", serif;
  color: #9ea2aa;
  margin-left: 50px;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .news-detail__category {
    margin-left: 40px;
  }
}
.news-detail__image {
  position: relative;
  width: 215px;
  padding-top: 215px;
  height: 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .news-detail__image {
    width: 100px;
    padding-top: 100px;
  }
}
.news-detail__image img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.news-detail__box {
  padding-left: 6.5616%;
  width: calc(100% - 215px);
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
@media screen and (max-width: 768px) {
  .news-detail__box {
    padding-left: 5%;
    width: calc(100% - 100px);
  }
}
.news-detail__ttl {
  font-size: 1.85rem;
  font-family: "Cinzel", serif;
  line-height: 1.4;
  letter-spacing: 0.075em;
  position: relative;
}
.news-detail__txt {
  margin-top: 23px;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .news-detail__txt {
    margin: 15px 0 25px;
    line-height: 1.7;
  }
}
@media screen and (max-width: 768px) {
  .news-detail__btn {
    margin: 0;
  }
}
.news-detail__line {
  background: #9ea2aa;
}
.news-detail__sidebar {
  width: 215px;
}
@media screen and (max-width: 768px) {
  .news-detail__sidebar {
    width: 100%;
  }
}

.sidebar__item:not(:last-child) {
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .sidebar__item:not(:last-child) {
    margin-bottom: 20px;
  }
}
.sidebar__haeding {
  position: relative;
  padding: 20px 0;
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  text-align: center;
  border-bottom: 1px solid #d9d7d7;
}
.sidebar__haeding--acc {
  position: relative;
  padding: 20px 0;
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  text-align: center;
  border-bottom: 1px solid #d9d7d7;
  cursor: pointer;
  -webkit-transition-duration: 0.3s;
       -o-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.sidebar__haeding--acc:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #bbb;
  border-right: 1px solid #bbb;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition-duration: 0.3s;
       -o-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.sidebar__haeding--acc.is-active:before {
  top: 25px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media all and (any-hover: hover) {
  .sidebar__haeding--acc:hover {
    opacity: 0.7;
  }
}
.sidebar__cont {
  padding-top: 30px;
}
.sidebar__list-dot {
  padding: 0 15px;
  font-size: 1.5rem;
  line-height: 1.2;
}
.sidebar__list-dot li {
  position: relative;
  padding-left: 1em;
  font-family: "Cinzel", serif;
  letter-spacing: 0.05em;
  color: #9f9fa9;
}
.sidebar__list-dot li:not(:last-child) {
  margin-bottom: 16px;
}
.sidebar__list-dot li:before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0px;
}
.sidebar__list-dot li .num {
  color: #9f9fa9;
}
.sidebar__list-dot li a {
  display: inline-block;
  color: #171717;
}
@media all and (any-hover: hover) {
  .sidebar__list-dot li a:hover {
    opacity: 0.7;
  }
}
.sidebar__list-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 15px;
}
.sidebar__list-tags-item {
  margin: 0 8px 8px 0;
}
.sidebar__list-tags-item a {
  display: block;
  padding: 6px 12px;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  background: #b7c2ce;
  border-radius: 3px;
}
@media all and (any-hover: hover) {
  .sidebar__list-tags-item a:hover {
    opacity: 0.7;
  }
}

.js-accordion-cont {
  padding: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
       -o-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.js-accordion-cont.is-open {
  padding-top: 30px;
  height: auto;
  opacity: 1;
}

/*----  Detail  ----*/
.news-article__title {
  margin-bottom: 10px;
  padding-bottom: 8px;
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2;
  border-bottom: 1px solid #171717;
}
.news-article__function {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}
.news-article__function .tags {
  color: #9ea2aa;
  font-size: 1.3rem;
  font-family: "Cinzel", serif;
}
.news-article__function .date {
  color: #9f9fa9;
  font-size: 1.5rem;
  font-family: "Marcellus", serif;
}
.news-article__image {
  text-align: center;
}
.news-article__image img {
  max-width: 100%;
}
.news-article__area {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.news-article__area h2, .news-article__area h3, .news-article__area h4, .news-article__area h5, .news-article__area h6 {
  margin: 50px 0 30px;
  line-height: 1.6;
}
.news-article__area p {
  margin: 30px 0;
  font-size: 1.5rem;
  line-height: 2.4;
}
@media screen and (max-width: 768px) {
  .news-article__area p {
    line-height: 1.8;
  }
}
.news-article__area h2 {
  font-size: 2.3rem;
}
.news-article__area h3 {
  padding: 6px 20px;
  color: #fff;
  font-size: 2.1rem;
  background: #b7c2ce;
  border-radius: 5px;
}
.news-article__area h4 {
  padding-bottom: 20px;
  color: #b7c2ce;
  font-size: 2.1rem;
  border-bottom: 2px solid #b7c2ce;
}
.news-article__area h5 {
  padding-bottom: 20px;
  font-size: 2.1rem;
  border-bottom: 1px solid #ddd;
}
.news-article__area h6 {
  position: relative;
  padding-left: 65px;
  font-size: 2.1rem;
}
.news-article__area h6:before {
  display: inline-block;
  position: absolute;
  top: 18px;
  left: 0;
  content: "";
  width: 42px;
  height: 1px;
  background: #504e4f;
}
.news-article__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .news-article__controls {
    margin-top: 50px;
  }
}
.news-article__controls a {
  display: inline-block;
  position: relative;
  padding: 12px 60px 12px 0;
  font-family: "Marcellus", serif;
  color: #171717;
  font-size: 1.5rem;
}
@media all and (any-hover: hover) {
  .news-article__controls a:hover {
    opacity: 0.7;
  }
}
.news-article__controls a:before, .news-article__controls a:after {
  position: absolute;
  display: inline-block;
  content: "";
}
.news-article__controls a:before {
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: #171717;
  border-radius: 50%;
}
.news-article__controls a:after {
  top: 15px;
  right: 13px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

#ez-toc-container {
  background: #fff;
  max-width: 610px;
  width: 100%;
  margin: 40px auto 50px;
  padding: 5%;
  margin-bottom: 75px;
  border-radius: 0 !important;
  border: 1px solid #b7c2ce !important;
}
@media screen and (max-width: 768px) {
  #ez-toc-container {
    margin: 40px auto 50px;
    padding: 8% 5%;
  }
}
#ez-toc-container .ez-toc-title-toggle,
#ez-toc-container .ez-toc-title {
  display: block;
  margin: 0 0 30px;
  color: #b7c2ce;
  font-family: "Marcellus", serif;
  font-size: 2.2rem !important;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #ez-toc-container .ez-toc-title-toggle,
#ez-toc-container .ez-toc-title {
    letter-spacing: 0;
    margin-bottom: 20px;
  }
}
#ez-toc-container .ez-toc-list {
  line-height: 1.2;
  color: #212121;
  font-weight: 500;
}
#ez-toc-container .ez-toc-list li:not(:last-child) {
  margin-bottom: 20px;
}
#ez-toc-container .ez-toc-list li a {
  display: block;
  color: #b7c2ce;
  font-size: 1.6rem;
}
@media all and (any-hover: hover) {
  #ez-toc-container .ez-toc-list li a:hover {
    opacity: 0.7;
  }
}

.company {
  margin-top: 138px;
  margin-bottom: 190px;
}
@media screen and (max-width: 768px) {
  .company {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
.company__table {
  width: 100%;
}
.company__th {
  font-size: 1.8rem;
  padding: 40px 0;
  width: 18.5%;
  letter-spacing: 0.1em;
  border-top: solid 1px #171717;
  border-bottom: solid 1px #171717;
}
@media screen and (max-width: 768px) {
  .company__th {
    padding: 30px 0;
    width: 25%;
    font-size: 1.6rem;
  }
}
.company__td {
  font-size: 1.8rem;
  padding: 40px 0;
  padding-left: 59px;
  letter-spacing: 0.1em;
  border-top: solid 1px #eeeeee;
  border-bottom: solid 1px #eeeeee;
}
@media screen and (max-width: 768px) {
  .company__td {
    padding: 30px 0;
    padding-left: 30px;
    font-size: 1.6rem;
  }
}

/*----------------------------------
 recruit-detail
----------------------------------*/
.recruit-detail__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 128px;
}
@media screen and (max-width: 768px) {
  .recruit-detail__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 80px;
  }
}
.recruit-detail__content {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
@media screen and (max-width: 768px) {
  .recruit-detail__txt-lg {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
}
.recruit-detail__sub-txt {
  font-size: 18px;
}
.recruit-detail__txt {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
}
@media screen and (max-width: 768px) {
  .recruit-detail__txt {
    margin-top: 30px;
  }
}

/*----------------------------------
 recruit-about
----------------------------------*/
.recruit-about__head {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .recruit-about__head {
    margin-top: 70px;
  }
}
.recruit-about__ttl {
  text-align: center;
  font-size: 9rem;
  margin-top: 140px;
  margin-bottom: 57px;
}
@media screen and (max-width: 768px) {
  .recruit-about__ttl {
    margin: 20px 0;
    font-size: 5.9rem;
    text-align: center;
  }
}
.recruit-about__sub-ttl {
  width: 370px;
  margin: 0 auto;
  margin-bottom: 15px;
  position: relative;
}
.recruit-about__sub-ttl::before {
  position: absolute;
  content: "";
  width: 33px;
  height: 1px;
  top: 53%;
  left: 45px;
  background-color: #3A3A3C;
}
.recruit-about__sub-ttl::after {
  position: absolute;
  content: "";
  width: 33px;
  height: 1px;
  top: 53%;
  right: 45px;
  background-color: #3A3A3C;
}
.recruit-about__txt {
  letter-spacing: 0;
}
.recruit-about__content {
  padding-top: 290px;
  background-image: url(../image/recruit_bg.png);
  background-position: center;
  background-size: cover;
  height: 557px;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  .recruit-about__content {
    padding-top: 100px;
  }
}
.recruit-about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .recruit-about__inner {
    display: block;
  }
}
.recruit-about__content_ttl {
  color: #fff;
  -ms-flex-preferred-size: 42%;
      flex-basis: 42%;
  font-size: 26px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 150px;
  line-height: 1.9;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .recruit-about__content_ttl {
    padding-left: 0;
    text-align: center;
  }
}
.recruit-about__content_txt {
  color: #fff;
  -ms-flex-preferred-size: 49%;
      flex-basis: 49%;
  letter-spacing: 0.1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 6px;
}
@media screen and (max-width: 768px) {
  .recruit-about__content_txt {
    margin-top: 30px;
    padding-left: 0;
  }
}
.recruit-about__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 95px;
}
@media screen and (max-width: 768px) {
  .recruit-about__item {
    display: block;
  }
}
.recruit-about__item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.recruit-about__item_head {
  position: absolute;
  top: -26px;
  left: 26px;
}
.recruit-about__item_head_customer {
  position: absolute;
  text-align: right;
  bottom: -5px;
}
@media screen and (max-width: 768px) {
  .recruit-about__item_head_customer {
    text-align: left;
    top: -42px;
    left: 26px;
  }
}
.recruit-about__item_head_salon {
  position: absolute;
  text-align: right;
  top: -40px;
  right: 30px;
}
@media screen and (max-width: 768px) {
  .recruit-about__item_head_salon {
    text-align: left;
    left: 26px;
  }
}
.recruit-about__item_tag {
  display: inline-block;
  color: #71859e;
  padding: 2px 4px;
  line-height: 1;
  background-color: #fff;
  opacity: 0.7;
}
.recruit-about__item_title {
  font-family: "Marcellus", serif;
  font-size: 60px;
  color: #71859e;
  font-weight: 500;
  line-height: 1;
}
.recruit-about__item_img {
  width: 57%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .recruit-about__item_img {
    width: 100%;
  }
}
.recruit-about__item_img2 {
  margin-left: 10px;
}
.recruit-about__item_img4 {
  width: 50%;
  margin-top: 60px;
}
.recruit-about__item_img5 {
  width: 50%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.recruit-about__item_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.recruit-about__item_txt {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 43%;
  padding-left: 60px;
  padding-top: 28px;
}
@media screen and (max-width: 768px) {
  .recruit-about__item_txt {
    width: 100%;
    padding-left: 0;
  }
}
.recruit-about__item_txt2 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 43%;
  padding-right: 60px;
  padding-top: 28px;
}
@media screen and (max-width: 768px) {
  .recruit-about__item_txt2 {
    width: 100%;
    padding-right: 0;
  }
}
.recruit-about__item_txt-lg {
  line-height: 1.5;
  letter-spacing: 0;
}
.recruit-about__item_txt-sub {
  line-height: 1.6;
  margin-top: 16px;
}
.recruit-about__item_txt-sm {
  margin-top: 26px;
}
.recruit-about__menu {
  margin-top: 108px;
}

/*----------------------------------
 recruit-work
----------------------------------*/
.recruit-work__head {
  background-image: url(../image/recruit_bg2.png);
  background-position: center center;
  background-size: cover;
  height: 485px;
  padding-top: 67px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .recruit-work__head {
    padding-top: 17px;
  }
}
.recruit-work__ttl {
  opacity: 0.2;
  font-size: 90px;
}
.recruit-work__sub-ttl {
  width: 370px;
  margin: 0 auto;
  position: relative;
}
.recruit-work__sub-ttl::before {
  position: absolute;
  content: "";
  width: 33px;
  height: 1px;
  top: 53%;
  left: 45px;
  background-color: #3A3A3C;
}
.recruit-work__sub-ttl::after {
  position: absolute;
  content: "";
  width: 33px;
  height: 1px;
  top: 53%;
  right: 45px;
  background-color: #3A3A3C;
}
.recruit-work__sub-word {
  font-size: 20px;
  color: #44556F;
  display: inline-block;
  margin-top: 42px;
  line-height: 1.5;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(71%, transparent), color-stop(47%, #e9ecf2));
  background: -o-linear-gradient(transparent 71%, #e9ecf2 47%);
  background: linear-gradient(transparent 71%, #e9ecf2 47%);
}
@media screen and (max-width: 768px) {
  .recruit-work__sub-word {
    margin-top: 20px;
  }
}
.recruit-work__txt {
  width: 615px;
  margin: 0 auto;
  text-align: left;
  margin-top: 12px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .recruit-work__txt {
    width: 100%;
    padding: 0 30px;
    margin-top: 40px;
  }
}
.recruit-work__txt2 {
  margin-top: 22px;
  letter-spacing: 0em;
  margin-right: 50px;
}
.recruit-work__body {
  margin-top: 90px;
}
.recruit-work__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.recruit-work__content2 {
  width: 91%;
  margin-left: auto;
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  .recruit-work__content2 {
    width: 84.2%;
  }
}
.recruit-work__content3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .recruit-work__content3 {
    margin-top: 30px;
  }
}
.recruit-work__content_ttl {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 24px;
  color: #71859e;
  letter-spacing: 0.1em;
  margin-right: 65px;
}
@media screen and (max-width: 768px) {
  .recruit-work__content_ttl {
    margin-right: 35px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 7%;
            flex: 0 0 7%;
  }
}
.recruit-work__content_ttl2 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 24px;
  color: #71859e;
  letter-spacing: 0.1em;
  margin-right: 65px;
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .recruit-work__content_ttl2 {
    margin-right: 35px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 7%;
            flex: 0 0 7%;
  }
}
.recruit-work__num {
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
  font-size: 18px;
  font-family: "Marcellus", serif;
  margin-bottom: 20px;
}
.recruit-work__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .recruit-work__wrapper {
    display: block;
  }
}
.recruit-work__block {
  width: 51%;
}
@media screen and (max-width: 768px) {
  .recruit-work__block {
    width: 100%;
  }
}
.recruit-work__block2 {
  width: 49%;
  margin-top: 50px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .recruit-work__block2 {
    width: 100%;
    margin-top: 30px;
  }
}
.recruit-work__block3 {
  width: 60%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .recruit-work__block3 {
    width: 100%;
  }
}
.recruit-work__category {
  font-size: 1.6rem;
  margin-top: 7px;
  padding: 8.5px 17px 6px;
}
.recruit-work__txt-lg {
  margin-top: 18px;
  line-height: 1.6;
  letter-spacing: 0;
  margin-bottom: 14px;
}
.recruit-work__img {
  width: 91%;
  margin-left: auto;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .recruit-work__img {
    width: 84.2%;
  }
}
.recruit-work__img2 {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .recruit-work__img2 {
    width: 100%;
    margin-top: 30px;
  }
}
.recruit-work__tag {
  display: inline-block;
  font-size: 14px;
  padding: 5px 14px;
  background-color: #71859e;
  color: #fff;
  font-weight: 100;
  margin-right: 9px;
}

/*----------------------------------
 recruit-benefits
----------------------------------*/
.recruit-benefits {
  background-image: url(../image/recruit_bg3.png);
  background-position: center;
  background-size: cover;
  height: 1230px;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .recruit-benefits {
    height: 1460px;
  }
}
.recruit-benefits__head {
  text-align: center;
  padding-top: 83px;
}
@media screen and (max-width: 768px) {
  .recruit-benefits__head {
    padding-top: 50px;
  }
}
.recruit-benefits__ttl {
  opacity: 0.4;
}
.recruit-benefits__sub-ttl {
  width: 370px;
  margin: 0 auto;
  position: relative;
}
.recruit-benefits__sub-ttl::before {
  position: absolute;
  content: "";
  width: 43px;
  height: 1px;
  top: 53%;
  left: 45px;
  background-color: #3A3A3C;
}
.recruit-benefits__sub-ttl::after {
  position: absolute;
  content: "";
  width: 43px;
  height: 1px;
  top: 53%;
  right: 45px;
  background-color: #3A3A3C;
}
.recruit-benefits__sub-word {
  font-size: 20px;
  color: #44556F;
  display: inline-block;
  margin-top: 42px;
  line-height: 1.5;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(71%, transparent), color-stop(47%, #e9ecf2));
  background: -o-linear-gradient(transparent 71%, #e9ecf2 47%);
  background: linear-gradient(transparent 71%, #e9ecf2 47%);
}
.recruit-benefits__txt {
  width: 560px;
  margin: 0 auto;
  text-align: left;
  margin-top: 12px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .recruit-benefits__txt {
    width: 100%;
    padding: 0 30px;
  }
}
.recruit-benefits__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 190px;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .recruit-benefits__inner {
    padding: 0 30px;
  }
}
.recruit-benefits__img {
  width: 90px;
}
@media screen and (max-width: 768px) {
  .recruit-benefits__img {
    width: 30%;
  }
}
.recruit-benefits__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.recruit-benefits__content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 33%;
  padding-right: 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .recruit-benefits__content {
    width: 50%;
  }
}
.recruit-benefits__content_ttl {
  font-size: 20px;
  margin-left: 26px;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .recruit-benefits__content_ttl {
    width: 70%;
    font-size: 18px;
  }
}
.recruit-benefits__content_txt {
  letter-spacing: 0.1em;
  margin-top: 15px;
  line-height: 2;
}

/*----------------------------------
 recruit-message
----------------------------------*/
.recruit-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 130px;
  padding-bottom: 108px;
  margin-top: 115px;
  border-bottom: solid 1px #d4dbe2;
}
@media screen and (max-width: 768px) {
  .recruit-message {
    display: block;
    padding-left: 0;
    padding: 0 30px;
  }
}
.recruit-message__wrapper {
  width: 50%;
  padding-right: 75px;
}
@media screen and (max-width: 768px) {
  .recruit-message__wrapper {
    width: 100%;
    padding-right: 0;
  }
}
.recruit-message__ttl-lg {
  margin-top: 47px;
}
.recruit-message__txt {
  margin-top: 32px;
}
.recruit-message__top {
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-top: 30px;
}
.recruit-message__wrapper2 {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .recruit-message__wrapper2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 60px;
  }
}
.recruit-message__img1 {
  text-align: right;
}
.recruit-message__img1 img {
  width: 81%;
}
@media screen and (max-width: 768px) {
  .recruit-message__img1 img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .recruit-message__img1 {
    margin-top: 0px;
    width: 50%;
  }
}
.recruit-message__img {
  position: absolute;
  top: 330px;
  width: 62%;
}
@media screen and (max-width: 768px) {
  .recruit-message__img {
    position: static;
    width: 50%;
    margin-top: 40px;
  }
}

/*----------------------------------
 recruit-requirements
----------------------------------*/
.recruit-requirements {
  margin-top: 87px;
}
.recruit-requirements__head {
  text-align: center;
  color: #71859e;
}
.recruit-requirements__ja {
  font-size: 26px;
}
.recruit-requirements__en {
  font-size: 15px;
  font-family: "Marcellus", serif;
  color: #71859e;
}
.recruit-requirements__inner {
  margin-top: 50px;
  margin-bottom: 190px;
}
@media screen and (max-width: 768px) {
  .recruit-requirements__inner {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
.recruit-requirements__table {
  width: 100%;
}
.recruit-requirements__th {
  font-size: 1.6rem;
  padding: 31px 0 36px;
  width: 15.5%;
  letter-spacing: 0.1em;
  border-top: solid 1px #171717;
  border-bottom: solid 1px #171717;
}
.recruit-requirements__th:last-of-type {
  border-bottom: solid 0 #eeeeee;
}
@media screen and (max-width: 768px) {
  .recruit-requirements__th {
    padding: 30px 0;
    width: 25%;
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
.recruit-requirements__td {
  font-size: 1.6rem;
  padding: 26px 50px 30px 40px;
  letter-spacing: 0.03em;
  border-top: solid 1px #eeeeee;
  border-bottom: solid 1px #eeeeee;
  line-height: 1.8;
}
.recruit-requirements__td:last-of-type {
  border-bottom: solid 0 #eeeeee;
}
@media screen and (max-width: 768px) {
  .recruit-requirements__td {
    padding: 30px 0;
    padding-left: 30px;
    font-size: 1.6rem;
  }
}
.recruit-requirements__link {
  width: 540px;
  height: 160px;
  background: -o-linear-gradient(290deg, #3A3A3C, #44556F, #5A748F, #5D7490, #5A6380, #505A75);
  background: linear-gradient(160deg, #3A3A3C, #44556F, #5A748F, #5D7490, #5A6380, #505A75);
  background-size: 200% 100%;
  -webkit-animation: bggradient 10s ease infinite;
          animation: bggradient 10s ease infinite;
  display: block;
  margin: 0 auto;
  margin-top: 82px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .recruit-requirements__link {
    width: 300px;
    margin-top: 22px;
  }
}
.recruit-requirements__btn {
  display: block;
  color: #fff;
  font-size: 18px;
  padding-top: 30px;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .recruit-requirements__btn {
    padding-top: 40px;
  }
}
.recruit-requirements__num {
  font-family: "Cinzel", serif;
  font-size: 30px;
  line-height: 1;
  color: #fff;
  display: inline-block;
}
.recruit-requirements__img {
  width: 23px;
  height: 23px;
  vertical-align: top;
  margin-right: 10px;
}
/*# sourceMappingURL=maps/style.css.map */
