/* =======================================
Brake Point
======================================= */
/* =======================================
Functions
======================================= */
/* =======================================
Brake Point
======================================= */
/* =======================================
Functions
======================================= */
/* =======================================
Variables
======================================= */
/* =============================
base
============================= */
* {
  box-sizing: border-box;
}

html {
  opacity: 0;
  transition: opacity 0.6s;
}
html.wf-active {
  opacity: 1;
}

body {
  color: #2E2E2E;
  font-family: "fot-cezanne-pron", sans-serif;
  line-height: 1.3;
}

a {
  color: inherit;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

img {
  width: 100%;
}

button {
  background: transparent;
  border: none;
  padding: 0;
}

/* =============================
common
============================= */
.inner {
  width: calc(100% - 32px);
  max-width: 1086px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    margin-left: initial;
    margin-right: initial;
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
  }
}

.section_ttl {
  font-size: 3.875rem;
}
@media screen and (max-width: 767px) {
  .section_ttl {
    font-size: 3.125rem;
  }
}
.section_ttl__en {
  display: block;
  letter-spacing: 0.05em;
  -webkit-text-stroke: 2px currentColor;
}
.section_ttl__jp {
  display: block;
  font-size: 1rem;
  margin-top: 1.5625rem;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 767px) {
  .section_ttl__jp {
    font-size: 0.875rem;
    margin-top: 1.25rem;
  }
}

.btn {
  background: rgba(150, 149, 148, 0.5);
  color: #FFF;
  text-align: center;
  padding: 24px 32px 22px;
  border-radius: 30px;
  display: inline-block;
  border: 0.8px solid #FFF;
  position: relative;
  letter-spacing: 0.02em;
  transition: background-color 0.3s;
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translate(0, -50%);
  background-image: url("../images/common/link_arrow_wh.svg");

  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 13px;
}
.btn:hover {
  background: #2E2E2E;
}
.txt_red {
  color: #FF001D;
}

.bg_white_alpha {
  background: rgba(255, 255, 255, 0.9);
}
.bg_white_alpha__inner {
  width: calc(100% - 32px);
  max-width: 1086px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .bg_white_alpha__inner {
    margin-left: 30px;
    margin-right: 30px;
    padding-left: initial;
    padding-right: initial;
    width: auto;
  }
}

.sm\:hidden {
  display: revert;
}
@media screen and (max-width: 767px) {
  .sm\:hidden {
    display: none;
  }
}

.md\:hidden {
  display: none;
}
@media screen and (max-width: 767px) {
  .md\:hidden {
    display: revert;
  }
}

/* =============================
header
============================= */
.headerBlur {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 94px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 400;
  transition: all 0.6s;
}
@media screen and (max-width: 767px) {
  .headerBlur {
    height: 62px;
  }
}

.headerBlend {
  background: #CCCBC8;
  mix-blend-mode: multiply;
  backdrop-filter: brightness(1.7);
  -webkit-backdrop-filter: brightness(1.7);
  position: fixed;
  z-index: 300;
  top: 0;
  left: 0;
  width: 100%;
  height: 94px;
  transition: all 0.6s;
}
@media screen and (max-width: 767px) {
  .headerBlend {
    height: 62px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
}
.header_inner {
  padding: 25px 37px 27px;
}
@media screen and (max-width: 767px) {
  .header_inner {
    padding: 10px 18px;
  }
}
.header_nav {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 0 140px;
}
@media screen and (max-width: 767px) {
  .header_nav {
    justify-content: space-between;
  }
}
.header_nav_list {
  display: flex;
  gap: 0 84px;
}
@media screen and (max-width: 767px) {
  .header_nav_list {
    display: none;
  }
}
.header_nav_item a {
  position: relative;
  transition: color 0.6s;
}
.header_nav_item a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%, 0) scale(0, 1);
  transform-origin: center;
  background: #2E2E2E;
  width: 100%;
  height: 1px;
  transition: transform 0.6s;
}
.header_nav_item:hover a {
  color: #2E2E2E;
}
.header_nav_item:hover a::before {
  transform: translate(-50%, 0) scale(1, 1);
}
.header_toggleBtn line {
  transform-origin: center;
  transition: transform 0.6s;
}
.header_toggleBtn_txt {
  transition: opacity 0.6s;
}
.header.is_open .header_toggleBtn_topLine {
  transform: translateY(10px) rotate(35deg);
}
.header.is_open .header_toggleBtn_bottomLine {
  transform: translateY(-10px) rotate(-35deg);
}
.header.is_open .header_toggleBtn_txt {
  opacity: 0;
}
.header.is_open .toggleMenu {
  display: block;
  visibility: visible;
  z-index: 100;
  pointer-events: auto;
}
.header.is_open .toggleMenu_nav_item {
  opacity: 1;
  transform: translateY(0);
}

/* =============================
toggleMenu
============================= */
.toggleMenu {
  display: none;
}
@media screen and (max-width: 767px) {
  .toggleMenu {
    display: none;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s;
    z-index: -10;
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  .toggleMenu_nav {
    padding: 47px 76px 64px;
  }
}
@media screen and (max-width: 767px) {
  .toggleMenu_nav_list {
    display: flex;
    flex-direction: column;
    gap: 32px 0;
    color: #FFF;
    font-size: 1.125rem;
    letter-spacing: 0.07em;
    line-height: 2.22;
  }
}
.toggleMenu_nav_item {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.6s, transform 0.6s;
  transition-delay: 0.3s;
}
.toggleMenu_nav_link {
  display: block;
  position: relative;
}
.toggleMenu_nav_link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  background-image: url("../images/common/link_arrow_wh.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 13px;
}

/* =============================
footer
============================= */
.footer {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 36px;
  }
}
.footer .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer_body {
  padding-top: 236px;
  padding-bottom: 184px;
  background-image: url("../images/common/footer_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .footer_body {
    background-image: url("../images/common/footer_bg_sm.webp");
    padding-top: 112px;
    padding-bottom: 85px;
  }
}
.footer_body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(18px) brightness(1.2);
  -webkit-backdrop-filter: blur(18px);
  z-index: -1;
}
.footer_logo {
  width: 32.965%;
  padding-left: 68px;
}
@media screen and (max-width: 767px) {
  .footer_logo {
    width: 82.768%;
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
  }
}
.footer_contact {
  width: 51.933%;
  transform: translateX(20px);
}
@media screen and (max-width: 767px) {
  .footer_contact {
    width: 100%;
    transform: translateX(0);
    margin-top: 60px;
  }
}
.footer_contact_map {
  aspect-ratio: 1/0.45;
}
.footer_contact_map iframe {
  width: 100%;
  height: 100%;
}
.footer_contact_body {
  margin-top: 27px;
  color: #FFF;
  display: flex;
  gap: 0 26px;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .footer_contact_body {
    gap: 0 25px;
  }
}
.footer_contact_info {
  font-size: 0.9375rem;
}
.footer_contact_compName {
  word-break: auto-phrase;
}
@media screen and (max-width: 767px) {
  .footer_contact_compName {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .footer_contact_address {
    margin-top: 12px;
  }
}
.footer_contact_mapLink {
  text-decoration: underline;
}
.footer_copyright {
  background: #AAA7A0;
  text-align: center;
  padding: 42px 32px;
}
.footer_copyright img {
  width: 198px;
}

/* =======================================
Brake Point
======================================= */
/* =======================================
Functions
======================================= */
/* =======================================
Variables
======================================= */
/* =============================
news post
============================= */
.news {
  background: #FAFAFA;
  margin-top: 246px;
}
@media screen and (max-width: 767px) {
  .news {
    margin-top: 170px;
  }
}
.news .inner {
  padding-top: 126px;
  padding-bottom: 120px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .news .inner {
    padding-top: 76px;
    padding-bottom: 54px;
  }
}
.news_cont {
  flex: 1;
}
.news .btn {
  margin-top: 43px;
  width: 214px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .news .btn_wrap {
    width: 100%;
    text-align: center;
  }
}
.news_post {
  padding: 0 36px 0 80px;
  border-top: 0.5px solid #000;
}
@media screen and (max-width: 767px) {
  .news_post {
    padding: 0;
  }
}
.news_post:last-child {
  border-bottom: 0.5px solid #000;
}
.news_post_wrap {
  display: flex;
  flex-direction: column;
  width: 75.046%;
}
@media screen and (max-width: 767px) {
  .news_post_wrap {
    width: 100%;
    margin-top: 58px;
  }
}
.news_post_wrap:has(.noPosts) {
  justify-content: center;
  align-items: center;
}
.news_post_meta {
  flex: 1;
  display: flex;
  gap: 0 14px;
  font-size: 0.875rem;
  color: #969594;
}
.news_post_link {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 32px 0 34px;
  position: relative;
  transition: transform 0.3s, opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .news_post_link {
    flex-wrap: wrap;
    padding: 22px 0;
    gap: 12px 0;
  }
}
.news_post_link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  background-image: url("../images/common/link_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 13px;
}
@media screen and (max-width: 767px) {
  .news_post_link::before {
    content: none;
  }
}
.news_post_link:hover {
  transform: translateX(10px);
  opacity: 0.6;
}
.news_post_ttl {
  letter-spacing: 0.14em;
  width: 69.484%;
  padding-right: 24px;
}
@media screen and (max-width: 767px) {
  .news_post_ttl {
    width: 100%;
    padding-right: 0;
  }
}

/* =======================================
Brake Point
======================================= */
/* =======================================
Functions
======================================= */
/* =======================================
Variables
======================================= */
/* =============================
hero
============================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .hero {
    justify-content: flex-end;
    height: 100dvh;
  }
}
.hero_movie {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero_movie_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero_movie_wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #AAA7A0;
  mix-blend-mode: multiply;
  z-index: -1;
}
.hero .inner__hero {
  width: initial;
  max-width: initial;
  margin-left: initial;
  margin-right: initial;
}
.hero_ttl {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .hero_ttl {
    padding-left: 10px;
    padding-bottom: 58px;
  }
}
.hero_logo {
  width: 358px;
}
@media screen and (max-width: 767px) {
  .hero_logo {
    width: 86.473%;
  }
}

/* =============================
intro
============================= */
.intro .inner {
  padding-top: 223px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .intro .inner {
    padding-top: 98px;
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
  }
}
.intro_ttl {
  display: inline-block;
  font-size: 4.375rem;
  letter-spacing: 0.07em;
  padding-top: 2.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .intro_ttl {
    font-size: clamp(36px, 10.8695652174vw, 45px);
    padding-top: 4.0625rem;
  }
}
.intro_ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  background-image: url("../images/top/intro_ttl_en.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 123px;
  height: 13px;
}
.intro_ttl__en {
  display: block;
  font-size: 0.2285em;
  line-height: 1;
}
.intro_ttl__jp {
  display: block;
  -webkit-text-stroke: 1.5px currentColor;
}
@media screen and (max-width: 767px) {
  .intro_ttl__jp .secondLine {
    display: block;
    padding-left: 30px;
  }
}
.intro_desc {
  margin-top: 5rem;
  font-size: 1.625rem;
  line-height: 3.0384;
  letter-spacing: 0.13em;
}
@media screen and (max-width: 767px) {
  .intro_desc {
    font-size: clamp(16px, 4.83vw, 24px);
    margin-top: 4.125rem;
    line-height: 2.6;
    letter-spacing: 0.2em;
    font-feature-settings: "palt" 1;
    transform: translateX(3px);
  }
}

/* =============================
contact
============================= */
.contact {
  padding-top: 288px;
  padding-bottom: 288px;
  background-image: url("../images/common/contact_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact {
    margin-top: 32px;
    padding-top: 242px;
    padding-bottom: 255px;
    background-image: url("../images/common/contact_bg_sm.webp");
  }
}
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #AAA7A0;
  mix-blend-mode: multiply;
}
.contact .inner {
  text-align: center;
  position: relative;
}
.contact .section_ttl {
  color: #FFF;
}
.contact .btn {
  width: 298px;
}
@media screen and (max-width: 767px) {
  .contact .btn {
    width: 242px;
  }
}
.contact .btn_wrap {
  margin-top: 74px;
}

/* =============================
bridge
============================= */
.bridge_gallery {
  position: relative;
}
.bridge_gallery_wrap {
  padding-top: 117px;
  padding-bottom: 210px;
  position: relative;
  transform: translateY(120px);
}
@media screen and (max-width: 767px) {
  .bridge_gallery_wrap {
    padding-top: 70px;
    padding-bottom: 138px;
    transform: translateY(80px);
  }
}
.bridge_gallery_wrap::before {
  content: "";
  position: absolute;
  top: 180px;
  left: 127px;
  width: 316px;
  height: 167px;
  background-image: url("../images/top/bridge_img_on01.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  opacity: 0.4;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .bridge_gallery_wrap::before {
    width: 184px;
    height: 97px;
    top: 104px;
    left: 38px;
  }
}
.bridge_gallery_firstCol {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .bridge_gallery_firstCol {
    flex-wrap: wrap;
  }
}
.bridge_gallery__01 {
  width: 34.992%;
}
@media screen and (max-width: 767px) {
  .bridge_gallery__01 {
    width: 60.144%;
  }
}
.bridge_gallery__01 .bridge_gallery_float {
  position: absolute;
  top: 0;
  right: 0;
  width: 66.108%;
  opacity: 0.4;
}
.bridge_gallery__02 {
  width: 55.636%;
  margin-top: 244px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .bridge_gallery__02 {
    width: 92.753%;
    margin-top: 45px;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .bridge_gallery__02 .bridge_gallery_img {
    aspect-ratio: 1/1.0572;
    object-fit: cover;
  }
}
.bridge_gallery__02 .bridge_gallery_float {
  position: absolute;
  bottom: 39px;
  left: 44px;
  width: 34.736%;
}
@media screen and (max-width: 767px) {
  .bridge_gallery__02 .bridge_gallery_float {
    width: 68.75%;
    bottom: 28px;
    left: 28px;
  }
}
.bridge_gallery__03 {
  width: 37.554%;
  margin-top: -180px;
}
@media screen and (max-width: 767px) {
  .bridge_gallery__03 {
    width: 72.946%;
    margin-top: 40px;
  }
}

/* =============================
our_group
============================= */
.ourGroup {
  background-image: url("../images/top/our_group_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .ourGroup {
    background-image: url("../images/top/our_group_bg_sm.webp");
  }
}
.ourGroup .inner {
  padding-top: 83px;
  padding-bottom: 125px;
}
.ourGroup .section_ttl {
  text-align: center;
  color: #FFF;
}
.ourGroup_list {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 33px;
}
@media screen and (max-width: 767px) {
  .ourGroup_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px 0;
  }
}
.ourGroup_item {
  position: relative;
}
@media screen and (max-width: 767px) {
  .ourGroup_item__integralGroup .ourGroup_logo {
    width: 82px;
  }
}
.ourGroup_item:hover .ourGroup_imgWrap::before {
  opacity: 1;
}
.ourGroup_item:hover .ourGroup_imgWrap img {
  transform: scale(1.1);
}
.ourGroup_imgWrap {
  overflow: hidden;
  aspect-ratio: 1/0.705;
  position: relative;
}
@media screen and (max-width: 767px) {
  .ourGroup_imgWrap {
    aspect-ratio: 1/0.423;
  }
}
.ourGroup_imgWrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(2px) brightness(0.8);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.4, 1);
}
.ourGroup_imgWrap img {
  object-fit: cover;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.4, 1);
}
.ourGroup_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

/* =======================================
Brake Point
======================================= */
/* =======================================
Functions
======================================= */
/* =======================================
Variables
======================================= */
@media screen and (max-width: 767px) {
  .post-type-archive-idhouse-news .fv_imgWrap img {
    height: 315px;
    object-fit: cover;
  }
}
.post-type-archive-idhouse-news .news {
  margin-top: 0;
}
.post-type-archive-idhouse-news .news .inner {
  padding-top: 172px;
  padding-bottom: 193px;
}
@media screen and (max-width: 767px) {
  .post-type-archive-idhouse-news .news .inner {
    padding-top: 75px;
    padding-bottom: 186px;
  }
}
.post-type-archive-idhouse-news .navigation {
  width: 100%;
  margin-top: 193px;
}
@media screen and (max-width: 767px) {
  .post-type-archive-idhouse-news .navigation {
    padding-left: 12px;
    padding-right: 12px;
    margin-top: 120px;
  }
}
.post-type-archive-idhouse-news .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 130px;
}
@media screen and (max-width: 767px) {
  .post-type-archive-idhouse-news .pagination {
    flex-wrap: wrap;
    gap: 38px 0;
    justify-content: space-between;
  }
}
.post-type-archive-idhouse-news ul.page-numbers {
  display: flex;
  gap: 0 10px;
}
@media screen and (max-width: 767px) {
  .post-type-archive-idhouse-news ul.page-numbers {
    width: 100%;
    order: -1;
    justify-content: center;
  }
}
.post-type-archive-idhouse-news ul.page-numbers li {
  width: 20px;
}
@media screen and (max-width: 767px) {
  .post-type-archive-idhouse-news ul.page-numbers li {
    width: 16px;
  }
}
.post-type-archive-idhouse-news ul.page-numbers .page-numbers {
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  padding-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .post-type-archive-idhouse-news ul.page-numbers .page-numbers {
    font-size: 1rem;
  }
}
.post-type-archive-idhouse-news ul.page-numbers span.current {
  border-bottom: 1px solid #000;
}

.single-idhouse-news .news {
  margin-top: 0;
}
.single-idhouse-news .news .inner {
  padding-top: 172px;
  padding-bottom: 164px;
}
@media screen and (max-width: 767px) {
  .single-idhouse-news .news .inner {
    padding-top: 75px;
    padding-bottom: 186px;
  }
}
.single-idhouse-news .news .flex {
  display: flex;
}

.news_singlePost_wrap {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  width: 75.046%;
}
@media screen and (max-width: 767px) {
  .news_singlePost_wrap {
    width: 100%;
    margin-top: 80px;
  }
}
.news_singlePost_header {
  border-bottom: 0.5px solid #000;
  padding-left: 78px;
  padding-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .news_singlePost_header {
    padding-left: 0;
    padding-bottom: 22px;
  }
}
.news_singlePost_meta {
  display: flex;
  gap: 0 14px;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  color: #969594;
}
.news_singlePost_ttl {
  font-size: 1.125rem;
  margin-top: 1.125rem;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 767px) {
  .news_singlePost_ttl {
    width: 100%;
  }
}
.news_singlePost_imgWrap {
  margin-top: 54px;
}
.news_singlePost_imgWrap img {
  height: auto;
}
.news_singlePost_body {
  margin-top: 96px;
  font-size: 1.125rem;
  line-height: 2.277;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .news_singlePost_body {
    margin-top: 70px;
    font-size: 1rem;
    line-height: 2.125;
  }
}
.news_singlePost_body img {
  max-width: 100%;
  width: auto;
}

.news_postNav_wrap {
  margin: 128px auto 0;
  display: flex;
  justify-content: space-between;
  width: 59.116%;
}
@media screen and (max-width: 767px) {
  .news_postNav_wrap {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
}
.news_postNav a {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  position: relative;
}
.news_postNav a::before {
  content: "";
  position: absolute;
  top: calc(50% + 1px);
  transform: translate(0, -50%);
  background: #4A4949;
  width: 85px;
  height: 1px;
}
@media screen and (max-width: 767px) {
  .news_postNav a::before {
    width: 44px;
  }
}
.news_postNav__prev a {
  padding-right: 93px;
}
@media screen and (max-width: 767px) {
  .news_postNav__prev a {
    padding-right: 52px;
  }
}
.news_postNav__prev a::before {
  right: 0;
}
.news_postNav__next a {
  padding-left: 93px;
}
@media screen and (max-width: 767px) {
  .news_postNav__next a {
    padding-left: 52px;
  }
}
.news_postNav__next a::before {
  left: 0;
}

/* =======================================
Brake Point
======================================= */
/* =======================================
Functions
======================================= */
/* =======================================
Variables
======================================= */
.page-child .contact {
  padding-bottom: 0;
  background-image: none;
}
@media screen and (max-width: 767px) {
  .page-child .contact {
    padding-top: 197px;
    margin-top: 0;
  }
}
.page-child .contact::before {
  content: none;
}
.page-child .bg_white_alpha {
  margin-bottom: 260px;
}
@media screen and (max-width: 767px) {
  .page-child .bg_white_alpha {
    margin-bottom: 130px;
  }
}

.contact_bg {
  position: relative;
  z-index: -1;
}
.contact_bg::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url("../images/common/contact_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .contact_bg::before {
    background-image: url("../images/common/contact_bg_sm.webp");
  }
}
.contact_bg::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #AAA7A0;
  mix-blend-mode: multiply;
}
.contact_body {
  padding-top: 127px;
  margin-top: 53px;
}
@media screen and (max-width: 767px) {
  .contact_body {
    margin-top: 70px;
    padding: 93px 28px 0;
  }
}
.contact_body_cont {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact_body_cont {
    position: relative;
    container-type: inline-size;
  }
}
.contact_body_desc {
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 2.6875;
}
@media screen and (max-width: 767px) {
  .contact_body_desc {
    text-align: left;
    font-size: 0.9375rem;
    line-height: 1.8666;
  }
}
.contact_body_link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.contact_body_link > span {
  display: inline-block;
}
.contact_body_link_wrap {
  width: 68.139%;
  margin: 60px auto 0;
  padding: 35px 32px 32px;
  background: #D3D2D0;
}
@media screen and (max-width: 767px) {
  .contact_body_link_wrap {
    width: 100%;
    padding: 30px 0 26px;
    margin: 100px 0 0;
    line-height: 1;
  }
}
.contact_body_link_telTxt {
  font-size: 1.125rem;
  letter-spacing: 0.11em;
  line-height: 2.555;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact_body_link_telTxt {
    margin-left: 18px;
  }
}
@container (max-width: 296px) {
  .contact_body_link_telTxt {
    font-size: 0.9375rem;
  }
}
.contact_body_link_telTxt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translate(-100%, -50%);
  background-image: url("../images/common/tel_icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 17px;
  height: 22px;
}
@media screen and (max-width: 767px) {
  .contact_body_link_telTxt::before {
    left: -8px;
  }
}
.contact_body_link_tel {
  font-size: 2.125rem;
  letter-spacing: 0.06em;
  margin-top: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .contact_body_link_tel {
    font-size: 1.8125rem;
    margin-top: 1rem;
  }
}
@container (max-width: 296px) {
  .contact_body_link_tel {
    font-size: 1.5rem;
  }
}
.contact_body_compName {
  margin-top: 16px;
  display: block;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .contact_body_compName {
    font-size: 0.875rem;
  }
}
.contact_body_businessHours {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .contact_body_businessHours {
    font-size: 0.625rem;
    margin-top: 0.8125rem;
  }
}

.form {
  color: #4A4949;
}
.form .inner {
  padding-top: 90px;
  padding-bottom: 175px;
}
@media screen and (max-width: 767px) {
  .form .inner {
    padding: 50px 14px 100px;
  }
}
.form_header {
  width: fit-content;
  margin: 0 auto;
  padding-top: 90px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .form_header {
    padding-top: 64px;
    width: 100%;
  }
}
.form_header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background: #000;
  width: calc(100% + 226px);
  height: 0.5px;
}
@media screen and (max-width: 767px) {
  .form_header::before {
    width: 100%;
  }
}
.form_header_ttl {
  display: inline-block;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  padding-left: 36px;
  position: relative;
}
.form_header_ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
  background-image: url("../images/common/mail_icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 21px;
  height: 15px;
}
.form_header_notes {
  text-align: left;
  margin-top: 56px;
  padding: 30px 17px 30px 30px;
  border: 1px solid #AAA7A0;
  font-size: 0.875rem;
  letter-spacing: 0.07em;
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}
@media screen and (max-width: 767px) {
  .form_header_notes {
    background: #F5F7FA;
    border: none;
    width: 100%;
    margin-top: 36px;
    padding: 23px 11px 27px 19px;
    font-size: 0.75rem;
  }
}
.form_body {
  width: 58.839%;
  margin: 90px auto 0;
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .form_body {
    width: 100%;
    margin: 45px 0 0;
  }
}
.form_body_inner {
  display: flex;
  flex-direction: column;
  gap: 32px 0;
}
@media screen and (max-width: 767px) {
  .form_body_inner {
    gap: 22px 0;
  }
}
.form_body_item {
  display: flex;
}
@media screen and (max-width: 767px) {
  .form_body_item {
    flex-wrap: wrap;
    gap: 8px 0;
  }
}
.form_body_item__agree {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .form_body_item__agree {
    margin-top: 45px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .form_body_item:has(textarea) {
    margin-top: 38px;
  }
}
@media screen and (max-width: 767px) {
  .form_body_item:has(input[name=your-name]) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .form_body_item:has(.form_body_input_address) {
    margin-top: 10px;
  }
}
.form_body_label {
  flex: 1;
  padding-top: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
  .form_body_label {
    font-size: 0.875rem;
    padding-top: 0;
  }
}
.form_body_label__radio {
  padding-top: 0;
}
.form_body_label .txt_red {
  margin-left: 5px;
}
.form_body input, .form_body textarea {
  border: 0.5px solid #AAA7A0;
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .form_body input, .form_body textarea {
    font-size: 0.875rem;
  }
}
.form_body input {
  padding: 0 13px;
}
.form_body textarea {
  padding: 20px 13px;
}
.form_body input::placeholder,
.form_body textarea::placeholder {
  color: #AFAFAF;
  font-size: 0.75rem;
}
.form_body input[type=text],
.form_body input[type=email] {
  height: 40px;
}
.form_body .wpcf7-form-control-wrap {
  width: 72.656%;
}
@media screen and (max-width: 767px) {
  .form_body .wpcf7-form-control-wrap {
    width: 100%;
  }
}
.form_body_input {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .form_body_input {
    width: 100%;
  }
}
.form_body_radio {
  margin-left: 0;
  margin-right: 6px;
}
.form_body_input_group {
  width: 72.656%;
}
@media screen and (max-width: 767px) {
  .form_body_input_group {
    width: 100%;
    margin-top: 8px;
  }
}
.form_body_input_group .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
}
.form_body_input_group .wpcf7-list-item {
  margin: 0;
}
.form_body_input_group .form_body_input {
  width: 100%;
}
.form_body_input_address {
  display: flex;
  flex-direction: column;
  gap: 18px 0;
  width: 72.656%;
}
@media screen and (max-width: 767px) {
  .form_body_input_address {
    width: 100%;
  }
}
.form_body_input_address .wpcf7-form-control-wrap {
  width: 100%;
}
.form_body_input_address .form_body_input {
  width: 100%;
}
.form_body_input_address .form_body_input__zip {
  width: 164px;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .form_body_input_address .form_body_input__zip {
    width: 185px;
  }
}
.form_body_privacyPolicy {
  border: 0.5px solid #AAA7A0;
  height: 168px;
  margin-top: 90px;
  padding: 18px 25px;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  font-size: 0.8125rem;
  letter-spacing: 0;
  line-height: 1.538;
  color: #000;
}
@media screen and (max-width: 767px) {
  .form_body_privacyPolicy {
    margin-top: 64px;
    padding: 22px 23px;
    font-size: 0.75rem;
    line-height: 1.666;
  }
}
.form_body .wpcf7-form-control-wrap.agree {
  width: 100%;
  text-align: center;
}
.form_body .btn {
  width: 100%;
  padding: 12px;
  background: #2E2E2E;
}
.form_body .btn:hover {
  background: rgba(150, 149, 148, 0.5);
}
.form_body .btn_wrap {
  margin-top: 60px;
}

.contactComp {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(100vh - 105px);
}
.contactComp_ttl {
  font-size: 5.1875rem;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contactComp_ttl {
    font-size: 3.125rem;
  }
}
.contactComp_subTtl {
  font-size: 1.125rem;
  text-align: center;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .contactComp_subTtl {
    font-size: 0.9375rem;
  }
}
.contactComp_desc {
  margin-top: 80px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .contactComp_desc {
    text-align: left;
  }
}
.contactComp_desc_note {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.contactComp .btn {
  width: 300px;
}
@media screen and (max-width: 767px) {
  .contactComp .btn {
    width: 80%;
  }
}
.contactComp .btn_wrap {
  text-align: center;
  margin-top: 60px;
}

/*# sourceMappingURL=style.css.map */
