@charset "UTF-8";
/* common
=================================================================== */
html {
  overscroll-behavior-y: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  width: 100%;
  font-weight: 400;
  font-size: 1.4rem;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", yumincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  line-height: 1.8;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px),
print {
  body {
    font-size: 1.6rem;
  }
}
a {
  color: #000;
  text-decoration: none;
  transition: all .3s;
}
@media screen and (max-width: 767px),
print {
  a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
}
@media screen and (min-width: 768px),
print {
  a:hover {
    color: #a80d0d;
  }
}
@media screen and (min-width: 1200px),
print {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
main {
  opacity: 1;
  transition: opacity .4s;
}
main.js-intro {
  opacity: 0;
  transition: opacity 0s;
}
.js-scrollAni {
  opacity: 0;
  transition: transform 1.1s .2s ease-out, opacity .6s .2s ease-out;
  transform: translateY(80px);
}
@media screen and (min-width: 1200px),
print {
  .js-scrollAni {
    transition: transform 1s ease-in-out, opacity .6s ease-in-out .2s;
  }
}
.js-scrollAni.is-scrollAni {
  opacity: 1;
  transform: translateY(0);
}
/* header
=================================================================== */
.header__logo {
  position: fixed;
  top: 0;
  left: 4%;
  z-index: 1000;
  width: 145px;
}
@media screen and (min-width: 768px),
print {
  .header__logo {
    top: 5%;
    width: auto;
  }
}
.header__sns {
  position: fixed;
  top: 15px;
  right: calc(3% + 45px);
  z-index: 10;
}
@media screen and (min-width: 768px),
print {
  .header__sns {
    top: 5%;
    right: calc(2% + 80px);
  }
}
.header__sns > a img {
  width: 25px;
  filter: invert(18%) sepia(0%) saturate(1735%) hue-rotate(155deg) brightness(94%) contrast(81%);
  transition: opacity .2s;
}
@media screen and (min-width: 768px),
print {
  .header__sns > a img {
    width: 38px;
  }
}
.header__sns > a:hover img {
  opacity: .6;
}
/* global nav
=================================================================== */
.nav__toggle {
  position: fixed;
  top: 12px;
  right: 3%;
  z-index: 1000;
  display: inline-block;
  width: 40px;
  height: 30px;
  outline: none;
  border: none;
  cursor: pointer;
}
@media screen and (min-width: 768px),
print {
  .nav__toggle {
    top: 4%;
    right: 2%;
    width: 65px;
    height: 55px;
  }
}
.nav__toggle span {
  position: absolute;
  left: 10%;
  display: inline-block;
  width: 80%;
  height: 2px;
  background-color: #3b3b3b;
  transition: all .5s;
}
.nav__toggle span:nth-of-type(1) {
  top: 7px;
}
@media screen and (min-width: 768px),
print {
  .nav__toggle span:nth-of-type(1) {
    top: 15px;
  }
}
.nav__toggle span:nth-of-type(2) {
  top: 15px;
}
@media screen and (min-width: 768px),
print {
  .nav__toggle span:nth-of-type(2) {
    top: 27px;
  }
}
.nav__toggle span:nth-of-type(3) {
  top: 23px;
}
@media screen and (min-width: 768px),
print {
  .nav__toggle span:nth-of-type(3) {
    top: 39px;
  }
}
.is-nav__open .nav__toggle span:nth-of-type(1) {
  transform: translateY(8px) rotate(45deg);
}
@media screen and (min-width: 768px),
print {
  .is-nav__open .nav__toggle span:nth-of-type(1) {
    transform: translateY(12px) rotate(45deg);
  }
}
.is-nav__open .nav__toggle span:nth-of-type(2) {
  opacity: 0;
}
.is-nav__open .nav__toggle span:nth-of-type(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media screen and (min-width: 768px),
print {
  .is-nav__open .nav__toggle span:nth-of-type(3) {
    transform: translateY(-12px) rotate(-45deg);
  }
}
@media screen and (min-width: 768px),
print {
  .nav__toggle:hover span:nth-of-type(2) {
    width: 30px;
  }
}
.nav {
  position: fixed;
  top: 0;
  right: -120%;
  z-index: 100;
  display: flex;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: 3em 0 2em 0;
  background-color: #efefef;
  background-image: url(../img/common/menu-mg.svg);
  background-position: left 6% bottom 20px;
  background-size: 85% auto;
  background-repeat: no-repeat;
  opacity: 0;
  transform: rotate(.01deg);
}
@media screen and (min-width: 768px),
print {
  .nav {
    min-width: 350px;
    padding: 5em 0 4em 0;
    background-position: left 6% bottom 20%;
    background-size: auto 75%;
    transition: all .3s;
  }
}
@media (orientation: landscape) and (max-width: 896px) {
  .nav {
    background-size: auto 75%;
  }
}
.is-nav__open .nav {
  right: 0;
  opacity: 1;
  transition: all .3s;
}
.nav__list {
  margin-top: 50px;
  margin-right: 40px;
  list-style: none;
}
@media screen and (min-width: 768px),
print {
  .nav__list {
    margin-top: 80px;
    margin-right: 7%;
  }
}
.nav__item {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 1.2em;
}
@media screen and (min-width: 768px),
print {
  .nav__item {
    margin-bottom: 1.5em;
  }
}
.nav__item::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 0;
  background: #fff;
  content: "";
}
.is-nav__open .nav__item::after {
  animation: menuMask .7s ease .5s both;
}
.nav__item::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: #efefef;
  content: "";
}
.is-nav__open .nav__item::before {
  animation: menuMask02 .7s ease .5s both;
}
@keyframes menuMask {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
    transform: translateX(0);
  }
  100% {
    width: 100%;
    transform: translateX(105%);
  }
}
@keyframes menuMask02 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(105%);
  }
}
.nav__item a {
  position: relative;
  display: block;
  padding-bottom: .3em;
  color: #000;
  text-align: right;
  text-decoration: none;
  font-weight: 300;
  font-size: 2.2rem;
  line-height: 1;
}
@media screen and (min-width: 768px),
print {
  .nav__item a {
    font-size: 3rem;
  }
}
.nav__item a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 25%;
  height: 2px;
  background: #a80d0d;
  content: "";
  transition: transform .3s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.nav__item a:hover::after {
  transform: scale(1, 1);
}
.nav__item a > em {
  display: block;
  margin-top: .6em;
  color: #777;
  font-style: normal;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px),
print {
  .nav__item a > em {
    font-size: 1.8rem;
  }
}
/* top page
=================================================================== */
.mv__text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translateY(-50%) translateX(-50%);
  animation: mv-text .6s linear 1.6s both;
}
@keyframes mv-text {
  0% {
    opacity: 0;
    transform: translateY(-45%) translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) translateX(-50%);
  }
}
.mv__text > img {
  width: 80px;
}
@media screen and (orientation: landscape) {
  .mv__text > img {
    width: 60px;
  }
}
.mv__slide {
  position: relative;
  overflow: hidden;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  opacity: 1;
  transition: opacity 2s ease-out;
}
@media screen and (min-width: 768px),
print {
  .mv__slide {
    height: 100vh;
  }
}
.mv__slide.js-loading {
  opacity: 0;
}
.mv__slide .slide-img {
  transition: 6s 1s ease-out;
  transform: scale(1);
}
.mv__slide .slide-img img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.mv__slide .swiper-slide[class*=-active] .slide-img {
  transform: scale(1.08);
}
.mv__slide .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: #fff !important;
  opacity: 1 !important;
}
.mv__slide .swiper-pagination-bullet-active {
  background: #777 !important;
}
.mv__slide .swiper-pagination {
  bottom: 1em !important;
}
.top__news {
  padding: 2em 1em 4em 1em;
}
@media screen and (min-width: 1200px),
print {
  .top__news {
    max-width: 1040px;
    margin-right: auto;
    margin-left: auto;
    padding: 4em 0 8em 0;
  }
}
.top__newsTtl {
  position: relative;
  color: #3b3b3b;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 3.6rem;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.4;
}
.top__newsTtl::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: #3b3b3b;
  content: "";
}
.top__newsList {
  margin-top: 1em;
  list-style: none;
}
@media screen and (min-width: 768px),
print {
  .top__newsList {
    margin-top: 0;
  }
}
.top__newsItem {
  margin-top: .4em;
}
@media screen and (min-width: 768px),
print {
  .top__newsItem {
    margin-top: .8em;
    margin-left: 150px;
  }
}
.top__newsItem > a {
  position: relative;
  display: block;
  padding: 1em 0;
  color: #000;
}
@media screen and (min-width: 768px),
print {
  .top__newsItem > a {
    display: flex;
    padding: 1.2em 0;
  }
}
.top__newsItem > a > time {
  margin-right: 4em;
  color: #777;
  font-size: 1.4rem;
}
.top__newsItem > a::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #b4b4b4;
  content: "";
  transition: all .3s;
  transform: scaleX(1);
  transform-origin: left bottom;
}
.top__newsItem > a:hover::before {
  transform: scaleX(0);
}
.top__newsItem > a::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: url(../img/common/icon-arrow.svg);
  transform: translateY(-50%);
}
.concept {
  margin-top: 2em;
  text-align: center;
  letter-spacing: normal;
}
@media screen and (min-width: 768px),
print {
  .concept {
    margin-top: 5em;
    letter-spacing: .1em;
  }
}
.concept__img {
  display: block;
  aspect-ratio: 1200/403;
}
.concept__ttl {
  margin-top: 1.5em;
  font-weight: 400;
  font-size: 2.8rem;
}
@media screen and (min-width: 768px),
print {
  .concept__ttl {
    font-size: 4.5rem;
  }
}
.concept__heading {
  margin-top: 1.5em;
  font-weight: 400;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px),
print {
  .concept__heading {
    font-size: 3rem;
  }
}
.concept__text {
  margin-top: 1.5em;
  text-align: left;
  font-size: 1.6rem;
  line-height: 2.2;
}
@media screen and (min-width: 768px),
print {
  .concept__text {
    text-align: center;
    font-size: 1.8rem;
  }
}
.service__slide {
  position: relative;
  overflow: hidden;
  margin-top: 2em;
  margin-bottom: 4em;
  letter-spacing: .08em;
}
@media screen and (min-width: 768px),
print {
  .service__slide {
    margin-top: 5em;
    margin-bottom: 0;
  }
}
.service__slide:not(.swiper-initialized) .swiper-scrollbar {
  display: none;
}
.service__slide:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.service__slide .swiper-wrapper {
  display: flex;
}
.service__slide .swiper-slide {
  position: relative;
  overflow: hidden;
  width: 285px;
  height: auto;
  margin-bottom: 1.5em;
  margin-left: 1.5em;
  background-color: #fff;
}
@media screen and (min-width: 768px),
print {
  .service__slide .swiper-slide {
    max-width: 350px;
    width: calc((100% - 3em) / 3);
    margin-bottom: 5em;
  }
}
@media screen and (min-width: 768px),
print {
  .service__slide .swiper-slide:nth-child(3n+1) {
    margin-left: 0;
  }
}
.service__slideImg {
  aspect-ratio: 350/270;
}
.service__slideTtl {
  padding: .2em 1em;
  background-color: #777;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  font-weight: 400;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px),
print {
  .service__slideTtl {
    font-size: 2.1rem;
  }
}
.service__slideText {
  padding: 1em;
  text-align: left;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px),
print {
  .service__slideText {
    padding: 1.2em 1.5em;
  }
}
.service__unit {
  margin-bottom: 4em;
  text-align: center;
}
.service__unitTtl {
  font-weight: 400;
  font-size: 2rem;
}
@media screen and (min-width: 768px),
print {
  .service__unitTtl {
    font-size: 3rem;
  }
}
.service__unitImg {
  margin-top: 2em;
}
.service__unitImg > img {
  width: 100%;
  aspect-ratio: 650/434;
}
@media screen and (min-width: 768px),
print {
  .service__unitImg > img {
    width: 650px;
  }
}
.service__unitText {
  margin-top: 2em;
  text-align: left;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px),
print {
  .service__unitText {
    text-align: center;
    font-size: 2rem;
  }
}
.service__unit:last-child {
  margin-bottom: 0;
}
.works__slide {
  position: relative;
  overflow: hidden;
  margin-top: 2em;
}
@media screen and (min-width: 768px),
print {
  .works__slide {
    margin-top: 5em;
  }
}
.works__slide:not(.swiper-initialized) .swiper-scrollbar {
  display: none;
}
.works__slide:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.works__slide .swiper-wrapper {
  display: flex;
}
.works__slide .swiper-slide {
  overflow: hidden;
  width: 340px;
  height: auto;
  margin: 0 0 2em 1.2em;
}
@media screen and (min-width: 768px),
print {
  .works__slide .swiper-slide {
    max-width: 380px;
    width: calc((100% - 2.4em) / 3);
  }
}
.works__slide .swiper-slide > a {
  color: #000;
}
.works__slide .swiper-slide a img {
  opacity: 1;
  transition: all .5s;
}
.works__slide .swiper-slide a:hover img {
  opacity: .6;
  transform: scale(1.1);
}
@media screen and (min-width: 768px),
print {
  .works__slide .swiper-slide:nth-child(3n+1) {
    margin-left: 0;
  }
}
.works__slideImg {
  overflow: hidden;
}
.works__slideImg > img {
  aspect-ratio: 380/256;
  object-fit: cover;
}
.works__slideText {
  margin-top: .5em;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px),
print {
  .works__slideText {
    font-size: 1.8rem;
  }
}
.works__slideCate {
  display: flex;
  flex-wrap: wrap;
}
.works__slideCate > h3 {
  margin-right: 1em;
  font-weight: 400;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px),
print {
  .works__slideCate > h3 {
    font-size: 1.6rem;
  }
}
.works__slideCate > h3:last-child {
  margin-right: 0;
}
.about__scroll {
  overflow-x: auto;
  margin-top: 2em;
}
@media screen and (min-width: 768px),
print {
  .about__scroll {
    overflow-x: hidden;
    max-width: 920px;
    margin-top: 5em;
    margin-inline: auto;
  }
}
.about__table {
  -webkit-overflow-scrolling: touch;
  width: 100%;
  margin-bottom: 1em;
  border-spacing: 0;
  border-collapse: collapse;
  border-bottom: 1px solid #b4b4b4;
  text-align: left;
}
.about__table th,
.about__table td {
  padding: .5em 1em .5em .5em;
  vertical-align: top;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px),
print {
  .about__table th,
  .about__table td {
    padding: .8em 1em;
    font-size: 1.8rem;
  }
}
.about__table th {
  white-space: nowrap;
  font-weight: 500;
}
@media screen and (min-width: 768px),
print {
  .about__table th {
    min-width: 200px;
  }
}
.about__table td {
  min-width: 500px;
}
.about__table tr {
  border-top: 1px solid #b4b4b4;
}
.about__unit {
  display: flex;
  flex-wrap: wrap;
  margin-top: 3em;
}
@media screen and (min-width: 768px),
print {
  .about__unit {
    max-width: 920px;
    margin-inline: auto;
  }
}
.about__profile {
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px),
print {
  .about__profile {
    width: auto;
    margin-right: 3em;
    font-size: 1.6rem;
  }
}
.about__profileImg {
  max-width: 250px;
}
@media screen and (min-width: 768px),
print {
  .about__profileImg {
    max-width: 290px;
  }
}
.about__profileName {
  margin: 1em 0 .5em 0;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px),
print {
  .about__profileName {
    font-size: 1.8rem;
  }
}
.about__profileName > span {
  display: inline-block;
  margin-bottom: .3em;
  padding: .2em .5em;
  border-bottom: 1px solid #c5c5c5;
  font-size: 2rem;
}
@media screen and (min-width: 768px),
print {
  .about__profileName > span {
    font-size: 2.4rem;
  }
}
.about__message {
  flex: 1 0 10%;
  margin-top: 2em;
  text-align: left;
  line-height: 2;
}
@media screen and (min-width: 768px),
print {
  .about__message {
    margin-top: 0;
  }
}
.about__message > dt {
  margin-bottom: 1em;
  text-align: center;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px),
print {
  .about__message > dt {
    margin-bottom: 1.5em;
    text-align: left;
    font-size: 1.8rem;
  }
}
.about__message > dd {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px),
print {
  .about__message > dd {
    font-size: 1.6rem;
  }
}
/* concept page
=================================================================== */
.p-concept {
  text-align: center;
  letter-spacing: normal;
}
@media screen and (min-width: 768px),
print {
  .p-concept {
    letter-spacing: .1em;
  }
}
.p-concept__mv {
  display: block;
  aspect-ratio: 1200/403;
}
.p-concept__ttl {
  margin-top: 1.5em;
  font-weight: 400;
  font-size: 2.8rem;
}
@media screen and (min-width: 768px),
print {
  .p-concept__ttl {
    font-size: 4.5rem;
  }
}
.p-concept__heading {
  margin-top: 1.5em;
  font-weight: 400;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px),
print {
  .p-concept__heading {
    font-size: 3rem;
  }
}
.p-concept__text {
  margin-top: 1.5em;
  text-align: left;
  font-size: 1.6rem;
  line-height: 2.2;
}
@media screen and (min-width: 768px),
print {
  .p-concept__text {
    text-align: center;
    font-size: 1.8rem;
  }
}
.p-concept__col {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  margin-top: 2em;
}
@media screen and (min-width: 768px),
print {
  .p-concept__col {
    gap: 2.5em;
    margin-top: 5em;
  }
}
.p-concept__colImg {
  max-width: 580px;
  aspect-ratio: 1164/760;
}
@media screen and (min-width: 768px),
print {
  .p-concept__colImg {
    width: calc((100% - 2.5em) / 2);
  }
}
.p-concept__cap {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px),
print {
  .p-concept__cap {
    font-size: 1.8rem;
  }
}
.p-concept__cap > strong {
  display: block;
  margin-top: 1.5em;
  margin-bottom: .8em;
  font-weight: 400;
  font-size: 2.1rem;
}
@media screen and (min-width: 768px),
print {
  .p-concept__cap > strong {
    margin-top: 2.5em;
    margin-bottom: .5em;
    font-size: 3rem;
  }
}
.p-concept__h3 {
  text-align: center;
  font-weight: 400;
  font-size: 2.6rem;
}
@media screen and (min-width: 768px),
print {
  .p-concept__h3 {
    font-size: 4.5rem;
  }
}
.p-concept__list {
  max-width: 900px;
  margin-top: 2em;
  margin-inline: auto;
}
@media screen and (min-width: 768px),
print {
  .p-concept__list {
    margin-top: 4em;
  }
}
.p-concept__list > dt {
  font-size: 1.8rem;
}
@media screen and (min-width: 768px),
print {
  .p-concept__list > dt {
    font-size: 2.4rem;
  }
}
.p-concept__list > dd {
  margin-top: .5em;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px),
print {
  .p-concept__list > dd {
    font-size: 1.8rem;
  }
}
.p-concept__listImg {
  margin-top: 5em;
  aspect-ratio: 2400/1520;
}
@media screen and (min-width: 768px),
print {
  .p-concept__listImg {
    margin-top: 7em;
  }
}
/* works page
=================================================================== */
.p-works__list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.p-works__item {
  width: 100%;
  height: auto;
  margin: 2em 0 0 0;
}
@media screen and (min-width: 768px),
print {
  .p-works__item {
    max-width: 380px;
    width: calc((100% - 2.4em) / 3);
    margin: 2em 0 0 1.2em;
  }
}
.p-works__item > a {
  color: #000;
}
.p-works__item a img {
  opacity: 1;
  transition: all .5s;
}
.p-works__item a:hover img {
  opacity: .6;
  transform: scale(1.1);
}
@media screen and (min-width: 768px),
print {
  .p-works__item:nth-child(3n+1) {
    margin-left: 0;
  }
}
.p-works__itemImg {
  overflow: hidden;
}
.p-works__itemImg > img {
  aspect-ratio: 380/256;
  object-fit: cover;
}
.p-works__itemText {
  margin-top: .5em;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px),
print {
  .p-works__itemText {
    font-size: 1.8rem;
  }
}
.p-works__itemText > h3 {
  font-weight: 400;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px),
print {
  .p-works__itemText > h3 {
    font-size: 1.6rem;
  }
}
.p-works__itemCate {
  display: flex;
  flex-wrap: wrap;
}
.p-works__itemCate > h3 {
  margin-right: 1em;
  font-weight: 400;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px),
print {
  .p-works__itemCate > h3 {
    font-size: 1.6rem;
  }
}
.p-works__itemCate > h3:last-child {
  margin-right: 0;
}
.p-works__post {
  max-width: 1000px;
  margin-inline: auto;
  text-align: center;
}
.p-works__postTtl {
  font-weight: 400;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px),
print {
  .p-works__postTtl {
    font-size: 2.2rem;
  }
}
.p-works__postCate {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: .5em;
}
@media screen and (min-width: 768px),
print {
  .p-works__postCate {
    margin-top: 2em;
  }
}
.p-works__postCate > h4 {
  margin-right: 1em;
  font-weight: 400;
  font-size: 1.6rem;
}
.p-works__postCate > h4:last-child {
  margin-right: 0;
}
.p-works__postNote {
  margin-top: 4em;
}
.p-works__postImg {
  margin-top: 3em;
  aspect-ratio: 1000/667;
}
/* info page
=================================================================== */
.info__cont {
  display: flex;
  flex-wrap: wrap;
}
.info__main {
  order: 2;
  color: #686868;
}
@media screen and (min-width: 768px),
print {
  .info__main {
    flex: 1 0 10%;
    width: min(80%, 950px);
  }
}
@media screen and (min-width: 1200px),
print {
  .info__main {
    width: 950px;
  }
}
.info__post {
  padding-top: 2em;
  border-top: 1px solid #707070;
}
@media screen and (min-width: 768px),
print {
  .info__post {
    padding-top: 3em;
  }
}
.info__postOuter {
  padding-top: 10em;
}
.info__postOuter:first-child {
  padding-top: 80px;
}
.info__postTtl {
  font-weight: 400;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px),
print {
  .info__postTtl {
    font-size: 2.2rem;
  }
}
.info__postDate {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1em;
  color: #3b3b3b;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px),
print {
  .info__postDate {
    font-size: 1.6rem;
  }
}
.info__postDate > time {
  margin-right: 1em;
}
.info__cate {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.info__cate > li {
  margin-right: .5em;
}
.info__cate a {
  position: relative;
  color: #3b3b3b;
}
.info__cate a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #707070;
  content: "";
  transition: transform .3s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.info__cate a:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}
.info__postNote {
  margin-top: 2em;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px),
print {
  .info__postNote {
    margin-top: 4em;
    font-size: 1.8rem;
  }
}
.info__postNote p {
  margin-bottom: 1.5em;
}
@media screen and (min-width: 768px),
print {
  .info__postNote p {
    margin-bottom: 2em;
  }
}
.info__postNote p:last-child {
  margin-bottom: 0;
}
.info__postNote img {
  margin-bottom: 1.5em;
}
@media screen and (min-width: 768px),
print {
  .info__postNote img {
    max-width: 950px;
    width: 100%;
    margin-bottom: 2em;
  }
}
.info__side {
  order: 1;
}
@media screen and (min-width: 768px),
print {
  .info__side {
    width: max(20%, 150px - 3em);
    margin-top: 1em;
    margin-right: 3em;
  }
}
@media screen and (min-width: 1200px),
print {
  .info__side {
    width: calc(250px - 3em);
  }
}
.info__sideUnit {
  position: sticky;
  top: 180px;
  margin-bottom: 2em;
  line-height: 1.8;
}
.info__sideUnit > em {
  display: block;
  margin-bottom: .5em;
  font-style: normal;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px),
print {
  .info__sideUnit > em {
    font-size: 1.8rem;
  }
}
.info__sideList {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px),
print {
  .info__sideList {
    display: block;
    font-size: 1.8rem;
  }
}
.info__sideList li {
  margin-right: 1em;
}
@media screen and (min-width: 768px),
print {
  .info__sideList li {
    margin-right: 0;
  }
}
.info__sideList a {
  position: relative;
  display: inline-block;
  margin-bottom: .5em;
  color: #000;
}
.info__sideList a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #a80d0d;
  content: "";
  transition: all .3s;
  transform-origin: left top;
}
.info__sideList a:hover::after {
  width: 1.5em;
}
.info__breadcrumb {
  text-align: right;
}
/* contact page
=================================================================== */
/* contact */
.p-contact__cont {
  margin-top: -2em;
  text-align: center;
  letter-spacing: .05em;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px),
print {
  .p-contact__cont {
    font-size: 1.8rem;
  }
}
.p-contact__tel {
  margin-top: 2em;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px),
print {
  .p-contact__tel {
    font-size: 2rem;
  }
}
.p-contact__telNo {
  font-size: 2.8rem;
}
@media screen and (min-width: 768px),
print {
  .p-contact__telNo {
    font-size: 3.6rem;
  }
}
.p-contact__telNo > a {
  color: #000;
}
.p-contact__telNo span {
  margin-right: .3em;
  font-size: 2.2rem;
}
@media screen and (min-width: 768px),
print {
  .p-contact__telNo span {
    font-size: 2.6rem;
  }
}
.p-contact__ttl {
  margin-top: 2.5em;
  font-weight: 400;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px),
print {
  .p-contact__ttl {
    font-size: 1.8rem;
  }
}
.p-contact__red {
  margin-top: .5em;
  color: #f00;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Helvetica Neue", Arial, "メイリオ", meiryo, sans-serif;
}
.p-contact__kome {
  margin-right: .3em;
  color: #f00;
  font-size: 1.4rem;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", yumincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.p-contact__form {
  max-width: 720px;
  margin-top: 3em;
  margin-inline: auto;
  color: #000;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px),
print {
  .p-contact__form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 1.6rem;
  }
}
.p-contact__form > dt {
  text-align: left;
}
@media screen and (min-width: 768px),
print {
  .p-contact__form > dt {
    width: 180px;
    padding-top: .3em;
    text-align: right;
  }
}
.p-contact__form > dd {
  margin-bottom: 1em;
}
@media screen and (min-width: 768px),
print {
  .p-contact__form > dd {
    width: calc(100% - 180px);
    margin-bottom: 1.5em;
    padding-left: 1em;
  }
}
.p-contact__form input[type=text],
.p-contact__form input[type=email],
.p-contact__form input[type=tel],
.p-contact__form input[type=number],
.p-contact__form textarea {
  display: block;
  width: 100%;
  height: 100%;
  padding: .5em;
  outline: none;
  border: 1px solid #cecece;
  background-color: #f9f9f9;
  transition: .3s;
}
.p-contact__form input:focus,
.p-contact__form textarea:focus {
  border: 1px solid #000;
}
.p-contact__form textarea {
  min-height: 300px;
}
.p-contact__submit {
  margin-top: 1.5em;
  text-align: left;
}
@media screen and (min-width: 768px),
print {
  .p-contact__submit {
    text-align: center;
  }
}
.p-contact__submit > input,
.p-contact__submit > button {
  margin-top: .5em;
}
.p-contact span.wpcf7-list-item {
  display: block;
}
.p-contact span.wpcf7-list-item {
  margin-left: 0;
}
.p-contact .yubin input {
  min-width: auto;
  width: 150px;
  margin-bottom: .2em;
}
.p-contact .address input {
  min-width: 100%;
}
@media screen and (min-width: 768px),
print {
  .p-contact .address input {
    min-width: 80%;
  }
}
/* page common
=================================================================== */
.page__ttl {
  position: relative;
  padding-top: .8em;
  text-align: center;
  letter-spacing: .05em;
  font-weight: 400;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px),
print {
  .page__ttl {
    padding-top: 1.2em;
    font-size: 1.8rem;
  }
}
.page__ttl::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 40px;
  height: 1px;
  background-color: #3b3b3b;
  content: "";
  transform: translateX(-50%);
}
.page__ttlEng {
  display: block;
  margin-bottom: .1em;
  color: #3b3b3b;
  letter-spacing: 0;
  font-weight: 400;
  font-style: normal;
  font-size: 2.8rem;
  font-family: "Cormorant Garamond", serif;
}
@media screen and (min-width: 768px),
print {
  .page__ttlEng {
    font-size: 3.6rem;
  }
}
.page__container {
  margin-top: 10em;
}
@media screen and (min-width: 768px),
print {
  .page__container {
    margin-top: 16em;
  }
}
/* pagenation 01
=================================================================== */
.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .3em;
  margin-top: 1em;
  list-style: none;
  font-size: 1.8rem;
}
@media screen and (min-width: 1200px),
print {
  .page-numbers {
    gap: 1em;
    margin-top: 2em;
    font-size: 2.3rem;
  }
}
.page-numbers a.page-numbers {
  display: inline-block;
  padding: .6em;
  color: #b4b4b4;
  line-height: 1;
}
.page-numbers a.page-numbers:hover {
  color: #000;
}
.page-numbers .current {
  display: inline-block;
  padding: .6em;
  color: #000;
}
.page-numbers .dots {
  display: inline-block;
  padding: 0 !important;
}
.page-numbers .prev,
.page-numbers .next {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
}
.page-numbers .prev:hover,
.page-numbers .next:hover {
  opacity: .6;
}
.page-numbers .prev {
  margin-right: 1em;
  transform: rotate(180deg);
}
.page-numbers .next {
  margin-left: 1em;
}
/* pagenation 02
=================================================================== */
.page__nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  margin-top: 5em;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px),
print {
  .page__nav {
    gap: 5em;
    font-size: 2.2rem;
  }
}
.page__nav a {
  color: #3b3b3b;
}
.page__nav a:hover {
  opacity: .6;
}
.nav__prev {
  position: relative;
  left: 0;
  display: inline-block;
  padding-left: 30px;
  white-space: nowrap;
  transition: all .3s;
}
.nav__prev::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: url(../img/common/arrow-gray.svg);
  transform: translateY(-50%) scale(-.7, .7);
}
@media screen and (min-width: 768px),
print {
  .nav__prev::before {
    transform: translateY(-50%) scale(-1, 1);
  }
}
.nav__prev:hover {
  left: -.5em;
}
.nav__next {
  position: relative;
  right: 0;
  display: inline-block;
  padding-right: 30px;
  white-space: nowrap;
  transition: all .3s;
}
.nav__next::before {
  position: absolute;
  top: 50%;
  right: 0;
  content: url(../img/common/arrow-gray.svg);
  transform: translateY(-50%) scale(.7);
}
@media screen and (min-width: 768px),
print {
  .nav__next::before {
    transform: translateY(-50%) scale(1);
  }
}
.nav__next:hover {
  right: -.5em;
}
/* footer
=================================================================== */
.contact__area {
  margin-top: 2em;
  text-align: center;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px),
print {
  .contact__area {
    margin-top: 3em;
    font-size: 2rem;
  }
}
.contact__text {
  text-align: left;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px),
print {
  .contact__text {
    text-align: center;
    font-size: 2rem;
  }
}
.contact__tel {
  margin-top: .6em;
  text-align: center;
  font-size: 2.8rem;
}
@media screen and (min-width: 768px),
print {
  .contact__tel {
    margin-top: 1em;
    font-size: 3.6rem;
    pointer-events: none;
  }
}
.contact__tel a {
  color: #000;
  text-decoration: none;
}
.contact__mail {
  margin-top: .5em;
  text-align: center;
  font-size: 2rem;
}
@media screen and (min-width: 768px),
print {
  .contact__mail {
    font-size: 2.2rem;
  }
}
.contact__mail > a {
  color: #000;
  text-decoration: none;
}
.contact__mail > a:hover {
  opacity: .7s;
}
.footer {
  padding: 5em 0;
  text-align: center;
  opacity: 1;
  transition: opacity .2s;
}
@media screen and (min-width: 768px),
print {
  .footer {
    transition: opacity .4s;
  }
}
.footer.js-intro {
  opacity: 0;
  transition: opacity 0s;
}
.footer__logo > img {
  width: 240px;
}
@media screen and (min-width: 768px),
print {
  .footer__logo > img {
    width: 300px;
  }
}
.footer__add {
  margin-top: 3em;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px),
print {
  .footer__add {
    font-size: 2rem;
  }
}
.footer__sns {
  display: none;
  margin-top: 3em;
}
@media screen and (min-width: 768px),
print {
  .footer__sns {
    display: block;
  }
}
.footer__sns > a img {
  width: 40px;
  filter: invert(18%) sepia(0%) saturate(1735%) hue-rotate(155deg) brightness(94%) contrast(81%);
  transition: opacity .2s;
}
.footer__sns > a:hover img {
  opacity: .6;
}
.footer__menu {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1em;
  list-style: none;
}
@media screen and (min-width: 768px),
print {
  .footer__menu {
    display: flex;
  }
}
.footer__menuItem {
  font-size: 1.6rem;
}
.footer__menuItem > a {
  position: relative;
  display: inline-block;
  margin: 1em;
  color: #000;
  text-decoration: none;
}
.footer__menuItem > a::after {
  position: absolute;
  bottom: -.5em;
  left: 50%;
  width: 0;
  height: 2px;
  background: #a80d0d;
  content: "";
  transition: width .3s;
  transform: translateX(-50%);
  transform-origin: center top;
}
.footer__menuItem > a:hover::after {
  width: 50%;
}
.footer__copy {
  margin-top: 4em;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px),
print {
  .footer__copy {
    margin-top: 4em;
  }
}
.footer__pagetop {
  position: fixed;
  right: 0;
  bottom: -5em;
  z-index: 1;
  overflow: hidden;
  width: 40px;
  height: 40px;
  background: #a80d0d;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all .5s;
}
.footer__pagetop::after {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.footer__pagetop:hover {
  background-color: #333;
}
.footer__pagetop.is__pagetop {
  bottom: 0;
}
/* parts
=================================================================== */
/* wrap */
.wrap {
  padding: 5em 0;
}
@media screen and (min-width: 1200px),
print {
  .wrap {
    width: 1200px;
    margin-inline: auto;
    padding: 8em 0;
  }
}
.wrap__inner {
  margin-right: 1em;
  margin-left: 1em;
  padding-right: env(safe-area-inset-right);
  padding-left: env(safe-area-inset-right);
}
@media screen and (min-width: 1200px),
print {
  .wrap__inner {
    margin-right: auto;
    margin-left: auto;
  }
}
/* flex */
.flex {
  display: flex;
  flex-wrap: wrap;
}
/* bg */
.bg--co01 {
  background-color: #efefef;
}
/* line */
.line--co01 {
  border-bottom: 1px solid #b4b4b4;
}
/* tel */
.tel {
  color: #000;
}
/* btn */
.link__btn {
  display: inline-block;
  min-width: 280px;
  padding: .8em 1em;
  border: 1px solid #707070;
  color: #000;
  text-align: center;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all .4s;
}
@media screen and (min-width: 768px),
print {
  .link__btn {
    min-width: 300px;
    font-size: 1.8rem;
  }
}
.link__btn:hover {
  background-color: #f1f1f1;
  color: #000;
}
.link__contact {
  display: inline-block;
  min-width: 280px;
  padding: .6em 1em;
  border: none;
  border: 1px solid #b4b4b4;
  border-radius: 5px;
  background-color: #efefef;
  color: #000;
  text-align: center;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all .5s;
}
@media screen and (min-width: 768px),
print {
  .link__contact {
    min-width: 300px;
    font-size: 1.8rem;
  }
}
.link__contact:hover {
  color: #000;
}
.link__contact > span {
  position: relative;
  display: inline-block;
  transition: .5s;
}
.link__contact > span:after {
  position: absolute;
  top: 0;
  right: -15px;
  content: "»";
  opacity: 0;
  transition: .5s;
}
.link__contact:hover span {
  padding-right: 15px;
}
.link__contact:hover span:after {
  right: 0;
  opacity: 1;
}
.link__submit {
  position: relative;
  display: inline-block;
  min-width: 150px;
  margin-right: .5em;
  padding: .8em 2em;
  outline: none;
  background-color: #8f8f8f;
  color: #fff !important;
  text-align: center;
  text-decoration: none;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Helvetica Neue", Arial, "メイリオ", meiryo, sans-serif;
  transition: all .2s;
}
@media screen and (min-width: 768px),
print {
  .link__submit {
    min-width: 160px;
  }
}
.link__submit:hover {
  background-color: #5e5e5e;
}
.link__line {
  position: relative;
  color: #3b3b3b;
}
.link__line:hover {
  color: #3b3b3b;
}
.link__line::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #707070;
  content: "";
  transition: transform .3s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.link__line:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}
.btn__set {
  margin-top: 2.5em;
  text-align: center;
}
@media screen and (min-width: 768px),
print {
  .btn__set {
    margin-top: 3.5em;
  }
}
/* scrollAnimation */
.scroll-wrap {
  opacity: 0;
  transform: translateY(30px);
}
.scroll-wrap.active {
  opacity: 1;
  transition: transform 1s ease, opacity 1s ease;
  transform: translateY(0%);
}
/* utility
=================================================================== */
/* align */
.align--left {
  text-align: left;
}
.align--center {
  text-align: center;
}
.align--right {
  text-align: right;
}
/* margin */
.mt--xl {
  margin-top: 7rem;
}
@media screen and (min-width: 1200px),
print {
  .mt--xl {
    margin-top: 7rem;
  }
}
.mt--lg {
  margin-top: 5rem;
}
@media screen and (min-width: 1200px),
print {
  .mt--lg {
    margin-top: 5rem;
  }
}
.mt--md {
  margin-top: 3rem;
}
@media screen and (min-width: 1200px),
print {
  .mt--md {
    margin-top: 3rem;
  }
}
.mt--sm {
  margin-top: 2rem;
}
@media screen and (min-width: 1200px),
print {
  .mt--sm {
    margin-top: 2rem;
  }
}
.mt--xs {
  margin-top: 1rem;
}
@media screen and (min-width: 1200px),
print {
  .mt--xs {
    margin-top: 1rem;
  }
}
/* display */
@media screen and (min-width: 768px) {
  .display--sp {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .display--tab {
    display: none !important;
  }
}
@media screen and (max-width: 1199px) {
  .display--pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .none--sp {
    display: none !important;
  }
}