@charset "UTF-8";
body {
  font-family: "游ゴシック体", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

/* コンテンツ幅を全体で統一 */
.container {
  max-width: 1366px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px; /* 余白を付けると見やすい */
  padding-right: 20px;
  box-sizing: border-box;
  position: relative;
}

html, body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

h2, h3, p, a, address {
  color: #222222;
}

.sp-br {
  display: none;
}

.pc-br {
  display: block;
}

#header {
  position: fixed;
  z-index: 10;
  width: 100%;
}
#header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(56px);
  backdrop-filter: blur(56px);
  padding: 5px clamp(12px, 6.06vw, 120px);
  margin: 0 auto;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}
#header .header-logo {
  max-width: clamp(160px, 12.55vw, 196px);
  width: auto;
  height: auto;
  align-self: center;
}
#header .header-logo .sp {
  display: none;
}
#header .header_nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 2.083vw, 40px);
  margin-left: 10%;
}
#header .header_nav .sp {
  display: none;
}
#header .header_nav .header_nav_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 1.875vw, 80px);
}
#header .header_nav .header_nav_item {
  position: relative;
}
#header .header_nav .header_nav_item.sp {
  display: none;
}
#header .header_nav .header_nav_item a {
  color: #222222;
  font-size: clamp(16px, 1.0416vw, 18px);
  font-weight: 600;
  transition: 0.4s ease;
  overflow: hidden;
  position: relative;
  padding: 12px clamp(1px, 0.26vw, 5px) 12px;
  display: inline-block;
}
#header .header_nav .header_nav_item a::before {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #E1092C;
  display: inline-block;
  position: absolute;
  bottom: 6px;
  left: 0;
  transform: translate(-101%);
  transition: 0.4s ease;
}
#header .header_nav .header_nav_item a:hover {
  color: #E1092C;
  opacity: 1;
}
#header .header_nav .header_nav_item a:hover::before {
  transform: translate(0);
}
#header .header_nav .header_nav_item .header_nav_itemchild {
  position: absolute;
  width: 267px;
  flex-shrink: 0;
  top: 50px;
  background-color: #fff;
  border-radius: 5px;
  padding: 20px 12px 15px;
  opacity: 0;
  transition: ease 0.4s;
}
#header .header_nav .header_nav_item .header_nav_itemchild a {
  padding: 0;
  font-size: clamp(16px, 1.0416vw, 18px);
  font-weight: 600;
}
#header .header_nav .header_nav_item .header_nav_itemchild a::before {
  display: none;
}
#header .header_nav .header_nav_item:hover .header_nav_itemchild {
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  #header .inner {
    box-shadow: none;
  }
}
#footercontact {
  margin: 105px auto 0;
  padding: 0 20px;
  max-width: clamp(1366px, 95vw, 1700px);
}
#footercontact > div {
  background-color: #fff;
  box-shadow: 0px 3px 8px 0px rgba(45, 85, 136, 0.6);
  width: 100%;
  border-radius: 20px;
  padding: 44px clamp(20px, 5.31vw, 102px) 50px clamp(20px, 4.06vw, 78px);
  display: flex;
  justify-content: space-around;
  gap: clamp(10px, 5vw, 60px);
}
#footercontact .footercontact_title h2 {
  font-size: clamp(60px, 4.58vw, 88px);
  font-weight: 600;
  line-height: 1;
}
#footercontact .footercontact_title p {
  font-size: 18px;
  font-weight: 500;
  margin: 1em 0 0 1em;
  line-height: 1.7;
}
#footercontact .footercontact_contents {
  margin-top: 1em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
#footercontact .footercontact_contents p {
  font-size: 18px;
  font-weight: 500;
  line-height: 2.1;
  text-align: center;
}
#footercontact .footercontact_contents a {
  max-width: 420px;
  width: 82%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 52px;
  border: 2px solid #494949;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.63;
  gap: 30px;
  margin: 60px auto 0;
}
#footercontact .footercontact_contents a img {
  width: 36px;
  height: 28px;
}
#footercontact .footercontact_contents_left a {
  color: #E1092C;
  border: 2px solid #E1092C;
}
#footercontact .footercontact_contents_left a:hover {
  color: #fff;
  background-color: #E1092C;
}
#footercontact .footercontact_contents_left a:hover img {
  content: url("../images/common/footer_contact_w.svg");
}
#footercontact .footercontact_contents_right {
  padding-left: clamp(20px, 4.427vw, 85px);
  padding-top: 67px;
  padding-bottom: 21px;
}
#footercontact .footercontact_contents_right a {
  color: #222;
}
#footercontact .footercontact_contents_right a:hover {
  color: #fff;
  background-color: #494949;
}
#footercontact .footercontact_contents_right a:hover img {
  content: url("../images/common/footer_book_w.svg");
}

#footer {
  padding-top: 170px;
  position: relative;
  margin-top: -170px;
  z-index: -1;
}
#footer .catch {
  font-size: clamp(108px, 9.79vw, 188px);
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-top: 51px;
}
#footer::before {
  content: "";
  background: #ECECEC;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
#footer .footer_wrap {
  max-width: 1661px;
  width: 100%;
  padding: 26px clamp(20px, 5.31vw, 102px) 0px clamp(20px, 4.06vw, 78px);
  margin: 0 auto;
}
#footer .footer_top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px 66px;
  flex-wrap: wrap;
}
#footer .footer_top a {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.61;
}
#footer .footer_bottom {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin-top: 50px;
}
#footer .footer_bottom .logo {
  max-width: 380px;
  width: 100%;
  margin-right: clamp(80px, 11.145vw, 214px);
}
#footer .footer_bottom .logo.sp {
  display: none;
}
#footer .footer_bottom address {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.61;
  color: #222222;
}
#footer .footer_bottom address:first-of-type {
  margin-right: clamp(20px, 5.31vw, 102px);
}
#footer .copyright {
  font-size: 14px;
  font-weight: 500;
  line-height: 2.3;
  padding-bottom: 21px;
  margin-top: 43px;
  text-align: center;
}

#pagetop {
  position: fixed;
  right: 20px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
}
#pagetop .pagetop-inner {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
#pagetop .pagetop-inner img {
  width: 42%;
  height: auto;
}
#pagetop .pagetop-inner p {
  margin-top: 2px;
  color: #E1092C;
  font-size: 12px;
  font-weight: 500;
}
#pagetop .pagetop-line {
  width: 2px;
  height: 92px;
  background-color: #E1092C;
  margin-top: 10px;
}

@media screen and (max-width: 1024px) {
  #header .inner {
    background-color: transparent;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    overflow: visible;
  }
  #header .header-logo .pc {
    display: none;
  }
  #header .header-logo .sp {
    display: block;
  }
  #header .header_nav {
    background-color: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100svh;
    transform: translateX(100%);
    transition: ease 0.4s;
    display: block;
    padding: 10px 20px;
  }
  #header .header_nav .sp {
    display: block;
    max-width: 215px;
    width: 100%;
  }
  #header .header_nav a {
    color: #222;
  }
  #header .header_nav.open {
    transform: translateX(0%);
  }
  #header .header_nav .header_nav_list {
    flex-direction: column;
    align-items: flex-start;
    width: 140px;
    margin: 80px auto 0;
    gap: 20px;
  }
  #header .header_nav .header_nav_list .header_nav_item.sp {
    display: inline-block;
  }
  #header .header_nav .header_nav_list .header_nav_item a {
    padding: 3.5px 0;
  }
  #header .header_nav .header_nav_list .header_nav_item .header_nav_itemchild {
    background-color: rgba(0, 0, 0, 0);
    position: static;
    opacity: 1;
    border: none;
    padding: 6px;
  }
  #header .header_nav .header_nav_list .header_nav_item .header_nav_itemchild li {
    display: flex;
  }
  #header .header_nav .header_nav_list .header_nav_item .header_nav_itemchild li::before {
    content: "-";
    display: block;
    font-size: 20px;
    padding-right: 10px;
  }
  #header .header_nav .header_nav_list .header_nav_item .header_nav_itemchild a {
    color: #333;
  }
  #header .header_nav .header_nav_list .header_nav_item .header_nav_itemchild a:hover {
    color: #FF002A;
  }
  #header .header_nav_bogo {
    width: 200px;
    margin: 48px auto;
  }
  #header .header_sp {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
  }
  #header .header_sp span {
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    width: 9px;
    height: 9px;
    display: inline-block;
    position: relative;
    transition: ease 0.4s;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.4), 0 0 2px rgba(255, 255, 255, 0.8) inset;
  }
  #header .header_sp span::before, #header .header_sp span::after {
    content: "";
    background-color: #fff;
    border-radius: 50%;
    width: 9px;
    height: 9px;
    display: inline-block;
    position: absolute;
    transition: ease 0.4s;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.4), 0 0 2px rgba(255, 255, 255, 0.8) inset;
  }
  #header .header_sp span::before {
    left: -12px;
  }
  #header .header_sp span::after {
    right: -12px;
  }
  #header .header_sp.open span {
    background-color: #222;
    box-shadow: none;
  }
  #header .header_sp.open span::before, #header .header_sp.open span::after {
    opacity: 0;
  }
  #header .header_sp.open span:first-of-type {
    width: 100%;
    height: 2px;
    transform: rotate(45deg);
    top: 8px;
  }
  #header .header_sp.open span:nth-of-type(3) {
    width: 100%;
    height: 2px;
    transform: rotate(-45deg);
    top: -8px;
  }
  #footercontact > div {
    padding: 54px 23px 60px;
  }
  #footer::before {
    background-position: right;
  }
  #footer::before address {
    margin-top: 71px;
  }
  #footer::before address:first-of-type {
    margin-top: 75px;
  }
}
@media screen and (max-width: 767px) {
  .sp-br {
    display: block;
  }
  .pc-br {
    display: none;
  }
  #header {
    padding: 10px 20px 0;
  }
  #header .inner {
    padding: 0;
    align-items: center;
  }
  #header .header-logo {
    max-width: 215px;
  }
  #header .header_sp {
    margin-right: 12px;
  }
  #pagetop {
    right: 13px;
  }
  #footercontact {
    margin-top: 80px;
    padding: 0 30px;
  }
  #footercontact > div {
    display: block;
    padding: 54px clamp(12px, 1.19vw, 23px) 60px;
  }
  #footercontact .footercontact_title h2 {
    text-align: center;
  }
  #footercontact .footercontact_title p {
    text-align: center;
  }
  #footercontact .footercontact_contents {
    display: block;
    margin-top: 2em;
  }
  #footercontact .footercontact_contents a {
    margin-top: 28px;
    font-size: 16px;
    gap: 10px;
  }
  #footercontact .footercontact_contents .footercontact_contents_right {
    padding: 57px 0 0 0;
  }
  #footer::before {
    background-size: cover;
    height: 90% x;
  }
  #footer .catch {
    text-align: left;
    padding: 0 20px;
    font-size: clamp(80px, 5.625vw, 108px);
  }
  #footer .footer_top {
    flex-wrap: wrap;
    gap: 32px;
  }
  #footer .footer_top > li {
    width: 50%;
  }
  #footer .footer_top > li:nth-of-type(odd) {
    width: 39%;
  }
  #footer .footer_bottom .logo {
    max-width: 343px;
  }
  #footer .footer_bottom .logo.sp {
    display: block;
  }
  #footercontact .footercontact_title h2 {
    font-size: clamp(50px, 4.58vw, 88px);
    font-weight: 600;
    line-height: 1;
    text-align: center;
  }
  #footercontact > div {
    padding: 32px clamp(20px, 1.19vw, 23px) 40px;
  }
  #footer .footer_bottom {
    margin-top: 30px;
  }
  #header .header_nav .header_nav_item .header_nav_itemchild {
    background-color: transparent;
  }
  .header_nav_bogo {
    border: none;
    font-size: 20px;
  }
}
#footercontact > div {
  gap: 60px;
}

/* contact ページ専用のフッター高さ調整 */
body.page-id-27 #footer::before {
  height: 230px !important;
  top: auto !important;
  bottom: 0 !important;
}

.page-header {
  position: relative;
  padding: 100px 20px;
  background-color: #BCBCBC; /* ← 背景色だけ */
  background-size: cover;
  background-position: center;
  text-align: left;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  margin-bottom: 100px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(236, 236, 236, 0.9);
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  display: inline-block;
  position: relative;
  transform: translateY(40px);
}

/* パンくず全体の基本スタイル */
.aioseo-breadcrumbs {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 10px;
}

.aioseo-breadcrumb-separator {
  margin: 0 10px;
}

/* ▼ タブレットで少し調整 */
@media (max-width: 1024px) {
  .aioseo-breadcrumbs {
    margin-top: 20px;
  }
}
/* ▼ スマホでは中央寄せ＆小さめ文字 */
@media (max-width: 768px) {
  .aioseo-breadcrumbs {
    margin-top: 10px;
  }
  body.page-id-6 .container {
    padding: 0;
  }
  body.page-id-31 .container {
    padding: 0;
  }
}
.header-logo {
  transition: opacity 0.3s ease;
}

/* スクロール時に全幅化 */
#header.scrolled {
  top: 0;
}

#header.scrolled .inner {
  max-width: none;
  width: 100%;
  border-radius: 0;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ml1 {
  margin-left: 1em;
}

.text-bold {
  font-weight: 600;
}

.archive p,
.single p {
  font-size: 18px;
  line-height: 1.8;
}
/*# sourceMappingURL=common.css.map */