@charset "UTF-8";
/* ========================================
リセットCSS
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
div {
  overflow-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

iframe {
  max-width: 100%;
  vertical-align: middle;
}

span {
  font: inherit;
  letter-spacing: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address {
  font: inherit;
}

input,
button,
textarea,
select {
  color: inherit;
  font: inherit;
  vertical-align: middle;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

/* ========================================
変数・関数
======================================== */
:root {
  --color-base: #000;
  --font-base: "Noto Serif JP", sans-serif;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-overpass: "Overpass", "Noto Serif JP", sans-serif;
  --z-index-fixed: 4;
  --z-index-mv: 5;
  --z-index-logo: 8;
  --z-index-navbtn: 8;
  --z-index-nav: 10;
  --z-index-navOverlay: 9;
  --z-index-caseModal: 11;
  --mg-pc: 4vw;
  --mg-sp: calc(25 / 375 * 100vw);
  --break-point: 1200;
}

/* ========================================
mixin
======================================== */
/* ========================================
ベースCSS
======================================== */
body {
  color: var(--color-base);
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8666666667;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  opacity: 0;
  animation: pageFadein 2s forwards;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 12px;
    line-height: 2;
  }
}

@keyframes pageFadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
a {
  color: inherit;
  text-decoration: none;
}

/* CLEAR-FIX */
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

/* ========================================
モジュール・パーツ m-
======================================== */
.m-inner {
  width: calc(100% - var(--mg-pc) * 2);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .m-inner {
    width: calc(100% - var(--mg-sp) * 2);
  }
}

.m-secTtlEn {
  font-family: var(--font-overpass);
  font-size: 30px;
  font-weight: 200;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .m-secTtlEn {
    font-size: 19px;
  }
}
.m-secTtlEn + .m-secTtlJa {
  margin-top: 4px;
}

.m-secTtlJa {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .m-secTtlJa {
    font-size: 10px;
  }
}

.m-moreLink {
  display: flex;
  align-items: center;
  gap: 0 10px;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 0.2em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  font-family: var(--font-overpass);
  font-size: 16px;
  font-weight: 200;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: 0.02em;
  position: relative;
}
@media (hover: hover) {
  .m-moreLink {
    transition: opacity 0.3s;
  }
  .m-moreLink:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .m-moreLink {
    font-size: 13px;
  }
}
.m-moreLink::after {
  content: "";
  width: 13px;
  height: 12px;
  background: url(/images/osaka/icon_external.svg) center/auto no-repeat;
  transform: translateY(-2px);
}
@media screen and (max-width: 767px) {
  .m-moreLink::after {
    width: 9px;
    height: 9px;
    background-size: 9px auto;
  }
}

.m-viewMore {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-overpass);
  font-size: 20px;
  font-weight: 200;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1;
  padding-bottom: 18px;
  background: url(/images/osaka/arrow_bottom.svg) center bottom/auto no-repeat;
}
@media screen and (max-width: 767px) {
  .m-viewMore {
    margin-top: 54px;
    padding-bottom: 16px;
    font-size: 13px;
    background-size: 12px auto;
  }
}

.m-fadeIn {
  opacity: 0;
}
.m-fadeIn.is-on {
  opacity: 1;
  transition: opacity 1.4s;
}

.m-fadeIn-bottom {
  opacity: 0;
  transform: translateY(40px);
}
.m-fadeIn-bottom.is-on {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.4s, opacity 1.4s;
}

/* ========================================
補助的に使用 u-
======================================== */
@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}

.u-ib {
  display: inline-block !important;
}

.u-text-center {
  text-align: center !important;
}
.u-text-left {
  text-align: left !important;
}
.u-text-right {
  text-align: right !important;
}

.u-weight-100 {
  font-weight: 100 !important;
}

.u-weight-200 {
  font-weight: 200 !important;
}

.u-weight-300 {
  font-weight: 300 !important;
}

.u-weight-400 {
  font-weight: 400 !important;
}

.u-weight-500 {
  font-weight: 500 !important;
}

.u-weight-600 {
  font-weight: 600 !important;
}

.u-weight-700 {
  font-weight: 700 !important;
}

.u-weight-800 {
  font-weight: 800 !important;
}

.u-weight-900 {
  font-weight: 900 !important;
}

.u-mt-5 {
  margin-top: 5px !important;
}

.u-mt-10 {
  margin-top: 10px !important;
}

.u-mt-15 {
  margin-top: 15px !important;
}

.u-mt-20 {
  margin-top: 20px !important;
}

.u-mt-25 {
  margin-top: 25px !important;
}

.u-mt-30 {
  margin-top: 30px !important;
}

.u-mt-35 {
  margin-top: 35px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mt-45 {
  margin-top: 45px !important;
}

.u-mt-50 {
  margin-top: 50px !important;
}

.u-mt-55 {
  margin-top: 55px !important;
}

.u-mt-60 {
  margin-top: 60px !important;
}

.u-mt-65 {
  margin-top: 65px !important;
}

.u-mt-70 {
  margin-top: 70px !important;
}

.u-mt-75 {
  margin-top: 75px !important;
}

.u-mt-80 {
  margin-top: 80px !important;
}

.u-mt-85 {
  margin-top: 85px !important;
}

.u-mt-90 {
  margin-top: 90px !important;
}

.u-mt-95 {
  margin-top: 95px !important;
}

.u-mt-100 {
  margin-top: 100px !important;
}

.u-mb-5 {
  margin-bottom: 5px !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-mb-15 {
  margin-bottom: 15px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mb-25 {
  margin-bottom: 25px !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-mb-35 {
  margin-bottom: 35px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-mb-45 {
  margin-bottom: 45px !important;
}

.u-mb-50 {
  margin-bottom: 50px !important;
}

.u-mb-55 {
  margin-bottom: 55px !important;
}

.u-mb-60 {
  margin-bottom: 60px !important;
}

.u-mb-65 {
  margin-bottom: 65px !important;
}

.u-mb-70 {
  margin-bottom: 70px !important;
}

.u-mb-75 {
  margin-bottom: 75px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

.u-mb-85 {
  margin-bottom: 85px !important;
}

.u-mb-90 {
  margin-bottom: 90px !important;
}

.u-mb-95 {
  margin-bottom: 95px !important;
}

.u-mb-100 {
  margin-bottom: 100px !important;
}

/* ========================================
header
======================================== */
.header_logo {
  position: fixed;
  top: 30px;
  left: 34px;
  z-index: var(--z-index-logo);
}
@media screen and (max-width: 767px) {
  .header_logo {
    width: 88px;
    top: 15px;
    left: 14px;
  }
}
.header_logo a {
  display: block;
}
@media (hover: hover) {
  .header_logo a {
    transition: opacity 0.3s;
  }
  .header_logo a:hover {
    opacity: 0.6;
  }
}
.header_logo ._img {
  display: block;
  line-height: 0;
}
.header_logo ._text {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  font-size: 12px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .header_logo ._text {
    font-size: 9px;
  }
}
.header_navOpen {
  width: 30px;
  position: fixed;
  top: 30px;
  right: 36px;
  z-index: var(--z-index-navbtn);
}
@media screen and (max-width: 767px) {
  .header_navOpen {
    top: 15px;
    right: 15px;
    width: 24px;
  }
}
.header_navOpen span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-base);
  border-radius: 2px;
  transition: 0.3s;
}
.header_navOpen span + span {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .header_navOpen span + span {
    margin-top: 6px;
  }
}
.header.-mvHeader .header_logo ._img {
  position: relative;
  line-height: 0;
}
.header.-mvHeader .header_logo ._img img {
  opacity: 0;
  transition: opacity 0.3s;
}
.header.-mvHeader .header_logo ._img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(/images/osaka/logo-white.svg) center/contain no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.3s;
}
.header.-mvHeader .header_logo ._text {
  color: #fff;
  transition: color 0.3s;
}
.header.-mvHeader .header_navOpen span {
  background-color: #fff;
}
.is-scroll .header.-mvHeader .header_logo ._img img {
  opacity: 1;
}
.is-scroll .header.-mvHeader .header_logo ._img::before {
  opacity: 0;
}
.is-scroll .header.-mvHeader .header_logo ._text {
  color: var(--color-base);
}
.is-scroll .header.-mvHeader .header_navOpen span {
  background-color: var(--color-base);
}

.nav {
  width: min(100% - 22px, 353px);
  height: 100%;
  background: #fff;
  padding: 60px min(13.3333333333vw, 50px) 50px;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: var(--z-index-nav);
  transform: translateX(0);
  transition: transform 0.4s;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.is-navActive .nav {
  transform: translateX(-100%);
}
.nav::-webkit-scrollbar {
  display: none;
}
.nav_close {
  display: block;
  width: 30px;
  height: 30px;
  margin-left: auto;
  position: absolute;
  top: 26px;
  right: 37px;
}
@media screen and (max-width: 767px) {
  .nav_close {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 12px;
    right: 14px;
  }
}
.nav_close::before, .nav_close::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--color-base);
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .nav_close::before, .nav_close::after {
    width: 24px;
  }
}
.nav_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.nav_ttl {
  margin-top: 27px;
  font-family: var(--font-overpass);
  font-size: 18px;
  font-weight: 200;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .nav_ttl {
    font-size: 16px;
  }
}
.nav_primary {
  margin-top: 46px;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .nav_primary {
    margin-top: 38px;
  }
}
.nav_primary > li + li {
  margin-top: 22px;
}
@media screen and (max-width: 767px) {
  .nav_primary > li + li {
    margin-top: 18px;
  }
}
.nav_primary a {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.05em;
}
@media (hover: hover) {
  .nav_primary a {
    transition: opacity 0.3s;
  }
  .nav_primary a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .nav_primary a {
    font-size: 13px;
  }
}
.nav_secondary {
  margin-top: 45px;
  padding-top: 47px;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
.nav_company {
  padding-left: 20px;
}
.nav_company a {
  display: flex;
  gap: 0 5px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .nav_company a {
    font-size: 13px;
  }
}
.nav_company a::after {
  content: "";
  width: 12px;
  height: 12px;
  background: url(/images/osaka/icon_external.svg) center/12px auto no-repeat;
}
@media screen and (max-width: 767px) {
  .nav_company a::after {
    width: 11px;
    height: 11px;
    background-size: 11px auto;
  }
}
@media (hover: hover) {
  .nav_company a {
    transition: opacity 0.3s;
  }
  .nav_company a:hover {
    opacity: 0.6;
  }
}
.nav_contact {
  display: flex;
  justify-content: space-between;
  max-width: 184px;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .nav_contact {
    margin-top: 66px;
  }
}
.nav_contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 57px;
  height: 57px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}
@media (hover: hover) {
  .nav_contact a {
    transition: background-color 0.3s;
  }
  .nav_contact a svg {
    transition: fill 0.3s;
  }
  .nav_contact a:hover {
    background-color: var(--color-base);
  }
  .nav_contact a:hover svg {
    fill: #fff;
  }
}
.nav_boderLink {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .nav_boderLink {
    margin-top: 50px;
  }
}
.nav_boderLink a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 46px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1;
  position: relative;
}
@media (hover: hover) {
  .nav_boderLink a {
    transition: background-color 0.3s, color 0.3s;
  }
  .nav_boderLink a:hover {
    background-color: var(--color-base);
    color: #fff;
  }
}
.nav_boderLink a::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  transition: background-image 0.3s;
}
.nav_boderLink.-contact a::before {
  background: url(/images/osaka/menu_icon_mail.svg) center/auto no-repeat;
}
.nav_boderLink.-tel a::before {
  background: url(/images/osaka/menu_icon_tel.svg) center/auto no-repeat;
}
.nav_boderLink.-document a::before {
  background: url(/images/osaka/menu_icon_document.svg) center/auto no-repeat;
}
@media screen and (max-width: 767px) {
  .nav_boderLink.-document a::before {
    background: none;
  }
}
.nav_boderLink.-home a {
  background-color: #000000;
  color: #fff;
  font-family: var(--font-overpass);
  font-weight: 200;
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
  padding-top: 2px;
}
@media (hover: hover) {
  .nav_boderLink.-home a {
    transition: opacity 0.3s;
  }
  .nav_boderLink.-home a:hover {
    opacity: 0.6;
  }
}
@media (hover: hover) {
  .nav_boderLink.-contact a:hover::before {
    background-image: url(/images/osaka/menu_icon_mail-white.svg);
  }
  .nav_boderLink.-tel a:hover::before {
    background-image: url(/images/osaka/menu_icon_tel-white.svg);
  }
  .nav_boderLink.-document a:hover::before {
    background-image: url(/images/osaka/menu_icon_document-white.svg);
  }
}
@media (hover: hover) {
  .nav_boderLink.-tel a {
    pointer-events: none;
  }
}
.nav_boderLink + .nav_boderLink {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .nav_boderLink + .nav_boderLink {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .nav_radiFLex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    margin-top: 50px;
    margin-bottom: 62px;
  }
}

.nav_radiLink a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 57px;
  height: 57px;
  border-radius: 50%;
  border: 0.5px solid #000;
}

.nav_radiLink.-contact a::after {
  content: "";
  width: 22px;
  height: 14px;
  background-image: url("/images/osaka/icon_mail.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.nav_radiLink.-tel a::after {
  content: "";
  width: 21px;
  height: 17px;
  background-image: url("/images/osaka/icon_tel.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.navOverlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: var(--z-index-navOverlay);
  visibility: hidden;
  cursor: auto;
}
.is-navActive .navOverlay {
  visibility: visible;
}

.pcFixed {
  font-family: var(--font-overpass);
  position: fixed;
  right: 44px;
  bottom: 40px;
  z-index: var(--z-index-fixed);
}
.pcFixed_contact {
  width: 99px;
  height: 35px;
  padding-top: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  border: 1px solid rgba(0, 0, 0, 0.5);
}
@media (hover: hover) {
  .pcFixed_contact {
    transition: 0.3s;
  }
  .pcFixed_contact:hover {
    background: #000;
    border-color: #000;
    color: #fff;
  }
}
.pcFixed_topto {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 36px auto 0;
  padding-top: 12px;
  background: url(/images/osaka/topto.svg) center top/auto no-repeat;
  font-size: 16px;
  text-align: center;
}
@media (hover: hover) {
  .pcFixed_topto {
    transition: 0.3s;
  }
  .pcFixed_topto:hover {
    opacity: 0.6;
  }
}

@media screen and (max-width: 767px) {
  .spFixed {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 44px;
    background: #000;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.05em;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: var(--z-index-fixed);
  }
}

/* ========================================
footer
======================================== */
.footer {
  margin-top: 250px;
  padding: 50px 0 40px;
  background: var(--color-base);
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 130px;
    padding: 35px 0 20px;
  }
}
.footer_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0 30px;
  padding-right: 50px;
}
@media screen and (max-width: 767px) {
  .footer_inner {
    padding-right: 0;
  }
}
.footer_logo {
  display: block;
  line-height: 0;
}
@media (hover: hover) {
  .footer_logo a {
    transition: opacity 0.3s;
  }
  .footer_logo a:hover {
    opacity: 0.6;
  }
}
.footer_logo img {
  width: 139px;
}
@media screen and (max-width: 767px) {
  .footer_logo img {
    width: 104px;
  }
}
.footer_nav {
  display: flex;
  gap: 0 min(calc(80 / var(--break-point) * 100vw), 80px);
}
@media screen and (max-width: 767px) {
  .footer_nav {
    flex-direction: column;
    gap: 15px 0;
  }
}
.footer_nav a {
  display: inline-block;
  color: #fff;
  font-family: var(--font-overpass);
  font-weight: 200;
  font-size: 16px;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.4;
  position: relative;
}
@media (hover: hover) {
  .footer_nav a {
    transition: opacity 0.3s;
  }
  .footer_nav a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .footer_nav a {
    font-size: 14px;
  }
}
.footer_nav a::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 3px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .footer_nav a::after {
    width: 11px;
    height: 11px;
  }
}
.footer_nav ._external {
  padding-right: 21px;
}
@media screen and (max-width: 767px) {
  .footer_nav ._external {
    padding-right: 16px;
  }
}
.footer_nav ._external::after {
  background: url(/images/osaka/icon_external-white.svg) center/auto no-repeat;
}
@media screen and (max-width: 767px) {
  .footer_nav ._external::after {
    background-size: 11px auto;
  }
}
.footer_nav ._instagram {
  padding-right: 21px;
}
@media screen and (max-width: 767px) {
  .footer_nav ._instagram {
    padding-right: 16px;
  }
}
.footer_nav ._instagram::after {
  background: url(/images/osaka/icon_instagram-white.svg) center/auto no-repeat;
}
@media screen and (max-width: 767px) {
  .footer_nav ._instagram::after {
    background-size: 11px auto;
  }
}
.footer_copyright {
  display: block;
  margin-top: 90px;
  width: 100%;
  color: #fff;
  font-family: var(--font-overpass);
  font-size: 16px;
  font-weight: 200;
  font-style: italic;
  text-align: right;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .footer_copyright {
    margin-top: 41px;
    font-size: 11px;
    text-align: center;
  }
}

/* ========================================
メインビジュアル
======================================== */
.mv {
  background: #fff;
  height: 100vh;
  position: relative;
  z-index: var(--z-index-mv);
}
@media (hover: hover) {
  .mv {
    height: 100vh !important;
  }
}
.mv .mv_slide,
.mv .splide__track {
  height: 100%;
}
.mv .splide__slide {
  position: relative;
}
.mv .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.mv .splide__pagination {
  display: flex;
  justify-content: center;
  gap: 0 10px;
  position: absolute;
  left: 35px;
  bottom: 30px;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .mv .splide__pagination {
    justify-content: center;
    width: 100%;
    left: 0;
  }
}
.mv .splide__pagination li {
  line-height: 0;
}
.mv .splide__pagination button {
  width: 40px;
  height: 7px;
  background: #fff;
  border: 0;
  opacity: 0.5;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .mv .splide__pagination button {
    width: 35px;
    height: 6px;
  }
}
.mv .splide__pagination button.is-active {
  opacity: 1;
}
.mv_text {
  width: 258px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .mv_text {
    width: 172px;
    transform: translate(-50%, -66%);
  }
}

/* ========================================
コンセプト
======================================== */
.concept {
  margin-top: 174px;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .concept {
    margin-top: 23px;
  }
}
.concept_cont01 {
  display: flex;
  justify-content: space-between;
  margin-top: 79px;
}
@media screen and (max-width: 767px) {
  .concept_cont01 {
    display: block;
    margin-top: 50px;
  }
}
@media screen and (min-width: 768px) {
  .concept_cont01 > * {
    width: 46.8181818182%;
  }
}
.concept_cont01 ._imgBox img {
  width: 100%;
}
.concept_cont01 ._enTtl {
  margin-top: -0.2em;
  font-family: var(--font-overpass);
  font-weight: 200;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .concept_cont01 ._enTtl {
    margin-top: 27px;
    font-size: 13px;
  }
}
.concept_cont01 ._read01 {
  margin-top: 14px;
  font-size: 20px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .concept_cont01 ._read01 {
    margin-top: 10px;
    font-size: 17px;
  }
}
.concept_cont01 ._desc {
  margin-top: 13px;
}
@media screen and (max-width: 767px) {
  .concept_cont01 ._desc {
    margin-top: 22px;
  }
}
.concept_cont01 ._read02 {
  margin-top: 46px;
  font-size: 18px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .concept_cont01 ._read02 {
    margin-top: 28px;
    font-size: 15px;
    line-height: 1.8666666667;
  }
}
.concept_cont02 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin: 150px auto 0;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  .concept_cont02 {
    display: block;
    margin-top: 126px;
  }
}
@media screen and (min-width: 768px) {
  .concept_cont02 ._imgBox {
    width: 43%;
  }
}
.concept_cont02 ._imgBox img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .concept_cont02 ._contBox {
    width: 51.5%;
  }
}
.concept_cont02 ._ttl {
  margin-top: min(calc(46 / 1440 * 100vw), 46px);
  font-size: 20px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .concept_cont02 ._ttl {
    margin-top: 26px;
    font-size: 17px;
  }
}
.concept_cont02 ._desc {
  margin-top: min(calc(83 / 1440 * 100vw), 83px);
}
@media screen and (max-width: 767px) {
  .concept_cont02 ._desc {
    margin-top: 22px;
  }
}

/* ========================================
デザイン事例
======================================== */
.case {
  background: #FAFAF7;
  margin-top: 150px;
  padding: 84px 0 170px;
}
@media screen and (max-width: 767px) {
  .case {
    margin-top: 126px;
    padding: 73px 0 80px;
  }
}

.caseSec {
  margin-top: 86px;
}
@media screen and (max-width: 767px) {
  .caseSec {
    margin-top: 83px;
  }
}
.caseSec + .caseSec {
  margin-top: 300px;
}
@media screen and (max-width: 767px) {
  .caseSec + .caseSec {
    margin-top: 150px;
  }
}
.caseSec_enTtl {
  font-family: var(--font-overpass);
  font-size: 20px;
  font-weight: 200;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .caseSec_enTtl {
    font-size: 15px;
  }
}

.caseHead {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .caseHead {
    display: block;
  }
}
.caseHead_ttl {
  width: 250px;
  padding-top: 54px;
  font-size: 18px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .caseHead_ttl {
    width: 100%;
    padding-top: 0;
    font-size: 14px;
  }
}
.caseHead_ttl ._num {
  display: block;
  margin-bottom: 22px;
  font-family: var(--font-overpass);
  font-weight: 200;
  font-style: italic;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .caseHead_ttl ._num {
    margin-bottom: 6px;
    font-size: 13px;
  }
}
.caseHead_ttl ._en {
  font-family: var(--font-overpass);
  font-weight: 200;
  font-size: 24px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .caseHead_ttl ._en {
    font-size: 18px;
  }
}
.caseHead_main {
  flex: 1;
  max-width: 800px;
}
@media screen and (max-width: 767px) {
  .caseHead_main {
    margin-top: 22px;
  }
}
@media screen and (min-width: 768px) {
  .caseHead_main img {
    max-width: none;
    width: clamp(100% + var(--mg-pc) * 0.7058823529, 100% + (100vw - 1100px) / 2 * 0.7058823529, 920px);
  }
}
@media screen and (max-width: 767px) {
  .caseHead_main img {
    width: 100%;
  }
}

.caseOverview {
  width: calc(100% - 250px);
  max-width: 800px;
  margin-top: 21px;
  margin-left: auto;
  padding-left: min(calc(197 / var(--break-point) * 100vw), 197px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .caseOverview {
    width: 100%;
    margin-top: 31px;
    padding-left: 0;
  }
}
.caseOverview .caseSec_enTtl {
  position: absolute;
  top: 3px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .caseOverview .caseSec_enTtl {
    position: static;
  }
}
@media screen and (min-width: 1025px) {
  .caseOverview_info {
    display: grid;
    grid-template-columns: 1fr 234px;
    grid-template-rows: repeat(3, 1fr);
    grid-auto-flow: column;
    gap: 4px 20px;
  }
}
@media screen and (max-width: 767px) {
  .caseOverview_info {
    width: max(46.0952380952%, 242px);
    margin-top: 30px;
    margin-left: auto;
    font-size: 12px;
  }
}
.caseOverview_info dl {
  display: flex;
  gap: 0 37px;
}
@media screen and (max-width: 767px) {
  .caseOverview_info dl {
    gap: 0 30px;
  }
  .caseOverview_info dl + dl {
    margin-top: 10px;
  }
}
.caseOverview_info dt {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 63px;
}
@media screen and (max-width: 767px) {
  .caseOverview_info dt {
    width: 50px;
  }
}
.caseOverview_info dd {
  flex: 1;
}
.caseOverview_info dd ._en {
  font-family: var(--font-overpass);
  font-size: 18px;
  font-weight: 200;
  font-style: italic;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .caseOverview_info dd ._en {
    font-size: 14px;
  }
}
.caseOverview_desc {
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .caseOverview_desc {
    margin-top: 50px;
  }
}

.caseBox01 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-top: 47px;
}
@media screen and (max-width: 767px) {
  .caseBox01 {
    display: block;
  }
}

.casePoint {
  flex: 1;
  max-width: 800px;
  padding-left: min(calc(197 / var(--break-point) * 100vw), 197px);
}
@media screen and (max-width: 767px) {
  .casePoint {
    padding-left: 0;
  }
}
.casePoint_desc {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .casePoint_desc {
    margin-top: 9px;
  }
}

.caseMovie {
  width: 250px;
}
@media screen and (max-width: 767px) {
  .caseMovie {
    width: 100%;
    margin-top: 79px;
  }
}
.caseMovie_thumbnail {
  display: block;
  width: 100%;
  margin-top: 11px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .caseMovie_thumbnail {
    width: max(46.0952380952%, 242px);
    margin-left: auto;
  }
}
.caseMovie_thumbnail::before {
  content: "";
  display: block;
  width: 38px;
  height: 29px;
  background: url(/images/osaka/icon_movie-white.svg) center/contain no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
}
.caseMovie_thumbnail ._inner {
  display: block;
  padding-top: 56.4%;
  position: relative;
}
.caseMovie_thumbnail ._inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.caseMovie_desc {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .caseMovie_desc {
    width: 100%;
    padding-top: 0;
    font-size: 10px;
  }
}
.caseMovie_desc ._num {
  display: inline-block;
  width: 104px;
  font-family: var(--font-overpass);
  font-size: 20px;
  font-weight: 200;
  font-style: italic;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .caseMovie_desc ._num {
    width: 62px;
    font-size: 14px;
  }
}
.caseMovie_desc ._en {
  font-family: var(--font-overpass);
  font-weight: 200;
  font-size: 20px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .caseMovie_desc ._en {
    font-size: 14px;
  }
}

.caseGallery {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .caseGallery {
    margin-top: 100px;
  }
}
.caseGallery_container {
  display: grid;
  gap: min(calc(50 / var(--break-point) * 100vw), 50px) min(calc(50 / var(--break-point) * 100vw), 50px);
  grid-template-columns: repeat(3, 1fr);
  max-width: 1099px;
  height: min(calc(530 / 1190 * 100vw), 530px);
  margin-top: 13px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .caseGallery_container {
    display: block;
    width: max(46.0952380952%, 242px);
    height: calc(1150 / 375 * 100vw);
    margin-top: 14px;
    margin-left: auto;
  }
}
.caseGallery_container::before {
  content: "";
  display: block;
  background: #FAFAF7;
  width: 100%;
  height: min(calc(860 / 1190 * 100vw), 860px);
  position: absolute;
  top: min(calc(530 / 1190 * 100vw), 530px);
  left: 0;
  z-index: 2;
  visibility: visible;
  transition: opacity 0.5s 0s, visibility 0s 0.5s;
}
@media screen and (max-width: 767px) {
  .caseGallery_container::before {
    height: calc(2000 / 375 * 100vw);
    top: calc(1150 / 375 * 100vw);
  }
}
.caseGallery_container.is-open {
  height: auto;
}
.caseGallery_container.is-open::before {
  opacity: 0;
  visibility: hidden;
}
.caseGallery_img {
  opacity: 0;
  transition: opacity 1.4s;
}
.is-on .caseGallery_img {
  opacity: 1;
}
.caseGallery_img:nth-of-type(2) {
  transition-delay: 0.2s;
}
.caseGallery_img:nth-of-type(3) {
  transition-delay: 0.3s;
}
.caseGallery_img:nth-of-type(4) {
  transition-delay: 0.4s;
}
.caseGallery_img:nth-of-type(5) {
  transition-delay: 0.6s;
}
.caseGallery_img:nth-of-type(6) {
  transition-delay: 0.7s;
}
@media screen and (max-width: 767px) {
  .caseGallery_img + .caseGallery_img {
    margin-top: calc(14 / 375 * 100vw);
  }
}
.caseGallery_img ._inner {
  position: relative;
  padding-top: 72.0720720721%;
}
.caseGallery_img.-large ._inner {
  padding-top: 159.1591591592%;
}
@media screen and (min-width: 768px) {
  .caseGallery_img.-pcHalf ._inner {
    padding-top: 72.0720720721%;
  }
  .caseGallery_img.-pcHalf ._inner img {
    -o-object-position: top;
       object-position: top;
  }
  .is-open .caseGallery_img.-pcHalf ._inner {
    padding-top: 159.1591591592%;
  }
  .is-open .caseGallery_img.-pcHalf ._inner img {
    -o-object-position: center;
       object-position: center;
  }
}
.caseGallery_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .-case01 .caseGallery_img:nth-of-type(3) {
    grid-column: 3/4;
    grid-row: 1/3;
  }
  .-case01 .caseGallery_img:nth-of-type(6) {
    grid-column: 1/2;
    grid-row: 3/5;
  }
  .-case01 .caseGallery_img:nth-of-type(8) {
    grid-column: 3/4;
    grid-row: 3/5;
  }
  .-case01 .caseGallery_img:nth-of-type(9) {
    grid-column: 2/3;
    grid-row: 4/6;
  }
}
@media screen and (min-width: 768px) {
  .-case02 .caseGallery_img:nth-of-type(3) {
    grid-column: 3/4;
    grid-row: 1/3;
  }
  .-case02 .caseGallery_img:nth-of-type(4) {
    grid-column: 1/2;
    grid-row: 2/4;
  }
  .-case02 .caseGallery_img:nth-of-type(6) {
    grid-column: 2/3;
    grid-row: 3/5;
  }
  .-case02 .caseGallery_img:nth-of-type(8) {
    grid-column: 1/2;
    grid-row: 4/6;
  }
  .-case02 .caseGallery_img:nth-of-type(9) {
    grid-column: 3/4;
    grid-row: 4/6;
  }
}
@media screen and (min-width: 768px) {
  .-case03 .caseGallery_img:nth-of-type(1) {
    grid-column: 1/2;
    grid-row: 1/3;
  }
  .-case03 .caseGallery_img:nth-of-type(3) {
    grid-column: 3/4;
    grid-row: 1/3;
  }
  .-case03 .caseGallery_img:nth-of-type(6) {
    grid-column: 2/3;
    grid-row: 3/5;
  }
  .-case03 .caseGallery_img:nth-of-type(10) {
    grid-column: 3/4;
    grid-row: 4/6;
  }
}
@media screen and (min-width: 768px) {
  .-case04 .caseGallery_img:nth-of-type(3) {
    grid-column: 3/4;
    grid-row: 1/3;
  }
  .-case04 .caseGallery_img:nth-of-type(5) {
    grid-column: 2/3;
    grid-row: 2/4;
  }
  .-case04 .caseGallery_img:nth-of-type(6) {
    grid-column: 1/2;
    grid-row: 3/5;
  }
  .-case04 .caseGallery_img:nth-of-type(9) {
    grid-column: 3/4;
    grid-row: 4/6;
  }
}
@media screen and (min-width: 768px) {
  .-case05 .caseGallery_img:nth-of-type(1) {
    grid-column: 1/2;
    grid-row: 1/3;
  }
  .-case05 .caseGallery_img:nth-of-type(6) {
    grid-column: 2/3;
    grid-row: 2/4;
  }
  .-case05 .caseGallery_img:nth-of-type(8) {
    grid-column: 1/2;
    grid-row: 4/6;
  }
  .-case05 .caseGallery_img:nth-of-type(10) {
    grid-column: 3/4;
    grid-row: 4/6;
  }
}
.caseGallery_viewMore {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 45px auto 0;
  font-family: var(--font-overpass);
  font-size: 20px;
  font-weight: 200;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1;
  padding-bottom: 18px;
  background: url(/images/osaka/arrow_bottom.svg) center bottom/auto no-repeat;
}
@media screen and (max-width: 767px) {
  .caseGallery_viewMore {
    margin-top: 54px;
    padding-bottom: 16px;
    font-size: 13px;
    background-size: 12px auto;
  }
}

.caseModal {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-caseModal);
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.caseModal::-webkit-scrollbar {
  display: none;
}
.caseModal_overlay {
  width: 100%;
  height: 100%;
  background: #292929;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}
.caseModal_closedBtn {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: calc(50% - min(calc(364 / 1100 * 100vw), 364px));
  right: -45px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .caseModal_closedBtn {
    width: 34px;
    height: 34px;
    top: 13px;
    right: calc(-5 / 375 * 100vw);
  }
}
.caseModal_closedBtn::before, .caseModal_closedBtn::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
}
@media screen and (max-width: 767px) {
  .caseModal_closedBtn::before, .caseModal_closedBtn::after {
    width: 24px;
  }
}
.caseModal_closedBtn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.caseModal_closedBtn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.caseModal_container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  width: calc(100% - 100px);
  min-height: 100%;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .caseModal_container {
    width: calc(100% - 8vw);
    padding: 50px 0 68px;
  }
}
.caseModal_movieWrap {
  width: 100%;
  position: relative;
}
.caseModal_movie {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
.caseModal_movie iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.caseModal_desc {
  width: 100%;
  position: absolute;
  top: calc(100% + 23px);
  left: 0;
}
@media screen and (max-width: 767px) {
  .caseModal_desc {
    margin-top: 16px;
    position: static;
  }
}

/* ========================================
家づくりを支える体制
======================================== */
.system {
  margin-top: 124px;
  padding-top: 80px;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  .system {
    margin-top: 73px;
  }
}

.systemCont {
  display: flex;
  gap: 0 20px;
  margin-top: 114px;
}
@media screen and (max-width: 767px) {
  .systemCont {
    display: block;
    margin-top: 75px;
  }
}
.systemCont_read {
  padding-top: 21px;
  width: 34%;
  font-size: 18px;
  line-height: 1.9444444444;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .systemCont_read {
    width: 100%;
    padding-top: 0;
    font-size: 15px;
  }
}
.systemCont_box {
  flex: 1;
  max-width: 640px;
}
@media screen and (max-width: 767px) {
  .systemCont_box {
    width: max(calc(275 / 375 * 100vw), 275px);
    margin: 70px auto 0;
  }
}
.systemCont_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 50px 30px;
  max-width: 550px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .systemCont_list {
    justify-content: space-between;
    gap: 26px 0;
    max-width: 275px;
  }
}
.systemCont_list > li {
  font-size: 12px;
}
.systemCont_list > li:nth-child(1) {
  width: 100%;
}
.systemCont_list ._inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 2px 0;
  width: 170px;
  height: 170px;
  margin: 0 auto;
  padding-top: 16px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .systemCont_list ._inner {
    gap: 0 0;
    width: 104px;
    height: 104px;
    padding-top: 10px;
    font-size: 10px;
  }
}
.systemCont_list ._en {
  display: block;
  font-family: var(--font-overpass);
  font-size: 18px;
  font-weight: 200;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .systemCont_list ._en {
    font-size: 12px;
  }
}
.systemCont_desc {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .systemCont_desc {
    margin-top: 57px;
  }
}

/* ========================================
ハコリノベの選べるサービス
======================================== */
.service {
  margin-top: 120px;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .service {
    margin-top: 70px;
  }
}

.serviceList {
  display: flex;
  flex-wrap: wrap;
  gap: 0 8%;
  max-width: 1000px;
  margin-top: 79px;
  height: 390px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .serviceList {
    gap: 97px 0;
    width: calc(275 / 375 * 100vw);
    height: auto;
  }
}
.serviceList::before {
  content: "";
  display: block;
  height: 56px;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.8) 20%, rgb(255, 255, 255) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .serviceList::before {
    display: none;
  }
}
.serviceList.is-open {
  height: auto;
}
.serviceList.is-open::before {
  opacity: 0;
  visibility: hidden;
}
.serviceList > li {
  width: 28%;
}
@media screen and (max-width: 767px) {
  .serviceList > li {
    width: 100%;
  }
}
.serviceList_img img {
  width: 100%;
}
.serviceList_ttl {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.875;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .serviceList_ttl {
    font-size: 14px;
    line-height: 1.7142857143;
  }
}
.serviceList_desc {
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .serviceList_desc {
    line-height: 1.7333333333;
  }
}
@media screen and (max-width: 767px) {
  .serviceList_desc {
    margin-top: 19px;
  }
}
.serviceList_viewMore {
  display: block;
  margin: 87px auto 0;
}
@media screen and (max-width: 767px) {
  .serviceList_viewMore {
    display: none;
  }
}

.servicePeace {
  max-width: 1000px;
  margin-top: 98px;
  padding-top: 96px;
  border-top: 1px dotted rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .servicePeace {
    margin-top: 114px;
  }
}
.servicePeace_ttl {
  width: 34%;
  font-size: 18px;
  line-height: 1.9444444444;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .servicePeace_ttl {
    width: 100%;
    font-size: 15px;
    line-height: 1.8666666667;
  }
}
.servicePeace_contBox {
  width: 640px;
  margin-top: 62px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .servicePeace_contBox {
    width: max(calc(250 / 375 * 100vw), 250px);
    margin-top: 47px;
  }
}
.servicePeace_cont + .servicePeace_cont {
  margin-top: 96px;
}
@media screen and (max-width: 767px) {
  .servicePeace_cont + .servicePeace_cont {
    margin-top: 77px;
  }
}
.servicePeace_contTtl {
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .servicePeace_contTtl {
    font-size: 14px;
    line-height: 1.7142857143;
  }
}
.servicePeace_desc {
  margin-top: 23px;
}
@media screen and (max-width: 767px) {
  .servicePeace_desc {
    margin-top: 25px;
  }
}
.servicePeace_more {
  margin-top: 31px;
}
@media screen and (max-width: 767px) {
  .servicePeace_more {
    margin-top: 29px;
  }
}

/* ========================================
入居までの流れ
======================================== */
.flow {
  max-width: 1000px;
  margin-top: 225px;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .flow {
    margin-top: 75px;
  }
}

.flowPhase {
  margin-top: 83px;
}
@media screen and (max-width: 767px) {
  .flowPhase {
    margin-top: 79px;
  }
}
.flowPhase > li {
  display: flex;
  justify-content: space-between;
}
.flowPhase > li + li {
  margin-top: 73px;
}
@media screen and (max-width: 767px) {
  .flowPhase > li + li {
    margin-top: 39px;
  }
}
@media screen and (min-width: 768px) {
  .flowPhase > li:last-child .flowPhase_circle::after {
    height: calc(100% - 205px + 15px);
    bottom: -15px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .flowPhase > li:last-child .flowPhase_circle::after {
    height: calc(100% - 70px + 10px);
    bottom: -10px;
  }
}
.flowPhase_circle {
  width: clamp(230px, 26.1818181818vw, 288px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .flowPhase_circle {
    width: clamp(65px, 20vw, 75px);
  }
}
.flowPhase_circle ._inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 170px;
  height: 170px;
  margin: 0 auto;
  padding-top: 0.2em;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  font-family: var(--font-overpass);
  font-size: 18px;
  font-weight: 200;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .flowPhase_circle ._inner {
    width: 50px;
    height: 50px;
    margin-left: 0;
    padding-top: 0.4em;
    font-size: 11px;
  }
}
.flowPhase_circle::after {
  content: "";
  width: 8px;
  height: calc(100% - 205px + 35px);
  background: url(/images/osaka/arrow_flow@2x.png) center bottom/8px auto no-repeat;
  position: absolute;
  left: 50%;
  bottom: -35px;
}
@media screen and (max-width: 767px) {
  .flowPhase_circle::after {
    height: calc(100% - 70px + 18px);
    left: 25px;
    bottom: -18px;
  }
}
.flowPhase_container {
  flex: 1;
  max-width: 640px;
}
@media screen and (max-width: 767px) {
  .flowPhase_container {
    max-width: 100%;
  }
}
.flowPhase_head {
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .flowPhase_head {
    margin-top: 2px;
  }
}
@media screen and (min-width: 768px) {
  .flowPhase_head.-linkIn {
    padding-right: 235px;
    position: relative;
  }
}
.flowPhase_head ._ttl {
  font-size: 18px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .flowPhase_head ._ttl {
    font-size: 14px;
  }
}
.flowPhase_head ._desc {
  margin-top: 11px;
  color: #6C6C6C;
  font-size: 12px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .flowPhase_head ._desc {
    margin-top: 3px;
    font-size: 10px;
  }
}
.flowPhase_head ._link {
  display: block;
  width: 232px;
  padding: 6px 11px 5px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  font-size: 13px;
  line-height: 1.6923076923;
  position: absolute;
  top: 3px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .flowPhase_head ._link {
    width: 100%;
    max-width: 217px;
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.6666666667;
    position: static;
  }
}
@media (hover: hover) {
  .flowPhase_head ._link {
    transition: color 0.3s, background-color 0.3s;
  }
  .flowPhase_head ._link:hover {
    color: #fff;
    background-color: #000;
  }
}
.flowPhase_list {
  margin-top: 31px;
  padding: 32px 35px 29px;
  background: #FAFAF7;
}
@media screen and (max-width: 767px) {
  .flowPhase_list {
    margin-top: 30px;
    padding: 17px 20px 26px;
  }
}
.flowPhase_list > li + li {
  margin-top: 31px;
  padding-top: 31px;
  border-top: 1px dashed rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .flowPhase_list > li + li {
    margin-top: 27px;
    padding-top: 26px;
  }
}
.flowPhase_list ._ttl {
  font-size: 16px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .flowPhase_list ._ttl {
    font-size: 13px;
  }
}
.flowPhase_list ._desc {
  margin-top: 19px;
}
@media screen and (max-width: 767px) {
  .flowPhase_list ._desc {
    margin-top: 9px;
    font-size: 11px;
    line-height: 1.9090909091;
  }
}

.flowFooter {
  max-width: 940px;
  margin-top: 52px;
  margin-left: auto;
  border: 1px solid rgba(0, 0, 0, 0.5);
  padding: 22px 20px;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.6923076923;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .flowFooter {
    margin-top: 33px;
    padding: 15px 15px 13px;
    font-size: 13px;
  }
}

/* ========================================
イベント
======================================== */
.event {
  margin-top: 200px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  padding: 72px 30px 64px;
}
@media screen and (max-width: 767px) {
  .event {
    margin-top: 50px;
    padding: 43px 0 49px;
  }
}

.eventLsit {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 6.7010309278%;
  max-width: 970px;
  margin: 69px auto 0;
}
@media screen and (max-width: 767px) {
  .eventLsit {
    gap: 100px 0;
    width: calc(280 / 375 * 100vw);
    margin-top: 50px;
  }
}
.eventLsit > * {
  width: 28.8659793814%;
}
@media screen and (max-width: 767px) {
  .eventLsit > * {
    width: 100%;
  }
}
.eventLsit a {
  display: block;
}
@media (hover: hover) and (hover: hover) {
  .eventLsit a:hover {
    transition: opacity 0.3s;
  }
  .eventLsit a:hover:hover {
    opacity: 0.85;
  }
}
@media (hover: hover) {
  .eventLsit a:hover .eventLsit_img img {
    transform: scale(1.06);
  }
}
.eventLsit_img {
  padding-top: 55%;
  position: relative;
  overflow: hidden;
}
.eventLsit_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s;
}
.eventLsit_time {
  display: block;
  margin-top: 18px;
  font-family: var(--font-overpass);
  font-style: italic;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  word-break: break-all;
}
.eventLsit_cat {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4285714286;
}
.eventLsit_cat.-en {
  font-family: var(--font-overpass);
  font-style: italic;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
}
.eventLsit_ttl {
  margin-top: 13px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5625;
}
.eventLsit_desc {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  font-size: 15px;
  line-height: 1.7333333333;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
.eventLsit .m-moreLink {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .eventLsit .m-moreLink {
    font-size: 16px;
  }
  .eventLsit .m-moreLink::after {
    width: 13px;
    height: 12px;
    background-size: auto;
  }
}

.event_button {
  width: 151px;
  margin: 70px auto 0;
  display: block;
  transition-duration: 0.4s;
  border: 0.5px solid #000000;
}
@media (hover: hover) {
  .event_button {
    transition: opacity 0.3s;
  }
  .event_button:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .event_button {
    margin-top: 56px;
    width: 143px;
  }
}

.event_button_en {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 33px;
  background-color: #000000;
  font-family: var(--font-overpass);
  font-weight: 600;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #fff;
  padding-top: 4px;
}
@media screen and (max-width: 767px) {
  .event_button_en {
    height: 35px;
    font-size: 15px;
  }
}

.event_button_ja {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 29px;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.3;
  font-family: var(--font-sans);
}
@media screen and (max-width: 767px) {
  .event_button_ja {
    font-size: 11px;
    height: 31px;
  }
}

/* ========================================
よくあるご質問
======================================== */
.faq {
  margin-top: 124px;
  padding-top: 80px;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  .faq {
    margin-top: 73px;
  }
}

.faqTab {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 77px;
}
@media screen and (max-width: 767px) {
  .faqTab {
    display: none;
  }
}
.faqTab button {
  display: block;
  width: 184px;
  padding-bottom: 25px;
  font-size: 16px;
  letter-spacing: 0.05em;
}
@media (hover: hover) {
  .faqTab button {
    transition: opacity 0.3s;
  }
  .faqTab button:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 1024px) {
  .faqTab button {
    width: auto;
  }
}
.faqTab button.is-active {
  background: url(/images/osaka/arrow_bottom.svg) center bottom/auto no-repeat;
}

.faqContainer {
  margin-top: 79px;
}
@media screen and (max-width: 767px) {
  .faqContainer {
    margin-top: 47px;
  }
}

@media screen and (max-width: 767px) {
  .faqSpTtl {
    margin-top: 97px;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-align: center;
    padding-bottom: 21px;
    background: url(/images/osaka/arrow_bottom.svg) center bottom/10px auto no-repeat;
  }
  .faqSpTtl:first-child {
    margin-top: 0;
  }
}

.faqCont {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .faqCont {
    display: block !important;
    margin: 30px auto 0;
    width: calc(300 / 375 * 100vw);
  }
}
.faqCont dl {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  line-height: 1.7333333333;
}
.faqCont dt,
.faqCont dd {
  padding: 22px 30px 21px 79px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faqCont dt,
  .faqCont dd {
    padding: 22px 12px 22px 44px;
  }
}
.faqCont dt::before,
.faqCont dd::before {
  content: "";
  font-family: var(--font-overpass);
  font-size: 26px;
  font-weight: 200;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1;
  position: absolute;
  top: 22px;
  left: 30px;
}
@media screen and (max-width: 767px) {
  .faqCont dt::before,
  .faqCont dd::before {
    font-size: 22px;
    top: 25px;
    left: 11px;
  }
}
.faqCont dt {
  letter-spacing: 0.1em;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .faqCont dt {
    font-size: 13px;
    line-height: 1.6923076923;
    letter-spacing: 0;
  }
}
.faqCont dt::before {
  content: "Q.";
}
.faqCont dd {
  display: none;
  background: #FAFAF7;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .faqCont dd {
    font-size: 11px;
    line-height: 1.9090909091;
    padding-top: 23px;
    padding-bottom: 22px;
  }
}
.faqCont dd::before {
  content: "A.";
}
.faqCont .m-viewMore {
  margin-top: 55px;
}
/* ========================================
アクセス
======================================== */
.access {
  margin-top: 124px;
  padding-top: 80px;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  .access {
    margin-top: 72px;
  }
}
.access_read {
  margin-top: 46px;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .access_read {
    margin-top: 37px;
    font-size: 13px;
  }
}

.accessContainer {
  display: flex;
  justify-content: space-between;
  gap: 0 30px;
  margin-top: 89px;
}
@media screen and (max-width: 767px) {
  .accessContainer {
    display: block;
    margin: 52px auto 0;
    width: calc(280 / 375 * 100vw);
  }
}

.accessCont {
  max-width: 475px;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .accessCont {
    max-width: 100%;
  }
}
.accessCont_ttl {
  font-size: 20px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .accessCont_ttl {
    font-size: 15px;
  }
}
.accessCont_info {
  margin-top: 16px;
  font-family: var(--font-overpass);
  font-size: 15px;
  line-height: 1.7333333333;
}
@media screen and (max-width: 767px) {
  .accessCont_info {
    font-size: 13px;
    line-height: 1.6923076923;
  }
}
.accessCont_info dl {
  display: flex;
  gap: 0 31px;
}
@media screen and (max-width: 767px) {
  .accessCont_info dl {
    gap: 0 20px;
  }
}
.accessCont_info dl + dl {
  margin-top: 27px;
}
@media screen and (max-width: 767px) {
  .accessCont_info dl + dl {
    margin-top: 20px;
  }
}
.accessCont_info dt {
  width: 48px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .accessCont_info dt {
    width: 44px;
    padding-left: 2px;
  }
}
.accessCont_info dd {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .accessCont_info ._splargeText {
    font-size: 15px;
  }
}
.accessCont_info ._mapLink {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 6px;
  font-size: 16px;
  font-style: italic;
  letter-spacing: 0.02em;
  -webkit-text-decoration: underline rgba(0, 0, 0, 0.5);
          text-decoration: underline rgba(0, 0, 0, 0.5);
  text-underline-offset: 0.6em;
}
@media (hover: hover) {
  .accessCont_info ._mapLink {
    transition: opacity 0.3s;
  }
  .accessCont_info ._mapLink:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .accessCont_info ._mapLink {
    margin-top: 12px;
    font-size: 13px;
    text-underline-offset: 0.4em;
  }
}
.accessCont_train {
  margin-top: 25px;
  padding: 13px 19px 14px;
  border: 1px solid rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .accessCont_train {
    margin-top: 29px;
    padding: 16px 20px 18px;
    font-size: 13px;
  }
}
.accessCont_train ._ttl {
  letter-spacing: 0.1em;
}
.accessCont_train ._list {
  margin-top: 11px;
}
@media screen and (max-width: 767px) {
  .accessCont_train ._list {
    margin-top: 10px;
  }
}
.accessCont_train ._list li {
  padding-left: 19px;
  line-height: 1.7333333333;
  position: relative;
}
@media screen and (max-width: 767px) {
  .accessCont_train ._list li {
    padding-left: 17px;
    line-height: 1.6923076923;
  }
}
.accessCont_train ._list li::before {
  content: "■";
  position: absolute;
  top: 0;
  left: 0;
}

.accessMap {
  width: 41.1%;
  margin-top: 52px;
  margin-right: min(calc(44 / var(--break-point) * 100vw), 44px);
}
@media screen and (max-width: 767px) {
  .accessMap {
    width: 100%;
    margin-top: 40px;
    margin-right: 0;
  }
}
.accessMap img {
  width: 100%;
}

/* ========================================
対応エリア
======================================== */
.area {
  margin-top: 150px;
  padding-top: 80px;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  .area {
    margin-top: 73px;
  }
}

@media screen and (max-width: 1024px) {
  .areaList {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .areaList {
    margin-top: 46px;
  }
}
.areaList > li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 30px;
}
@media screen and (max-width: 1024px) {
  .areaList > li {
    display: block;
    width: calc(300 / 375 * 100vw);
    max-width: 680px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1025px) {
  .areaList > li + li {
    border-top: 1px solid #707070;
  }
}
@media screen and (max-width: 1024px) {
  .areaList > li + li {
    margin-top: 128px;
  }
}
.areaList_contBox {
  width: 43.5%;
}
@media screen and (max-width: 1024px) {
  .areaList_contBox {
    width: 100%;
  }
}
.areaList_ttl {
  padding-left: 96px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.1em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .areaList_ttl {
    padding-left: 67px;
    font-size: 14px;
    letter-spacing: 0.08em;
  }
}
.areaList_ttl::before {
  content: "";
  display: block;
  width: 81px;
  height: 29px;
  background: #DDD0BF;
  border-radius: 2px;
  position: absolute;
  top: 4px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .areaList_ttl::before {
    width: 51px;
    height: 20px;
  }
}
.areaList_area {
  margin-top: 12px;
  padding: 15px 0 20px;
}
@media screen and (max-width: 767px) {
  .areaList_area {
    margin-top: 7px;
    padding: 5px 0 10px;
  }
}
.areaList_area:nth-of-type(1) {
  border-top: 1px solid #707070;
}
.areaList_area:nth-last-of-type(1) {
  border-bottom: 1px solid #707070;
}
.areaList_area + .areaList_area {
  margin-top: 0;
}
.areaList_area dt {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .areaList_area dt {
    font-size: 14px;
  }
}
.areaList_area dd {
  margin-top: 10px;
  line-height: 1.7333333333;
  font-family: var(--font-sans);
}
@media screen and (max-width: 767px) {
  .areaList_area dd {
    margin-top: 9px;
    font-size: 12px;
    line-height: 1.8333333333;
  }
}
.areaList_conditional {
  display: flex;
  align-items: flex-start;
  gap: 0 15px;
  margin-top: 49px;
}
@media screen and (max-width: 1024px) {
  .areaList_conditional {
    margin-top: 12px;
  }
}
@media screen and (max-width: 767px) {
  .areaList_conditional {
    gap: 0 17px;
    margin-top: 5px;
  }
}
.areaList_conditional ._style {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 81px;
  height: 29px;
  background: #A3937C;
  border-radius: 2px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transform: translateY(4px);
}
@media screen and (max-width: 767px) {
  .areaList_conditional ._style {
    width: 51px;
    height: 20px;
    font-size: 12px;
  }
}
.areaList_conditional ._desc {
  flex: 1;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .areaList_conditional ._desc {
    font-size: 14px;
  }
}
.areaList_conditional ._notes {
  padding-left: 20px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .areaList_conditional ._notes {
    padding-left: 12px;
    font-size: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .areaList_map {
    text-align: center;
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .areaList_map {
    margin: 38px auto 0;
  }
  .areaList_map img {
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .areaList .-osaka {
    margin-top: 47px;
  }
  .areaList .-osaka .areaList_contBox {
    transform: translateY(-11%);
  }
  .areaList .-osaka .areaList_map {
    width: 46.7%;
    transform: translate(-4.7%, 0%);
  }
}
@media screen and (max-width: 767px) {
  .areaList .-osaka .areaList_map {
    width: calc(240 / 375 * 100vw);
    transform: translateX(-3%);
  }
}
@media screen and (min-width: 1025px) {
  .areaList .-kyoto {
    margin-top: 96px;
    padding-top: 88px;
    align-items: flex-start;
  }
  .areaList .-kyoto .areaList_contBox {
    padding-top: 115px;
  }
  .areaList .-kyoto .areaList_map {
    width: 49.1%;
  }
}
@media screen and (max-width: 767px) {
  .areaList .-kyoto .areaList_map {
    width: calc(270 / 375 * 100vw);
  }
}
@media screen and (min-width: 1025px) {
  .areaList .-hyogo {
    margin-top: 88px;
    padding-top: 88px;
    align-items: flex-start;
  }
  .areaList .-hyogo .areaList_contBox {
    padding-top: 113px;
  }
  .areaList .-hyogo .areaList_map {
    width: 44.3%;
  }
}
@media screen and (max-width: 767px) {
  .areaList .-hyogo .areaList_map {
    width: calc(253 / 375 * 100vw);
  }
}

/* ========================================
お問合せ
======================================== */
.contact {
  margin-top: 114px;
  padding-top: 80px;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  .contact {
    margin-top: 53px;
  }
}
.contact_read {
  margin-top: 46px;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact_read {
    margin-top: 38px;
    font-size: 15px;
    line-height: 1.8666666667;
  }
}

.contactInfo {
  margin-top: 65px;
}
.contactInfo_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.5);
  cursor: auto;
}
@media screen and (max-width: 767px) {
  .contactInfo_icon {
    width: 72px;
    height: 72px;
  }
}
.contactInfo_icon svg {
  width: 27px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .contactInfo_icon svg {
    width: 24px;
  }
}
.contactInfo_tel {
  margin-top: 20px;
  text-align: center;
}
.contactInfo_tel a {
  display: inline-block;
  text-align: center;
  font-family: var(--font-overpass);
  font-size: 20px;
  font-weight: 200;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1;
}
.contactInfo_time {
  margin-top: 4px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contactInfo_time {
    margin-top: 1px;
  }
}

.contactForm {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 70px auto 0;
  padding-top: 30px;
}
@media screen and (max-width: 1024px) {
  .contactForm {
    display: block;
    max-width: 680px;
  }
}
@media screen and (max-width: 767px) {
  .contactForm {
    margin-top: 20px;
    padding-top: 60px;
  }
}
.contactForm_head {
  width: 34%;
  padding-left: 50px;
}
@media screen and (max-width: 1024px) {
  .contactForm_head {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .contactForm_head {
    text-align: center;
  }
}
.contactForm_head ._ttl {
  padding-top: 17px;
  font-family: var(--font-overpass);
  font-size: 22px;
  font-weight: 200;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .contactForm_head ._ttl {
    padding-top: 0;
    font-size: 16px;
  }
}
.contactForm_head ._desc {
  margin-top: 28px;
  font-size: 13px;
  line-height: 2.3076923077;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .contactForm_head ._desc {
    margin-top: 29px;
    line-height: 1.8461538462;
  }
}
.contactForm_head ._notes {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .contactForm_head ._notes {
    margin-top: 5px;
    font-size: 10px;
  }
}
.contactForm_container {
  width: 64%;
}
@media screen and (max-width: 1024px) {
  .contactForm_container {
    width: 100%;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .contactForm_container {
    margin-top: 36px;
  }
}
.contactForm_inputArea {
  background: #F2EFEA;
  padding: 22px 30px 30px;
}
@media screen and (max-width: 767px) {
  .contactForm_inputArea {
    padding: 32px 24px 18px;
  }
}
.contactForm_cont {
  display: flex;
}
@media screen and (max-width: 767px) {
  .contactForm_cont {
    display: block;
  }
}
.contactForm_cont + .contactForm_cont {
  margin-top: 30px;
}
.contactForm_cont dt {
  width: 180px;
  padding-top: 13px;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .contactForm_cont dt {
    width: 100%;
    padding-top: 0;
    font-size: 13px;
  }
}
.contactForm_cont dd {
  flex: 1;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .contactForm_cont dd {
    margin-top: 15px;
    font-size: 11px;
  }
}
.contactForm input,
.contactForm textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  width: 100%;
  height: 46px;
  margin: 0;
  padding: 0 15px;
  background: #fff;
  box-shadow: 0;
  border: 0;
  border-radius: 0;
  color: var(--color-base);
  font-family: var(--font-base);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: inherit;
  outline: none;
}
@media screen and (max-width: 767px) {
  .contactForm input,
  .contactForm textarea {
    height: 33px;
    padding: 0 10px;
    font-size: 11px;
  }
}
.contactForm input::-moz-placeholder, .contactForm textarea::-moz-placeholder {
  color: #A7A7A7;
}
.contactForm input::placeholder,
.contactForm textarea::placeholder {
  color: #A7A7A7;
}
.contactForm input[type=submit] {
  display: block;
  border: 1px solid #000;
  transition: 0.3s;
  cursor: pointer;
}
.contactForm textarea {
  height: 199px;
  padding-top: 15px;
  padding-bottom: 15px;
  resize: vertical;
  form-sizing: content;
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .contactForm textarea {
    height: 150px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.contactForm_checkbox input[type=radio],
.contactForm_checkbox input[type=checkbox] {
  display: none;
}
.contactForm_checkbox label {
  display: block;
  cursor: pointer;
}
.contactForm_checkbox span {
  display: inline-block;
  position: relative;
  padding-left: 27px;
}
@media screen and (max-width: 767px) {
  .contactForm_checkbox span {
    padding-left: 18px;
  }
}
.contactForm_checkbox span::before, .contactForm_checkbox span::after {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  border-radius: 1px;
  position: absolute;
  top: 5px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .contactForm_checkbox span::before, .contactForm_checkbox span::after {
    width: 11px;
    height: 11px;
    top: 6px;
  }
}
.contactForm_checkbox span::before {
  border: 1px solid #000;
  background-color: #fff;
}
.contactForm_checkbox span::after {
  transform: scale(64.7058823529%, 64.7058823529%);
  background-color: #000;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .contactForm_checkbox span::after {
    transform: scale(63.6363636364%, 63.6363636364%);
  }
}
.contactForm_checkbox input:checked + span::after {
  opacity: 1;
}
.contactForm_rec {
  margin-left: 4px;
  font-size: 10px;
  vertical-align: top;
}
.contactForm_error {
  margin-top: 4px;
  color: #BB0611;
  font-size: 14px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .contactForm_error {
    font-size: 12px;
  }
}
.contactForm_notes {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .contactForm_notes {
    font-size: 10px;
  }
}
.contactForm_submit {
  width: 203px;
  height: 57px;
  padding-top: 0.1em;
  border: 1px solid rgba(0, 0, 0, 0.5);
  font-size: 15px;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 767px) {
  .contactForm_submit {
    width: 99px;
    height: 35px;
    font-size: 11px;
  }
}
@media (hover: hover) {
  .contactForm_submit {
    transition: color 0.3s, background-color 0.3s;
  }
  .contactForm_submit:hover {
    color: #fff;
    background-color: #000;
  }
}
@media screen and (max-width: 767px) {
  .contactForm .-type {
    margin-bottom: -2px;
  }
}
.contactForm .-type .contactForm_checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 0;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .contactForm .-type .contactForm_checkbox {
    gap: 7px 0;
    margin-top: 17px;
  }
}
.contactForm .-type .contactForm_checkbox > * {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .contactForm .-type .contactForm_checkbox > * {
    min-width: 138px;
  }
}
.contactForm .-type dd {
  padding-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .contactForm .-type dd {
    padding-bottom: 0;
  }
}
.contactForm .-address_box02 {
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  .contactForm .-address_box02 {
    margin-top: 17px;
  }
}
.contactForm .-address_box03 {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .contactForm .-address_box03 {
    margin-top: 20px;
  }
}
.contactForm .-how_box01 {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .contactForm .-how_box01 {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px 0;
    padding-top: 3px;
  }
}
.contactForm .-how_box01_cont01 {
  width: 85px;
}
@media screen and (max-width: 767px) {
  .contactForm .-how_box01_cont01 {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .contactForm .-how_box01_cont02 {
    flex: 1;
  }
}
@media screen and (max-width: 767px) {
  .contactForm .-how_box01_cont02 {
    width: 100%;
  }
}
.contactForm .-how_box02 {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .contactForm .-how_box02 {
    margin-top: 17px;
  }
}
.contactForm .-estateType {
  margin-top: 39px;
}
@media screen and (max-width: 767px) {
  .contactForm .-estateType {
    margin-top: 33px;
    padding-bottom: 2px;
  }
}
.contactForm .-estateType .contactForm_checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 24px min(calc(40 / 375 * 100vw), 40px);
  padding-top: 9px;
}
@media screen and (max-width: 767px) {
  .contactForm .-estateType .contactForm_checkbox {
    padding-top: 2px;
  }
}
.contactForm .-estateType_text {
  display: block;
  margin-top: -2px;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .contactForm .-estateType_text {
    display: inline-block;
    font-size: 10px;
  }
}
.contactForm_privacy {
  margin-top: 51px;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .contactForm_privacy {
    margin-top: 47px;
    padding: 0;
  }
}
.contactForm_privacy dt {
  padding-top: 10px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .contactForm_privacy dt {
    padding-top: 0;
    text-align: center;
    letter-spacing: 0.1em;
  }
}
.contactForm_privacy ._contBox {
  height: 178px;
  margin-bottom: 15px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  padding: 10px 14px 15px;
  font-size: 12px;
  line-height: 2.1666666667;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .contactForm_privacy ._contBox {
    width: calc(277 / 375 * 100vw);
    height: 168px;
    margin: 26px auto 22px;
    font-size: 11px;
    line-height: 2.1818181818;
  }
}
@media screen and (max-width: 767px) {
  .contactForm_privacy .contactForm_checkbox {
    text-align: center;
  }
  .contactForm_privacy .contactForm_checkbox label {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.contactForm_appBox {
  width: 100%;
  margin-top: 75px;
  padding-top: 46px;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  text-align: center;
}
.contactForm_appBox ._desc {
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .contactForm_appBox ._desc {
    margin-bottom: 32px;
    font-size: 11px;
    line-height: 2.1818181818;
    letter-spacing: 0.02em;
  }
}

/* ========================================
送信完了
======================================== */
.complete {
  padding: 269px 0 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .complete {
    padding-top: 193px;
  }
}
.complete_enTtl {
  font-family: var(--font-overpass);
  font-weight: 200;
  font-size: 30px;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .complete_enTtl {
    font-size: 19px;
  }
}
.complete_ttl {
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .complete_ttl {
    font-size: 10px;
  }
}
.complete_desc {
  margin-top: 55px;
  text-align: center;
  font-size: 17px;
  line-height: 1.8823529412;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .complete_desc {
    margin-top: 49px;
    font-size: 12px;
    line-height: 2;
    letter-spacing: 0;
  }
}
.complete_link a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 113px auto 0;
  padding-bottom: 13px;
  background: url(/images/osaka/arrow_left.svg) center bottom/auto no-repeat;
  font-family: var(--font-overpass);
  font-size: 20px;
  font-weight: 200;
  font-style: italic;
  letter-spacing: 0.02em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .complete_link a {
    margin-top: 126px;
    font-size: 13px;
    background-size: 5px auto;
  }
}