@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: "TBゴシック SL", "TBGothic SL", -apple-system, BlinkMacSystemFont, Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-feature-settings: "pkna" 1;
  color: #282828;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 13px;
  }
}

main {
  padding-top: 100px;
}
@media screen and (max-width: 960px) {
  main {
    padding-top: 65px;
  }
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

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

a {
  text-decoration: none;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
p {
  margin: 0;
}

address {
  font-style: normal;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff; /* 背景カラー */
  z-index: 9999; /* 一番手前に */
  pointer-events: none; /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0; /* 初期値 : 透過状態 */
  -webkit-transition: opacity 0.4s ease; /* アニメーション時間は 0.8秒 */
  transition: opacity 0.4s ease;
}

body.fadeout::after {
  opacity: 1;
}

.c-colorRed {
  color: #f00;
}

.c-fontStyle_A1 {
  font-family: "A1ゴシック M", "A1 Gothic M";
}

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

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

.globalNav {
  opacity: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  min-height: 600px;
  z-index: -1;
  background-color: #ffffff;
  top: 0;
  left: 0;
  overflow-y: scroll;
  transition: 0.2s;
}
.globalNav__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .globalNav__inner {
    width: 100%;
  }
}
.globalNav__menuList {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.globalNav__menuList > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 40px;
}
@media screen and (max-width: 767px) {
  .globalNav__menuList > li {
    margin: 0 0 28px;
  }
}
.globalNav__menuList > li > a, .globalNav__menuList > li > p {
  font-family: "A1ゴシック M", "A1 Gothic M";
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.15em;
  color: #282828;
}
.globalNav__menuList > li > a:hover:after {
  width: 100%;
}
.globalNav__menuList > li > a:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #282828;
  transition: 0.3s;
}
.globalNav__menuList > li ol {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 15px 0 0;
}
.globalNav__menuList > li ol > li > a {
  display: inline-block;
  font-family: "A1ゴシック M", "A1 Gothic M";
  font-size: 12px;
  line-height: 23px;
  letter-spacing: 0.15em;
  color: #282828;
}
.globalNav__menuList > li ol > li > a:hover:after {
  width: 100%;
}
.globalNav__menuList > li ol > li > a:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #282828;
  transition: 0.3s;
}
.globalNav__menuList > li ol > li > a:before {
  content: "-";
  display: inline-block;
  margin: 0 10px 0 0;
}
.globalNav__menuSNS {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  width: 72px;
}
.globalNav__menuSNS li a {
  display: block;
  width: 27px;
}
.globalNav__menuSNS li a img {
  width: 100%;
}

body.menu-open .globalNav {
  opacity: 1;
  z-index: 100;
}

.menu-open .globalHeader__logo svg path {
  fill: #232323 !important;
}
.menu-open .globalHeader__btnNavOpen:before, .menu-open .globalHeader__btnNavOpen:after {
  background-color: #232323 !important;
}

.globalHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #ffffff;
  z-index: 101;
  transition: 0.3s;
}
@media screen and (max-width: 960px) {
  .globalHeader {
    height: 65px;
  }
}
.globalHeader__logo {
  position: absolute;
  display: block;
  width: 150px;
  top: 50%;
  left: 48px;
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .globalHeader__logo {
    width: 120px;
    left: 20px;
  }
}
.globalHeader__logo svg {
  width: 100%;
}
.globalHeader__btnNavOpen {
  cursor: pointer;
  position: absolute;
  appearance: none;
  background: none;
  border: none;
  width: 40px;
  height: 19px;
  top: 50%;
  right: 38px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .globalHeader__btnNavOpen {
    width: 26px;
    height: 14px;
    right: 20px;
  }
}
.globalHeader__btnNavOpen:focus {
  outline: none;
}
.globalHeader__btnNavOpen:before, .globalHeader__btnNavOpen:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  left: 0;
  background-color: #282828;
  transition: all 500ms;
  transform-origin: center;
}
@media screen and (max-width: 767px) {
  .globalHeader__btnNavOpen:before, .globalHeader__btnNavOpen:after {
    width: 26px;
  }
}
.globalHeader__btnNavOpen:before {
  top: 0;
}
.globalHeader__btnNavOpen:after {
  bottom: 0;
}
.globalHeader.is-show {
  box-shadow: 0px 1px 5px -2px #e5e5e5;
}

body.menu-open .globalHeader {
  position: fixed;
  top: 0;
  left: 0;
}
body.menu-open .globalHeader__btnNavOpen:before, body.menu-open .globalHeader__btnNavOpen:after {
  top: 50%;
  left: 50%;
}
body.menu-open .globalHeader__btnNavOpen:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
body.menu-open .globalHeader__btnNavOpen:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.globalFooter {
  position: relative;
  background-color: #ffffff;
  padding: 0 0 50px;
}
@media screen and (max-width: 767px) {
  .globalFooter {
    padding: 33px 0;
  }
}
.globalFooter__toTop {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  background-color: #282828;
  font-size: 0;
  transition: 0.3s;
}
.globalFooter__toTop:hover {
  opacity: 0.8;
}
.globalFooter__toTop:after {
  content: "";
  width: 14px;
  height: 14px;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  transform-origin: left;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .globalFooter__toTop {
    height: 50px;
  }
}
.globalFooter__logo {
  display: block;
  width: 91px;
  margin: 60px auto 50px;
}
.globalFooter__logo img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .globalFooter__logo {
    width: 80px;
    margin: 40px auto 30px;
  }
}
.globalFooter__address {
  display: block;
  color: #282828;
  text-align: center;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .globalFooter__address {
    font-size: 11px;
    line-height: 17.5px;
  }
}
.globalFooter__address br.only-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .globalFooter__address br.only-sp {
    display: block;
  }
}
.globalFooter__copy {
  display: block;
  color: #282828;
  text-align: center;
  margin: 17px auto 0;
  font-size: 12px;
  line-height: 21px;
}
@media screen and (max-width: 767px) {
  .globalFooter__copy {
    font-size: 10px;
    line-height: 17.5px;
  }
}

.c-btn__link {
  position: relative;
  display: block;
  background-color: #ffffff;
  color: #282828;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #282828;
  transition: all 500ms;
  font-size: 18px;
  letter-spacing: 2.6px;
  font-family: "A1ゴシック M", "A1 Gothic M";
}
.c-btn__link:after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #282828;
  transition: all 500ms;
}
.c-btn__link:hover {
  background-color: #282828;
  color: #ffffff;
}
.c-btn__link:hover:after {
  background-color: #ffffff;
}
.c-btn__link[data-btn-type=small] {
  margin: 40px auto 0;
  width: 262px;
  height: 60px;
}
.c-btn__link[data-btn-type=small]:after {
  right: -15px;
  width: 50px;
}
.c-btn__link[data-btn-type=small]:hover:after {
  right: -25px;
}
@media screen and (max-width: 767px) {
  .c-btn__link[data-btn-type=small] {
    margin: 30px auto 0;
    width: 100%;
    height: 50px;
  }
  .c-btn__link[data-btn-type=small]:after {
    right: -15px;
    width: 30px;
  }
  .c-btn__link[data-btn-type=small]:hover:after {
    right: -20px;
  }
}
.c-btn__link[data-btn-type=medium] {
  margin: 40px auto 0;
  width: 410px;
  height: 60px;
  font-size: 14px;
}
.c-btn__link[data-btn-type=medium]:after {
  right: -15px;
  width: 50px;
}
.c-btn__link[data-btn-type=medium]:hover:after {
  right: -25px;
}
@media screen and (max-width: 767px) {
  .c-btn__link[data-btn-type=medium] {
    margin: 30px auto 0;
    width: 100%;
    height: 55px;
  }
  .c-btn__link[data-btn-type=medium]:after {
    right: -15px;
    width: 30px;
  }
  .c-btn__link[data-btn-type=medium]:hover:after {
    right: -20px;
  }
}
.c-btn__link[data-btn-type=medium2] {
  width: 380px;
  height: 60px;
  font-size: 14px;
  border-width: 2px;
}
.c-btn__link[data-btn-type=medium2]:after {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-btn__link[data-btn-type=medium2] {
    width: 100%;
    height: 55px;
  }
}
.c-btn__link[data-btn-type=large] {
  margin: 17px auto 87px;
  width: 470px;
  height: 80px;
}
.c-btn__link[data-btn-type=large]:after {
  right: -33px;
  width: 94px;
}
.c-btn__link[data-btn-type=large]:hover:after {
  right: -50px;
}
@media screen and (max-width: 767px) {
  .c-btn__link[data-btn-type=large] {
    margin: 10px auto 40px;
    width: 100%;
    height: 60px;
  }
  .c-btn__link[data-btn-type=large]:after {
    right: -15px;
    width: 40px;
  }
  .c-btn__link[data-btn-type=large]:hover:after {
    right: -25px;
  }
}
.c-btn__link[data-btn-type=flex-lg] {
  display: inline-flex;
  width: auto;
  height: auto;
  padding: 45px 55px;
}
.c-btn__link[data-btn-type=flex-lg]:after {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-btn__link[data-btn-type=flex-lg] {
    width: 100%;
    padding: 18px 20px;
    line-height: 30px;
  }
}

.c-heading__sectionTitle {
  font-family: "A1ゴシック M", "A1 Gothic M";
  letter-spacing: 0.2em;
  font-size: 24px;
  padding: 0 0 40px;
}
.c-heading__sectionTitle[data-heading-align=center] {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-heading__sectionTitle {
    font-size: 18px;
    padding: 0 0 20px;
  }
}
.c-heading__conceptTitle {
  font-family: "A1ゴシック M", "A1 Gothic M";
  letter-spacing: 0.2em;
  font-size: 28px;
  line-height: 50px;
  padding: 0 0 30px;
}
.c-heading__conceptTitle[data-heading-align=center] {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-heading__conceptTitle {
    font-size: 20px;
    line-height: 35px;
    padding: 0 0 15px;
  }
}
.c-heading__basicTitle {
  font-family: "A1ゴシック M", "A1 Gothic M";
  font-size: 24px;
  line-height: 42px;
  letter-spacing: 0.2em;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .c-heading__basicTitle {
    font-size: 18px;
    line-height: 36px;
  }
}
.c-heading__basicTitle:after {
  content: attr(data-title-ja);
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.2em;
  padding: 0 0 0 15px;
}
@media screen and (max-width: 767px) {
  .c-heading__basicTitle:after {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .p-top:before {
    content: "";
    display: block;
    background-image: url(/images/top_lead_bg.png);
    background-size: cover;
    position: absolute;
    top: 100vh;
    left: 0;
    width: 100%;
    height: 100vh;
  }
  .p-top.is-fixed:before {
    top: 0;
    position: fixed;
  }
}
.toppage .globalHeader {
  transform: translate(0, -100%);
}
.toppage .globalHeader.is-show {
  transform: translate(0, 0);
  background: #fff;
}
.toppage .globalHeader.is-show .globalHeader__btnNavOpen:before,
.toppage .globalHeader.is-show .globalHeader__btnNavOpen:after {
  background-color: #232323;
}
.toppage .globalHeader.is-show .globalHeader__logo svg path {
  fill: #232323;
}
@media screen and (max-width: 960px) {
  .toppage .globalHeader {
    transform: translate(0, 0);
    background: none;
  }
  .toppage .globalHeader__btnNavOpen:before, .toppage .globalHeader__btnNavOpen:after {
    background-color: #fff;
  }
  .toppage .globalHeader__logo svg path {
    fill: #fff;
  }
}

@media screen and (max-width: 767px) {
  .p-top {
    position: relative;
  }
}
.p-top .fakeSpace {
  position: relative;
  height: 90vh;
  width: 100%;
  background: none;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top {
    overflow: hidden;
  }
}
.p-topMv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-topMv__inner {
  display: flex;
  padding: 20px 0;
  height: calc(var(--vh, 1vh) * 100);
  min-height: 640px;
}
@media screen and (max-width: 960px) {
  .p-topMv__inner {
    display: block;
    padding: 0;
  }
}
.p-topMv__menu {
  width: 260px;
  padding: 28px 0 0 50px;
}
@media screen and (max-width: 960px) {
  .p-topMv__menu {
    position: absolute;
    top: 60px;
    left: 20px;
    z-index: 1;
    width: auto;
    padding: 0;
    color: #fff;
  }
}
.p-topMv__menuLogo {
  display: block;
  margin: 0 0 30px;
  width: 150px;
}
@media screen and (max-width: 960px) {
  .p-topMv__menuLogo {
    display: none;
  }
}
.p-topMv__menuText {
  font-family: "A1ゴシック M", "A1 Gothic M";
  margin: 0 0 20px;
  font-size: 12px;
  line-height: 19px;
  letter-spacing: 0.08em;
}
.p-topMv__menuText a {
  color: inherit;
}
.p-topMv__menuTop {
  opacity: 0;
  transform: translate(10%, 0);
  transition: 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 1s;
  transition-delay: 4.2s;
}
.p-topMv__menuTop.is-load {
  opacity: 1;
  transform: translate(0, 0);
}
.p-topMv__menuList {
  margin: 180px 0 0;
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.6s;
  transition-delay: 3.8s;
}
.p-topMv__menuList.is-load {
  opacity: 1;
  transform: translate(0, 0);
}
.p-topMv__menuList li {
  margin: 0 0 30px;
}
.p-topMv__menuList li a {
  display: inline-block;
  font-family: "A1ゴシック M", "A1 Gothic M";
  font-size: 14px;
  letter-spacing: 0.15em;
  color: #282828;
}
.p-topMv__menuList li a:hover:after {
  width: 100%;
}
.p-topMv__menuList li a:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #282828;
  transition: 0.3s;
}
.p-topMv__menuList li:last-child {
  margin: 0;
}
@media screen and (max-width: 960px) {
  .p-topMv__menuList {
    display: none;
  }
}
.p-topMv__menuSNS {
  display: flex;
  justify-content: space-between;
  margin: 75px 0 0;
  width: 64px;
  opacity: 0;
  transform: translate(10%, 0);
  transition: 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 1s;
  transition-delay: 4.2s;
}
.p-topMv__menuSNS.is-load {
  opacity: 1;
  transform: translate(0, 0);
}
.p-topMv__menuSNS li a {
  display: block;
  width: 22px;
}
.p-topMv__menuSNS li a img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .p-topMv__menuSNS {
    display: none;
  }
}
.p-topMv__visual {
  position: relative;
  width: calc(100% - 260px);
}
@media screen and (max-width: 960px) {
  .p-topMv__visual {
    width: 100%;
  }
}
.p-topMv__slider_slideImg {
  width: 100%;
  height: calc(100vh - 40px);
  min-height: 640px;
  position: relative;
  overflow: hidden;
  width: 0;
  transition: 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 3.5s;
  overflow: hidden;
}
.p-topMv__slider_slideImg.is-load {
  width: 100%;
}
@keyframes topLoadSlideAnimation {
  0% {
    width: 0.0001%;
    transform-origin: top left;
  }
  100% {
    width: calc(100% - 260px);
    transform-origin: top left;
  }
}
.p-topMv__slider_slideImg_inner {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.p-topMv__slider .is-moving .p-topMv__slider_slideImg {
  animation: topSlideAnimation 8s linear;
}
@keyframes topSlideAnimation {
  0% {
    transform: scale(1, 1);
    transform-origin: center;
  }
  100% {
    transform: scale(1.1, 1.1);
    transform-origin: center;
  }
}
.p-topMv__scrollDown {
  position: absolute;
  bottom: 48px;
  right: 60px;
  font-size: 14px;
  color: #ffffff;
  font-family: "A1ゴシック M", "A1 Gothic M";
  letter-spacing: 0.1em;
  transform: rotate(90deg);
  transform-origin: right;
}
.p-topMv__scrollDown:after {
  content: "";
  width: 45px;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  bottom: 7px;
  left: 100px;
  transform: translateX(0);
  animation-name: lineAnimation;
  animation-duration: 1.6s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}
@media screen and (max-width: 960px) {
  .p-topMv__scrollDown {
    bottom: 36px;
    right: 25px;
    font-size: 12px;
  }
}
@keyframes lineAnimation {
  0% {
    width: 0;
  }
  100% {
    width: 45px;
  }
}
.p-topLead {
  position: relative;
  padding: 0 0 300px;
  background-image: url("/images/top_lead_bg.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-topLead {
    padding: 0 0 150px;
    background-image: none;
  }
}
.p-topLead .c-heading__sectionTitle {
  background-color: #ffffff;
}
.p-topLead__inner {
  width: 100%;
  background-color: #ffffff;
  padding: 100px 25px;
}
@media screen and (max-width: 767px) {
  .p-topLead__inner {
    padding: 60px 5%;
  }
}
.p-topLead__text {
  font-size: 15px;
  line-height: 40px;
  color: #282828;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topLead__text {
    font-size: 14px;
    line-height: 30px;
  }
}
.p-topService {
  position: relative;
  background: #fff;
}
.p-topService__inner {
  padding: 120px 0 0;
}
@media screen and (max-width: 960px) {
  .p-topService__inner {
    padding: 60px 0 0;
  }
}
.p-topService__list {
  display: flex;
  padding: 60px 0;
}
@media screen and (max-width: 960px) {
  .p-topService__list {
    padding: 30px 0;
  }
}
.p-topService__list[data-list-order=left] {
  flex-direction: row;
}
@media screen and (max-width: 960px) {
  .p-topService__list[data-list-order=left] {
    flex-direction: column-reverse;
  }
}
.p-topService__list[data-list-order=right] {
  flex-direction: row-reverse;
}
@media screen and (max-width: 960px) {
  .p-topService__list[data-list-order=right] {
    flex-direction: column-reverse;
  }
}
.p-topService__list[data-list-order=right] .p-topService__listImgWrap {
  left: 0;
}
.p-topService__listContent {
  width: 460px;
  padding: 0 100px;
}
@media screen and (max-width: 960px) {
  .p-topService__listContent {
    width: 100%;
    padding: 0 4%;
  }
}
.p-topService__listImg {
  width: 0;
  position: relative;
  overflow: hidden;
  transition: 1.5s;
}
@media screen and (max-width: 960px) {
  .p-topService__listImg {
    padding: 60% 0 0;
  }
}
.p-topService__listImgWrap {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 480px);
  height: 530px;
}
@media screen and (max-width: 960px) {
  .p-topService__listImgWrap {
    width: 100%;
    height: 100%;
  }
}
.p-topService__listImgIn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 960px) {
  .p-topService__listImgIn {
    left: 2%;
    width: 96%;
  }
}
.p-topService__listImg.is-animation {
  width: 100%;
}
.p-topService__listLogo {
  width: 160px;
  margin: 40px auto 50px;
}
.p-topService__listLogo img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-topService__listLogo {
    width: 100px;
    margin: 25px auto 25px;
  }
}
.p-topService__listConcept {
  font-family: "A1ゴシック M", "A1 Gothic M";
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.05em;
  margin: 0 0 20px;
  text-align: center;
}
.p-topService__listLead {
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-topService__listLead {
    font-size: 13px;
    line-height: 24px;
  }
}
.p-top .c-btn_wrap {
  position: relative;
  background: #fff;
  padding: 1px 0;
}
@media screen and (max-width: 767px) {
  .p-top .c-btn_wrap {
    padding: 1px 5%;
  }
}

body.is-lock {
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.p-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}
.p-loading__logo span {
  opacity: 0;
  position: relative;
  display: inline-block;
}
.p-loading__logo span:nth-child(1) {
  right: -14px;
  transform: translate(0, -20px);
}
@media screen and (max-width: 767px) {
  .p-loading__logo span:nth-child(1) {
    right: -12px;
  }
}
.p-loading__logo span:nth-child(3) {
  left: -25px;
  transform: translate(0, 20px);
}
@media screen and (max-width: 767px) {
  .p-loading__logo span:nth-child(3) {
    left: -20px;
  }
}
.p-loading__logo img {
  height: 40px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-loading__logo img {
    height: 32px;
  }
}
.p-loading.is-load {
  opacity: 0;
  transition: 1.2s;
  transition-delay: 2.8s;
}
.p-loading.is-load span {
  transition: 0.8s;
}
.p-loading.is-load span:nth-child(1) {
  opacity: 1;
  transform: translate(0, 0);
  transition-delay: 0.8s;
}
.p-loading.is-load span:nth-child(2) {
  opacity: 1;
  transition-delay: 0.3s;
}
.p-loading.is-load span:nth-child(3) {
  opacity: 1;
  transform: translate(0, 0);
  transition-delay: 1.2s;
}
.p-loading.is-loaded {
  display: none;
}

.p-companyMv {
  padding: 16px 0 16px 140px;
}
.p-companyMv__inner {
  position: relative;
  background-image: url("/images/company_mv.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 360px;
}
@media screen and (max-width: 767px) {
  .p-companyMv__inner {
    height: 160px;
  }
}
.p-companyMv__inner h1 {
  font-family: "A1ゴシック M", "A1 Gothic M";
  font-size: 24px;
  line-height: 42px;
  letter-spacing: 0.2em;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: calc(50% - 70px);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .p-companyMv__inner h1 {
    left: 50%;
  }
}
@media screen and (max-width: 767px) {
  .p-companyMv__inner h1 {
    font-size: 18px;
    line-height: 36px;
  }
}
@media screen and (max-width: 960px) {
  .p-companyMv {
    padding: 16px 0 16px 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-companyMv {
    padding: 0 0 0 30px;
  }
}
.p-companyConcept {
  padding: 150px 0;
}
@media screen and (max-width: 960px) {
  .p-companyConcept {
    padding: 100px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-companyConcept {
    padding: 50px 0;
  }
}
.p-companyConcept__inner {
  display: flex;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  padding: 0 25px;
}
@media screen and (max-width: 960px) {
  .p-companyConcept__inner {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-companyConcept__inner {
    padding: 0 4%;
  }
}
.p-companyConcept__logo {
  padding: 0 107px;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .p-companyConcept__logo {
    padding: 0;
  }
}
.p-companyConcept__logo img {
  width: 147px;
  height: 130px;
}
@media screen and (max-width: 960px) {
  .p-companyConcept__logo img {
    width: 120px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-companyConcept__logo img {
    width: 90px;
  }
}
.p-companyConcept__lead {
  padding: 0 0 0 40px;
}
@media screen and (max-width: 767px) {
  .p-companyConcept__lead {
    padding: 0 0 0;
  }
}
.p-companyConcept__lead h2 {
  font-size: 26px;
  line-height: 50px;
  letter-spacing: 0.2em;
  margin: 0 0 70px;
}
@media screen and (max-width: 960px) {
  .p-companyConcept__lead h2 {
    font-size: 20px;
    line-height: 40px;
    margin: 0 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-companyConcept__lead h2 {
    margin: 0 0 30px;
  }
}
.p-companyConcept__lead p {
  font-size: 16px;
  line-height: 43.5px;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-companyConcept__lead p {
    font-size: 14px;
    line-height: 35px;
  }
}
.p-companyInfo {
  padding: 0 0 150px;
}
@media screen and (max-width: 767px) {
  .p-companyInfo {
    padding: 0 0 70px;
  }
}
.p-companyInfo__title {
  font-family: "A1ゴシック M", "A1 Gothic M";
  font-size: 16px;
  line-height: 72px;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-companyInfo__title {
    font-size: 15px;
    line-height: 60px;
  }
}
.p-companyInfo__inner {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .p-companyInfo__inner {
    padding: 0 4%;
  }
}
.p-companyInfo__box {
  padding: 40px 120px 40px;
  border-top: 2px solid #282828;
  border-bottom: 2px solid #282828;
}
@media screen and (max-width: 960px) {
  .p-companyInfo__box {
    padding: 40px 60px 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-companyInfo__box {
    padding: 20px 0 20px;
  }
}
.p-companyInfo__box ul li {
  display: flex;
  justify-self: flex-start;
  font-size: 14px;
  line-height: 30px;
  margin: 0 0 20px;
}
@media screen and (max-width: 767px) {
  .p-companyInfo__box ul li {
    justify-content: space-between;
  }
  .p-companyInfo__box ul li span {
    display: block;
    width: calc(100% - 110px);
  }
}
.p-companyInfo__box ul li:before {
  content: attr(data-list-label);
  display: block;
  width: 170px;
  font-size: 14px;
  line-height: 30px;
}
@media screen and (max-width: 767px) {
  .p-companyInfo__box ul li:before {
    width: 90px;
    line-height: 25px;
  }
}
.p-companyGallery {
  padding: 0 0 100px;
}
@media screen and (max-width: 767px) {
  .p-companyGallery ul li {
    padding: 0 5px 0 0;
  }
}
.p-companyGallery ul li img {
  height: 310px;
}
@media screen and (max-width: 767px) {
  .p-companyGallery ul li img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-companyGallery {
    padding: 0 0 60px;
  }
}
.p-company .btnWrap {
  padding: 0 4%;
}

.p-contactMv {
  padding: 16px 0 16px 140px;
}
.p-contactMv__inner {
  position: relative;
  background-image: url("/images/contact_mv.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 360px;
}
@media screen and (max-width: 960px) {
  .p-contactMv__inner {
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .p-contactMv__inner {
    height: 160px;
  }
}
.p-contactMv__inner h1 {
  font-family: "A1ゴシック M", "A1 Gothic M";
  font-size: 24px;
  line-height: 42px;
  letter-spacing: 0.2em;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: calc(50% - 70px);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .p-contactMv__inner h1 {
    left: 50%;
  }
}
@media screen and (max-width: 767px) {
  .p-contactMv__inner h1 {
    font-size: 18px;
    line-height: 36px;
  }
}
@media screen and (max-width: 960px) {
  .p-contactMv {
    padding: 16px 0 16px 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-contactMv {
    padding: 0 0 0 30px;
  }
}
.p-contactForm {
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .p-contactForm {
    padding: 60px 0;
  }
}
.p-contactForm__inner {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .p-contactForm__inner {
    padding: 0 4%;
  }
}
.p-contactForm__lead {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.11em;
  text-align: center;
  padding: 0 0 120px;
}
@media screen and (max-width: 767px) {
  .p-contactForm__lead {
    font-size: 14px;
    line-height: 26px;
    padding: 0 0 60px;
  }
}
.p-contactForm__sheets li {
  display: flex;
  margin: 0 0 25px;
}
@media screen and (max-width: 767px) {
  .p-contactForm__sheets li {
    display: block;
    margin: 0 0 15px;
  }
}
.p-contactForm__sheetsLabel {
  font-family: "A1ゴシック M", "A1 Gothic M";
  display: block;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.05em;
  width: 200px;
  padding: 5px 20px 0 0;
}
@media screen and (max-width: 767px) {
  .p-contactForm__sheetsLabel {
    font-size: 15px;
    line-height: 26px;
    width: 100%;
    padding: 0 0;
  }
}
.p-contactForm__sheetsLabel[data-required]:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 0 0 4px;
  background-image: url("/images/icon_asta.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.p-contactForm__sheetsInput {
  width: calc(100% - 200px);
}
@media screen and (max-width: 767px) {
  .p-contactForm__sheetsInput {
    width: 100%;
  }
}
.p-contactForm__sheetsInput select,
.p-contactForm__sheetsInput input:not([type=checkbox]),
.p-contactForm__sheetsInput textarea {
  appearance: none;
  background: none;
  border: none;
  display: block;
}
.p-contactForm__sheetsInput select,
.p-contactForm__sheetsInput input[type=text],
.p-contactForm__sheetsInput input[type=email],
.p-contactForm__sheetsInput input[type=tel] {
  width: 100%;
  height: 45px;
  padding: 6px 8px;
  font-size: 16px;
  border: 1px solid #282828;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .p-contactForm__sheetsInput select,
  .p-contactForm__sheetsInput input[type=text],
  .p-contactForm__sheetsInput input[type=email],
  .p-contactForm__sheetsInput input[type=tel] {
    height: 40px;
  }
}
.p-contactForm__sheetsInput textarea {
  width: 100%;
  height: 200px;
  padding: 6px 8px;
  font-size: 16px;
  border: 1px solid #282828;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .p-contactForm__sheetsInput textarea {
    height: 150px;
  }
}
.p-contactForm__sheetsInput select {
  cursor: pointer;
  padding-left: 40px;
  background: url("/images/icon_select.svg") no-repeat 15px center;
  background-size: 9px 16px;
}
.p-contactForm__sheetsInput input[type=checkbox] {
  padding: 0 0 0 20px;
}
.p-contactForm__sheetsInput a {
  padding: 0 0 0 20px;
  text-decoration: underline;
  font-size: 13px;
  line-height: 26px;
  color: #282828;
}
.p-contact input.myError,
.p-contact textarea.myError,
.p-contact select.myError {
  background-color: #ffe3e3 !important;
  border: 1px solid #ffa9a9 !important;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
}
.p-contact .myError p {
  margin-top: 5px;
  color: #f00;
}

.mfp-fade.mfp-bg.mfp-ready {
  background-color: #DADADA;
  opacity: 0.9 !important;
}

.mfp-close {
  display: none !important;
}

.mfp-content .modalPop {
  position: relative;
  line-height: 1.8;
  width: 90%;
  max-width: 800px;
  max-height: 90%;
  height: 600px;
  overflow-y: scroll;
  padding: 80px;
  background: #fff;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .mfp-content .modalPop {
    padding: 40px 20px 30px;
  }
}
.mfp-content .modalPop.sendPop {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 300px;
  overflow-y: hidden;
}
.mfp-content .sendPop__title {
  font-size: 20px;
  font-family: "A1ゴシック M", "A1 Gothic M";
  margin-bottom: 45px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mfp-content .sendPop__title {
    font-size: 16px;
    margin-bottom: 25px;
  }
}
.mfp-content .sendPop__txt {
  text-align: center;
}
.mfp-content .privacyPop__title {
  font-size: 20px;
  font-family: "A1ゴシック M", "A1 Gothic M";
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .mfp-content .privacyPop__title {
    font-size: 18px;
    margin-bottom: 25px;
  }
}
.mfp-content .privacyPop__box + .privacyPop__box {
  margin-top: 40px;
}
.mfp-content .privacyPop__boxTitle {
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .mfp-content .privacyPop__boxTitle {
    font-size: 16px;
  }
}
.mfp-content .popup-modal-dismiss {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 25px;
  width: 25px;
}
@media screen and (max-width: 767px) {
  .mfp-content .popup-modal-dismiss {
    top: 15px;
    right: 15px;
    height: 20px;
    width: 20px;
  }
}

/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.p-service__mv {
  position: relative;
}
.p-service__slider .slick-slide {
  opacity: 1 !important;
}
.p-service__slider_slideImg {
  width: 100%;
  height: 680px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-service__slider_slideImg {
    height: calc(100vh - 105px);
  }
}
.p-service__slider_slideImg_inner {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.p-service__slider .is-prev {
  z-index: 1000 !important;
}
.p-service__slider .slick-current {
  z-index: 1001 !important;
}
.p-service__slider .slick-current .p-service__slider_slideImg {
  animation: slideAnimation 0.4s ease;
}
.p-service__slider .is-moving .p-service__slider_slideImg_inner {
  animation: slideAnimation2 10s linear;
}
@keyframes slideAnimation {
  0% {
    width: 0.0001%;
    transform-origin: top left;
  }
  100% {
    width: 100%;
    transform-origin: top left;
  }
}
@keyframes slideAnimation2 {
  0% {
    transform: translateX(-40px);
  }
  100% {
    transform: translateX(10px);
  }
}
.p-service__slider .serviceSlide-dots {
  position: absolute;
  bottom: 80px;
  left: 28vw;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-service__slider .serviceSlide-dots {
    bottom: -20px;
    left: 0;
    width: 100%;
    text-align: center;
  }
}
.p-service__slider .serviceSlide-dots li {
  display: inline-block;
  margin: 0 5px;
}
.p-service__slider .serviceSlide-dots li button {
  font-size: 0;
  width: 50px;
  height: 3px;
  padding: 0;
  appearance: none;
  border: none;
  background: #D6D6D6;
}
.p-service__slider .serviceSlide-dots li.slick-active button {
  background: #323232;
}
.p-service__borderBox {
  width: 220px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 23vw;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-service__borderBox {
    width: 30px;
    left: 0;
  }
}
.p-service__title {
  position: absolute;
  display: block;
  width: 177px;
  top: 50%;
  left: 70px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-service__title {
    width: 115px;
    left: 20px;
  }
}
.p-service__title img {
  width: 100%;
}
.p-service__title:after {
  content: attr(data-sub-title);
  display: block;
  font-size: 16px;
  margin: 50px auto 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-service__title:after {
    font-size: 11px;
    margin: 30px auto 0;
  }
}
.p-serviceLead {
  padding: 0 0 300px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-serviceLead {
    padding: 0 0 200px;
    background-image: none !important;
  }
}
.p-serviceLead .c-heading__sectionTitle {
  background-color: #ffffff;
}
.p-serviceLead__inner {
  width: 100%;
  background-color: #ffffff;
  padding: 100px 25px;
}
@media screen and (max-width: 767px) {
  .p-serviceLead__inner {
    padding: 50px 5%;
  }
}
.p-serviceLead__text {
  font-size: 15px;
  line-height: 40px;
  color: #282828;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-serviceLead__text {
    font-size: 14px;
    line-height: 35px;
  }
}
.p-serviceCalendarArea {
  padding: 100px 25px;
}
@media screen and (max-width: 767px) {
  .p-serviceCalendarArea {
    padding: 50px 5%;
  }
}
.p-serviceCalendarArea__inner {
  position: relative;
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}
.p-serviceCalendarArea .c-heading__basicTitle {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-serviceCalendarArea .c-heading__basicTitle {
    margin-bottom: 20px;
  }
}
.p-serviceCalendarArea .p-serviceCalendar {
  font-family: "A1ゴシック M", "A1 Gothic M";
  text-align: center;
  margin-bottom: 50px;
}
.p-serviceCalendarArea .p-serviceCalendarReceptionTimeBox {
  display: inline-flex;
  border: 1px solid #323232;
  border-bottom: none;
  padding: 18px 35px 8px;
}
@media screen and (max-width: 767px) {
  .p-serviceCalendarArea .p-serviceCalendarReceptionTimeBox {
    display: block;
    padding: 18px 15px 8px;
  }
  .p-serviceCalendarArea .p-serviceCalendarReceptionTimeBox dt {
    margin-bottom: 10px;
  }
  .p-serviceCalendarArea .p-serviceCalendarReceptionTimeBox dd {
    margin: 0;
  }
}
.p-serviceCalendarArea #calendar {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
}
.p-serviceCalendarArea #calendar .fc-widget-header th {
  padding: 5px;
  background: #fafafa;
}
.p-serviceCalendarArea #calendar .fc-header-toolbar .fc-center h2 {
  font-family: "A1ゴシック M", "A1 Gothic M";
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-serviceCalendarArea #calendar .fc-header-toolbar .fc-center h2 {
    font-size: 16px;
  }
}
.p-serviceCalendarArea #calendar .fc-header-toolbar .fc-center button {
  appearance: none;
  border: none;
  padding: 0;
  width: 23.457px;
  height: 17px;
  background-color: transparent;
  text-shadow: none;
  box-shadow: none;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.p-serviceCalendarArea #calendar .fc-header-toolbar .fc-center button.fc-prev-button {
  background-image: url(/images/icon_arrow.svg);
}
.p-serviceCalendarArea #calendar .fc-header-toolbar .fc-center button.fc-next-button {
  background-image: url(/images/icon_arrow.svg);
  transform-origin: center;
  transform: rotate(180deg);
}
.p-serviceCalendarArea #calendar .fc-header-toolbar .fc-center button .fc-icon {
  display: none;
}
.p-serviceMapArea {
  padding: 100px 25px;
  background-color: #ffffff;
}
@media screen and (max-width: 960px) {
  .p-serviceMapArea {
    padding: 50px 3%;
  }
}
.p-serviceMapArea[data-map-type=double] .p-serviceMapArea__inner {
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .p-serviceMapArea[data-map-type=double] .p-serviceMapArea__box {
    width: 100%;
    margin-bottom: 50px;
  }
  .p-serviceMapArea[data-map-type=double] .p-serviceMapArea__box:last-child {
    margin-bottom: 0;
  }
}
.p-serviceMapArea[data-map-type=double] .p-serviceMapArea__map {
  width: 100%;
  height: 340px;
}
@media screen and (max-width: 767px) {
  .p-serviceMapArea[data-map-type=double] .p-serviceMapArea__map {
    height: 230px;
  }
}
.p-serviceMapArea[data-map-type=double] .p-serviceMapArea__infoBox {
  width: 100%;
  padding: 40px 0;
}
@media screen and (max-width: 960px) {
  .p-serviceMapArea[data-map-type=double] .p-serviceMapArea__infoBox {
    padding: 0;
  }
}
.p-serviceMapArea__inner {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .p-serviceMapArea__inner {
    flex-direction: column;
  }
}
.p-serviceMapArea__box {
  width: calc(50% - 50px);
}
.p-serviceMapArea__map {
  width: calc(100% - 550px);
  height: 380px;
}
.p-serviceMapArea__map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
}
@media screen and (max-width: 960px) {
  .p-serviceMapArea__map {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-serviceMapArea__map {
    height: 230px;
  }
}
.p-serviceMapArea__infoBox {
  width: 550px;
  padding: 0 70px;
}
.p-serviceMapArea__infoBox h3 {
  font-family: "A1ゴシック M", "A1 Gothic M";
  display: block;
  font-size: 18px;
  line-height: 34px;
  letter-spacing: 0.05em;
  padding: 0 0 12px;
  border-bottom: 1px solid #282828;
  margin: 0 0 20px;
}
.p-serviceMapArea__infoBox address {
  font-size: 14px;
  line-height: 24px;
  margin: 0 0 20px;
}
@media screen and (max-width: 960px) {
  .p-serviceMapArea__infoBox {
    width: 90%;
    margin: 0 auto;
    padding: 0 0;
  }
}
.p-serviceMapArea__info {
  position: relative;
  padding: 0 0 0 70px;
  font-size: 14px;
  line-height: 24px;
}
.p-serviceMapArea__info:before {
  content: attr(data-info-label);
  position: absolute;
  display: block;
  top: 0;
  left: 0;
}
.p-serviceMapArea__linkMap {
  position: relative;
  font-family: "A1ゴシック M", "A1 Gothic M";
  display: inline-block;
  font-size: 14px;
  line-height: 32px;
  letter-spacing: 0.05em;
  margin: 20px 0 0;
  padding: 0 0 0 21px;
  color: #ea4636;
}
.p-serviceMapArea__linkMap:before {
  content: "";
  position: absolute;
  width: 13px;
  height: 18px;
  background-image: url("/images/icon_pin.svg");
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .p-service.__Coffee:before {
    content: "";
    display: block;
    background-image: url(/images/service_coffee_lead_bg_sp.jpg);
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .p-service.__Coffee .slick-dotted.slick-slider {
    margin-bottom: 0;
  }
}

.p-serviceCoffee {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-serviceCoffee {
    background-color: #ffffff;
  }
}
.p-serviceCoffeeLead {
  background-color: #ffffff;
}
.p-serviceCoffeeLead__inner {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  padding: 80px 25px;
}
@media screen and (max-width: 960px) {
  .p-serviceCoffeeLead__inner {
    padding: 80px 25px 400px;
  }
}
@media screen and (max-width: 767px) {
  .p-serviceCoffeeLead__inner {
    padding: 40px 5% 68vw;
  }
}
.p-serviceCoffeeLead__heading {
  font-family: "A1ゴシック M", "A1 Gothic M";
  font-size: 24px;
  line-height: 38px;
  letter-spacing: 0.07em;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  .p-serviceCoffeeLead__heading {
    font-size: 18px;
    line-height: 30px;
    margin: 0 0 20px;
  }
}
.p-serviceCoffeeLead__text {
  font-size: 16px;
  line-height: 36px;
}
@media screen and (max-width: 767px) {
  .p-serviceCoffeeLead__text {
    font-size: 14px;
    line-height: 26px;
  }
}
.p-serviceCoffeeLuwanda {
  position: relative;
  width: 100%;
  min-width: 960px;
  height: 96.5vw;
  background-color: #ffffff;
}
@media screen and (max-width: 960px) {
  .p-serviceCoffeeLuwanda {
    height: 840px;
    min-width: 1px;
  }
}
@media screen and (max-width: 767px) {
  .p-serviceCoffeeLuwanda {
    height: 250vw;
  }
}
.p-serviceCoffeeLuwanda:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 580px;
  background-color: #eeeeee;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .p-serviceCoffeeLuwanda:before {
    height: 470px;
  }
}
@media screen and (max-width: 767px) {
  .p-serviceCoffeeLuwanda:before {
    height: 520px;
    z-index: 1;
  }
}
.p-serviceCoffeeLuwanda__inner {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  padding: 80px 25px;
}
@media screen and (max-width: 767px) {
  .p-serviceCoffeeLuwanda__inner {
    position: relative;
    z-index: 1;
  }
}
.p-serviceCoffeeLuwanda__heading {
  font-family: "A1ゴシック M", "A1 Gothic M";
  margin: 30px 0;
  font-size: 24px;
  line-height: 46px;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  .p-serviceCoffeeLuwanda__heading {
    font-size: 18px;
    line-height: 36px;
  }
}
.p-serviceCoffeeLuwanda__text {
  font-size: 16px;
  line-height: 36px;
}
@media screen and (max-width: 767px) {
  .p-serviceCoffeeLuwanda__text {
    font-size: 14px;
    line-height: 28px;
  }
}
.p-serviceCoffeeLuwanda__deco1, .p-serviceCoffeeLuwanda__deco2, .p-serviceCoffeeLuwanda__deco3 {
  position: absolute;
}
.p-serviceCoffeeLuwanda__deco1 {
  width: 39.855vw;
  top: 5.3vw;
  right: 7.1vw;
}
@media screen and (max-width: 960px) {
  .p-serviceCoffeeLuwanda__deco1 {
    width: 382.59px;
    top: -349.12px;
    right: 68.16px;
  }
}
@media screen and (max-width: 767px) {
  .p-serviceCoffeeLuwanda__deco1 {
    width: 70vw;
    top: -62vw;
    right: 20px;
  }
}
.p-serviceCoffeeLuwanda__deco2 {
  width: 34.42vw;
  top: 47.17vw;
  left: 7vw;
}
@media screen and (max-width: 960px) {
  .p-serviceCoffeeLuwanda__deco2 {
    width: 330.42px;
    top: 410.832px;
    right: 67.2px;
  }
}
@media screen and (max-width: 767px) {
  .p-serviceCoffeeLuwanda__deco2 {
    width: 60vw;
    top: 112vw;
    left: 20px;
  }
}
.p-serviceCoffeeLuwanda__deco3 {
  width: 21.23vw;
  top: 60.43vw;
  right: 21.73vw;
}
@media screen and (max-width: 960px) {
  .p-serviceCoffeeLuwanda__deco3 {
    width: 203.808px;
    top: 530.128px;
    right: 58.608px;
  }
}
@media screen and (max-width: 767px) {
  .p-serviceCoffeeLuwanda__deco3 {
    width: 40vw;
    top: 180vw;
    right: 60px;
  }
}
.p-serviceCoffeeList {
  background-color: #eeeeee;
  padding: 0 0 40px;
}
.p-serviceCoffeeList__box {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  padding: 80px 25px 40px;
}
.p-serviceCoffeeList__boxTitle {
  font-family: "A1ゴシック M", "A1 Gothic M";
  font-size: 24px;
  line-height: 42px;
  letter-spacing: 0.2em;
  color: #282828;
}
@media screen and (max-width: 767px) {
  .p-serviceCoffeeList__boxTitle {
    font-size: 18px;
    line-height: 35px;
  }
}
.p-serviceCoffeeList__boxLead {
  font-size: 16px;
  line-height: 38px;
  letter-spacing: 0.05em;
  color: #282828;
}
@media screen and (max-width: 767px) {
  .p-serviceCoffeeList__boxLead {
    font-size: 14px;
    line-height: 28px;
  }
}
.p-serviceCoffeeList__items {
  padding: 0 0 60px;
}
@media screen and (max-width: 767px) {
  .p-serviceCoffeeList__items .slick-slide li {
    padding: 0 4px;
  }
}
.p-serviceCoffeeList__items .slick-slide li img {
  width: 293px;
}
@media screen and (max-width: 767px) {
  .p-serviceCoffeeList__items .slick-slide li img {
    width: 100%;
    height: auto;
  }
}
.p-serviceCoffeeList__items .slick-slide li h4 {
  font-family: "A1ゴシック M", "A1 Gothic M";
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 23px 0 0;
}
@media screen and (max-width: 767px) {
  .p-serviceCoffeeList__items .slick-slide li h4 {
    font-size: 14px;
    margin: 15px 0 0;
  }
}
.p-serviceCoffeeList__items .slick-slide li h4:after {
  content: attr(data-item-ja);
  display: block;
  margin: 0 auto;
  font-size: 14px;
  line-height: 24.5px;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-serviceCoffeeList__items .slick-slide li h4:after {
    font-size: 12px;
  }
}
.p-serviceCoffeeList__items .slick-arrow:before {
  display: none;
}
.p-serviceCoffeeList__items .slick-next,
.p-serviceCoffeeList__items .slick-prev {
  top: auto;
  bottom: 0;
  right: auto;
  left: auto;
  width: 23.457px;
  height: 16.457px;
  background-image: url("/images/icon_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.p-serviceCoffeeList__items .slick-prev {
  left: calc(50% - 50px);
}
@media screen and (max-width: 767px) {
  .p-serviceCoffeeList__items .slick-prev {
    left: calc(50% - 30px);
  }
}
.p-serviceCoffeeList__items .slick-next {
  bottom: 8.2285px;
  right: calc(50% - 50px);
  transform-origin: left;
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .p-serviceCoffeeList__items .slick-next {
    right: calc(50% - 60px);
  }
}
.p-serviceCoffeeList .btnWrap {
  text-align: center;
  margin-top: 50px;
  padding: 0 4%;
}
@media screen and (max-width: 767px) {
  .p-serviceCoffeeList .btnWrap {
    margin-top: 30px;
  }
}
.p-serviceCoffeeList .btnWrap a {
  display: inline-flex;
  margin: 0 30px;
}
@media screen and (max-width: 767px) {
  .p-serviceCoffeeList .btnWrap a {
    display: flex;
    margin: 20px 0;
  }
}

.p-serviceSpaceConcept {
  display: flex;
  margin: 211px 0 183px;
}
@media screen and (max-width: 960px) {
  .p-serviceSpaceConcept {
    display: block;
    margin: 100px 0 100px;
  }
}
.p-serviceSpaceConcept__photo {
  width: calc(100% - 720px);
  height: 540px;
  background-image: url("/images/service_space_photo.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 960px) {
  .p-serviceSpaceConcept__photo {
    width: 90%;
    padding-top: 70%;
    height: auto;
  }
}
.p-serviceSpaceConcept__lead {
  width: 720px;
  padding: 0 100px;
}
@media screen and (max-width: 960px) {
  .p-serviceSpaceConcept__lead {
    width: 100%;
    padding: 0 4%;
    text-align: center;
  }
}
.p-serviceSpaceConcept__lead h2 {
  font-family: "A1ゴシック M", "A1 Gothic M";
  font-size: 28px;
  line-height: 60px;
  letter-spacing: 0.2em;
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  .p-serviceSpaceConcept__lead h2 {
    font-size: 20px;
    line-height: 40px;
    margin: 20px 0;
  }
}
.p-serviceSpaceConcept__lead p {
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-serviceSpaceConcept__lead p {
    font-size: 13px;
    line-height: 30px;
  }
}
.p-serviceSpaceRental {
  margin: 183px 0 211px;
}
@media screen and (max-width: 767px) {
  .p-serviceSpaceRental {
    margin: 100px 0 100px;
  }
}
.p-serviceSpaceRental__gallery {
  position: relative;
  width: calc(100% - 290px);
  margin: 0 0 0 290px;
}
@media screen and (max-width: 960px) {
  .p-serviceSpaceRental__gallery {
    width: 92%;
    margin: 0 auto;
  }
}
.p-serviceSpaceRental__gallery:before {
  content: "RENTAL SPACE";
  position: absolute;
  top: 50%;
  left: -190px;
  z-index: 1;
  font-family: "A1ゴシック M", "A1 Gothic M";
  font-size: 36px;
  letter-spacing: 0.22em;
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .p-serviceSpaceRental__gallery:before {
    position: static;
    display: block;
    font-size: 18px;
    margin: 0 0 15px 3%;
  }
}
.p-serviceSpaceRental__gallery li img {
  margin: 0 30px 0 0;
  height: 560px;
}
@media screen and (max-width: 960px) {
  .p-serviceSpaceRental__gallery li img {
    margin: 0 0;
    width: 100%;
    height: auto;
  }
}
.p-serviceSpaceRental__gallery li p {
  font-size: 14px;
  line-height: 34px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-serviceSpaceRental__gallery li p {
    margin-top: 3px;
    font-size: 13px;
    line-height: 20px;
  }
}
.p-serviceSpaceRental__gallery .slick-arrow:before {
  display: none;
}
.p-serviceSpaceRental__gallery .slick-next, .p-serviceSpaceRental__gallery .slick-prev {
  top: auto;
  bottom: -40px;
  right: auto;
  left: auto;
  width: 23.457px;
  height: 16.457px;
  background-image: url("/images/icon_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.p-serviceSpaceRental__gallery .slick-prev {
  right: 160px;
}
@media screen and (max-width: 767px) {
  .p-serviceSpaceRental__gallery .slick-prev {
    right: 50px;
  }
}
.p-serviceSpaceRental__gallery .slick-next {
  bottom: -31.2285px;
  right: 100px;
  transform-origin: left;
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .p-serviceSpaceRental__gallery .slick-next {
    right: -16px;
  }
}
.p-serviceSpacePrice {
  background-color: #f3f0eb;
  padding: 110px 0 130px;
}
@media screen and (max-width: 960px) {
  .p-serviceSpacePrice {
    padding: 60px 0 70px;
  }
}
@media screen and (max-width: 767px) {
  .p-serviceSpacePrice {
    padding: 50px 0 30px;
  }
}
.p-serviceSpacePrice__inner {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  padding: 0 25px;
}
@media screen and (max-width: 960px) {
  .p-serviceSpacePrice__inner {
    padding: 0 4%;
  }
}
.p-serviceSpacePrice__planBasic {
  display: flex;
  justify-content: space-between;
  padding: 40px 0 140px;
}
@media screen and (max-width: 960px) {
  .p-serviceSpacePrice__planBasic {
    padding: 10px 0 60px;
    flex-direction: column;
  }
}
.p-serviceSpacePrice__planBox {
  width: calc(50% - 25px);
  padding: 30px 43px;
  background-color: #ffffff;
}
@media screen and (max-width: 960px) {
  .p-serviceSpacePrice__planBox {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-serviceSpacePrice__planBox {
    padding: 20px 20px;
  }
}
.p-serviceSpacePrice__planBox h4 {
  font-family: "A1ゴシック M", "A1 Gothic M";
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #282828;
}
@media screen and (max-width: 767px) {
  .p-serviceSpacePrice__planBox h4 {
    font-size: 15px;
    line-height: 30px;
  }
}
.p-serviceSpacePrice__planBox b.price {
  display: block;
  margin: 30px 0 20px;
  font-family: "A1ゴシック M", "A1 Gothic M";
  font-size: 22px;
  letter-spacing: 0.1em;
}
.p-serviceSpacePrice__planBox b.price:after {
  content: "／時間";
  display: inline-block;
  font-size: 18px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-serviceSpacePrice__planBox b.price:after {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-serviceSpacePrice__planBox b.price {
    margin: 20px 0 10px;
    font-size: 20px;
  }
}
.p-serviceSpacePrice__planBox p {
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-serviceSpacePrice__planBox p {
    font-size: 14px;
    line-height: 26px;
  }
}
.p-serviceSpacePrice__planBox p.annotation {
  font-size: 14px;
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .p-serviceSpacePrice__planBox p.annotation {
    font-size: 12px;
    line-height: 18px;
  }
}
.p-serviceSpacePrice__options {
  display: flex;
  justify-content: center;
  padding: 50px 0 100px;
}
@media screen and (max-width: 960px) {
  .p-serviceSpacePrice__options {
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-serviceSpacePrice__options {
    padding: 30px 0 30px;
  }
}
.p-serviceSpacePrice__options li {
  position: relative;
  margin: 0 0 0 48px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: #ffffff;
}
@media screen and (max-width: 960px) {
  .p-serviceSpacePrice__options li {
    vertical-align: top;
    display: inline-block;
    margin: 0 20px 30px 20px !important;
  }
}
@media screen and (max-width: 767px) {
  .p-serviceSpacePrice__options li {
    width: 85px;
    height: 85px;
    margin: 0 10px 42px 10px !important;
  }
}
.p-serviceSpacePrice__options li img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-serviceSpacePrice__options li:first-child {
  margin: 0;
}
.p-serviceSpacePrice__options li:after {
  content: attr(data-icon-label);
  position: absolute;
  font-size: 14px;
  letter-spacing: 0.1em;
  white-space: pre;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-serviceSpacePrice__options li:after {
    font-size: 13px;
    bottom: -25px;
  }
}
.p-serviceSpacePrice__options li.free:before {
  content: "無料\a設備";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: pre;
  font-size: 14px;
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .p-serviceSpacePrice__options li.free:before {
    font-size: 13px;
    line-height: 18px;
  }
}
.p-serviceSpacePrice__options li.wifi img {
  width: 49px;
}
.p-serviceSpacePrice__options li.power img {
  width: 30px;
}
.p-serviceSpacePrice__options li.airfilter img {
  width: 36.5px;
}
.p-serviceSpacePrice__options li.eating img {
  width: 36.2px;
}
@media screen and (max-width: 767px) {
  .p-serviceSpacePrice__options li.wifi img {
    width: 40px;
  }
  .p-serviceSpacePrice__options li.power img {
    width: 21px;
  }
  .p-serviceSpacePrice__options li.airfilter img {
    width: 27.5px;
  }
  .p-serviceSpacePrice__options li.eating img {
    width: 27.2px;
  }
}
.p-serviceSpacePrice__optionsPrice li {
  display: flex;
  justify-content: space-between;
  margin: 0 0 3px;
}
.p-serviceSpacePrice__optionsPrice li h5 {
  display: flex;
  align-items: center;
  width: calc(100% - 270px);
  min-height: 50px;
  padding: 0 44px;
  font-size: 14px;
  line-height: 32px;
  letter-spacing: 0.05em;
  background-color: #ffffff;
}
@media screen and (max-width: 960px) {
  .p-serviceSpacePrice__optionsPrice li h5 {
    width: calc(100% - 190px);
  }
}
@media screen and (max-width: 767px) {
  .p-serviceSpacePrice__optionsPrice li h5 {
    width: calc(100% - 80px);
    padding: 8px 20px;
    line-height: 25px;
  }
}
.p-serviceSpacePrice__optionsPrice li p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 267px;
  min-height: 50px;
  font-size: 14px;
  line-height: 32px;
  letter-spacing: 0.05em;
  background-color: #ffffff;
}
@media screen and (max-width: 960px) {
  .p-serviceSpacePrice__optionsPrice li p {
    width: 187px;
  }
}
@media screen and (max-width: 767px) {
  .p-serviceSpacePrice__optionsPrice li p {
    width: 77px;
  }
}
.p-serviceSpacePrice__optionsPriceAnnotation {
  text-align: right;
  font-size: 12px;
  margin: 17px 0 0;
}
@media screen and (max-width: 767px) {
  .p-serviceSpacePrice__optionsPriceAnnotation {
    font-size: 11px;
    margin: 10px 0 0;
  }
}
.p-serviceSpacePrice__contactBtn {
  margin: 60px 0 100px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-serviceSpacePrice__contactBtn {
    margin: 30px 0 50px;
  }
}
.p-serviceSpacePrice__cautions {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .p-serviceSpacePrice__cautions {
    flex-direction: column;
  }
}
.p-serviceSpacePrice__cautionsBox {
  width: calc(50% - 20px);
}
@media screen and (max-width: 960px) {
  .p-serviceSpacePrice__cautionsBox {
    width: 100%;
    margin-bottom: 40px;
  }
}
.p-serviceSpacePrice__cautionsBoxTitle {
  font-family: "A1ゴシック M", "A1 Gothic M";
  position: relative;
  padding: 0 0 0 30px;
  margin: 0 0 28px;
  font-size: 16px;
  letter-spacing: 0.17em;
}
.p-serviceSpacePrice__cautionsBoxTitle:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18.3px;
  height: 18.3px;
  background-image: url("/images/icon_cancel.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
.p-serviceSpacePrice__cautionsBoxLabel {
  display: flex;
}
.p-serviceSpacePrice__cautionsBoxLabel[data-row-split="1"] li {
  width: 100%;
}
.p-serviceSpacePrice__cautionsBoxLabel[data-row-split="3"] li {
  width: 140px;
}
.p-serviceSpacePrice__cautionsBoxLabel li {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "A1ゴシック M", "A1 Gothic M";
  font-size: 14px;
  letter-spacing: 0.14em;
  margin: 0 0 0 13.5px;
  height: 35px;
  background-color: #ffffff;
  border-radius: 2.3px;
}
.p-serviceSpacePrice__cautionsBoxLabel li:first-child {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-serviceSpacePrice__cautionsBoxLabel li {
    font-size: 12px;
    margin: 0 0 0 8px;
    height: 30px;
  }
}
.p-serviceSpacePrice__cautionsBoxText {
  margin: 20px 0 0;
}
.p-serviceSpacePrice__cautionsBoxText p {
  font-size: 14px;
  line-height: 30px;
}
@media screen and (max-width: 767px) {
  .p-serviceSpacePrice__cautionsBoxText p {
    text-indent: -1em;
    padding-left: 1em;
    font-size: 12px;
    line-height: 20px;
  }
}

.p-serviceWorksContactIndex {
  display: flex;
  justify-content: center;
  margin: 120px 0;
}
.p-serviceWorksContactIndex a {
  margin: 0 16px;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksContactIndex {
    width: 94%;
    flex-direction: column;
    margin: 60px 3%;
  }
  .p-serviceWorksContactIndex a {
    margin: 8px 0;
  }
}
.p-serviceWorksConcept {
  padding: 110px 0;
  background-color: #f3f0eb;
}
@media screen and (max-width: 960px) {
  .p-serviceWorksConcept {
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-serviceWorksConcept {
    padding: 50px 0;
  }
}
.p-serviceWorksConcept__inner {
  display: flex;
  align-items: center;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  padding: 0 25px;
}
@media screen and (max-width: 960px) {
  .p-serviceWorksConcept__inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .p-serviceWorksConcept__inner {
    padding: 0 4%;
  }
}
.p-serviceWorksConcept__image {
  width: 480px;
  height: 375px;
  margin-left: -20px;
  background-image: url("/images/service_works_concept_image.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 960px) {
  .p-serviceWorksConcept__image {
    width: 100%;
    padding-top: 50%;
    height: auto;
    margin-left: 0;
    margin-bottom: 30px;
    background-size: cover;
    background-position: center 80%;
  }
}
.p-serviceWorksConcept__lead {
  padding: 0 0 0 50px;
}
@media screen and (max-width: 960px) {
  .p-serviceWorksConcept__lead {
    padding: 0 0;
    text-align: center;
  }
}
.p-serviceWorksConcept__lead h3 {
  font-family: "A1ゴシック M", "A1 Gothic M";
  font-size: 28px;
  line-height: 56px;
  letter-spacing: 0.16em;
  margin: 0 0 40px;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksConcept__lead h3 {
    font-size: 20px;
    line-height: 38px;
    margin: 0 0 30px;
  }
}
.p-serviceWorksConcept__lead p {
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksConcept__lead p {
    font-size: 14px;
    line-height: 30px;
  }
}
.p-serviceWorksPointMerit {
  padding: 110px 0 110px;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksPointMerit {
    padding: 60px 0 60px;
  }
}
.p-serviceWorksPointMerit__inner {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksPointMerit__inner {
    padding: 0 4%;
  }
}
.p-serviceWorksPointMerit__list {
  margin: 80px 0 0;
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 960px) {
  .p-serviceWorksPointMerit__list {
    margin: 0;
    flex-direction: column;
  }
}
.p-serviceWorksPointMerit__listItem {
  width: 287px;
}
@media screen and (max-width: 960px) {
  .p-serviceWorksPointMerit__listItem {
    width: 100%;
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-serviceWorksPointMerit__listItem {
    margin-top: 30px;
  }
}
.p-serviceWorksPointMerit__listItem h3 {
  position: relative;
  margin: 58px 0 0;
  border-top: 2px solid #29a0d7;
  border-bottom: 2px solid #29a0d7;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .p-serviceWorksPointMerit__listItem h3 {
    flex-direction: row-reverse;
    justify-content: center;
    padding: 10px 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-serviceWorksPointMerit__listItem h3 {
    padding: 15px 0;
  }
}
.p-serviceWorksPointMerit__listItem h3 img {
  margin: 0 auto 10px;
  height: 170px;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksPointMerit__listItem h3 img {
    margin: 0 auto;
    height: 85px;
  }
}
.p-serviceWorksPointMerit__listItem h3 span {
  font-family: "A1ゴシック M", "A1 Gothic M";
  display: inline-block;
  font-size: 22px;
  line-height: 36px;
  letter-spacing: 0.16em;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-serviceWorksPointMerit__listItem h3 span {
    display: block;
    width: 40%;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .p-serviceWorksPointMerit__listItem h3 span {
    width: 80%;
    font-size: 16px;
    line-height: 30px;
  }
}
.p-serviceWorksPointMerit__listItem h3:before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  width: 63px;
  height: 45px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-serviceWorksPointMerit__listItem h3:before {
    top: -52px;
    width: 50px;
    height: 37px;
  }
}
.p-serviceWorksPointMerit__listItem h3[data-point-label="1"]:before {
  background-image: url("/images/service_works_point_merit_label01.svg");
}
.p-serviceWorksPointMerit__listItem h3[data-point-label="2"]:before {
  background-image: url("/images/service_works_point_merit_label02.svg");
}
.p-serviceWorksPointMerit__listItem h3[data-point-label="3"]:before {
  background-image: url("/images/service_works_point_merit_label03.svg");
}
.p-serviceWorksPointMerit__listItem p {
  margin: 30px 0 0;
  font-size: 16px;
  line-height: 33px;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksPointMerit__listItem p {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 26px;
  }
}
.p-serviceWorksPointSample {
  padding: 110px 0 110px;
  background-color: #f3f0eb;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksPointSample {
    padding: 60px 0 60px;
  }
}
.p-serviceWorksPointSample__inner {
  display: flex;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  padding: 0 25px;
}
@media screen and (max-width: 960px) {
  .p-serviceWorksPointSample__inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .p-serviceWorksPointSample__inner {
    padding: 0 4%;
  }
}
.p-serviceWorksPointSample__lead {
  width: 320px;
  padding: 0 30px 0 0;
}
@media screen and (max-width: 960px) {
  .p-serviceWorksPointSample__lead {
    width: 100%;
    padding: 0 0;
    margin-bottom: 30px;
  }
}
.p-serviceWorksPointSample__lead h4 {
  font-family: "A1ゴシック M", "A1 Gothic M";
  font-size: 22px;
  line-height: 40px;
  letter-spacing: 0.16em;
  margin: 40px 0 0;
  color: #29a0d7;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksPointSample__lead h4 {
    font-size: 18px;
    line-height: 30px;
    margin: 20px 0 0;
  }
}
.p-serviceWorksPointSample__lead p {
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 31px;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksPointSample__lead p {
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 22px;
  }
}
.p-serviceWorksPointSample__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: calc(100% - 300px);
}
@media screen and (max-width: 960px) {
  .p-serviceWorksPointSample__list {
    width: 100%;
  }
}
.p-serviceWorksPointSample__list li {
  width: calc(33.3333333333% - 10px);
}
@media screen and (max-width: 960px) {
  .p-serviceWorksPointSample__list li {
    width: calc(50% - 10px);
  }
}
.p-serviceWorksPointSample__list li img {
  display: block;
  width: 100%;
  height: 167px;
  object-fit: cover;
  border-radius: 2.3px;
}
@media screen and (max-width: 960px) {
  .p-serviceWorksPointSample__list li img {
    height: auto;
  }
}
.p-serviceWorksPointSample__list li:after {
  content: attr(data-sample-label);
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0.16em;
  margin: 6px 0 30px;
}
.p-serviceWorksProgram {
  padding: 110px 0;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksProgram {
    padding: 60px 0;
  }
}
.p-serviceWorksProgram__inner {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksProgram__inner {
    padding: 0 4%;
  }
}
.p-serviceWorksProgram__workspot {
  position: relative;
  padding: 0 0 110px;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksProgram__workspot {
    padding: 0 0 40px;
  }
}
.p-serviceWorksProgram__workspot.is-animated .ws {
  opacity: 1;
  transform: translate(0, 0);
}
.p-serviceWorksProgram__workspot img._base {
  width: 100%;
  opacity: 0;
}
.p-serviceWorksProgram__workspot .ws {
  position: absolute;
  top: 0;
  width: auto;
  height: 48%;
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 0.4s;
}
@media screen and (max-width: 960px) {
  .p-serviceWorksProgram__workspot .ws {
    height: 8vw;
  }
}
.p-serviceWorksProgram__workspot .ws._1 {
  left: 0;
  transition-delay: 0.2s;
}
.p-serviceWorksProgram__workspot .ws._2 {
  left: 13.8%;
  transition-delay: 0.4s;
}
.p-serviceWorksProgram__workspot .ws._3 {
  left: 26.3%;
  transition-delay: 0.6s;
}
.p-serviceWorksProgram__workspot .ws._4 {
  left: 37.5%;
  transition-delay: 0.8s;
}
.p-serviceWorksProgram__workspot .ws._5 {
  left: 54.6%;
  height: 50%;
  transition-delay: 1s;
}
@media screen and (max-width: 960px) {
  .p-serviceWorksProgram__workspot .ws._5 {
    height: 8.5vw;
  }
}
.p-serviceWorksProgram__workspot .ws._6 {
  left: 66.8%;
  height: 50%;
  transition-delay: 1.2s;
}
@media screen and (max-width: 960px) {
  .p-serviceWorksProgram__workspot .ws._6 {
    height: 8.5vw;
  }
}
.p-serviceWorksProgram__workspot .ws._7 {
  left: 78.8%;
  height: 50%;
  transition-delay: 1.4s;
}
@media screen and (max-width: 960px) {
  .p-serviceWorksProgram__workspot .ws._7 {
    height: 8.5vw;
  }
}
.p-serviceWorksProgram__workspot .ws._8 {
  left: 93.4%;
  height: 50%;
  transition-delay: 1.6s;
}
@media screen and (max-width: 960px) {
  .p-serviceWorksProgram__workspot .ws._8 {
    height: 8.5vw;
  }
}
.p-serviceWorksProgram__txt {
  font-family: "A1ゴシック M", "A1 Gothic M";
  font-size: 28px;
  text-align: center;
  line-height: 1.8;
  padding: 90px 0;
}
@media screen and (max-width: 960px) {
  .p-serviceWorksProgram__txt {
    font-size: 24px;
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-serviceWorksProgram__txt {
    font-size: 18px;
    padding: 30px 0;
  }
}
.p-serviceWorksProgram__txt p {
  margin: 10px 0;
}
.p-serviceWorksProgram__txt p span {
  display: inline-block;
  border-bottom: 2px solid #29A0D7;
}
.p-serviceWorksProgram__contents {
  position: relative;
  display: flex;
  min-height: 450px;
  margin: 50px 0 100px;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksProgram__contents {
    margin: 20px 0 50px;
  }
}
.p-serviceWorksProgram__contents[data-flex-direction=left] {
  flex-direction: row-reverse;
}
@media screen and (max-width: 960px) {
  .p-serviceWorksProgram__contents[data-flex-direction=left] {
    flex-direction: column;
  }
}
.p-serviceWorksProgram__contents[data-flex-direction=left] .p-serviceWorksProgram__contentsPhoto {
  left: -25px;
}
@media screen and (min-width: 1200px) {
  .p-serviceWorksProgram__contents[data-flex-direction=left] .p-serviceWorksProgram__contentsPhoto {
    left: calc((100vw - 1130px) * -1);
  }
}
@media screen and (max-width: 960px) {
  .p-serviceWorksProgram__contents[data-flex-direction=left] .p-serviceWorksProgram__contentsPhoto {
    left: 0;
  }
}
.p-serviceWorksProgram__contents[data-flex-direction=left] .p-serviceWorksProgram__contentsLead {
  padding: 0 0 0 50px;
}
@media screen and (max-width: 960px) {
  .p-serviceWorksProgram__contents[data-flex-direction=left] .p-serviceWorksProgram__contentsLead {
    padding: 0;
  }
}
.p-serviceWorksProgram__contents[data-flex-direction=right] {
  flex-direction: row;
}
@media screen and (max-width: 960px) {
  .p-serviceWorksProgram__contents[data-flex-direction=right] {
    flex-direction: column;
  }
}
.p-serviceWorksProgram__contents[data-flex-direction=right] .p-serviceWorksProgram__contentsPhoto {
  right: -25px;
}
@media screen and (min-width: 1200px) {
  .p-serviceWorksProgram__contents[data-flex-direction=right] .p-serviceWorksProgram__contentsPhoto {
    right: calc((100vw - 1130px) * -1);
  }
}
@media screen and (max-width: 960px) {
  .p-serviceWorksProgram__contents[data-flex-direction=right] .p-serviceWorksProgram__contentsPhoto {
    right: 0;
  }
}
.p-serviceWorksProgram__contents[data-flex-direction=right] .p-serviceWorksProgram__contentsLead {
  padding: 0 50px 0 0;
}
@media screen and (max-width: 960px) {
  .p-serviceWorksProgram__contents[data-flex-direction=right] .p-serviceWorksProgram__contentsLead {
    padding: 0;
  }
}
.p-serviceWorksProgram__contentsPhoto {
  position: absolute;
  width: calc(100vw - 500px);
  height: 450px;
  object-fit: cover;
  top: 0;
}
@media screen and (max-width: 960px) {
  .p-serviceWorksProgram__contentsPhoto {
    position: static;
    margin-bottom: 20px;
    width: 100%;
    height: auto;
  }
}
.p-serviceWorksProgram__contentsLead {
  width: 520px;
}
@media screen and (max-width: 960px) {
  .p-serviceWorksProgram__contentsLead {
    width: 100%;
  }
}
.p-serviceWorksProgram__contentsLead h4 {
  font-family: "A1ゴシック M", "A1 Gothic M";
  font-size: 26px;
  line-height: 54px;
  letter-spacing: 0.2em;
  margin: 0 0 40px;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksProgram__contentsLead h4 {
    font-size: 18px;
    line-height: 36px;
    margin: 0 0 20px;
  }
}
.p-serviceWorksProgram__contentsLead p {
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksProgram__contentsLead p {
    font-size: 14px;
    line-height: 26px;
  }
}
.p-serviceWorksProgram__partnership {
  margin: 0 0 180px;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksProgram__partnership {
    margin: 0 0 60px;
  }
}
.p-serviceWorksProgram__partnershipTitle {
  font-family: "A1ゴシック M", "A1 Gothic M";
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 0.24em;
  text-align: center;
  margin: 0 0 20px;
}
.p-serviceWorksProgram__partnershipTitle:after {
  content: attr(data-title-ja);
  display: block;
  font-size: 12px;
  line-height: 30px;
  letter-spacing: 0.1em;
  text-align: center;
}
.p-serviceWorksProgram__partnership p {
  font-size: 12px;
  line-height: 26px;
  letter-spacing: 0.08em;
}
.p-serviceWorksProgram__apply p {
  font-size: 16px;
  line-height: 100px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksProgram__apply p {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 30px;
  }
}
.p-serviceWorksProgram__apply a {
  margin: 0 auto;
}
.p-serviceWorksQA {
  padding: 110px 0;
  background-color: #f3f0eb;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksQA {
    padding: 60px 0;
  }
}
.p-serviceWorksQA__title {
  font-family: "A1ゴシック M", "A1 Gothic M";
  font-size: 30px;
  line-height: 52.5px;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksQA__title {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}
.p-serviceWorksQA__title:after {
  content: attr(data-title-ja);
  display: block;
  font-size: 14px;
  line-height: 50px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksQA__title:after {
    font-size: 12px;
    line-height: 30px;
  }
}
.p-serviceWorksQA__drawer {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksQA__drawer {
    padding: 0 4%;
  }
}
.p-serviceWorksQA__drawer li {
  margin: 0 0 10px;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksQA__drawer li {
    margin: 0 0 5px;
  }
}
.p-serviceWorksQA__drawerHeading {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 20px 90px;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksQA__drawerHeading {
    padding: 14px 40px;
    font-size: 16px;
    line-height: 22px;
  }
}
.p-serviceWorksQA__drawerHeading:before {
  content: "Q.";
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: "A1ゴシック M", "A1 Gothic M";
  font-size: 20px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksQA__drawerHeading:before {
    top: 16px;
    left: 10px;
  }
}
.p-serviceWorksQA__drawerHeading i {
  position: absolute;
  top: 31px;
  right: 52px;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksQA__drawerHeading i {
    top: 23px;
    right: 35px;
  }
}
.p-serviceWorksQA__drawerHeading i:before, .p-serviceWorksQA__drawerHeading i:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 1px;
  background-color: #282828;
  transform-origin: center;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksQA__drawerHeading i:before, .p-serviceWorksQA__drawerHeading i:after {
    width: 16px;
  }
}
.p-serviceWorksQA__drawerHeading i:after {
  transform: rotate(90deg);
}
.p-serviceWorksQA__drawerHeading.is-open i:after {
  display: none;
}
.p-serviceWorksQA__drawerContent {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 90px;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.1em;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksQA__drawerContent {
    padding: 10px 40px;
    font-size: 14px;
    line-height: 24px;
  }
}
.p-serviceWorksQA__drawerContent:before {
  content: "A.";
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: "A1ゴシック M", "A1 Gothic M";
  font-size: 20px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-serviceWorksQA__drawerContent:before {
    top: 13px;
    left: 10px;
  }
}