@charset "UTF-8";
/*------@import------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css");
/*------------------------------------------------------
Reset
------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, font, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

:focus {
  outline: 0;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
table th, table td {
  font-size: calc(1.6rem + (1vw - 1.92rem) * 0.1294);
}

a img {
  border: 0;
  backface-visibility: hidden;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

figure {
  margin: 0;
}
figure img {
  padding: 0 !important;
  border: 0 !important;
}

picture {
  display: block;
  max-height: 100%;
}

/*------------------------------------------------------
Cancellation
------------------------------------------------------*/
html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  color: #333;
  font-size: min(1.6rem + (1vw - 19.2px) * 0.1294, 1.6rem);
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  letter-spacing: 0.04em;
  background: #fff;
  overflow-x: hidden;
}

main {
  padding-top: 80px;
}
@media screen and (max-width: 1200px) {
  main {
    padding-top: 60px;
  }
}

* {
  box-sizing: border-box;
}

.inner {
  width: min(1100px, 90%);
  margin: auto;
}
@media screen and (max-width: 576px) {
  .inner {
    width: min(335px, 90%);
  }
}
.inner--page section:not(:first-of-type) {
  margin-top: clamp(60px, 60px + 4.69vw, 110px);
}

.content {
  padding: min(100px + (1vw - 19.2px) * 3.2362, 100px) 0 min(180px + (1vw - 19.2px) * 3.8835, 180px);
}

* p.txt {
  line-height: 1.7;
  font-size: calc(1.6rem + (1vw - 1.92rem) * 0.1294);
}

p {
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 14px;
    letter-spacing: 0.01em;
  }
}

/*------------------------------------------------------------
アニメーション
------------------------------------------------------------*/
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/*------------------------------------------------------------
リンク設定
------------------------------------------------------------*/
a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 100%;
  color: #333;
  transition: all 0.3s;
}
a:hover, a:active {
  outline: none;
  opacity: 0.6;
}

/*------------------------------------------------------------
画像
------------------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
img.aligncenter {
  display: block;
  margin: 0 auto;
}

a img {
  transition: 0.3s;
}
a:hover img {
  opacity: 0.5;
  filter: alpha(opacity=80);
  -ms-filter: "alpha( opacity=80 )";
}

/*------------------------------------------------------------
ヘッダー
------------------------------------------------------------*/
.header {
  width: 100%;
  background-color: #00275c;
  z-index: 100;
  top: 0;
  height: 80px;
  padding: 0 20px;
  font-family: "Noto Sans JP", sans-serif;
  position: fixed;
}
@media screen and (max-width: 1200px) {
  .header {
    padding: 0 0 0 10px;
    height: 60px;
  }
}
.header__nav {
  flex: auto;
}
@media screen and (max-width: 1200px) {
  .header__nav {
    flex: none;
  }
}
@media screen and (max-width: 1200px) {
  .header__navMenu {
    z-index: 110;
    position: fixed;
    top: 60px;
    right: 0;
    width: 100%;
    max-width: 400px;
    transition: all 0.5s;
    background-color: #00275c;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    height: 0;
    padding: 20px 20px 60px;
  }
  .header__navMenu--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    height: calc(100% - 60px);
    overflow-y: scroll;
  }
}
@media screen and (max-width: 768px) {
  .header__navMenu {
    max-width: unset;
  }
}
.header__navButtonArea {
  display: none;
}
@media screen and (max-width: 1200px) {
  .header__navButtonArea {
    display: block;
    background-color: #fff;
    padding: 8px 14px 22px;
    position: relative;
    max-width: 60px;
    max-height: 60px;
  }
}
.header__navButtonText {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14%;
}
.header__navButtonText--open .header__navButtonTextContent--default {
  opacity: 0;
  height: 0;
  width: 0;
  visibility: hidden;
}
.header__navButtonText--open .header__navButtonTextContent--close {
  opacity: 1;
  width: auto;
  height: auto;
  visibility: visible;
}
@media screen and (max-width: 1200px) {
  .header__navButtonTextContent {
    font-size: 11px;
    line-height: 1;
    display: block;
    color: #00275c;
    font-family: "Noto Serif JP", serif;
    font-weight: 900;
    transition: opacity 0.5s;
  }
  .header__navButtonTextContent--close {
    opacity: 0;
    height: 0;
    width: 0;
    visibility: hidden;
  }
}
@media screen and (max-width: 1200px) {
  .header__navButton {
    display: block;
    width: 32px;
    height: 30px;
    cursor: pointer;
    position: relative;
    background-color: transparent;
    border: none;
  }
  .header__navButton span, .header__navButton::before, .header__navButton::after {
    display: inline-block;
    position: absolute;
    content: "";
    left: 50%;
    width: 100%;
    height: 3px;
    background-color: #00275c;
    transition: all 0.5s;
    transform: translate(-50%, -50%);
  }
  .header__navButton::before {
    top: 20%;
  }
  .header__navButton::after {
    top: 80%;
  }
  .header__navButton--open span {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  .header__navButton--open::before {
    transform: translate(-50%, -50%) rotate(135deg);
    top: 50%;
  }
  .header__navButton--open::after {
    transform: translate(-50%, -50%) rotate(-135deg);
    top: 50%;
  }
}
@media screen and (max-width: 1200px) {
  .header__contact {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 60px;
  }
}
.header__contact a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  background: linear-gradient(#AF912D, #9B7D19);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-width: 160px;
  min-height: 130px;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .header__contact a {
    padding: 20px 18px;
    font-size: 14px;
    min-width: 60px;
    min-height: 60px;
  }
}
.header__contact a::before {
  content: "";
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  background-color: #fff;
  opacity: 0.05;
  position: absolute;
}
.header__contactIcon {
  max-width: 30px;
}
@media screen and (max-width: 1200px) {
  .header__contactIcon {
    max-width: 24px;
  }
}
@media screen and (max-width: 1200px) {
  .header__contactText {
    display: none;
  }
}
.header__inner {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 1200px) {
  .header__inner {
    display: block;
  }
}
.header__wrapper {
  display: flex;
  align-items: center;
  flex: auto;
  gap: 50px;
  height: 80px;
}
@media screen and (max-width: 1200px) {
  .header__wrapper {
    height: inherit;
    justify-content: space-between;
  }
}
.header__logo {
  flex: 0 1 195px;
}
@media screen and (max-width: 1200px) {
  .header__logo {
    flex: 0 1 125px;
  }
}

.navList {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
@media screen and (max-width: 1200px) {
  .navList {
    flex-direction: column;
    align-items: flex-start;
    gap: unset;
    margin-bottom: 40px;
  }
}
.navList__item {
  position: relative;
}
.navList__item::before {
  content: "";
  display: inline-block;
  width: 80%;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #C6B064;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.navList__item:hover .navList__subMenu {
  opacity: 1;
  visibility: visible;
}
.navList__item:hover::before {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 1200px) {
  .navList__item {
    width: 100%;
    border-bottom: 1px solid rgba(214, 214, 214, 0.2);
    line-height: 1.2;
  }
  .navList__item:has(.navList__subMenu) .navList__text {
    padding: 20px 0 10px;
  }
  .navList__item::before {
    content: unset;
  }
}
.navList__text {
  position: relative;
  color: #fff;
  font-size: 16px;
  padding: 25px 20px;
  display: block;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .navList__text {
    font-size: 20px;
    display: block;
    padding: 20px 0;
  }
  .navList__text:not(p):before, .navList__text:not(p):after {
    content: "";
    display: inline-block;
    position: absolute;
    right: 0;
    top: calc(50% - 4px);
    width: 2px;
    height: 10px;
    background-color: #fff;
    transform-origin: calc(100% - 6px) 50%;
  }
  .navList__text:not(p):before {
    transform: rotate(45deg);
    bottom: unset;
    left: unset;
    opacity: 1;
  }
  .navList__text:not(p):after {
    transform: rotate(-45deg);
  }
}
.navList__subMenu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 0px 10px 0px rgba(51, 51, 51, 0.3);
}
@media screen and (max-width: 1200px) {
  .navList__subMenu {
    opacity: 1;
    visibility: visible;
    position: inherit;
    margin: 0 20px;
    left: inherit;
    transform: inherit;
  }
}
.navList__subItem:last-of-type .navList__subText::before {
  content: unset;
}
@media screen and (max-width: 1200px) {
  .navList__subItem:last-of-type .navList__subText::before {
    content: "";
  }
}
@media screen and (max-width: 1200px) {
  .navList__subItem:last-of-type .navList__subText {
    padding: 10px 0 20px 22px;
  }
}
.navList__subText {
  text-align: center;
  display: block;
  width: 160px;
  padding: 10px;
  background-color: #fff;
  font-size: 14px;
  line-height: 1.3;
  position: relative;
}
.navList__subText:hover {
  background-color: #E6EAEF;
  opacity: 1;
}
@media screen and (max-width: 1200px) {
  .navList__subText:hover {
    background-color: inherit;
  }
}
.navList__subText::before {
  content: "";
  display: inline-block;
  width: 80%;
  height: 1px;
  background-color: #ADADAD;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1200px) {
  .navList__subText {
    width: unset;
    background-color: unset;
    color: #CDD5DE;
    font-size: 16px;
    text-align: inherit;
    padding: 10px 0 10px 22px;
  }
  .navList__subText::before {
    width: 12px;
    background-color: #CDD5DE;
    bottom: unset;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.navContact {
  text-align: center;
  margin-bottom: 20px;
}
.navContact__link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  background: linear-gradient(#AF912D, #9B7D19);
  padding: 20px 54px;
  font-size: 20px;
  line-height: 1;
  font-family: "Noto Serif JP", serif;
  width: 88%;
  position: relative;
}
.navContact__link:before, .navContact__link:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 20px;
  top: calc(50% - 4px);
  width: 2px;
  height: 10px;
  background-color: #fff;
  transform-origin: calc(100% - 6px) 50%;
}
.navContact__link:before {
  transform: rotate(45deg);
}
.navContact__link:after {
  transform: rotate(-45deg);
}

.navTel {
  text-align: center;
}
.navTel__link {
  display: inline-block;
  color: #333;
  background-color: #fff;
  padding: 18px;
  font-size: 12px;
  line-height: 1;
  width: 88%;
}
.navTel__number {
  font-size: 30px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-family: "Noto Serif JP", serif;
}
.navTel__note {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
}
.navTel .fa-phone {
  font-size: 20px;
}

/*------------------------------------------------------------
フッター
------------------------------------------------------------*/
.footer_cta {
  padding: 7rem 0 8rem;
  background: linear-gradient(180deg, rgba(4, 43, 92, 0.23), rgba(0, 18, 30, 0.6509803922)), url(/wp-content/themes/original/asset/images/bg_form.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media screen and (max-width: 768px) {
  .footer_cta {
    padding: 6rem 0;
    background-attachment: unset;
  }
}
.footer_cta .inner {
  width: min(110rem, 90%);
  margin: 0 auto;
  border-radius: 0;
}
.footer_cta .inner h2 {
  text-align: center;
  font-size: min(3.2rem + (1vw - 19.2px) * 0.5178, 3.2rem);
  font-weight: bold;
  margin-bottom: 0;
  padding-bottom: 0;
  color: #fff;
  font-family: inherit;
}
.footer_cta .inner h2:after {
  content: none;
}
.footer_cta .inner p.txt {
  text-align: center;
  margin: 4rem 0 5rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer_cta .inner p.txt {
    margin: 2.5rem 0 3.5rem;
  }
}
.footer_cta .inner .flex {
  display: grid;
  grid-template-columns: 48% 48%;
  gap: 4%;
  row-gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .footer_cta .inner .flex {
    grid-template-columns: 100%;
  }
}
.footer_cta .inner .flex a.item {
  position: relative;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  border: 3px solid #fff;
  transition: all ease 0.25s;
}
@media screen and (max-width: 768px) {
  .footer_cta .inner .flex a.item {
    font-size: 1.5rem;
  }
  .footer_cta .inner .flex a.item:first-child {
    margin-bottom: 0;
  }
}
.footer_cta .inner .flex a.item:hover {
  color: #00275c;
  background: #fff;
  opacity: 1;
}
.footer_cta .inner .flex a.item span {
  font-size: 75%;
}
.footer_cta .inner .flex a.item b {
  font-weight: 500;
}
.footer_cta .inner .flex a.item img {
  display: inline-block;
  width: 16px;
  vertical-align: middle;
}
.footer_cta .inner .flex a.item.tel img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7460%) hue-rotate(225deg) brightness(104%) contrast(112%);
}

.footer {
  font-size: min(1.4rem + (1vw - 19.2px) * 0.1942, 1.4rem);
  padding: 20px 0 30px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 30px 0;
  }
}
.footer_logo {
  text-align: center;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .footer_logo {
    margin-bottom: 20px;
  }
}
.footer_logo img {
  max-width: 320px;
  max-height: min(60px + (1vw - 19.2px) * 1.2945, 60px);
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .footnav {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.footer .footnav > li {
  position: relative;
  line-height: 1.4;
  padding: 0 min(16px + (1vw - 19.2px) * 0.4531, 16px) 0 min(15px + (1vw - 19.2px) * 0.4531, 15px);
}
.footer .footnav > li::before, .footer .footnav > li::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: #333;
  top: 0;
}
.footer .footnav > li::before {
  left: 0;
}
.footer .footnav > li::after {
  right: -1px;
}
.footer .copyright {
  color: #333;
  font-size: min(1.2rem + (1vw - 19.2px) * 0.1294, 1.2rem);
  letter-spacing: 0.1rem;
  text-align: center;
}

.pageTopButton {
  display: block;
  position: fixed;
  right: 5%;
  bottom: 5%;
  z-index: 50;
}
@media screen and (max-width: 768px) {
  .pageTopButton {
    max-width: 40px;
    max-height: 40px;
  }
}

/*------------------------------------------------------------
ページ共通パーツ
------------------------------------------------------------*/
h1 {
  font-size: min(3.2rem + (1vw - 19.2px) * 0.5178, 3.2rem);
  font-weight: 600;
  letter-spacing: 0.2rem;
  text-align: center;
  text-shadow: none;
  padding: 0;
  z-index: 20;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 auto min(60px + (1vw - 19.2px) * 1.2945, 60px);
}

header#h1Header h1.title {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  margin: 0;
}

.centerTitle {
  font-size: min(2.8rem + (1vw - 19.2px) * 0.4531, 2.8rem);
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2rem;
  padding: 0;
  margin: 0 auto min(50px + (1vw - 19.2px) * 0.9709, 50px);
  font-family: "Noto Sans JP", sans-serif;
}
.centerTitle:not(:first-of-type) {
  margin-top: min(120px + (1vw - 19.2px) * 3.5599, 120px);
}
.centerTitle::after {
  content: "";
  position: relative;
  visibility: visible;
  display: block;
  width: 2.2em;
  height: 3px;
  background: #00275c;
  margin: 0.6em auto 0;
}

.underlineTitle {
  font-size: min(2.4rem + (1vw - 19.2px) * 0.4531, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.1rem;
  padding: 0 0.4em 0.4em;
  margin: 0 auto min(35px + (1vw - 19.2px) * 0.6472, 35px);
  border-bottom: 2px solid #00275c;
  font-family: "Noto Sans JP", sans-serif;
}

.hyphenTitle {
  position: relative;
  font-size: min(1.8rem + (1vw - 19.2px) * 0.1942, 1.8rem);
  font-weight: 600;
  padding: 0 0 0 1.2em;
  margin: min(30px + (1vw - 19.2px) * 0.6472, 30px) auto min(15px + (1vw - 19.2px) * 0.3236, 15px);
  font-family: "Noto Sans JP", sans-serif;
}

.hyphenTitle::before {
  content: "";
  position: absolute;
  width: 0.7em;
  height: 2px;
  background: #00275c;
  top: 0.8em;
  left: 0;
}

/*--responsive parts--------------------------------------------*/
br.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  br.pc {
    display: none;
  }
}
br.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  br.sp {
    display: block;
  }
}

.pc_none {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc_none {
    display: block;
  }
}

.sp_none {
  display: block;
}
@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

.aligncenter {
  margin: 0 auto;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .pc_center {
    text-align: center !important;
  }
}
/*--ボタン--------------------------------------------*/
.primaryButton {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 164px;
  gap: 10px;
  background-color: #042B5C;
  padding: 20px 30px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
}
.primaryButton--gold {
  background-color: #AF912D;
}
@media screen and (max-width: 768px) {
  .primaryButton {
    padding: 15px;
    min-width: 250px;
  }
}
.primaryButton span {
  position: relative;
  display: inline-block;
  width: 6px;
  height: 11px;
}
.primaryButton span::before, .primaryButton span::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 8px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 0.5px) 50%;
}
.primaryButton span::before {
  transform: rotate(45deg);
}
.primaryButton span::after {
  transform: rotate(-45deg);
}

.secondaryButton {
  font-size: 20px;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  padding: 20px;
  min-height: 100px;
  background-color: #042B5C;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  max-width: 520px;
}
@media screen and (max-width: 768px) {
  .secondaryButton {
    padding: 10px 0;
    min-height: 80px;
    font-size: 18px;
  }
}
.secondaryButton::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 1px solid #042B5C;
  position: absolute;
  top: 10px;
  left: 10px;
}
@media screen and (max-width: 768px) {
  .secondaryButton::after {
    top: 5px;
    left: 5px;
  }
}
.secondaryButton span {
  display: inline-block;
  width: 10px;
  height: 15px;
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .secondaryButton span {
    right: 16px;
  }
}
.secondaryButton span::before, .secondaryButton span::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 12px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 1px) 50%;
}
.secondaryButton span::before {
  transform: rotate(45deg);
}
.secondaryButton span::after {
  transform: rotate(-45deg);
}
.secondaryButton--external span {
  width: 21px;
  height: 18px;
}
.secondaryButton--external span::before {
  background: url(/wp-content/themes/original/asset/images/icon_external.svg) no-repeat;
  width: 100%;
  height: 100%;
  transform: translateY(-50%);
  border-radius: unset;
}
.secondaryButton--external span::after {
  content: unset;
}

/*--固定ページアイキャッチ--------------------------------------------*/
header#h1Header {
  position: relative;
  overflow: hidden;
  height: 300px;
  z-index: -1;
}
header#h1Header::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  top: 0;
  left: 0;
  z-index: 1;
}
header#h1Header::after {
  position: absolute;
  content: "";
  background: url(/wp-content/uploads/eye.jpg) no-repeat;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header#h1Header img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  filter: saturate(0.5);
}

/*--パンくずリスト--------------------------------------------*/
#breadcrumb {
  padding: 12px 0;
}
#breadcrumb ul {
  width: 98%;
  max-width: 1240px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #breadcrumb ul {
    max-width: 100%;
  }
}
#breadcrumb ul li {
  margin: 0 5px;
  font-size: 11px;
  color: #000;
}
#breadcrumb ul li:first-child {
  margin-left: 0;
  margin-left: 0;
}
#breadcrumb ul li a {
  color: #000;
}

/*--リスト--------------------------------------------*/
li {
  font-size: calc(1.6rem + (1vw - 1.92rem) * 0.1294);
  line-height: 2;
}
li:last-child {
  margin-bottom: 0;
}

/*--テーブル--------------------------------------------*/
table {
  width: 100%;
  border-top: 1px solid #ddd;
}
table th, table td {
  border-bottom: 1px solid #ddd;
  color: #333;
  padding: min(10px + (1vw - 19.2px) * 0.3236, 10px) min(15px + (1vw - 19.2px) * 0.4531, 15px);
}
table th {
  width: 25%;
  font-weight: 600;
  text-align: left;
  background-color: #F2F4F7;
}
@media screen and (max-width: 768px) {
  table.responsive th, table.responsive td {
    display: block;
    width: 100%;
  }
}

/*--質問と回答--------------------------------------------*/
summary.qa_sum {
  font-weight: bold;
  list-style: none;
  position: relative;
  padding: 30px 50px 30px 35px;
  cursor: pointer;
  color: #333;
  border-bottom: 1px dashed #ccc;
}
@media screen and (max-width: 768px) {
  summary.qa_sum {
    padding: 15px 50px 15px 30px;
  }
}
summary.qa_sum::before {
  position: absolute;
  content: "Q";
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50vw;
  line-height: 1;
  background: #00275c;
  color: #fff;
  text-align: center;
  top: 30px;
  left: 0;
}
@media screen and (max-width: 768px) {
  summary.qa_sum::before {
    width: 16px;
    height: 16px;
    line-height: 14px;
    padding: 2px;
    top: 19px;
  }
}
summary.qa_sum::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  transition: transform 0.5s;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  summary.qa_sum::after {
    right: 20px;
    font-size: 24px;
  }
}

.answer {
  position: relative;
  padding: 0px 35px 30px;
  border-bottom: 1px dashed #ccc;
}
@media screen and (max-width: 768px) {
  .answer {
    padding: 0px 30px 20px;
  }
}
.answer:before {
  position: absolute;
  content: "A";
  width: 25px;
  height: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50vw;
  line-height: 1;
  background: #c7b470;
  color: #fff;
  text-align: center;
  font-weight: normal;
  top: 0px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .answer:before {
    width: 16px;
    height: 16px;
    line-height: 16px;
    padding: 2px;
    top: 3px;
  }
}
.answer ul {
  margin: 10px 0;
}
.answer ul li {
  padding-left: 1em;
  line-height: 2;
  position: relative;
}
.answer ul li:before {
  position: absolute;
  content: "・";
  top: 0;
  left: 0;
}

details[open] summary.qa_sum {
  border-bottom: none;
}
details[open] summary.qa_sum::after {
  transform: translateY(-50%) rotate(45deg);
}
details[open] .answer {
  animation: fadein 0.5s ease;
}

/*--横並び--------------------------------------------*/
.item_flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .item_flex {
    flex-flow: column;
  }
}
.item_flex.reverse {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .item_flex.reverse {
    flex-flow: column;
  }
}
.item_flex .item_flex_left {
  width: 33%;
}
@media screen and (max-width: 768px) {
  .item_flex .item_flex_left {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .item_flex .item_flex_left img {
    width: 60%;
    display: block;
    margin: 0 auto 20px;
  }
}
.item_flex .item_flex_right {
  width: 62%;
}
@media screen and (max-width: 768px) {
  .item_flex .item_flex_right {
    width: 100%;
  }
}
.item_flex.w_100 {
  margin-top: 4rem;
  width: 100%;
  background: #f5f6f8;
  border: 2px solid #00275c;
  padding: 4rem;
}
@media screen and (max-width: 768px) {
  .item_flex.w_100 {
    margin-top: 3rem;
    padding: 2rem;
  }
}
.item_flex.w_100 > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .item_flex.w_100 > div {
    align-items: flex-start;
    flex-flow: column;
    gap: 2rem;
  }
}
.item_flex.w_100 img {
  max-width: 150px;
}

/*-------------------------------------------
TOPページ
-------------------------------------------*/
/*--MV--------------------------------------------*/
.mainvisual {
  position: relative;
}
.mainvisual__title {
  color: #fff;
  font-size: 3.33vw;
  letter-spacing: 0.04em;
  font-family: "Zen Old Mincho", serif;
  position: absolute;
  top: 20%;
  left: 13%;
  text-align: inherit;
  font-weight: 600;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .mainvisual__title {
    font-size: 36px;
    top: 16%;
    left: 50%;
    transform: translateX(-50%);
    width: -moz-max-content;
    width: max-content;
  }
}
.mainvisual__logo {
  width: 80%;
  max-width: 475px;
  display: block;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .mainvisual__logo {
    max-width: 255px;
    margin-bottom: 10px;
  }
}
.mainvisual__subtitle {
  font-size: 1.35vw;
  font-weight: 400;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .mainvisual__subtitle {
    font-size: 16px;
    gap: 20px;
    margin-top: 12px;
  }
}
.mainvisual__subtitle::before {
  content: "";
  display: inline-block;
  width: 12.4vw;
  height: 1px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .mainvisual__subtitle::before {
    width: 106px;
  }
}
.mainvisual__image {
  aspect-ratio: 192/77;
  width: 100%;
  max-height: 770px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .mainvisual__image {
    aspect-ratio: 75/11;
    min-height: 550px;
  }
}
.mainvisual__controller {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 8%;
  right: 5%;
  width: 84px;
  height: 12px;
}
@media screen and (max-width: 768px) {
  .mainvisual__controller {
    bottom: 10%;
    right: unset;
    left: calc(50% - 42px);
  }
}
.mainvisual__scroll {
  color: #fff;
  writing-mode: vertical-rl;
  position: absolute;
  right: 1%;
  bottom: 18%;
  z-index: 10;
  letter-spacing: 0.28em;
}
@media screen and (max-width: 768px) {
  .mainvisual__scroll {
    font-size: 12px;
  }
}
.mainvisual__scroll::before {
  content: "";
  height: 80px;
  width: 1px;
  position: absolute;
  bottom: -96%;
  left: 50%;
  animation: scroll 2s infinite;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .mainvisual__scroll::before {
    height: 50px;
    bottom: -88%;
  }
}

.swiper-button-next, .swiper-button-prev {
  position: static;
  height: auto;
  margin-top: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  color: #fff;
  font-size: 12px;
}

.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.swiper-pagination-bullet, .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-bullet {
  opacity: 0.6;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
  opacity: 0.6;
}

/*--トップ共通--------------------------------------------*/
.topTitle {
  font-size: 42px;
  font-family: "Noto Serif JP", serif;
  color: #042B5C;
  text-align: center;
  padding-bottom: 25px;
  position: relative;
  font-weight: 500;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .topTitle {
    font-size: 30px;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
}
.topTitle::before, .topTitle::after {
  content: "";
  width: 50px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .topTitle::before, .topTitle::after {
    width: 40px;
  }
}
.topTitle::before {
  background-color: #042B5C;
  transform: translateX(calc(-50% - 25px));
}
@media screen and (max-width: 768px) {
  .topTitle::before {
    transform: translateX(calc(-50% - 20px));
  }
}
.topTitle::after {
  background-color: #B59A40;
  transform: translateX(calc(-50% + 25px));
}
@media screen and (max-width: 768px) {
  .topTitle::after {
    transform: translateX(calc(-50% + 20px));
  }
}

/*--トップセクション--------------------------------------------*/
.topStrength {
  padding: 0 0 135px;
  margin-top: -3%;
}
@media screen and (max-width: 768px) {
  .topStrength {
    padding: 0 0 60px;
    margin-top: -8%;
  }
}
.topStrength .cardStrength {
  z-index: 10;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 49%;
  width: min(1100px, 90%);
  margin: 0 auto;
}
@media screen and (max-width: 576px) {
  .topStrength .cardStrength {
    display: block;
    width: min(335px, 90%);
  }
}
.topStrength .cardStrength__textBlock {
  background-color: #fff;
  padding: 48px 52px 16px 48px;
  grid-row: 1/2;
  grid-column: 1/2;
}
@media screen and (max-width: 768px) {
  .topStrength .cardStrength__textBlock {
    padding: 24px 20px;
  }
}
.topStrength .cardStrength__textBlock p {
  font-size: 26px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .topStrength .cardStrength__textBlock p {
    font-size: 20px;
  }
}
.topStrength .cardStrength__buttonBlock {
  grid-row: 2/3;
  grid-column: 1/2;
  padding: 16px 32px 45px 48px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .topStrength .cardStrength__buttonBlock {
    padding: 30px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .topStrength .cardStrength .primaryButton {
    margin: 0 auto;
  }
}
.topStrength .cardStrength__imageBlock {
  grid-row: 1/3;
  grid-column: 2/3;
}
.topStrength .cardStrength__imageBlock img {
  -o-object-fit: cover;
     object-fit: cover;
}

.topNews {
  padding: 95px 0 100px;
  background-color: #F5F6F8;
}
@media screen and (max-width: 768px) {
  .topNews {
    padding: 55px 0 60px;
  }
}
.topNews .card {
  box-shadow: 0px 0px 10px 0px rgba(34, 34, 34, 0.1);
}
.topNews .primaryButton {
  margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  .topNews .primaryButton {
    margin: 30px auto 0;
  }
}

.topPlan {
  padding: 98px 0 100px;
  background: url(/wp-content/themes/original/asset/images/bg_plan.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media screen and (max-width: 768px) {
  .topPlan {
    padding: 52px 0 60px;
    background: url(/wp-content/themes/original/asset/images/sp/bg_plan.jpg) no-repeat;
    background-size: cover;
  }
}
.topPlan .box {
  background-color: #fff;
  padding: 54px 60px 60px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .topPlan .box {
    padding: 30px 20px 24px;
    gap: 24px;
  }
}
.topPlan .box iframe {
  width: 800px;
  height: 100%;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 768px) {
  .topPlan .box iframe {
    width: 100%;
  }
}
.topPlan .box p {
  font-family: "Noto Sans JP", sans-serif;
}

.seminarBannerBlock {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .seminarBannerBlock {
    margin-top: 60px;
  }
}
.seminarBannerBlock .inner {
  width: min(960px, 90%);
  margin: auto;
}

.mangaBannerBlock {
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  .mangaBannerBlock {
    margin-top: 15px;
  }
}
.mangaBannerBlock .inner {
  width: min(960px, 90%);
  margin: auto;
}

.topNotice {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .topNotice {
    margin-top: 30px;
  }
}
.topNotice .box {
  border: 1px solid #8598b1;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .topNotice .box {
    padding: 20px;
  }
}
.topNotice h2 {
  color: #00275c;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 50px;
}
@media screen and (max-width: 768px) {
  .topNotice h2 {
    font-size: 18px;
    margin: 0 0 30px;
  }
}
.topNotice .noticeList {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 576px) {
  .topNotice .noticeList {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
}
.topNotice p {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #003070;
}
@media screen and (max-width: 768px) {
  .topNotice p {
    font-size: 14px;
  }
}

.bridgeBlock {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .bridgeBlock {
    margin-top: 60px;
  }
}

.lpBannerBlock {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .lpBannerBlock {
    margin-top: 50px;
  }
}
.lpBannerBlock__text {
  font-size: 32px;
  color: #042B5C;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .lpBannerBlock__text {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.topVoice {
  margin-top: 100px;
  padding: 96px 0 100px;
  background: url(/wp-content/themes/original/asset/images/bg_voice.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media screen and (max-width: 768px) {
  .topVoice {
    padding: 50px 0 60px;
    margin-top: 60px;
    background: url(/wp-content/themes/original/asset/images/sp/bg_voice.jpg) no-repeat;
    background-size: cover;
  }
}
.topVoice .voiceList {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .topVoice .voiceList {
    flex-direction: column;
    gap: 20px;
  }
}
.topVoice .voiceList__item {
  background-color: #fff;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .topVoice .voiceList__item {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 20px 20px 24px;
  }
}
.topVoice .voiceList__image {
  flex: 0 0 65px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .topVoice .voiceList__image {
    flex: 0 0 40px;
    max-width: 40px;
  }
}
.topVoice .voiceList__textContent {
  padding-top: 2px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .topVoice .voiceList__textContent {
    padding-top: 0;
  }
}
.topVoice .primaryButton {
  margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  .topVoice .primaryButton {
    margin: 30px auto 0;
  }
}

.buttonBlock {
  margin-top: 75px;
}
@media screen and (max-width: 768px) {
  .buttonBlock {
    margin-top: 60px;
  }
}
.buttonBlock .buttonBlockList {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .buttonBlock .buttonBlockList {
    flex-direction: column;
    align-items: unset;
  }
}
.buttonBlock .buttonBlockList__item {
  flex: 0 1 50%;
}
@media screen and (max-width: 768px) {
  .buttonBlock .buttonBlockList__item {
    flex: 100%;
  }
}
.buttonBlock .buttonBlockList__text {
  font-size: 18px;
  color: #042B5C;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 10px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .buttonBlock .buttonBlockList__text {
    font-size: 16px;
  }
}

.newPropertyBannerBlock {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .newPropertyBannerBlock {
    margin-top: 60px;
  }
}

.topFaq {
  margin-top: 65px;
  padding: 30px 0 110px;
}
@media screen and (max-width: 768px) {
  .topFaq {
    margin-top: 30px;
    padding: 30px 0 60px;
  }
}
.topFaq details:first-of-type .qa_sum {
  border-top: 1px dashed #ccc;
}
.topFaq .primaryButton {
  margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  .topFaq .primaryButton {
    margin: 30px auto 0;
  }
}

.reCompanyBannerBlock {
  background-color: #F5F6F8;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .reCompanyBannerBlock {
    padding: 40px 0;
  }
}
.reCompanyBannerBlock__text {
  text-align: center;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .reCompanyBannerBlock__text {
    font-size: 18px;
  }
}
.reCompanyBannerBlock__text small {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .reCompanyBannerBlock__text small {
    font-size: 14px;
  }
}
.reCompanyBannerBlock__underline {
  position: relative;
  z-index: 0;
}
.reCompanyBannerBlock__underline::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 10px;
  background-color: #C6B064;
  opacity: 0.4;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .reCompanyBannerBlock__underline::before {
    height: 8px;
  }
}

.topCta {
  position: relative;
  background: url(/wp-content/uploads/erab_contact02.jpg) no-repeat;
  background-attachment: fixed;
  padding: calc(8rem + (1vw - 1.92rem) * 1.9417) 0;
}
@media screen and (max-width: 768px) {
  .topCta {
    background-attachment: unset;
  }
}
.topCta:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.4;
  z-index: 0;
}
.topCta .inner {
  position: relative;
  z-index: 10;
}
.topCta .flex {
  display: flex;
  justify-content: center;
  gap: 4%;
}
.topCta a.item {
  padding: 2.7rem 1.5rem;
  width: 100%;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 1.8rem;
  color: #fff;
  border: 3px solid #fff;
}
.topCta a.item:hover {
  color: #00275c;
  background: #fff;
  opacity: 1;
}
.topCta h2, .topCta p {
  text-align: center;
  letter-spacing: 0.2rem;
  margin: 0 0 5rem;
  color: #ffffff;
}
.topCta h2 {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .topCta h2 {
    font-size: 28px;
  }
}
.topCta p {
  font-weight: 700;
}
.topCta img {
  display: inline-block;
  width: 16px;
}

/*-------------------------------------------
サービス案内ページ
-------------------------------------------*/
.service .serviceMenu__list {
  display: grid;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .service .serviceMenu__list {
    gap: 20px;
  }
}
.service .serviceMenu__item--first {
  grid-area: 1/1/2/3;
}
.service .serviceMenu__item--second {
  grid-area: 2/1/3/2;
}
.service .serviceMenu__item--third {
  grid-area: 2/2/3/3;
}
@media screen and (max-width: 768px) {
  .service .serviceMenu__item {
    grid-area: inherit;
  }
}

/*------------------------------------------
会社概要ページ
--------------------------------------------*/
.company .item_flex .item_flex_left {
  width: 26%;
}
@media screen and (max-width: 768px) {
  .company .item_flex .item_flex_left {
    width: 100%;
    margin-bottom: 26px;
  }
}
.company .item_flex .item_flex_left p {
  margin-top: 16px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .company .item_flex .item_flex_left p {
    margin-top: 8px;
  }
}
.company .item_flex .item_flex_left p strong {
  font-size: 20px;
  margin-left: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .company .item_flex .item_flex_left p strong {
    font-size: 18px;
  }
}
.company .item_flex .item_flex_right {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .company .item_flex .item_flex_right {
    width: 100%;
  }
}
.company .item_flex .item_flex_right .txt:not(:last-of-type) {
  margin-bottom: 1em;
}
.company .googlemap {
  padding-bottom: 45%;
  margin: min(50px + (1vw - 19.2px) * 1.6181, 50px) auto;
}
.company .googlemap:first-child {
  margin-top: 0;
}
.company .googlemap:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .company .googlemap {
    padding-bottom: 80%;
  }
}

/*-------------------------------------------
オーナー様のお声ページ
-------------------------------------------*/
.review .full_bg {
  position: relative;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .review .full_bg {
    padding: 50px 0;
  }
}
.review .full_bg::before {
  content: "";
  display: block;
  position: absolute;
  margin-left: calc((100vw - 100%) / 2 * -1);
  margin-right: calc((100vw - 100%) / 2 * -1);
  background-color: #f5f6f8;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: -1;
}

/*------------------------------------------
賃貸管理（Tokyo 0 Kanri）ページ
--------------------------------------------*/
.tokyo0kanri .introBlock {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .introBlock {
    margin-bottom: 20px;
  }
}
.tokyo0kanri .introBlock__heading {
  font-size: 24px;
  color: #042B5C;
  font-weight: 900;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .introBlock__heading {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.tokyo0kanri .textBlock {
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .textBlock {
    padding-bottom: 105px;
    margin-bottom: 30px;
  }
}
.tokyo0kanri .textBlock__text {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .textBlock__text {
    width: 100%;
  }
}
.tokyo0kanri .textBlock__text p:not(:last-of-type) {
  margin-bottom: 1em;
}
.tokyo0kanri .textBlock__image {
  width: 28%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .textBlock__image {
    width: 48%;
    top: unset;
    transform: unset;
    bottom: 0;
    height: auto;
  }
}
.tokyo0kanri .seminarBlock__text {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .seminarBlock__text {
    margin-bottom: 10px;
  }
}
.tokyo0kanri .seminarBlock__textContent {
  font-size: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #042B5C;
  position: relative;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .seminarBlock__textContent {
    font-size: 18px;
  }
}
.tokyo0kanri .seminarBlock__textContent::before, .tokyo0kanri .seminarBlock__textContent::after {
  content: "";
  width: 2px;
  height: 30px;
  display: inline-block;
  background-color: #042B5C;
  position: absolute;
  top: 50%;
  border-radius: 9999px;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .seminarBlock__textContent::before, .tokyo0kanri .seminarBlock__textContent::after {
    height: 24px;
  }
}
.tokyo0kanri .seminarBlock__textContent::before {
  transform: translateY(-50%) rotate(-20deg);
  left: -20px;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .seminarBlock__textContent::before {
    left: -16px;
  }
}
.tokyo0kanri .seminarBlock__textContent::after {
  transform: translateY(-50%) rotate(20deg);
  right: -20px;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .seminarBlock__textContent::after {
    right: -16px;
  }
}
.tokyo0kanri .seminarBlock__link {
  display: block;
  max-width: 960px;
  margin: 0 auto;
}
.tokyo0kanri .reasonList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .reasonList {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.tokyo0kanri .reasonList__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .reasonList__item {
    gap: 12px;
  }
}
.tokyo0kanri .reasonList__item:not(:last-of-type) {
  position: relative;
}
.tokyo0kanri .reasonList__item:not(:last-of-type)::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #333;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .reasonList__item:not(:last-of-type)::before {
    content: none;
  }
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .reasonList__image {
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
  }
}
.tokyo0kanri .conditionsList {
  display: flex;
  justify-content: center;
  -moz-column-gap: 80px;
       column-gap: 80px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .conditionsList {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    margin-bottom: 20px;
  }
}
.tokyo0kanri .conditionsList__item {
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .conditionsList__item {
    width: 68%;
    gap: 10px;
  }
}
.tokyo0kanri .conditionsList__text {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #042B5C;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .conditionsList__text {
    font-size: 18px;
  }
}
.tokyo0kanri .conditionsNote {
  border: 2px solid #4F6B8D;
  border-radius: 5px;
  padding: 26px;
  position: relative;
  max-width: 940px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .conditionsNote {
    padding: 64px 20px 24px;
    margin: 0 auto 20px;
  }
}
.tokyo0kanri .conditionsNote__icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12%;
  max-width: 40px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .conditionsNote__icon {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.tokyo0kanri .conditionsNote__text {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .conditionsNote__text {
    text-align: left;
    letter-spacing: -0.02em;
  }
}
.tokyo0kanri .conditionsNote__text::before {
  content: "※";
}
.tokyo0kanri .conditionsText {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #042B5C;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .conditionsText {
    font-size: 14px;
  }
}
.tokyo0kanri .conditionsText__bg {
  position: relative;
  z-index: 1;
  font-size: 28px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .conditionsText__bg {
    font-size: 15px;
  }
  .tokyo0kanri .conditionsText__bg:first-of-type {
    margin-top: 5px;
    display: inline-block;
  }
}
.tokyo0kanri .conditionsText__bg::before {
  content: "";
  display: inline-block;
  width: 102%;
  height: 10px;
  background-color: #F5F0DC;
  position: absolute;
  bottom: 0;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
}
.tokyo0kanri .strengthTableArea {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .strengthTableArea {
    overflow-x: scroll;
  }
}
.tokyo0kanri .strengthTable {
  width: 100%;
  line-height: 1;
  border-collapse: collapse;
}
.tokyo0kanri .strengthTable__heading {
  color: #fff;
  background-color: #042B5C;
  padding: 14px;
  font-size: 24px;
  font-weight: 500;
  border-bottom: 1px solid #D6D6D6;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .strengthTable__heading {
    font-size: 16px;
    min-width: 168px;
    padding: 12px 16px;
    vertical-align: middle;
  }
}
.tokyo0kanri .strengthTable__heading:not(:last-of-type) {
  border-right: 1px solid #D6D6D6;
}
.tokyo0kanri .strengthTable__heading:first-of-type {
  min-width: 140px;
  padding: 14px 8px;
}
.tokyo0kanri .strengthTable__heading sup {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .strengthTable__heading sup {
    font-size: 12px;
  }
}
.tokyo0kanri .strengthTable__heading--ourCompany {
  background-color: #CFB452;
}
.tokyo0kanri .strengthTable__heading--bg {
  background-color: #F5F6F8;
}
.tokyo0kanri .strengthTable__text {
  color: #333;
  font-size: 22px;
  padding: 14px 12px;
  text-align: left;
  font-size: 18px;
  font-weight: 400;
  border-bottom: 1px solid #D6D6D6;
  background-color: inherit;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .strengthTable__text {
    font-size: 16px;
  }
}
.tokyo0kanri .strengthTable__text:not(:last-of-type) {
  border-right: 1px solid #D6D6D6;
}
.tokyo0kanri .strengthTable__text--ourCompany {
  font-size: 22px;
  font-weight: 700;
  background-color: #F5F0DC;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .strengthTable__text--ourCompany {
    font-size: 16px;
  }
}
.tokyo0kanri .strengthTable__text--bg {
  background-color: #F5F6F8;
}
.tokyo0kanri .strengthTable__text--minus {
  font-size: 22px;
  font-weight: 700;
  color: #E23A2F;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .strengthTable__text--minus {
    font-size: 16px;
  }
}
.tokyo0kanri .strengthTable th.strengthTable__text {
  border-right: 1px solid #D6D6D6;
}
.tokyo0kanri .strengthText {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
  color: #042B5C;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .strengthText {
    font-size: 16px;
  }
}
.tokyo0kanri .strengthText strong {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .strengthText strong {
    font-size: 18px;
  }
}
.tokyo0kanri .strengthBgText {
  font-size: 28px;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: #fff;
  background-color: #4F6B8D;
  padding: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .strengthBgText {
    font-size: 20px;
  }
}
.tokyo0kanri .menuList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .tokyo0kanri .menuList {
    grid-template-columns: auto;
    gap: 20px;
    margin-top: 80px;
  }
}

/*------------------------------------------
投資物件情報ページ
--------------------------------------------*/
.inviteBlock {
  margin-top: 110px;
}
@media screen and (max-width: 768px) {
  .inviteBlock {
    margin-top: 60px;
  }
}
.inviteBlock .centerTitle {
  margin-bottom: 60px;
}
.inviteBlock .secondaryButton {
  margin: 0 auto;
}

/*------------------------------------------
提携企業募集ページ
--------------------------------------------*/
.partner .partnerBlock {
  max-width: 750px;
  margin: 60px auto 0;
}
@media screen and (max-width: 768px) {
  .partner .partnerBlock {
    margin: 20px auto 0;
  }
}
.partner .partnerBlock__image {
  margin: 0 0 24px;
}
@media screen and (max-width: 768px) {
  .partner .partnerBlock__image {
    margin: 0 0 12px;
  }
}
.partner .partnerBlock__text {
  text-align: center;
}
.partner .partnerBlock__text strong {
  font-size: 18px;
}
.partner .primaryButton {
  margin: 50px auto 0;
}

/*------------------------------------------
投稿記事一覧
--------------------------------------------*/
.cardList {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  -moz-column-gap: 55px;
       column-gap: 55px;
  row-gap: 40px;
}

.card {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  row-gap: 14px;
  padding-block: 0 20px;
}
.card :is(.card__label, .card__title, .card__link) {
  padding-inline: 20px;
}
@media screen and (max-width: 768px) {
  .card {
    row-gap: 10px;
  }
}
.card__image img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__label {
  font-size: min(1.2rem + (1vw - 19.2px) * 0.1294, 1.2rem);
  line-height: 1.2;
}
.card__label .category {
  color: #fff;
  background-color: #00275c;
  padding: 5px;
  font-weight: 700;
  display: inline-block;
}
.card__title {
  line-height: 1.6;
}
.card__title a {
  font-size: min(1.8rem + (1vw - 19.2px) * 0.1294, 1.8rem);
  letter-spacing: 0.1rem;
}
.card__link {
  text-align: end;
}
.card__link a {
  color: #00275c;
  border-bottom: 1px solid;
}

/*------------------------------------------
記事詳細
--------------------------------------------*/
.dateLabel {
  padding-top: 10px;
  margin-bottom: 30px;
  border-top: 1px solid #ccc;
}

.pagenav {
  margin: 70px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.singlePost h1.title {
  font-size: min(2.5rem + (1vw - 19.2px) * 0.4531, 2.5rem);
  font-style: normal;
  margin: 0 auto 20px;
}

/*-------------------------------------------
お問い合わせページ
-------------------------------------------*/
.wpcf7 .wpcf7-spinner {
  display: none;
}
.wpcf7 section p.ttl {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .wpcf7 section p.ttl {
    font-size: 1.6rem;
  }
}
.wpcf7 section p.ttl span {
  background: linear-gradient(transparent 50%, rgba(255, 252, 107, 0.69) 50%);
}
.wpcf7 section p.ttl b {
  color: red;
}
.wpcf7 section p.txt {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .wpcf7 section p.txt {
    text-align: left;
  }
}
.wpcf7 section .box {
  margin-top: 4rem;
}
.wpcf7 section .box .tel_btn {
  text-align: center;
  margin-top: 2rem;
}
.wpcf7 section .box .tel_btn a {
  font-size: 3.2rem;
  color: #00275c;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .wpcf7 section .box .tel_btn a {
    font-size: 2.8rem;
  }
}
.wpcf7 section table {
  border: none;
}
.wpcf7 section table tr {
  border-bottom: 1px solid #ccc;
}
.wpcf7 section table tr:first-child {
  border-top: 1px solid #ccc;
}
.wpcf7 section table th, .wpcf7 section table td {
  border: none;
  padding: 2rem 2.5rem;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .wpcf7 section table th, .wpcf7 section table td {
    padding: 1.5rem;
    font-size: 1.4rem;
  }
}
.wpcf7 section table th {
  width: 30%;
  background: #f9f9f9;
  position: relative;
}
@media screen and (max-width: 768px) {
  .wpcf7 section table th {
    width: 100%;
  }
}
.wpcf7 section table th b {
  display: block;
  font-weight: normal;
  font-size: 85%;
}
.wpcf7 section table th b a {
  text-decoration: underline;
}
.wpcf7 section table th b a:hover {
  opacity: 0.5;
}
.wpcf7 section table td img {
  display: inline-block;
}
.wpcf7 section table td span.grid {
  display: grid;
  grid-template-columns: 48% 48%;
  gap: 2%;
}
.wpcf7 section table td span.grid select {
  width: 93%;
  margin-right: 5px;
}
.wpcf7 section .must {
  color: #fff;
  font-weight: normal;
  background: rgb(255, 82, 83);
  margin-left: 0;
  font-size: 1.2rem;
  padding: 0px 10px;
  display: inline-block;
  line-height: 2;
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .wpcf7 section .must {
    margin-left: 2rem;
    font-size: 1rem;
  }
}
.wpcf7 section .must.nini {
  background: #999;
}
.wpcf7 span.wpcf7-list-item {
  margin: 0 10px 0 0;
}
@media screen and (max-width: 768px) {
  .wpcf7 span.wpcf7-list-item {
    display: block;
    margin: 5px 0;
  }
}

select.date, select.date_02 {
  width: 20%;
  margin-left: 1em;
}

span.wpcf7-form-control-wrap.checkbox-684 span.wpcf7-list-item {
  display: block;
  margin: 0;
}
span.wpcf7-checkbox label {
  display: flex;
  align-items: center;
}
span.wpcf7-checkbox label input[type=checkbox] {
  margin: 0 5px 2px 0;
}

/*同意ボタン調整*/
.agree_btn {
  margin: 3rem 0;
}
.agree_btn p {
  font-size: 90%;
}
.agree_btn p a {
  text-decoration: underline;
}

/*送信ボタン調整*/
input[type=text], input[type=tel], input[type=email], input[type=date], input[type=url], input[type=number] {
  vertical-align: middle;
  line-height: 30px;
  height: 30px;
  padding: 1px 5px;
  border: 1px solid #d4d4d7;
  border-radius: 3px;
  color: #555;
  background: #fcfcfc;
  margin-bottom: 5px;
  width: 100%;
  box-sizing: border-box;
}

select {
  vertical-align: middle;
  line-height: 30px;
  height: 30px;
  padding: 1px 5px;
  border: 1px solid #d4d4d7;
  border-radius: 3px;
  color: #555;
  background: #fcfcfc;
  margin-bottom: 5px;
  width: 100%;
  box-sizing: border-box;
}

textarea {
  vertical-align: middle;
  line-height: 30px;
  height: 30px;
  padding: 1px 5px;
  border: 1px solid #d4d4d7;
  border-radius: 3px;
  color: #555;
  background: #fcfcfc;
  margin-bottom: 5px;
  width: 100%;
  box-sizing: border-box;
  height: auto;
  line-height: 1.5;
}

.SendBtn {
  text-align: center;
}
.SendBtn input[type=submit], .SendBtn input[type=reset], .SendBtn input[type=button] {
  line-height: 1.5;
  font-size: 100%;
  color: #fff;
  padding: 15px 100px;
  border-radius: 0vw;
  background: linear-gradient(to bottom, #c3ae62 0%, #c3ae62 100%);
  border: 1px solid #c3ae62;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  transition: all ease 0.3s;
}
@media screen and (max-width: 768px) {
  .SendBtn input[type=submit], .SendBtn input[type=reset], .SendBtn input[type=button] {
    padding: 10px 70px;
    font-size: 14px;
  }
}
.SendBtn input[type=submit]:hover, .SendBtn input[type=reset]:hover, .SendBtn input[type=button]:hover {
  color: #c3ae62;
  background: transparent;
  transition: all ease 0.3s;
}

.linkBtn {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 500px;
  color: #fff;
  line-height: 1.8;
  text-align: center;
  background: #00275c;
  padding: 0.8em 1.2em;
  margin: 0 auto;
  border-radius: 5px;
  transition: all 0.3s;
}
.linkBtn::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  width: 6px;
  height: 6px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
  margin-top: -3px;
}

/*-------------------------------------------
サイトマップ
-------------------------------------------*/
#sitemap_list li {
  padding-left: 0;
  font-size: 1.8rem;
  padding-bottom: 2rem;
  border-bottom: 1px dashed #c3c3c3;
  margin-top: 2rem;
  margin-bottom: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  #sitemap_list li {
    font-size: 16px;
  }
}
#sitemap_list li a {
  position: relative;
  padding-left: 1.2em;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}
#sitemap_list li a:before {
  position: absolute;
  content: "";
  border: 5px solid transparent;
  border-left: 10px solid #8f8f8f;
  top: 50%;
  left: 0;
  transform: translatey(-50%);
}
#sitemap_list li.cat-item ul li {
  border-bottom: none !important;
  padding-left: 1em;
  padding-bottom: 0;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  #sitemap_list li.cat-item ul li {
    font-size: 14px;
  }
}
#sitemap_list li ul.children {
  margin-left: 1em;
}
#sitemap_list li ul.children li {
  padding-bottom: 0;
  border-bottom: none;
  font-size: 16px;
}

/*-------------------------------------------
プライバシーポリシー
-------------------------------------------*/
.dottedLineTitle {
  color: #333;
  background: none;
  font-size: min(1.6rem + (1vw - 1.92rem) * 0.1294, 1.6rem);
  font-weight: 600;
  text-align: left;
  padding: 0 0 10px;
  margin: min(40px + (1vw - 19.2px) * 0.6472, 40px) auto min(20px + (1vw - 19.2px) * 0.6472, 20px);
  border-width: 0 0 1px;
  border-style: dashed;
  border-color: #ddd;
  font-family: "Noto Sans JP", sans-serif;
}