* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: rgb(86, 86, 86);
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  html, body {
    font-size: 14.4px;
  }
}
@media screen and (max-width: 374px) {
  html, body {
    font-size: 12.8px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  font-size: 1rem;
}

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

.select-wrap {
  position: relative;
}
.select-wrap::after {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  z-index: 2;
  width: 15px;
  height: 10px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}

input[type=submit],
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  outline: none;
  border: 1px solid rgb(190, 190, 190);
  padding: 10px;
  border-radius: 5px;
}

section {
  padding: 100px 0;
}
section.section-bottom {
  padding-bottom: 0;
}

.contents-wrapper {
  width: calc(100% - 100px);
  max-width: 1500px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .contents-wrapper {
    width: calc(100% - 40px);
  }
}
.contents-wrapper.mini {
  max-width: 1200px;
}
.contents-wrapper.big {
  width: 100%;
  max-width: 1920px;
}

.ipad-block {
  display: none;
}
@media (max-width: 1023px) {
  .ipad-block {
    display: block;
  }
}

@media (max-width: 1023px) {
  .ipad-none {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
.main-contents {
  text-align: left;
  word-wrap: break-word;
  line-height: 200%;
}
.main-contents p:not(:last-child) {
  margin-bottom: 15px;
}
.main-contents img:not(.emoji) {
  width: 50% !important;
  height: auto !important;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .main-contents img:not(.emoji) {
    width: 100% !important;
  }
}

.left-float {
  float: left;
}

.right-float {
  float: right;
}

.clear {
  clear: both;
}

img, iframe {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

a {
  text-decoration: none;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

a:hover {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.color-black {
  color: rgb(0, 0, 0);
}

.color-white {
  color: rgb(255, 255, 255);
}

table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
}

.block-item {
  display: block;
}

.inlineblock-item {
  display: inline-block;
}

.inline-item {
  display: inline;
}

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

.right-flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.white-space {
  white-space: nowrap;
}

figure {
  margin: 0;
  padding: 0;
}

.page-title {
  margin-bottom: 20px;
  text-align: center;
  font-family: "Crimson Text", serif;
  font-size: 3.2rem;
  color: rgb(162, 162, 162);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .page-title {
    font-size: 2.5rem;
  }
}

.footer-contact-link {
  color: rgb(86, 86, 86);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.footer-contact-link::after {
  content: "";
  display: block;
  width: 100px;
  aspect-ratio: 1/1;
  background-image: url("../../images/arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (max-width: 1023px) {
  .footer-contact-link::after {
    width: 50px;
  }
}

.hamburger {
  position: fixed;
  top: 30px;
  right: 50px;
  z-index: 100000000;
  width: 70px;
  text-align: center;
  font-family: "Crimson Text", serif;
  font-size: 1.1rem;
  color: rgb(86, 86, 86);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1023px) {
  .hamburger {
    top: 25px;
  }
}
@media screen and (max-width: 767px) {
  .hamburger {
    width: 50px;
    top: 20px;
    right: 20px;
    font-size: 1rem;
  }
}
.hamburger span {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.hamburger span:not(.menu-text) {
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgb(86, 86, 86);
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .hamburger span:not(.menu-text) {
    margin-bottom: 10px;
  }
}
.hamburger span:not(.menu-text):first-of-type {
  width: 50%;
}
.hamburger.is-active .menu-text {
  display: none;
}
.hamburger.is-active span:not(.menu-text):first-of-type {
  width: 100%;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}
.hamburger.is-active span:not(.menu-text):nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
}

.global-menu {
  padding: 60px 150px 60px 50px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: rotate(91deg);
          transform: rotate(91deg);
  -webkit-box-shadow: 0 0 5px rgba(86, 86, 86, 0.5);
          box-shadow: 0 0 5px rgba(86, 86, 86, 0.5);
}
@media screen and (max-width: 767px) {
  .global-menu {
    padding: 60px 30px;
  }
}
.global-menu.is-open {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.global-menu .contents-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
.global-menu .header-logo span {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.global-menu .menu-list-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 150px;
}
@media screen and (max-width: 1023px) {
  .global-menu .menu-list-wrapper {
    gap: 80px;
  }
}
@media screen and (max-width: 767px) {
  .global-menu .menu-list-wrapper {
    gap: 50px;
  }
}
.global-menu .menu-list-wrapper li:not(:last-child) {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .global-menu .menu-list-wrapper li:not(:last-child) {
    margin-bottom: 45px;
  }
}
.global-menu .menu-list-wrapper a {
  color: rgb(86, 86, 86);
}
.global-menu .menu-list-wrapper a:hover {
  opacity: 0.5;
}
.global-menu .menu-list-wrapper .instagram-icon {
  display: none;
}
.global-menu .menu-list-wrapper .contact a {
  position: relative;
  display: inline-block;
  padding: 0 10px 10px;
  text-align: center;
}
.global-menu .menu-list-wrapper .contact a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgb(86, 86, 86);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.global-menu .menu-list-wrapper .contact a:hover {
  opacity: 1;
}
.global-menu .menu-list-wrapper .contact a:hover::after {
  -webkit-transform: translateX(-50%) scale(1.1);
          transform: translateX(-50%) scale(1.1);
}

.header {
  z-index: 10000;
  width: 100%;
  top: 0;
  left: 0;
  padding: 30px 50px;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 25px 20px;
  }
}
.header.top {
  position: absolute;
}
@media screen and (max-width: 1300px) {
  .header.top {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .header.top {
    padding: 25px 20px;
  }
}
@media screen and (max-width: 1023px) {
  .header.top .header-logo.vertical span {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    letter-spacing: 0.05em;
  }
}
.header.page {
  position: fixed;
}

.header-logo a {
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgb(41, 45, 52);
}
@media screen and (max-width: 767px) {
  .header-logo a {
    font-size: 1.2rem;
  }
}
.header-logo.vertical span {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  letter-spacing: 0.2em;
}

.top-footer {
  padding: 20px 0;
}
.top-footer .contents-wrapper {
  width: calc(100% - 300px);
  max-width: 1755px;
}
@media screen and (max-width: 1300px) {
  .top-footer .contents-wrapper {
    width: calc(100% - 170px);
  }
}
@media screen and (max-width: 1023px) {
  .top-footer .contents-wrapper {
    width: calc(100% - 100px);
  }
}
@media screen and (max-width: 767px) {
  .top-footer .contents-wrapper {
    width: calc(100% - 40px);
  }
}
.top-footer .policy-link {
  color: rgb(86, 86, 86);
}

.copy-right-box {
  text-align: right;
}
@media screen and (max-width: 1023px) {
  .copy-right-box {
    font-size: 0.8rem;
  }
}
.copy-right-box .policy-link {
  margin-right: 20px;
}

.footer-image {
  aspect-ratio: 1920/550;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .footer-image {
    height: 200px;
  }
}

.page-footer {
  background-color: rgb(86, 86, 86);
}

.footer-contact-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: -50px auto 0;
  font-size: 1.1rem;
  padding: 70px 30px;
  background-color: rgb(255, 255, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px 60px;
  -webkit-box-shadow: 0 0 5px rgba(86, 86, 86, 0.5);
          box-shadow: 0 0 5px rgba(86, 86, 86, 0.5);
}
@media screen and (max-width: 1023px) {
  .footer-contact-wrapper {
    padding: 50px 30px;
    margin-top: -30px;
  }
}
@media screen and (max-width: 767px) {
  .footer-contact-wrapper {
    padding: 50px 20px;
  }
}
.footer-contact-wrapper .page-title {
  -webkit-transform: translate(0);
          transform: translate(0);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer-contact-wrapper .page-title {
    margin-bottom: 0;
  }
}

.footer-link-box {
  padding: 40px 0 30px;
  color: rgb(255, 255, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-link-box a {
  color: rgb(255, 255, 255);
}
.footer-link-box a:hover {
  opacity: 0.5;
}
.footer-link-box .footer-company {
  font-size: 1.8rem;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 1300px) {
  .footer-link-box .footer-company {
    font-size: 1.4rem;
  }
}
.footer-link-box .menu-list-wrapper,
.footer-link-box .menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1300px) {
  .footer-link-box .menu-list-wrapper,
  .footer-link-box .menu-list {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 1023px) {
  .footer-link-box .menu-list-wrapper,
  .footer-link-box .menu-list {
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .footer-link-box .menu-list-wrapper,
  .footer-link-box .menu-list {
    display: none;
  }
}
.footer-link-box .instagram-text {
  display: none;
}
@media screen and (max-width: 1300px) {
  .footer-link-box .copy-right-box {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 1100px) {
  .footer-link-box .copy-right-box {
    width: 100%;
    margin-top: 20px;
  }
}

.fv-section {
  padding: 50px 0 0;
}
@media screen and (max-width: 1300px) {
  .fv-section {
    padding-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .fv-section {
    padding-top: 75px;
  }
}
.fv-section .contents-wrapper {
  position: relative;
  width: calc(100% - 300px);
  max-width: 1755px;
}
@media screen and (max-width: 1300px) {
  .fv-section .contents-wrapper {
    width: calc(100% - 170px);
  }
}
@media screen and (max-width: 1023px) {
  .fv-section .contents-wrapper {
    width: 100%;
  }
}
.fv-section .fv-page {
  bottom: 0;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: rgb(162, 162, 162);
  -webkit-transform: translateY(calc(100% + 20px));
          transform: translateY(calc(100% + 20px));
}
@media screen and (max-width: 1023px) {
  .fv-section .fv-page {
    left: 50px;
  }
}
@media screen and (max-width: 767px) {
  .fv-section .fv-page {
    left: 20px;
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 1023px) {
  .fv-section .pc {
    display: none;
  }
}
.fv-section .ipad {
  display: none;
}
@media screen and (max-width: 1023px) {
  .fv-section .ipad {
    display: block;
  }
}
.fv-section .fv-swiper .swiper-slide {
  height: auto;
}
.fv-section .fv-swiper img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.page-bg {
  margin-top: 145px;
  padding-bottom: 250px;
  background-color: rgb(249, 249, 249);
}
@media screen and (max-width: 767px) {
  .page-bg {
    padding-bottom: 150px;
  }
}

.page-top-section {
  padding-top: 0;
}

.profile-section {
  text-align: center;
  font-size: 1.1rem;
}
@media screen and (max-width: 767px) {
  .profile-section {
    font-size: 1rem;
  }
}

.profile-name {
  margin-bottom: 50px;
}
.profile-name .position {
  margin-bottom: 15px;
  font-family: "Crimson Text", serif;
}
.profile-name .name {
  font-size: 1.8rem;
}
.profile-name .name .ja {
  margin-right: 20px;
}
.profile-name .name .en {
  font-family: "Crimson Text", serif;
}

.profile-history {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .profile-history {
    margin-bottom: 80px;
  }
}

.profile-mail {
  color: rgb(86, 86, 86);
}

.contact-message {
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .contact-message {
    margin-bottom: 80px;
  }
}

.contact-page-wrapper {
  max-width: 1000px;
  margin: auto;
}

.contact-page-box:not(:last-child) {
  margin-bottom: 40px;
}
.contact-page-box .wpcf7-list-item.first {
  margin-left: 0;
}
.contact-page-box .title {
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.contact-page-box .title.must::before {
  content: "*";
  margin-right: 5px;
}
.contact-page-box .text-common {
  display: block;
  width: 100%;
  padding: 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
}
.contact-page-box .schedule-box {
  margin-top: 15px;
}
.contact-page-box .schedule-box span {
  margin-right: 20px;
}
.contact-page-box .schedule-box input {
  padding: 5px;
  width: 170px;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
}
.contact-page-box a {
  color: rgb(86, 86, 86);
  border-bottom: 1px solid rgb(86, 86, 86);
}
.contact-page-box a:hover {
  border-color: transparent;
}

.button-submit {
  font-family: "Crimson Text", serif;
  font-size: 1.1rem;
  border-bottom: 1px solid rgb(86, 86, 86);
  padding: 10px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  color: rgb(86, 86, 86);
  opacity: 0.5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.button-submit.active {
  opacity: 1;
}
.button-submit.active:hover {
  border-color: transparent;
}

.policy-box:not(:last-child) {
  margin-bottom: 75px;
}
.policy-box .title {
  padding: 0 25px 25px;
  border-bottom: 1px solid rgb(162, 162, 162);
}
.policy-box .contents {
  padding: 25px 25px 0;
}
.policy-box p:not(:last-child) {
  margin-bottom: 10px;
}

.service-link-wrapper {
  margin-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .service-link-wrapper {
    margin-bottom: 50px;
    gap: 10px;
  }
}
.service-link-wrapper a {
  padding: 10px;
  background-color: rgb(255, 255, 255);
  color: rgb(86, 86, 86);
  width: calc((100% - 100px) / 5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1023px) {
  .service-link-wrapper a {
    width: calc((100% - 50px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .service-link-wrapper a {
    width: calc((100% - 10px) / 2);
  }
}
.service-link-wrapper a::after {
  content: "";
  display: block;
  width: 15px;
  aspect-ratio: 1/1;
  background-color: rgb(86, 86, 86);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.service-link-wrapper a:hover::after {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.service-main-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px 50px;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .service-main-box {
    padding-top: 50px;
  }
}
.service-main-box:not(:last-child) {
  padding-bottom: 100px;
  border-bottom: 1px solid rgb(162, 162, 162);
}
@media screen and (max-width: 767px) {
  .service-main-box:not(:last-child) {
    padding-bottom: 50px;
  }
}
.service-main-box .image-box {
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .service-main-box .image-box {
    width: 100%;
  }
}
.service-main-box .detaile-box {
  width: calc(50% - 50px);
}
@media screen and (max-width: 1023px) {
  .service-main-box .detaile-box {
    width: 100%;
  }
}
.service-main-box .text-box {
  width: 100%;
}

.service-title {
  margin-bottom: 30px;
  font-size: 1.8rem;
}

.service-detaile-wrapper {
  padding-left: 30px;
  font-size: 1.1rem;
}
@media screen and (max-width: 1100px) {
  .service-detaile-wrapper {
    padding-left: 0;
  }
}
.service-detaile-wrapper .inner-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
.service-detaile-wrapper .inner-box:not(:last-child) {
  padding-bottom: 15px;
  border-bottom: 1px solid rgb(162, 162, 162);
  margin-bottom: 15px;
}
.service-detaile-wrapper .title {
  width: 100px;
}
.service-detaile-wrapper .contents {
  width: calc(100% - 100px - 10px);
}

.works-page-wrapper {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 45px 1fr 45px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
@media screen and (max-width: 1023px) {
  .works-page-wrapper {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.works-page-wrapper .image-box {
  overflow: hidden;
}
.works-page-wrapper .image-box img {
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.works-page-wrapper .image-box:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.works-single-wrapper img:not(:last-child) {
  margin-bottom: 10px;
}

.single-pager {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.single-pager a {
  color: rgb(86, 86, 86);
}
.single-pager a:hover {
  color: rgb(162, 162, 162);
}

.works-single-section .contents-wrapper {
  max-width: 700px;
}

.wp-pagenavi {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin-bottom: 50px;
  }
}
.wp-pagenavi a, .wp-pagenavi span {
  border: none;
  padding: 0;
  margin: 0;
  color: rgb(86, 86, 86);
}
.wp-pagenavi a.current, .wp-pagenavi span.current {
  border-bottom: 1px solid rgb(86, 86, 86);
}
.wp-pagenavi .arrow {
  display: block;
  width: 20px;
  aspect-ratio: 2/1;
  background-image: url("../../images/nav-arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.wp-pagenavi .arrow.left {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.wp-pagenavi a:hover {
  color: rgb(162, 162, 162);
}

.archive-link-wrapper {
  margin-bottom: 100px;
  background-color: rgb(255, 255, 255);
  padding: 50px;
}
@media screen and (max-width: 767px) {
  .archive-link-wrapper {
    margin-bottom: 50px;
    padding: 30px;
  }
}
.archive-link-wrapper .archive-link-list:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgb(162, 162, 162);
}
.archive-link-wrapper a {
  display: inline-block;
  color: rgb(86, 86, 86);
}
.archive-link-wrapper a:not(:last-child) {
  margin-right: 20px;
}
.archive-link-wrapper a:hover {
  color: rgb(162, 162, 162);
}

.portfolio-page-list {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px 15px;
}
@media screen and (max-width: 1023px) {
  .portfolio-page-list {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}
@media screen and (max-width: 767px) {
  .portfolio-page-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.portfolio-page-list .portfolio-item {
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.portfolio-page-list .portfolio-item:hover {
  opacity: 0.8;
}
.portfolio-page-list .image-box {
  margin-bottom: 10px;
  overflow: hidden;
}
.portfolio-page-list img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  aspect-ratio: 16/9;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.portfolio-page-list .portfolio-item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.genre-box {
  margin-right: 10px;
  display: inline-block;
  padding: 5px 20px;
  background-color: rgb(162, 162, 162);
  color: rgb(255, 255, 255);
}

.portfolio-modal {
  position: fixed;
  inset: 0;
  z-index: 100000001;
  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;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
@media screen and (max-width: 767px) {
  .portfolio-modal {
    padding: 20px;
  }
}
.portfolio-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.portfolio-modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgb(255, 255, 255);
}

.portfolio-modal-content {
  position: relative;
  z-index: 1;
  width: calc(100% - 100px);
  max-width: 1500px;
  height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
  background-color: rgb(255, 255, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .portfolio-modal-content {
    width: calc(100% - 40px);
  }
}

.portfolio-modal-close {
  position: absolute;
  top: 60px;
  right: 15px;
  z-index: 2;
  border: none;
  background: none;
  font-size: 2rem;
  line-height: 1;
  color: rgb(86, 86, 86);
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 93px;
  aspect-ratio: 93/34;
}
@media screen and (max-width: 767px) {
  .portfolio-modal-close {
    width: 50px;
    top: 40px;
    right: 0;
  }
}
.portfolio-modal-close:hover {
  opacity: 0.5;
}
.portfolio-modal-close::before, .portfolio-modal-close::after {
  position: absolute;
  top: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgb(86, 86, 86);
}
.portfolio-modal-close::before {
  left: 0;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
.portfolio-modal-close::after {
  right: 0;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}

.portfolio-modal-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  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: 48px;
  height: 48px;
  padding: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: opacity 0.3s, background-color 0.3s;
  transition: opacity 0.3s, background-color 0.3s;
  background-image: url("../../images/arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.portfolio-modal-nav:hover {
  opacity: 0.7;
  background-color: rgb(255, 255, 255);
}
.portfolio-modal-nav:focus-visible {
  outline: 2px solid rgb(255, 255, 255);
  outline-offset: 3px;
}
.portfolio-modal-nav:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .portfolio-modal-nav {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
}

.portfolio-modal-prev {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  left: max(8px, 50% - 510px);
}
@media screen and (max-width: 1150px) {
  .portfolio-modal-prev {
    left: max(8px, 50% - 430px);
  }
}
@media screen and (max-width: 1023px) {
  .portfolio-modal-prev {
    left: max(8px, 50% - 330px);
  }
}

.portfolio-modal-next {
  right: max(8px, 50% - 510px);
}
@media screen and (max-width: 1150px) {
  .portfolio-modal-next {
    right: max(8px, 50% - 430px);
  }
}
@media screen and (max-width: 1023px) {
  .portfolio-modal-next {
    right: max(8px, 50% - 330px);
  }
}

.portfolio-popup-image video {
  cursor: pointer;
}

.portfolio-popup-movie {
  position: relative;
}
.portfolio-popup-movie.is-playing .portfolio-movie-play {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.portfolio-movie-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  padding: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0 2px 10px rgba(86, 86, 86, 0.35);
          box-shadow: 0 2px 10px rgba(86, 86, 86, 0.35);
  cursor: pointer;
  -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.portfolio-movie-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 19px solid rgb(86, 86, 86);
}
.portfolio-movie-play:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.08);
          transform: translate(-50%, -50%) scale(1.08);
}
@media screen and (max-width: 767px) {
  .portfolio-movie-play {
    width: 36px;
    height: 36px;
  }
  .portfolio-movie-play::after {
    border-top-width: 7px;
    border-bottom-width: 7px;
    border-left-width: 10px;
  }
}

.portfolio-modal-body {
  width: 80%;
  max-width: 850px;
  margin: auto;
}
@media screen and (max-width: 1023px) {
  .portfolio-modal-body {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .portfolio-modal-body {
    width: 100%;
  }
}
.portfolio-modal-body .portfolio-popup-image {
  margin-bottom: 10px;
}
.portfolio-modal-body .portfolio-popup-image video,
.portfolio-modal-body .portfolio-popup-image img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.portfolio-modal-body .portfolio-popup-title {
  margin-bottom: 15px;
  font-size: 1.4rem;
}
.portfolio-modal-body .portfolio-popup-body {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.8;
}

.portfolio-page-list.store a {
  color: rgb(86, 86, 86);
}
.portfolio-page-list.store .price {
  margin-top: 10px;
  font-size: 1.1rem;
  text-align: right;
}

.store-single-wrapper video {
  display: block;
  width: 100%;
}
.store-single-wrapper .portfolio-popup-image {
  margin-bottom: 50px;
}
.store-single-wrapper .store-link {
  display: block;
  margin: 0 auto 70px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: rgb(86, 86, 86);
  padding: 0 10px 10px;
  border-bottom: 1px solid rgb(86, 86, 86);
}
.store-single-wrapper .store-link:hover {
  border-color: transparent;
}

.store-date-wrapper .store-inner {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgb(162, 162, 162);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.store-date-wrapper .title {
  width: 130px;
}
@media screen and (max-width: 767px) {
  .store-date-wrapper .title {
    width: 80px;
  }
}
.store-date-wrapper .contents {
  width: calc(100% - 130px);
}
@media screen and (max-width: 767px) {
  .store-date-wrapper .contents {
    width: calc(100% - 80px);
  }
}
.store-date-wrapper a {
  color: rgb(86, 86, 86);
}
.store-date-wrapper a:hover {
  color: rgb(162, 162, 162);
}
.store-date-wrapper .single-tag:not(:last-child) {
  margin-right: 10px;
}
/*# sourceMappingURL=main.css.map */