@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  background-color: #EBECED;
  width: 100vw;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  .fade {
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  .show {
    opacity: 1 !important;
    transition: opacity 1s ease-in-out;
  }
  .calenderButton {
    position: fixed;
    z-index: 9998;
    top: calc(100vh - 50px);
    right: 0;
    text-align: center;
    width: 180px;
    height: 50px;
    line-height: 50px;
    background-color: #080807;
    color: #FFFFFF;
  }
  .calenderButton:hover {
    cursor: pointer;
    background-color: #937B5E;
  }
  .fadeText {
    display: inline-block;
    opacity: 0;
    /* 中身をspanで制御するので本体は1でもOK */
  }
  .fadeText span {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    /* ここで1文字ずつ遅らせる */
    transition-delay: calc(0.05s * var(--char-index));
  }
  .fadeText + .fadeText {
    margin-top: 150px;
  }
  .fadeText.show span {
    opacity: 1;
    transform: translateY(0);
  }
  .is-scaled {
    transform: scale(1) !important;
  }
  .list_animation li {
    opacity: 0;
  }
  .pcNone {
    display: none !important;
  }
  .button {
    width: 140px;
    height: 40px;
    background-color: #080807;
    margin: 0 auto;
    color: #FFFFFF;
    border-radius: 25px;
  }
  .button a, .button .wrap {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    text-align: center;
  }
  .button a span, .button .wrap span {
    font-family: "Erode", serif;
    letter-spacing: 0.05em;
    display: block;
    line-height: 2.7;
    font-size: 15px;
    margin-left: -12px;
    transition: all 0.2s ease;
  }
  .button a .circle, .button .wrap .circle {
    width: 6px;
    height: 6px;
    border: 1px solid #FFFFFF;
    position: absolute;
    top: 50%;
    right: 24px;
    margin-top: -3px;
    border-radius: 50%;
    background-color: #080807;
    transition: all 0.3s ease;
  }
  .button a:hover span {
    transform: translateY(-42px);
  }
  .button a:hover .circle {
    background-color: #FFFFFF;
    transform: scale(0.8);
  }
  .sectionTitle {
    text-align: center;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    letter-spacing: 0.08em;
  }
  .pagetitle {
    text-align: center;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    letter-spacing: 0.15em;
    font-weight: 400;
    color: #FFFFFF;
    position: relative;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .subpageLead {
    font-size: 15px;
    line-height: 2.5;
    text-align: center;
    margin: 120px auto 150px;
  }
  .titleCaption {
    text-align: center;
    margin: 40px auto 80px;
    line-height: 2.5;
  }
  .bullet {
    width: 100%;
  }
  .bullet li {
    position: relative;
    padding-left: 1rem;
    font-size: 14px;
  }
  .bullet li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0%, -50%);
    color: #080807;
    font-size: 16px;
    line-height: 1.8;
  }
  .bullet li + li {
    margin-top: 12px;
  }
  #footer .info {
    display: flex;
    justify-content: center;
    margin-top: 120px;
    align-items: center;
  }
  #footer .info .contact {
    width: calc((100vw - 100px) / 2);
    text-align: center;
    padding-right: 100px;
  }
  #footer .info .contact .caption {
    margin: 60px auto 20px;
    font-size: 14px;
    font-weight: 700;
  }
  #footer .info .contact .tel {
    font-size: 35px;
    font-weight: bold;
    letter-spacing: 0.05em;
  }
  #footer .info .contact .tel:hover {
    cursor: pointer;
    opacity: 0.4;
  }
  #footer .info .contact .hours {
    font-size: 14px;
    font-weight: 600;
    margin: 25px 0 40px;
  }
  #footer .info .contact .hours span {
    font-size: 16px;
    font-weight: 900;
  }
  #footer .info .contact .service-area {
    margin-bottom: 30px;
  }
  #footer .info .contact .service-area p {
    font-size: 14px;
  }
  #footer .info .contact .service-area .title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  #footer .info .contact .button {
    width: 200px;
    background-color: #937B5E;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
  }
  #footer .info .contact .button .circle {
    background-color: transparent;
  }
  #footer .info .access {
    width: calc((100vw - 100px) / 2);
    text-align: center;
    padding-left: 100px;
    border-left: 1px solid #BEC1C4;
  }
  #footer .info .access a:hover {
    opacity: 0.5;
  }
  #footer .info .access p {
    margin-top: 60px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
  }
  #footer .info .access .map {
    display: block;
    width: 100%;
    margin-top: 30px;
  }
  #footer .info .access .map iframe {
    width: 100%;
    aspect-ratio: 2/1;
  }
  #footer .menu {
    width: 100vw;
    overflow: hidden;
    margin-top: 130px;
    position: relative;
  }
  #footer .menu a:hover {
    opacity: 0.5;
  }
  #footer .menu .siteMap {
    position: absolute;
    bottom: 60px;
    left: 80px;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 60px 30px 40px 50px;
    color: #FFFFFF;
  }
  #footer .menu .siteMap .logo {
    width: 180px;
  }
  #footer .menu .siteMap .wrap {
    display: flex;
  }
  #footer .menu .siteMap .wrap ul {
    margin-top: 60px;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
  }
  #footer .menu .siteMap .wrap ul li + li {
    margin-top: 25px;
  }
  #footer .menu .siteMap .wrap ul .policy {
    margin-top: 120px;
    font-size: 13px;
  }
  #footer .menu .siteMap .wrap ul .sns {
    display: flex;
  }
  #footer .menu .siteMap .wrap ul .sns a {
    display: block;
    width: 20px;
    height: 20px;
  }
  #footer .menu .siteMap .wrap ul .sns a + a {
    margin-left: 20px;
  }
  #footer .menu .siteMap .wrap ul + ul {
    margin-left: 100px;
  }
  #footer .menu .siteMap .wrap .copyright {
    writing-mode: vertical-rl;
    height: fit-content;
    font-size: 13px;
    color: #AAAAAA;
    margin-left: 50px;
    margin-top: auto;
  }
  #footer .menu .swiperWrap {
    width: 100%;
    min-height: 750px;
  }
  #footer .menu .swiperWrap .swiper .swiper-wrapper {
    transition-timing-function: linear !important;
  }
  #footer .menu .swiperWrap .swiper .swiper-wrapper .swiper-slide {
    width: 100vw;
    height: auto;
  }
  #header {
    width: 100vw;
    height: 126px;
    position: fixed;
    z-index: 9998;
    background-color: rgba(235, 236, 237, 0.8);
    transition: all 0.5s ease;
    top: -130px;
    min-width: 1280px;
  }
  #header .black {
    opacity: 1;
  }
  #header .white {
    display: none;
    opacity: 0;
  }
  #header .inner {
    width: calc(100vw - 80px);
    margin: auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 1280px;
  }
  #header .inner .header_logo {
    width: 151px;
  }
  #header .inner .header_logo:hover {
    cursor: pointer;
    opacity: 0.5;
  }
  #header .inner .text {
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.05em;
    font-weight: 600;
  }
  #header .inner .text + .text {
    margin-left: 20px;
  }
  #header .inner .text:hover {
    cursor: pointer;
    opacity: 0.5;
  }
  #header .inner .contact {
    width: 140px;
    position: relative;
  }
  #header .inner .contact a.btn {
    display: block;
    height: 40px;
    line-height: 40px;
    background-color: #937B5E;
    border-radius: 25px;
    text-align: center;
    color: #FFFFFF;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    border: 1px solid #937B5E;
  }
  #header .inner .contact a.btn:hover {
    cursor: pointer;
    background-color: transparent;
    color: #937B5E;
  }
  .whiteColor {
    color: #FFFFFF !important;
  }
  .whiteColor .white {
    opacity: 1 !important;
    display: block !important;
  }
  .whiteColor .black {
    display: none !important;
    opacity: 0 !important;
  }
  .whiteColor:hover {
    color: #080807 !important;
  }
  .whiteColor:hover .black {
    display: block !important;
    opacity: 1 !important;
  }
  .whiteColor:hover .white {
    display: none !important;
    opacity: 0 !important;
  }
  #header:hover {
    background-color: #EBECED;
  }
  #frontPage .firstview {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
  }
  #frontPage .firstview .bg-move {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
  }
  #frontPage .firstview .bg-move video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #frontPage .firstview .inner {
    position: relative;
    z-index: 2;
    width: calc(100vw - 80px);
    height: calc(100vh - 100px);
    margin: 50px auto;
  }
  #frontPage .firstview .inner .nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  #frontPage .firstview .inner .nav ul li {
    margin-bottom: 24px;
    text-align: right;
  }
  #frontPage .firstview .inner .nav ul li a {
    font-family: "Erode", serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #FFFFFF;
  }
  #frontPage .firstview .inner .nav ul li a:hover {
    opacity: 0.3;
  }
  #frontPage .firstview .inner .nav .logo {
    width: 180px;
  }
  #frontPage .firstview .inner .nav .logo img {
    width: 100%;
  }
  #frontPage .firstview .inner .title {
    color: #FFFFFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* ★ 最初はまるごと非表示 */
    opacity: 0;
    transition: opacity 0.6s ease;
  }
  #frontPage .firstview .inner .title h2 {
    text-align: center;
    font-family: "Erode", serif;
    font-size: 80px;
    font-weight: 400;
    letter-spacing: 0.06em;
  }
  #frontPage .firstview .inner .title h2 .jp {
    display: block;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    letter-spacing: 0.08em;
  }
  #frontPage .firstview .inner .title h2 .en {
    display: block;
    margin-top: 8px;
  }
  #frontPage .firstview .inner .title h2 .en span {
    white-space: pre;
  }
  #frontPage .firstview .inner .title h2 {
    /* 1文字ずつアニメーションさせる span（JS で .jp/.en 内に span が入る想定） */
  }
  #frontPage .firstview .inner .title h2 span span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
  }
  #frontPage .firstview .shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
  }
  #frontPage .firstview .swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    z-index: 0;
    /* ★ 全スライド共通のゆっくりズームをコンテナにかける */
    transform-origin: center center;
    animation: fvZoomInfinite 20s ease-in-out infinite alternate;
  }
  #frontPage .firstview .swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
  }
  #frontPage .firstview .swiper .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000;
  }
  #frontPage .firstview .swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ★ ここには scale / animation をかけない */
    transform: none;
    animation: none;
  }
  #frontPage .firstview {
    /* ★ is-show が付いたらタイトルをフェードイン ＋ 文字1文字ずつ */
  }
  #frontPage .firstview.is-show .inner .title {
    opacity: 1;
  }
  #frontPage .firstview.is-show .inner .title h2 span span {
    animation: fvCharIn 0.6s forwards;
    animation-delay: calc(var(--char-index) * 0.05s);
  }
  #frontPage {
    /* ★ 全体ズーム用アニメーション（Swiperコンテナに適用） */
  }
  @keyframes fvZoomInfinite {
    0% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1.2);
    }
  }
  #frontPage {
    /* ★ 文字のフェードイン＆スライドアップ（既存のまま使う想定） */
  }
  @keyframes fvCharIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  #frontPage .about {
    padding: 180px 0 190px;
    text-align: center;
    position: relative;
    width: 100vw;
    overflow-x: hidden;
  }
  #frontPage .about .button {
    margin-top: 60px;
  }
  #frontPage .about h3 {
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    margin-bottom: 50px;
  }
  #frontPage .about p {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 2.5;
    margin: 0 auto;
    font-weight: 600;
  }
  #frontPage .about .swiperWrap {
    width: calc(100vw - 80px);
    height: 350px;
    overflow: hidden;
    margin-left: auto;
    margin-top: 80px;
  }
  #frontPage .about .swiperWrap .swiper-wrapper {
    transition-timing-function: linear !important;
  }
  #frontPage .about .swiperWrap .swiper-slide {
    aspect-ratio: 624/351;
    /* slidesPerView: 'auto' 用に幅を指定 */
    width: 624px;
    margin: 0;
  }
  #frontPage .about .swiperWrap img {
    height: 100%;
    width: auto;
  }
  #frontPage .about .aboutText {
    position: absolute;
    width: 22.265625vw;
    top: 80px;
    left: -20px;
  }
  #frontPage .about .circle_line {
    width: 51.953125vw;
    height: 51.953125vw;
    border: 1px solid #D2CECA;
    border-radius: 50%;
    position: absolute;
    top: -20%;
    right: -50px;
    transform: scale(0);
    transition: transform 1.5s ease;
  }
  #frontPage .house {
    position: relative;
    width: 100vw;
  }
  #frontPage .house .houseText {
    position: absolute;
    width: 289px;
    top: -100px;
    left: 45%;
    transform: translateX(-50%);
    z-index: -1;
  }
  #frontPage .house .osadaText {
    position: absolute;
    width: 289px;
    top: 10px;
    right: 0px;
    z-index: -1;
  }
  #frontPage .house .selectHouse {
    margin-top: 80px;
    height: 800px;
    display: flex;
  }
  #frontPage .house .selectHouse .houseType {
    width: 300px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  #frontPage .house .selectHouse .houseType .shadow {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
  }
  #frontPage .house .selectHouse .houseType img {
    width: calc(100vw - 600px);
    height: 100%;
    object-fit: cover;
    max-width: calc(100vw - 600px);
  }
  #frontPage .house .selectHouse .houseType .Nactive {
    font-size: 18px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.05em;
    position: relative;
    width: max-content;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #FFFFFF;
  }
  #frontPage .house .selectHouse .houseType .Nactive::after {
    content: "";
    width: 14px;
    height: 1px;
    background-color: #FFFFFF;
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateX(-50%);
  }
  #frontPage .house .selectHouse .houseType .Nactive::before {
    content: "";
    width: 1px;
    height: 14px;
    background-color: #FFFFFF;
    position: absolute;
    top: 52%;
    right: -12px;
    transform: translateY(-50%);
  }
  #frontPage .house .selectHouse .houseType .wrap {
    color: #FFFFFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  #frontPage .house .selectHouse .houseType .wrap h4 {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    letter-spacing: 0.05em;
    font-weight: 600;
    opacity: 0;
    transition: all 0.5s ease;
    margin-top: 100px;
  }
  #frontPage .house .selectHouse .houseType .wrap .caption {
    margin: 25px auto 40px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    letter-spacing: 0.05em;
    font-weight: 400;
    line-height: 2;
    opacity: 0;
    transition: all 0.5s ease;
  }
  #frontPage .house .selectHouse .houseType .wrap .button {
    opacity: 0;
    transition: all 0.5s ease;
  }
  #frontPage .house .selectHouse .select {
    width: calc(100vw - 600px);
  }
  #frontPage .house .selectHouse .select .shadow {
    display: block;
  }
  #frontPage .house .selectHouse .select .Nactive {
    display: none;
  }
  #frontPage .house .selectHouse .select .wrap h4 {
    opacity: 1;
    margin-top: 0;
  }
  #frontPage .house .selectHouse .select .wrap .caption {
    opacity: 1;
  }
  #frontPage .house .selectHouse .select .wrap .button {
    opacity: 1;
  }
  #frontPage .works {
    margin: 180px auto 180px;
    position: relative;
  }
  #frontPage .works .worksText {
    position: absolute;
    width: 266px;
    top: -100px;
    left: 100px;
    z-index: -1;
  }
  #frontPage .works .sectionTitle {
    text-align: left;
  }
  #frontPage .works .wrap {
    display: flex;
    width: calc(100vw - 160px);
    justify-content: space-between;
    align-items: center;
    margin-left: 80px;
  }
  #frontPage .works .wrap .button {
    margin: 0;
  }
  #frontPage .works .worksList {
    margin: 80px auto 0;
    width: calc(100vw - 160px);
    display: flex;
    justify-content: space-between;
  }
  #frontPage .works .worksList .worksItem {
    width: calc(33.3333333333% - 40px);
    aspect-ratio: 352/235;
  }
  #frontPage .works .worksList .worksItem img {
    width: 100%;
    object-fit: cover;
    height: auto;
  }
  #frontPage .works .worksList .worksItem a {
    display: block;
    width: 100%;
    position: relative;
    z-index: 2;
    color: #FFFFFF;
  }
  #frontPage .works .worksList .worksItem a .shadow {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: all 0.3s ease;
  }
  #frontPage .works .worksList .worksItem a ul {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease;
  }
  #frontPage .works .worksList .worksItem a ul li {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 13px;
    display: flex;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  #frontPage .works .worksList .worksItem a ul li p:first-child {
    width: 70px;
    margin-right: 10px;
  }
  #frontPage .works .worksList .worksItem a ul li + li {
    margin-top: 10px;
  }
  #frontPage .works .worksList .worksItem a:hover .shadow {
    opacity: 1;
  }
  #frontPage .works .worksList .worksItem a:hover ul {
    opacity: 1;
  }
  #frontPage .works .worksList .worksItem .titleWrap .title {
    color: #080807;
    margin-top: 15px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0.05em;
    opacity: 1;
    text-align: center;
  }
  #frontPage .works .worksList .worksItem:hover {
    cursor: pointer;
  }
  #frontPage .works .worksList .worksItem:hover .title {
    opacity: 0.5;
  }
  #frontPage .works .worksList .worksItem:hover a ul li {
    opacity: 1 !important;
  }
  #frontPage .points {
    background-color: #D2CECA;
    padding: 80px 0 80px;
    height: 400vh;
    position: relative;
  }
  #frontPage .points .button {
    position: sticky;
    top: calc(100vh - 80px);
    left: calc(100vw - 200px);
    z-index: 100;
  }
  #frontPage .points .sectionTitle {
    text-align: left;
    margin-left: 80px;
    position: sticky;
    top: 40px;
    left: 80px;
  }
  #frontPage .points .leadText {
    width: 100vw;
    height: 100vh;
    position: sticky;
    top: 0;
  }
  #frontPage .points .leadText p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Erode", serif;
    color: #FFFFFF;
    font-size: 10vw;
    width: max-content;
    text-align: center;
  }
  #frontPage .points .cardWrap {
    width: 100vw;
    height: 100vh;
    position: sticky;
    top: 0;
  }
  #frontPage .points .card {
    width: 300px;
    height: 300px;
    background-color: #FFFFFF;
    z-index: 2;
  }
  #frontPage .points .card img {
    width: 210px;
    height: auto;
    margin: 8px auto 10px;
  }
  #frontPage .points .card .lavel {
    display: inline-block;
    background-color: #937B5E;
    color: #FFFFFF;
    padding: 4px 8px;
  }
  #frontPage .points .card p {
    width: 240px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.8;
    font-weight: 500;
  }
  #frontPage .points .point1 {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%) rotate(-1deg);
    margin-top: -160px;
  }
  #frontPage .points .point2 {
    position: absolute;
    top: 50%;
    left: calc(40% + 250px);
    transform: translateY(-50%) rotate(4deg);
    background-color: #EBECED;
    margin-top: -100px;
  }
  #frontPage .points .point3 {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%) rotate(2deg);
    background-color: #EBECED;
    margin-top: 200px;
  }
  #frontPage .points .point4 {
    position: absolute;
    top: 50%;
    left: calc(40% + 150px);
    transform: translateY(-50%) rotate(-2deg);
    margin-top: 180px;
  }
  #frontPage .voice {
    position: relative;
  }
  #frontPage .voice .voiceText {
    position: absolute;
    width: 266px;
    top: -100px;
    left: 0px;
    z-index: -1;
  }
  #frontPage .voice .circle_line {
    width: 46.5625vw;
    height: 46.5625vw;
    border: 1px solid #D2CECA;
    border-radius: 50%;
    position: absolute;
    top: 0%;
    left: 45%;
    z-index: -1;
    transform: scale(0);
    transition: transform 1.5s ease;
  }
  #frontPage .voice .wrap {
    width: calc(100vw - 160px);
    margin: 180px auto 0px;
    display: flex;
    justify-content: space-between;
  }
  #frontPage .voice .wrap .button {
    margin: 0;
  }
  #frontPage .voice ul {
    display: flex;
    justify-content: space-between;
    margin: 80px auto 0;
    width: calc(100vw - 160px);
  }
  #frontPage .voice ul li {
    width: calc(33.3333333333% - 40px);
    box-sizing: border-box;
  }
  #frontPage .voice ul li a:hover {
    cursor: pointer;
    opacity: 0.5;
  }
  #frontPage .voice ul li img {
    width: 100%;
    height: auto;
  }
  #frontPage .voice ul li .lavel {
    font-size: 14px;
    background-color: #080807;
    padding: 4px 8px;
    color: #FFFFFF;
    display: inline-block;
    margin: -20px 0 0px;
    transform: translateY(-29px);
  }
  #frontPage .voice ul li .captiopn {
    font-size: 13px;
    line-height: 1.8;
    font-weight: 700;
  }
  #frontPage .voice ul li:nth-child(2) {
    margin-top: 40px;
  }
  #frontPage .voice ul li:nth-child(3) {
    margin-top: 80px;
  }
  #frontPage .news {
    margin-top: 180px;
    position: relative;
  }
  #frontPage .news .button {
    margin-top: 60px;
  }
  #frontPage .news .newsText {
    position: absolute;
    width: 228px;
    top: -100px;
    left: 40%;
    z-index: -1;
  }
  #frontPage .news .newsList {
    border-top: 1px solid #BEC1C4;
    border-bottom: 1px solid #BEC1C4;
    padding-top: 48px;
    padding-bottom: 48px;
    width: calc(100vw - 160px);
    margin: 80px auto 0;
    display: flex;
    justify-content: space-between;
  }
  #frontPage .news .newsList .date {
    font-family: "Erode", serif;
    font-size: 16px;
    color: #6C6C6C;
    margin-top: 20px;
  }
  #frontPage .news .newsList .caption {
    font-weight: 600;
  }
  #frontPage .news .newsList .title {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0.05em;
    margin-top: 8px;
    font-weight: 800;
    margin: 10px 0 20px;
  }
  #frontPage .news .newsList .title span {
    font-size: 13px;
    color: #937B5E;
  }
  #frontPage .news .newsList .title span:before {
    content: "┃";
    width: 4px;
    height: 4px;
    display: inline-block;
    margin-right: 8px;
    color: #080807;
    font-weight: 300;
  }
  #frontPage .news .newsList .left {
    width: calc(100% - 100px - 50vw);
  }
  #frontPage .news .newsList .left a:hover {
    opacity: 0.5;
  }
  #frontPage .news .newsList .right {
    width: 50vw;
    padding-left: 100px;
  }
  #frontPage .news .newsList .right .date {
    margin-top: 0;
  }
  #frontPage .news .newsList .right li {
    border-bottom: 1px solid #BEC1C4;
    padding-bottom: 48px;
  }
  #frontPage .news .newsList .right li + li {
    margin-top: 48px;
  }
  #frontPage .news .newsList .right a:hover {
    opacity: 0.5;
  }
  #frontPage .company {
    width: 100vw;
    background-size: cover;
    padding: 120px 140px 120px 250px;
    position: relative;
    margin-top: 150px;
    background-attachment: fixed;
    background-position: center;
  }
  #frontPage .company .companyText {
    position: absolute;
    width: 400px;
    top: 20px;
    left: -10px;
    z-index: 1;
    opacity: 0.3;
  }
  #frontPage .company .shadow {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
  #frontPage .company .sectionTitle {
    color: #FFFFFF;
    text-align: left;
    position: relative;
    z-index: 1;
  }
  #frontPage .company .wrap {
    width: 100%;
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    justify-content: space-between;
    display: flex;
    align-items: flex-end;
    margin-top: 120px;
  }
  #frontPage .company .wrap .button {
    margin: 0;
    background-color: transparent;
    border: 1px solid #FFFFFF;
  }
  #frontPage .company .wrap p {
    max-width: 500px;
    font-size: 16px;
    line-height: 2.5;
    font-weight: 600;
  }
  #aboutPage header {
    top: 0 !important;
  }
  #aboutPage .firstview {
    width: 100vw;
    height: 150vh;
  }
  #aboutPage .firstview .imgWrap {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: sticky;
    top: 0;
  }
  #aboutPage .firstview .imgWrap .mainVisual {
    width: 102vw;
    height: 102%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
    filter: blur(0);
    transition: filter 0.8s ease;
  }
  #aboutPage .firstview .imgWrap .shadow {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  #aboutPage .firstview .imgWrap.is-blur .mainVisual {
    filter: blur(6px);
  }
  #aboutPage .firstview .textWrap {
    margin-top: -50vh;
  }
  #aboutPage .firstview .lead {
    position: relative;
    z-index: 2;
    font-size: 40px;
    font-family: "Erode", serif;
    margin-left: 160px;
    color: #FFFFFF;
    letter-spacing: 0.2em;
    font-weight: 300;
  }
  #aboutPage .firstview .lead + .lead {
    margin-top: 20px;
  }
  #aboutPage .firstview .caption {
    position: relative;
    z-index: 2;
    font-size: 16px;
    margin-left: 50vw;
    margin-top: 60px;
    line-height: 2.5;
    color: #FFFFFF;
    width: calc(50vw - 210px);
  }
  #aboutPage .point {
    margin-top: 130px;
    display: flex;
  }
  #aboutPage .point .imgWrap {
    width: 56.25vw;
    height: auto;
    position: relative;
  }
  #aboutPage .point .imgWrap .number {
    position: absolute;
    top: -50px;
    right: 80px;
    font-size: 100px;
    width: 110px;
  }
  #aboutPage .point .imgWrap img {
    width: 100%;
    height: auto;
  }
  #aboutPage .point .textWrap {
    width: 43.75vw;
    padding: 0 80px;
  }
  #aboutPage .point .textWrap .wrap {
    display: flex;
    align-items: flex-end;
  }
  #aboutPage .point .textWrap .wrap .title {
    font-size: 20px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.05em;
    font-weight: 600;
    background-color: #937B5E;
    padding: 4px 8px;
    color: #FFFFFF;
    height: fit-content;
  }
  #aboutPage .point .textWrap .wrap .illust {
    width: 200px;
  }
  #aboutPage .point .textWrap .caption {
    margin-top: 40px;
    font-size: 14px;
    line-height: 2;
    font-weight: 600;
  }
  #aboutPage .point .textWrap .caption span {
    text-decoration: underline;
    color: #937B5E;
  }
  #aboutPage .point .L3 {
    width: 120px;
  }
  #aboutPage .reverse {
    padding: 130px 0;
    background-color: #D2CECA;
  }
  #aboutPage .reverse .textWrap .wrap {
    flex-flow: row-reverse;
  }
  #aboutPage .house {
    margin: 150px auto;
  }
  #aboutPage .house .banner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100vw - 160px);
    margin: 60px auto 0;
  }
  #aboutPage .house .banner a {
    display: block;
    width: 43.359375vw;
    position: relative;
    overflow: hidden;
  }
  #aboutPage .house .banner a .shadow {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #aboutPage .house .banner a p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    font-size: 20px;
  }
  #aboutPage .house .banner a img {
    transition: all 0.3s ease;
    width: 100%;
    height: auto;
  }
  #aboutPage .house .banner a:hover {
    cursor: pointer;
  }
  #aboutPage .house .banner a:hover img {
    transform: scale(1.05);
  }
  #aboutPage .house .banner a + a {
    margin-left: 10px;
  }
  #aboutPage .about {
    width: 100vw;
    padding: 130px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    text-align: center;
    color: #FFFFFF;
  }
  #aboutPage .about .shadow {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
  #aboutPage .about h4 {
    position: relative;
    z-index: 2;
    font-size: 30px;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
  }
  #aboutPage .about p {
    position: relative;
    z-index: 2;
    font-size: 16px;
    line-height: 2.5;
    margin-top: 50px;
  }
  #aboutPage .strong {
    margin: 200px auto;
    border-bottom: 1px solid #BEC1C4;
  }
  #aboutPage .strong .wrap {
    width: 100vw;
  }
  #aboutPage .strong .wrap .inner {
    display: flex;
    justify-content: space-between;
    width: calc(100vw - 160px);
    margin: auto;
    padding-top: 200px;
  }
  #aboutPage .strong .wrap .inner img {
    aspect-ratio: 540/360;
    width: calc(50vw - 80px);
    height: fit-content;
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 1s ease-in;
  }
  #aboutPage .strong .wrap .inner img.is-fading {
    opacity: 0;
  }
  #aboutPage .strong .wrap .inner .scroll {
    padding: 100vh 0 50vh;
  }
  #aboutPage .strong .wrap .inner .scroll .textWrap {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    width: calc(100% - 80px);
    margin-left: 80px;
    margin-bottom: 80vh;
  }
  #aboutPage .strong .wrap .inner .scroll .textWrap:last-child {
    margin-bottom: 0;
  }
  #aboutPage .strong .wrap .inner .scroll .textWrap .lavel {
    font-size: 14px;
    color: #937B5E;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
  }
  #aboutPage .strong .wrap .inner .scroll .textWrap .title {
    font-size: 20px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin: 20px 0 15px;
  }
  #aboutPage .strong .wrap .inner .scroll .textWrap .caption {
    font-size: 14px;
    line-height: 2;
    font-weight: 600;
  }
  #stepPage header {
    top: 0 !important;
  }
  #stepPage .firstview {
    width: 100vw;
    height: 500px;
    position: relative;
  }
  #stepPage .firstview .imgWrap {
    width: 100vw;
    height: 500px;
    overflow: hidden;
    background-size: cover;
    position: sticky;
    top: 0;
  }
  #stepPage .firstview .imgWrap .shadow {
    width: 100vw;
    height: 500px;
    background-color: rgba(0, 0, 0, 0.3);
  }
  #stepPage .step {
    width: 1120px;
    margin: 0 auto;
    border-top: 1px solid #BEC1C4;
    padding-top: 100px;
    margin-bottom: 100px;
    padding-bottom: 160px;
    border-bottom: 1px solid #BEC1C4;
  }
  #stepPage .step h5 {
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    letter-spacing: 0.08em;
    font-weight: 300;
    margin-bottom: 20px;
    text-align: center;
  }
  #stepPage .step .flow .inner {
    position: relative;
    width: 1120px;
    margin: 0 auto;
    height: 2150px;
  }
  #stepPage .step .flow .inner .flowImg {
    position: absolute;
    top: 100px;
  }
  #stepPage .step .flow .inner .lastText {
    position: absolute;
    top: 2050px;
    left: 60px;
    text-align: center;
  }
  #stepPage .step .flow .inner .lastText h5 {
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 0;
  }
  #stepPage .step .flow .inner .lastText p {
    margin-top: 16px;
    font-size: 18px;
  }
  #stepPage .step .flow .inner .flowText {
    display: flex;
    width: 850px;
    margin: 0 auto;
    justify-content: space-between;
  }
  #stepPage .step .flow .inner .flowText .textWrap {
    width: 250px;
  }
  #stepPage .step .flow .inner .flowText .textWrap .strong {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    background-color: #937B5E;
    display: inline-block;
    padding: 8px 20px;
    margin-top: 16px;
  }
  #stepPage .step .flow .inner .flowText .textWrap h6 {
    font-size: 18px;
    font-weight: 900;
  }
  #stepPage .step .flow .inner .flowText .textWrap ul {
    margin-top: 16px;
  }
  #stepPage .step .flow .inner .flowText .textWrap ul li {
    font-size: 16px;
    line-height: 2;
    margin-top: 0px;
    font-weight: 900;
    position: relative;
    padding-left: 1em;
  }
  #stepPage .step .flow .inner .flowText .textWrap ul li::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
  }
  #stepPage .step .flow .inner .colum_A {
    position: absolute;
    top: 175px;
    left: 55%;
    transform: translateX(-50%);
  }
  #stepPage .step .flow .inner .colum_B {
    position: absolute;
    top: 575px;
    left: 55%;
    transform: translateX(-50%);
  }
  #stepPage .step .flow .inner .colum_C {
    position: absolute;
    top: 975px;
    left: 55%;
    transform: translateX(-50%);
  }
  #stepPage .step .flow .inner .colum_D {
    position: absolute;
    top: 1375px;
    left: 55%;
    transform: translateX(-50%);
  }
  #stepPage .step .flow .inner .colum_E {
    position: absolute;
    top: 1775px;
    left: 55%;
    transform: translateX(-50%);
  }
  #stepPage .step .flow .inner .colum_F {
    position: absolute;
    top: 2175px;
    left: 55%;
    transform: translateX(-50%);
  }
  #stepPage .price {
    padding-bottom: 150px;
    border-bottom: 1px solid #BEC1C4;
    width: calc(100vw - 160px);
    margin: auto;
  }
  #stepPage .price .chartWrap {
    width: calc(100vw - 160px);
    margin: 0 auto 0;
    display: flex;
  }
  #stepPage .price .chartWrap .headline {
    display: inline-block;
    font-size: 22px;
    letter-spacing: 0.05em;
    position: relative;
    padding-left: 24px;
    font-weight: 900;
  }
  #stepPage .price .chartWrap .headline::after {
    content: "";
    width: 19px;
    height: 19px;
    background-color: #937B5E;
    position: absolute;
    top: 55%;
    left: 0;
    transform: translateY(-50%);
  }
  #stepPage .price .chartWrap .imgWrap {
    width: 31.25vw;
    text-align: center;
    margin-right: 80px;
    min-width: 400px;
  }
  #stepPage .price .chartWrap .imgWrap img {
    width: 100%;
    height: auto;
  }
  #stepPage .price .chartWrap .imgWrap .headline {
    margin: 20px auto 0;
  }
  #stepPage .price .chartWrap .dateWrap .green::after {
    background-color: #8C9E6C;
  }
  #stepPage .price .chartWrap .dateWrap .beige {
    margin-top: 40px;
  }
  #stepPage .price .chartWrap .dateWrap .beige::after {
    background-color: #C6B79D;
  }
  #stepPage .price .chartWrap .dateWrap .headline {
    margin-bottom: 30px;
  }
  #stepPage .price .chartWrap .dateWrap .flex {
    display: flex;
    flex-wrap: wrap;
  }
  #stepPage .price .chartWrap .dateWrap .flex .wrap {
    width: calc(33.3333333333% - 20px);
    margin-left: 20px;
    margin-bottom: 20px;
  }
  #stepPage .price .chartWrap .dateWrap .flex li {
    width: calc(33.3333333333% - 20px);
    margin-left: 20px;
    margin-bottom: 10px;
    font-weight: 800;
    position: relative;
    padding-left: 1em;
  }
  #stepPage .price .chartWrap .dateWrap .flex li::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
  }
  #stepPage .price .chartWrap .dateWrap .bold {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 10px;
  }
  #stepPage .price .chartWrap .dateWrap .list {
    width: 100%;
  }
  #stepPage .price .chartWrap .dateWrap .list li {
    width: 100%;
    margin-left: 0;
    font-size: 14px;
  }
  #stepPage .point {
    margin: 100px auto 150px;
    width: calc(100vw - 160px);
  }
  #stepPage .point .pointsList {
    display: flex;
    justify-content: space-between;
    width: calc(100vw - 160px);
    margin: 80px auto 0;
  }
  #stepPage .point .pointsList .list {
    width: calc(33.3333333333% - 20px);
    text-align: center;
  }
  #stepPage .point .pointsList .list img {
    width: 100%;
    height: auto;
  }
  #stepPage .point .pointsList .list .title {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0.05em;
    font-weight: 900;
    margin-top: 20px;
  }
  #stepPage .point .pointsList .list .caption {
    margin-top: 10px;
    font-size: 14px;
    line-height: 2;
    font-weight: 500;
    text-align: left;
  }
  #stepPage .familyPhoto {
    width: 100%;
    margin: 0 auto;
    margin-top: 250px;
  }
  #stepPage .familyPhoto img {
    width: 100%;
    height: auto;
  }
  #templatePage header {
    top: 0 !important;
  }
  #templatePage .templateFV {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    margin-top: 180px;
    align-items: center;
    min-width: 1200px;
    max-height: 800px;
  }
  #templatePage .templateFV .imgWrap {
    width: 50vw;
    height: 100vh;
    max-height: 800px;
    position: relative;
  }
  #templatePage .templateFV .imgWrap .main {
    position: absolute;
    left: 0;
    top: 0;
    width: 39.0625vw;
    min-width: 500px;
  }
  #templatePage .templateFV .imgWrap .sub {
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 29.6875vw;
    min-width: 378px;
  }
  #templatePage .templateFV .textWrap {
    width: 50vw;
    position: relative;
    padding: 0 100px;
  }
  #templatePage .templateFV .textWrap .lead {
    font-size: 30px;
    font-family: "Erode", serif;
    font-weight: 300;
    line-height: 2;
  }
  #templatePage .templateFV .textWrap p {
    margin-top: 40px;
    font-size: 14px;
    line-height: 3;
    font-weight: 700;
  }
  #templatePage .modelHouse {
    width: calc(100vw - 160px);
    margin: 150px auto 0;
    border-top: 1px solid #BEC1C4;
    padding-top: 100px;
  }
  #templatePage .modelHouse .wankontena {
    margin: 0 auto;
    width: 320px;
    margin-top: -50px;
    mix-blend-mode: multiply;
  }
  #templatePage .modelHouse .textImgWrap {
    width: 100%;
    margin-top: 120px;
  }
  #templatePage .modelHouse .textImgWrap .mainWrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
  }
  #templatePage .modelHouse .textImgWrap .mainWrap .lavel {
    font-size: 20px;
    background-color: #937B5E;
    color: #FFFFFF;
    display: inline-block;
    padding: 4px 8px;
    position: absolute;
    top: 0px;
    left: 0;
    width: fit-content;
  }
  #templatePage .modelHouse .textImgWrap .mainWrap p {
    font-size: 16px;
    line-height: 2.5;
    font-weight: 600;
    width: 35.9375vw;
  }
  #templatePage .modelHouse .textImgWrap .mainWrap p .strong {
    font-weight: 900;
  }
  #templatePage .modelHouse .textImgWrap .mainWrap img {
    width: 50vw;
  }
  #templatePage .modelHouse .textImgWrap .reverse {
    flex-direction: row-reverse;
  }
  #templatePage .modelHouse .textImgWrap .reverse p {
    text-align: left;
  }
  #templatePage .modelHouse .textImgWrap .reverse .lavel {
    left: auto;
    right: 0;
  }
  #templatePage .modelHouse .youtube {
    width: 100%;
    margin-top: 60px;
    aspect-ratio: 16/9;
  }
  #templatePage .modelHouse .youtube iframe {
    width: 100%;
    height: 100%;
  }
  #templatePage .modelHouse .catch {
    font-size: 30px;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.08em;
    font-weight: 300;
    margin: auto;
  }
  #templatePage .modelHouse .borderTitle {
    display: block;
    position: relative;
    width: 100%;
  }
  #templatePage .modelHouse .borderTitle p {
    font-size: 20px;
    background-color: #EBECED;
    padding-right: 20px;
    position: relative;
    z-index: 2;
    display: inline-block;
    font-weight: 600;
  }
  #templatePage .modelHouse .borderTitle .border {
    width: 100%;
    height: 1px;
    background-color: #BEC1C4;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  #templatePage .modelHouse .caption {
    margin-bottom: 60px;
  }
  #templatePage .modelHouse .colum2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #templatePage .modelHouse .colum2 li {
    width: calc(50% - 20px);
    margin: 40px 0;
    text-align: center;
  }
  #templatePage .modelHouse .colum2 li img {
    width: 100%;
    height: auto;
  }
  #templatePage .modelHouse .colum2 .imgWrap {
    width: 50vw;
  }
  #templatePage .modelHouse .colum2 .textWrap {
    width: 33.59375vw;
    height: auto;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
  }
  #templatePage .modelHouse .colum2 .textWrap .title {
    font-size: 20px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.05em;
    font-weight: 900;
    margin-bottom: 20px;
  }
  #templatePage .modelHouse .colum2 .textWrap .title span {
    display: block;
    font-size: 14px;
    color: #937B5E;
    margin-bottom: 16px;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
  }
  #templatePage .modelHouse .colum2 .textWrap .caption {
    margin-top: 40px;
    font-size: 16px;
    line-height: 2.5;
    font-weight: 700;
    margin-bottom: 0;
  }
  #templatePage .modelHouse .colum2 + .colum2 {
    margin-top: 120px;
  }
  #templatePage .modelHouse .columWrap .colum2:nth-child(2n) {
    flex-direction: row-reverse;
  }
  #templatePage .modelHouse .columWrap .colum2:nth-child(2n) .textWrap {
    align-items: flex-start;
    text-align: left;
  }
  #templatePage .modelHouse .columWrap .colum2:nth-child(2n) .textWrap .title {
    margin-left: 0;
    margin-right: auto;
  }
  #templatePage .modelHouse .marginTop120 {
    margin-top: 120px !important;
  }
  #templatePage .modelHouse .marginTop30 {
    margin-top: 30px !important;
  }
  #templatePage .modelHouse .centerText {
    text-align: center;
    font-weight: 900;
    margin-top: -30px;
    margin-bottom: 80px;
  }
  #templatePage .modelHouse .colum3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
  }
  #templatePage .modelHouse .colum3 li {
    width: calc(33.3333333333% - 20px);
  }
  #templatePage .modelHouse .colum3 li .title {
    font-size: 16px;
    text-align: center;
    margin: 20px 0;
    font-weight: 900;
  }
  #templatePage .modelHouse .colum3 li .caption {
    font-size: 14px;
    line-height: 2;
    font-weight: 500;
    text-align: center;
  }
  #templatePage .modelHouse .lead {
    font-size: 16px;
    line-height: 2.5;
    font-weight: 600;
    text-align: left;
    margin: 80px 0 120px auto;
    width: 50%;
  }
  #templatePage .modelHouse .sectionTitle {
    margin-bottom: 80px;
  }
  #templatePage .modelHouse .sectionTitle span {
    display: block;
    font-size: 13px;
    color: #888888;
    margin-bottom: 16px;
  }
  #templatePage .modelHouse .items .title {
    font-size: 16px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.05em;
    font-weight: 900;
    position: relative;
    padding-left: 1rem;
    display: inline-block;
    margin-bottom: 50px;
  }
  #templatePage .modelHouse .items .title::before {
    content: "";
    width: 4px;
    height: 4px;
    background-color: #080807;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 0%;
    transform: translate(0%, -50%);
  }
  #templatePage .modelHouse .imgWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #templatePage .modelHouse .imgWrap .main {
    width: 49.21875vw;
  }
  #templatePage .modelHouse .imgWrap .sub {
    width: 33.59375vw;
  }
  #templatePage .modelHouse .items + .items {
    margin-top: 100px;
  }
  #templatePage .modelHouse .reverse {
    text-align: right;
  }
  #templatePage .modelHouse .reverse .title {
    margin-left: auto;
  }
  #templatePage .modelHouse .reverse .imgWrap {
    flex-direction: row-reverse;
  }
  #templatePage .firstview {
    width: 100vw;
    height: 500px;
    position: relative;
  }
  #templatePage .firstview .imgWrap {
    width: 100vw;
    height: 500px;
    overflow: hidden;
    background-size: cover;
    position: sticky;
    top: 0;
  }
  #templatePage .firstview .imgWrap .shadow {
    width: 100vw;
    height: 500px;
    background-color: rgba(0, 0, 0, 0.3);
  }
  #templatePage .sectionBorder {
    width: calc(100vw - 160px);
    margin: auto;
    height: 1px;
    background-color: #BEC1C4;
    margin-top: 150px;
  }
  #templatePage .oneText {
    font-family: "Erode", serif;
    text-align: center;
    font-size: 35px;
    margin-top: -20px;
    letter-spacing: 0.3em;
  }
  .container .containerUse .colum3 {
    align-items: flex-start !important;
  }
  .container .containerUse .colum3 .caption {
    margin-bottom: 0 !important;
  }
  .pageNation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
  }
  .pageNation .prev,
  .pageNation .next {
    width: 16px;
  }
  .pageNation .prev {
    transform: rotate(180deg);
  }
  .pageNation .pageNumber {
    display: flex;
    align-items: center;
    margin: 0 50px;
    position: relative;
  }
  .pageNation .pageNumber li {
    font-family: "Erode", serif;
    font-size: 20px;
    position: relative;
    opacity: 0.5;
    font-weight: 400;
  }
  .pageNation .pageNumber .active {
    opacity: 1;
  }
  .pageNation .pageNumber .active::after {
    content: "";
    width: 4px;
    height: 4px;
    background-color: #080807;
    position: absolute;
    display: block;
    border-radius: 50%;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
  }
  .pageNation .pageNumber li + li {
    margin-left: 32px;
  }
  .footerText {
    font-family: "Erode", serif;
    font-size: 30px;
    font-weight: 300;
    margin: auto;
    display: block;
    text-align: center;
    border-top: 1px solid #BEC1C4;
    border-bottom: 1px solid #BEC1C4;
    padding: 80px 0;
    margin-top: 150px;
    width: calc(100vw - 160px);
    line-height: 2;
  }
  #worksPage header {
    top: 0 !important;
  }
  #worksPage .fv {
    width: 100vw;
    position: relative;
  }
  #worksPage .fv .worksText {
    position: absolute;
    width: 266px;
    bottom: -60px;
    right: 100px;
    z-index: 2;
  }
  #worksPage .fv .imgWrap {
    width: 100vw;
    position: relative;
  }
  #worksPage .fv .imgWrap .shadow {
    width: 100vw;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
  }
  #worksPage .lead {
    font-size: 30px;
    font-family: "Erode", serif;
    font-weight: 300;
    margin: 120px 80px 60px;
  }
  #worksPage .category {
    width: calc(100vw - 160px);
    margin: auto;
    padding-bottom: 80px;
    border-bottom: 1px solid #BEC1C4;
  }
  #worksPage .category .title {
    font-size: 16px;
    font-family: "Erode", serif;
    letter-spacing: 0.05em;
    font-weight: 900;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #BEC1C4;
  }
  #worksPage .category .categoryList {
    display: flex;
    justify-content: space-between;
  }
  #worksPage .category .categoryList .list {
    width: calc(33.3333333333% - 32px);
  }
  #worksPage .category .categoryList .list .text {
    font-size: 16px;
    text-align: center;
    font-weight: 900;
    margin-top: 20px;
  }
  #worksPage .category .categoryList .list .img {
    width: 100%;
    border: 1px solid #BEC1C4;
    padding: 15px;
    box-sizing: border-box;
  }
  #worksPage .category .categoryList .list .img img {
    filter: grayscale(100%);
  }
  #worksPage .category .categoryList .active .img {
    border: 2px solid #080807;
  }
  #worksPage .category .categoryList .active .img img {
    filter: none;
  }
  #worksPage .worksListWrap {
    width: calc(100vw - 160px);
    margin: 100px auto 0;
  }
  #worksPage .worksListWrap .worksList {
    width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #worksPage .worksListWrap .worksList li {
    width: calc((100% - 64px) / 3);
    margin-bottom: 50px;
    opacity: 1;
  }
  #worksPage .worksListWrap .worksList li .imgWrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 352/235;
    width: 100%;
  }
  #worksPage .worksListWrap .worksList li .imgWrap a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #worksPage .worksListWrap .worksList li .imgWrap a img {
    transition: all 0.3s ease;
  }
  #worksPage .worksListWrap .worksList li .textWrap {
    margin-top: 15px;
    width: 100%;
    transition: all 0.3s ease;
  }
  #worksPage .worksListWrap .worksList li .textWrap .data {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  #worksPage .worksListWrap .worksList li .textWrap .data li {
    margin-bottom: 0;
  }
  #worksPage .worksListWrap .worksList li .textWrap .data .name {
    font-size: 13px;
    color: #937B5E;
    font-weight: 600;
    width: fit-content;
  }
  #worksPage .worksListWrap .worksList li .textWrap .data .category {
    font-size: 13px;
    color: #6C6C6C;
    font-weight: 500;
    width: fit-content;
    text-align: right;
    margin: 0;
    border: none;
    padding: 0;
  }
  #worksPage .worksListWrap .worksList li .textWrap h5 {
    font-size: 16px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.05em;
    font-weight: 900;
    margin-top: 15px;
    border-top: 1px solid #BEC1C4;
    padding-top: 15px;
  }
  #worksPage .worksListWrap .worksList li:hover {
    cursor: pointer;
  }
  #worksPage .worksListWrap .worksList li:hover .imgWrap img {
    transform: scale(1.05);
    transition: all 0.3s ease;
  }
  #worksPage .worksListWrap .worksList li:hover .textWrap {
    opacity: 0.5;
  }
  #worksPostPage header {
    top: 0 !important;
  }
  #worksPostPage .postWrap {
    width: calc(100vw - 160px);
    margin: 200px auto 0;
  }
  #worksPostPage .postWrap .titleWrap {
    display: flex;
    justify-content: space-between;
  }
  #worksPostPage .postWrap .titleWrap .wrap .data {
    display: flex;
    align-items: center;
    font-size: 13px;
  }
  #worksPostPage .postWrap .titleWrap .wrap .data .category {
    color: #6C6C6C;
    margin-right: 15px;
  }
  #worksPostPage .postWrap .titleWrap .wrap .data .name {
    color: #937B5E;
    margin-left: 15px;
  }
  #worksPostPage .postWrap .titleWrap .wrap .title {
    font-size: 20px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.05em;
    font-weight: 900;
    margin-top: 20px;
  }
  #worksPostPage .postWrap .titleWrap .worksText {
    font-size: 20px;
    font-family: "Erode", serif;
  }
  #worksPostPage .worksThumbnail {
    margin-top: 40px;
  }
  #worksPostPage .worksThumbnail .swiper-slide {
    aspect-ratio: 1120/600;
  }
  #worksPostPage .worksThumbnail .swiper-slide img {
    object-fit: cover;
    width: 100%;
    height: auto;
  }
  #worksPostPage .worksThumbnail .worksThumbs {
    margin-top: 40px;
    width: fit-content;
    margin-left: auto;
    margin-right: 0;
  }
  #worksPostPage .worksThumbnail .worksThumbs .swiper-slide {
    opacity: 0.5;
    width: 100px;
  }
  #worksPostPage .worksThumbnail .worksThumbs .swiper-slide img {
    width: 100%;
    height: auto;
  }
  #worksPostPage .worksThumbnail .worksThumbs .swiper-slide-thumb-active {
    opacity: 1;
  }
  #worksPostPage .leadWrap {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
  }
  #worksPostPage .leadWrap .dataList {
    width: 23.4375vw;
    min-width: 300px;
  }
  #worksPostPage .leadWrap .dataList .list {
    display: flex;
    border-bottom: 1px solid #BEC1C4;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  #worksPostPage .leadWrap .dataList .list .title {
    font-size: 14px;
    font-weight: 900;
    min-width: 80px;
  }
  #worksPostPage .leadWrap .lead {
    margin-left: 100px;
    font-size: 16px;
    line-height: 2.5;
    font-weight: 900;
    width: 56.25vw;
  }
  #worksPostPage .leadWrap .lead p img {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
  }
  #worksPostPage .housePoint {
    margin-top: 120px;
    display: flex;
    justify-content: space-between;
  }
  #worksPostPage .housePoint h5 {
    font-size: 30px;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.08em;
    font-weight: 300;
  }
  #worksPostPage .housePoint .pointList {
    width: 56.25vw;
    margin-top: 50px;
  }
  #worksPostPage .housePoint .pointList .list {
    display: flex;
    margin-bottom: 40px;
    border-bottom: 1px solid #BEC1C4;
    padding-bottom: 40px;
  }
  #worksPostPage .housePoint .pointList .list .title {
    font-size: 14px;
    font-weight: 900;
    min-width: 120px;
  }
  #worksPostPage .otherCategory .category {
    width: calc(100vw - 160px);
    margin: auto;
  }
  #worksPostPage .otherCategory .category .title {
    font-size: 30px;
    text-align: center;
    font-family: "Erode", serif;
    letter-spacing: 0.05em;
    font-weight: 400;
    margin-top: 150px;
    margin-bottom: 60px;
  }
  #worksPostPage .otherCategory .category .categoryList {
    display: flex;
    justify-content: space-between;
  }
  #worksPostPage .otherCategory .category .categoryList .list {
    width: calc(33.3333333333% - 32px);
  }
  #worksPostPage .otherCategory .category .categoryList .list .text {
    font-size: 16px;
    text-align: center;
    font-weight: 900;
    margin-top: 20px;
  }
  #worksPostPage .otherCategory .category .categoryList .list .img {
    width: 100%;
    border: 1px solid #BEC1C4;
    padding: 15px;
    box-sizing: border-box;
  }
  #worksPostPage .otherCategory .category .categoryList .list .img img {
    filter: grayscale(100%);
  }
  #worksPostPage .otherCategory .category .categoryList .active .img {
    border: 2px solid #080807;
  }
  #worksPostPage .otherCategory .category .categoryList .active .img img {
    filter: none;
  }
  #worksPostPage .others .title {
    border-top: 1px solid #BEC1C4;
    padding-top: 100px;
    font-size: 30px;
    text-align: center;
    font-family: "Erode", serif;
    letter-spacing: 0.05em;
    font-weight: 400;
    margin-top: 100px;
    margin-bottom: 60px;
  }
  #worksPostPage .others .worksList {
    width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #worksPostPage .others .worksList li {
    width: calc((100% - 64px) / 3);
    margin-bottom: 50px;
  }
  #worksPostPage .others .worksList li .imgWrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 352/235;
    width: 100%;
  }
  #worksPostPage .others .worksList li .imgWrap a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #worksPostPage .others .worksList li .imgWrap a img {
    transition: all 0.3s ease;
  }
  #worksPostPage .others .worksList li .textWrap {
    margin-top: 15px;
    width: 100%;
    transition: all 0.3s ease;
  }
  #worksPostPage .others .worksList li .textWrap .data {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  #worksPostPage .others .worksList li .textWrap .data li {
    margin-bottom: 0;
  }
  #worksPostPage .others .worksList li .textWrap .data .name {
    font-size: 13px;
    color: #937B5E;
    font-weight: 600;
    width: fit-content;
    opacity: 1 !important;
  }
  #worksPostPage .others .worksList li .textWrap .data .category {
    font-size: 13px;
    color: #6C6C6C;
    font-weight: 500;
    width: fit-content;
    text-align: right;
    margin: 0;
    opacity: 1 !important;
  }
  #worksPostPage .others .worksList li .textWrap h5 {
    font-size: 16px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.05em;
    font-weight: 900;
    margin-top: 15px;
    border-top: 1px solid #BEC1C4;
    padding-top: 15px;
  }
  #worksPostPage .others .worksList li:hover {
    cursor: pointer;
  }
  #worksPostPage .others .worksList li:hover .imgWrap img {
    transform: scale(1.05);
    transition: all 0.3s ease;
  }
  #worksPostPage .others .worksList li:hover .textWrap {
    opacity: 0.5;
  }
  /*記事スタイル--------------------------------
      見出し
  --------------------------------*/
  .entry-content {
    /* --------------------------------
       見出し
    -------------------------------- */
  }
  .entry-content h1,
  .entry-content h2,
  .entry-content h3,
  .entry-content h4,
  .entry-content h5,
  .entry-content h6 {
    font-weight: 700;
    line-height: 1.4;
    margin: 2em 0 1em;
    width: 56.25vw;
    margin-left: auto;
  }
  .entry-content h1 {
    font-size: 2rem;
  }
  .entry-content h2 {
    font-size: 1.75rem;
  }
  .entry-content h3 {
    font-size: 1.5rem;
  }
  .entry-content h4 {
    font-size: 1.3rem;
  }
  .entry-content h5 {
    font-size: 1.1rem;
  }
  .entry-content h6 {
    font-size: 1rem;
  }
  .entry-content {
    /* --------------------------------
       段落
    -------------------------------- */
  }
  .entry-content p {
    margin: 40px 0;
    width: 56.25vw;
    margin-left: auto;
    line-height: 2;
  }
  .entry-content {
    /* --------------------------------
       リンク
    -------------------------------- */
  }
  .entry-content a {
    color: #0053A5;
    text-decoration: underline;
    width: 56.25vw;
    margin-left: auto;
  }
  .entry-content a:hover {
    text-decoration: none;
  }
  .entry-content {
    /* --------------------------------
       画像
    -------------------------------- */
  }
  .entry-content img,
  .entry-content figure img {
    width: 100%;
    height: auto;
    display: block;
    margin: 1.5em auto;
  }
  .entry-content {
    /* --------------------------------
       figure & figcaption
    -------------------------------- */
  }
  .entry-content figure {
    text-align: center;
    margin: 2em 0;
    width: 56.25vw;
    margin-left: auto;
  }
  .entry-content figure figcaption {
    font-size: 0.85em;
    color: #666;
    margin-top: 0.5em;
  }
  .entry-content .img-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .entry-content .img-row figure {
    margin: 0 !important;
    width: calc((100% - 40px) / 2) !important;
  }
  .entry-content {
    /* --------------------------------
       引用
    -------------------------------- */
  }
  .entry-content blockquote {
    border-left: 4px solid #ddd;
    padding-left: 1em;
    margin: 1.5em 0;
    color: #555;
    font-style: italic;
  }
  .entry-content blockquote p:last-child {
    margin-bottom: 0;
  }
  .entry-content {
    /* --------------------------------
       リスト
    -------------------------------- */
  }
  .entry-content ul,
  .entry-content ol {
    margin: 1.5em 0 1.5em 1.5em;
    width: 56.25vw;
    margin-left: auto;
  }
  .entry-content ul li,
  .entry-content ol li {
    margin-bottom: 0.4em;
  }
  .entry-content {
    /* --------------------------------
       テーブル
    -------------------------------- */
  }
  .entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
    font-size: 0.95em;
  }
  .entry-content table th,
  .entry-content table td {
    border: 1px solid #ddd;
    padding: 10px;
  }
  .entry-content table th {
    background: #f7f7f7;
    font-weight: 700;
  }
  .entry-content {
    /* --------------------------------
       コード
    -------------------------------- */
  }
  .entry-content pre {
    background: #f5f5f5;
    padding: 1em;
    overflow: auto;
    margin: 1.5em 0;
    border-radius: 4px;
  }
  .entry-content pre code {
    background: transparent;
    padding: 0;
  }
  .entry-content code {
    font-family: Menlo, Consolas, monospace;
    background: #f0f0f0;
    padding: 2px 4px;
    border-radius: 3px;
  }
  #companyPage header {
    top: 0 !important;
  }
  #companyPage .main {
    width: calc(100vw - 160px);
    display: flex;
    margin: 240px auto 0;
    justify-content: space-between;
    align-items: center;
  }
  #companyPage .main .aboutText {
    position: absolute;
    width: 365px;
    top: 150px;
    right: 0;
  }
  #companyPage .main .mainVisual {
    width: 54.6875vw;
  }
  #companyPage .main .textWrap {
    width: 26.5625vw;
  }
  #companyPage .main .textWrap h3 {
    font-size: 30px;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.08em;
    font-weight: 300;
    margin-bottom: 20px;
  }
  #companyPage .main .textWrap p {
    font-size: 16px;
    line-height: 2.5;
    font-weight: 600;
    margin-top: 20px;
  }
  #companyPage .staff {
    padding-top: 100px;
    border-top: 1px solid #BEC1C4;
    width: calc(100vw - 160px);
    margin: 150px auto 0;
  }
  #companyPage .staff .staffList .list {
    display: flex;
    margin-top: 80px;
    align-items: flex-end;
  }
  #companyPage .staff .staffList .list img {
    width: 42.1875vw;
  }
  #companyPage .staff .staffList .list .textWrap {
    padding: 0 80px;
  }
  #companyPage .staff .staffList .list .textWrap .name {
    font-size: 25px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.05em;
    font-weight: 900;
    margin-bottom: 20px;
  }
  #companyPage .staff .staffList .list .textWrap .positon {
    font-size: 12px;
    margin-bottom: 40px;
  }
  #companyPage .staff .staffList .list .textWrap .messege {
    font-size: 14px;
    line-height: 2;
    font-weight: 600;
  }
  #companyPage .staff .staffList .reverse {
    flex-direction: row-reverse;
  }
  #companyPage .company {
    padding-top: 100px;
    border-top: 1px solid #BEC1C4;
    width: calc(100vw - 160px);
    margin: 150px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: left;
  }
  #companyPage .company .profile {
    margin-top: 28px;
    width: 56.25vw;
  }
  #companyPage .company .profile .list {
    display: flex;
    border-bottom: 1px solid #BEC1C4;
    padding-bottom: 32px;
    margin-bottom: 12px;
    margin-top: 32px;
  }
  #companyPage .company .profile .list .title {
    font-size: 14px;
    font-weight: 900;
    min-width: 120px;
  }
  #companyPage .calender {
    padding-top: 100px;
    border-top: 1px solid #BEC1C4;
    width: calc(100vw - 160px);
    margin: 150px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: left;
  }
  #companyPage .calender .calender_wrap {
    width: 56.25vw;
  }
  #companyPage .calender .calender_wrap .xo-event-calendar {
    font-family: "Erode", serif;
    margin: 0 auto;
  }
  #companyPage .calender .calender_wrap .xo-event-calendar .today {
    position: relative;
  }
  #companyPage .calender .calender_wrap .xo-event-calendar .today::after {
    content: "";
    width: 40px;
    height: 40px;
    border: 1px solid rgba(17, 17, 17, 0.3568627451);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #companyPage .calender .calender_wrap .xo-event-calendar td, #companyPage .calender .calender_wrap .xo-event-calendar th {
    background-color: transparent !important;
    border: none !important;
  }
  #companyPage .calender .calender_wrap .xo-event-calendar .month-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
  }
  #companyPage .calender .calender_wrap .xo-event-calendar .month-header button span {
    width: 10px;
    height: 10px;
  }
  #companyPage .calender .calender_wrap .xo-event-calendar .month-header .calendar-caption {
    margin: 0 40px 0px;
    flex-grow: inherit;
  }
  #companyPage .calender .calender_wrap .xo-event-calendar .calendar-caption {
    font-size: 22px;
    letter-spacing: 0.18em;
    font-weight: 400;
  }
  #companyPage .calender .calender_wrap .xo-event-calendar .xo-month {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 24px;
    table-layout: fixed;
    border: none !important;
  }
  #companyPage .calender .calender_wrap .xo-event-calendar .xo-month thead th {
    font-size: 18px;
    font-weight: 400;
    padding-bottom: 10px;
    text-align: center;
  }
  #companyPage .calender .calender_wrap .xo-event-calendar .xo-month thead th.sunday {
    color: #f26c6c;
  }
  #companyPage .calender .calender_wrap .xo-event-calendar .month-dayname .dayname td > div {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #111;
  }
  #companyPage .calender .calender_wrap .xo-event-calendar .month-dayname .dayname td > div.other-month {
    color: #919191;
  }
  #companyPage .calender .calender_wrap .xo-event-calendar .month-dayname .dayname td > div.holiday-all {
    background-color: transparent !important;
    color: #f26c6c;
  }
  #companyPage .calender .calender_wrap .xo-event-calendar .month-week {
    padding: 0;
  }
  #companyPage .calender .calender_wrap .xo-event-calendar .holiday-titles {
    margin-top: 20px;
    display: flex;
    gap: 18px;
    font-size: 12px;
    justify-content: flex-end;
    margin-right: 40px;
  }
  #companyPage .calender .calender_wrap .xo-event-calendar .holiday-titles .holiday-title {
    display: flex;
    align-items: center;
    gap: 0px;
    margin: 0;
  }
  #companyPage .calender .calender_wrap .xo-event-calendar .holiday-titles .holiday-title span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    padding: 0;
    border: none;
  }
  #companyPage .recrute {
    padding-top: 100px;
    border-top: 1px solid #BEC1C4;
    width: calc(100vw - 160px);
    margin: 150px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: left;
  }
  #companyPage .recrute .contentWrap {
    margin-top: 28px;
    width: 56.25vw;
  }
  #companyPage .recrute .contentWrap .worksThumbs {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    text-align: right;
    margin-left: auto;
    margin-top: 20px;
  }
  #companyPage .recrute .contentWrap .worksThumbs .swiper-wrapper {
    display: flex;
    justify-content: flex-end;
  }
  #companyPage .recrute .contentWrap .worksThumbs .swiper-slide {
    width: 8px;
    height: 8px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid #080807;
  }
  #companyPage .recrute .contentWrap .worksThumbs .swiper-slide.swiper-slide-thumb-active {
    background-color: #080807;
  }
  #companyPage .recrute .contentWrap .title {
    font-size: 16px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.05em;
    font-weight: 900;
    margin-bottom: 30px;
    color: #FFFFFF;
    background-color: #080807;
    display: inline-block;
    padding: 4px 10px;
    margin-top: 50px;
  }
  #companyPage .recrute .contentWrap h5 {
    font-size: 20px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.05em;
    font-weight: 900;
    margin-bottom: 20px;
  }
  #companyPage .recrute .contentWrap p {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 40px;
  }
  #companyPage .recrute .contentWrap p span {
    font-weight: 900;
  }
  #privacyPage header {
    top: 0 !important;
  }
  #privacyPage .firstview {
    width: 100vw;
    height: 500px;
    position: relative;
  }
  #privacyPage .firstview .imgWrap {
    width: 100vw;
    height: 500px;
    overflow: hidden;
    background-size: cover;
    position: sticky;
    top: 0;
  }
  #privacyPage .firstview .imgWrap .shadow {
    width: 100vw;
    height: 500px;
    background-color: rgba(0, 0, 0, 0.3);
  }
  #privacyPage .textWrap {
    width: 960px;
    margin: 120px auto 0;
    font-size: 16px;
    line-height: 2.5;
    font-weight: 400;
  }
  #privacyPage .textWrap h5 {
    font-size: 16px;
    margin-top: 56px;
    font-weight: 900;
    margin-bottom: 16px;
  }
  #privacyPage .textWrap .contact {
    text-decoration: underline;
    color: #937B5E;
  }
  #privacyPage .textWrap .contact:hover {
    opacity: 0.5;
    text-decoration: none;
  }
  .error404 {
    min-height: fit-content;
  }
  .error404 header {
    top: 0 !important;
  }
  .error404 .firstview {
    width: calc(100vw - 40px);
    margin: 140px auto 0;
  }
  .error404 .firstview .wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
  }
  .error404 .firstview .wrap .textWrap {
    margin-right: 80px;
    text-align: left;
    margin-left: 60px;
  }
  .error404 .firstview .wrap .textWrap p {
    font-size: 16px;
    line-height: 2.5;
    font-weight: 600;
    margin: 40px 0 50px;
  }
  .error404 .firstview .wrap .textWrap .button {
    margin-left: 0;
    margin-bottom: 80px;
  }
  .error404 .firstview .wrap .imgWrap {
    width: 35.15625vw;
    height: calc(100vh - 160px);
  }
  .error404 .firstview .wrap .imgWrap img {
    width: auto;
    height: 100%;
    object-fit: cover;
  }
  #voicePage header {
    top: 0 !important;
  }
  #voicePage .fv {
    width: 100vw;
    position: relative;
  }
  #voicePage .fv .worksText {
    position: absolute;
    width: 266px;
    bottom: -60px;
    right: 100px;
    z-index: 2;
  }
  #voicePage .fv .imgWrap {
    width: 100vw;
    position: relative;
  }
  #voicePage .fv .imgWrap .shadow {
    width: 100vw;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
  }
  #voicePage .lead {
    font-size: 30px;
    font-family: "Erode", serif;
    font-weight: 300;
    margin: 120px 80px 60px;
  }
  #voicePage .firstPost {
    width: calc(100vw - 160px);
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  #voicePage .firstPost .circle_line {
    width: 46.875vw;
    height: 46.875vw;
    border: 1px solid #D2CECA;
    border-radius: 50%;
    position: absolute;
    top: 90%;
    left: 60%;
    transform: scale(0);
    z-index: -1;
    transition: transform 1.5s ease;
  }
  #voicePage .firstPost .imgWrap {
    width: 51.5625vw;
  }
  #voicePage .firstPost .textWrap {
    width: 31.25vw;
    margin-left: 60px;
  }
  #voicePage .firstPost .textWrap .title {
    font-size: 20px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.05em;
    font-weight: 900;
    background-color: #080807;
    color: #FFFFFF;
    display: inline-block;
    padding: 4px 10px;
  }
  #voicePage .firstPost .textWrap p {
    font-size: 16px;
    line-height: 2;
    font-weight: 600;
    margin: 20px 0 15px;
  }
  #voicePage .firstPost .textWrap .data {
    font-size: 13px;
    color: #937B5E;
  }
  #voicePage .firstPost .textWrap .button {
    padding: 0;
    background-color: transparent;
    color: #080807;
    margin-left: auto;
    margin-right: 0;
    margin-top: 50px;
  }
  #voicePage .voiceListWrap {
    width: calc(100vw - 160px);
    margin: 100px auto 0;
  }
  #voicePage .voiceListWrap .voiceList {
    width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #voicePage .voiceListWrap .voiceList li {
    width: calc((100% - 40px) / 2);
    margin-bottom: 50px;
  }
  #voicePage .voiceListWrap .voiceList li .imgWrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 352/235;
    width: 100%;
  }
  #voicePage .voiceListWrap .voiceList li .imgWrap a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #voicePage .voiceListWrap .voiceList li .imgWrap a .title {
    font-size: 16px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.05em;
    font-weight: 900;
    background-color: #080807;
    color: #FFFFFF;
    display: inline-block;
    padding: 4px 10px;
    position: absolute;
    bottom: 1px;
    box-sizing: border-box;
    left: 0;
  }
  #voicePage .voiceListWrap .voiceList li .imgWrap a img {
    transition: all 0.3s ease;
    object-fit: cover;
  }
  #voicePage .voiceListWrap .voiceList li .textWrap {
    margin-top: 15px;
    width: 100%;
    transition: all 0.3s ease;
  }
  #voicePage .voiceListWrap .voiceList li .textWrap .data {
    font-size: 13px;
    color: #937B5E;
    font-weight: 600;
    width: fit-content;
  }
  #voicePage .voiceListWrap .voiceList li .textWrap .caption {
    font-size: 16px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.05em;
    font-weight: 900;
    margin-bottom: 15px;
  }
  #voicePage .voiceListWrap .voiceList li:hover {
    cursor: pointer;
  }
  #voicePage .voiceListWrap .voiceList li:hover .imgWrap img {
    transform: scale(1.05);
    transition: all 0.3s ease;
  }
  #voicePage .voiceListWrap .voiceList li:hover .textWrap {
    opacity: 0.5;
  }
  #voicePostPage header {
    top: 0 !important;
  }
  #voicePostPage .titleWrap {
    margin-top: 210px;
    position: relative;
    border-bottom: 1px solid #BEC1C4;
    padding-bottom: 80px;
  }
  #voicePostPage .titleWrap h5 {
    font-size: 20px;
    font-family: "Erode", serif;
    letter-spacing: 0.08em;
    font-weight: 300;
    position: absolute;
    top: 0;
    right: 80px;
  }
  #voicePostPage .titleWrap .Wrap {
    width: 100vw;
    position: relative;
    display: flex;
    justify-content: space-between;
  }
  #voicePostPage .titleWrap .Wrap .textWrap {
    width: 42.1875vw;
    padding: 0 100px 0 80px;
  }
  #voicePostPage .titleWrap .Wrap .textWrap .title {
    font-size: 20px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.05em;
    font-weight: 900;
    background-color: #080807;
    color: #FFFFFF;
    display: inline-block;
    padding: 4px 10px;
  }
  #voicePostPage .titleWrap .Wrap .textWrap .catch {
    font-size: 20px;
    font-weight: 900;
    margin-top: 40px;
  }
  #voicePostPage .titleWrap .Wrap .textWrap .data {
    font-size: 13px;
    color: #937B5E;
    margin-top: 20px;
  }
  #voicePostPage .titleWrap .Wrap .textWrap .lead {
    font-size: 16px;
    line-height: 2.5;
    font-weight: 600;
    margin-top: 40px;
  }
  #voicePostPage .titleWrap .Wrap img {
    margin-top: 80px;
    width: 57.8125vw;
  }
  #voicePostPage .post {
    width: 57.8125vw;
    margin-left: auto;
    margin-top: 80px;
    padding-right: 80px;
  }
  #voicePostPage .post p {
    font-size: 16px;
    line-height: 2;
    font-weight: 600;
    margin-top: 60px;
  }
  #voicePostPage .post .talk {
    display: flex;
    align-items: center;
    margin-top: 40px;
  }
  #voicePostPage .post .talk img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 30px;
  }
  #voicePostPage .post .talk .talkText {
    font-size: 14px;
    margin: 0;
  }
  #voicePostPage .post .talk + .talk {
    margin-top: 30px;
  }
  #voicePostPage .comment {
    width: calc(57.8125vw - 80px);
    margin-left: auto;
    margin-top: 80px;
    margin-right: 80px;
    border-top: 1px solid #BEC1C4;
    padding-top: 80px;
  }
  #voicePostPage .comment .title {
    font-size: 16px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.05em;
    font-weight: 900;
    background-color: #937B5E;
    color: #FFFFFF;
    display: inline-block;
    padding: 4px 10px;
  }
  #voicePostPage .comment .wrap {
    display: flex;
    border: 1px solid #937B5E;
    padding: 30px;
    box-sizing: border-box;
    align-items: center;
  }
  #voicePostPage .comment .wrap img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 30px;
  }
  #voicePostPage .comment .wrap p {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
    line-height: 2;
  }
  #newsPage header {
    top: 0 !important;
  }
  #newsPage .fv {
    width: 100vw;
    height: 400px;
    position: relative;
    overflow: hidden;
  }
  #newsPage .fv .imgWrap {
    width: 100%;
    height: 100%;
  }
  #newsPage .fv .imgWrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #newsPage .fv .imgWrap .shadow {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
  }
  #newsPage .newsArchive {
    width: calc(100vw - 160px);
    margin: 120px auto 150px;
  }
  #newsPage .newsArchive .categoryWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
  }
  #newsPage .newsArchive .categoryWrap h4 {
    font-size: 16px;
    font-family: "Erode", serif;
  }
  #newsPage .newsArchive .categoryWrap .category {
    display: flex;
    align-items: center;
  }
  #newsPage .newsArchive .categoryWrap .category .list {
    position: relative;
    font-size: 14px;
    padding-left: 1em;
    opacity: 0.5;
  }
  #newsPage .newsArchive .categoryWrap .category .list:hover {
    opacity: 1;
    cursor: pointer;
  }
  #newsPage .newsArchive .categoryWrap .category .list:hover:before {
    background-color: #080807;
  }
  #newsPage .newsArchive .categoryWrap .category .list:before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: transparent;
    border: 1px solid #080807;
    position: absolute;
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  #newsPage .newsArchive .categoryWrap .category .list + .list {
    margin-left: 40px;
  }
  #newsPage .newsArchive .categoryWrap .category .active {
    opacity: 1;
  }
  #newsPage .newsArchive .categoryWrap .category .active:before {
    background-color: #080807;
  }
  #newsPage .newsArchive .newsList {
    border-top: 1px solid #BEC1C4;
  }
  #newsPage .newsArchive .newsList li {
    border-bottom: 1px solid #BEC1C4;
  }
  #newsPage .newsArchive .newsList li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
  }
  #newsPage .newsArchive .newsList li a .textWrap {
    width: calc(100% - 300px);
    padding-right: 40px;
    display: flex;
    align-items: flex-start;
  }
  #newsPage .newsArchive .newsList li a .textWrap .wrap {
    margin-left: 80px;
  }
  #newsPage .newsArchive .newsList li a .textWrap .titleWrap {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
  }
  #newsPage .newsArchive .newsList li a .textWrap .titleWrap .title {
    font-size: 16px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.05em;
    font-weight: 900;
    line-height: 1.8;
    transition: opacity 0.3s ease;
  }
  #newsPage .newsArchive .newsList li a .textWrap .titleWrap .category {
    font-size: 13px;
    font-weight: 900 !important;
    color: #937B5E;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    position: relative;
    padding-left: 12px;
    margin-left: 15px;
  }
  #newsPage .newsArchive .newsList li a .textWrap .titleWrap .category:before {
    content: "";
    width: 1px;
    height: 15px;
    background-color: #937B5E;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  #newsPage .newsArchive .newsList li a .textWrap .caption {
    font-size: 14px;
    font-weight: 900;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  #newsPage .newsArchive .newsList li a .textWrap .meta {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  #newsPage .newsArchive .newsList li a .textWrap .meta .date {
    font-family: "Erode", serif;
    font-size: 16px;
    color: #6C6C6C;
    margin-right: 20px;
  }
  #newsPage .newsArchive .newsList li a .imgWrap {
    width: 240px;
    height: 160px;
    overflow: hidden;
    position: relative;
  }
  #newsPage .newsArchive .newsList li a .imgWrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  #newsPage .newsArchive .newsList li a:hover .textWrap .title {
    opacity: 0.6;
  }
  #newsPage .newsArchive .newsList li a:hover .imgWrap img {
    transform: scale(1.1);
  }
  #newsPostPage header {
    top: 0 !important;
  }
  #newsPostPage .postWrap {
    padding: 0;
  }
  #newsPostPage .postWrap .titleWrap {
    margin-top: 210px;
    position: relative;
    width: 100vw;
  }
  #newsPostPage .postWrap .titleWrap h5 {
    font-size: 20px;
    font-family: "Erode", serif;
    letter-spacing: 0.08em;
    font-weight: 300;
    position: absolute;
    top: 0;
    right: 80px;
  }
  #newsPostPage .postWrap .titleWrap .Wrap {
    position: relative;
  }
  #newsPostPage .postWrap .titleWrap .Wrap .textWrap {
    width: 42.1875vw;
    padding: 0 100px 0 80px;
  }
  #newsPostPage .postWrap .titleWrap .Wrap .textWrap .title {
    font-size: 20px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.05em;
    font-weight: 900;
    margin-top: 40px;
  }
  #newsPostPage .postWrap .titleWrap .Wrap .textWrap .meta {
    display: flex;
    align-items: center;
  }
  #newsPostPage .postWrap .titleWrap .Wrap .textWrap .meta .category {
    position: relative;
    padding-left: 12px;
    margin-left: 15px;
    color: #937B5E;
  }
  #newsPostPage .postWrap .titleWrap .Wrap .textWrap .meta .category:before {
    content: "";
    width: 1px;
    height: 15px;
    background-color: #937B5E;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  #newsPostPage .postWrap .titleWrap .Wrap .textWrap .meta .data {
    font-size: 13px;
    color: #6C6C6C;
  }
  #newsPostPage .postWrap .post {
    width: calc(100vw - 160px);
    margin: 40px auto 0;
    display: flex;
    justify-content: space-between;
  }
  #newsPostPage .postWrap .post .mainVisual {
    width: 38.28125vw;
  }
  #newsPostPage .postWrap .post .entry-content {
    width: 57.8125vw;
    margin-left: 100px;
  }
  #newsPostPage .postWrap .post .entry-content > *:first-child {
    margin-top: 0 !important;
  }
  #newsPostPage .postNav {
    width: calc(100vw - 160px);
    margin: auto;
    margin-top: 120px;
  }
  #newsPostPage .postNav .postNav-inner {
    border-top: 1px solid #BEC1C4;
    padding-top: 80px;
    display: flex;
    justify-content: space-between;
  }
  #newsPostPage .postNav .postNav-inner .postNav-prev, #newsPostPage .postNav .postNav-inner .postNav-next {
    opacity: 1;
  }
  #newsPostPage .postNav .postNav-inner .postNav-prev .disabled, #newsPostPage .postNav .postNav-inner .postNav-prev a, #newsPostPage .postNav .postNav-inner .postNav-next .disabled, #newsPostPage .postNav .postNav-inner .postNav-next a {
    display: flex;
  }
  #newsPostPage .postNav .postNav-inner .postNav-prev a, #newsPostPage .postNav .postNav-inner .postNav-next a {
    font-weight: 900;
    opacity: 1 !important;
  }
  #newsPostPage .postNav .postNav-inner .postNav-prev img {
    transform: rotate(180deg);
    margin-right: 20px;
  }
  #newsPostPage .postNav .postNav-inner .postNav-next img {
    margin-left: 20px;
  }
  #newsPostPage .postNav .postNav-inner .disabled {
    opacity: 0.5;
  }
  #newsPostPage .comment {
    width: calc(57.8125vw - 80px);
    margin-left: auto;
    margin-top: 80px;
    margin-right: 80px;
    border-top: 1px solid #BEC1C4;
    padding-top: 80px;
  }
  #newsPostPage .comment .title {
    font-size: 16px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.05em;
    font-weight: 900;
    background-color: #937B5E;
    color: #FFFFFF;
    display: inline-block;
    padding: 4px 10px;
  }
  #newsPostPage .comment .wrap {
    display: flex;
    border: 1px solid #937B5E;
    padding: 30px;
    box-sizing: border-box;
    align-items: center;
  }
  #newsPostPage .comment .wrap img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 30px;
  }
  #newsPostPage .comment .wrap p {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
    line-height: 2;
  }
  #contactPage header {
    top: 0 !important;
  }
  #contactPage .fv {
    width: 100vw;
    height: 400px;
    position: relative;
    overflow: hidden;
  }
  #contactPage .fv .imgWrap {
    width: 100%;
    height: 100%;
  }
  #contactPage .fv .imgWrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #contactPage .fv .imgWrap .shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
  }
  #contactPage .contactForm {
    width: calc(100vw - 160px);
    margin: 120px auto;
  }
  #contactPage .contactForm .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  #contactPage .contactForm .textBox {
    width: 35%;
  }
  #contactPage .contactForm .textBox .formTitle {
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    line-height: 1.5;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
  }
  #contactPage .contactForm .textBox .formDesc {
    font-size: 14px;
    line-height: 2.5;
    font-weight: 500;
    margin-bottom: 40px;
  }
  #contactPage .contactForm .textBox .area {
    margin-bottom: 40px;
  }
  #contactPage .contactForm .textBox .area strong {
    font-weight: 900;
    display: block;
    margin-bottom: 0px;
  }
  #contactPage .contactForm .textBox .faqLink {
    display: inline-block;
    border: 1px solid #080807;
    border-radius: 50px;
    padding: 10px 40px;
    font-size: 14px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    transition: all 0.3s ease;
    position: relative;
  }
  #contactPage .contactForm .textBox .faqLink img {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
  #contactPage .contactForm .textBox .faqLink:hover {
    background-color: #080807;
    color: #FFFFFF;
  }
  #contactPage .contactForm .formBox {
    width: 55%;
    position: relative;
    box-sizing: border-box;
    border-radius: 4px;
  }
  #contactPage .contactForm .formBox .calendarBtn {
    position: absolute;
    top: -60px;
    right: 0;
    background-color: #080807;
    color: #FFFFFF;
    font-size: 12px;
    padding: 8px 20px;
    display: block;
    text-align: center;
    transition: opacity 0.3s;
  }
  #contactPage .contactForm .formBox .calendarBtn:hover {
    opacity: 0.7;
  }
  #contactPage .contactForm .formBox .note {
    font-size: 12px;
    margin-bottom: 40px;
  }
  #contactPage .contactForm .formBox .note span {
    color: #c00;
  }
  #contactPage .contactForm .formBox .formItem {
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
  }
  #contactPage .contactForm .formBox .formItem label {
    display: block;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  #contactPage .contactForm .formBox .formItem label span {
    color: #c00;
  }
  #contactPage .contactForm .formBox .formItem input,
  #contactPage .contactForm .formBox .formItem select,
  #contactPage .contactForm .formBox .formItem textarea {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 16px;
    padding: 8px 0;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  #contactPage .contactForm .formBox .formItem input:focus,
  #contactPage .contactForm .formBox .formItem select:focus,
  #contactPage .contactForm .formBox .formItem textarea:focus {
    outline: none;
  }
  #contactPage .contactForm .formBox .formItem textarea {
    height: 150px;
    resize: none;
  }
  #contactPage .contactForm .formBox .privacyCheck {
    text-align: left;
    margin: 40px 0;
    font-size: 14px;
  }
  #contactPage .contactForm .formBox .privacyCheck input {
    margin-right: 8px;
  }
  #contactPage .contactForm .formBox .privacyCheck .link {
    text-decoration: underline;
    margin-left: 10px;
    color: #666;
  }
  #contactPage .contactForm .formBox .submitBtn {
    display: block;
    width: 200px;
    margin: 0 auto;
    background-color: #ccc;
    color: #FFFFFF;
    border: none;
    padding: 15px 0;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  #contactPage .contactForm .formBox .submitBtn:hover {
    background-color: #080807;
  }
  #contactPage .contactForm .formBox .c-form .c-form__field {
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
  }
  #contactPage .contactForm .formBox .c-form .c-form__field .title-contactform7 {
    display: block;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  #contactPage .contactForm .formBox .c-form .c-form__field .title-contactform7 span {
    color: #c00;
  }
  #contactPage .contactForm .formBox .c-form .c-form__field .wpcf7-form-control {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 16px;
    padding: 0 0 10px;
    border-radius: 0;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  #contactPage .contactForm .formBox .c-form .c-form__field .wpcf7-form-control::placeholder {
    color: #888888;
  }
  #contactPage .contactForm .formBox .c-form .c-form__field .wpcf7-form-control:focus {
    outline: none;
  }
  #contactPage .contactForm .formBox .c-form .c-form__field .wpcf7-textarea {
    height: 120px;
    resize: none;
  }
  #contactPage .contactForm .formBox .c-form .wpcf7-acceptance {
    text-align: center;
    margin: 40px 0;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
  }
  #contactPage .contactForm .formBox .c-form .wpcf7-acceptance label {
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  #contactPage .contactForm .formBox .c-form .wpcf7-acceptance label input {
    margin-right: 8px;
    margin-top: 7px;
    transform: scale(1.2);
  }
  #contactPage .contactForm .formBox .c-form .wpcf7-acceptance .wpcf7-list-item-label a {
    text-decoration: underline;
    color: #937B5E;
  }
  #contactPage .contactForm .formBox input.wpcf7-submit.button {
    display: block;
    width: 200px;
    margin: 0 auto;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1;
    background-color: #080807;
    color: #FFFFFF;
    cursor: pointer;
  }
  #contactPage .contactForm .formBox input.wpcf7-submit.button:hover {
    background-color: #937B5E;
  }
  #contactPage .contactForm .formBox .wpcf7-response-output {
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    border: none !important;
  }
  #contactPage .faq {
    position: relative;
    padding-bottom: 150px;
    width: calc(100vw - 160px);
    margin: 0 auto;
  }
  #contactPage .faq .faqText {
    position: absolute;
    top: -50px;
    left: 40%;
    width: 196px;
    transform: translateX(-50%);
    font-size: 120px;
    font-family: "Erode", serif;
    color: rgba(0, 0, 0, 0.05);
    z-index: -1;
    pointer-events: none;
  }
  #contactPage .faq .title {
    text-align: center;
    font-size: 24px;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 80px;
  }
  #contactPage .faq .container {
    display: flex;
    justify-content: space-between;
  }
  #contactPage .faq .categoryList {
    width: 200px;
  }
  #contactPage .faq .categoryList .label {
    font-size: 12px;
    font-family: "Erode", serif;
    margin-bottom: 20px;
    font-weight: bold;
  }
  #contactPage .faq .categoryList ul li {
    font-size: 14px;
    margin-bottom: 15px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
    list-style: none;
  }
  #contactPage .faq .categoryList ul li::before {
    content: "▶";
    font-size: 10px;
    margin-right: 8px;
    display: inline-block;
  }
  #contactPage .faq .categoryList ul li.active, #contactPage .faq .categoryList ul li:hover {
    color: #080807;
    font-weight: bold;
  }
  #contactPage .faq .accordionList {
    width: 56.25vw;
  }
  #contactPage .faq .accordionList .item {
    border-bottom: 1px solid #ddd;
  }
  #contactPage .faq .accordionList .item .question {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
  }
  #contactPage .faq .accordionList .item .question p {
    width: 90%;
    line-height: 1.6;
  }
  #contactPage .faq .accordionList .item .question .icon {
    width: 15px;
    height: 15px;
    position: relative;
  }
  #contactPage .faq .accordionList .item .question .icon::before, #contactPage .faq .accordionList .item .question .icon::after {
    content: "";
    position: absolute;
    background-color: #080807;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #contactPage .faq .accordionList .item .question .icon::before {
    width: 100%;
    height: 1px;
  }
  #contactPage .faq .accordionList .item .question .icon::after {
    width: 1px;
    height: 100%;
    transition: transform 0.3s;
  }
  #contactPage .faq .accordionList .item .question.is-open .icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  #contactPage .faq .accordionList .item .answer {
    display: none;
    padding: 0 0 30px;
    font-size: 14px;
    line-height: 2;
    color: #666;
  }
  #contactPage .telContact {
    background-color: #EBECED;
    padding: 80px 0;
    border-top: 1px solid #BEC1C4;
    width: calc(100vw - 160px);
    margin: 130px auto 0;
    border-bottom: 1px solid #BEC1C4;
  }
  #contactPage .telContact .container {
    width: calc(100vw - 160px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  #contactPage .telContact .titleWrap h4 {
    font-size: 28px;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
  }
  #contactPage .telContact .infoWrap {
    text-align: right;
  }
  #contactPage .telContact .infoWrap .desc {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: bold;
  }
  #contactPage .telContact .infoWrap .telLink {
    display: block;
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 25px;
    pointer-events: none;
  }
  #contactPage .telContact .infoWrap .hours {
    font-size: 14px;
    font-weight: bold;
  }
}/*# sourceMappingURL=style.css.map */