/*!********************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./src/scss/style.scss ***!
  \********************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/*
Theme Name: Prosper
Theme URI: https://example.com/prosper
Author: Your Name
Author URI: https://example.com
Description: A modern and responsive WordPress theme for businesses and professionals. Features clean design, customizable layouts, and optimized performance.
Version: 1.0.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: prosper
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, block-styles, wide-blocks, accessibility-ready, responsive-layout
*/
@keyframes arrow-bounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes heroImageReveal {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes heroZoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}
@keyframes heroTextReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.6;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

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

body {
  font-family: "Noto Serif JP", serif;
  color: #333;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: "Noto Serif JP", serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background-color 0.3s ease;
}
.l-header.is-scrolled {
  background-color: rgba(38, 40, 39, 0.85);
}
.l-header__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 16px;
}
@media screen and (max-width: 767px) {
  .l-header__grid {
    height: 60px;
    padding: 0 10px;
  }
}
.l-header__logo img {
  width: 11.05vw;
}
@media screen and (max-width: 767px) {
  .l-header__logo img {
    width: 150px;
  }
}
.l-header__link {
  margin-right: 90px;
}
@media screen and (max-width: 767px) {
  .l-header__link {
    display: none;
  }
}
.l-header__contact {
  text-align: right;
}
.l-header__contact a {
  display: inline-block;
  transition: opacity 0.3s;
}
.l-header__contact a:hover {
  opacity: 0.7;
}
.l-header__contact .top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.l-header__contact .top img {
  width: 20px;
  height: auto;
}
.l-header__contact .top span {
  font-size: 20px;
  font-weight: 500;
  color: white;
}
.l-header__humburger {
  position: fixed;
  top: 0;
  right: 0;
  width: 90px;
  height: 80px;
}
@media screen and (max-width: 767px) {
  .l-header__humburger {
    width: 60px;
    height: 60px;
  }
}
.home .l-header {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 0.4s;
}
.home .l-header .l-header__humburger {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 0.4s;
}

.l-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 420px;
  height: 100vh;
  background-color: #262827;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
  transition: right 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  z-index: 90;
  overflow-y: auto;
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
@media screen and (max-width: 767px) {
  .l-nav {
    width: 85%;
  }
}
.l-nav.is-active {
  right: 0;
}
.l-nav__inner {
  padding: 100px 40px 50px;
}
@media screen and (max-width: 767px) {
  .l-nav__inner {
    padding: 80px 25px 40px;
  }
}
.l-nav__group {
  margin-bottom: 30px;
}
.l-nav__group:last-of-type {
  margin-bottom: 0;
}
.l-nav__heading {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 5px;
}
.l-nav__list {
  list-style: none;
}
.l-nav__item:last-child .l-nav__link {
  border-bottom: none;
}
.l-nav__link {
  display: block;
  padding: 12px 0;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: opacity 0.3s, padding-left 0.3s;
}
.l-nav__link:hover {
  opacity: 0.7;
  padding-left: 5px;
}
.l-nav__footer {
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.l-nav__contact {
  text-align: center;
}
.l-nav__tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}
.l-nav__tel:hover {
  opacity: 0.7;
}
.l-nav__tel img {
  width: 18px;
  height: auto;
}
.l-nav__tel span {
  font-family: "Prata", serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.l-nav__hours {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.l-nav__sns {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.l-nav__sns a {
  display: block;
  transition: opacity 0.3s;
}
.l-nav__sns a:hover {
  opacity: 0.7;
}

.l-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 89;
}
.l-nav-overlay.is-active {
  display: block;
}

body.is-nav-open {
  overflow: hidden;
}

.l-main {
  min-height: 500px;
  padding: 4.8rem 0;
}

.l-footer {
  background-color: #005E3C;
  color: white;
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
@media screen and (min-width: 992px) {
  .l-footer__grid {
    width: 75%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__grid {
    padding: 20px 20px 7px;
  }
}
@media screen and (min-width: 992px) {
  .l-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.l-footer__top__image {
  width: 215px;
}
@media screen and (max-width: 767px) {
  .l-footer__top__image {
    width: 150px;
    margin: 0 auto;
  }
}
.l-footer__top__adress {
  margin-top: 10px;
}
.l-footer__top__adress p {
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .l-footer__top__adress p {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__top__tell {
    text-align: center;
  }
}
.l-footer__top__tell a {
  display: inline-block;
  transition: opacity 0.3s;
}
.l-footer__top__tell a:hover {
  opacity: 0.7;
}
.l-footer__top__tell .top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.l-footer__top__tell .top img {
  width: 30px;
  height: auto;
}
.l-footer__top__tell .top span {
  font-size: 34px;
  font-weight: 500;
}
.l-footer__top__tell p {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.03rem;
}
@media screen and (max-width: 767px) {
  .l-footer__top__tell p {
    text-align: center;
  }
}
.l-footer__button {
  margin-top: 25px;
}
.l-footer__button a {
  display: inline-block;
  border: 2px solid white;
  border-radius: 50px;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .l-footer__button a {
    width: 100%;
  }
}
.l-footer__button a:hover {
  opacity: 0.7;
}
.l-footer__copy {
  padding-top: 25px;
}
.l-footer__copy p {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}

.l-footer-main {
  background-color: #262827;
  color: white;
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.l-footer-main__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 30px;
}
@media screen and (max-width: 767px) {
  .l-footer-main__inner {
    padding: 40px 20px 20px;
  }
}
@media screen and (min-width: 992px) {
  .l-footer-main__content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
  }
}
@media screen and (min-width: 992px) {
  .l-footer-main__info {
    flex-shrink: 0;
    width: 380px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-main__info {
    margin-bottom: 40px;
  }
}
.l-footer-main__logo {
  width: 215px;
  margin-bottom: 20px;
}
.l-footer-main__logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .l-footer-main__logo {
    width: 180px;
  }
}
.l-footer-main__address {
  margin-bottom: 20px;
}
.l-footer-main__address p {
  font-size: 14px;
  line-height: 1.8;
}
.l-footer-main__tel {
  margin-bottom: 25px;
}
.l-footer-main__tel a {
  display: inline-block;
  transition: opacity 0.3s;
}
.l-footer-main__tel a:hover {
  opacity: 0.7;
}
.l-footer-main__tel p {
  font-size: 13px;
  line-height: 1.6;
}
.l-footer-main__tel-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 5px;
}
.l-footer-main__tel-top img {
  width: 28px;
  height: auto;
}
.l-footer-main__tel-top span {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.l-footer-main__contact-btn a {
  display: inline-block;
  border: 1px solid white;
  border-radius: 50px;
  padding: 12px 40px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  transition: opacity 0.3s;
  letter-spacing: 0.05em;
}
.l-footer-main__contact-btn a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .l-footer-main__contact-btn a {
    display: block;
    width: 100%;
  }
}
.l-footer-main__nav {
  display: flex;
  gap: 40px;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .l-footer-main__nav {
    flex-direction: column;
    gap: 30px;
  }
}
.l-footer-main__nav-col {
  flex: 1;
}
.l-footer-main__nav-col h3 {
  font-size: 15px;
  font-weight: 700;
  padding-bottom: 12px;
  margin-bottom: 15px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
}
.l-footer-main__nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-footer-main__nav-col li {
  margin-bottom: 12px;
}
.l-footer-main__nav-col li:last-child {
  margin-bottom: 0;
}
.l-footer-main__nav-col a {
  font-size: 14px;
  transition: opacity 0.3s;
}
.l-footer-main__nav-col a:hover {
  opacity: 0.7;
}
.l-footer-main__sns {
  text-align: center;
  margin-top: 50px;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .l-footer-main__sns {
    margin-top: 40px;
    padding-top: 30px;
  }
}
.l-footer-main__sns-text {
  font-size: 14px;
  margin-bottom: 20px;
}
.l-footer-main__sns-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.l-footer-main__sns-icons a {
  display: inline-block;
  transition: opacity 0.3s;
}
.l-footer-main__sns-icons a:hover {
  opacity: 0.7;
}
.l-footer-main__sns-icons svg {
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 767px) {
  .l-footer-main__sns-icons svg {
    width: 45px;
    height: 45px;
  }
}
.l-footer-main__copy {
  margin-top: 40px;
  padding-top: 15px;
}
.l-footer-main__copy p {
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.l-fixed-contact {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 80;
}
@media screen and (max-width: 767px) {
  .l-fixed-contact {
    top: initial;
    bottom: 0;
    width: 100%;
    transform: initial;
  }
}
.l-fixed-contact a {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(to bottom, #FFB200 0%, #EB6E28 100%);
  padding: 30px 20px;
  border-radius: 20px 0 0 20px;
}
@media screen and (max-width: 767px) {
  .l-fixed-contact a {
    flex-direction: row;
    border-radius: initial;
    justify-content: center;
  }
}
.l-fixed-contact a span {
  writing-mode: vertical-rl;
  font-size: 15px;
  color: white;
  margin-top: 10px;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .l-fixed-contact a span {
    writing-mode: initial;
    margin-top: initial;
    font-weight: 700;
    font-size: 16px;
  }
}
.l-fixed-contact a img {
  width: 20px;
}
@media screen and (max-width: 767px) {
  .l-fixed-contact a img {
    margin-right: 10px;
    width: 30px;
  }
}

.l-links {
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-links {
    display: block;
  }
}
.l-links .recruit {
  background-image: url("../images/links-recruit.jpg");
}
.l-links .contact {
  background-image: url("../images/links-contact.jpg");
}
.l-links__element {
  width: 50%;
  padding-bottom: 100px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 55px 0 85px;
}
@media screen and (max-width: 767px) {
  .l-links__element {
    width: 100%;
    padding-bottom: 40px;
  }
}
.l-links__element__head h2 {
  color: white;
  font-family: "Prata", serif;
  font-size: 30px;
  letter-spacing: 0.02rem;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .l-links__element__head h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .l-links__element__head h2 {
    font-size: 24px;
  }
}
.l-links__element__contents {
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .l-links__element__contents {
    margin-top: 20px;
  }
}
.l-links__element__contents h3 {
  color: white;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.02rem;
}
.l-links__element__contents p {
  color: white;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.02rem;
  margin: 50px 0;
}
@media screen and (max-width: 767px) {
  .l-links__element__contents p {
    margin: 10px 0;
    font-size: 15px;
  }
}
.l-links__element__button {
  text-align: center;
}
.l-links__element__button a {
  display: inline-block;
  width: 400px;
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 15px 0;
  border: 2px solid white;
  border-radius: 50px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .l-links__element__button a {
    padding: 10px 0;
    width: 300px;
  }
}
.l-links__element__button a:hover {
  background: white;
  color: black;
}

.l-pagenavi .wp-pagenavi {
  text-align: center;
  color: #333;
  font-size: 15px;
  font-weight: 700;
}
.l-pagenavi .wp-pagenavi .pages {
  border: initial;
  margin-right: 20px;
}
.l-pagenavi .wp-pagenavi .page,
.l-pagenavi .wp-pagenavi .current {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  padding: initial;
  margin: initial;
  border: initial;
}
.l-pagenavi .wp-pagenavi .current {
  background: #333;
  color: white;
  border-radius: 50%;
}
.l-pagenavi .wp-pagenavi .nextpostslink,
.l-pagenavi .wp-pagenavi .previouspostslink {
  border: initial;
}

.l-inquiry {
  background-image: url("../images/inquiry-back.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: white;
}
.l-inquiry__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
}
@media screen and (max-width: 767px) {
  .l-inquiry__inner {
    padding: 50px 20px;
  }
}
.l-inquiry__head {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .l-inquiry__head {
    margin-bottom: 30px;
  }
}
.l-inquiry__head h2 {
  font-family: "Prata", serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-inquiry__head h2 {
    font-size: 30px;
  }
}
.l-inquiry__subtitle {
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.l-inquiry__desc {
  margin-top: 30px;
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
@media screen and (max-width: 767px) {
  .l-inquiry__desc {
    margin-top: 20px;
  }
}
.l-inquiry__desc p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .l-inquiry__desc p {
    font-size: 13px;
  }
}
.l-inquiry__cards {
  display: flex;
  gap: 20px;
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
@media screen and (max-width: 767px) {
  .l-inquiry__cards {
    flex-direction: column;
    gap: 15px;
  }
}
.l-inquiry__card {
  flex: 1;
  background: rgba(38, 40, 39, 0.9);
  padding: 40px 30px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .l-inquiry__card {
    padding: 30px 20px 25px;
  }
}
.l-inquiry__card:hover {
  opacity: 0.9;
}
.l-inquiry__card:hover .l-inquiry__card-arrow-circle {
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.8);
}
.l-inquiry__card-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .l-inquiry__card-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
  }
}
.l-inquiry__card-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-inquiry__card h3 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-inquiry__card h3 {
    font-size: 14px;
  }
}
.l-inquiry__card-en {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  margin-top: 5px;
}
.l-inquiry__card-arrow {
  margin-top: auto;
  padding-top: 20px;
  align-self: flex-end;
  position: relative;
  width: 35px;
  height: 35px;
}
@media screen and (max-width: 767px) {
  .l-inquiry__card-arrow {
    padding-top: 15px;
    width: 30px;
    height: 30px;
  }
}
.l-inquiry__card-arrow::before {
  content: "";
  position: absolute;
  top: 43%;
  right: 37%;
  width: 55px;
  height: 6px;
  background-image: url("../images/inquiry-arrow.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: background 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-inquiry__card-arrow::before {
    width: 47px;
  }
}
.l-inquiry__card-arrow-circle {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-inquiry__card-arrow-circle {
    width: 30px;
    height: 30px;
  }
}

.c-button {
  display: inline-block;
  padding: 1.6rem 2.4rem;
  background-color: #005E3C;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.c-button:hover {
  background-color: rgb(0, 43, 27.4468085106);
}
.c-button--secondary {
  background-color: #3498db;
}
.c-button--secondary:hover {
  background-color: rgb(33.1380753138, 125.1882845188, 186.8619246862);
}
.c-button--large {
  padding: 2.4rem 3.2rem;
  font-size: 1.8rem;
}

.c-hamburger {
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 992px) {
  .c-hamburger {
    width: 90px;
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .c-hamburger {
    width: 60px;
    height: 60px;
  }
}
.c-hamburger span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-hamburger span {
    width: 28px;
  }
}
.c-hamburger span:nth-child(1) {
  top: 20px;
}
@media screen and (max-width: 767px) {
  .c-hamburger span:nth-child(1) {
    top: 14px;
  }
}
.c-hamburger span:nth-child(2) {
  top: 32px;
}
@media screen and (max-width: 767px) {
  .c-hamburger span:nth-child(2) {
    top: 24px;
  }
}
.c-hamburger.is-active span:nth-child(1) {
  top: 26px;
  transform: translateX(-50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .c-hamburger.is-active span:nth-child(1) {
    top: 19px;
  }
}
.c-hamburger.is-active span:nth-child(2) {
  top: 26px;
  transform: translateX(-50%) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .c-hamburger.is-active span:nth-child(2) {
    top: 19px;
  }
}
.c-hamburger p {
  color: white;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  top: 44px;
}
@media screen and (max-width: 767px) {
  .c-hamburger p {
    top: 36px;
    font-size: 10px;
  }
}

.splide__arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.splide__arrow {
  position: absolute;
  pointer-events: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.splide__arrow--prev {
  transform: scaleX(-1);
}

.js-detail-splide {
  position: relative;
}
.js-detail-splide .splide__slide .block {
  text-align: center;
  height: 41.178vw;
  max-height: 562.5px;
  background: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .js-detail-splide .splide__slide .block {
    height: 60vw;
  }
}
.js-detail-splide .splide__slide .block img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.js-detail-splide .splide__arrow {
  width: 45px;
  height: 45px;
  background: white;
  border: 1px solid #005E3C;
  border-radius: 50%;
  opacity: 1;
}
.js-detail-splide .splide__arrow svg {
  fill: #005E3C;
  width: 16px;
  height: 16px;
}
.js-detail-splide .splide__arrow:hover {
  background: #005E3C;
}
.js-detail-splide .splide__arrow:hover svg {
  fill: white;
}
.js-detail-splide .splide__arrow--prev {
  left: -20px;
}
@media screen and (max-width: 767px) {
  .js-detail-splide .splide__arrow--prev {
    left: 5px;
  }
}
.js-detail-splide .splide__arrow--next {
  right: -20px;
}
@media screen and (max-width: 767px) {
  .js-detail-splide .splide__arrow--next {
    right: 5px;
  }
}

.js-detail-splide-thumbs {
  margin-top: 10px;
}
.js-detail-splide-thumbs .splide__slide {
  opacity: 0.6;
  cursor: pointer;
  border: 2px solid transparent;
  transition: opacity 0.3s, border-color 0.3s;
}
.js-detail-splide-thumbs .splide__slide.is-active {
  opacity: 1;
  border-color: #005E3C;
}
.js-detail-splide-thumbs .splide__slide:hover {
  opacity: 1;
}
.js-detail-splide-thumbs .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.js-income-splide .splide__arrow {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: background 0.3s;
}
.js-income-splide .splide__arrow svg {
  fill: white;
  width: 14px;
  height: 14px;
}
.js-income-splide .splide__arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}
.js-income-splide .splide__arrow--prev {
  left: 15px;
}
@media screen and (max-width: 767px) {
  .js-income-splide .splide__arrow--prev {
    left: 8px;
  }
}
.js-income-splide .splide__arrow--next {
  right: 15px;
}
@media screen and (max-width: 767px) {
  .js-income-splide .splide__arrow--next {
    right: 8px;
  }
}

.js-renovation-splide .splide__slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.js-renovation-splide .splide__arrow {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: background 0.3s;
}
.js-renovation-splide .splide__arrow svg {
  fill: white;
  width: 14px;
  height: 14px;
}
.js-renovation-splide .splide__arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}
.js-renovation-splide .splide__arrow--prev {
  left: 15px;
}
@media screen and (max-width: 767px) {
  .js-renovation-splide .splide__arrow--prev {
    left: 8px;
  }
}
.js-renovation-splide .splide__arrow--next {
  right: 15px;
}
@media screen and (max-width: 767px) {
  .js-renovation-splide .splide__arrow--next {
    right: 8px;
  }
}

.js-apartment-splide .splide__slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.js-apartment-splide .splide__arrow {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: background 0.3s;
}
.js-apartment-splide .splide__arrow svg {
  fill: white;
  width: 14px;
  height: 14px;
}
.js-apartment-splide .splide__arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}
.js-apartment-splide .splide__arrow--prev {
  left: 15px;
}
@media screen and (max-width: 767px) {
  .js-apartment-splide .splide__arrow--prev {
    left: 8px;
  }
}
.js-apartment-splide .splide__arrow--next {
  right: 15px;
}
@media screen and (max-width: 767px) {
  .js-apartment-splide .splide__arrow--next {
    right: 8px;
  }
}

.js-order-splide .splide__slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.js-order-splide .splide__arrow {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: background 0.3s;
}
.js-order-splide .splide__arrow svg {
  fill: white;
  width: 14px;
  height: 14px;
}
.js-order-splide .splide__arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}
.js-order-splide .splide__arrow--prev {
  left: 15px;
}
@media screen and (max-width: 767px) {
  .js-order-splide .splide__arrow--prev {
    left: 8px;
  }
}
.js-order-splide .splide__arrow--next {
  right: 15px;
}
@media screen and (max-width: 767px) {
  .js-order-splide .splide__arrow--next {
    right: 8px;
  }
}

.js-works-splide .splide__slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.p-lightbox.is-active {
  display: block;
}
.p-lightbox__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}
.p-lightbox__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-lightbox__content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-lightbox__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  color: white;
  font-size: 30px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
}
.p-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 767px) {
  .p-lightbox__close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}
.p-lightbox__prev, .p-lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  color: white;
  font-size: 30px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
}
.p-lightbox__prev:hover, .p-lightbox__next:hover {
  background: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 767px) {
  .p-lightbox__prev, .p-lightbox__next {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}
.p-lightbox__prev {
  left: 20px;
}
@media screen and (max-width: 767px) {
  .p-lightbox__prev {
    left: 10px;
  }
}
.p-lightbox__next {
  right: 20px;
}
@media screen and (max-width: 767px) {
  .p-lightbox__next {
    right: 10px;
  }
}

.p-property__detail__around .neighborhood {
  display: flex;
  flex-wrap: wrap;
}
.p-property__detail__around .neighborhood .block {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  width: calc(33.333% - 14px);
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .p-property__detail__around .neighborhood .block {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .p-property__detail__around .neighborhood .block {
    width: calc(50% - 5px);
  }
}
.p-property__detail__around .neighborhood .block__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.p-property__detail__around .neighborhood .block__overlay span {
  color: white;
  font-size: 14px;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 16px;
  border-radius: 4px;
}
.p-property__detail__around .neighborhood .block:hover .block__overlay {
  opacity: 1;
}
.p-property__detail__around .neighborhood .block img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.p-property__detail__around .neighborhood .block:hover img {
  transform: scale(1.05);
}

.p-property__detail__icatch .js-detail-splide .block,
.p-invest__detail__icatch .js-detail-splide .block {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.p-property__detail__icatch .js-detail-splide .block__overlay,
.p-invest__detail__icatch .js-detail-splide .block__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10;
}
.p-property__detail__icatch .js-detail-splide .block__overlay span,
.p-invest__detail__icatch .js-detail-splide .block__overlay span {
  color: white;
  font-size: 16px;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .p-property__detail__icatch .js-detail-splide .block__overlay span,
  .p-invest__detail__icatch .js-detail-splide .block__overlay span {
    font-size: 14px;
    padding: 8px 16px;
  }
}
.p-property__detail__icatch .js-detail-splide .block:hover .block__overlay,
.p-invest__detail__icatch .js-detail-splide .block:hover .block__overlay {
  opacity: 1;
}
.p-property__detail__icatch .js-detail-splide .block img,
.p-invest__detail__icatch .js-detail-splide .block img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.p-property__detail__icatch .js-detail-splide .block:hover img,
.p-invest__detail__icatch .js-detail-splide .block:hover img {
  transform: scale(1.02);
}

.p-home__hero {
  padding: 4.8rem 0;
  background-color: #f5f5f5;
}
.p-home__section {
  padding: 4.8rem 0;
}

.u-mt-xs {
  margin-top: 0.8rem !important;
}

.u-mt-sm {
  margin-top: 1.6rem !important;
}

.u-mt-md {
  margin-top: 2.4rem !important;
}

.u-mt-lg {
  margin-top: 3.2rem !important;
}

.u-mt-xl {
  margin-top: 4.8rem !important;
}

.u-mb-xs {
  margin-bottom: 0.8rem !important;
}

.u-mb-sm {
  margin-bottom: 1.6rem !important;
}

.u-mb-md {
  margin-bottom: 2.4rem !important;
}

.u-mb-lg {
  margin-bottom: 3.2rem !important;
}

.u-mb-xl {
  margin-bottom: 4.8rem !important;
}

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

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

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

.u-text-small {
  font-size: 1.4rem !important;
}

.u-text-large {
  font-size: 1.8rem !important;
}

.u-text-bold {
  font-weight: bold !important;
}

.u-text-normal {
  font-weight: normal !important;
}

.pc-only {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .pc-only {
    display: none !important;
  }
}

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

.tablet-only {
  display: none !important;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .tablet-only {
    display: block !important;
  }
}

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

.sp-tablet {
  display: none !important;
}
@media screen and (min-width: 992px) {
  .sp-tablet {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .sp-tablet {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .sp-tablet {
    display: block !important;
  }
}

.pc-only-inline {
  display: inline !important;
}
@media screen and (max-width: 767px) {
  .pc-only-inline {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .pc-only-inline {
    display: none !important;
  }
}

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

.pc-only-flex {
  display: flex !important;
}
@media screen and (max-width: 767px) {
  .pc-only-flex {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .pc-only-flex {
    display: none !important;
  }
}

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

.p-top__main {
  position: relative;
  overflow: hidden;
}
.p-top__main .p-top__slideshow {
  width: 100%;
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top__main .p-top__slideshow {
    height: 70svh;
  }
}
.p-top__main .p-top__slideshow-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.p-top__main .p-top__slideshow-slide.is-active {
  opacity: 1;
}
.p-top__main .p-top__slideshow-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transform: scale(1);
}
.p-top__main .p-top__slideshow-slide.is-zooming img {
  animation: heroZoomIn 5s ease-out forwards;
}
.p-top__main h1 {
  position: absolute;
  left: 15%;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .p-top__main h1 {
    left: 33%;
  }
}
.p-top__main h1 p {
  color: white;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-left: 20px;
  opacity: 0;
  animation: heroTextReveal 0.8s ease forwards;
}
@media screen and (max-width: 767px) {
  .p-top__main h1 p {
    font-size: 16px;
    margin-left: 12px;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 2px;
  }
}
.p-top__main h1 p:nth-child(1) {
  animation-delay: 0.6s;
}
.p-top__main h1 p:nth-child(2) {
  animation-delay: 0.9s;
}
.p-top__main h1 p:nth-child(3) {
  animation-delay: 1.2s;
}
.p-top__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 1.7s;
}
.p-top__scroll span {
  color: white;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
.p-top__scroll-line {
  width: 1px;
  height: 50px;
  background: white;
  position: relative;
}
.p-top__scroll-line::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-dot 2s ease-in-out infinite;
  animation-delay: 2.8s;
}
.p-top__concept {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-top__concept {
    flex-direction: column;
  }
}
.p-top__concept-left {
  width: 35%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-top__concept-left {
    width: 100%;
  }
}
.p-top__concept-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-top__concept-left img {
    height: 300px;
  }
}
.p-top__concept-right {
  flex: 1;
  background: #DADADA;
}
.p-top__concept-upper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-top__concept-upper {
    flex-direction: column;
  }
}
.p-top__concept-catch {
  writing-mode: vertical-rl;
  padding: 100px 40px 60px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-top__concept-catch {
    padding: 40px 10px;
    display: block;
    writing-mode: initial;
  }
}
.p-top__concept-catch p {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5em;
  margin-left: 15px;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-top__concept-catch p {
    font-size: 18px;
    margin-left: 10px;
  }
}
.p-top__concept-image {
  width: 35%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-top__concept-image {
    width: 100%;
  }
}
.p-top__concept-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-top__concept-image img {
    height: 250px;
  }
}
.p-top__concept-lower {
  padding: 50px 60px 80px;
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top__concept-lower {
    width: 90%;
    padding: 30px 20px 40px;
  }
}
.p-top__concept-lower h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-top__concept-lower h2 {
    font-size: 15px;
  }
}
.p-top__concept-lower p {
  font-size: 14px;
  line-height: 2;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-top__concept-lower p {
    font-size: 13px;
  }
}
.p-top__concept-button {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top__concept-button {
    margin-top: 25px;
  }
}
.p-top__concept-button a {
  display: inline-block;
  width: 300px;
  padding: 18px 0;
  background: #333;
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border-radius: 50px;
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top__concept-button a {
    width: 100%;
    padding: 15px 0;
  }
}
.p-top__concept-button a:hover {
  opacity: 0.7;
}
.p-top__works {
  position: relative;
  background: #E8E8E8;
  overflow: hidden;
}
.p-top__works-bg-dark {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 35%;
  background: #262827;
}
@media screen and (max-width: 767px) {
  .p-top__works-bg-dark {
    height: 30%;
    width: 100%;
  }
}
.p-top__works-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 100px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top__works-inner {
    padding: 50px 20px 60px;
  }
}
.p-top__works-head {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-top__works-head {
    margin-bottom: 25px;
  }
}
.p-top__works-head h2 {
  font-family: "Prata", serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-top__works-head h2 {
    font-size: 30px;
  }
}
.p-top__works-subtitle {
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .p-top__works-subtitle {
    font-size: 12px;
  }
}
.p-top__works-content {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top__works-content {
    min-height: auto;
  }
}
.p-top__works-image {
  width: 65%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top__works-image {
    width: 100%;
  }
}
.p-top__works-image img {
  width: 100%;
  display: block;
}
.p-top__works-card {
  position: absolute;
  right: 0;
  bottom: 50px;
  width: 38%;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-top__works-card {
    position: relative;
    top: auto;
    width: 90%;
    margin: 15px auto 0;
  }
}
.p-top__works-card-body {
  background: white;
  padding: 240px 45px 80px;
  flex: 1;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-top__works-card-body {
    padding: 30px 25px 35px;
  }
}
.p-top__works-card-label {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 15px;
  border-bottom: 2px solid #333;
}
@media screen and (max-width: 767px) {
  .p-top__works-card-label {
    padding-bottom: 10px;
  }
}
.p-top__works-card-voice {
  font-family: "Prata", serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-top__works-card-voice {
    font-size: 12px;
  }
}
.p-top__works-card-number {
  font-family: "Prata", serif;
  font-size: 30px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-top__works-card-number {
    font-size: 22px;
  }
}
.p-top__works-card-desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  margin-top: 30px;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-top__works-card-desc {
    font-size: 14px;
    margin-top: 20px;
  }
}
.p-top__works-card-button {
  padding: 130px 45px 0;
}
.p-top__works-card-button a {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  color: white;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top__works-card-button a {
    padding: 12px;
    font-size: 13px;
  }
}
.p-top__works-card-button a:hover {
  background: white;
  color: #333;
  border-color: white;
}
.p-top__works-design {
  background: #E8E8E8;
  overflow: hidden;
}
.p-top__works-design-inner {
  padding: 80px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-top__works-design-inner {
    padding: 50px 0 50px;
  }
}
.p-top__works-design-head {
  padding: 0 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .p-top__works-design-head {
    padding: 0 20px;
    margin-bottom: 25px;
  }
}
.p-top__works-design-head h2 {
  font-family: "Prata", serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}
@media screen and (max-width: 767px) {
  .p-top__works-design-head h2 {
    font-size: 28px;
  }
}
.p-top__works-design-subtitle {
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
  color: #333;
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top__works-design-subtitle {
    font-size: 12px;
  }
}
.p-top__works-design-contents {
  padding: 0 40px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top__works-design-contents {
    padding: 0 20px;
  }
}
.p-top__works-design-contents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-top__works-design-contents-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.p-top__works-design-contents-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.p-top__works-design-contents-card-image {
  overflow: hidden;
}
.p-top__works-design-contents-card-image img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.p-top__works-design-contents-card:hover .p-top__works-design-contents-card-image img {
  transform: scale(1.03);
}
.p-top__works-design-contents-card-name {
  font-family: "Prata", serif;
  font-size: 20px;
  font-weight: 400;
  color: #1a1a1a;
  margin-top: 12px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top__works-design-contents-card-name {
    font-size: 14px;
    margin-top: 8px;
  }
}
.p-top__works-design-contents-card-desc {
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #333;
  margin-top: 8px;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-top__works-design-contents-card-desc {
    font-size: 11px;
    margin-top: 5px;
  }
}
.p-top__works-design-slider {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-top__works-design-slider {
    margin-bottom: 25px;
  }
}
.p-top__works-design-slider .splide__track {
  overflow: visible;
}
.p-top__works-design-slider .splide__list {
  align-items: stretch;
}
.p-top__works-design-slider .splide__slide {
  padding: 0 10px;
}
.p-top__works-design-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.p-top__works-design-card-image {
  position: relative;
  overflow: hidden;
}
.p-top__works-design-card-image img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.p-top__works-design-card-image:hover img {
  transform: scale(1.03);
}
.p-top__works-design-card-status {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(38, 40, 39, 0.85);
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  z-index: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top__works-design-card-status {
    font-size: 11px;
    padding: 4px 8px;
  }
}
.p-top__works-design-card-category {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(38, 40, 39, 0.85);
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 15px;
  z-index: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top__works-design-card-category {
    font-size: 11px;
    padding: 5px 10px;
  }
}
.p-top__works-design-card-body {
  padding: 20px 0 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top__works-design-card-body {
    padding: 15px 0 0;
  }
}
.p-top__works-design-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.6;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .p-top__works-design-card-body h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.p-top__works-design-card-meta p {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 767px) {
  .p-top__works-design-card-meta p {
    font-size: 12px;
  }
}
.p-top__works-design-card-meta p + p {
  margin-top: 6px;
}
.p-top__works-design-card-label {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  min-width: 60px;
  margin-right: 15px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-top__works-design-card-label {
    font-size: 12px;
    min-width: 50px;
    margin-right: 10px;
  }
}
.p-top__works-design-card-price {
  font-family: "Prata", serif;
  font-size: 32px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top__works-design-card-price {
    font-size: 24px;
  }
}
.p-top__works-design-card-unit {
  font-size: 14px;
  color: #333;
  margin-left: 2px;
}
@media screen and (max-width: 767px) {
  .p-top__works-design-card-unit {
    font-size: 12px;
  }
}
.p-top__works-design-card-arrow {
  margin-top: auto;
  padding-top: 15px;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35px;
  height: 35px;
}
@media screen and (max-width: 767px) {
  .p-top__works-design-card-arrow {
    width: 30px;
    height: 30px;
  }
}
.p-top__works-design-card-arrow::before {
  content: "";
  position: absolute;
  top: 43%;
  right: 37%;
  width: 55px;
  height: 6px;
  background-image: url("../images/inquiry-arrow.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-top__works-design-card-arrow::before {
    width: 47px;
  }
}
.p-top__works-design-card-arrow-circle {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(51, 51, 51, 0.3);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-top__works-design-card-arrow-circle {
    width: 30px;
    height: 30px;
  }
}
.p-top__works-design-card:hover .p-top__works-design-card-arrow-circle {
  transform: scale(1.1);
  border-color: rgba(51, 51, 51, 0.6);
}
.p-top__works-design-button {
  text-align: center;
  margin-top: 50px;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-top__works-design-button {
    margin-top: 35px;
    padding: 0 20px;
  }
}
.p-top__works-design-button a {
  display: inline-block;
  min-width: 400px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 20px 60px;
  background: #262827;
  border-radius: 50px;
  color: white;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top__works-design-button a {
    min-width: auto;
    width: 100%;
    padding: 16px 40px;
    font-size: 13px;
  }
}
.p-top__works-design-button a:hover {
  opacity: 0.8;
}
.p-top__showroom-hero {
  position: relative;
  overflow: hidden;
}
.p-top__showroom-hero img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-top__showroom-hero img {
    height: 450px;
  }
}
.p-top__showroom-hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  writing-mode: vertical-rl;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.p-top__showroom-hero-text p {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.25em;
  line-height: 2.5;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-top__showroom-hero-text p {
    font-size: 18px;
  }
}
.p-top__showroom-body {
  background: #EFEFEF;
  padding: 80px 40px;
}
@media screen and (max-width: 767px) {
  .p-top__showroom-body {
    padding: 50px 20px;
  }
}
.p-top__showroom-body-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.p-top__showroom-body-inner h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-top__showroom-body-inner h2 {
    font-size: 17px;
  }
}
.p-top__showroom-body-inner p {
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  margin-top: 30px;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-top__showroom-body-inner p {
    font-size: 13px;
    margin-top: 20px;
    text-align: left;
  }
}
.p-top__flow {
  background: #EFEFEF;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-top__flow {
    padding: 50px 0;
  }
}
.p-top__flow-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-top__flow-inner {
    padding: 0 20px;
  }
}
.p-top__flow-box {
  background: #262827;
  padding: 60px 40px 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top__flow-box {
    padding: 40px 15px 50px;
    border-radius: 8px;
  }
}
.p-top__flow-box__top-text {
  position: absolute;
  top: -24px;
  left: 0;
  color: rgba(255, 255, 255, 0.2);
  font-size: 120px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top__flow-box__top-text {
    font-size: 60px;
    top: -12px;
  }
}
.p-top__flow-title {
  text-align: center;
  color: white;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-top__flow-title {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.p-top__flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top__flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-top__flow-step {
  text-align: center;
  padding: 40px 15px;
  border-right: 1px dashed rgba(255, 255, 255, 0.3);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 767px) {
  .p-top__flow-step {
    padding: 25px 10px;
  }
}
.p-top__flow-step:nth-child(4n) {
  border-right: none;
}
.p-top__flow-step:nth-child(n+5) {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .p-top__flow-step:nth-child(4n) {
    border-right: 1px dashed rgba(255, 255, 255, 0.3);
  }
  .p-top__flow-step:nth-child(2n) {
    border-right: none;
  }
  .p-top__flow-step:nth-child(n+5) {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  }
  .p-top__flow-step:nth-child(n+7) {
    border-bottom: none;
  }
}
.p-top__flow-step-label {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.p-top__flow-step-number {
  display: block;
  color: white;
  font-size: 40px;
  font-weight: 300;
  line-height: 1.2;
  margin-top: 2px;
}
@media screen and (max-width: 767px) {
  .p-top__flow-step-number {
    font-size: 30px;
  }
}
.p-top__flow-step-desc {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-top__flow-step-desc {
    margin-top: 15px;
  }
}
.p-top__flow-step-desc p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-top__flow-step-desc p {
    font-size: 12px;
  }
}
.p-top__flow__head {
  background-image: url("../images/flow-back01.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 125px 0;
}
@media screen and (max-width: 767px) {
  .p-top__flow__head {
    padding: 45px 20px;
  }
}
.p-top__flow__head__texts {
  text-align: center;
}
.p-top__flow__head__texts h2 {
  color: white;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 767px) {
  .p-top__flow__head__texts h2 {
    font-size: 20px;
    font-weight: 500;
  }
}
.p-top__flow__head__texts p {
  color: white;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-top__flow__head__texts p {
    font-size: 13px;
    text-align: left;
    margin-top: 20px;
  }
}
.p-top__flow__image {
  width: 73.2vw;
  margin: -190px auto 0;
}
@media screen and (max-width: 767px) {
  .p-top__flow__image {
    width: 90%;
    margin: -100px auto 0;
  }
}
.p-top__flow__button {
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-top__flow__button {
    margin-top: 20px;
  }
}
.p-top__flow__button a {
  display: inline-block;
  width: 400px;
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 15px 0;
  border: 2px solid white;
  border-radius: 50px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top__flow__button a {
    padding: 10px 0;
    width: 300px;
  }
}
.p-top__flow__button a:hover {
  background: white;
  color: black;
}
.p-top__faq {
  background: #EFEFEF;
  padding: 80px 0;
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top__faq {
    padding: 50px 0;
  }
}
.p-top__faq-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-top__faq-inner {
    padding: 0 20px;
  }
}
.p-top__faq-head {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-top__faq-head {
    margin-bottom: 25px;
  }
}
.p-top__faq-head h2 {
  font-family: "Prata", serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top__faq-head h2 {
    font-size: 30px;
  }
}
.p-top__faq-subtitle {
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
}
.p-top__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.p-top__faq-item {
  border: 1px solid #999;
  overflow: hidden;
}
.p-top__faq-item.is-open .p-top__faq-answer {
  max-height: 300px;
  padding: 0 25px 25px 65px;
}
@media screen and (max-width: 767px) {
  .p-top__faq-item.is-open .p-top__faq-answer {
    padding: 0 15px 20px 50px;
  }
}
.p-top__faq-item.is-open .p-top__faq-toggle::before {
  opacity: 0;
}
.p-top__faq-question {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top__faq-question {
    padding: 15px;
  }
}
.p-top__faq-question p {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-top__faq-question p {
    font-size: 14px;
  }
}
.p-top__faq-q {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #333;
  color: white;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .p-top__faq-q {
    width: 30px;
    height: 30px;
    font-size: 14px;
    margin-right: 10px;
  }
}
.p-top__faq-toggle {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  margin-left: 15px;
}
.p-top__faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333;
  transform: translateY(-50%);
}
.p-top__faq-toggle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #333;
  transform: translateX(-50%);
  transition: opacity 0.3s;
}
.p-top__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px 0 65px;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
@media screen and (max-width: 767px) {
  .p-top__faq-answer {
    padding: 0 15px 0 50px;
  }
}
.p-top__faq-answer p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}
@media screen and (max-width: 767px) {
  .p-top__faq-answer p {
    font-size: 13px;
  }
}
.p-top__faq-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}
.p-top__faq-dots span {
  width: 8px;
  height: 8px;
  background: #333;
  border-radius: 50%;
}
.p-top__faq-button {
  margin-top: 25px;
  text-align: center;
}
.p-top__faq-more {
  display: inline-block;
  width: 300px;
  padding: 18px 0;
  background: #333;
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border-radius: 50px;
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top__faq-more {
    width: 100%;
    padding: 15px 0;
  }
}
.p-top__faq-more:hover {
  opacity: 0.7;
}
.p-top__sns {
  background: #EFEFEF;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-top__sns {
    padding: 50px 0;
  }
}
.p-top__sns-subtitle, .p-top__sns-footer p {
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.p-top__sns-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-top__sns-inner {
    padding: 0 20px;
  }
}
.p-top__sns-head {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-top__sns-head {
    margin-bottom: 25px;
  }
}
.p-top__sns-head h2 {
  font-family: "Prata", serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top__sns-head h2 {
    font-size: 30px;
  }
}
.p-top__sns-subtitle {
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
}
.p-top__sns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .p-top__sns-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.p-top__sns-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
}
.p-top__sns-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.p-top__sns-item:hover img {
  transform: scale(1.05);
}
.p-top__sns-footer {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top__sns-footer {
    margin-top: 25px;
  }
}
.p-top__sns-footer p {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-top__sns-footer p {
    font-size: 13px;
  }
}
.p-top__sns-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}
.p-top__sns-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border: 2px solid #333;
  border-radius: 50%;
  color: #333;
  transition: opacity 0.3s;
}
.p-top__sns-icons a:hover {
  opacity: 0.6;
}
.p-top__sns-icons a svg {
  width: 24px;
  height: 24px;
}
.p-top__event {
  background: #EFEFEF;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-top__event {
    padding: 50px 0;
  }
}
.p-top__event-subtitle, .p-top__event-card-body {
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.p-top__event-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-top__event-inner {
    padding: 0 20px;
  }
}
.p-top__event-head {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-top__event-head {
    margin-bottom: 25px;
  }
}
.p-top__event-head h2 {
  font-family: "Prata", serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top__event-head h2 {
    font-size: 30px;
  }
}
.p-top__event-subtitle {
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
}
.p-top__event-list {
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .p-top__event-list {
    flex-direction: column;
    gap: 20px;
  }
}
.p-top__event-card {
  flex: 1;
  display: block;
  cursor: pointer;
  transition: opacity 0.3s;
}
.p-top__event-card:hover {
  opacity: 0.8;
}
.p-top__event-card:hover .p-top__event-card-arrow-circle {
  transform: scale(1.1);
  border-color: rgba(0, 0, 0, 0.8);
}
.p-top__event-card-image {
  aspect-ratio: 1;
  overflow: hidden;
}
.p-top__event-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-top__event-card-body {
  padding: 15px 0 0;
  position: relative;
}
.p-top__event-card-body h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-top__event-card-body h3 {
    font-size: 14px;
  }
}
.p-top__event-card-meta {
  margin-top: 12px;
  padding-right: 50px;
}
@media screen and (max-width: 767px) {
  .p-top__event-card-meta {
    padding-right: 45px;
  }
}
.p-top__event-card-meta p {
  font-size: 13px;
  line-height: 1.6;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-top__event-card-meta p {
    font-size: 12px;
  }
}
.p-top__event-card-label {
  font-weight: 700;
}
.p-top__event-card-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35px;
  height: 35px;
}
@media screen and (max-width: 767px) {
  .p-top__event-card-arrow {
    width: 30px;
    height: 30px;
  }
}
.p-top__event-card-arrow::before {
  content: "";
  position: absolute;
  top: 43%;
  right: 37%;
  width: 50px;
  height: 6px;
  background-image: url("../images/inquiry-arrow.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0);
}
@media screen and (max-width: 767px) {
  .p-top__event-card-arrow::before {
    width: 40px;
    height: 5px;
  }
}
.p-top__event-card-arrow-circle {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-top__event-card-arrow-circle {
    width: 30px;
    height: 30px;
  }
}
.p-top__event-button {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top__event-button {
    margin-top: 25px;
  }
}
.p-top__event-button a {
  display: inline-block;
  width: 300px;
  padding: 18px 0;
  background: #333;
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border-radius: 50px;
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top__event-button a {
    width: 100%;
    padding: 15px 0;
  }
}
.p-top__event-button a:hover {
  opacity: 0.7;
}
.p-top__topics {
  background: #EFEFEF;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-top__topics {
    padding: 50px 0;
  }
}
.p-top__topics-subtitle, .p-top__topics-card {
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.p-top__topics-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-top__topics-inner {
    padding: 0 20px;
  }
}
.p-top__topics-head {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-top__topics-head {
    margin-bottom: 25px;
  }
}
.p-top__topics-head h2 {
  font-family: "Prata", serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top__topics-head h2 {
    font-size: 30px;
  }
}
.p-top__topics-subtitle {
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
}
.p-top__topics-list {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-top__topics-list {
    flex-direction: column;
    gap: 15px;
  }
}
.p-top__topics-card {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #333;
  transition: opacity 0.3s;
  padding: 15px;
  position: relative;
}
.p-top__topics-card:hover {
  opacity: 0.8;
}
.p-top__topics-card:hover .p-top__topics-card-arrow-circle {
  transform: scale(1.1);
  border-color: rgba(0, 0, 0, 0.8);
}
.p-top__topics-card-image {
  width: 20%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-top__topics-card-image {
    width: 110px;
    height: 110px;
  }
}
.p-top__topics-card-image img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-top__topics-card-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-top__topics-card-body {
  width: 75%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top__topics-card-body {
    padding: 15px;
  }
}
.p-top__topics-card-body h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-top__topics-card-body h3 {
    font-size: 13px;
  }
}
.p-top__topics-card-date {
  margin-top: auto;
  padding-top: 10px;
  font-size: 12px;
  color: #666;
  letter-spacing: 0.05em;
}
.p-top__topics-card-arrow {
  position: absolute;
  right: 30px;
  bottom: 27px;
  width: 10px;
  height: 10px;
}
@media screen and (max-width: 767px) {
  .p-top__topics-card-arrow {
    right: 10px;
    bottom: 10px;
    width: 25px;
    height: 25px;
  }
}
.p-top__topics-card-arrow::before {
  content: "";
  position: absolute;
  top: 10px;
  right: -10px;
  width: 40px;
  height: 5px;
  background-image: url("../images/inquiry-arrow.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0);
}
@media screen and (max-width: 767px) {
  .p-top__topics-card-arrow::before {
    width: 35px;
    height: 4px;
    right: 10px;
  }
}
.p-top__topics-card-arrow-circle {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-top__topics-card-arrow-circle {
    width: 25px;
    height: 25px;
  }
}
.p-top__topics-button {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top__topics-button {
    margin-top: 25px;
  }
}
.p-top__topics-button a {
  display: inline-block;
  width: 300px;
  padding: 18px 0;
  background: #333;
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border-radius: 50px;
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top__topics-button a {
    width: 100%;
    padding: 15px 0;
  }
}
.p-top__topics-button a:hover {
  opacity: 0.7;
}
.p-top__blog {
  background: #EFEFEF;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-top__blog {
    padding: 0 0 50px;
  }
}
.p-top__blog-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-top__blog-inner {
    padding: 0 20px;
  }
}
.p-top__blog-banner {
  display: block;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background-image: url("../images/top-blog.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: opacity 0.3s;
}
.p-top__blog-banner:hover {
  opacity: 0.85;
}
.p-top__blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.p-top__blog-content {
  position: relative;
  z-index: 1;
  padding: 100px 80px;
}
@media screen and (max-width: 767px) {
  .p-top__blog-content {
    padding: 40px 25px;
  }
}
.p-top__blog-text {
  text-align: center;
}
.p-top__blog-text h2 {
  font-family: "Prata", serif;
  font-size: 36px;
  font-weight: 400;
  color: white;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-top__blog-text h2 {
    font-size: 26px;
    padding-bottom: 15px;
    margin-bottom: 18px;
  }
}
.p-top__blog-text p {
  color: white;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top__blog-text p {
    font-size: 14px;
  }
}
.p-top__blog-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.p-top__blog-arrow-circle {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top__blog-arrow-circle {
    width: 40px;
    height: 40px;
  }
}
.p-top__blog-arrow-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 35%;
  transform: translateY(-50%);
  width: 85px;
  height: 11px;
  background-image: url("../images/inquiry-arrow.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-top__blog-arrow-circle::before {
    width: 40px;
    height: 5px;
    right: 30%;
  }
}
.p-top__recruit-banner:hover .p-top__blog-arrow-circle {
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.9);
}
.p-top__about {
  position: relative;
  background: #EFEFEF;
}
.p-top__about > img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top__about-head {
  position: absolute;
  bottom: 40px;
  left: 50px;
}
@media screen and (max-width: 767px) {
  .p-top__about-head {
    bottom: 20px;
    left: 20px;
  }
}
.p-top__about-head h2 {
  font-family: "Prata", serif;
  font-size: 42px;
  font-weight: 400;
  color: white;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top__about-head h2 {
    font-size: 28px;
  }
}
.p-top__about-head p {
  font-size: 14px;
  font-weight: 500;
  color: white;
}
@media screen and (max-width: 767px) {
  .p-top__about-head p {
    font-size: 12px;
  }
}
.p-top__company {
  background: #EFEFEF;
  padding: 80px 0 0;
}
@media screen and (max-width: 767px) {
  .p-top__company {
    padding: 50px 0;
  }
}
.p-top__company-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-top__company-inner {
    padding: 0 20px;
  }
}
.p-top__company-cards {
  display: flex;
  gap: 20px;
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top__company-cards {
    flex-direction: column;
    gap: 15px;
  }
}
.p-top__company-card {
  flex: 1;
  background: rgba(38, 40, 39, 0.9);
  padding: 40px 30px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top__company-card {
    padding: 30px 20px 25px;
  }
}
.p-top__company-card:hover {
  opacity: 0.9;
}
.p-top__company-card:hover .p-top__company-card-arrow-circle {
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.8);
}
.p-top__company-card-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .p-top__company-card-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
  }
}
.p-top__company-card-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-top__company-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top__company-card h3 {
    font-size: 14px;
  }
}
.p-top__company-card-en {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  margin-top: 5px;
}
.p-top__company-card-arrow {
  margin-top: auto;
  padding-top: 20px;
  align-self: flex-end;
  position: relative;
  width: 35px;
  height: 35px;
}
@media screen and (max-width: 767px) {
  .p-top__company-card-arrow {
    padding-top: 15px;
    width: 30px;
    height: 30px;
  }
}
.p-top__company-card-arrow::before {
  content: "";
  position: absolute;
  top: 43%;
  right: 37%;
  width: 55px;
  height: 6px;
  background-image: url("../images/inquiry-arrow.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: background 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-top__company-card-arrow::before {
    width: 47px;
  }
}
.p-top__company-card-arrow-circle {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-top__company-card-arrow-circle {
    width: 30px;
    height: 30px;
  }
}
.p-top__recruit {
  background: #EFEFEF;
  padding: 80px 0 0;
}
@media screen and (max-width: 767px) {
  .p-top__recruit {
    padding: 0 0 50px;
  }
}
.p-top__recruit-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-top__recruit-inner {
    padding: 0 20px;
  }
}
.p-top__recruit-banner {
  display: block;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background-image: url("../images/top-recruit-back.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: opacity 0.3s;
}
.p-top__recruit-banner:hover {
  opacity: 0.85;
}
.p-top__recruit-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.p-top__recruit-content {
  position: relative;
  z-index: 1;
  padding: 100px 80px;
}
@media screen and (max-width: 767px) {
  .p-top__recruit-content {
    padding: 40px 25px;
  }
}
.p-top__recruit-text {
  text-align: center;
}
.p-top__recruit-text h2 {
  font-family: "Prata", serif;
  font-size: 36px;
  font-weight: 400;
  color: white;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-top__recruit-text h2 {
    font-size: 26px;
    padding-bottom: 15px;
    margin-bottom: 18px;
  }
}
.p-top__recruit-text p {
  color: white;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top__recruit-text p {
    font-size: 14px;
  }
}
.p-top__recruit-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.p-top__recruit-arrow-circle {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top__recruit-arrow-circle {
    width: 40px;
    height: 40px;
  }
}
.p-top__recruit-arrow-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 35%;
  transform: translateY(-50%);
  width: 85px;
  height: 11px;
  background-image: url("../images/inquiry-arrow.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-top__recruit-arrow-circle::before {
    width: 40px;
    height: 5px;
    right: 30%;
  }
}
.p-top__recruit-banner:hover .p-top__recruit-arrow-circle {
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.9);
}
.p-top__ideal {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .p-top__ideal {
    padding-bottom: 0;
  }
}
.p-top__ideal__grid {
  width: 87%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 40px 100px 60px;
  margin-top: 100px;
  background: #262827;
}
@media screen and (max-width: 767px) {
  .p-top__ideal__grid {
    width: 100%;
    padding: 30px 20px;
    margin-top: 0;
  }
}
.p-top__ideal__head {
  text-align: center;
}
.p-top__ideal__head p {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top__ideal__head p {
    font-size: 13px;
  }
}
.p-top__ideal__head h2 {
  color: white;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.05rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top__ideal__head h2 {
    font-size: 24px;
  }
}
.p-top__ideal__head h2 .num {
  font-size: 60px;
}
@media screen and (max-width: 767px) {
  .p-top__ideal__head h2 .num {
    font-size: 40px;
  }
}
.p-top__ideal__contents {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .p-top__ideal__contents {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-top__ideal__contents {
    grid-template-columns: 1fr;
  }
}
.p-top__ideal__contents .item {
  color: white;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
  border-right: 1px dotted rgba(255, 255, 255, 0.4);
}
.p-top__ideal__contents .item:nth-child(3n) {
  border-right: none;
}
.p-top__ideal__contents .item:nth-last-child(-n+3) {
  border-bottom: none;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .p-top__ideal__contents .item:nth-child(3n) {
    border-right: 1px dotted rgba(255, 255, 255, 0.4);
  }
  .p-top__ideal__contents .item:nth-child(2n) {
    border-right: none;
  }
  .p-top__ideal__contents .item:nth-last-child(-n+3) {
    border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
  }
  .p-top__ideal__contents .item:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .p-top__ideal__contents .item:last-child:nth-child(odd) {
    border-bottom: none;
  }
}
@media screen and (max-width: 767px) {
  .p-top__ideal__contents .item {
    border-right: none;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
  }
  .p-top__ideal__contents .item:last-child {
    border-bottom: none;
  }
}
.p-top__ideal__contents .item .item__inner {
  padding: 25px 20px;
}
@media screen and (max-width: 767px) {
  .p-top__ideal__contents .item .item__inner {
    padding: 20px 15px;
  }
}
.p-top__ideal__contents .item__head {
  display: flex;
  align-items: center;
}
.p-top__ideal__contents .item__head img {
  width: 70px;
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  .p-top__ideal__contents .item__head img {
    width: 55px;
  }
}
.p-top__ideal__contents .item__head h3 {
  font-size: 17px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-top__ideal__contents .item__head h3 {
    font-size: 16px;
  }
}
.p-top__ideal__contents .item__text {
  margin-top: 15px;
}
.p-top__ideal__contents .item__text p {
  font-size: 13px;
  line-height: 1.75;
}
.p-top__ideal__contents .item__link {
  margin-top: 15px;
  text-align: right;
}
.p-top__ideal__contents .item__link a {
  display: inline-block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  letter-spacing: 0.03rem;
  padding-right: 20px;
  position: relative;
  transition: color 0.3s;
}
.p-top__ideal__contents .item__link a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  border-right: 1px solid rgba(255, 255, 255, 0.7);
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.3s;
}
.p-top__ideal__contents .item__link a:hover {
  color: white;
}
.p-top__ideal__contents .item__link a:hover::after {
  border-color: white;
}

@keyframes scroll-dot {
  0% {
    top: 0;
    opacity: 1;
  }
  80% {
    top: 43px;
    opacity: 0.3;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.p-front__main {
  position: relative;
}
.p-front__main__arrow {
  position: absolute;
  left: 50%;
  bottom: 120px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.p-front__main__arrow a {
  display: flex;
  transform: rotate(90deg);
  transform-origin: left top;
  align-items: center;
}
.p-front__main__arrow a span {
  font-size: 16px;
  font-weight: bold;
  color: white;
  margin-right: 20px;
}
.p-front__main__arrow a img {
  width: 60px;
  height: 10px;
  animation: arrow-bounce 1.5s ease-in-out infinite;
}
.p-front__main__contents {
  position: relative;
}
.p-front__main__contents h1 {
  position: absolute;
  left: 5%;
  bottom: 15%;
}
@media screen and (max-width: 767px) {
  .p-front__main__contents h1 {
    bottom: 100px;
  }
}
.p-front__main__contents h1 p {
  color: white;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02rem;
}
@media screen and (min-width: 992px) {
  .p-front__main__contents h1 p {
    margin: 5px 0;
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-front__main__contents h1 p {
    font-size: 16px;
    padding: 5px 5px;
  }
}
.p-front__recommend {
  background: #323232;
}
.p-front__recommend__grid {
  width: 90%;
  margin: 0 auto;
  max-width: 1500px;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-front__recommend__grid {
    width: 100%;
    padding: 40px 20px;
  }
}
.p-front__recommend__contents {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-front__recommend__contents {
    display: block;
    margin-top: 20px;
  }
}
.p-front__recommend__main {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-front__recommend__main {
    width: 100%;
    margin-bottom: 20px;
  }
}
.p-front__recommend__main .item {
  display: block;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .p-front__recommend__main .item {
    padding: 0 5px;
  }
}
.p-front__recommend__main .item:hover .item__arrow .circle {
  width: 55px;
  height: 55px;
}
.p-front__recommend__main .item:hover .item__arrow img {
  left: -20px;
}
.p-front__recommend__main .item__image {
  position: relative;
}
.p-front__recommend__main .item__image img {
  width: 100%;
  height: 26.35vw;
  max-height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-front__recommend__main .item__image img {
    height: 200px;
  }
}
.p-front__recommend__main .item__status {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}
.p-front__recommend__main .item__status span {
  color: white;
  display: inline-block;
  padding: 3px;
  width: 100px;
  font-size: 12px;
}
.p-front__recommend__main .item__status--buildings {
  background: rgba(0, 74, 47, 0.5);
}
.p-front__recommend__main .item__status--buy-land {
  background: rgba(136, 130, 6, 0.7);
}
.p-front__recommend__main .item__status--vacant-land {
  background: rgba(136, 130, 6, 0.7);
}
.p-front__recommend__main .item__status--vacant-land-schedule {
  background: rgba(136, 130, 6, 0.7);
}
.p-front__recommend__main .item__status--vacant-land-building {
  background: rgba(136, 130, 6, 0.7);
}
.p-front__recommend__main .item__status--architecting {
  background: rgba(54, 23, 0, 0.5);
}
.p-front__recommend__main .item__status--see {
  background: rgba(0, 74, 47, 0.5);
}
.p-front__recommend__main .item__status--full-room {
  background: rgba(140, 0, 0, 0.5);
}
.p-front__recommend__main .item__status--done {
  background: rgba(140, 0, 0, 0.5);
}
.p-front__recommend__main .item__tag {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  text-align: center;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}
.p-front__recommend__main .item__tag span {
  color: white;
  font-size: 12px;
}
.p-front__recommend__main .item__tag--apartment {
  background: rgba(132, 66, 12, 0.5);
}
.p-front__recommend__main .item__tag--kodate {
  background: rgba(54, 23, 0, 0.7);
}
.p-front__recommend__main .item__tag--kodate-see {
  background: rgba(54, 23, 0, 0.7);
}
.p-front__recommend__main .item__tag--kodate-old {
  background: rgba(54, 23, 0, 0.7);
}
.p-front__recommend__main .item__tag--kodate-kenchiku {
  background: rgba(54, 23, 0, 0.7);
}
.p-front__recommend__main .item__tag--next {
  background: rgba(0, 30, 83, 0.7);
}
.p-front__recommend__main .item__tag--land-with-no-building-conditions {
  background: rgba(136, 130, 6, 0.7);
}
.p-front__recommend__main .item__tag--land-with-building-conditions {
  background: rgba(136, 130, 6, 0.7);
}
.p-front__recommend__main .item__tag--order {
  background: rgba(136, 130, 6, 0.7);
}
.p-front__recommend__main .item__tag--invest {
  background: rgba(70, 92, 23, 0.7);
}
.p-front__recommend__main .item__title {
  margin-top: 10px;
}
.p-front__recommend__main .item__title span {
  color: white;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-front__recommend__main .item__title span {
    font-size: 16px;
    padding: 5px;
  }
}
.p-front__recommend__main .item__texts {
  position: relative;
}
.p-front__recommend__main .item__adress {
  display: flex;
  align-items: center;
  margin-top: 15px;
  color: white;
}
.p-front__recommend__main .item__adress .head {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02rem;
  min-width: 70px;
}
.p-front__recommend__main .item__adress .adress {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02rem;
}
.p-front__recommend__main .item__price {
  display: flex;
  align-items: baseline;
}
.p-front__recommend__main .item__price .head {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02rem;
  min-width: 70px;
  color: white;
  margin-right: 10px;
}
.p-front__recommend__main .item__price .price {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02rem;
  color: white;
}
.p-front__recommend__main .item__price .price .num {
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-front__recommend__main .item__price .price .num {
    font-size: 30px;
  }
}
.p-front__recommend__main .item__arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 60px;
}
@media screen and (max-width: 767px) {
  .p-front__recommend__main .item__arrow {
    width: 40px;
  }
}
.p-front__recommend__main .item__arrow .circle {
  width: 40px;
  height: 40px;
  border: 1px solid white;
  border-radius: 50%;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-front__recommend__main .item__arrow .circle {
    width: 30px;
    height: 30px;
  }
}
.p-front__recommend__main .item__arrow img {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 60px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-front__recommend__main .item__arrow img {
    width: 30px;
    left: -15px;
  }
}
.p-front__recommend__main {
  /* 成約済みアイテムのスタイル */
}
.p-front__recommend__main .item--done {
  position: relative;
  cursor: default;
  pointer-events: none;
  /* クリックを無効化 */
}
.p-front__recommend__main {
  /* 成約済みオーバーレイ */
}
.p-front__recommend__main .item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  /* 半透明の黒 */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.p-front__recommend__main .item__overlay-text {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  background-color: rgba(255, 0, 0, 0.8);
  /* 赤い背景 */
  padding: 10px 30px;
  border-radius: 5px;
  letter-spacing: 0.1em;
}
.p-front__recommend__main {
  /* 成約済みの場合、少し透明度を下げる(オプション) */
}
.p-front__recommend__main .item--done .item__image,
.p-front__recommend__main .item--done .item__title,
.p-front__recommend__main .item--done .item__texts {
  opacity: 0.7;
}
.p-front__recommend__sub {
  width: 49%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-front__recommend__sub {
    width: 100%;
  }
}
.p-front__recommend__sub .item {
  display: block;
  padding: 0 10px;
  width: 49.5%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-front__recommend__sub .item {
    padding: 0 5px;
  }
}
.p-front__recommend__sub .item:hover .item__arrow .circle {
  width: 30px;
  height: 30px;
}
.p-front__recommend__sub .item__image {
  position: relative;
}
.p-front__recommend__sub .item__image img {
  width: 100%;
  height: 13.46vw;
  max-height: 184px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-front__recommend__sub .item__image img {
    height: 106px;
  }
}
.p-front__recommend__sub .item__status {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}
.p-front__recommend__sub .item__status span {
  color: white;
  display: inline-block;
  padding: 3px;
  font-size: 12px;
  width: 80px;
}
@media screen and (max-width: 767px) {
  .p-front__recommend__sub .item__status span {
    font-size: 9px;
  }
}
.p-front__recommend__sub .item__status--buildings {
  background: rgba(0, 74, 47, 0.5);
}
.p-front__recommend__sub .item__status--buy-land {
  background: rgba(136, 130, 6, 0.7);
}
.p-front__recommend__sub .item__status--vacant-land {
  background: rgba(136, 130, 6, 0.7);
}
.p-front__recommend__sub .item__status--vacant-land-schedule {
  background: rgba(136, 130, 6, 0.7);
}
.p-front__recommend__sub .item__status--vacant-land-building {
  background: rgba(136, 130, 6, 0.7);
}
.p-front__recommend__sub .item__status--architecting {
  background: rgba(54, 23, 0, 0.5);
}
.p-front__recommend__sub .item__status--see {
  background: rgba(0, 74, 47, 0.5);
}
.p-front__recommend__sub .item__status--full-room {
  background: rgba(140, 0, 0, 0.5);
}
.p-front__recommend__sub .item__status--done {
  background: rgba(140, 0, 0, 0.5);
}
.p-front__recommend__sub .item__tag {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  text-align: center;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}
.p-front__recommend__sub .item__tag span {
  color: white;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .p-front__recommend__sub .item__tag span {
    font-size: 9px;
  }
}
.p-front__recommend__sub .item__tag--apartment {
  background: rgba(132, 66, 12, 0.5);
}
.p-front__recommend__sub .item__tag--kodate {
  background: rgba(54, 23, 0, 0.7);
}
.p-front__recommend__sub .item__tag--kodate-see {
  background: rgba(54, 23, 0, 0.7);
}
.p-front__recommend__sub .item__tag--kodate-old {
  background: rgba(54, 23, 0, 0.7);
}
.p-front__recommend__sub .item__tag--kodate-kenchiku {
  background: rgba(54, 23, 0, 0.7);
}
.p-front__recommend__sub .item__tag--next {
  background: rgba(0, 30, 83, 0.7);
}
.p-front__recommend__sub .item__tag--land-with-no-building-conditions {
  background: rgba(136, 130, 6, 0.7);
}
.p-front__recommend__sub .item__tag--land-with-building-conditions {
  background: rgba(136, 130, 6, 0.7);
}
.p-front__recommend__sub .item__tag--order {
  background: rgba(136, 130, 6, 0.7);
}
.p-front__recommend__sub .item__tag--invest {
  background: rgba(70, 92, 23, 0.7);
}
.p-front__recommend__sub .item__title {
  margin-top: 10px;
}
.p-front__recommend__sub .item__title span {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
  display: inline-block;
  padding: 5px;
  color: white;
}
@media screen and (max-width: 767px) {
  .p-front__recommend__sub .item__title span {
    font-size: 12px;
    padding: 5px;
  }
}
.p-front__recommend__sub .item__texts {
  position: relative;
}
.p-front__recommend__sub .item__price {
  display: flex;
  align-items: baseline;
  color: white;
}
.p-front__recommend__sub .item__price .head {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02rem;
  min-width: 70px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .p-front__recommend__sub .item__price .head {
    min-width: 40px;
    font-size: 12px;
  }
}
.p-front__recommend__sub .item__price .price {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 767px) {
  .p-front__recommend__sub .item__price .price {
    font-size: 12px;
  }
}
.p-front__recommend__sub .item__price .price .num {
  font-size: 25px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-front__recommend__sub .item__price .price .num {
    font-size: 18px;
  }
}
.p-front__recommend__sub .item__arrow {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.p-front__recommend__sub .item__arrow .circle {
  width: 25px;
  height: 25px;
  border: 1px solid white;
  border-radius: 50%;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-front__recommend__sub .item__arrow .circle {
    width: 30px;
    height: 30px;
  }
}
.p-front__recommend__sub .item__arrow img {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 32px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-front__recommend__sub .item__arrow img {
    width: 30px;
    left: -15px;
  }
}
.p-front__recommend__sub {
  /* 成約済みアイテムのスタイル */
}
.p-front__recommend__sub .item--done {
  position: relative;
  cursor: default;
  pointer-events: none;
  /* クリックを無効化 */
}
.p-front__recommend__sub {
  /* 成約済みオーバーレイ */
}
.p-front__recommend__sub .item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  /* 半透明の黒 */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.p-front__recommend__sub .item__overlay-text {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  background-color: rgba(255, 0, 0, 0.8);
  /* 赤い背景 */
  padding: 10px 30px;
  border-radius: 5px;
  letter-spacing: 0.1em;
}
.p-front__recommend__sub {
  /* 成約済みの場合、少し透明度を下げる(オプション) */
}
.p-front__recommend__sub .item--done .item__image,
.p-front__recommend__sub .item--done .item__title,
.p-front__recommend__sub .item--done .item__texts {
  opacity: 0.7;
}
.p-front__recommend__head h2 {
  color: white;
  font-family: "Prata", serif;
  font-size: 30px;
  letter-spacing: 0.02rem;
  line-height: 1;
  font-weight: 400;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .p-front__recommend__head h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-front__recommend__head h2 {
    font-size: 24px;
  }
}
.p-front__recommend__head h2::after {
  content: "";
  background: white;
  height: 2px;
  width: 30px;
  position: absolute;
  top: -20px;
  left: 0;
}
.p-front__recommend__head p {
  color: white;
  font-size: 13px;
  font-weight: 500;
}
.p-front__recommend__button {
  text-align: center;
  margin-top: 75px;
}
@media screen and (max-width: 767px) {
  .p-front__recommend__button {
    margin-top: 30px;
  }
}
.p-front__recommend__button a {
  display: inline-block;
  width: 400px;
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 15px 0;
  border: 2px solid white;
  border-radius: 50px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-front__recommend__button a {
    padding: 10px 0;
    width: 300px;
  }
}
.p-front__recommend__button a:hover {
  background: white;
  color: #005E3C;
}
.p-front__ideal__grid {
  width: 87%;
  margin: 0 auto;
  max-width: 1200px;
  background: #E8E8E8;
  padding: 40px 100px 60px;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-front__ideal__grid {
    width: 100%;
    padding: 30px 20px;
    margin-top: 0;
  }
}
.p-front__ideal__head {
  text-align: center;
}
.p-front__ideal__head p {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-front__ideal__head p {
    font-size: 13px;
  }
}
.p-front__ideal__head h2 {
  color: #005E3C;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.05rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-front__ideal__head h2 {
    font-size: 24px;
  }
}
.p-front__ideal__head h2 .num {
  font-size: 60px;
}
@media screen and (max-width: 767px) {
  .p-front__ideal__head h2 .num {
    font-size: 40px;
  }
}
.p-front__ideal__contents {
  background: white;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .p-front__ideal__contents {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-front__ideal__contents {
    grid-template-columns: 1fr;
  }
}
.p-front__ideal__contents .item {
  border-bottom: 1px dotted rgba(0, 0, 0, 0.3);
  border-right: 1px dotted rgba(0, 0, 0, 0.3);
}
.p-front__ideal__contents .item:nth-child(3n) {
  border-right: none;
}
.p-front__ideal__contents .item:nth-last-child(-n+3) {
  border-bottom: none;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .p-front__ideal__contents .item:nth-child(3n) {
    border-right: 1px dotted rgba(0, 0, 0, 0.3);
  }
  .p-front__ideal__contents .item:nth-child(2n) {
    border-right: none;
  }
  .p-front__ideal__contents .item:nth-last-child(-n+3) {
    border-bottom: 1px dotted rgba(0, 0, 0, 0.3);
  }
  .p-front__ideal__contents .item:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .p-front__ideal__contents .item:last-child:nth-child(odd) {
    border-bottom: none;
  }
}
@media screen and (max-width: 767px) {
  .p-front__ideal__contents .item {
    border-right: none;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.3);
  }
  .p-front__ideal__contents .item:last-child {
    border-bottom: none;
  }
}
.p-front__ideal__contents .item .item__inner {
  padding: 25px 20px;
}
@media screen and (max-width: 767px) {
  .p-front__ideal__contents .item .item__inner {
    padding: 20px 15px;
  }
}
.p-front__ideal__contents .item__head {
  display: flex;
  align-items: center;
}
.p-front__ideal__contents .item__head img {
  width: 70px;
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  .p-front__ideal__contents .item__head img {
    width: 55px;
  }
}
.p-front__ideal__contents .item__head h3 {
  font-size: 17px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-front__ideal__contents .item__head h3 {
    font-size: 16px;
  }
}
.p-front__ideal__contents .item__text {
  margin-top: 15px;
}
.p-front__ideal__contents .item__text p {
  font-size: 13px;
  line-height: 1.75;
}
.p-front__detail {
  background: #F5F5F5;
  padding: 100px 0 60px;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-front__detail {
    padding: 40px 0 30px;
    margin-top: 20px;
  }
}
.p-front__detail__head {
  text-align: center;
}
.p-front__detail__head h2 {
  color: #005E3C;
  font-size: 30px;
  letter-spacing: 0.02rem;
  margin-top: 28px;
  font-weight: 400;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-front__detail__head h2 {
    font-size: 18px;
    margin-top: 10px;
  }
}
.p-front__detail__head h2::after {
  content: "";
  background: #005E3C;
  height: 2px;
  width: 30px;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.p-front__detail__head h2 .normal {
  color: black;
}
.p-front__detail__head img {
  width: 3.29vw;
}
@media screen and (max-width: 767px) {
  .p-front__detail__head img {
    width: 35px;
  }
}
.p-front__lot {
  padding: 100px 0;
  background: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .p-front__lot {
    padding-bottom: 40px;
  }
}
.p-front__lot__head__grid {
  width: 90%;
  margin: 0 auto;
  max-width: 1500px;
}
@media screen and (max-width: 767px) {
  .p-front__lot__head__grid {
    width: 100%;
    padding: 0 20px;
  }
}
.p-front__lot__head__grid h2 {
  font-family: "Prata", serif;
  font-size: 30px;
  letter-spacing: 0.02rem;
  line-height: 1;
  font-weight: 400;
  color: #005E3C;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .p-front__lot__head__grid h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-front__lot__head__grid h2 {
    font-size: 24px;
  }
}
.p-front__lot__head__grid h2::after {
  content: "";
  background: #005E3C;
  height: 2px;
  width: 30px;
  position: absolute;
  top: -20px;
  left: 0;
}
.p-front__lot__head__grid p {
  font-size: 13px;
  font-weight: 500;
}
.p-front__lot__contents {
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-front__lot__contents {
    padding-top: 20px;
  }
}
.p-front__lot__contents ul {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-front__lot__contents ul {
    display: block;
  }
}
.p-front__lot__contents ul li {
  width: 31.33%;
  margin: 0 1%;
}
@media screen and (max-width: 767px) {
  .p-front__lot__contents ul li {
    width: 100%;
    margin: initial;
    margin-bottom: 10px;
  }
}
.p-front__lot__contents .item {
  display: block;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .p-front__lot__contents .item {
    padding: 0 5px;
  }
}
.p-front__lot__contents .item:hover .item__arrow .circle {
  width: 55px;
  height: 55px;
}
.p-front__lot__contents .item:hover .item__arrow img {
  left: -20px;
}
.p-front__lot__contents .item__image {
  position: relative;
}
.p-front__lot__contents .item__image img {
  height: 20.497vw;
  max-height: 280px;
}
@media screen and (max-width: 767px) {
  .p-front__lot__contents .item__image img {
    width: 100%;
    height: 200px;
  }
}
.p-front__lot__contents .item__image img {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-front__lot__contents .item__status {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}
.p-front__lot__contents .item__status span {
  font-size: 12px;
  color: white;
  display: inline-block;
  padding: 3px;
  width: 100px;
}
.p-front__lot__contents .item__status--buildings {
  background: rgba(0, 74, 47, 0.5);
}
.p-front__lot__contents .item__status--buy-land {
  background: rgba(136, 130, 6, 0.7);
}
.p-front__lot__contents .item__status--vacant-land {
  background: rgba(136, 130, 6, 0.7);
}
.p-front__lot__contents .item__status--vacant-land-schedule {
  background: rgba(136, 130, 6, 0.7);
}
.p-front__lot__contents .item__status--vacant-land-building {
  background: rgba(136, 130, 6, 0.7);
}
.p-front__lot__contents .item__status--architecting {
  background: rgba(54, 23, 0, 0.5);
}
.p-front__lot__contents .item__status--see {
  background: rgba(0, 74, 47, 0.5);
}
.p-front__lot__contents .item__status--full-room {
  background: rgba(140, 0, 0, 0.5);
}
.p-front__lot__contents .item__status--done {
  background: rgba(140, 0, 0, 0.5);
}
.p-front__lot__contents .item__tag {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  text-align: center;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}
.p-front__lot__contents .item__tag span {
  font-size: 12px;
  color: white;
}
.p-front__lot__contents .item__tag--apartment {
  background: rgba(132, 66, 12, 0.5);
}
.p-front__lot__contents .item__tag--kodate {
  background: rgba(54, 23, 0, 0.7);
}
.p-front__lot__contents .item__tag--kodate-see {
  background: rgba(54, 23, 0, 0.7);
}
.p-front__lot__contents .item__tag--kodate-old {
  background: rgba(54, 23, 0, 0.7);
}
.p-front__lot__contents .item__tag--kodate-kenchiku {
  background: rgba(54, 23, 0, 0.7);
}
.p-front__lot__contents .item__tag--next {
  background: rgba(0, 30, 83, 0.7);
}
.p-front__lot__contents .item__tag--land-with-no-building-conditions {
  background: rgba(136, 130, 6, 0.7);
}
.p-front__lot__contents .item__tag--land-with-building-conditions {
  background: rgba(136, 130, 6, 0.7);
}
.p-front__lot__contents .item__tag--order {
  background: rgba(136, 130, 6, 0.7);
}
.p-front__lot__contents .item__tag--invest {
  background: rgba(70, 92, 23, 0.7);
}
.p-front__lot__contents .item__title {
  margin-top: 10px;
}
.p-front__lot__contents .item__title span {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-front__lot__contents .item__title span {
    font-size: 16px;
    padding: 5px;
  }
}
.p-front__lot__contents .item__texts {
  position: relative;
}
.p-front__lot__contents .item__adress {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.p-front__lot__contents .item__adress .head {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02rem;
  min-width: 70px;
}
.p-front__lot__contents .item__adress .adress {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02rem;
}
.p-front__lot__contents .item__price {
  display: flex;
  align-items: baseline;
}
.p-front__lot__contents .item__price .head {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02rem;
  min-width: 70px;
  margin-right: 10px;
}
.p-front__lot__contents .item__price .price {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02rem;
  color: #005E3C;
}
.p-front__lot__contents .item__price .price .num {
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-front__lot__contents .item__price .price .num {
    font-size: 30px;
  }
}
.p-front__lot__contents .item__arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 60px;
}
@media screen and (max-width: 767px) {
  .p-front__lot__contents .item__arrow {
    width: 40px;
  }
}
.p-front__lot__contents .item__arrow .circle {
  width: 40px;
  height: 40px;
  border: 1px solid black;
  border-radius: 50%;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-front__lot__contents .item__arrow .circle {
    width: 30px;
    height: 30px;
  }
}
.p-front__lot__contents .item__arrow img {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 60px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-front__lot__contents .item__arrow img {
    width: 30px;
    left: -15px;
  }
}
.p-front__lot__contents {
  /* 成約済みアイテムのスタイル */
}
.p-front__lot__contents .item--done {
  position: relative;
  cursor: default;
  pointer-events: none;
  /* クリックを無効化 */
}
.p-front__lot__contents {
  /* 成約済みオーバーレイ */
}
.p-front__lot__contents .item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  /* 半透明の黒 */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.p-front__lot__contents .item__overlay-text {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  background-color: rgba(255, 0, 0, 0.8);
  /* 赤い背景 */
  padding: 10px 30px;
  border-radius: 5px;
  letter-spacing: 0.1em;
}
.p-front__lot__contents {
  /* 成約済みの場合、少し透明度を下げる(オプション) */
}
.p-front__lot__contents .item--done .item__image,
.p-front__lot__contents .item--done .item__title,
.p-front__lot__contents .item--done .item__texts {
  opacity: 0.7;
}
.p-front__lot__button {
  text-align: center;
  margin-top: 75px;
}
@media screen and (max-width: 767px) {
  .p-front__lot__button {
    margin-top: 30px;
  }
}
.p-front__lot__button a {
  display: inline-block;
  width: 400px;
  font-size: 13px;
  font-weight: 500;
  padding: 15px 0;
  border: 2px solid black;
  border-radius: 50px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-front__lot__button a {
    padding: 10px 0;
    width: 300px;
  }
}
.p-front__lot__button a:hover {
  background: black;
  color: white;
}
.p-front__custom {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-front__custom {
    background: #F5F5F5;
    padding-bottom: 50px;
  }
}
.p-front__custom__texts {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-front__custom__texts {
    bottom: -51px;
  }
}
.p-front__custom__texts__grid {
  width: 90%;
  margin: 0 auto;
  max-width: 1500px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-front__custom__texts__grid {
    width: 90%;
    margin: 0 auto;
    display: block;
  }
}
.p-front__custom__head {
  width: 20%;
  color: white;
}
@media screen and (max-width: 767px) {
  .p-front__custom__head {
    width: 100%;
  }
}
.p-front__custom__head h2 {
  font-family: "Prata", serif;
  font-size: 30px;
  letter-spacing: 0.02rem;
  line-height: 1;
  font-weight: 400;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .p-front__custom__head h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .p-front__custom__head h2 {
    font-size: 28px;
  }
}
.p-front__custom__head p {
  font-size: 13px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-front__custom__head p {
    font-size: 14px;
  }
}
.p-front__custom__contents {
  width: 77%;
  color: white;
}
@media screen and (max-width: 767px) {
  .p-front__custom__contents {
    width: 100%;
    color: black;
  }
}
.p-front__custom__contents .normal {
  font-size: 20px;
  line-height: 1.75;
}
.p-front__custom__contents .small {
  font-size: 13px;
  line-height: 1.75;
}
.p-front__projects {
  background: #F5F5F5;
}
.p-front__projects__grid {
  width: 90%;
  margin: 0 auto;
  max-width: 1500px;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-front__projects__grid {
    width: 100%;
    padding: 110px 20px 60px;
  }
}
.p-front__projects__contents {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-front__projects__contents {
    margin-top: 30px;
    display: block;
  }
}
.p-front__projects__main {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-front__projects__main {
    width: 100%;
    margin-bottom: 20px;
  }
}
.p-front__projects__main .item {
  display: block;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .p-front__projects__main .item {
    padding: 0 5px;
  }
}
.p-front__projects__main .item:hover .item__arrow .circle {
  width: 55px;
  height: 55px;
}
.p-front__projects__main .item:hover .item__arrow img {
  left: -20px;
}
.p-front__projects__main .item__image {
  position: relative;
}
.p-front__projects__main .item__image img {
  width: 100%;
  height: 26.35vw;
  max-height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-front__projects__main .item__image img {
    height: 200px;
  }
}
.p-front__projects__main .item__status {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}
.p-front__projects__main .item__status span {
  color: white;
  display: inline-block;
  padding: 3px;
  font-size: 12px;
}
.p-front__projects__main .item__tag {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  text-align: center;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}
.p-front__projects__main .item__tag span {
  color: white;
  font-size: 12px;
}
.p-front__projects__main .item__title {
  margin-top: -4px;
}
.p-front__projects__main .item__title span {
  background: #004A2F;
  color: white;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75;
  display: inline-block;
  padding: 0 5px;
}
@media screen and (max-width: 767px) {
  .p-front__projects__main .item__title span {
    font-size: 16px;
    padding: 5px;
  }
}
.p-front__projects__main .item__texts {
  position: relative;
}
.p-front__projects__main .item__adress {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.p-front__projects__main .item__adress .head {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02rem;
  min-width: 70px;
}
.p-front__projects__main .item__adress .adress {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02rem;
}
.p-front__projects__main .item__arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 60px;
}
@media screen and (max-width: 767px) {
  .p-front__projects__main .item__arrow {
    width: 40px;
  }
}
.p-front__projects__main .item__arrow .circle {
  width: 40px;
  height: 40px;
  border: 1px solid black;
  border-radius: 50%;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-front__projects__main .item__arrow .circle {
    width: 30px;
    height: 30px;
  }
}
.p-front__projects__main .item__arrow img {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 60px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-front__projects__main .item__arrow img {
    width: 30px;
    left: -15px;
  }
}
.p-front__projects__sub {
  width: 49%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-front__projects__sub {
    width: 100%;
  }
}
.p-front__projects__sub .item {
  display: block;
  padding: 0 10px;
  width: 49.5%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-front__projects__sub .item {
    padding: 0 5px;
  }
}
.p-front__projects__sub .item:hover .item__arrow .circle {
  width: 30px;
  height: 30px;
}
.p-front__projects__sub .item__image {
  position: relative;
}
.p-front__projects__sub .item__image img {
  width: 100%;
  height: 13.46vw;
  max-height: 184px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-front__projects__sub .item__image img {
    height: 107px;
  }
}
.p-front__projects__sub .item__title {
  margin-top: -5px;
}
.p-front__projects__sub .item__title span {
  background: #004A2F;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
  display: inline-block;
  padding: 5px;
  color: white;
}
@media screen and (max-width: 767px) {
  .p-front__projects__sub .item__title span {
    font-size: 12px;
    padding: 5px;
  }
}
.p-front__projects__sub .item__texts {
  position: relative;
}
.p-front__projects__sub .item__adress {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.p-front__projects__sub .item__adress .head {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02rem;
  min-width: 70px;
}
@media screen and (max-width: 767px) {
  .p-front__projects__sub .item__adress .head {
    font-size: 12px;
    min-width: 40px;
  }
}
.p-front__projects__sub .item__adress .adress {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 767px) {
  .p-front__projects__sub .item__adress .adress {
    font-size: 12px;
  }
}
.p-front__projects__sub .item__arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.p-front__projects__sub .item__arrow .circle {
  width: 25px;
  height: 25px;
  border: 1px solid black;
  border-radius: 50%;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-front__projects__sub .item__arrow .circle {
    width: 30px;
    height: 30px;
  }
}
.p-front__projects__sub .item__arrow img {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 32px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-front__projects__sub .item__arrow img {
    width: 30px;
    left: -15px;
  }
}
.p-front__projects__head h2 {
  font-family: "Prata", serif;
  font-size: 30px;
  letter-spacing: 0.02rem;
  line-height: 1;
  font-weight: 400;
  color: #005E3C;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .p-front__projects__head h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-front__projects__head h2 {
    font-size: 24px;
  }
}
.p-front__projects__head h2::after {
  content: "";
  background: #005E3C;
  height: 2px;
  width: 30px;
  position: absolute;
  top: -20px;
  left: 0;
}
.p-front__projects__head p {
  font-size: 13px;
  font-weight: 500;
}
.p-front__projects__button {
  text-align: center;
  margin-top: 75px;
}
@media screen and (max-width: 767px) {
  .p-front__projects__button {
    margin-top: 30px;
  }
}
.p-front__projects__button a {
  display: inline-block;
  width: 400px;
  font-size: 13px;
  font-weight: 500;
  padding: 15px 0;
  border: 2px solid black;
  border-radius: 50px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-front__projects__button a {
    padding: 10px 0;
    width: 300px;
  }
}
.p-front__projects__button a:hover {
  background: black;
  color: white;
}
.p-front__voice {
  padding-bottom: 80px;
  background: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .p-front__voice {
    padding-bottom: 40px;
  }
}
.p-front__voice__head__grid {
  width: 87%;
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (max-width: 767px) {
  .p-front__voice__head__grid {
    width: 100%;
    padding: 0 8px;
  }
}
.p-front__voice__head__grid h2 {
  color: #005E3C;
  font-family: "Prata", serif;
  font-size: 100px;
  letter-spacing: 0.02rem;
  line-height: 1;
  font-weight: 400;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .p-front__voice__head__grid h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-front__voice__head__grid h2 {
    font-size: 40px;
  }
}
.p-front__voice__head__grid p {
  font-size: 20px;
  color: #005E3C;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-front__voice__head__grid p {
    font-size: 15px;
  }
}
.p-front__voice__contents {
  padding-top: 30px;
}
.p-front__voice__contents__grid {
  width: 87%;
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-front__voice__contents__grid {
    display: block;
  }
}
.p-front__voice__image {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .p-front__voice__image {
    width: 100%;
  }
}
.p-front__voice__texts {
  width: 38%;
}
@media screen and (max-width: 767px) {
  .p-front__voice__texts {
    width: 100%;
  }
}
.p-front__voice__texts p {
  font-size: 22px;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-front__voice__texts p {
    font-size: 14px;
    margin-top: 15px;
  }
}
.p-front__voice__texts .button {
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-front__voice__texts .button {
    margin-top: 20px;
  }
}
.p-front__voice__texts .button a {
  display: inline-block;
  width: 400px;
  background: #005E3C;
  color: white;
  font-size: 16px;
  font-weight: 500;
  padding: 20px 0;
  border: 3px solid #005E3C;
  border-radius: 50px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-front__voice__texts .button a {
    padding: 10px 0;
    width: 300px;
  }
}
.p-front__voice__texts .button a:hover {
  background: white;
  color: #005E3C;
}
.p-front__income {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-front__income {
    padding: 40px 0;
  }
}
.p-front__income__head__grid {
  width: 90%;
  margin: 0 auto;
  max-width: 1500px;
}
@media screen and (max-width: 767px) {
  .p-front__income__head__grid {
    width: 100%;
    padding: 0 20px;
  }
}
.p-front__income__head__grid h2 {
  font-family: "Prata", serif;
  font-size: 30px;
  letter-spacing: 0.02rem;
  line-height: 1;
  font-weight: 400;
  color: #005E3C;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .p-front__income__head__grid h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-front__income__head__grid h2 {
    font-size: 24px;
  }
}
.p-front__income__head__grid h2::after {
  content: "";
  background: #005E3C;
  height: 2px;
  width: 30px;
  position: absolute;
  top: -20px;
  left: 0;
}
.p-front__income__head__grid p {
  font-size: 13px;
  font-weight: 500;
}
.p-front__income__contents {
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-front__income__contents {
    padding-top: 30px;
  }
}
.p-front__income__contents ul {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-front__income__contents ul {
    display: block;
  }
}
.p-front__income__contents ul li {
  width: 31.33%;
  margin: 0 1%;
}
@media screen and (max-width: 767px) {
  .p-front__income__contents ul li {
    width: 100%;
    margin: initial;
    margin-bottom: 10px;
  }
}
.p-front__income__contents .item {
  display: block;
  padding: 0 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-front__income__contents .item {
    padding: 0 5px;
  }
}
.p-front__income__contents .item:hover .item__arrow .circle {
  width: 55px;
  height: 55px;
}
.p-front__income__contents .item:hover .item__arrow img {
  left: -20px;
}
.p-front__income__contents .item__image {
  position: relative;
}
.p-front__income__contents .item__image img {
  height: 20.497vw;
  max-height: 280px;
}
@media screen and (max-width: 767px) {
  .p-front__income__contents .item__image img {
    width: 100%;
    height: 200px;
  }
}
.p-front__income__contents .item__image img {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-front__income__contents .item__status {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}
.p-front__income__contents .item__status span {
  color: white;
  display: inline-block;
  padding: 3px;
  font-size: 12px;
  width: 80px;
}
.p-front__income__contents .item__status--buildings {
  background: rgba(0, 74, 47, 0.5);
}
.p-front__income__contents .item__status--buy-land {
  background: rgba(136, 130, 6, 0.7);
}
.p-front__income__contents .item__status--vacant-land {
  background: rgba(136, 130, 6, 0.7);
}
.p-front__income__contents .item__status--vacant-land-schedule {
  background: rgba(136, 130, 6, 0.7);
}
.p-front__income__contents .item__status--vacant-land-building {
  background: rgba(136, 130, 6, 0.7);
}
.p-front__income__contents .item__status--architecting {
  background: rgba(54, 23, 0, 0.5);
}
.p-front__income__contents .item__status--see {
  background: rgba(0, 74, 47, 0.5);
}
.p-front__income__contents .item__status--full-room {
  background: rgba(140, 0, 0, 0.5);
}
.p-front__income__contents .item__status--done {
  background: rgba(140, 0, 0, 0.5);
}
.p-front__income__contents .item__tag {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  text-align: center;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}
.p-front__income__contents .item__tag span {
  color: white;
  font-size: 12px;
}
.p-front__income__contents .item__tag--apartment {
  background: rgba(132, 66, 12, 0.5);
}
.p-front__income__contents .item__tag--kodate {
  background: rgba(54, 23, 0, 0.7);
}
.p-front__income__contents .item__tag--kodate-see {
  background: rgba(54, 23, 0, 0.7);
}
.p-front__income__contents .item__tag--kodate-old {
  background: rgba(54, 23, 0, 0.7);
}
.p-front__income__contents .item__tag--kodate-kenchiku {
  background: rgba(54, 23, 0, 0.7);
}
.p-front__income__contents .item__tag--next {
  background: rgba(0, 30, 83, 0.7);
}
.p-front__income__contents .item__tag--land-with-no-building-conditions {
  background: rgba(136, 130, 6, 0.7);
}
.p-front__income__contents .item__tag--land-with-building-conditions {
  background: rgba(136, 130, 6, 0.7);
}
.p-front__income__contents .item__tag--order {
  background: rgba(136, 130, 6, 0.7);
}
.p-front__income__contents .item__tag--invest {
  background: rgba(70, 92, 23, 0.7);
}
.p-front__income__contents .item__title {
  margin-top: 10px;
}
.p-front__income__contents .item__title span {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-front__income__contents .item__title span {
    font-size: 16px;
    padding: 5px;
  }
}
.p-front__income__contents .item__texts {
  position: relative;
}
.p-front__income__contents .item__adress {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.p-front__income__contents .item__adress .head {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02rem;
  min-width: 70px;
}
.p-front__income__contents .item__adress .adress {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02rem;
}
.p-front__income__contents .item__income {
  display: flex;
  align-items: baseline;
}
.p-front__income__contents .item__income .head {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02rem;
  min-width: 70px;
}
.p-front__income__contents .item__income .price {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02rem;
  color: #005E3C;
}
.p-front__income__contents .item__income .price .num {
  font-size: 22px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-front__income__contents .item__income .price .num {
    font-size: 30px;
  }
}
.p-front__income__contents .item__price {
  display: flex;
  align-items: baseline;
}
.p-front__income__contents .item__price .head {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02rem;
  min-width: 70px;
  margin-right: 10px;
}
.p-front__income__contents .item__price .price {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02rem;
  color: #005E3C;
}
.p-front__income__contents .item__price .price .num {
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-front__income__contents .item__price .price .num {
    font-size: 30px;
  }
}
.p-front__income__contents .item__arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 60px;
}
@media screen and (max-width: 767px) {
  .p-front__income__contents .item__arrow {
    width: 40px;
  }
}
.p-front__income__contents .item__arrow .circle {
  width: 40px;
  height: 40px;
  border: 1px solid black;
  border-radius: 50%;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-front__income__contents .item__arrow .circle {
    width: 30px;
    height: 30px;
  }
}
.p-front__income__contents .item__arrow img {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 60px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-front__income__contents .item__arrow img {
    width: 30px;
    left: -15px;
  }
}
.p-front__income__contents {
  /* 成約済みアイテムのスタイル */
}
.p-front__income__contents .item--done {
  position: relative;
  cursor: default;
  pointer-events: none;
  /* クリックを無効化 */
}
.p-front__income__contents {
  /* 成約済みオーバーレイ */
}
.p-front__income__contents .item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  /* 半透明の黒 */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.p-front__income__contents .item__overlay-text {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  background-color: rgba(255, 0, 0, 0.8);
  /* 赤い背景 */
  padding: 10px 30px;
  border-radius: 5px;
  letter-spacing: 0.1em;
}
.p-front__income__contents {
  /* 成約済みの場合、少し透明度を下げる(オプション) */
}
.p-front__income__contents .item--done .item__image,
.p-front__income__contents .item--done .item__title,
.p-front__income__contents .item--done .item__texts {
  opacity: 0.7;
}
.p-front__income__button {
  text-align: center;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .p-front__income__button {
    margin-top: 30px;
  }
}
.p-front__income__button a {
  display: inline-block;
  width: 400px;
  font-size: 13px;
  font-weight: 500;
  padding: 15px 0;
  border: 2px solid black;
  border-radius: 50px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-front__income__button a {
    padding: 10px 0;
    width: 300px;
  }
}
.p-front__income__button a:hover {
  background: black;
  color: white;
}
.p-front__event {
  background: #F5F5F5;
}
.p-front__event__grid {
  width: 90%;
  margin: 0 auto;
  max-width: 1500px;
  padding: 60px 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-front__event__grid {
    display: block;
  }
}
.p-front__event__head {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .p-front__event__head {
    width: 100%;
  }
}
.p-front__event__head h2 {
  font-family: "Prata", serif;
  font-size: 30px;
  letter-spacing: 0.02rem;
  line-height: 1;
  font-weight: 400;
  color: #005E3C;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .p-front__event__head h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-front__event__head h2 {
    font-size: 24px;
  }
}
.p-front__event__head h2::after {
  content: "";
  background: #005E3C;
  height: 2px;
  width: 30px;
  position: absolute;
  top: -20px;
  left: 0;
}
.p-front__event__head p {
  font-size: 13px;
  font-weight: 500;
}
.p-front__event__contents {
  width: 77%;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-front__event__contents {
    width: 100%;
  }
}
.p-front__event__contents ul {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-front__event__contents ul {
    display: block;
  }
}
.p-front__event__contents ul li {
  width: 31.333%;
  margin: 0 1%;
}
@media screen and (max-width: 767px) {
  .p-front__event__contents ul li {
    width: 100%;
    margin: 0 auto 20px;
  }
}
.p-front__event__contents ul li a {
  display: block;
}
.p-front__event__contents ul li a:hover .item__arrow .circle {
  width: 30px;
  height: 30px;
}
.p-front__event__contents ul li a:hover .item__arrow img {
  left: -10px;
}
.p-front__event__contents ul li a .item__image img {
  width: 100%;
  height: 16.83vw;
  max-height: 250px;
}
@media screen and (max-width: 767px) {
  .p-front__event__contents ul li a .item__image img {
    height: 54.53vw;
  }
}
.p-front__event__contents ul li a .item__image img {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-front__event__contents ul li a .item__texts {
  padding: 10px 0 30px;
  position: relative;
}
.p-front__event__contents ul li a .item__texts h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02rem;
}
.p-front__event__contents ul li a .item__texts p {
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: 0.02rem;
}
.p-front__event__contents ul li a .item__texts .date {
  font-size: 11px;
}
.p-front__event__contents ul li a .item__arrow {
  position: absolute;
  right: 0;
  bottom: 5px;
  width: 30px;
}
@media screen and (max-width: 767px) {
  .p-front__event__contents ul li a .item__arrow {
    width: 40px;
  }
}
.p-front__event__contents ul li a .item__arrow .circle {
  width: 25px;
  height: 25px;
  border: 1px solid black;
  border-radius: 50%;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-front__event__contents ul li a .item__arrow .circle {
    width: 30px;
    height: 30px;
  }
}
.p-front__event__contents ul li a .item__arrow img {
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 60px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-front__event__contents ul li a .item__arrow img {
    width: 30px;
    left: -15px;
  }
}
.p-front__event__button {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .p-front__event__button {
    margin-top: 30px;
    text-align: center;
  }
}
.p-front__event__button a {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  border: 1px solid black;
  border-radius: 50px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-front__event__button a {
    padding: 10px 0;
    width: 300px;
    text-align: center;
  }
}
.p-front__event__button a:hover {
  background: black;
  color: white;
}
.p-front__info__grid {
  width: 90%;
  margin: 0 auto;
  max-width: 1500px;
  padding: 100px 0 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-front__info__grid {
    display: block;
  }
}
.p-front__info__head {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .p-front__info__head {
    width: 100%;
  }
}
.p-front__info__head h2 {
  font-family: "Prata", serif;
  font-size: 30px;
  letter-spacing: 0.02rem;
  line-height: 1;
  font-weight: 400;
  color: #005E3C;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .p-front__info__head h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-front__info__head h2 {
    font-size: 24px;
  }
}
.p-front__info__head h2::after {
  content: "";
  background: #005E3C;
  height: 2px;
  width: 30px;
  position: absolute;
  top: -20px;
  left: 0;
}
.p-front__info__head p {
  font-size: 13px;
  font-weight: 500;
}
.p-front__info__contents {
  width: 77%;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-front__info__contents {
    width: 100%;
  }
}
.p-front__info__contents ul li a {
  display: block;
}
.p-front__info__contents ul li a:hover .item__arrow .circle {
  width: 30px;
  height: 30px;
}
.p-front__info__contents ul li a:hover .item__arrow img {
  left: -10px;
}
.p-front__info__contents ul li a .item {
  display: flex;
  align-items: center;
  padding: 20px 80px 20px 0;
  border-bottom: 1px dotted black;
  position: relative;
}
.p-front__info__contents ul li a .item .date {
  margin-right: 30px;
  font-size: 13px;
  letter-spacing: 0.02rem;
  font-weight: 500;
}
.p-front__info__contents ul li a .item .title {
  font-size: 14px;
  letter-spacing: 0.02rem;
  font-weight: 700;
  line-height: 1.5;
}
.p-front__info__contents ul li a .item__arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 30px;
}
@media screen and (max-width: 767px) {
  .p-front__info__contents ul li a .item__arrow {
    width: 40px;
  }
}
.p-front__info__contents ul li a .item__arrow .circle {
  width: 25px;
  height: 25px;
  border: 1px solid black;
  border-radius: 50%;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-front__info__contents ul li a .item__arrow .circle {
    width: 30px;
    height: 30px;
  }
}
.p-front__info__contents ul li a .item__arrow img {
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 60px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-front__info__contents ul li a .item__arrow img {
    width: 30px;
    left: -15px;
  }
}
.p-front__info__button {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .p-front__info__button {
    margin-top: 30px;
    text-align: center;
  }
}
.p-front__info__button a {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  border: 1px solid black;
  border-radius: 50px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-front__info__button a {
    padding: 10px 0;
    width: 300px;
  }
}
.p-front__info__button a:hover {
  background: black;
  color: white;
}
.p-front__contact__grid {
  width: 87%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 60px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-front__contact__grid {
    padding: 0 0 60px;
  }
}
.p-front__contact__contents {
  background-image: url("../images/contact-back.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
}
.p-front__contact__contents a {
  display: block;
  padding: 100px 0;
  transition: all 0.3s;
}
.p-front__contact__contents a:hover {
  opacity: 0.7;
}
.p-front__contact__contents a h2 {
  text-align: center;
  color: white;
  font-family: "Prata", serif;
  font-size: 30px;
  letter-spacing: 0.02rem;
  line-height: 1;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-front__contact__contents a h2 {
    font-size: 24px;
  }
}
.p-front__contact__contents a p {
  color: white;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-front__contact__contents a p {
    font-size: 14px;
  }
}
.p-front__recruit {
  background-image: url("../images/recruit-back.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 50px 0 70px;
}
.p-front__recruit__head {
  text-align: center;
}
.p-front__recruit__head h2 {
  color: white;
  font-family: "Prata", serif;
  font-size: 30px;
  letter-spacing: 0.02rem;
  line-height: 1;
  font-weight: 400;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .p-front__recruit__head h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-front__recruit__head h2 {
    font-size: 24px;
  }
}
.p-front__recruit__head p {
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 767px) {
  .p-front__recruit__head p {
    font-size: 13px;
  }
}
.p-front__recruit__text {
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .p-front__recruit__text {
    padding: 20px 0;
  }
}
.p-front__recruit__text p {
  text-align: center;
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 767px) {
  .p-front__recruit__text p {
    font-size: 15px;
  }
}
.p-front__recruit__button {
  text-align: center;
}
.p-front__recruit__button a {
  display: inline-block;
  width: 400px;
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 15px 0;
  border: 2px solid white;
  border-radius: 50px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-front__recruit__button a {
    padding: 10px 0;
    width: 300px;
  }
}
.p-front__recruit__button a:hover {
  background: white;
  color: black;
}

.p-company__main {
  position: relative;
}
.p-company__main__contents {
  position: relative;
}
.p-company__main__contents h1 {
  position: absolute;
  bottom: 10%;
  left: 15%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-company__main__contents h1 {
    bottom: 0;
    left: 50px;
  }
}
.p-company__main__contents h1 span {
  display: inline-block;
  color: white;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02rem;
}
@media screen and (min-width: 992px) {
  .p-company__main__contents h1 span {
    margin: 5px 0;
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-company__main__contents h1 span {
    font-size: 16px;
    padding: 5px 5px;
  }
}
.p-company__life.js-fade-in {
  opacity: 1;
  transform: none;
}
.p-company__life__grid {
  width: 73.2%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-company__life__grid {
    width: 100%;
    padding: 40px 20px;
  }
}
.p-company__life__head h2 {
  text-align: center;
}
.p-company__life__head h2 span {
  color: #333;
  font-weight: 28px;
  font-weight: 700;
  position: relative;
}
.p-company__life__head h2 span::after {
  content: "";
  width: 30px;
  height: 2px;
  background: #333;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.p-company__life__image {
  margin: 40px auto;
  width: 100%;
}
.p-company__life__table {
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.p-company__life__table table {
  width: 100%;
  border-collapse: collapse;
}
.p-company__life__table th,
.p-company__life__table td {
  border: 1px solid white;
  padding: 15px 20px;
  text-align: left;
  vertical-align: top;
  font-size: 15px;
}
.p-company__life__table th {
  background-color: #DDDDDD;
  font-weight: 700;
  width: 200px;
  white-space: nowrap;
  text-align: center;
}
.p-company__life__table td {
  background-color: #F5F5F5;
  color: #333;
}
.p-company__life__table td ul {
  list-style: none;
  padding-left: 0;
}
.p-company__life__table td ul li {
  padding: 2px 0;
}
.p-company__life__table td ul li:before {
  content: "・";
  margin-right: 5px;
}
.p-company__life__table .business-list li,
.p-company__life__table .member-list li,
.p-company__life__table .partner-list li,
.p-company__life__table .support-list li {
  padding: 3px 0;
}
@media screen and (max-width: 768px) {
  .p-company__life__table body {
    padding: 10px;
  }
  .p-company__life__table table {
    font-size: 12px;
  }
  .p-company__life__table th,
  .p-company__life__table td {
    padding: 10px;
    display: block;
    width: 100%;
  }
  .p-company__life__table th {
    background-color: #DDDDDD;
  }
}
.p-company__life__maps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-company__life__maps {
    display: block;
  }
}
.p-company__life__map {
  width: 49%;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-company__life__map {
    width: 100%;
  }
}
.p-company__life__map h2 {
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05rem;
  color: #333;
}
.p-company__life__map__frame {
  margin-top: 10px;
}
.p-company__life__map__frame iframe {
  width: 100%;
  height: 300px;
}

.p-about__main {
  position: relative;
}
.p-about__main__contents {
  position: relative;
}
.p-about__main__contents h1 {
  position: absolute;
  bottom: 10%;
  left: 15%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-about__main__contents h1 {
    bottom: 0;
    left: 50px;
  }
}
.p-about__main__contents h1 span {
  display: inline-block;
  color: white;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02rem;
}
@media screen and (min-width: 992px) {
  .p-about__main__contents h1 span {
    margin: 5px 0;
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-about__main__contents h1 span {
    font-size: 16px;
    padding: 5px 5px;
  }
}
.p-about__group__grid {
  width: 87%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-about__group__grid {
    width: 100%;
  }
}
.p-about__group__head h2 {
  color: #333;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about__group__head h2 {
    font-size: 18px;
  }
}
.p-about__group__support {
  width: 90%;
  margin: 40px auto;
}
.p-about__mission {
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  padding: 75px 0 75px;
}
@media screen and (max-width: 767px) {
  .p-about__mission {
    padding: 0 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-about__mission__head {
    padding: 0 20px;
  }
}
.p-about__mission__head h2 {
  color: #333;
  text-align: center;
  font-size: 22px;
  letter-spacing: 0.02rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-about__mission__head h2 {
    font-size: 18px;
  }
}
.p-about__mission__head p {
  text-align: center;
  font-size: 15px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-about__mission__head p {
    font-size: 13px;
    text-align: left;
  }
}
.p-about__mission__top__grid {
  width: 87%;
  margin: 0 auto;
  max-width: 1200px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-about__mission__top__grid {
    width: 100%;
    margin-top: 20px;
  }
}
.p-about__mission__top__image {
  width: 75%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-about__mission__top__image {
    width: 100%;
  }
}
.p-about__mission__top__texts {
  background: rgba(0, 0, 0, 0.8);
  width: 45%;
  padding: 40px 30px;
  color: white;
  margin-top: -200px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-about__mission__top__texts {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
  }
}
.p-about__mission__top__texts h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 767px) {
  .p-about__mission__top__texts h3 {
    font-size: 16px;
  }
}
.p-about__mission__top__texts p {
  font-size: 15px;
  line-height: 2;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-about__mission__top__texts p {
    font-size: 13px;
  }
}
.p-about__mission__under__grid {
  width: 87%;
  margin: 0 auto;
  max-width: 1200px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-about__mission__under__grid {
    width: 100%;
    margin-top: 20px;
  }
}
.p-about__mission__under__image {
  width: 75%;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-about__mission__under__image {
    width: 100%;
  }
}
.p-about__mission__under__texts {
  margin-left: auto;
  background: rgba(0, 0, 0, 0.8);
  width: 45%;
  padding: 40px 30px;
  color: white;
  margin-top: -200px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-about__mission__under__texts {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
  }
}
.p-about__mission__under__texts h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 767px) {
  .p-about__mission__under__texts h3 {
    font-size: 16px;
  }
}
.p-about__mission__under__texts p {
  font-size: 15px;
  line-height: 2;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-about__mission__under__texts p {
    font-size: 13px;
  }
}

.p-recruit {
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.p-recruit h1,
.p-recruit h2,
.p-recruit h3 {
  font-family: "Noto Serif JP", serif;
}
.p-recruit__main {
  position: relative;
}
.p-recruit__main__contents {
  position: relative;
}
.p-recruit__main__contents h1 {
  position: absolute;
  bottom: 10%;
  left: 15%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-recruit__main__contents h1 {
    bottom: 0;
    left: 50px;
  }
}
.p-recruit__main__contents h1 span {
  display: inline-block;
  color: white;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02rem;
}
@media screen and (min-width: 992px) {
  .p-recruit__main__contents h1 span {
    margin: 5px 0;
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit__main__contents h1 span {
    font-size: 16px;
    padding: 5px 5px;
  }
}
.p-recruit__top__grid {
  width: 73.2%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-recruit__top__grid {
    width: 100%;
    padding: 40px 20px;
  }
}
.p-recruit__top__contents {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-recruit__top__contents {
    display: block;
  }
}
.p-recruit__top__image {
  width: 50%;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-recruit__top__image {
    width: 100%;
    padding-bottom: 0;
  }
}
.p-recruit__top__texts {
  width: 58%;
  margin-left: -90px;
  background: rgba(0, 0, 0, 0.8);
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .p-recruit__top__texts {
    margin: -50px auto 0;
    width: 95%;
    padding: 15px;
    position: relative;
    z-index: 1;
  }
}
.p-recruit__top__texts h2 {
  color: white;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__top__texts h2 {
    font-size: 16px;
  }
}
.p-recruit__top__texts p {
  color: white;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-recruit__top__texts p {
    font-size: 13px;
  }
}
.p-recruit__point__grid {
  width: 87%;
  margin: 0 auto;
  max-width: 1200px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-recruit__point__grid {
    width: 100%;
    padding: 0 20px 40px;
  }
}
.p-recruit__point__contents ul {
  display: flex;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .p-recruit__point__contents ul {
    display: block;
  }
}
.p-recruit__point__contents ul li {
  width: 25%;
  border-right: 1px dotted #333;
}
@media screen and (max-width: 767px) {
  .p-recruit__point__contents ul li {
    width: 100%;
    border-right: initial;
    border-bottom: 1px dotted #333;
  }
}
.p-recruit__point__contents ul li .item {
  padding: 20px 20px 30px;
}
.p-recruit__point__contents ul li .item__texts {
  text-align: center;
}
.p-recruit__point__contents ul li .item__texts h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02rem;
}
.p-recruit__point__contents ul li .item__texts p {
  margin-top: 15px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02rem;
}
.p-recruit__point__contents ul li:last-child {
  border-right: initial;
}
@media screen and (max-width: 767px) {
  .p-recruit__point__contents ul li:last-child {
    border-bottom: initial;
  }
}
.p-recruit__job__grid {
  width: 87%;
  margin: 0 auto;
  max-width: 1200px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-recruit__job__grid {
    width: 100%;
    padding: 0 0 40px;
  }
}
.p-recruit__job__back {
  background: #E8E8E8;
  padding: 50px 80px;
}
@media screen and (max-width: 767px) {
  .p-recruit__job__back {
    padding: 40px 20px;
  }
}
.p-recruit__job__head h2 {
  text-align: center;
}
.p-recruit__job__head h2 span {
  color: #333;
  font-weight: 28px;
  font-weight: 700;
  position: relative;
}
.p-recruit__job__head h2 span::after {
  content: "";
  width: 30px;
  height: 2px;
  background: #333;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.p-recruit__job__head p {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02rem;
  line-height: 1.75;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-recruit__job__head p {
    font-size: 13px;
    margin-top: 20px;
  }
}
.p-recruit__job__head p .green {
  font-size: 20px;
  font-weight: 700;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-recruit__job__head p .green {
    font-size: 15px;
  }
}
.p-recruit__job__contents {
  margin-top: 30px;
}
.p-recruit__job__contents ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-recruit__job__contents ul {
    display: block;
  }
}
.p-recruit__job__contents ul li {
  width: 49%;
  margin-bottom: 15px;
  background: white;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .p-recruit__job__contents ul li {
    width: 100%;
  }
}
.p-recruit__job__contents ul li .item__texts {
  padding-top: 15px;
}
.p-recruit__job__contents ul li .item__texts h3 {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.02rem;
}
.p-recruit__job__contents ul li .item__texts p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02rem;
  line-height: 1.75;
  margin-top: 15px;
}
.p-recruit__check__grid {
  width: 87%;
  margin: 0 auto;
  max-width: 1200px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-recruit__check__grid {
    width: 100%;
    padding: 0 0 40px;
  }
}
.p-recruit__check__contents {
  padding: 0 80px;
}
@media screen and (max-width: 767px) {
  .p-recruit__check__contents {
    padding: 40px 20px;
  }
}
.p-recruit__check__contents ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-recruit__check__contents ul {
    display: block;
  }
}
.p-recruit__check__contents ul li {
  width: 49%;
  margin-bottom: 15px;
  background: white;
  padding: 20px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .p-recruit__check__contents ul li {
    width: 100%;
  }
}
.p-recruit__check__contents ul li .item__texts {
  padding-top: 15px;
}
.p-recruit__check__contents ul li .item__texts h3 {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.02rem;
}
.p-recruit__check__contents ul li .item__texts p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02rem;
  line-height: 1.75;
  margin-top: 15px;
}
.p-recruit__person__grid {
  width: 73.2%;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-recruit__person__grid {
    width: 100%;
    padding: 0 20px 40px;
  }
}
.p-recruit__person__contents .block h3 {
  background: #E8E8E8;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05rem;
  line-height: 1;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .p-recruit__person__contents .block h3 {
    line-height: 1.5;
  }
}
.p-recruit__person__contents .block__texts {
  padding: 20px 0 40px;
}
.p-recruit__person__contents .block__texts h4 {
  font-size: 18px;
  letter-spacing: 0.05rem;
  line-height: 1.75;
}
.p-recruit__person__contents .block__texts p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}
.p-recruit__life__grid {
  width: 73.2%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 0 60px;
}
@media screen and (max-width: 767px) {
  .p-recruit__life__grid {
    width: 100%;
    padding: 0 20px 40px;
  }
}
.p-recruit__life__head h2 {
  text-align: center;
}
.p-recruit__life__head h2 span {
  color: #333;
  font-weight: 28px;
  font-weight: 700;
  position: relative;
}
.p-recruit__life__head h2 span::after {
  content: "";
  width: 30px;
  height: 2px;
  background: #333;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.p-recruit__life__table {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-recruit__life__table {
    margin-top: 40px;
  }
}
.p-recruit__life__table table {
  width: 100%;
  border-collapse: collapse;
}
.p-recruit__life__table th,
.p-recruit__life__table td {
  border: 1px solid white;
  padding: 15px 20px;
  text-align: left;
  vertical-align: top;
  font-size: 15px;
}
.p-recruit__life__table th {
  background-color: #DDDDDD;
  font-weight: 700;
  width: 200px;
  white-space: nowrap;
  text-align: center;
}
.p-recruit__life__table td {
  background-color: #F5F5F5;
  color: #333;
}
.p-recruit__life__table td ul {
  list-style: none;
  padding-left: 0;
}
.p-recruit__life__table td ul li {
  padding: 2px 0;
}
.p-recruit__life__table td ul li:before {
  content: "・";
  margin-right: 5px;
}
.p-recruit__life__table .business-list li,
.p-recruit__life__table .member-list li,
.p-recruit__life__table .partner-list li,
.p-recruit__life__table .support-list li {
  padding: 3px 0;
}
@media screen and (max-width: 768px) {
  .p-recruit__life__table body {
    padding: 10px;
  }
  .p-recruit__life__table table {
    font-size: 12px;
  }
  .p-recruit__life__table th,
  .p-recruit__life__table td {
    padding: 10px;
    display: block;
    width: 100%;
  }
  .p-recruit__life__table th {
    background-color: #DDDDDD;
  }
}
.p-recruit__how__grid {
  width: 73.2%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-recruit__how__grid {
    width: 100%;
    padding: 0 20px 40px;
  }
}
.p-recruit__how__head h2 {
  text-align: center;
}
.p-recruit__how__head h2 span {
  color: #333;
  font-weight: 28px;
  font-weight: 700;
  position: relative;
}
.p-recruit__how__head h2 span::after {
  content: "";
  width: 30px;
  height: 2px;
  background: #333;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.p-recruit__how__head p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}
.p-recruit__how__head .normal {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-recruit__how__head .normal {
    margin-top: 40px;
  }
}
.p-recruit__how__head .small {
  font-size: 13px;
  margin-top: 10px;
}
.p-recruit__how__contents .block {
  margin-top: 20px;
}
.p-recruit__how__contents .block h3 {
  color: #333;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05rem;
  line-height: 1;
  padding: 20px 0 10px;
}
@media screen and (max-width: 767px) {
  .p-recruit__how__contents .block h3 {
    line-height: 1.5;
  }
}
.p-recruit__how__contents .block__image {
  margin-top: 10px;
}
.p-recruit__how__contents .block p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}
.p-recruit__entry__grid {
  width: 73.2%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-recruit__entry__grid {
    width: 100%;
    padding: 0 20px 40px;
  }
}
.p-recruit__entry__grid a {
  display: block;
}
.p-recruit__entry__grid a:hover .p-recruit__entry__arrow .circle {
  width: 55px;
  height: 55px;
}
.p-recruit__entry__grid a:hover .p-recruit__entry__arrow img {
  left: -20px;
}
.p-recruit__entry__contents {
  position: relative;
  display: flex;
  align-items: center;
  background: #F5F5F5;
  padding: 100px 200px 100px 80px;
}
@media screen and (max-width: 767px) {
  .p-recruit__entry__contents {
    padding: 20px;
    display: block;
  }
}
.p-recruit__entry__contents h2 {
  color: #333;
  font-family: "Prata", serif;
  font-size: 60px;
  letter-spacing: 0.02rem;
  line-height: 1;
  font-weight: 400;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .p-recruit__entry__contents h2 {
    font-size: 36px;
  }
}
.p-recruit__entry__contents p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-recruit__entry__contents p {
    font-size: 13px;
    margin-top: 10px;
  }
}
.p-recruit__entry__arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 60px;
}
@media screen and (max-width: 767px) {
  .p-recruit__entry__arrow {
    width: 40px;
    top: 20px;
    transform: initial;
  }
}
.p-recruit__entry__arrow .circle {
  width: 50px;
  height: 50px;
  border: 1px solid #333;
  border-radius: 50%;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-recruit__entry__arrow .circle {
    width: 30px;
    height: 30px;
  }
}
.p-recruit__entry__arrow img {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 60px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-recruit__entry__arrow img {
    width: 30px;
    left: -15px;
  }
}

.p-flow__main {
  position: relative;
}
.p-flow__main__contents {
  position: relative;
}
.p-flow__main__contents h1 {
  position: absolute;
  bottom: 5%;
  left: 15%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-flow__main__contents h1 {
    bottom: 0;
    left: 20px;
    transform: initial;
  }
}
.p-flow__main__contents h1 span {
  display: inline-block;
  color: white;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02rem;
}
@media screen and (min-width: 992px) {
  .p-flow__main__contents h1 span {
    margin: 5px 0;
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__main__contents h1 span {
    font-size: 16px;
  }
}
.p-flow__top__grid {
  width: 87%;
  margin: 0 auto;
  max-width: 1200px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-flow__top__grid {
    width: 100%;
    padding: 0 0 40px;
  }
}
.p-flow__top__contents {
  text-align: center;
  padding: 70px 0;
}
@media screen and (max-width: 767px) {
  .p-flow__top__contents {
    padding: 40px 20px;
  }
}
.p-flow__top__contents h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02rem;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-flow__top__contents h2 {
    font-size: 18px;
    text-align: left;
  }
}
.p-flow__top__contents p {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02rem;
  line-height: 2;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-flow__top__contents p {
    font-size: 13px;
    text-align: left;
  }
}
.p-flow__step {
  background: #F5F5F5;
}
.p-flow__step__grid {
  width: 87%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 60px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-flow__step__grid {
    padding: 40px 0 60px;
  }
}
.p-flow__step__head h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02rem;
  color: #333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-flow__step__head h2 {
    font-size: 18px;
  }
}
.p-flow__step__contents {
  margin-top: 30px;
}
.p-flow__step__contents ul li {
  padding: 20px 0;
}
.p-flow__step__contents ul li .item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-flow__step__contents ul li .item {
    display: block;
    position: relative;
    padding-left: 75px;
  }
}
.p-flow__step__contents ul li .item__step {
  width: 110px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-flow__step__contents ul li .item__step {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    background: #F5F5F5;
  }
}
.p-flow__step__contents ul li .item__step::after {
  content: "";
  width: 41px;
  height: 3px;
  position: absolute;
  top: -28px;
  right: -8px;
  background: black;
  transform: rotate(-60deg);
}
@media screen and (max-width: 767px) {
  .p-flow__step__contents ul li .item__step::after {
    transform: initial;
    height: 330px;
    width: 2px;
    top: 60px;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    -webkit-transform: translateX(-50%) rotate(0deg);
    -ms-transform: translateX(-50%) rotate(0deg);
  }
}
.p-flow__step__contents ul li .item__image {
  width: 180px;
  margin: 0 20px;
}
@media screen and (max-width: 767px) {
  .p-flow__step__contents ul li .item__image {
    width: 100%;
    margin: 0;
  }
}
.p-flow__step__contents ul li .item__image img {
  width: 100%;
}
.p-flow__step__contents ul li .item__texts h3 {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-flow__step__contents ul li .item__texts h3 {
    font-size: 16px;
  }
}
.p-flow__step__contents ul li .item__texts p {
  font-size: 13px;
  line-height: 1.75;
  font-weight: 500;
  margin-top: 10px;
}
.p-flow__step__contents ul li:first-child .item__step::after {
  content: initial;
}
@media screen and (max-width: 767px) {
  .p-flow__step__contents ul li:first-child .item__step::after {
    content: "";
  }
}
@media screen and (max-width: 767px) {
  .p-flow__step__contents ul li:last-child .item__step::after {
    content: initial;
  }
}
.p-flow__step__contents ul .even {
  padding-left: 80px;
}
@media screen and (max-width: 767px) {
  .p-flow__step__contents ul .even {
    padding-left: 0;
  }
}
.p-flow__step__contents ul .even .item__step::after {
  left: -8px;
  transform: rotate(60deg);
}
@media screen and (max-width: 767px) {
  .p-flow__step__contents ul .even .item__step::after {
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    -webkit-transform: translateX(-50%) rotate(0deg);
    -ms-transform: translateX(-50%) rotate(0deg);
  }
}
.p-flow__voice__grid {
  width: 87%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 60px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-flow__voice__grid {
    padding: 40px 0 60px;
  }
}
.p-flow__voice__head h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02rem;
  color: #333;
  text-align: center;
}
.p-flow__voice__contents {
  margin-top: 30px;
}
.p-flow__voice__contents ul {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-flow__voice__contents ul {
    display: block;
  }
}
.p-flow__voice__contents ul li {
  width: 31.33%;
}
@media screen and (max-width: 767px) {
  .p-flow__voice__contents ul li {
    width: 100%;
    margin-bottom: 20px;
  }
}
.p-flow__voice__contents ul li .item__texts {
  padding-top: 10px;
}
.p-flow__voice__contents ul li .item__texts h3 {
  color: #333;
  font-size: 18px;
  font-weight: 700;
}
.p-flow__voice__contents ul li .item__texts p {
  font-size: 13px;
  line-height: 1.75;
  font-weight: 500;
  margin-top: 10px;
}
.p-flow__contact__grid {
  width: 87%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 60px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-flow__contact__grid {
    padding: 40px 0 60px;
  }
}
.p-flow__contact__contents {
  background-image: url("../images/flow-contact.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
  padding: 60px 0;
}
.p-flow__contact__contents h2 {
  text-align: center;
  color: white;
  font-size: 26px;
  letter-spacing: 0.02rem;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-flow__contact__contents h2 {
    font-size: 15px;
  }
}
.p-flow__contact__contents p {
  color: white;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .p-flow__contact__contents p {
    font-size: 13px;
    margin-top: 20px;
  }
}
.p-flow__contact__button {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-flow__contact__button {
    margin-top: 20px;
  }
}
.p-flow__contact__button a {
  display: inline-block;
  width: 400px;
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 15px 0;
  border: 2px solid white;
  border-radius: 50px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-flow__contact__button a {
    padding: 10px 0;
    width: 300px;
  }
}
.p-flow__contact__button a:hover {
  background: white;
  color: black;
}

.p-income {
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.p-income h1, .p-income h2, .p-income h3 {
  font-family: "Noto Serif JP", serif;
}
.p-income__main {
  position: relative;
}
.p-income__main__contents {
  position: relative;
}
.p-income__main__contents h1 {
  position: absolute;
  bottom: 10%;
  left: 15%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-income__main__contents h1 {
    bottom: 0;
    left: 50px;
  }
}
.p-income__main__contents h1 span {
  display: inline-block;
  color: white;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02rem;
}
@media screen and (min-width: 992px) {
  .p-income__main__contents h1 span {
    margin: 5px 0;
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-income__main__contents h1 span {
    font-size: 16px;
    padding: 5px 5px;
  }
}
.p-income__list__grid {
  width: 87%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 60px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-income__list__grid {
    padding: 40px 0 60px;
  }
}
.p-income__list__head {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-income__list__head {
    margin-bottom: 25px;
  }
}
.p-income__list__head h2 {
  font-family: "Prata", serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}
@media screen and (max-width: 767px) {
  .p-income__list__head h2 {
    font-size: 28px;
  }
}
.p-income__list__subtitle {
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
  color: #333;
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-income__list__subtitle {
    font-size: 12px;
  }
}
.p-income__list__contents {
  margin-top: 30px;
}
.p-income__list__contents .item {
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  text-decoration: none;
  color: inherit;
}
.p-income__list__contents .item__image {
  position: relative;
  overflow: hidden;
}
.p-income__list__contents .item__image img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.p-income__list__contents .item__image:hover img {
  transform: scale(1.03);
}
.p-income__list__contents .item__status {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(38, 40, 39, 0.85);
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  z-index: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-income__list__contents .item__status {
    font-size: 11px;
    padding: 4px 8px;
    top: 5px;
    left: 5px;
  }
}
.p-income__list__contents .item__category {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(38, 40, 39, 0.85);
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 15px;
  z-index: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-income__list__contents .item__category {
    font-size: 11px;
    padding: 5px 10px;
  }
}
.p-income__list__contents .item__body {
  padding: 20px 0 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-income__list__contents .item__body {
    padding: 12px 0 0;
  }
}
.p-income__list__contents .item__body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.6;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .p-income__list__contents .item__body h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.p-income__list__contents .item__meta p {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 767px) {
  .p-income__list__contents .item__meta p {
    font-size: 12px;
  }
}
.p-income__list__contents .item__meta p + p {
  margin-top: 6px;
}
.p-income__list__contents .item__label {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  min-width: 60px;
  margin-right: 15px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-income__list__contents .item__label {
    font-size: 12px;
    min-width: 50px;
    margin-right: 10px;
  }
}
.p-income__list__contents .item__price-num {
  font-family: "Prata", serif;
  font-size: 22px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-income__list__contents .item__price-num {
    font-size: 18px;
  }
}
.p-income__list__contents .item__price-num--yield {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-income__list__contents .item__price-num--yield {
    font-size: 15px;
  }
}
.p-income__list__contents .item__unit {
  font-size: 13px;
  color: #333;
  margin-left: 2px;
}
@media screen and (max-width: 767px) {
  .p-income__list__contents .item__unit {
    font-size: 11px;
  }
}
.p-income__list__contents .item__arrow {
  margin-top: auto;
  padding-top: 15px;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35px;
  height: 35px;
}
@media screen and (max-width: 767px) {
  .p-income__list__contents .item__arrow {
    width: 30px;
    height: 30px;
  }
}
.p-income__list__contents .item__arrow::before {
  content: "";
  position: absolute;
  top: 43%;
  right: 37%;
  width: 55px;
  height: 6px;
  background-image: url("../images/inquiry-arrow.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-income__list__contents .item__arrow::before {
    width: 47px;
  }
}
.p-income__list__contents .item__arrow-circle {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(51, 51, 51, 0.3);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-income__list__contents .item__arrow-circle {
    width: 30px;
    height: 30px;
  }
}
.p-income__list__contents .item:hover .item__arrow-circle {
  transform: scale(1.1);
  border-color: rgba(51, 51, 51, 0.6);
}
.p-income__list__contents {
  /* 成約済みアイテムのスタイル */
}
.p-income__list__contents .item--done {
  position: relative;
  cursor: default;
  pointer-events: none;
}
.p-income__list__contents .item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.p-income__list__contents .item__overlay-text {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  background-color: rgba(255, 0, 0, 0.8);
  padding: 10px 30px;
  border-radius: 5px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-income__list__contents .item__overlay-text {
    font-size: 18px;
    padding: 8px 20px;
  }
}
.p-income__list__contents .item--done .item__image,
.p-income__list__contents .item--done .item__body {
  opacity: 0.7;
}
.p-income__list__button {
  text-align: center;
  margin-top: 50px;
}
.p-income__list__button a {
  display: inline-block;
  width: 400px;
  font-size: 13px;
  font-weight: 500;
  padding: 15px 0;
  border: 2px solid black;
  border-radius: 50px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-income__list__button a {
    padding: 10px 0;
    width: 300px;
  }
}
.p-income__list__button a:hover {
  background: black;
  color: white;
}
.p-income__case {
  background: #F5F5F5;
}
.p-income__case__grid {
  width: 87%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 60px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-income__case__grid {
    padding: 40px 0 60px;
  }
}
.p-income__case__head {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-income__case__head {
    margin-bottom: 25px;
  }
}
.p-income__case__head h2 {
  font-family: "Prata", serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}
@media screen and (max-width: 767px) {
  .p-income__case__head h2 {
    font-size: 28px;
  }
}
.p-income__case__subtitle {
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
  color: #333;
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-income__case__subtitle {
    font-size: 12px;
  }
}
.p-income__case__contents ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-income__case__contents ul {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.p-income__case__contents .item {
  display: block;
  text-decoration: none;
  color: inherit;
}
.p-income__case__contents .item__image {
  overflow: hidden;
}
.p-income__case__contents .item__image img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.p-income__case__contents .item:hover .item__image img {
  transform: scale(1.03);
}
.p-income__case__contents .item__texts {
  padding: 15px 0 0;
  position: relative;
}
.p-income__case__contents .item__texts h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.6;
  margin-bottom: 8px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .p-income__case__contents .item__texts h3 {
    font-size: 14px;
  }
}
.p-income__case__contents .item__address {
  display: flex;
  align-items: baseline;
  font-size: 13px;
  color: #555;
}
@media screen and (max-width: 767px) {
  .p-income__case__contents .item__address {
    font-size: 12px;
  }
}
.p-income__case__contents .item__address .head {
  font-weight: 500;
  color: #333;
  min-width: 50px;
  margin-right: 10px;
  flex-shrink: 0;
}
.p-income__case__contents .item__arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35px;
  height: 35px;
}
@media screen and (max-width: 767px) {
  .p-income__case__contents .item__arrow {
    width: 30px;
    height: 30px;
  }
}
.p-income__case__contents .item__arrow::before {
  content: "";
  position: absolute;
  top: 43%;
  right: 37%;
  width: 55px;
  height: 6px;
  background-image: url("../images/inquiry-arrow.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-income__case__contents .item__arrow::before {
    width: 47px;
  }
}
.p-income__case__contents .item__arrow-circle {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(51, 51, 51, 0.3);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-income__case__contents .item__arrow-circle {
    width: 30px;
    height: 30px;
  }
}
.p-income__case__contents .item:hover .item__arrow-circle {
  transform: scale(1.1);
  border-color: rgba(51, 51, 51, 0.6);
}
.p-income__case__button {
  text-align: center;
  margin-top: 50px;
}
.p-income__case__button a {
  display: inline-block;
  width: 400px;
  font-size: 13px;
  font-weight: 500;
  padding: 15px 0;
  border: 2px solid black;
  border-radius: 50px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-income__case__button a {
    padding: 10px 0;
    width: 300px;
  }
}
.p-income__case__button a:hover {
  background: black;
  color: white;
}
.p-income__voice {
  background: #F5F5F5;
}
.p-income__voice__grid {
  width: 87%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 60px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-income__voice__grid {
    padding: 40px 0 60px;
  }
}
.p-income__voice__head h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02rem;
  color: #333;
  text-align: center;
}
.p-income__voice__contents {
  margin-top: 30px;
}
.p-income__voice__contents ul {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-income__voice__contents ul {
    display: block;
  }
}
.p-income__voice__contents ul li {
  width: 31.33%;
}
@media screen and (max-width: 767px) {
  .p-income__voice__contents ul li {
    width: 100%;
    margin-bottom: 20px;
  }
}
.p-income__voice__contents ul li .item__texts {
  padding-top: 10px;
}
.p-income__voice__contents ul li .item__texts h3 {
  color: #333;
  font-size: 18px;
  font-weight: 700;
}
.p-income__voice__contents ul li .item__texts p {
  font-size: 13px;
  line-height: 1.75;
  font-weight: 500;
  margin-top: 10px;
}
.p-income__step__grid {
  width: 73.2%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-income__step__grid {
    width: 100%;
    padding: 40px 20px 60px;
  }
}
.p-income__step__head h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02rem;
  color: #333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-income__step__head h2 {
    font-size: 18px;
  }
}
.p-income__step__contents {
  margin-top: 30px;
}
.p-income__step__contents ul li {
  padding: 20px 0;
}
.p-income__step__contents ul li .item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-income__step__contents ul li .item {
    display: block;
    position: relative;
    padding-left: 75px;
  }
}
.p-income__step__contents ul li .item__step {
  width: 110px;
  position: relative;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .p-income__step__contents ul li .item__step {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    background: white;
  }
}
.p-income__step__contents ul li .item__step::after {
  content: "";
  width: 41px;
  height: 3px;
  position: absolute;
  top: -28px;
  right: -8px;
  background: black;
  transform: rotate(-60deg);
}
@media screen and (max-width: 767px) {
  .p-income__step__contents ul li .item__step::after {
    transform: initial;
    height: 120px;
    width: 2px;
    top: 60px;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    -webkit-transform: translateX(-50%) rotate(0deg);
    -ms-transform: translateX(-50%) rotate(0deg);
  }
}
.p-income__step__contents ul li .item__texts h3 {
  color: black;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-income__step__contents ul li .item__texts h3 {
    font-size: 16px;
  }
}
.p-income__step__contents ul li .item__texts p {
  font-size: 13px;
  line-height: 1.75;
  font-weight: 500;
  margin-top: 10px;
}
.p-income__step__contents ul li:first-child .item__step::after {
  content: initial;
}
@media screen and (max-width: 767px) {
  .p-income__step__contents ul li:first-child .item__step::after {
    content: "";
  }
}
@media screen and (max-width: 767px) {
  .p-income__step__contents ul li:last-child .item__step::after {
    content: initial;
  }
}
.p-income__step__contents ul .even {
  padding-left: 80px;
}
@media screen and (max-width: 767px) {
  .p-income__step__contents ul .even {
    padding-left: 0;
  }
}
.p-income__step__contents ul .even .item__step::after {
  left: -8px;
  transform: rotate(60deg);
}
@media screen and (max-width: 767px) {
  .p-income__step__contents ul .even .item__step::after {
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    -webkit-transform: translateX(-50%) rotate(0deg);
    -ms-transform: translateX(-50%) rotate(0deg);
  }
}
.p-income__contact__grid {
  width: 87%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 60px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-income__contact__grid {
    padding: 40px 0 60px;
  }
}
.p-income__contact__contents {
  background-image: url("../images/flow-contact.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
  padding: 60px 0;
}
.p-income__contact__contents h2 {
  text-align: center;
  font-family: "Prata", serif;
  color: white;
  font-size: 30px;
  letter-spacing: 0.02rem;
  line-height: 1;
  font-weight: 700;
}
.p-income__contact__contents p {
  color: white;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-income__contact__contents p {
    font-size: 13px;
    margin-top: 20px;
  }
}
.p-income__contact__tell {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .p-income__contact__tell {
    padding: 10px 0;
  }
}
.p-income__contact__tell img {
  width: 36px;
  margin-right: 10px;
}
.p-income__contact__tell span {
  color: white;
  font-size: 44px;
  font-weight: 500;
}
.p-income__contact__button {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-income__contact__button {
    margin-top: 20px;
  }
}
.p-income__contact__button a {
  display: inline-block;
  width: 400px;
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 15px 0;
  border: 2px solid white;
  border-radius: 50px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-income__contact__button a {
    padding: 10px 0;
    width: 300px;
  }
}
.p-income__contact__button a:hover {
  background: white;
  color: black;
}

.p-news {
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.p-news h1, .p-news h2, .p-news h3 {
  font-family: "Noto Serif JP", serif;
}
.p-news__main {
  position: relative;
}
.p-news__main__contents {
  position: relative;
}
.p-news__main__contents h1 {
  position: absolute;
  bottom: 10%;
  left: 15%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-news__main__contents h1 {
    bottom: 0;
    left: 50px;
  }
}
.p-news__main__contents h1 span {
  display: inline-block;
  color: white;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02rem;
}
@media screen and (min-width: 992px) {
  .p-news__main__contents h1 span {
    margin: 5px 0;
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-news__main__contents h1 span {
    font-size: 16px;
    padding: 5px 5px;
  }
}
.p-news__list__grid {
  width: 87%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 60px 0 80px;
}
.p-news__list__contents {
  margin-top: 30px;
}
.p-news__list__contents ul li a {
  display: block;
}
.p-news__list__contents ul li a:hover .item__arrow-circle {
  transform: scale(1.1);
  border-color: rgba(51, 51, 51, 0.6);
}
.p-news__list__contents ul li a .item {
  display: flex;
  align-items: center;
  padding: 20px 80px 20px 0;
  border-bottom: 1px dotted black;
  position: relative;
}
.p-news__list__contents ul li a .item .date {
  margin-right: 30px;
  font-size: 15px;
  letter-spacing: 0.02rem;
  font-weight: 500;
}
.p-news__list__contents ul li a .item .title {
  font-size: 18px;
  letter-spacing: 0.02rem;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
}
.p-news__list__contents ul li a .item__arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 35px;
  height: 35px;
}
@media screen and (max-width: 767px) {
  .p-news__list__contents ul li a .item__arrow {
    width: 30px;
    height: 30px;
  }
}
.p-news__list__contents ul li a .item__arrow::before {
  content: "";
  position: absolute;
  top: 43%;
  right: 37%;
  width: 55px;
  height: 6px;
  background-image: url("../images/inquiry-arrow.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-news__list__contents ul li a .item__arrow::before {
    width: 47px;
  }
}
.p-news__list__contents ul li a .item__arrow-circle {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(51, 51, 51, 0.3);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-news__list__contents ul li a .item__arrow-circle {
    width: 30px;
    height: 30px;
  }
}
.p-news__list__pagenavi {
  padding: 40px 0 0;
}
.p-news__heading {
  position: relative;
}
.p-news__heading__grid {
  padding-left: 80px;
}
@media screen and (max-width: 767px) {
  .p-news__heading__grid {
    padding-top: 50px;
    padding-left: 0;
  }
}
.p-news__heading__arrow {
  position: absolute;
  left: 50px;
  top: 38%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.p-news__heading__arrow a {
  display: flex;
  transform: rotate(90deg);
  transform-origin: left top;
  align-items: center;
}
.p-news__heading__arrow a span {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-right: 20px;
}
.p-news__heading__arrow a img {
  width: 60px;
  height: 10px;
  animation: arrow-bounce 1.5s ease-in-out infinite;
}
.p-news__heading__contents {
  background: #f5f5f5;
  padding: 105px 70px 70px;
}
@media screen and (max-width: 767px) {
  .p-news__heading__contents {
    padding: 105px 20px 70px;
  }
}
.p-news__heading__contents h1 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02rem;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-news__heading__contents h1 {
    font-size: 18px;
  }
}
.p-news__detail__grid {
  width: 73.2%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-news__detail__grid {
    width: 100%;
    padding: 40px 20px;
  }
}
.p-news__detail__contents h2 {
  font-size: 24px;
  background: #f5f5f5;
  padding: 15px;
  font-weight: 700;
  line-height: 1.5;
  margin: 20px 0;
}
.p-news__detail__contents h3 {
  font-size: 20px;
  border-left: 3px solid #f5f5f5;
  padding: 5px 15px;
  font-weight: 700;
  line-height: 1.5;
  margin: 20px 0;
}
.p-news__detail__contents p,
.p-news__detail__contents a,
.p-news__detail__contents li {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  margin: 20px 0;
}
.p-news__detail__contents img {
  margin: 20px 0;
}
.p-news__detail__links {
  padding-top: 60px;
}
.p-news__detail__links .post-navigation {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
.p-news__detail__links .post-navigation__prev,
.p-news__detail__links .post-navigation__list,
.p-news__detail__links .post-navigation__next {
  text-align: center;
}
.p-news__detail__links {
  /* 次の記事がない場合、一覧に戻るの右ボーダーを消す */
}
.p-news__detail__links .post-navigation__list:last-child {
  border-right: none;
}
.p-news__detail__links .post-navigation a {
  display: block;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s;
  border: 1px solid #333;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-news__detail__links .post-navigation a {
    font-size: 12px;
    padding: 15px 10px;
  }
}
.p-news__detail__links .post-navigation a:hover {
  background-color: #f0f0f0;
}
.p-news__detail__links .post-navigation__list {
  width: 600px;
}
@media screen and (max-width: 767px) {
  .p-news__detail__links .post-navigation__list {
    width: 140px;
  }
}
.p-news__detail__links .post-navigation__prev,
.p-news__detail__links .post-navigation__next {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .p-news__detail__links .post-navigation__prev,
  .p-news__detail__links .post-navigation__next {
    width: 100px;
  }
}

.p-event__main {
  position: relative;
}
.p-event__main__contents {
  position: relative;
}
.p-event__main__contents h1 {
  position: absolute;
  bottom: 10%;
  left: 15%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-event__main__contents h1 {
    bottom: 0;
    left: 50px;
  }
}
.p-event__main__contents h1 span {
  display: inline-block;
  color: white;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02rem;
}
@media screen and (min-width: 992px) {
  .p-event__main__contents h1 span {
    margin: 5px 0;
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-event__main__contents h1 span {
    font-size: 16px;
    padding: 5px 5px;
  }
}
.p-event__list__grid {
  width: 87%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 60px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-event__list__grid {
    display: block;
  }
}
.p-event__list__contents {
  margin-top: 30px;
}
.p-event__list__contents ul {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-event__list__contents ul {
    display: block;
  }
}
.p-event__list__contents ul li {
  width: 31.333%;
  margin: 0 1%;
}
@media screen and (max-width: 767px) {
  .p-event__list__contents ul li {
    width: 100%;
    margin: 0 auto 20px;
  }
}
.p-event__list__contents ul li a {
  display: block;
}
.p-event__list__contents ul li a:hover .item__arrow .circle {
  width: 40px;
  height: 40px;
}
.p-event__list__contents ul li a:hover .item__arrow img {
  left: -10px;
}
.p-event__list__contents ul li a .item__image img {
  width: 100%;
  height: 16.83vw;
  max-height: 250px;
}
@media screen and (max-width: 767px) {
  .p-event__list__contents ul li a .item__image img {
    height: 54.53vw;
  }
}
.p-event__list__contents ul li a .item__image img {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-event__list__contents ul li a .item__texts {
  padding: 10px 0 30px;
  position: relative;
}
.p-event__list__contents ul li a .item__texts h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02rem;
  color: #333;
}
.p-event__list__contents ul li a .item__texts p {
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: 0.02rem;
}
.p-event__list__contents ul li a .item__texts .date {
  font-size: 11px;
}
.p-event__list__contents ul li a .item__arrow {
  position: absolute;
  right: 0;
  bottom: 5px;
  width: 40px;
}
@media screen and (max-width: 767px) {
  .p-event__list__contents ul li a .item__arrow {
    width: 40px;
  }
}
.p-event__list__contents ul li a .item__arrow .circle {
  width: 35px;
  height: 35px;
  border: 1px solid #333;
  border-radius: 50%;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-event__list__contents ul li a .item__arrow .circle {
    width: 30px;
    height: 30px;
  }
}
.p-event__list__contents ul li a .item__arrow img {
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 60px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-event__list__contents ul li a .item__arrow img {
    width: 30px;
    left: -15px;
  }
}
.p-event__list__pagenavi {
  padding: 40px 0 0;
}

.p-contact {
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.p-contact h1,
.p-contact h2,
.p-contact h3 {
  font-family: "Noto Serif JP", serif;
}
.p-contact__main {
  position: relative;
}
.p-contact__main__contents {
  position: relative;
}
.p-contact__main__contents h1 {
  position: absolute;
  bottom: 10%;
  left: 15%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-contact__main__contents h1 {
    bottom: 0;
    left: 50px;
  }
}
.p-contact__main__contents h1 span {
  display: inline-block;
  color: black;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02rem;
}
@media screen and (min-width: 992px) {
  .p-contact__main__contents h1 span {
    margin: 5px 0;
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__main__contents h1 span {
    font-size: 16px;
    padding: 5px 5px;
  }
}
.p-contact__line__grid {
  width: 87%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-contact__line__grid {
    width: 100%;
    padding: 40px 20px;
  }
}
.p-contact__line__contents {
  background: #f5f5f5;
  padding: 40px 350px 40px 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-contact__line__contents {
    padding: 25px 20px 80px;
  }
}
.p-contact__line__contents::after {
  content: "";
  width: 257px;
  height: 342px;
  background-image: url("../images/contact-line02.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 20px;
}
@media screen and (max-width: 767px) {
  .p-contact__line__contents::after {
    width: 119px;
    height: 158px;
    right: 10px;
  }
}
.p-contact__line__contents .item h2 {
  color: #333;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 767px) {
  .p-contact__line__contents .item h2 {
    font-size: 15px;
  }
}
.p-contact__line__contents .item h3 {
  margin-top: 20px;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 767px) {
  .p-contact__line__contents .item h3 {
    margin-top: 10px;
    font-size: 15px;
  }
}
.p-contact__line__contents .item p {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05rem;
  line-height: 1.75;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-contact__line__contents .item p {
    margin-top: 5px;
    font-size: 13px;
  }
}
.p-contact__line__contents .item__button {
  width: 250px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-contact__line__contents .item__button {
    width: 180px;
  }
}
.p-contact__text__grid {
  width: 87%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 0 60px;
}
@media screen and (max-width: 767px) {
  .p-contact__text__grid {
    width: 100%;
    padding: 0 20px 40px;
  }
}
.p-contact__text__grid p {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05rem;
  line-height: 1.75;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-contact__text__grid p {
    font-size: 13px;
  }
}
.p-contact__form__grid {
  width: 87%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 0 60px;
}
@media screen and (max-width: 767px) {
  .p-contact__form__grid {
    width: 100%;
    padding: 0 20px 40px;
  }
}
.p-contact__form__contents .contact-form {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.p-contact__form__contents .form-row {
  display: flex;
  border-bottom: 1px solid white;
  min-height: 80px;
}
.p-contact__form__contents .form-label {
  flex: 0 0 280px;
  background-color: #f5f5f5;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 16px;
}
.p-contact__form__contents .form-label p {
  display: flex;
  align-items: center;
}
.p-contact__form__contents .form-label.optional {
  background-color: #f5f5f5;
}
.p-contact__form__contents .badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  flex-shrink: 0;
  margin-right: 10px;
}
.p-contact__form__contents .required .badge {
  background-color: #e63946;
}
.p-contact__form__contents .optional .badge {
  background-color: #8c8c8c;
}
.p-contact__form__contents .form-content {
  flex: 1;
  padding: 20px 24px;
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-contact__form__contents {
  /* Input styles */
}
.p-contact__form__contents input[type=text],
.p-contact__form__contents input[type=email],
.p-contact__form__contents input[type=tel],
.p-contact__form__contents select,
.p-contact__form__contents textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  font-size: 15px;
  background-color: #fff;
  transition: border-color 0.3s;
}
.p-contact__form__contents input[type=text]:focus,
.p-contact__form__contents input[type=email]:focus,
.p-contact__form__contents input[type=tel]:focus,
.p-contact__form__contents select:focus,
.p-contact__form__contents textarea:focus {
  outline: none;
  border-color: #0f5747;
}
.p-contact__form__contents input::-moz-placeholder, .p-contact__form__contents textarea::-moz-placeholder {
  color: #c0c0c0;
}
.p-contact__form__contents input::placeholder,
.p-contact__form__contents textarea::placeholder {
  color: #c0c0c0;
}
.p-contact__form__contents textarea {
  resize: vertical;
  font-family: inherit;
}
.p-contact__form__contents {
  /* Checkbox grid */
}
.p-contact__form__contents .checkbox-grid .wpcf7-form-control {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 20px;
}
.p-contact__form__contents .checkbox-grid .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
}
.p-contact__form__contents .checkbox-grid .wpcf7-list-item label input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #0f5747;
}
.p-contact__form__contents .checkbox-grid .wpcf7-list-item label span {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.p-contact__form__contents {
  /* Radio group */
}
.p-contact__form__contents .radio-group .wpcf7-form-control {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.p-contact__form__contents .radio-group .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 15px;
}
.p-contact__form__contents .radio-group .wpcf7-list-item input[type=radio] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #0f5747;
}
.p-contact__form__contents .radio-group .wpcf7-list-item span {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.p-contact__form__contents {
  /* Address section */
}
.p-contact__form__contents .address-section {
  margin-bottom: 16px;
}
.p-contact__form__contents .address-section select {
  max-width: 250px;
  cursor: pointer;
}
.p-contact__form__contents .address-section:first-child input {
  max-width: 200px;
}
.p-contact__form__contents .address-section:last-child {
  margin-bottom: 0;
}
.p-contact__form__contents .address-section:last-child input {
  width: 100%;
}
.p-contact__form__contents .address-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #555;
}
.p-contact__form__contents {
  /* Privacy section */
}
.p-contact__form__contents .privacy-section {
  padding: 32px 24px;
  display: flex;
  justify-content: center;
  background-color: #fff;
}
.p-contact__form__contents .privacy-section .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
}
.p-contact__form__contents .privacy-section .wpcf7-list-item label input[type=checkbox] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #0f5747;
}
.p-contact__form__contents .privacy-section .wpcf7-list-item label span {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.p-contact__form__contents {
  /* Submit section */
}
.p-contact__form__contents .submit-section {
  padding: 32px 24px 40px;
  display: flex;
  justify-content: center;
  background-color: #fff;
}
.p-contact__form__contents .submit-section input {
  background-color: #0f5747;
  color: #fff;
  border: none;
  padding: 18px 80px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.1s;
  box-shadow: 0 4px 12px rgba(15, 87, 71, 0.3);
}
.p-contact__form__contents .submit-section input:hover {
  background-color: #0d4939;
}
.p-contact__form__contents .submit-section input:active {
  transform: translateY(1px);
}
.p-contact__form__contents {
  /* Responsive design */
}
@media (max-width: 768px) {
  .p-contact__form__contents .form-row {
    flex-direction: column;
  }
  .p-contact__form__contents .form-label {
    flex: none;
    width: 100%;
  }
  .p-contact__form__contents .checkbox-grid {
    grid-template-columns: 1fr;
  }
  .p-contact__form__contents .radio-group {
    flex-direction: column;
    gap: 12px;
  }
  .p-contact__form__contents .submit-button {
    width: 100%;
    padding: 18px 40px;
  }
}

.p-case {
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.p-case h1, .p-case h2, .p-case h3 {
  font-family: "Noto Serif JP", serif;
}
.p-case__main {
  position: relative;
}
.p-case__main__contents {
  position: relative;
}
.p-case__main__contents h1 {
  position: absolute;
  bottom: 10%;
  left: 15%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-case__main__contents h1 {
    bottom: 0;
    left: 50px;
  }
}
.p-case__main__contents h1 span {
  display: inline-block;
  color: white;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02rem;
}
@media screen and (min-width: 992px) {
  .p-case__main__contents h1 span {
    margin: 5px 0;
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-case__main__contents h1 span {
    font-size: 16px;
    padding: 5px 5px;
  }
}
.p-case__tag__grid {
  width: 85%;
  margin: 0 auto;
  max-width: 1160px;
  padding: 40px;
  background: #f5f5f5;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-case__tag__grid {
    width: 100%;
    padding: 20px;
    margin-top: 40px;
  }
}
.p-case__tag__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-case__tag__list {
    gap: 10px;
  }
}
.p-case__tag__item {
  list-style: none;
}
.p-case__tag__link {
  display: inline-block;
  padding: 5px 10px;
  border: 2px solid #333;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s;
  border-radius: 25px;
  background: white;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-case__tag__link {
    padding: 5px 10px;
    font-size: 12px;
  }
}
.p-case__tag__link.active {
  background: #333;
  color: white;
}
.p-case__tag__submit {
  margin-top: 30px;
  text-align: center;
}
.p-case__tag__submit-btn {
  display: inline-block;
  padding: 10px 60px;
  background: #333;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 30px;
  border: 2px solid #333;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-case__tag__submit-btn {
    padding: 10px 40px;
    font-size: 14px;
  }
}
.p-case__tag__submit-btn:hover {
  opacity: 0.8;
}
.p-case__list__grid {
  width: 87%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 20px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-case__list__grid {
    display: block;
    padding: 20px 0 40px;
  }
}
.p-case__list__contents {
  margin-top: 30px;
}
.p-case__list__contents ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-case__list__contents ul {
    display: block;
  }
}
.p-case__list__contents ul li {
  width: 31.333%;
  margin: 0 1% 20px;
}
@media screen and (max-width: 767px) {
  .p-case__list__contents ul li {
    width: 100%;
    margin: 0 auto 20px;
  }
}
.p-case__list__contents ul li .item {
  display: block;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .p-case__list__contents ul li .item {
    padding: 0 5px;
  }
}
.p-case__list__contents ul li .item:hover .item__arrow-circle {
  transform: scale(1.1);
  border-color: rgba(51, 51, 51, 0.6);
}
.p-case__list__contents ul li .item__image img {
  height: 20.497vw;
  max-height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-case__list__contents ul li .item__image img {
    height: 200px;
  }
}
.p-case__list__contents ul li .item__title {
  margin-top: 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02rem;
  color: #333;
}
.p-case__list__contents ul li .item__title span {
  display: inline;
}
.p-case__list__contents ul li .item__texts {
  position: relative;
}
.p-case__list__contents ul li .item__adress {
  display: flex;
  align-items: center;
  margin-top: 5px;
  padding-bottom: 30px;
}
.p-case__list__contents ul li .item__adress .head {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02rem;
  min-width: 60px;
}
.p-case__list__contents ul li .item__adress .adress {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02rem;
}
.p-case__list__contents ul li .item__arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35px;
  height: 35px;
}
@media screen and (max-width: 767px) {
  .p-case__list__contents ul li .item__arrow {
    width: 30px;
    height: 30px;
  }
}
.p-case__list__contents ul li .item__arrow::before {
  content: "";
  position: absolute;
  top: 43%;
  right: 37%;
  width: 55px;
  height: 6px;
  background-image: url("../images/inquiry-arrow.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-case__list__contents ul li .item__arrow::before {
    width: 47px;
  }
}
.p-case__list__contents ul li .item__arrow-circle {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(51, 51, 51, 0.3);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-case__list__contents ul li .item__arrow-circle {
    width: 30px;
    height: 30px;
  }
}
.p-case__list__pagenavi {
  padding: 40px 0 0;
}
.p-case__heading {
  position: relative;
}
.p-case__heading__grid {
  padding-left: 80px;
}
@media screen and (max-width: 767px) {
  .p-case__heading__grid {
    padding-top: 50px;
    padding-left: 0;
  }
}
.p-case__heading__arrow {
  position: absolute;
  left: 50px;
  top: 38%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.p-case__heading__arrow a {
  display: flex;
  transform: rotate(90deg);
  transform-origin: left top;
  align-items: center;
}
.p-case__heading__arrow a span {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-right: 20px;
}
.p-case__heading__arrow a img {
  width: 60px;
  height: 10px;
  animation: arrow-bounce 1.5s ease-in-out infinite;
}
.p-case__heading__contents {
  background: #f5f5f5;
  padding: 105px 70px 70px;
}
@media screen and (max-width: 767px) {
  .p-case__heading__contents {
    padding: 105px 20px 70px;
  }
}
.p-case__heading__contents h1 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02rem;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-case__heading__contents h1 {
    font-size: 18px;
  }
}
.p-case__detail__grid {
  width: 73.2%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-case__detail__grid {
    width: 100%;
    padding: 40px 20px;
  }
}
.p-case__detail__contents {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-case__detail__contents {
    display: block;
    padding-top: 20px;
  }
}
.p-case__detail__texts {
  width: 49%;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}
@media screen and (max-width: 767px) {
  .p-case__detail__texts {
    width: 100%;
    position: static;
  }
}
.p-case__detail__texts h2 {
  font-size: 24px;
  background: #f5f5f5;
  padding: 15px;
  font-weight: 700;
  line-height: 1.5;
  margin: 20px 0;
  color: #333;
}
.p-case__detail__texts h3 {
  font-size: 20px;
  color: #333;
  font-weight: 700;
  line-height: 1.5;
  min-width: 150px;
}
.p-case__detail__texts p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}
.p-case__detail__texts .point {
  padding-bottom: 10px;
}
.p-case__detail__texts .site_area,
.p-case__detail__texts .total_floor,
.p-case__detail__texts .area,
.p-case__detail__texts .date,
.p-case__detail__texts .structure,
.p-case__detail__texts .price {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.p-case__detail__texts .site_area p,
.p-case__detail__texts .total_floor p,
.p-case__detail__texts .area p,
.p-case__detail__texts .date p,
.p-case__detail__texts .structure p,
.p-case__detail__texts .price p {
  font-size: 20px;
  font-weight: 700;
}
.p-case__detail__texts .price p {
  color: #333;
  font-size: 40px;
  line-height: 1;
}
.p-case__detail__texts .price p .yen {
  font-size: 20px;
}
.p-case__detail__images {
  width: 49%;
}
@media screen and (max-width: 767px) {
  .p-case__detail__images {
    width: 100%;
    padding-top: 20px;
  }
}
.p-case__detail__images h2 {
  font-size: 24px;
  background: #f5f5f5;
  padding: 15px;
  font-weight: 700;
  line-height: 1.5;
  margin: 20px 0;
}
.p-case__detail__images h3 {
  font-size: 20px;
  border-left: 3px solid #f5f5f5;
  padding: 5px 15px;
  font-weight: 700;
  line-height: 1.5;
  margin: 20px 0;
}
.p-case__detail__images p,
.p-case__detail__images a,
.p-case__detail__images li {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  margin: 20px 0;
}
.p-case__detail__images img {
  margin: 20px 0;
}
.p-case__detail__links {
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-case__detail__links {
    padding-top: 20px;
  }
}
.p-case__detail__links .post-navigation {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
.p-case__detail__links .post-navigation__prev,
.p-case__detail__links .post-navigation__list,
.p-case__detail__links .post-navigation__next {
  text-align: center;
}
.p-case__detail__links {
  /* 次の記事がない場合、一覧に戻るの右ボーダーを消す */
}
.p-case__detail__links .post-navigation__list:last-child {
  border-right: none;
}
.p-case__detail__links .post-navigation a {
  display: block;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s;
  border: 1px solid #333;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-case__detail__links .post-navigation a {
    font-size: 12px;
    padding: 15px 10px;
  }
}
.p-case__detail__links .post-navigation a:hover {
  background-color: #f0f0f0;
}
.p-case__detail__links .post-navigation__list {
  width: 600px;
}
@media screen and (max-width: 767px) {
  .p-case__detail__links .post-navigation__list {
    width: 140px;
  }
}
.p-case__detail__links .post-navigation__prev,
.p-case__detail__links .post-navigation__next {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .p-case__detail__links .post-navigation__prev,
  .p-case__detail__links .post-navigation__next {
    width: 100px;
  }
}

.p-invest__heading {
  position: relative;
}
.p-invest__heading__grid {
  padding-left: 80px;
}
@media screen and (max-width: 767px) {
  .p-invest__heading__grid {
    padding-top: 50px;
    padding-left: 0;
  }
}
.p-invest__heading__arrow {
  position: absolute;
  left: 50px;
  top: 38%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.p-invest__heading__arrow a {
  display: flex;
  transform: rotate(90deg);
  transform-origin: left top;
  align-items: center;
}
.p-invest__heading__arrow a span {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-right: 20px;
}
.p-invest__heading__arrow a img {
  width: 60px;
  height: 10px;
  animation: arrow-bounce 1.5s ease-in-out infinite;
}
.p-invest__heading__contents {
  background: #f5f5f5;
  padding: 105px 70px 70px;
}
@media screen and (max-width: 767px) {
  .p-invest__heading__contents {
    padding: 105px 20px 70px;
  }
}
.p-invest__heading__contents h1 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02rem;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-invest__heading__contents h1 {
    font-size: 18px;
  }
}
.p-invest__detail__grid {
  width: 73.2%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-invest__detail__grid {
    width: 100%;
    padding: 40px 20px;
  }
}
.p-invest__detail__icatch .block {
  text-align: center;
  height: 41.178vw;
  max-height: 562.5px;
  background: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .p-invest__detail__icatch .block {
    height: 60vw;
  }
}
.p-invest__detail__icatch .block img {
  width: auto;
  height: 100%;
}
.p-invest__detail__contents {
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .p-invest__detail__contents {
    display: block;
    padding-top: 20px;
  }
}
.p-invest__detail__contents h2 {
  font-size: 24px;
  background: #f5f5f5;
  padding: 15px;
  font-weight: 700;
  line-height: 1.5;
  margin: 20px 0;
  color: #333;
}
.p-invest__detail__base {
  padding: 0 0 60px;
}
@media screen and (max-width: 767px) {
  .p-invest__detail__base {
    padding: 0 0 40px;
  }
}
.p-invest__detail__base h3 {
  font-size: 16px;
  color: #333;
  font-weight: 700;
  line-height: 1.5;
  min-width: 150px;
}
.p-invest__detail__base div {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.p-invest__detail__base div p {
  font-size: 14px;
  font-weight: 400;
}
.p-invest__detail__base .price p {
  color: #333;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}
.p-invest__detail__base .price p .yen {
  font-size: 16px;
}
.p-invest__detail__base .station div {
  display: block;
}
.p-invest__detail__base .station div p {
  font-size: 14px;
  font-weight: 400;
}
.p-invest__detail__base .station div ul {
  padding-left: 20px;
  list-style-type: disc;
}
.p-invest__detail__base .station div ul li {
  font-size: 14px;
  font-weight: 400;
}
.p-invest__detail__free {
  padding: 0 0 60px;
}
@media screen and (max-width: 767px) {
  .p-invest__detail__free {
    padding: 0 0 40px;
  }
}
.p-invest__detail__free h3 {
  font-size: 16px;
  color: #333;
  font-weight: 700;
  line-height: 1.5;
}
.p-invest__detail__free p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  margin: 10px 0;
}
.p-invest__detail__free .rent-floor .rent-rooms {
  margin: 10px 0 30px;
}
.p-invest__detail__free .rent-floor table {
  width: 100%;
  border-collapse: collapse;
}
.p-invest__detail__free .rent-floor table tr th,
.p-invest__detail__free .rent-floor table tr td {
  border: solid 1px #E0E0E0;
  padding: 10px;
  font-size: 14px;
  font-weight: 400;
}
.p-invest__detail__table {
  padding: 0 0 60px;
}
@media screen and (max-width: 767px) {
  .p-invest__detail__table {
    padding: 0 0 40px;
  }
}
.p-invest__detail__table h3 {
  font-size: 16px;
  color: #333;
  font-weight: 700;
  line-height: 1.5;
  min-width: 150px;
}
.p-invest__detail__table div {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.p-invest__detail__table div p {
  font-size: 14px;
  font-weight: 400;
}
.p-invest__detail__table .street-direction div {
  display: block;
}
.p-invest__detail__around {
  padding-bottom: 80px;
}
.p-invest__detail__around h2 {
  font-size: 24px;
  background: #f5f5f5;
  padding: 15px;
  font-weight: 700;
  line-height: 1.5;
  margin: 20px 0;
  color: #333;
}
.p-invest__detail__around .neighborhood {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-invest__detail__around .neighborhood .block {
  width: 24%;
}
@media screen and (max-width: 767px) {
  .p-invest__detail__around .neighborhood .block {
    width: 100%;
    margin-bottom: 10px;
  }
}
.p-invest__detail__contact__contents {
  background-image: url("../images/contact-back.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
}
.p-invest__detail__contact__contents a {
  display: block;
  padding: 100px 0;
  transition: all 0.3s;
}
.p-invest__detail__contact__contents a:hover {
  opacity: 0.7;
}
.p-invest__detail__contact__contents a h2 {
  text-align: center;
  color: white;
  font-family: "Prata", serif;
  font-size: 40px;
  letter-spacing: 0.02rem;
  line-height: 1;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-invest__detail__contact__contents a h2 {
    font-size: 30px;
  }
}
.p-invest__detail__contact__contents a p {
  color: white;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-invest__detail__contact__contents a p {
    font-size: 16px;
  }
}
.p-invest__detail__links {
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-invest__detail__links {
    padding-top: 20px;
  }
}
.p-invest__detail__links .post-navigation {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
.p-invest__detail__links .post-navigation__prev,
.p-invest__detail__links .post-navigation__list,
.p-invest__detail__links .post-navigation__next {
  text-align: center;
}
.p-invest__detail__links {
  /* 次の記事がない場合、一覧に戻るの右ボーダーを消す */
}
.p-invest__detail__links .post-navigation__list:last-child {
  border-right: none;
}
.p-invest__detail__links .post-navigation a {
  display: block;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s;
  border: 1px solid #333;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-invest__detail__links .post-navigation a {
    font-size: 12px;
    padding: 15px 10px;
  }
}
.p-invest__detail__links .post-navigation a:hover {
  background-color: #f0f0f0;
}
.p-invest__detail__links .post-navigation__list {
  width: 600px;
}
@media screen and (max-width: 767px) {
  .p-invest__detail__links .post-navigation__list {
    width: 140px;
  }
}
.p-invest__detail__links .post-navigation__prev,
.p-invest__detail__links .post-navigation__next {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .p-invest__detail__links .post-navigation__prev,
  .p-invest__detail__links .post-navigation__next {
    width: 100px;
  }
}

.p-property {
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.p-property h1, .p-property h2, .p-property h3 {
  font-family: "Noto Serif JP", serif;
}
.p-property__main {
  position: relative;
}
.p-property__main__contents {
  position: relative;
}
.p-property__main__contents h1 {
  position: absolute;
  bottom: 10%;
  left: 15%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-property__main__contents h1 {
    bottom: 0;
  }
}
.p-property__main__contents h1 span {
  display: inline-block;
  color: white;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02rem;
}
@media screen and (min-width: 992px) {
  .p-property__main__contents h1 span {
    margin: 5px 0;
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-property__main__contents h1 span {
    font-size: 16px;
    padding: 5px 5px;
  }
}
.p-property__tag {
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.p-property__tag__grid {
  width: 85%;
  margin: 0 auto;
  max-width: 1160px;
  padding: 40px;
  background: #f5f5f5;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-property__tag__grid {
    width: 100%;
    padding: 20px;
    margin-top: 40px;
  }
}
.p-property__tag__heading {
  color: #333;
  margin: 20px 0 10px;
}
.p-property__tag__heading--first {
  margin-top: 0;
}
.p-property__tag__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-property__tag__list {
    gap: 10px;
  }
}
.p-property__tag__item {
  list-style: none;
}
.p-property__tag__link {
  display: inline-block;
  padding: 5px 10px;
  border: 2px solid #333;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s;
  border-radius: 25px;
  background: white;
}
@media screen and (max-width: 767px) {
  .p-property__tag__link {
    padding: 5px 10px;
    font-size: 12px;
  }
}
.p-property__tag__link.active {
  background: #333;
  color: white;
}
.p-property__tag__submit {
  margin-top: 20px;
  text-align: center;
}
.p-property__tag__submit-btn {
  display: inline-block;
  padding: 10px 60px;
  background: #333;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 30px;
  border: 2px solid #333;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-property__tag__submit-btn {
    padding: 10px 40px;
    font-size: 14px;
  }
}
.p-property__list__grid {
  width: 87%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 60px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-property__list__grid {
    width: 100%;
    padding: 40px 20px 60px;
  }
}
.p-property__list__contents ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 20px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .p-property__list__contents ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-property__list__contents ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
  }
}
.p-property__list__contents ul li {
  list-style: none;
}
.p-property__list__contents ul li .item {
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  text-decoration: none;
  color: inherit;
}
.p-property__list__contents ul li .item__image {
  position: relative;
  overflow: hidden;
}
.p-property__list__contents ul li .item__image img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.p-property__list__contents ul li .item__image:hover img {
  transform: scale(1.03);
}
.p-property__list__contents ul li .item__status {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(38, 40, 39, 0.85);
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  z-index: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-property__list__contents ul li .item__status {
    font-size: 11px;
    padding: 4px 8px;
    top: 5px;
    left: 5px;
  }
}
.p-property__list__contents ul li .item__category {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(38, 40, 39, 0.85);
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 15px;
  z-index: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-property__list__contents ul li .item__category {
    font-size: 11px;
    padding: 5px 10px;
  }
}
.p-property__list__contents ul li .item__body {
  padding: 20px 0 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-property__list__contents ul li .item__body {
    padding: 12px 0 35px;
  }
}
.p-property__list__contents ul li .item__body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.6;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .p-property__list__contents ul li .item__body h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.p-property__list__contents ul li .item__meta p {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 767px) {
  .p-property__list__contents ul li .item__meta p {
    font-size: 12px;
  }
}
.p-property__list__contents ul li .item__meta p + p {
  margin-top: 6px;
}
.p-property__list__contents ul li .item__label {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  min-width: 60px;
  margin-right: 15px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-property__list__contents ul li .item__label {
    font-size: 12px;
    min-width: 50px;
    margin-right: 10px;
  }
}
.p-property__list__contents ul li .item__price-num {
  font-family: "Prata", serif;
  font-size: 22px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-property__list__contents ul li .item__price-num {
    font-size: 18px;
  }
}
.p-property__list__contents ul li .item__price-num--yield {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-property__list__contents ul li .item__price-num--yield {
    font-size: 15px;
  }
}
.p-property__list__contents ul li .item__unit {
  font-size: 13px;
  color: #333;
  margin-left: 2px;
}
@media screen and (max-width: 767px) {
  .p-property__list__contents ul li .item__unit {
    font-size: 11px;
  }
}
.p-property__list__contents ul li .item__arrow {
  margin-top: auto;
  padding-top: 15px;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35px;
  height: 35px;
}
@media screen and (max-width: 767px) {
  .p-property__list__contents ul li .item__arrow {
    width: 30px;
    height: 30px;
  }
}
.p-property__list__contents ul li .item__arrow::before {
  content: "";
  position: absolute;
  top: 43%;
  right: 37%;
  width: 55px;
  height: 6px;
  background-image: url("../images/inquiry-arrow.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-property__list__contents ul li .item__arrow::before {
    width: 47px;
  }
}
.p-property__list__contents ul li .item__arrow-circle {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(51, 51, 51, 0.3);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-property__list__contents ul li .item__arrow-circle {
    width: 30px;
    height: 30px;
  }
}
.p-property__list__contents ul li .item:hover .item__arrow-circle {
  transform: scale(1.1);
  border-color: rgba(51, 51, 51, 0.6);
}
.p-property__list__contents ul li {
  /* 成約済みアイテムのスタイル */
}
.p-property__list__contents ul li .item--done {
  position: relative;
  cursor: default;
  pointer-events: none;
}
.p-property__list__contents ul li {
  /* 成約済みオーバーレイ */
}
.p-property__list__contents ul li .item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.p-property__list__contents ul li .item__overlay-text {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  background-color: rgba(255, 0, 0, 0.8);
  padding: 10px 30px;
  border-radius: 5px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-property__list__contents ul li .item__overlay-text {
    font-size: 18px;
    padding: 8px 20px;
  }
}
.p-property__list__contents ul li .item--done .item__image,
.p-property__list__contents ul li .item--done .item__body {
  opacity: 0.7;
}
.p-property__list__category-section + .p-property__list__category-section {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-property__list__category-section + .p-property__list__category-section {
    margin-top: 35px;
  }
}
.p-property__list__category-heading {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  padding-bottom: 15px;
  margin-bottom: 25px;
  border-bottom: 2px solid #333;
}
@media screen and (max-width: 767px) {
  .p-property__list__category-heading {
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
}
.p-property__list__more {
  margin-top: 25px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-property__list__more {
    margin-top: 20px;
  }
}
.p-property__list__more-link {
  display: inline-block;
  padding: 10px 60px;
  border: 2px solid #333;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 30px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-property__list__more-link {
    padding: 10px 40px;
    font-size: 14px;
  }
}
.p-property__list__more-link:hover {
  background: #333;
  color: white;
}
.p-property__list__pagenavi {
  padding: 40px 0 0;
}
.p-property__heading {
  position: relative;
}
.p-property__heading__grid {
  padding-left: 80px;
}
@media screen and (max-width: 767px) {
  .p-property__heading__grid {
    padding-top: 50px;
    padding-left: 0;
  }
}
.p-property__heading__arrow {
  position: absolute;
  left: 50px;
  top: 38%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.p-property__heading__arrow a {
  display: flex;
  transform: rotate(90deg);
  transform-origin: left top;
  align-items: center;
}
.p-property__heading__arrow a span {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-right: 20px;
}
.p-property__heading__arrow a img {
  width: 60px;
  height: 10px;
  animation: arrow-bounce 1.5s ease-in-out infinite;
}
.p-property__heading__contents {
  background: #f5f5f5;
  padding: 105px 70px 70px;
}
@media screen and (max-width: 767px) {
  .p-property__heading__contents {
    padding: 105px 20px 70px;
  }
}
.p-property__heading__contents h1 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02rem;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-property__heading__contents h1 {
    font-size: 18px;
  }
}
.p-property__detail__grid {
  width: 73.2%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-property__detail__grid {
    width: 100%;
    padding: 40px 20px;
  }
}
.p-property__detail__icatch .block {
  text-align: center;
  height: 41.178vw;
  max-height: 562.5px;
  background: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .p-property__detail__icatch .block {
    height: 60vw;
  }
}
.p-property__detail__icatch .block img {
  width: auto;
  height: 100%;
}
.p-property__detail__contents {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .p-property__detail__contents {
    display: block;
    padding-top: 20px;
  }
}
.p-property__detail__contents h2 {
  font-size: 20px;
  background: #f5f5f5;
  padding: 15px;
  font-weight: 700;
  line-height: 1.5;
  margin: 20px 0;
  color: #333;
}
.p-property__detail__right {
  width: 49%;
}
@media screen and (max-width: 767px) {
  .p-property__detail__right {
    width: 100%;
  }
}
.p-property__detail__left {
  width: 49%;
}
@media screen and (max-width: 767px) {
  .p-property__detail__left {
    width: 100%;
  }
}
.p-property__detail__base h3 {
  font-size: 16px;
  color: #333;
  font-weight: 700;
  line-height: 1.5;
  min-width: 150px;
}
.p-property__detail__base div {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.p-property__detail__base div p {
  font-size: 14px;
  font-weight: 400;
}
.p-property__detail__base .price p {
  color: #333;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}
.p-property__detail__base .price p .yen {
  font-size: 16px;
}
.p-property__detail__base .traffic div {
  display: block;
}
.p-property__detail__base .traffic div p {
  font-size: 14px;
  font-weight: 400;
}
.p-property__detail__base .traffic div ul {
  padding-left: 20px;
  list-style-type: disc;
}
.p-property__detail__base .traffic div ul li {
  font-size: 14px;
  font-weight: 400;
}
.p-property__detail__free h3 {
  font-size: 16px;
  color: #333;
  font-weight: 700;
  line-height: 1.5;
}
.p-property__detail__free p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  margin: 10px 0;
}
.p-property__detail__map .map iframe {
  width: 100%;
  height: 300px;
}
.p-property__detail__table h3 {
  font-size: 16px;
  color: #333;
  font-weight: 700;
  line-height: 1.5;
  min-width: 180px;
}
.p-property__detail__table div {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.p-property__detail__table div p {
  font-size: 14px;
  font-weight: 400;
}
.p-property__detail__table .street-direction div {
  display: block !important;
}
.p-property__detail__around {
  padding-bottom: 80px;
}
.p-property__detail__around h2 {
  font-size: 24px;
  background: #f5f5f5;
  padding: 15px;
  font-weight: 700;
  line-height: 1.5;
  margin: 20px 0;
  color: #333;
}
.p-property__detail__around .neighborhood {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-property__detail__around .neighborhood .block {
  width: 24%;
}
@media screen and (max-width: 767px) {
  .p-property__detail__around .neighborhood .block {
    width: 100%;
    margin-bottom: 10px;
  }
}
.p-property__detail__contact__contents {
  background-image: url("../images/contact-back.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
}
.p-property__detail__contact__contents a {
  display: block;
  padding: 100px 0;
  transition: all 0.3s;
}
.p-property__detail__contact__contents a:hover {
  opacity: 0.7;
}
.p-property__detail__contact__contents a h2 {
  text-align: center;
  color: white;
  font-family: "Prata", serif;
  font-size: 40px;
  letter-spacing: 0.02rem;
  line-height: 1;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-property__detail__contact__contents a h2 {
    font-size: 30px;
  }
}
.p-property__detail__contact__contents a p {
  color: white;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-property__detail__contact__contents a p {
    font-size: 16px;
  }
}
.p-property__detail__links {
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-property__detail__links {
    padding-top: 20px;
  }
}
.p-property__detail__links .post-navigation {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
.p-property__detail__links .post-navigation__prev,
.p-property__detail__links .post-navigation__list,
.p-property__detail__links .post-navigation__next {
  text-align: center;
}
.p-property__detail__links {
  /* 次の記事がない場合、一覧に戻るの右ボーダーを消す */
}
.p-property__detail__links .post-navigation__list:last-child {
  border-right: none;
}
.p-property__detail__links .post-navigation a {
  display: block;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s;
  border: 1px solid #333;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-property__detail__links .post-navigation a {
    font-size: 12px;
    padding: 15px 10px;
  }
}
.p-property__detail__links .post-navigation a:hover {
  background-color: #f0f0f0;
}
.p-property__detail__links .post-navigation__list {
  width: 600px;
}
@media screen and (max-width: 767px) {
  .p-property__detail__links .post-navigation__list {
    width: 140px;
  }
}
.p-property__detail__links .post-navigation__prev,
.p-property__detail__links .post-navigation__next {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .p-property__detail__links .post-navigation__prev,
  .p-property__detail__links .post-navigation__next {
    width: 100px;
  }
}

.p-concept__main__grid {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-concept__main__grid {
    flex-direction: column-reverse;
  }
}
.p-concept__main__text {
  width: 40%;
  background: #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
}
@media screen and (max-width: 767px) {
  .p-concept__main__text {
    width: 100%;
    padding: 60px 20px;
  }
}
.p-concept__main__text p {
  writing-mode: vertical-rl;
  font-size: 20px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.15em;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .p-concept__main__text p {
    font-size: 20px;
    line-height: 2.2;
  }
}
.p-concept__main__image {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .p-concept__main__image {
    width: 100%;
  }
}
.p-concept__main__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-concept__sub {
  background: #D9D9D9;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-concept__sub {
    padding: 0;
  }
}
.p-concept__sub__grid {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-concept__sub__grid {
    display: block;
  }
}
.p-concept__sub__image {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .p-concept__sub__image {
    width: 100%;
  }
}
.p-concept__sub__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-concept__sub__text {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px;
}
@media screen and (max-width: 767px) {
  .p-concept__sub__text {
    width: 100%;
    padding: 40px 20px;
  }
}
.p-concept__sub__text h2 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 767px) {
  .p-concept__sub__text h2 {
    font-size: 18px;
  }
}
.p-concept__sub__text p {
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  line-height: 2;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-concept__sub__text p {
    font-size: 13px;
    margin-top: 20px;
  }
}
.p-concept__three {
  background: #D9D9D9;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-concept__three {
    padding: 40px 0;
  }
}
.p-concept__three__head {
  background: #262827;
  width: 60%;
  padding: 50px 0 50px 6.5%;
}
@media screen and (max-width: 767px) {
  .p-concept__three__head {
    width: 100%;
    padding: 30px 20px;
  }
}
.p-concept__three__head__inner {
  display: inline-block;
}
.p-concept__three__head h2 {
  color: white;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-concept__three__head h2 {
    font-size: 18px;
  }
}
.p-concept__three__head__num {
  font-size: 36px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-concept__three__head__num {
    font-size: 28px;
  }
}
.p-concept__three__head__line {
  width: 40px;
  height: 3px;
  background: white;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-concept__three__head__line {
    width: 30px;
    height: 2px;
    margin-top: 15px;
  }
}
.p-concept__three__items {
  width: 87%;
  max-width: 1200px;
  margin: 0 auto;
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-concept__three__items {
    width: 100%;
    padding: 0 20px;
  }
}
.p-concept__three__item {
  display: flex;
  align-items: center;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-concept__three__item {
    display: flex;
    flex-direction: column-reverse;
    padding: 40px 0;
  }
}
.p-concept__three__item__text {
  width: 50%;
  padding-right: 60px;
}
@media screen and (max-width: 767px) {
  .p-concept__three__item__text {
    width: 100%;
    padding-right: 0;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-concept__three__item--reverse {
    flex-direction: column;
  }
}
.p-concept__three__item--reverse .p-concept__three__item__text {
  padding-right: 0;
  padding-left: 60px;
}
@media screen and (max-width: 767px) {
  .p-concept__three__item--reverse .p-concept__three__item__text {
    padding-left: 0;
  }
}
.p-concept__three__item__heading {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-concept__three__item__heading {
    gap: 15px;
  }
}
.p-concept__three__item__number {
  flex-shrink: 0;
}
.p-concept__three__item__number span {
  font-family: "Prata", serif;
  font-size: 40px;
  font-weight: 400;
  color: #333;
  line-height: 1;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 767px) {
  .p-concept__three__item__number span {
    font-size: 30px;
  }
}
.p-concept__three__item__line {
  width: 30px;
  height: 2px;
  background: #333;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-concept__three__item__line {
    width: 25px;
    margin-top: 8px;
  }
}
.p-concept__three__item__title h3 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 767px) {
  .p-concept__three__item__title h3 {
    font-size: 15px;
  }
}
.p-concept__three__item > .p-concept__three__item__text > p {
  font-size: 15px;
  font-weight: 400;
  color: #333;
  line-height: 2;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .p-concept__three__item > .p-concept__three__item__text > p {
    font-size: 13px;
    margin-top: 15px;
  }
}
.p-concept__three__item__image {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-concept__three__item__image {
    width: 100%;
  }
}
.p-concept__three__item__image img {
  width: 100%;
  height: auto;
  display: block;
}
.p-concept__reason {
  background: #262827;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-concept__reason {
    padding: 40px 0;
  }
}
.p-concept__reason__grid {
  width: 87%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-concept__reason__grid {
    width: 100%;
    padding: 0 20px;
  }
}
.p-concept__reason__head {
  color: white;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 767px) {
  .p-concept__reason__head {
    font-size: 18px;
  }
}
.p-concept__reason__items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-concept__reason__items {
    margin-top: 30px;
  }
}
.p-concept__reason__item {
  width: 50%;
  padding: 40px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  margin-top: -1px;
  margin-left: -1px;
}
@media screen and (max-width: 767px) {
  .p-concept__reason__item {
    width: 100%;
    padding: 30px 20px;
  }
}
.p-concept__reason__item__icon {
  text-align: center;
  margin-bottom: 20px;
}
.p-concept__reason__item__icon img {
  width: 80px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-concept__reason__item__icon img {
    width: 60px;
  }
}
.p-concept__reason__item h3 {
  color: white;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 767px) {
  .p-concept__reason__item h3 {
    font-size: 16px;
  }
}
.p-concept__reason__item p {
  color: white;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .p-concept__reason__item p {
    font-size: 13px;
  }
}

.p-member__main__grid {
  padding-left: 80px;
}
@media screen and (max-width: 767px) {
  .p-member__main__grid {
    padding-top: 50px;
    padding-left: 0;
  }
}
.p-member__main__contents {
  background: #f5f5f5;
  padding: 105px 70px 70px;
}
@media screen and (max-width: 767px) {
  .p-member__main__contents {
    padding: 105px 20px 70px;
  }
}
.p-member__main__contents h1 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02rem;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-member__main__contents h1 {
    font-size: 18px;
  }
}
.p-member__list {
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.p-member__list__grid {
  width: 87%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-member__list__grid {
    width: 100%;
    padding: 40px 20px 60px;
  }
}
.p-member__list__contents {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 3%;
}
@media screen and (max-width: 767px) {
  .p-member__list__contents {
    gap: 30px 4%;
  }
}
.p-member__list__item {
  width: 31.33%;
}
@media screen and (max-width: 767px) {
  .p-member__list__item {
    width: 48%;
  }
}
.p-member__list__item__image {
  overflow: hidden;
  aspect-ratio: 4/4;
  background: #f5f5f5;
}
.p-member__list__item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-member__list__item__image--noimage {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-member__list__item__image--noimage span {
  font-size: 14px;
  color: #999;
  letter-spacing: 0.05rem;
}
.p-member__list__item__texts {
  padding-top: 15px;
}
.p-member__list__item__position {
  font-size: 13px;
  font-weight: 500;
  color: #666;
  line-height: 1.5;
}
.p-member__list__item__name {
  font-family: "YakuHanJP_Narrow", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-top: 5px;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 767px) {
  .p-member__list__item__name {
    font-size: 16px;
  }
}

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