@charset "UTF-8";
/*----------------------------------------
	clearfix
----------------------------------------*/
/*----------------------------------------
	reset
----------------------------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
article, aside, dialog, figure, footer, header, hgroup, main, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  right: 0;
  width: 100%;
  line-height: 1.8;
  color: #222222;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  body {
    line-height: 1.8;
  }
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

img {
  width: 100%;
  height: auto;
  border: 0;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

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

caption, th {
  text-align: left;
}

hr {
  margin: 1em 0;
  padding: 0;
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
}

input, select {
  vertical-align: middle;
}

input, textarea {
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

a {
  color: inherit;
  outline: none;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (min-width: 768px) {
  a:hover {
    opacity: 0.7;
  }
}

/*----------------------------------------
	Google Web Font
----------------------------------------*/
/**
 * Roboto
 * regular, bold
 * font-family: 'Roboto', sans-serif;
 */
/**
 * Montserrat
 * regular, bold
 * font-family: 'Montserrat', sans-serif;
 */
/**
 * Noto Sans Jp
 * regular, bold
 * font-family: font-family:'Noto Sans JP',"Noto Sans Japanese";
 */
/*----------------------------------------
	fontSize
----------------------------------------*/
html {
  /* font-size: 10px;  ← これを下の行に変更 */
  font-size: 62.5%;
}

body {
  font-size: 1.7rem; /* ここはそのまま（16px相当）でOK */
}

.u-wrapper-l {
  max-width: 1000px;
  margin: 0 auto;
}

.u-wrapper-m {
  max-width: 800px;
  margin: 0 auto;
}

.u-wrapper-s {
  max-width: 500px;
  margin: 0 auto;
}

.u-device-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-device-sp {
    display: block;
  }
}

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

.l-main {
  margin-right: 170px;
}
@media screen and (max-width: 768px) {
  .l-main {
    margin-right: 0;
  }
}

@-webkit-keyframes extendBg {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@keyframes extendBg {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@-webkit-keyframes maskTextReveal {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes maskTextReveal {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-hero {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .p-hero {
    height: calc(100vh - 50px);
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .p-hero {
    height: auto;
  }
}
.p-hero__catch-wrapper {
  position: relative;
  width: 92%;
  padding: 18px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .p-hero__catch-wrapper {
    padding: 15px 20px;
  }
}
.p-hero__catch-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #D34B3C;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-animation: extendBg 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: extendBg 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.p-hero__catch {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 24px;
  font-weight: normal;
  letter-spacing: 0.1em;
  margin: 0;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-animation: maskTextReveal 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.4s forwards;
          animation: maskTextReveal 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.4s forwards;
}
@media screen and (max-width: 768px) {
  .p-hero__catch {
    font-size: 16px;
  }
}
.p-hero__slider {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .p-hero__slider {
    height: 1px;
  }
}
@media screen and (max-width: 768px) {
  .p-hero__slider {
    height: 60vh;
  }
}
.p-hero__slider .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}
.p-hero__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

/* =========
  PageTop
========= */
.c-pagetop {
  position: absolute;
  right: 60px;
  top: -45px;
  z-index: 40;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  width: 96px;
  height: auto;
  opacity: 0; /* 透明にする */
  visibility: hidden; /* クリック判定も消す */
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s; /* 0.3秒かけて変化 */
}
.c-pagetop img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
          filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}
@media screen and (max-width: 768px) {
  .c-pagetop {
    right: 8px;
    bottom: 12px;
    top: auto;
    width: 96px;
    height: 96px;
    position: fixed;
  }
}

.c-pagetop.is-show {
  opacity: 1; /* 不透明（見える） */
  visibility: visible; /* クリック判定を戻す */
}

.m-heading__wrap {
  border-bottom: 1px solid #D3D3D3;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*----------------------------------------
	m-heading01
----------------------------------------*/
.m-heading01 {
  font-size: 2.1rem;
  line-height: 1;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .m-heading01 {
    font-size: 2.1rem;
  }
}
/*----------------------------------------
	m-table
----------------------------------------*/
/*----------------------------------------
	m-list
----------------------------------------*/
.m-list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 10px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .m-list dl {
    font-size: 1.6rem;
  }
}
.m-list dl dt, .m-list dl dd {
  padding: 12px 0;
}
@media screen and (max-width: 768px) {
  .m-list dl dt, .m-list dl dd {
    padding: 0;
  }
}
.m-list dl dt {
  width: 200px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 768px) {
  .m-list dl dt {
    border-bottom: none;
    color: #271477;
  }
}
.m-list dl dt {
  position: relative;
}
.m-list dl dt:before {
  content: "";
  width: 60px;
  height: 2px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: #333;
}
@media screen and (max-width: 768px) {
  .m-list dl dt:before {
    display: none;
  }
}
.m-list dl dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 768px) {
  .m-list dl dd {
    border-bottom: 0;
  }
}
.m-list dl dd ul {
  margin: 0;
  list-style: disc;
}
.m-list dl dd ul li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}
.m-list dl dd ul li:last-child {
  margin-bottom: 0;
}
.m-list dl dd small {
  font-size: 0.85em;
  color: inherit;
  display: block;
  margin-top: 0.5em;
}
.m-list dl:last-child {
  border-bottom: 0;
}
.m-list dl:last-child dt, .m-list dl:last-child dd {
  border-bottom: 0;
}
.m-list dl:last-child dt:before, .m-list dl:last-child dd:before {
  display: none;
}
@media (max-width: 768px) {
  .m-list dl {
    display: block;
    border-top: 1px solid #BCBCBC;
    padding: 10px 20px;
  }
  .m-list dl dt {
    width: 100%;
    margin-bottom: 8px;
  }
  .m-list dl dd {
    width: 100%;
    padding-left: 0;
  }
}

.m__breadcrumb {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .m__breadcrumb {
    top: 20px;
    right: 20px;
  }
}
.m__breadcrumb ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: #333;
}
.m__breadcrumb ol li {
  list-style: none;
  position: relative;
}
.m__breadcrumb ol li:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #999999;
  border-radius: 100%;
  position: absolute;
  left: -12px;
  top: 52%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.m__breadcrumb ol a {
  color: #333;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.m__breadcrumb ol a:hover {
  opacity: 0.7;
}
.m__breadcrumb.-white ol {
  color: #ffffff;
}
.m__breadcrumb.-white ol li a {
  color: #ffffff;
}

/*----------------------------------------
	共通部分
----------------------------------------*/
/* 共通幅 */
body {
  overflow-x: clip;
}

.l-wrapper {
  overflow-x: clip;
  width: 100%;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.m-wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .m-wrap {
    padding: 0 15px;
  }
}

.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 100%;
  padding: 20px 10px;
  color: #fff;
  text-decoration: none;
  line-height: 1.5;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-btn:hover {
  opacity: 0.8;
}
.c-btn--brown {
  background-color: #9d8e7e;
}
.c-btn--red {
  background-color: #cb352d;
}

.c-title-center {
  text-align: center;
  font-size: 26px;
  font-weight: 400;
  color: #333;
}
@media screen and (max-width: 768px) {
  .c-title-center {
    font-size: 18px;
  }
}

.c-section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-size: 26px;
  font-weight: 400;
  color: #333;
}
.c-section-title .en {
  font-size: 14px;
  font-weight: normal;
  color: #666;
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  .c-section-title {
    font-size: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-section-title .en {
    margin-left: 0;
    margin-top: 5px;
    font-size: 12px;
  }
}

.c-btn-large {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 40px;
  background-color: #D34B3C;
  color: #fff;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.6rem;
}
.c-btn-large:hover {
  opacity: 0.8;
}
.c-btn-large__text {
  font-size: 18px;
  letter-spacing: 0.05em;
}
.c-btn-large__line {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  background-color: #fff;
  margin: 0 30px;
  opacity: 0.8;
}
.c-btn-large__en {
  font-size: 16px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-btn-large {
    padding: 20px;
  }
  .c-btn-large__text {
    font-size: 14px;
  }
  .c-btn-large__line {
    margin: 0 15px;
  }
  .c-btn-large__en {
    font-size: 12px;
  }
}

.l-header-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-header-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #fff;
    z-index: 1000;
    padding: 0 15px;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
}
.l-header-sp__logo {
  width: 90px;
}
.l-header-sp__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.c-hamburger {
  position: relative;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
  outline: none;
}
.c-hamburger__line {
  position: absolute;
  left: 5px;
  width: 30px;
  height: 2px;
  background-color: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.c-hamburger__line:nth-of-type(1) {
  top: 10px;
}
.c-hamburger__line:nth-of-type(2) {
  top: 19px;
}
.c-hamburger__line:nth-of-type(3) {
  top: 28px;
}
.c-hamburger.is-active .c-hamburger__line:nth-of-type(1) {
  top: 19px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-hamburger.is-active .c-hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.c-hamburger.is-active .c-hamburger__line:nth-of-type(3) {
  top: 19px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.l-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 170px;
  height: 100vh;
  background-color: #fff;
  z-index: 100;
  -webkit-box-shadow: -2px 0 10px rgba(0, 0, 0, 0.05);
          box-shadow: -2px 0 10px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .l-header {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 999;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transition: left 0.3s ease;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .l-header.is-active {
    left: 0;
  }
}
.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.l-header__logo {
  padding: 54px 0;
  text-align: center;
  width: 90px;
  margin: 0 auto;
}
.l-header__logo img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    display: none;
  }
}
.l-header__nav {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 12px;
}
.l-header__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-header__nav li {
  margin-bottom: 25px;
  text-align: center;
}
.l-header__nav li:last-child {
  margin-bottom: 0;
}
.l-header__nav a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.l-header__nav a:hover {
  color: #cb352d;
}
@media screen and (max-width: 768px) {
  .l-header__nav {
    display: block;
    margin-bottom: 40px;
  }
  .l-header__nav li {
    margin-bottom: 0;
    border-bottom: 1px solid #eee;
  }
  .l-header__nav li a {
    display: block;
    padding: 20px;
    font-size: 16px;
    font-weight: bold;
  }
}
.l-header__actions {
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .l-header__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    padding: 0 20px;
  }
}
.l-header__btn {
  min-height: 80px;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .l-header__btn {
    min-height: 60px;
    padding: 15px;
  }
  .l-header__btn br {
    display: none;
  }
}

.l-footer {
  background-color: #212121;
  color: #fff;
  padding: 60px 0 120px;
  background-image: url("../images/bg-footer-wave.png");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 768px) {
  .l-footer {
    margin-right: 0;
    padding: 50px 0 80px;
  }
}
.l-footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 768px) {
  .l-footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px;
    padding-bottom: 30px;
  }
}
.l-footer__logo {
  width: 155px;
}
@media screen and (max-width: 768px) {
  .l-footer__logo {
    width: 140px;
  }
}
.l-footer__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.l-footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .l-footer__info {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    gap: 25px;
  }
}
.l-footer__nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .l-footer__nav-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
}
.l-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-footer__nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-footer__nav a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .l-footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
.l-footer__ig {
  width: 34px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-footer__ig:hover {
  opacity: 0.7;
}
.l-footer__ig img {
  width: 100%;
  height: auto;
}
.l-footer__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .l-footer__contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
    width: 100%;
  }
}
.l-footer__tel {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .l-footer__tel {
    text-align: left;
  }
}
.l-footer__tel .label {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
}
.l-footer__tel .number {
  display: block;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  font-family: Arial, sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .l-footer__tel .number {
    font-size: 28px;
  }
}
.l-footer__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  width: 390px;
}
@media screen and (max-width: 768px) {
  .l-footer__btns {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer__btns .c-btn {
  padding: 15px 10px;
  font-size: 14px;
}
.l-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .l-footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 30px;
    padding-top: 30px;
  }
}
.l-footer__sublogo {
  width: 280px;
}
@media screen and (max-width: 768px) {
  .l-footer__sublogo {
    width: 220px;
  }
}
.l-footer__sublogo img {
  width: 100%;
  height: auto;
  display: block;
}
.l-footer__copyright {
  text-align: right;
  font-size: 12px;
  color: #ccc;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .l-footer__copyright {
    text-align: left;
  }
}
.l-footer__copyright p {
  margin: 0;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15); /* 拡大率 */
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15); /* 拡大率 */
  }
}
.wave-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .wave-container {
    height: 14vw;
  }
}

.wave-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.waves {
  position: relative;
  width: 100%;
  height: 80px;
}

.parallax > use {
  -webkit-animation: move-forever 60s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
          animation: move-forever 60s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
  -webkit-animation-duration: 15s;
          animation-duration: 15s;
}

.parallax > use:nth-child(2) {
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
}

@-webkit-keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0);
  }
}

@keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0);
  }
}
/* Shrinking for mobile */
@media screen and (max-width: 768px) {
  .waves {
    height: 100%;
  }
}
@-webkit-keyframes floatFade {
  0% {
    -webkit-transform: translate(0, -50%) translateY(0);
            transform: translate(0, -50%) translateY(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, -50%) translateY(-30px);
            transform: translate(0, -50%) translateY(-30px);
    opacity: 1;
  }
}
@keyframes floatFade {
  0% {
    -webkit-transform: translate(0, -50%) translateY(0);
            transform: translate(0, -50%) translateY(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, -50%) translateY(-30px);
            transform: translate(0, -50%) translateY(-30px);
    opacity: 1;
  }
}
@-webkit-keyframes floatFade2 {
  0% {
    -webkit-transform: translate(0, -50%) translateY(0);
            transform: translate(0, -50%) translateY(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, -50%) translateY(0);
            transform: translate(0, -50%) translateY(0);
    opacity: 1;
  }
}
@keyframes floatFade2 {
  0% {
    -webkit-transform: translate(0, -50%) translateY(0);
            transform: translate(0, -50%) translateY(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, -50%) translateY(0);
            transform: translate(0, -50%) translateY(0);
    opacity: 1;
  }
}
.p-clients {
  padding: 80px 0;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-clients {
    padding: 50px 0;
  }
}
.p-clients__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 50px 0 0;
}
.p-clients__list li {
  width: calc(25% - 30px);
  max-width: 200px;
}
.p-clients__list li img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .p-clients__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }
  .p-clients__list li {
    width: calc(50% - 10px);
  }
}

.p-properties__header {
  background-color: #fff;
  padding: 40px 0 20px;
}
@media screen and (max-width: 768px) {
  .p-properties__header {
    padding: 30px 0 15px;
  }
}
.p-properties__body {
  background-color: #f5f5f5;
  padding: 60px 0 80px;
}
@media screen and (max-width: 768px) {
  .p-properties__body {
    padding: 40px 0 60px;
  }
}
.p-properties__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-properties__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }
}
.p-properties__btn {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-property-card {
    width: 100%;
  }
}
.p-property-card a {
  display: block;
  text-decoration: none;
  color: #333;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-property-card a:hover {
  opacity: 0.8;
}
.p-property-card__img {
  margin: 0 0 20px;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.p-property-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-property-card__info {
  padding: 0 10px;
}
.p-property-card__title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
}
@media screen and (max-width: 768px) {
  .p-property-card__title {
    font-size: 18px;
  }
}
.p-property-card__access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  font-size: 14px;
}
.p-property-card__access .label {
  font-weight: 500;
}
.p-property-card__access .text {
  color: #333;
}

.p-about {
  width: 100%;
  background-color: #f7f7f7;
}
.p-about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 768px) {
  .p-about__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-about__content {
  width: 50%;
  padding: 100px 5% 100px 8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-about__content {
    width: 100%;
    padding: 60px 20px;
  }
}
.p-about__catch {
  font-size: 32px;
  font-weight: normal;
  color: #888;
  line-height: 1.4;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-about__catch {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.p-about__desc {
  line-height: 2;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-about__desc {
    margin-bottom: 40px;
  }
}
.p-about__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #333;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-about__link:hover {
  opacity: 0.7;
}
.p-about__link-line {
  display: inline-block;
  width: 60px;
  height: 1px;
  background-color: #333;
  margin-right: 15px;
}
.p-about__link-text {
  font-size: 16px;
  letter-spacing: 0.05em;
}
.p-about__img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-about__img {
    width: 100%;
    height: 300px;
  }
}
.p-about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-news {
  background-color: #f2f2f2;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .p-news {
    padding: 50px 0;
  }
}
.p-news .c-section-title {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-news .c-section-title {
    margin-bottom: 30px;
  }
}
.p-news__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-news__item {
  border-bottom: 1px solid #e0e0e0;
}
.p-news__item:first-child {
  border-top: 1px solid #e0e0e0;
}
.p-news__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 21px 0;
  text-decoration: none;
  color: #333;
  -webkit-transition: background-color 0.3s, opacity 0.3s;
  transition: background-color 0.3s, opacity 0.3s;
}
.p-news__item a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .p-news__item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px 0;
  }
}
.p-news__meta {
  width: 250px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  color: #666;
}
@media screen and (max-width: 768px) {
  .p-news__meta {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
    margin-bottom: 10px;
  }
}
.p-news__meta time {
  font-size: 16px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-news__meta time {
    font-size: 14px;
  }
}
.p-news__category {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .p-news__category {
    font-size: 12px;
  }
}
.p-news__title {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.6;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-news__title {
    font-size: 15px;
  }
}

.p-about-intro {
  width: 100%;
  background-color: #f7f7f7;
  padding-top: 60px;
}
.p-about-intro__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 768px) {
  .p-about-intro__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-about-intro__content {
  width: 50%;
  padding: 0 5% 0 8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-about-intro__content {
    width: 100%;
    padding: 60px 20px;
  }
}
.p-about-intro__catch {
  font-size: 32px;
  font-weight: normal;
  color: #b3b3b3;
  line-height: 1.4;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-about-intro__catch {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.p-about-intro__desc p {
  margin-bottom: 20px;
}
.p-about-intro__desc p:last-child {
  margin-bottom: 0;
}
.p-about-intro__img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-about-intro__img {
    width: 100%;
    height: 300px;
  }
}
.p-about-intro__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-about-feature {
  width: 100%;
}
.p-about-feature--dark {
  background-color: #444;
  color: #fff;
}
.p-about-feature--light {
  background-color: #f7f7f7;
  color: #333;
}
.p-about-feature__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 768px) {
  .p-about-feature__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-about-feature__content {
  width: 50%;
  padding: 100px 5% 100px 8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-about-feature__content {
    width: 100%;
    padding: 60px 20px;
  }
}
.p-about-feature__title {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-about-feature__title {
    font-size: 22px;
  }
}
.p-about-feature__desc {
  line-height: 2;
  font-size: 15px;
}
.p-about-feature__img {
  width: 50%;
  padding: 60px 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-about-feature__img {
    width: 100%;
    padding: 0;
    height: 300px;
  }
}
.p-about-feature__img img {
  width: 100%;
  height: auto;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media screen and (max-width: 768px) {
  .p-about-feature__img img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.movie_wrap {
  margin-bottom: 40px;
  width: 800px;
  margin: 0 auto 40px;
}
.movie_wrap iframe {
  width: 100%;
  height: 400px;
}

.p-company {
  padding: 100px 0;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-company {
    padding: 60px 0;
  }
}
.p-company__title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-company__title {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
.p-company__list {
  border-top: 1px solid #e0e0e0;
  margin-bottom: 60px;
}
.p-company__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 0;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (max-width: 768px) {
  .p-company__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 0;
  }
}
.p-company__row dt {
  width: 240px;
  font-weight: 500;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-company__row dt {
    width: 100%;
    margin-bottom: 15px;
    color: #666;
  }
}
.p-company__row dd {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  line-height: 1.8;
  margin: 0;
}
.p-company__row dd .note {
  font-size: 12px;
  color: #666;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .p-company__row dd .note {
    display: block;
    margin-left: 0;
    margin-top: 5px;
  }
}
.p-company__directors {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-company__directors li {
  margin-bottom: 5px;
}
.p-company__directors li:last-child {
  margin-bottom: 0;
}
.p-company__directors li .role {
  display: inline-block;
  width: 120px;
}
@media screen and (max-width: 768px) {
  .p-company__directors li .role {
    width: 90px;
  }
}
.p-company__licenses {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-company__licenses li {
  margin-bottom: 5px;
}
.p-company__licenses li:last-child {
  margin-bottom: 0;
}
.p-company__licenses li .type {
  display: inline-block;
  width: 180px;
}
@media screen and (max-width: 768px) {
  .p-company__licenses li .type {
    width: 100%;
    display: block;
    margin-bottom: 2px;
    color: #666;
    font-size: 13px;
  }
}
.p-company__btn {
  text-align: center;
}

.l-main {
  position: relative;
}

.p-page-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-page-hero {
    height: 50vh;
    min-height: auto;
  }
}
.p-page-hero__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 1;
}
.p-page-hero__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-page-hero__logo {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 10;
  width: 100px;
}
@media screen and (max-width: 768px) {
  .p-page-hero__logo {
    top: 20px;
    left: 20px;
    width: 90px;
  }
}
.p-page-hero__logo a {
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-page-hero__logo a:hover {
  opacity: 0.7;
}
.p-page-hero__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.p-page-hero__catch {
  position: absolute;
  top: 50%;
  right: 6%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .p-page-hero__catch {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
  }
}
.p-page-hero__catch .line {
  display: inline-block;
  background-color: #fff;
  color: #333;
  font-size: 20px;
  font-weight: 500;
  padding: 8px 15px;
  margin-bottom: 8px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-page-hero__catch .line {
    font-size: 15px;
    padding: 5px 10px;
    margin-bottom: 5px;
  }
}

.p-reason-value {
  padding: 80px 0;
}
.p-reason-value .c-title-center {
  margin-bottom: 15px;
}
.p-reason-value__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
}
@media screen and (max-width: 768px) {
  .p-reason-value__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.p-reason-value__card {
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  .p-reason-value__card {
    width: 100%;
  }
}
.p-reason-value__img {
  height: 500px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.6)));
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 20px;
  color: #fff;
  position: relative;
}
.p-reason-value__img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.p-reason-value__img .num {
  font-size: 18px;
  letter-spacing: 0.1em;
}
.p-reason-value__img .title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.p-reason-value__text {
  padding: 20px 0;
  font-size: 14px;
  line-height: 1.8;
  height: 100px;
}

.p-feature-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-feature-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-feature-block--dark {
  background-color: #444;
  color: #fff;
}
.p-feature-block--dark .en {
  color: #999;
}
.p-feature-block--dark .voice-box {
  background-color: #666;
  color: #fff;
}
.p-feature-block--light {
  background-color: #f2f2f2;
  color: #333;
}
.p-feature-block--light .en {
  color: #d6a9a9;
}
.p-feature-block--light .voice-box {
  background-color: #777;
  color: #fff;
}
.p-feature-block--black {
  background-color: #444;
  color: #fff;
}
.p-feature-block--black .en {
  color: #999;
}
.p-feature-block--black .voice-box {
  background-color: #666;
  color: #fff;
}
.p-feature-block__content {
  width: 50%;
  padding: 80px 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-feature-block__content {
    width: 100%;
    padding: 50px 20px;
  }
}
.p-feature-block__head {
  margin-bottom: 30px;
}
.p-feature-block__head .en {
  display: block;
  font-size: 24px;
  margin-bottom: 10px;
}
.p-feature-block__head .ja {
  font-size: 26px;
  line-height: 1.4;
  margin: 0;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-feature-block__head .ja {
    font-size: 22px;
  }
}
.p-feature-block__desc {
  line-height: 1.8;
  margin-bottom: 50px;
}
.p-feature-block__voice .voice-label {
  font-weight: 500;
  margin-bottom: 15px;
}
.p-feature-block__voice .voice-box {
  padding: 30px;
}
.p-feature-block__voice .voice-box p {
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 20px;
}
.p-feature-block__voice .voice-box p:first-child {
  font-weight: 500;
  font-size: 16px;
}
.p-feature-block__voice .voice-box p:last-child {
  margin-bottom: 0;
}
.p-feature-block__img {
  width: 40%;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .p-feature-block__img {
    width: 100%;
    height: 300px;
  }
}

.p-reason-target {
  padding: 80px 0 0;
}
.p-reason-target .c-title-center {
  margin-bottom: 40px;
}
.p-reason-target__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-reason-target__columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-reason-target__col {
  width: 33.3333333333%;
  height: 330px;
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  color: #fff;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-reason-target__col {
    width: 100%;
    height: 300px;
  }
}
.p-reason-target__col__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.p-reason-target__col__img:before {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7)));
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
.p-reason-target__col .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-reason-target__col .num {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.p-reason-target__col .sub {
  font-size: 12px;
  margin-bottom: 15px;
}
.p-reason-target__col .main {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

.p-reason-targets__btn {
  border: none;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.p-reason-targets__btn.is-active {
  position: relative;
}
.p-reason-targets__btn.is-active::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-width: 30px 30px 0 30px;
  border-style: solid;
  border-color: inherit;
}
.p-reason-targets__btn--red.is-active::after {
  border-color: #cb352d transparent transparent transparent;
}
.p-reason-targets__btn--brown.is-active::after {
  border-color: #9d8e7e transparent transparent transparent;
}

.p-reason-contents {
  position: relative;
  width: 100%;
}

.p-reason-content {
  display: none;
}
.p-reason-content.is-active {
  display: block;
  -webkit-animation: tabFadeIn 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: tabFadeIn 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@-webkit-keyframes tabFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes tabFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes blockReveal {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50.1% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}
@keyframes blockReveal {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50.1% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}
@-webkit-keyframes textReveal {
  0%, 50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes textReveal {
  0%, 50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tabFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-reason-targets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-reason-targets {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-reason-targets__btn {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px 20px;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .p-reason-targets__btn {
    width: 100%;
    padding: 20px;
  }
}
.p-reason-targets__btn .sub {
  font-size: 16px;
  margin-bottom: 10px;
}
.p-reason-targets__btn .main {
  font-size: 24px;
  font-weight: bold;
}
.p-reason-targets__btn--red {
  background-color: #cb352d;
}
.p-reason-targets__btn--brown {
  background-color: #9d8e7e;
}
.p-reason-targets__btn.is-active {
  opacity: 1;
  position: relative;
}
.p-reason-targets__btn.is-active::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-width: 24px 24px 0 24px;
  border-style: solid;
}
.p-reason-targets__btn--red.is-active::after {
  border-color: #cb352d transparent transparent transparent;
}
.p-reason-targets__btn--brown.is-active::after {
  border-color: #9d8e7e transparent transparent transparent;
}

.p-reason-contents {
  position: relative;
  width: 100%;
}

.p-reason-content {
  display: none;
}
.p-reason-content.is-active {
  display: block;
  -webkit-animation: tabFadeIn 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: tabFadeIn 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.p-contact {
  background-color: #dfdfdf;
  padding: 80px 0 120px;
  min-height: 100vh;
}
@media screen and (max-width: 768px) {
  .p-contact {
    padding: 40px 0 80px;
  }
}
.p-contact__header {
  position: relative;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-contact__header {
    margin-bottom: 40px;
  }
}
.p-contact__title {
  font-size: 28px;
  font-weight: 500;
  color: #333;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-contact__title {
    font-size: 22px;
  }
}
.p-contact__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 60px;
  background-color: #c4c4c4;
}
@media screen and (max-width: 768px) {
  .p-contact__step {
    margin-bottom: 40px;
  }
}
.p-contact__step li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  padding: 20px 0;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%, 20px 50%);
  margin-left: -20px;
}
@media screen and (max-width: 768px) {
  .p-contact__step li {
    font-size: 14px;
    padding: 15px 0;
  }
}
.p-contact__step li:first-child {
  margin-left: 0;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
}
.p-contact__step li:last-child {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 20px 50%);
}
.p-contact__step li.is-active {
  background-color: #fff;
  color: #333;
  z-index: 2;
}
.p-contact__form {
  width: 100%;
}
.p-contact__form input[type=text],
.p-contact__form input[type=email],
.p-contact__form input[type=tel],
.p-contact__form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  background-color: #fff;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.p-contact__form input[type=text]:focus,
.p-contact__form input[type=email]:focus,
.p-contact__form input[type=tel]:focus,
.p-contact__form textarea:focus {
  outline: none;
  border-color: #cb352d;
}
.p-contact__form .req {
  display: inline-block;
  background-color: #cb352d;
  color: #fff;
  font-size: 12px;
  padding: 4px 15px;
  margin-left: 15px;
  vertical-align: middle;
}
.p-contact__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-contact__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.p-contact .form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-contact .form-item label {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .p-contact .form-item label {
    font-size: 16px;
  }
}
.p-contact .form-item--textarea textarea {
  height: 200px;
  resize: vertical;
}
.p-contact .checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.p-contact .checkbox-label input[type=checkbox] {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  cursor: pointer;
}
.p-contact .checkbox-label .text {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-contact .checkbox-label .text {
    font-size: 15px;
  }
}
.p-contact .section-label {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-contact .section-label {
    font-size: 16px;
  }
}
.p-contact__newsletter {
  margin-bottom: 80px;
}
.p-contact__privacy {
  margin-bottom: 60px;
}
.p-contact__privacy .privacy-box {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 30px;
  height: 200px;
  overflow-y: scroll;
  margin-bottom: 30px;
  line-height: 1.8;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .p-contact__privacy .privacy-box {
    padding: 20px;
    height: 150px;
  }
}
.p-contact__privacy .agree-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-contact__submit {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}
.p-contact__submit button.c-btn-large {
  border: none;
  font-size: 1.9rem;
  font-weight: bold;
  cursor: pointer;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-faq {
  background-color: #e5e4e1;
  padding: 80px 0 120px;
  min-height: 100vh;
}
@media screen and (max-width: 768px) {
  .p-faq {
    padding: 60px 0 80px;
  }
}
.p-faq__list {
  border-top: 1px solid #000;
}
.p-faq__item {
  border-bottom: 1px solid #000;
}
.p-faq__q {
  padding: 30px 0;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-faq__q:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .p-faq__q {
    padding: 20px 0;
  }
}
.p-faq__q-num {
  display: block;
  font-size: 16px;
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-faq__q-num {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.p-faq__q-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.p-faq__q-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-faq__q-text {
    font-size: 16px;
  }
}
.p-faq__icon {
  position: relative;
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-faq__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-faq__icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: #000;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-faq__a {
  display: none;
}
.p-faq__a-inner {
  padding: 0 0 40px;
  background: #ffffff;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .p-faq__a-inner {
    padding: 0 0 20px;
    font-size: 14px;
  }
}
.p-faq__item.is-open .p-faq__icon::after {
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}

.p-step-flow {
  margin-top: 40px;
}
.p-step-flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-step-flow__item {
    margin-bottom: 30px;
  }
}
.p-step-flow__item:last-child {
  margin-bottom: 0;
}
.p-step-flow__item:last-child::before {
  display: none;
}
.p-step-flow__item::before {
  content: "";
  position: absolute;
  top: 100px;
  left: 50px;
  width: 1px;
  height: calc(100% + 40px - 100px);
  background-color: #333;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-step-flow__item::before {
    top: 70px;
    left: 35px;
    height: calc(100% + 30px - 70px);
  }
}
.p-step-flow__box {
  width: 100px;
  height: 100px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 2;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .p-step-flow__box {
    width: 70px;
    height: 70px;
  }
}
.p-step-flow__box .step-en {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .p-step-flow__box .step-en {
    font-size: 10px;
    margin-bottom: 2px;
  }
}
.p-step-flow__box .step-num {
  font-size: 32px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-step-flow__box .step-num {
    font-size: 24px;
  }
}
.p-step-flow__content {
  padding-left: 40px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .p-step-flow__content {
    padding-left: 20px;
  }
}
.p-step-flow__content .title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .p-step-flow__content .title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.p-step-flow__content .text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-step-flow__content .text {
    font-size: 14px;
  }
}
.p-step-flow__content .text:last-child {
  margin-bottom: 0;
}

.p-page-header {
  background-color: #e5e4e1;
  padding: 60px 0;
}
.p-page-header__title {
  font-size: 50px;
  font-family: Arial, sans-serif;
  color: #0b0c10;
  margin: 0 0 10px;
}
.p-page-header__sub {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.p-property-search {
  background-color: #f7f7f7;
  padding: 40px 0 60px;
}

.p-search-form__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  border-bottom: 1px solid #333;
  padding-bottom: 15px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-search-form__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
}
.p-search-form__features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .p-search-form__features {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
.p-search-form__count {
  font-size: 16px;
  font-weight: bold;
}
.p-search-form__count .num {
  font-size: 40px;
  font-family: Arial, sans-serif;
  margin: 0 5px;
}
.p-search-form__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .p-search-form__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.p-search-form__bottom .col-left {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .p-search-form__bottom .col-left {
    width: 100%;
  }
}
.p-search-form__bottom .col-right {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .p-search-form__bottom .col-right {
    width: 100%;
  }
}
.p-search-form .search-group {
  margin-bottom: 15px;
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
}
.p-search-form .search-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.p-search-form .search-group__title {
  font-weight: 500;
  margin-bottom: 15px;
}
.p-search-form__submit {
  text-align: center;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-search-form__submit .c-btn {
  width: 300px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
}

.c-btn-checks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.c-btn-checks label {
  cursor: pointer;
}
.c-btn-checks label input {
  display: none;
}
.c-btn-checks label input:checked + span {
  background-color: #333;
  color: #fff;
  border-color: #333;
}
.c-btn-checks label span {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #ccc;
  border-radius: 20px;
  background-color: #fff;
  font-size: 13px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-btn-checks label span:hover {
  background-color: #eee;
}

.c-check-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-weight: bold;
}
.c-check-label input {
  display: none;
}
.c-check-label input:checked + .icon {
  background-color: #333;
  border-color: #333;
  position: relative;
}
.c-check-label input:checked + .icon::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-check-label .icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  border-radius: 4px;
  margin-right: 10px;
  background-color: #fff;
}

.p-property-list {
  padding: 60px 0 100px;
  background-color: #e5e4e1;
}

.p-property-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-property-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.p-property-card {
  background-color: #f7f7f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}
.p-property-card__thumb {
  position: relative;
  overflow: hidden;
}
.p-property-card__thumb img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-property-card__thumb .labels {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
}
.p-property-card__thumb .labels.top-right {
  top: 0;
  right: 0;
}
.p-property-card__thumb .labels.bottom-left {
  bottom: 0;
  left: 0;
}
.p-property-card__thumb .label {
  padding: 6px 20px;
  font-size: 13px;
  color: #fff;
}
.p-property-card__thumb .label--brown {
  background-color: #beaa94;
}
.p-property-card__thumb .label--red {
  background-color: #cb352d;
}
.p-property-card__thumb .label--black {
  background-color: #0b0c10;
}
.p-property-card__info {
  padding: 20px 15px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.p-property-card__info .title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}
.p-property-card__info .specs {
  font-size: 12px;
}
.p-property-card__info .specs .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
}
.p-property-card__info .specs .row:last-child {
  margin-bottom: 0;
}
.p-property-card__info .specs .row dt {
  width: 70px;
  color: #888;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-property-card__info .specs .row dd {
  margin: 0;
  font-weight: 500;
  color: #333;
}
.p-property-card__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-property-card__actions a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 18px 5px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  line-height: 1.3;
}
.p-property-card__actions a:hover {
  opacity: 0.8;
}
.p-property-card__actions .btn-detail {
  background-color: #cb352d;
}
.p-property-card__actions .btn-contact {
  background-color: #333333;
}

.p-single__header {
  background-color: #f2f2f2;
  padding: 60px 0 30px;
}
.p-single__header .status-badge {
  display: inline-block;
  background-color: #555;
  color: #fff;
  padding: 5px 15px;
  margin-bottom: 20px;
  font-size: 14px;
}
.p-single__header .title {
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: 500;
}
.p-single__header .catch {
  font-size: 18px;
}
.p-single__nav {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 100;
}
.p-single__nav .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.p-single__nav .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-single__nav .nav-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.p-single__nav .nav-list li a:hover {
  background-color: #f7f7f7;
}
.p-single__nav .btn-nav-contact {
  width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
}
.p-single__main-slider {
  padding: 40px 0;
  overflow: hidden;
}
.p-single__main-slider .swiper-slide {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0.5;
}
.p-single__main-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.p-single__main-slider .swiper-slide img {
  width: 100%;
  height: 60vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-single__main-slider .swiper-button-prev, .p-single__main-slider .swiper-button-next {
  background-color: #000;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: auto;
  bottom: 20px;
}
.p-single__main-slider .swiper-button-prev::after, .p-single__main-slider .swiper-button-next::after {
  font-size: 20px;
}
.p-single__main-slider .swiper-button-prev {
  left: calc(10% - 60px);
}
.p-single__main-slider .swiper-button-next {
  left: calc(10% + 10px);
}

.p-layout__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.p-layout__tabs .tab-btn {
  padding: 10px 30px;
  background-color: #e5e5e5;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-layout__tabs .tab-btn.is-active, .p-layout__tabs .tab-btn:hover {
  background-color: #444;
  color: #fff;
}
.p-layout__contents .tab-content {
  display: none;
}
.p-layout__contents .tab-content.is-active {
  display: block;
}
.p-layout__contents .tab-content img {
  width: 100%;
  height: auto;
}

.p-features__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .p-features__list {
    gap: 60px;
  }
}
.p-features__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
}
@media screen and (max-width: 768px) {
  .p-features__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-features__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .p-features__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-features__img {
  width: 50%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-features__img {
    width: 100%;
    aspect-ratio: 3/2;
  }
}
.p-features__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-features__content {
  width: 50%;
  padding: 0 60px;
}
@media screen and (max-width: 768px) {
  .p-features__content {
    width: 100%;
    padding: 0 20px;
  }
}
.p-features__content .en {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-features__content .en {
    font-size: 14px;
  }
}
.p-features__content .ja {
  margin-bottom: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-features__content .ja {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.p-features__content .desc {
  margin: 0;
}

.p-single-sec {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .p-single-sec {
    padding: 50px 0;
  }
}
.p-single-sec .c-section-title {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-single-sec .c-section-title {
    margin-bottom: 30px;
  }
}

.p-floor {
  background-color: #f2f2f2;
}
.p-floor__img {
  background-color: #fff;
  padding: 40px;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-floor__img {
    padding: 20px;
    margin-bottom: 30px;
  }
}
.p-floor__img img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
.p-floor__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .p-floor__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.p-floor__specs {
  width: 35%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 40px;
}
@media screen and (max-width: 768px) {
  .p-floor__specs {
    width: 100%;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 20px;
  }
}
.p-floor__specs .spec-item {
  border-top: 2px solid #333;
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-floor__specs .spec-item .label {
  font-size: 13px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.p-floor__specs .spec-item .val {
  text-align: right;
  font-size: 14px;
}
.p-floor__specs .spec-item .val .num {
  font-size: 34px;
  font-family: Arial, sans-serif;
  margin-right: 5px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-floor__specs .spec-item .val .num {
    font-size: 28px;
  }
}
.p-floor__table-wrap {
  width: 63%;
}
@media screen and (max-width: 768px) {
  .p-floor__table-wrap {
    width: 100%;
    overflow-x: auto;
  }
}
.p-floor__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-floor__table {
    min-width: 600px;
  }
}
.p-floor__table th, .p-floor__table td {
  padding: 15px 10px;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
}
.p-floor__table th {
  font-weight: bold;
  border-top: 2px solid #333;
}
.p-floor__table .td-status {
  position: relative;
  font-weight: bold;
}
.p-floor .badge {
  display: inline-block;
  padding: 3px 8px;
  font-size: 11px;
  color: #fff;
  border-radius: 2px;
  white-space: nowrap;
}
.p-floor .badge--red {
  background-color: #cb352d;
}
.p-floor .badge--blue {
  background-color: #8da9d4;
  color: #fff;
}
.p-floor .badge--outline {
  background-color: transparent;
  color: #8da9d4;
  border: 1px solid #8da9d4;
}
.p-floor__legend {
  font-size: 12px;
  color: #666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.p-outline {
  background-color: #fff;
  padding-bottom: 0;
}
.p-outline .c-section-title {
  margin-bottom: 40px;
}
.p-outline__bg-wrap {
  background-color: #f2f2f2;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .p-outline__bg-wrap {
    padding: 40px 0;
  }
}
.p-outline__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-outline__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.p-outline__img {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .p-outline__img {
    width: 100%;
  }
}
.p-outline__img img {
  width: 100%;
  height: auto;
  display: block;
}
.p-outline__list {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .p-outline__list {
    width: 100%;
  }
}
.p-outline__list dl {
  margin: 0;
}
.p-outline__list .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 0;
  border-bottom: 1px solid #000000;
}
.p-outline__list .row:last-child {
  border-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-outline__list .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
    padding: 15px 0;
  }
}
.p-outline__list .row dt {
  width: 180px;
  font-weight: normal;
  color: #333;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .p-outline__list .row dt {
    width: 100%;
    color: #666;
    font-size: 13px;
  }
}
.p-outline__list .row dd {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 0;
  line-height: 1.6;
  font-weight: normal;
  color: #333;
  font-size: 15px;
}
.p-outline__notes {
  font-size: 12px;
  color: #333;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-outline__notes {
    font-size: 11px;
  }
}

.p-access {
  background-color: #f2f2f2;
}
.p-access__inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-access__inner {
    padding: 30px 0;
  }
}
.p-access__content {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .p-access__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.p-access .map-img {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .p-access .map-img {
    width: 100%;
  }
}
.p-access .map-img img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ccc;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.p-access .info-list {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .p-access .info-list {
    width: 100%;
  }
}
.p-access .info-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 40px;
}
@media screen and (max-width: 768px) {
  .p-access .info-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}
.p-access .info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 2px solid #333;
  padding-top: 12px;
}
.p-access .info-item .station {
  font-size: 14px;
  line-height: 1.4;
  padding-right: 10px;
}
.p-access .info-item .time {
  font-size: 14px;
  white-space: nowrap;
}
.p-access .info-item .time .num {
  font-size: 26px;
  margin: 0 4px;
  line-height: 1;
}

.p-layout__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
@media screen and (max-width: 768px) {
  .p-layout__tabs {
    gap: 10px;
    margin-bottom: 20px;
  }
}
.p-layout__tabs .tab-btn {
  padding: 10px 30px;
  background-color: #e5e5e5;
  border-radius: 100px;
  cursor: pointer;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .p-layout__tabs .tab-btn {
    padding: 8px 20px;
    font-size: 14px;
  }
}
.p-layout__tabs .tab-btn.is-active, .p-layout__tabs .tab-btn:hover {
  background-color: #444;
  color: #fff;
}
.p-layout__contents {
  width: 60%;
  margin: 0 auto;
}
.p-layout__contents .tab-content {
  display: none;
}
.p-layout__contents .tab-content.is-active {
  display: block;
}
.p-layout__contents .tab-content img {
  width: 100%;
  height: auto;
  display: block;
}

.p-related {
  background-color: #e5e4e1;
  overflow: hidden;
}
.p-related .js-related-slider {
  overflow: visible;
}

.c-rent-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.c-rent-search__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.c-rent-search__inputs input[type=number] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 150px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
}
.c-rent-search__inputs input[type=number]:focus {
  border-color: #333;
}
.c-rent-search__inputs .tilde {
  color: #666;
}
.c-rent-search__inputs .unit {
  font-size: 14px;
  font-weight: bold;
}
.c-rent-search__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-rent-search__options .radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.c-radio-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
}
.c-radio-label input {
  display: none;
}
.c-radio-label input:checked + .mark {
  border-color: #333;
}
.c-radio-label input:checked + .mark::after {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.c-radio-label .mark {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #999;
  border-radius: 50%;
  margin-right: 8px;
  background-color: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.c-radio-label .mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  width: 10px;
  height: 10px;
  background-color: #333;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.c-check-label--small {
  font-size: 13px;
  font-weight: normal;
}
.c-check-label--small .icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}
.c-check-label--small .icon::after {
  top: 1px;
  left: 4px;
  width: 3px;
  height: 7px;
}