@charset "utf-8";
/* =================================================
Foundation
================================================= */
:root {
  --primary-font-family: "Poppins", YuGothic, "游ゴシック体", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Zen Kaku Gothic New","Helvetica Neue", HelveticaNeue,  Verdana, "メイリオ", Meiryo, sans-serif;
	--font-en: "Poppins", serif;
  --input-font-family: "Poppins", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Zen Kaku Gothic New","Helvetica Neue", HelveticaNeue,  Verdana, "メイリオ", Meiryo, sans-serif;
	--c-body: #121212;
	--c-primary: #8dc661;
	--c-secondary: #f7fef1;
	--c-tertiary: #633519;
	--c-quaternary: #eabf90;
	--c-border: #ede5e2;
  --c-catch: 1.6;
  --c-fontsize: 2.2rem;
  --c_border-radius: 30px;
  --sec_margin-inline: 20px;
  --layout_margin-inline: 100px;
  --layout_margin-block: 200px;
  --layout_margin-block02: 150px;
  --cont_margin-block: 100px;
  --cont_margin-block02: 70px;
  --cont_margin-block03: 50px;
}
@media (max-width: 1500px) {
  :root {
    --layout_margin-inline: 50px;
    --layout_margin-block: 150px;
    --layout_margin-block02: 100px;
    --cont_margin-block: 70px;
    --cont_margin-block02: 50px;
    --cont_margin-block03: 30px;
  }
}
@media (max-width: 960px) {
  :root {
    --layout_margin-block: 100px;
    --layout_margin-block02: 70px;
  }
}
@media (max-width: 767px) {
  :root {    
    --c-fontsize: 1.6rem;
    --c_border-radius: 15px;
    --layout_margin-inline: 20px;
    --layout_margin-block: 70px;
    --layout_margin-block02: 50px;
    --cont_margin-block: 40px;
    --cont_margin-block02: 30px;
    --cont_margin-block03: 10px;
  }
}

/* Base
------------------------------------------------- */
* {
	font-weight: 500;
	font-style: normal;
	font-family: var(--primary-font-family);
	margin: 0;
	padding: 0;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: var(--c-body);
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
}
html {
	font-size: 62.5%;
}
body {
	font-size: 22px;
	font-size: var( --c-fontsize );
	word-wrap: break-word;
	font-display: swap;
	overflow-wrap: break-word;
	overflow-x: hidden;
	position: relative;
}
@media screen and (max-width: 374px) {
	html {
		font-size: 2.667vw;
	}
}
img {
	border: 0;
	vertical-align: bottom;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}


/* =================================================
Animation
================================================= */
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes translate {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform : translate(0, 0);
	}
}
@keyframes blur {
	0% {
		opacity: 0;
		-ms-filter: blur(6px);
		filter: blur(6px);
	}
	100% {
		opacity: 1;
		-ms-filter: blur(0);
		filter: blur(0);
	}
}
@keyframes rotate {
	0% {
		opacity: 0;
		transform: rotate( 45deg );
	}
	100% {
		opacity: 1;
		transform : translate(0, 0) rotate( 45deg );
	}
}
.-fadein {
	opacity: 0;
}
.-translate {
	opacity: 0;
	transform : translate(0, -5px);
}
.-blur {
	opacity: 0;
}
.fv-fadein {
	opacity: 0;
	animation: fadeIn 0.5s ease-in-out 1.5s forwards;
}
.fv-translate {
	opacity: 0;
	animation: translate 0.3s ease-in-out 1.5s forwards;
	transform : translate(0, -5px);
}
.fv-blur {
	opacity: 0;
	animation: blur 0.5s ease-in-out 1.5s forwards;
}
.js-effect__fade {
	animation: fadeIn 0.5s ease-in-out 1.5s forwards;
}
.js-effect__blur {
	animation: blur 0.2s ease-in-out 1.5s forwards;
}
.js-effect__translate {
	/*animation: translate 0.5s ease-in-out 1.5s forwards;*/
	animation: translate 0.3s ease-in-out 0.3s forwards;
}

@keyframes slideIcon01 {
  0% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
  40% {
    transform: translateY(-50%) translateX(10px);
    opacity: 0;
  }
  60% {
    transform: translateY(-50%) translateX(-10px);
    opacity: 0;
  }
  100% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}
@keyframes slideIcon02 {
  0% {
    transform: translateY(-50%) translateX(0) rotate( -135deg );
    opacity: 1;
  }
  40% {
    transform: translateY(-50%) translateX(10px) rotate( -135deg );
    opacity: 0;
  }
  60% {
    transform: translateY(-50%) translateX(-10px) rotate( -135deg );
    opacity: 0;
  }
  100% {
    transform: translateY(-50%) translateX(0) rotate( -135deg );
    opacity: 1;
  }
}
@keyframes slideIcon03 {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    transform: translateX(10px);
    opacity: 0;
  }
  60% {
    transform: translateX(-10px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideIcon04 {
  0% {
    transform: translateX(0) rotate( -135deg );
    opacity: 1;
  }
  40% {
    transform: translateX(10px) rotate( -135deg );
    opacity: 0;
  }
  60% {
    transform: translateX(-10px) rotate( -135deg );
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate( -135deg );
    opacity: 1;
  }
}
@keyframes slideIcon05 {
  0% {
    transform: translateY(-50%) translateX(0) rotate( -135deg );
    opacity: 1;
  }
  40% {
    transform: translateY(-50%) translateX(-10px) rotate( -135deg );
    opacity: 0;
  }
  60% {
    transform: translateY(-50%) translateX(10px) rotate( -135deg );
    opacity: 0;
  }
  100% {
    transform: translateY(-50%) translateX(0) rotate( -135deg );
    opacity: 1;
  }
}
@keyframes mvOpacity {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* =================================================
Layout
================================================= */
#l-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/*-- Start --*/
.start {
  background: var( --c-primary );
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 99999;
}
.start p {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 100000;
	width: 200px;
  overflow: hidden;
  height: 100px;
}
.start p img {
	width: 100%;
	height: auto;
  transform: translateY(100%); /* 初期位置: 下に隠れている */
  animation: logo-up 2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.start.is-visible {
	display: block;
}
.start.is-hidden {
	display: none;
}
@media screen and (max-width: 767px) {
  .start p {
    width: 150px;
  }
}


.opening {
  position: fixed;
  inset: 0;
  background: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  overflow: hidden;
  animation: opening-fade 0.6s ease forwards;
  animation-delay: 2s;
}
.opening__logo-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  overflow: hidden;
}
.opening__logo {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}
.opening__logo-wrap::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  z-index: 2;
  transform: translateY(0);
  animation: mask-up 0.8s ease-in-out forwards;
}
.opening__logo-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  z-index: 2;
  transform: translateY(100%);
  animation: mask-up-again 0.8s ease-in-out forwards;
  animation-delay: 1s;
}
@media screen and (max-width: 767px) {
  .opening__logo-wrap {
    width: 120px;
    height: 120px;
  }
}
@keyframes mask-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes mask-up-again {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes opening-fade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* Header
------------------------------------------------- */
.l-header {
  width: 100%;
  /*height: 130px;*/
  display: flex;
  justify-content: space-between;
  position: fixed;
  padding: 50px;
  top: 0;
  left: 0;
  transition: all .3s ease-in-out;
  z-index: 3;
  opacity: 0;
  transform : translate(0, -10px);
  animation: translate 1.0s ease-in-out 3.0s forwards;
  /*background: #000;*/
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}
.l-header:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0) 100%
  );
	opacity: 0;
	z-index: -1;
  animation: translate 1.0s ease-in-out 3.0s forwards;
}
.-transform .l-header:before {
	opacity: 1;
}
.sub .l-header {
  animation: translate 1.0s ease-in-out 0.5s forwards;
}
.l-header__logo {
  width: 441px;
  height: auto;
  aspect-ratio: 441 / 89;
  transition: all .3s ease-in-out;
}
.-transform .l-header__logo {
  width: 380px;
  margin-top: -20px;
}
@media screen and (max-width: 1600px) {
  .l-header__logo {
    width: 380px;
  }
  .-transform .l-header__logo {
    width: 350px;
    margin-top: -10px;
  }
}
@media screen and (max-width: 1400px) {
  .l-header__logo {
    width: 350px;
  }
  .-transform .l-header__logo {
    width: 330px;
  }
}
@media screen and (max-width: 1300px) {
  .l-header {
	  padding: 30px 30px 50px;
  }
  .l-header__logo {
    width: 330px;
  }
  .-transform .l-header__logo {
    width: 300px;
    margin-top: -5px;
  }
}
@media screen and (max-width: 1200px) {
  .l-header__logo {
    width: 280px;
  }
  .-transform .l-header__logo {
    width: 250px;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
	  padding: 20px 20px 30px;
  }
  .l-header__logo {
    width: 225px;
  }
  .-transform .l-header__logo {
    width: 225px;
  }
}

.l-header__menu {
  width: 50px;
  height: 50px;  
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--c-quaternary);
  border: 2px solid var(--c-quaternary);
  transition: all .3s;
  -webkit-transition: .3s ease-in-out;
  transition: .5s ease-in-out;
  z-index: 99999;
}
.-transform .l-header__menu {
  top: 0;
  right: 0;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__menu:hover {
    background: #fff;
    border: 2px solid var(--c-quaternary);
  }
}
@media screen and (max-width: 767px) {
  .l-header__menu {
    width: 46px;
    height: 46px;
  }  
}

/* ---------- Global Nav ----------*/
/* -- Utility -- */
.l-header-utility {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}
.l-header-utility__list {
  display: flex;
  justify-content: flex-end;
  column-gap: 15px;
  margin-right: 20px;
  opacity: 1;
	transition: all .3s ease-in-out;
}
.-transform .l-header-utility__list {
  opacity: 0;
}
.l-header-utility__item a {
  display: block;
  padding-left: 25px;
  font-weight: 700;
  font-size: 1.6rem;
  color: var( --c-tertiary );
  line-height: 1.0;
  position: relative;
  white-space: nowrap;
}
.l-header-utility__item--company a:before,
.l-header-utility__item--faq a:before {
  position: absolute;
  content: "";
  width: 17px;
  height: 16px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.l-header-utility__item--company a:before {
  background: url("../images/icon-company-b.png") no-repeat 0 center / 17px auto;
}
.l-header-utility__item--faq a:before {
  background: url("../images/icon-faq-b.png") no-repeat 0 center / 17px auto;
}
.l-header-utility__item--company a:hover:before,
.l-header-utility__item--faq a:hover:before {
  animation: slideIcon01 0.5s ease forwards;
}
.l-header-utility__cta {
  display: flex;
  justify-content: flex-end;  
}
.l-header-utility__cta-btn {
  margin-right: 10px;
  white-space: nowrap;
}
@media screen and (max-width: 1500px) {
  .l-header-utility__item a {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1300px) {
  .l-header-utility__list {
    column-gap: 10px;
    margin-right: 15px;
  }
}
@media screen and (max-width: 1200px) {
  .l-header-utility__list ,
  .l-header-utility__cta {
    display: none;
  }
}

/* -- Global -- */
.l-header-global {
  opacity: 1;
	transition: all .3s ease-in-out;
}
.-transform .l-header-global {
  opacity: 0;
}
.l-header-global__list {
  display: flex;
  justify-content: flex-end;  
}
.l-header-global__item {
  margin-left: 40px;
}
.l-header-global__item a {
  display: block;
  font-size: 2.0rem;
  font-weight: 700;
  padding-left: 25px;
  position: relative;
  color: var( --c-tertiary );
  line-height: 1.0;
}
.l-header-global__item a:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background: var( --c-tertiary );
  top: 50%;
  left: 0;
  transform: translateY( -50% );
}
.l-header-global__item a:hover:before {
  animation: slideIcon02 0.5s ease forwards;
}
.l-header-global__item a:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border: 1px solid #fff;
  border-right: none;
  border-top: none;  
  top: 50%;
  left: 4px;
  transform: translateY( -50% ) rotate( -135deg );
}
.l-header-global__item a:hover:after {
  animation: slideIcon02 0.5s ease forwards;
}
@media screen and (max-width: 1600px) {
  .l-header-global__item {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1500px) {
  .l-header-global__item {
    margin-left: 15px;
  }
  .l-header-global__item a {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1400px) {
  .l-header-global__item {
    margin-left: 15px;
  }
  .l-header-global__item a {
    font-size: 1.6rem;
    padding-left: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .l-header-global {
    display: none;
  }
}

/* Footer
------------------------------------------------- */
.l-footer {
  background: linear-gradient(to bottom, transparent 400px, var(--c-secondary) 400px);
  padding-bottom: var(--layout_margin-block);
}
.l-footer:before {
  position: absolute;
  content: "";
  width: 795px;
  height: auto;
  aspect-ratio: 795 / 643;
  left: 0;
  bottom: 0;
  background: url("../images/footer-logo.png") no-repeat left bottom;
  background-size: 100% auto;
  z-index: -1;
}
.l-footer__main {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 0 0 100px;
}
.l-footer-info {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.l-footer__nav {
  width: 60%;
  margin-top: 20px;
}
@media screen and (max-width: 1600px) {
  .l-footer {
    background: linear-gradient(to bottom, transparent 400px, var(--c-secondary) 400px);
    padding-bottom: var(--layout_margin-block);
  }
  .l-footer:before {
    width: 600px;
  }
}
@media screen and (max-width: 1500px) {
  .l-footer-info {
    width: 35%;
  }
  .l-footer__nav {
    width: 65%;
  }
}
@media screen and (max-width: 1400px) {
  .l-footer {
    background: linear-gradient(to bottom, transparent 400px, var(--c-secondary) 400px);
    padding-bottom: var(--layout_margin-block);
  }
  .l-footer-info {
    width: 32%;
  }
  .l-footer__nav {
    width: 68%;
  }
}
@media screen and (max-width: 1300px) {
  .l-footer {
    background: linear-gradient(to bottom, transparent 400px, var(--c-secondary) 400px);
    padding-bottom: var(--layout_margin-block);
  }
  .l-footer__main {
    padding: 0 0 100px;
  }
}
@media screen and (max-width: 1200px) {
  .l-footer {
    background: linear-gradient(to bottom, transparent 400px, var(--c-secondary) 400px);
    padding-bottom: var(--layout_margin-block);
  }
  .l-footer:before {
    width: 500px;
  }
  .l-footer-info {
    width: 30%;
  }
  .l-footer__nav {
    width: 68%;
  }
}
@media screen and (max-width: 960px) {
  .l-footer {
    background: linear-gradient(to bottom, transparent 400px, var(--c-secondary) 400px);
    padding-bottom: calc( var(--layout_margin-block) + 30px );
  }
  .l-footer__main {
    display: block;
    justify-content: space-between;
    padding: 0;
  }
  .l-footer-info {
    width: 100%;
    margin-bottom: 50px;
  }
  .l-footer__nav {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer:before {
    width: 90%;
  }
}

.l-footer-info__logo {
  width: 441px;
  height: auto;
  aspect-ratio: 441 / 89;
}
.l-footer-info__logo--sp {
  display: none;
}
.l-footer-info__logo img {
  width: 100%;
  height: auto;
}
.l-footer-info-cont__name {
  font-size: 2.0rem;
  font-weight: 700;
  margin-bottom: 15px;  
}
.l-footer-info-cont__add,
.l-footer-info-cont__license {
  margin-bottom: 5px;
  font-size: 1.6rem;
}
.l-footer-info-cont * {
  line-height: 1.5;
}
.l-footer-info-cont__tel span {
  font-size: 1.6rem;
  display: inline-block;
  margin-right: 5px;
}
.l-footer-info-cont__tel a {
  font-size: 2.4rem;
  margin-right: 10px;
}
@media screen and (max-width: 1600px) {
  .l-footer-info__logo {
    width: 380px;
  }
}
@media screen and (max-width: 1400px) {
  .l-footer-info__logo {
    width: 350px;
  }
}
@media screen and (max-width: 1300px) {
  .l-footer-info__logo {
    width: 330px;
  }
}
@media screen and (max-width: 1200px) {
  .l-footer-info__logo {
    width: 280px;
  }
  .l-footer-info-cont__name {
    font-size: 1.8rem;
  }
  .l-footer-info-cont__add,
  .l-footer-info-cont__license {
    font-size: 1.4rem;
  }
  .l-footer-info-cont__tel span {
    font-size: 1.4rem;
  }
  .l-footer-info-cont__tel a {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 960px) {
  .l-footer-info-cont {
    margin-bottom: 30px;
  }
  .l-footer-info__logo {
    margin: 0 auto;
  }
  .l-footer-info__logo--pc {
    display: none;
  }
  .l-footer-info__logo--sp {
    display: block;
  }
  .l-footer-info-cont {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-info__logo {
    width: 225px;
  }
  .l-footer-info-cont__tel a {
    font-size: 2.0rem;
  }
}

.l-footer-utility {
  display: flex;
  justify-content: flex-end;
  flex-direction: row-reverse;
  align-items: center;
  margin-bottom: 70px;
}
.l-footer-utility__list {
  display: flex;
  justify-content: space-between;
  column-gap: 15px;
  margin-right: 20px;
  margin-left: auto;
}
.l-footer-utility__list a {
  display: block;
  padding-left: 25px;
  font-weight: 700;
  font-size: 1.6rem;
  color: var( --c-tertiary );
  line-height: 1.0;
  position: relative;
}
.l-footer-utility__btn--company a:before,
.l-footer-utility__btn--faq a:before {
  position: absolute;
  content: "";
  width: 17px;
  height: 16px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-size: 17px auto;
}
.l-footer-utility__btn--company a:before {
  background: url("../images/icon-company-b.png") no-repeat 0 center / 17px auto;
}
.l-footer-utility__btn--faq a:before {
  background: url("../images/icon-faq-b.png") no-repeat 0 center / 17px auto;
}
.l-footer-utility__btn--company a:hover:before,
.l-footer-utility__btn--faq a:hover:before {
  animation: slideIcon01 0.5s ease forwards;
}
.l-footer-utility__cta {
  display: flex;
  justify-content: flex-end; 
}
.l-footer-utility__cta-btn {
  margin-right: 10px;
  white-space: nowrap;
}
.l-footer-utility__cta-btn:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1200px) {
  .l-footer-utility {
    display: block;
    margin-bottom: 50px;
  }
  .l-footer-utility__list {
    justify-content: flex-end;
    margin-right: 0;
  }
  .l-footer-utility__cta {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 960px) {
  .l-footer-utility {
    display: block;
    margin-bottom: 50px;
  }
  .l-footer-utility__list {
    justify-content: center;
    margin-right: 0;
  }
  .l-footer-utility__cta {
    justify-content: center;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-utility__list a {
    font-size: var( --c-fontsize );
  }
  .l-footer-utility__cta {
    column-gap: 5px;
  }
  .l-footer-utility__cta-btn {
    margin-right: 0;
  }
}

.l-footer-global {
  display: flex;
  justify-content: flex-end;
}
.l-footer-global--sp {
  display: none;    
}
.l-footer-global__body:first-child {
  margin-left: 0;
}
.l-footer-global__body {
  margin-left: 80px;
}
.l-footer-global__item a {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  padding-left: 25px;
  position: relative;
  color: var( --c-tertiary );
  line-height: 1.2;
  margin-bottom: 20px;
}
.l-footer-global__item a:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background: var( --c-tertiary );
  top: 10px;
  left: 0;
  transform: translateY( -50% );
}
.l-footer-global__item a:hover:before {
  animation: slideIcon02 0.5s ease forwards;
}
.l-footer-global__item a:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border: 1px solid #fff;
  border-right: none;
  border-top: none;  
  top: 10px;
  left: 4px;
  transform: translateY( -50% ) rotate( -135deg );
}
.l-footer-global__item a:hover:after {
  animation: slideIcon02 0.5s ease forwards;
}
.l-footer-global__list ul {
  margin-bottom: 30px;  
}
.l-footer-global__list ul .l-footer-global__item a {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  padding-left: 20px;
  position: relative;
  color: var( --c-tertiary );
  line-height: 1.2;
  margin-bottom: 10px;  
  margin-left: 20px;
}
.l-footer-global__list ul .l-footer-global__item a:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  border-radius: 0;
  background: var( --c-tertiary );
  top: 10px;
  left: 0;
}
.l-footer-global__list ul .l-footer-global__item a:hover:before {
  animation: slideIcon03 0.5s ease forwards;
}
.l-footer-global__list ul .l-footer-global__item a:after {
  display: none;
}
@media screen and (max-width: 1700px) {
  .l-footer-global__body {
    margin-left: 50px;
  }
}
@media screen and (max-width: 1400px) {
  .l-footer-global__body {
    margin-left: 30px;
  }
  .l-footer-global__item a {
    font-size: 1.6rem;
    padding-left: 20px;
  }
}
@media screen and (max-width: 960px) {
  .l-footer-global--pc {
    display: none;    
  }
  .l-footer-global--sp {
    display: block;    
  }
  .l-footer-global__body {
    margin-left: 0;
  }
  .l-footer-global__item--col1 {
    width: 100%;
  }
  .l-footer-global__item--col2 {
    width: 48.5%;
  }
  .l-footer-global__item--col3 {
    width: 20%;
  }
  .l-footer-global__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;  
  }
  .l-footer-global__list ul {
    display: block;  
  }
}
@media screen and (max-width: 767px) {
  .l-footer-global__item a {
    font-size: var( --c-fontsize );
    margin-bottom: 15px;
  }
  .l-footer-global__list ul {
    margin-bottom: 20px;  
  }
  .l-footer-global__list ul .l-footer-global__item a {
    font-size: var( --c-fontsize );
  }
}
@media screen and (max-width: 600px) {
  .l-footer-global__item--col2 {
    width: 100%;
  }
  .l-footer-global__item--col3 {
    width: 48.5%;
  }
  .l-footer-global__item a {
    margin-bottom: 15px;
  }
  .l-footer-global__item a:before {
    top: 8px;
  }
  .l-footer-global__item a:after {
    top: 8px;
  }
  .l-footer-global__list ul .l-footer-global__item a:before {
    top: 7px;
  }
}

.l-footer__copy {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.l-footer__copy * {
  font-size: 1.4rem;
}
@media screen and (max-width: 1200px) {
  .l-footer__copy {
    display: block;
    justify-content: space-between;
    align-items: flex-end;
  }
  .l-footer__copy * {
    font-size: 1.2rem;
  }
  .l-footer__copy p:first-child {
    margin-bottom: 20px;
  }
}


/* =================================================
Object
================================================= */

/*---------- component ----------*/
/*--wrap--*/
.c-cont__f {
  margin: 0;
}
.c-cont__ll {
  margin: 0 var(--layout_margin-inline);
}
.c-cont__l {
  max-width: 1720px;
  margin: 0 auto;
}
.c-cont__m {
  max-width: 1520px;
  margin: 0 auto;
}
.c-cont__s {
  max-width: 1200px;
  margin: 0 auto;
}
.c-cont {
  padding-top: 150px;
  padding-bottom: 200px;
  position: relative;
}
@media screen and (max-width: 1920px) {
  .c-cont__ll,
  .c-cont__l {
    margin: 0 var(--layout_margin-inline);
  }
}
@media screen and (max-width: 1720px) {
  .c-cont__m {
    margin: 0 var(--layout_margin-inline);
  }
}
@media screen and (max-width: 1300px) {
  .c-cont__s {
    margin: 0 var(--layout_margin-inline);
  }
}
@media screen and (max-width: 960px) {
  .c-cont__ll,
  .c-cont__l,
  .c-cont__m {
    margin: 0 var(--layout_margin-inline);
  }
}
@media screen and (max-width: 767px) {
  .c-cont__ll,
  .c-cont__l,
  .c-cont__m,
  .c-cont__s {
    margin: 0 var(--layout_margin-inline);
  }
  .c-cont {
    padding-top: 70px;
    padding-bottom: 100px;
  }
}

/*----- Title -----*/
/*--c-page-ttl--*/
.c-page-ttl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding-top: 200px;
  height: 500px;
}
.c-page-ttl__inner {
  width: 100%;
}
.c-page-ttl__txt {
  color: var(--c-primary);
  font-size: 6rem;
  line-height: 1.2;
  font-weight: 700;
  margin-left: -10px;
  opacity: 0;
  transform : translate(0, -10px);
  animation: translate 1.0s ease-in-out 1.0s forwards;
  z-index: 1;
}
.c-page-ttl__en {
  color: #b9ada7;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  opacity: 0;
  letter-spacing: 0.75em;
  transform : translate(0, -10px);
  animation: translate 1.0s ease-in-out 1.0s forwards;
  text-transform: uppercase;
  z-index: 1;
  margin-bottom: 10px;
}
@media screen and (max-width: 1500px) {
  .c-page-ttl {
    height: 400px;
  }
  .c-page-ttl__txt {
    font-size: 5.5rem;
  }
}
@media screen and (max-width: 1300px) {
  .c-page-ttl {
    height: 400px;
  }
  .c-page-ttl__txt {
    font-size: 4.5rem;
  }
  .c-page-ttl__en {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1200px) {
  .c-page-ttl {
    height: 330px;
    padding-top: 150px;
  }
  .c-page-ttl__txt {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 960px) {
  .c-page-ttl {
    height: 300px;
    padding-top: 120px;
  }
  .c-page-ttl__txt {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-page-ttl {
    height: 250px;
    padding-top: 80px;
  }
  .c-page-ttl__txt {
    font-size: 2.5rem;
    margin-left: -5px;
	  line-height: 1.4;
  }
  .c-page-ttl__en {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
}


.c-page__object {
  width: 100%;
  height: 100vh;
  height: 100svh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.c-page__obj {
  position: absolute;
  aspect-ratio: 1 / 1.18;
  animation: mvOpacity 6s ease-in-out infinite;
  opacity: 1;
}
.c-page__obj--01 {
  width: 35.8%;
  bottom: 0;
  left: -18%;
  background: url("../images/mv-obj01.png") no-repeat 0 0 / 100% auto;
}
.c-page__obj--02 {
  width: 22%;
  bottom: 5%;
  left: 12.5%;
  background: url("../images/mv-obj02.png") no-repeat 0 0 / 100% auto;
}
.c-page__obj--03 {
  width: 13.5%;
  top: -3%;
  left: 20%;
  background: url("../images/mv-obj03.png") no-repeat 0 0 / 100% auto;
}
.c-page__obj--04 {
  width: 22.5%;
  top: -3%;
  right: 25.5%;
  background: url("../images/mv-obj04.png") no-repeat 0 0 / 100% auto;
}
.c-page__obj--05 {
  width: 50%;
  bottom: 0;
  right: -20%;
  background: url("../images/mv-obj05.png") no-repeat 0 0 / 100% auto;
}
.c-page__obj--01 { animation-delay: 0s; }
.c-page__obj--02 { animation-delay: 1.2s; }
.c-page__obj--03 { animation-delay: 2.4s; }
.c-page__obj--04 { animation-delay: 3.6s; }
.c-page__obj--05 { animation-delay: 4.8s; }
@media screen and (max-width: 767px) {
  .c-page__obj--01 {
    width: 45.8%;
    bottom: 155px;
    left: -6%;
  }
  .c-page__obj--02 {
    width: 22%;
    bottom: 6%;
    left: 29.5%;
  }
  .c-page__obj--03 {
    width: 26.5%;
    top: 14%;
    left: 3%;
  }
  .c-page__obj--04 {
    width: 33.5%;
    top: -3%;
    right: 25.5%;
  }
  .c-page__obj--05 {
    width: 50%;
    bottom: 0;
    right: -20%;
  }
}

/* Section Title */
.c-sec-ttl01 {
	margin-bottom: 0;
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.2;
}
.c-sec-en01 {
	margin-bottom: 20px;
  font-size: 10.0rem;
  color: var( --c-primary );
  line-height: 1.2;
}
@media screen and (max-width: 1500px) {
  .c-sec-en01 {
    font-size: 8.0rem;
  }
}
@media screen and (max-width: 1300px) {
  .c-sec-en01 {
    font-size: 7.0rem;
  }
}
@media screen and (max-width: 960px) {
  .c-sec-ttl01 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-sec-ttl01 {
    font-size: var( --c-fontsize );
  }
  .c-sec-en01 {
    font-size: 3.5rem;
  }
}

.c-sec-ttl02 {
	margin-bottom: 50px;
  font-size: 5.0rem;
  font-weight: 700;
  line-height: 1.2;
}
.c-sec-en02 {
	margin-bottom: 30px;
  font-size: 1.6rem;
  color: var( --c-primary );
  line-height: 1.2;
}
@media screen and (max-width: 1500px) {
  .c-sec-ttl02 {
    margin-bottom: 30px;
    font-size: 4.0rem;
  }
  .c-sec-en02 {
    margin-bottom: 20px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1300px) {
  .c-sec-ttl02 {
    margin-bottom: 30px;
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 960px) {
  .c-sec-ttl02 {
    margin-bottom: 20px;
  }
  .c-sec-en02 {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-sec-ttl02 {
    font-size: 2.5rem;
  }
}

.c-sec-ttl03 {
	margin-bottom: var( --cont_margin-block03 );
  font-size: 3.4rem;
  font-weight: 700;
  color: var( --c-tertiary );
}
@media screen and (max-width: 1500px) {
  .c-sec-ttl03 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-sec-ttl03 {
    font-size: 2.2rem;
  }
}

.c-sec-ttl04 {
	margin-bottom: var( --cont_margin-block03 );
  font-size: 4.4rem;
  font-weight: 700;
  color: var( --c-tertiary );
}
@media screen and (max-width: 1300px) {
  .c-sec-ttl04 {
    font-size: 4.0rem;
  }
}
@media screen and (max-width: 960px) {
  .c-sec-ttl04 {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-sec-ttl04 {
    font-size: 2.5rem;
  }
}

.c-sec-ttl05 {
	margin-bottom: 5px;
  font-size: 3.0rem;
  font-weight: 700;
  color: var( --c-tertiary );
}
@media screen and (max-width: 1300px) {
  .c-sec-ttl05 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 960px) {
  .c-sec-ttl05 {
  }
}
@media screen and (max-width: 767px) {
  .c-sec-ttl05 {
    font-size: 2.0rem;
  }
}

.c-sec-ttl06 {
	margin-bottom: 5px;
  font-size: 4.2rem;
  font-weight: 700;
	margin-bottom: var( --cont_margin-block02 );
}
@media screen and (max-width: 1300px) {
  .c-sec-ttl06 {
    font-size: 4.0rem;
  }
}
@media screen and (max-width: 960px) {
  .c-sec-ttl06 {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-sec-ttl06 {
    font-size: 2.6rem;
  }
}

.c-sec-ttl07 {
  font-size: 3.0rem;
  font-weight: 700;
  padding: 40px 0 50px;
  position: relative;
  line-height: 1.4;
}
.c-sec-ttl07:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 3px;
  top: 0;
  left: 0;
  background: var( --c-primary );
}
@media screen and (max-width: 1300px) {
  .c-sec-ttl07 {
    font-size: 2.6rem;
    padding: 30px 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .c-sec-ttl07 {
    font-size: 2.0rem;
    padding: 15px 0 25px;
  }
}
.c-sec-ttl07__en {
  font-size: 1.2rem;
  color: var( --c-primary );
  line-height: 1.2;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .c-sec-ttl07__en {
    font-size: 1.1rem;
    margin-left: 0;
    display: block;
    margin-top: 5px;
  }
}

.c-sec-ttl08 {
	margin-bottom: 5px;
  font-size: 2.6rem;
  font-weight: 700;
  color: var( --c-tertiary );
}
@media screen and (max-width: 1300px) {
  .c-sec-ttl08 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-sec-ttl08 {
    font-size: 2.0rem;
  }
}

.c-sec-ttl09 {
  margin-bottom: 20px;
  font-size: 2.6rem;
  color: var( --c-primary );
  font-weight: 700;
}
.c-sec-ttl09.c-sec-ttl09--last {
  color: var( --c-quaternary );
}
@media screen and (max-width: 767px) {
  .c-sec-ttl09 {
    margin-bottom: 10px;
    font-size: 2.0rem;
  }
}


.c-sec-en03 {
	margin-bottom: 10px;
  font-size: 2.0rem;
  color: var( --c-primary );
  line-height: 1.2;
}
@media screen and (max-width: 1500px) {
  .c-sec-en03 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-sec-en03 {
    margin-bottom: 5px;
    font-size: 1.2rem;
  }
}

.c-catch01 {  
  line-height: var( --c-catch );
}

.c-sec-txt01 {
	margin-bottom: 70px;
  font-size: var( --c-fontsize );
}
@media screen and (max-width: 960px) {
  .c-sec-txt01 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .c-sec-txt01 {
    margin-bottom: 30px;
  }
}
.c-sec-txt02 {
	margin-bottom: 50px;
  font-size: 2.0rem;
}
@media screen and (max-width: 1300px) {
  .c-sec-txt02 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 960px) {
  .c-sec-txt02 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-sec-txt02 {
    font-size: var( --c-fontsize );
  }
}
.c-sec-lead02 {
	margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .c-sec-lead02 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-sec-lead02 {
    margin-bottom: 10px;
  }
}

.c-cont-point {
  margin-bottom: var(--cont_margin-block02);
}
.c-cont-point__inner {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  counter-reset: listnum;
}
.c-cont-point__list {
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  padding: 20px 50px;
  position: relative;
  line-height: 1.2;
  margin: 0 20px 20px 0;
  counter-increment: num;
}
.c-cont-point__list:before {
  position: absolute;
  content: counter(num, decimal-leading-zero);
  font-size: 1.4rem;
  color: var(--c-primary);
  line-height: 1;
  top: 15px;
  left: 25px;
}
@media screen and (max-width: 960px) {
  .c-cont-point__list {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-cont-point__list {
    padding: 15px 30px 15px 50px;
    margin: 0 10px 10px 0;
    font-size: var(--c-fontsize);
  }
  .c-cont-point__list:before {
    font-size: 1.2rem;
    top: 12px;
  }
}


/*-- c-cont-merit --*/
.c-cont-merit {
  margin-bottom: var(--cont_margin-block);
}
.c-cont-merit__inner {
  display: flex;
  justify-content: space-between;
  column-gap: 50px;
}
.c-cont-merit-cont {
  border-radius: 10px;
  padding: 110px 40px 40px;
  width: calc((100% - 25px) / 2);
  flex: 1 1 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-cont-merit-cont__merit {
  background: #f7fef1;
}
.c-cont-merit-cont__demerit {
  background: #fcf5f2;
}
.c-cont-merit-ttl {
  padding: 0 0 40px 35px;
  position: absolute;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  top: 40px;
  left: 40px;
}
.c-cont-merit-ttl:before {
  position: absolute;
  content: "〇";
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1;
  top: 0;
  left: 0;
}
.c-cont-merit-ttl__en {
  font-size: 1.2rem;
  color: var(--c-primary);
  line-height: 1.2;
  margin-left: 15px;
}
.c-cont-merit-cont__demerit .c-cont-merit-ttl:before {
  content: "✕";
  color: var(--c-quaternary);
  font-size: 3rem;
  top: -2px;
}
.c-cont-merit-cont__demerit .c-cont-merit-ttl__en {
  color: var(--c-quaternary);
}
.c-cont-merit-list {
  min-height: 250px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.c-cont-merit-list:before {
  position: absolute;
  content: "〇";
  top: 50%;
  left: 50%;
  font-size: 25rem;
  color: #dcf4c9;
  line-height: 1;
  transform: translate(-50%, -50%);
  font-weight: 700;
}
.c-cont-merit-cont__demerit .c-cont-merit-list:before {
  font-size: 26rem;
  content: "✕";
  color: #f6e7d6;
}
.c-cont-merit-ul {
  padding: 0 0 15px 15px;
}
.c-cont-merit-ul li {
  padding: 0 0 5px 20px;
  position: relative;
}
.c-cont-merit-ul li:last-child {
  padding: 0 0 0 20px;
}
.c-cont-merit-ul li:before {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  background: var(--c-primary);
  top: 14px;
  left: 0;
  border-radius: 9px;
}
.c-cont-merit-cont__demerit .c-cont-merit-ul li:before {
  background: var(--c-quaternary);
}
@media screen and (max-width: 1300px) {
  .c-cont-merit__inner {
    column-gap: 30px;
  }
  .c-cont-merit-cont {
    padding: 100px 40px 40px;
  }
  .c-cont-merit-ttl {
    padding-left: 30px;
    font-size: 2.2rem;
  }
  .c-cont-merit-ttl:before {
    font-size: 2.2rem;
  }
  .c-cont-merit-cont__demerit .c-cont-merit-ttl:before {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 960px) {
  .c-cont-merit-cont {
    padding: 80px 30px 30px;
  }
  .c-cont-merit-ttl {
    top: 30px;
    left: 30px;
  }
  .c-cont-merit-ul li {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-cont-merit__inner {
    display: block;
  }
  .c-cont-merit-cont {
    padding: 70px 30px 20px 20px;
    width: 100%;
    margin-bottom: 20px;
  }
  .c-cont-merit-ttl {
    padding-left: 25px;
    font-size: 1.8rem;
    top: 30px;
    left: 30px;
  }
  .c-cont-merit-ttl:before {
    font-size: 2rem;
  }
  .c-cont-merit-cont__demerit .c-cont-merit-ttl:before {
    font-size: 2.2rem;
  }
  .c-cont-merit-ttl__en {
    margin-left: 10px;
  }
  .c-cont-merit-list {
    min-height: 200px;
  }
  .c-cont-merit-list:before {
    font-size: 20rem;
  }
  .c-cont-merit-cont__demerit .c-cont-merit-list:before {
    font-size: 21rem;
  }
  .c-cont-merit-ul li {
    padding-left: 15px;
    font-size: 1.6rem;
  }
  .c-cont-merit-ul li:last-child {
    padding: 0 0 0 15px;
  }
  .c-cont-merit-ul li:before {
    width: 7px;
    height: 7px;
    top: 10px;
  }
}

.c-cont-list {
  background: var(--c-secondary);
  border-radius: 10px;
  padding: 50px;
}
.c-cont-list-box {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
}
.c-cont-list-box:has(.c-cont-list-box__img) {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.c-cont-list-box:last-child {
  margin-bottom: 0;
}
.c-cont-list-box__num {
  height: 20px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  width: fit-content;
  background: var(--c-primary);
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  border-radius: 10px;
  margin: 0 0 10px;
  z-index: 1;
}
.c-cont-list-box__lead {
  margin-bottom: 30px;  
}
.c-cont-list-box__txt p {
  margin-bottom: 10px;
}
.c-cont-list-box__txt span {
  font-weight: 700;
}
.c-cont-list-box__txt .c-sec-list {
  margin-bottom: 10px;
}
.c-cont-list-box-example {
  background: #dcf4c9;
  min-height: 50px;
  border-radius: 25px;
  padding: 5px 30px 5px 60px;
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  margin: 5px 0;
  line-height: 1.2;
}
.c-cont-list-box-example:before {
  position: absolute;
  content: "例";
  width: 42px;
  height: 42px;
  background: var(--c-primary);
  border-radius: 44px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  top: 4px;
  left: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-cont-list-box-example__ttl {
  color: var(--c-primary);
  font-weight: 700;
  margin-right: 20px;
}
.c-cont-list-box-example02 {
  color: var(--c-primary);
  background: #dcf4c9;
  min-height: 50px;
  border-radius: 50px;
  padding: 10px 30px;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: fit-content;
  line-height: 1.2;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.c-cont-list-box-example02 span {
  font-size: 1.6rem;
}
.c-cont-list-box__notice {
  font-size: 1.8rem;
}
.c-cont-list-box__notice02 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.c-cont-list-box__img {
  width: 360px;
}
.c-cont-list-box__img img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.c-cont-list-box__info {  
  width: calc(100% - 410px);
}
@media screen and (max-width: 1300px) {
  .c-cont-list {
    padding: 30px;
  }
  .c-cont-list-box-example {
    padding-left: 60px;
  }
}
@media screen and (max-width: 1200px) {
  .c-cont-list-box-example {
    display: block;
  }
  .c-cont-list-box__info {
    width: calc(100% - 350px);
    padding: 10px 0 10px 10px;
  }
  .c-cont-list-box__img {
    width: 320px;
  }
}
@media screen and (max-width: 960px) {
  .c-cont-list-box {
    display: block;
    padding: 30px;
  }
  .c-cont-list-box:has(.c-cont-list-box__img) {
    display: block;
    padding: 30px;
  }
  .c-cont-list-box__info {
    width: 100%;
    padding: 0 0 10px;
  }
  .c-cont-list-box__img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-cont-list {
    padding: 20px;
  }
  .c-cont-list-box {
    padding: 20px;
  }
  .c-cont-list-box:has(.c-cont-list-box__img) {
    padding: 20px;
  }
  .c-cont-list-box-example {
    display: block;
    padding: 10px 30px 10px 50px;
	border-radius: 10px;
  }
  .c-cont-list-box-example:before {
    width: 38px;
    height: 38px;
	border-radius: 10px;
    font-size: 1.4rem;
  }
  .c-cont-list-box-example02 {
    font-size: 1.6rem;
  }
  .c-cont-list-box-example02 span {
    font-size: 1.4rem;
  }
  .c-cont-list-box__info {
    padding: 0 0 10px;
  }
  .c-cont-list-box__img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 20px;
  }
  .c-cont-list-box__notice {
    font-size: 1.4rem;
  }
  .c-cont-list-box__notice02 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}

.c-cont-list02 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.c-cont-list02-box {
  border-radius: 10px;
  background: var(--c-secondary);
  padding: 30px;
  width: calc((100% - 30px) / 2);
}
.c-cont-list02-box__num {
  height: 20px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  width: fit-content;
  background: var(--c-primary);
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  border-radius: 10px;
  margin: 0 0 10px;
  z-index: 1;
}
@media screen and (max-width: 1300px) {
  .c-cont-list02 {
    gap: 20px;
  }
  .c-cont-list02-box {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 960px) {
  .c-cont-list02 {
    display: block;
  }
  .c-cont-list02-box {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-cont-list02-box {
    padding: 20px;
  }
}

.c-sec-box01 {
  background: var(--c-secondary);
  padding: 50px;
  border-radius: 10px;
}
.c-sec-box01 .c-sec-list {
  margin-bottom: 0;
}
.c-sec-box01 .c-sec-list li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1300px) {
  .c-sec-box01 {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-sec-box01 {
    padding: 20px;
  }
}

/*-- c-cont-flow --*/
.c-cont-flow-list {
  border-radius: 10px;
  background: var(--c-secondary);
  padding: 50px;
  margin-bottom: 70px;
  position: relative;
}
.c-cont-flow-list:has(.c-cont-flow-list__img) {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.c-cont-flow-list:before,
.c-cont-flow-list:after {
  position: absolute;
  content: "";
  width: 30px;
  height: 5px;
  top: -37px;
  background: var(--c-primary);
  border-radius: 50px;
}
.c-cont-flow-list:before {
  left: 50%;
  transform: translateX(-24px) rotate(45deg);
}
.c-cont-flow-list:after {
  right: 50%;
  transform: translateX(24px) rotate(-45deg);
}
.c-cont-flow-list:first-child:before,
.c-cont-flow-list:first-child:after {
  display: none;
}
.c-cont-flow-list:last-child:before,
.c-cont-flow-list:last-child:after {
  background: var(--c-quaternary);
}
.c-cont-flow-list:last-child {
  background: #fdf8f2;
}
.c-cont-flow-list__info {
  width: 100%;
  padding: 40px 50px 0;

}
.c-cont-flow-list:has(.c-cont-flow-list__img) .c-cont-flow-list__info {
  width: calc(100% - 410px);
}
.c-cont-flow-list__num {
  height: 20px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  width: fit-content;
  background: var(--c-primary);
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  border-radius: 10px;
  margin: -50px 0 30px -50px;
  z-index: 1;
  position: relative;
}
.c-cont-flow-list:last-child .c-cont-flow-list__num {
  background: var(--c-quaternary);
}
.c-cont-flow-list__img {
  width: 360px;
}
.c-cont-flow-list__img img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
@media screen and (max-width: 1500px) {
  .c-cont-flow-list__info {
    padding: 40px 0 0 20px;
  }
  .c-cont-flow-list__num {
    margin: -50px 0 30px -30px;
  }
}
@media screen and (max-width: 1300px) {
  .c-cont-flow-list__info {
    padding: 30px 0 0 10px;
  }
  .c-cont-flow-list__num {
    margin: -40px 0 30px -20px;
  }
}
@media screen and (max-width: 1200px) {
  .c-cont-flow-list {
    padding: 30px;
  }
  .c-cont-flow-list__info {
    width: calc(100% - 350px);
    padding: 10px 0 10px 10px;
  }
  .c-cont-flow-list__num {
    margin: 0 0 20px -10px;
  }
  .c-cont-flow-list__img {
    width: 320px;
  }
}
@media screen and (max-width: 960px) {
  .c-cont-flow-list {
    display: block;
    padding: 30px;
  }
  .c-cont-flow-list:has(.c-cont-flow-list__img) {
    display: block;
  }
  .c-cont-flow-list__info {
    width: 100%;
    padding: 0 0 10px;
  }
  .c-cont-flow-list:has(.c-cont-flow-list__img) .c-cont-flow-list__info {
    width: 100%;
  }
  .c-cont-flow-list__num {
    margin: 0 0 10px;
  }
  .c-cont-flow-list__img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-cont-flow-list {
    padding: 20px;
  }
  .c-cont-flow-list__info {
    padding: 0 0 10px;
  }
  .c-cont-flow-list__num {
    margin: 0 0 10px;
  }
  .c-cont-flow-list__img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 20px;
  }
}

.c-cont-flow02-list {
  border-radius: 10px;
  background: var(--c-secondary);
  padding: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 70px;
  position: relative;
}
.c-cont-flow02-list:before,
.c-cont-flow02-list:after {
  position: absolute;
  content: "";
  width: 30px;
  height: 5px;
  top: -37px;
  background: var(--c-primary);
  border-radius: 50px;
}
.c-cont-flow02-list:before {
  left: 50%;
  transform: translateX(-24px) rotate(45deg);
}
.c-cont-flow02-list:after {
  right: 50%;
  transform: translateX(24px) rotate(-45deg);
}
.c-cont-flow02-list:first-child:before,
.c-cont-flow02-list:first-child:after {
  display: none;
}
.c-cont-flow02-list__num {
  height: 20px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  width: 85px;
  background: var(--c-primary);
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  border-radius: 10px;
  margin: 0 40px 0 0;
  z-index: 1;
  position: relative;
}
.c-cont-flow02-list__ttl {
  width: 300px;
}
.c-cont-flow02-list__txt {
  width: calc(100% - 435px);
}
@media screen and (max-width: 1300px) {
  .c-cont-flow02-list {
    padding: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .c-cont-flow02-list__num {
    margin-right: 20px;
  }
  .c-cont-flow02-list__ttl {
    width: 260px;
  }
  .c-cont-flow02-list__txt {
    width: calc(100% - 365px);
  }
}
@media screen and (max-width: 960px) {
  .c-cont-flow02-list {
    display: block;
    padding: 30px;
  }
  .c-cont-flow02-list__num {
    margin: 0 0 10px;
  }
  .c-cont-flow02-list__ttl,
  .c-cont-flow02-list__txt {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .c-cont-flow02-list {
    padding: 20px;
  }
}


.c-cont-flow02-list-how {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 5px;
}
.c-cont-flow02-list-how__label {
  border: 1px solid var( --c-tertiary );
  border-radius: 5px;
  padding: 2px 10px;
  font-size: 2.0rem;
  color: var( --c-tertiary );
  margin-right: 15px;
  line-height: 1.2;
  width: 110px;
  font-weight: 700;
  margin-top: 5px;
}
.c-cont-flow02-list-how__txt {
  width: calc( 100% - 125px );
}
@media screen and (max-width: 767px) {
  .c-cont-flow02-list-how__label {
    font-size: 1.4rem;
    width: 85px;
    margin-top: 2px;
  }
}
.c-cont-flow02-list-how__txt {
  width: calc( 100% - 100px );
}


.c-cont-recommend {
  border-radius: 10px;
  background: var(--c-secondary);
  position: relative;
  padding: 1px 50px 50px;
}
.c-cont-recommend__ttl {
  font-size: 3.6rem;
  font-weight: 700;
  padding: 0 50px;
  position: relative;
  width: fit-content;
  margin: -25px auto 50px;
  color: var(--c-primary);
  line-height: 1.4;
  text-align: center;
}
.c-cont-recommend__ttl--s {
  font-size: 2.8rem;
  margin: -20px auto 50px;
}
.c-cont-recommend__ttl:before,
.c-cont-recommend__ttl:after {
  position: absolute;
  content: "";
  width: 3px;
  height: 100%;
  background: var(--c-primary);
  top: 0;
}
.c-cont-recommend__ttl:before {
  transform: rotate(-30deg);
  left: 0;
}
.c-cont-recommend__ttl:after {
  transform: rotate(30deg);
  right: 0;
}
.c-cont-recommend__inner {
  display: flex;
  justify-content: space-between;
  column-gap: 50px;
}
.c-cont-recommend__inner02 {
  display: flex;
  justify-content: center;
}
.c-cont-recommend__cont {
  background: #fff;
  border-radius: 10px;
  width: calc((100% - 50px) / 2);
  padding: 0 60px 60px;
  position: relative;
}
.c-cont-recommend__cont:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #f7fef1;
  font-size: 7.6rem;
  line-height: 1;
}
.c-cont-recommend__cont--buyout:before {
  content: "BUYOUT";
}
.c-cont-recommend__cont--brokerage:before {
  content: "BROKERAGE";
}
.c-cont-recommend__label {
  background: var(--c-primary);
  border-radius: 50px;
  padding: 10px 50px;
  color: #fff;
  font-weight: 700;
  margin: -22px auto 50px;
  width: fit-content;
  line-height: 1;
}
.c-cont-recommend__img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (max-width: 1500px) {
  .c-cont-recommend {
    padding: 1px 30px 30px;
  }
  .c-cont-recommend__inner {
    column-gap: 30px;
  }
  .c-cont-recommend__cont {
    width: calc((100% - 30px) / 2);
    padding: 0 40px 40px;
  }
}
@media screen and (max-width: 1300px) {
  .c-cont-recommend {
    padding: 1px 30px 30px;
  }
  .c-cont-recommend__ttl {
    font-size: 3.2rem;
    padding: 0 30px;
  }
  .c-cont-recommend__ttl--s {
    font-size: 2.6rem;
  }
  .c-cont-recommend__inner {
    column-gap: 30px;
  }
  .c-cont-recommend__cont {
    width: calc((100% - 30px) / 2);
    padding: 0 40px 40px;
  }
  .c-cont-recommend__label {
    margin: -22px auto 30px;
    font-size: 1.8rem;
    padding: 10px 20px;
  }
  .c-cont-recommend__txt {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 960px) {
  .c-cont-recommend__ttl {
    font-size: 2.8rem;
    margin: -20px auto 50px;
  }
  .c-cont-recommend__ttl--s {
    font-size: 2.4rem;
    margin: -18px auto 50px;
  }
  .c-cont-recommend__inner {
    column-gap: 20px;
  }
  .c-cont-recommend__cont {
    width: calc((100% - 20px) / 2);
    padding: 0 20px 20px;
  }
  .c-cont-recommend__cont:before {
    font-size: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-cont-recommend {
    padding: 1px 20px 20px;
  }
  .c-cont-recommend__ttl {
    font-size: 2.2rem;
    padding: 0 30px;
    margin: -15px auto 50px;
  }
  .c-cont-recommend__ttl--s {
    font-size: 1.8rem;
    margin: -15px auto 30px;
  }
  .c-cont-recommend__inner {
    column-gap: 20px;
  }
  .c-cont-recommend__cont {
    width: calc((100% - 20px) / 2);
    padding: 0 20px 20px;
  }
  .c-cont-recommend__cont:before {
    font-size: 4rem;
  }
  .c-cont-recommend__label {
    padding: 10px 15px;
    margin: -17px auto 10px;
    font-size: 1.4rem;
  }
  .c-cont-recommend__txt {
    font-size: 1.6rem;
  }
  .c-cont-recommend__img {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 600px) {
  .c-cont-recommend__ttl {
    font-size: 1.6rem;
    padding: 0 30px;
    margin: -12px auto 40px;
  }
  .c-cont-recommend__ttl--s {
    margin: -12px auto 20px;
  }
  .c-cont-recommend__inner {
    display: block;
  }
  .c-cont-recommend__cont {
    width: 100%;
    padding: 1px 20px 20px;
    margin-bottom: 30px;
  }
  .c-cont-recommend__cont:last-child {
    margin-bottom: 0;
  }
  .c-cont-recommend__label {
    margin: -20px auto 10px;
    font-size: 1.5rem;
  }
}

/* section */
.c-section {
  padding-bottom: var(--layout_margin-block);
}
.c-section:first-child {
  padding-top: var(--layout_margin-block);
}
.c-section.-bg-blue {
  padding-top: var(--layout_margin-block);
  background: #e7f8fe;
}

/* table */
.c-table {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid var( --c-border );
  margin-bottom: var( --cont_margin-block02 );
}
.c-table__ttl {
  width: 25%;
  padding: 30px 20px;
  border-top: 1px solid var( --c-border );
  font-size: 2.0rem;
}
.c-table__txt {
  width: 75%;  
  padding: 30px 20px 30px 0;
  border-top: 1px solid var( --c-border );
  font-size: 2.0rem;
}
@media screen and (max-width: 960px) {
  .c-table__ttl {
    padding: 30px 20px 30px 0;
    border-top: 1px solid var( --c-border );
  }
  .c-table__txt {
    padding: 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .c-table__ttl {
    font-size: var( --c-fontsize );
  }
  .c-table__txt {
    font-size: var( --c-fontsize );
  }
}
@media screen and (max-width: 600px) {
  .c-table__ttl {
    width: 100%;
    padding: 20px 0;
    font-weight: 700;
  }
  .c-table__txt {
    width: 100%;  
    padding: 20px 0;
  }
}

.c-table02 {
  width: 100%;
  border-bottom: 1px solid var(--c-border);
  border-collapse: collapse;
  border-spacing: 0;
}
.c-table02 th,
.c-table02 td {
  border-top: 1px solid var(--c-border);
  text-align: left;
  padding: 30px;
}
.c-table02 th {
  background: #fdf7f4;
  font-weight: 700;
  text-align: center;
}
.c-table02 td {
  background: #fff;
}
.c-table02 td.c-table02__cen {
  text-align: center;  
}
@media screen and (max-width: 1300px) {
  .c-table02 th,
  .c-table02 td {
    padding: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .c-table02 th,
  .c-table02 td {
    padding: 20px 10px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-table02 th,
  .c-table02 td {
    padding: 10px 5px;
    font-size: 1.6rem;
  }
}
.c-table02__scroll {
  display: none;
  font-size: 1.6rem;
}
@media screen and (max-width: 960px) {
  .c-table02__scroll {
    display: block;
    margin-bottom: var(--layout_margin-block02);
  }
}
@media screen and (max-width: 767px) {
  .c-table02__scroll {
    font-size: 1.4rem;
  }
}

.c-cont-caution {
  border-radius: 10px;
  background: var(--c-primary);
  margin-bottom: var(--layout_margin-block);
  padding: 40px 50px 50px;
}
.c-cont-caution__ttl {
  border-bottom: 1px solid #dcf4c9;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  padding-bottom: 30px;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.4;
}
.c-cont-caution__txt {
  width: fit-content;
  margin: 0 auto;
  color: #fff;
}
.c-cont-caution__txt * {
  color: #fff;
}
.c-cont-caution__txt span {
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 1300px) {
  .c-cont-caution {
    padding: 30px;
  }
  .c-cont-caution__ttl {
    font-size: 2.4rem;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 960px) {
  .c-cont-caution__ttl {
    font-size: 2.2rem;
  }
  .c-cont-caution__txt {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-cont-caution {
    padding: 20px;
  }
  .c-cont-caution__ttl {
    font-size: 1.8rem;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .c-cont-caution__txt {
    font-size: 1.6rem;
  }
}


/* list */
.c-sec-list {
  margin-bottom: var( --cont_margin-block03 );
}
.c-sec-list li {
  font-size: 2.2rem;
  position: relative;
  margin-bottom: 10px;
  padding: 0 0 0 20px;
  line-height: 1.4;
}
.c-sec-list li:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: var( --c-primary );
  top: 10px;
  left: 0;
  border-radius: 8px;
}
/*@media screen and (max-width: 1300px) {
  .c-sec-list li {
    font-size: 1.8rem;
  }
  .c-sec-list li:before {
    width: 8px;
    height: 8px;
    top: 8px;
  }
}*/
@media screen and (max-width: 767px) {
  .c-sec-list {
    margin-bottom: var( --cont_margin-block03 );
  }
  .c-sec-list li {
    font-size: var( --c-fontsize );
    padding: 0 0 0 15px;
  }
  .c-sec-list li:before {
    width: 6px;
    height: 6px;
    top: 6px;
  }
}
.c-sec-list--last li:before {
  background: var(--c-quaternary);
}

.c-sec-list02 {
}
.c-sec-list02__ttl {
  font-size: 2.2rem;
  position: relative;
  margin-bottom: 0;
  padding: 0 0 0 20px;
  line-height: 1.4;
  font-weight: 700;
  color: var( --c-primary );
}
.c-sec-list02__ttl:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: var( --c-primary );
  top: 10px;
  left: 0;
  border-radius: 8px;
}
.c-sec-list02__txt {
  margin: 0 0 10px 20px;
}
/*@media screen and (max-width: 1300px) {
  .c-sec-list02__ttl {
    font-size: 1.8rem;
  }
  .c-sec-list02__ttl:before {
    width: 8px;
    height: 8px;
    top: 8px;
  }
}*/
@media screen and (max-width: 767px) {
  .c-sec-list02 {
    margin-bottom: var( --cont_margin-block03 );
  }
  .c-sec-list02__ttl {
    font-size: var( --c-fontsize );
    padding: 0 0 0 10px;
  }
  .c-sec-list02__ttl:before {
    width: 6px;
    height: 6px;
    top: 7px;
  }
  .c-sec-list02__txt {
    margin: 0 0 10px 10px;
  }
}

/*----- Button -----*/
.c-btn-cta {
  width: 230px;
}
.c-btn-cta a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  padding: 0 10px 0 50px;
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  border-radius: 50px;
  line-height: 1.4;
  transition: all .3s ease-in-out;
  overflow: hidden;
  white-space: nowrap;
}
.c-btn-cta a:hover {
  padding: 0 50px 0 10px;
}
.c-btn-cta a:before,
.c-btn-cta a:after {
  position: absolute;
  content: "";
  height: 100%;
  top: 0;
  transition: all .3s ease-in-out;
}
.c-btn-cta a:before {
  width: 50px;
  left: 0;
  opacity: 1;
}
.c-btn-cta a:hover:before {
  left: -50px;
  opacity: 0;
}
.c-btn-cta a:after {
  width: 50px;
  right: -50px;
  opacity: 0;
}
.c-btn-cta a:hover:after {
  right: 0;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .c-btn-cta {
    width: 150px;
  }
  .c-btn-cta a {
    height: 45px;
    padding: 0 10px 0 40px;
    font-size: 1.4rem;
  }
  .c-btn-cta a:before {
    width: 40px;
  }
  .c-btn-cta a:hover:before {
    left: -40px;
  }
  .c-btn-cta a:after {
    width: 40px;
    right: -40px;
  }
}

.c-btn-cta--contact a:before {
  border-right: 1px solid #846857;
  background: var(--c-tertiary) url("../images/icon-mail-w.png") no-repeat 20px center / 16px auto;
}
.c-btn-cta--contact a:hover:before {
  border-right: 1px solid #846857;
  background: var(--c-tertiary) url("../images/icon-mail-w.png") no-repeat 20px center / 16px auto;
}
.c-btn-cta--contact a:after {
  border-left: 1px solid #846857;
  background: var(--c-tertiary) url("../images/icon-mail-w.png") no-repeat right 20px center / 16px auto;
}
.c-btn-cta--contact a:hover:after {
  border-left: 1px solid #846857;
  background: var(--c-tertiary) url("../images/icon-mail-w.png") no-repeat right 20px center / 16px auto;

}
.c-btn-cta--entry a:before {
  border-right: 1px solid #b6df96;
  background: var(--c-primary) url("../images/icon-search-w.png") no-repeat 20px center / 17px auto;
}
.c-btn-cta--entry a:hover:before {
  border-right: 1px solid #b6df96;
  background: var(--c-primary) url("../images/icon-search-w.png") no-repeat 20px center / 17px auto;
}
.c-btn-cta--entry a:after {
  border-left: 1px solid #b6df96;
  background: var(--c-primary) url("../images/icon-search-w.png") no-repeat right 20px center / 17px auto;
}
.c-btn-cta--entry a:hover:after {
  border-left: 1px solid #b6df96;
  background: var(--c-primary) url("../images/icon-search-w.png") no-repeat right 20px center / 17px auto;
}
.c-btn-cta--map a:before {
  border-right: 1px solid #b6df96;
  background: var(--c-primary) url("../images/icon-map-w.png") no-repeat 20px center / 17px auto;
}
.c-btn-cta--map a:hover:before {
  border-right: 1px solid #b6df96;
  background: var(--c-primary) url("../images/icon-map-w.png") no-repeat 20px center / 17px auto;
}
.c-btn-cta--map a:after {
  border-left: 1px solid #b6df96;
  background: var(--c-primary) url("../images/icon-map-w.png") no-repeat right 20px center / 17px auto;
}
.c-btn-cta--map a:hover:after {
  border-left: 1px solid #b6df96;
  background: var(--c-primary) url("../images/icon-map-w.png") no-repeat right 20px center / 17px auto;
}
.c-btn-cta--contact a {
  background: var(--c-tertiary);
}
.c-btn-cta--entry a {
  background: var(--c-primary);
}

@media screen and (max-width: 767px) {
  .c-btn-cta--contact a:before {
    background: var(--c-tertiary) url("../images/icon-mail-w.png") no-repeat 13px center / 16px auto;
  }
  .c-btn-cta--contact a:hover:before {
    background: var(--c-tertiary) url("../images/icon-mail-w.png") no-repeat 13px center / 16px auto;
  }
  .c-btn-cta--contact a:after {
    background: var(--c-tertiary) url("../images/icon-mail-w.png") no-repeat right 13px center / 16px auto;
  }
  .c-btn-cta--contact a:hover:after {
    background: var(--c-tertiary) url("../images/icon-mail-w.png") no-repeat right 13px center / 16px auto;
  }
  .c-btn-cta--entry a:before {
    background: var(--c-primary) url("../images/icon-search-w.png") no-repeat 13px center / 17px auto;
  }
  .c-btn-cta--entry a:hover:before {
    background: var(--c-primary) url("../images/icon-search-w.png") no-repeat 13px center / 17px auto;
  }
  .c-btn-cta--entry a:after {
    background: var(--c-primary) url("../images/icon-search-w.png") no-repeat right 13px center / 17px auto;
  }
  .c-btn-cta--entry a:hover:after {
    background: var(--c-primary) url("../images/icon-search-w.png") no-repeat right 13px center / 17px auto;
  }
  .c-btn-cta--map a:before {
    background: var(--c-primary) url("../images/icon-map-w.png") no-repeat 13px center / 17px auto;
  }
  .c-btn-cta--map a:hover:before {
    background: var(--c-primary) url("../images/icon-map-w.png") no-repeat 13px center / 17px auto;
  }
  .c-btn-cta--map a:after {
    background: var(--c-primary) url("../images/icon-map-w.png") no-repeat right 13px center / 17px auto;
  }
  .c-btn-cta--map a:hover:after {
    background: var(--c-primary) url("../images/icon-map-w.png") no-repeat right 13px center / 17px auto;
  } 
}


.c-btn-cta--l {
  width: 100%;
  max-width: 400px;
}
.c-btn-cta--l a {
  height: 80px;
  padding: 0 10px 0 80px;
  font-size: 1.8rem;
}
.c-btn-cta--l a:before {
  width: 80px;
  left: 0;
}
.c-btn-cta--l a:after {
  width: 80px;
  right: -80px;
}
.c-btn-cta--l.c-btn-cta--contact a:before {
  background: url("../images/icon-mail-w.png") no-repeat 30px center / 25px auto;
}
.c-btn-cta--l.c-btn-cta--entry a:before {
  background: url("../images/icon-search-w.png") no-repeat 30px center / 26px auto;
}
.c-btn-cta--l.c-btn-cta--contact a:after {
  background: url("../images/icon-mail-w.png") no-repeat 30px center / 25px auto;
}
.c-btn-cta--l.c-btn-cta--entry a:after {
  background: url("../images/icon-search-w.png") no-repeat 30px center / 26px auto;
}
.c-btn-cta--l.c-btn-cta--map a:before {
  background: url("../images/icon-map-w.png") no-repeat 30px center / 22px auto;
}
.c-btn-cta--l.c-btn-cta--map a:after {
  background: url("../images/icon-map-w.png") no-repeat 30px center / 22px auto;
}
.c-btn-cta--l.c-btn-cta--contact a {
  background: var( --c-tertiary );
}
.c-btn-cta--l.c-btn-cta--entry a {
  background: var( --c-primary );
}
.c-btn-cta--l.c-btn-cta--map a {
  background: var( --c-primary );
}
@media (hover: hover) and (pointer: fine) {
  .c-btn-cta--l a:hover {
    padding: 0 80px 0 10px;
  }
  .c-btn-cta--l a:hover:before {
    left: -80px;
  }
  .c-btn-cta--l a:hover:after {
    right: 0;
  }
}
@media screen and (max-width: 960px) {
  .c-btn-cta--l a {
    height: 70px;
    padding: 0 10px 0 60px;
  }
  .c-btn-cta--l a:before {
    width: 60px;
    left: 0;
  }
  .c-btn-cta--l a:after {
    width: 60px;
    right: -60px;
  }
  .c-btn-cta--l.c-btn-cta--contact a:before {
    background: var(--c-tertiary) url("../images/icon-mail-w.png") no-repeat 20px center / 22px auto;
  }
  .c-btn-cta--l.c-btn-cta--contact a:after {
    background: var(--c-tertiary) url("../images/icon-mail-w.png") no-repeat right 20px center / 22px auto;
  }
  .c-btn-cta--l.c-btn-cta--entry a:before {
    background: var(--c-primary) url("../images/icon-search-w.png") no-repeat 20px center / 22px auto;
  }
  .c-btn-cta--l.c-btn-cta--entry a:after {
    background: var(--c-primary) url("../images/icon-search-w.png") no-repeat right 20px center / 22px auto;
  }
  .c-btn-cta--l.c-btn-cta--map a:before {
    background: var(--c-primary) url("../images/icon-map-w.png") no-repeat 20px center / 20px auto;
  }
  .c-btn-cta--l.c-btn-cta--map a:after {
    background: var(--c-primary) url("../images/icon-map-w.png") no-repeat right 20px center / 22px auto;
  }
  @media (hover: hover) and (pointer: fine) {
    .c-btn-cta--l a:hover {
      padding: 0 60px 0 10px;
    }
    .c-btn-cta--l a:hover:before {
      left: -60px;
    }
    .c-btn-cta--l a:hover:after {
      right: 0;
    }
  }
}
@media screen and (max-width: 767px) {
  .c-btn-cta--l {
    width: 100%;
    max-width: 270px;
  }
  .c-btn-cta--l a {
    height: 60px;
    padding: 0 10px 0 50px;
    font-size: 1.4rem;
  }
  .c-btn-cta--l a:before {
    width: 50px;
    left: 0;
  }
  .c-btn-cta--l a:after {
    width: 50px;
    right: -50px;
  }
  .c-btn-cta--l.c-btn-cta--contact a:before {
    background: var(--c-tertiary) url("../images/icon-mail-w.png") no-repeat 18px center / 16px auto;
  }
  .c-btn-cta--l.c-btn-cta--contact a:after {
    background: var(--c-tertiary) url("../images/icon-mail-w.png") no-repeat right 18px center / 16px auto;
  }
  .c-btn-cta--l.c-btn-cta--entry a:before {
    background: var(--c-primary) url("../images/icon-search-w.png") no-repeat 18px center / 17px auto;
  }
  .c-btn-cta--l.c-btn-cta--entry a:after {
    background: var(--c-primary) url("../images/icon-search-w.png") no-repeat right 18px center / 17px auto;
  }
  .c-btn-cta--l.c-btn-cta--map a:before {
    background: var(--c-primary) url("../images/icon-map-w.png") no-repeat 18px center / 17px auto;
  }
  .c-btn-cta--l.c-btn-cta--map a:after {
    background: var(--c-primary) url("../images/icon-map-w.png") no-repeat right 18px center / 17px auto;
  }
}

.c-fix-cta {
  display: none;
}
@media screen and (max-width: 960px) {
  .c-fix-cta {
    position: fixed;
    left: 0;
    bottom: 10px;
    z-index: 9999;
    display: block;
    width: 100%;
  }
  .c-fix-cta__inner {
    background: var( --c-secondary );
    background: #fff;
    padding: 10px;
    width: fit-content;
    display: flex;
    justify-content: center;
    column-gap: 5px;
    z-index: 9999;
    border-radius: 50px;
    margin: 0 auto;
    box-shadow:
    0 0 10px rgba(180, 180, 180, 0.2);
  }
}
@media screen and (max-width: 767px) {
  .c-fix-cta__inner a {
    font-size: 1.4rem;
  }
}

.c-btn {
  width: 380px;
}
.c-btn-l {
  width: 400px;
}
.c-btn-s {
  width: fit-content;
  margin: 0 auto;
}
.c-btn a {
  padding: 0 40px;
  height: 80px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  background: var(--c-tertiary);
  font-size: 2.0rem;
  letter-spacing: .2em;
  line-height: 1.3;
  border: 2px solid var(--c-tertiary);
  border-radius: 70px;
  transition: all .2s ease-in-out;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.c-btn a::before {
  content: '';
  position: absolute;
  top: calc(50% - 4px);
  right: 30px;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  transform: rotate(225deg);
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.c-btn a::after {
  content: '';
  position: absolute;
  top: calc(50% - 4px);
  right: 30px;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  transform: translateX(-15px) rotate(225deg);
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.c-btn-s a {
  padding: 0 60px 0 40px;
  height: 50px;
  font-size: 1.8rem;
}
@media (hover: hover) and (pointer: fine) {
  .c-btn a:hover {
    padding: 0 30px 0 50px;
  }
  .c-btn-s a:hover {
    padding: 0 50px 0 50px;
  }
  .c-btn a:hover::before {
    transform: translateX(15px) rotate(225deg);
    opacity: 0;
  }
  .c-btn a:hover::after {
    transform: translateX(0) rotate(225deg);
    opacity: 1;
  }
}
@media screen and (max-width: 960px) {
  .c-btn {
    width: 330px;
  }
  .c-btn-l {
    width: 400px;
  }
  .c-btn a {
    font-size: 1.8rem;
  }
  .c-btn-s a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: 270px;
  }
  .c-btn-l {
    width: 270px;
  }
  .c-btn a {
    padding: 0 20px;
    height: 60px;
    font-size: 1.4rem;
  }
  .c-btn a::before {
    right: 20px;
  }
  .c-btn a::after {
    right: 20px;
  }
}



/*----- Breadcrumb -----*/
.c-breadcrumb {
  margin-top: 50px;
  margin-bottom: 50px;
  transform : translate(0, -5px);
}
.c-breadcrumb-ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.c-breadcrumb-ul li {
  display: inline-block;
  margin: 0 20px 10px 0;
  position: relative;
}
.c-breadcrumb-ul li:before {
  position: absolute;
  content: "";
  top: 50%;
  right: -12px;
  width: 5px;
  height: 1px;
  background: var( --c-primary );
}
.c-breadcrumb-ul li:first-child {
  margin: 0 20px 10px 0;
}
.c-breadcrumb-ul li:first-child a {
  text-decoration: none;
}
.c-breadcrumb-ul li:first-child img {
  width: 10px;
  height: auto;
  display: block;
  margin-bottom: 3px;
}
.c-breadcrumb-ul li:last-child:before {
  display: none;
}
.c-breadcrumb-ul li span {
  display: block;
  font-size: 1.4rem;
  line-height: 1.6;
  text-transform:capitalize;
}
.c-breadcrumb-ul li a span {
  display: block;
  font-size: 1.4rem;
  line-height: 1.0;
  text-decoration: underline;
  color: var(--cmn-color01);
  text-transform:capitalize;
}
@media screen and (max-width: 769px) {
  .c-breadcrumb {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}

/*----- CONTENTS -----*/
.c-page-contact {
  margin-top: 0;
  margin-bottom: var( --layout_margin-block );
  padding: 50px;
  border-radius: 30px;
  text-align: center;
  background: linear-gradient(300deg, #cae688 0%, var(--c-primary) 100%);
  position: relative;
  z-index: 1;
}
.c-page-contact__ttl {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  padding: 60px;
  position: relative;
}
.c-page-contact__ttl::before {
  content: "CONTACT";
  position: absolute;
  top: -45px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 15.6rem;
  color: #a3e075;
  font-weight: 500;
  z-index: -1;
}
.c-page-contact__inner {
  display: flex;
  justify-content: space-between;
  column-gap: 50px;
}
.c-page-contact-cont {
  width: calc((100% - 100px) / 3);
  background: #fff;
  border-radius: 30px;
  padding: 70px;
}
.c-page-contact-cont:first-child {
  padding: 70px 50px;
}
.c-page-contact-cont__ttl {
  padding-top: 40px;
  height: 110px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
.c-page-contact-cont--tel .c-page-contact-cont__ttl {
  background: url("../images/icon-tel-g.png") no-repeat center top / 30px auto;
}
.c-page-contact-cont--contact .c-page-contact-cont__ttl {
  background: url("../images/icon-mail-g.png") no-repeat center top / 38px auto;
}
.c-page-contact-cont--entry .c-page-contact-cont__ttl {
  background: url("../images/icon-search-g.png") no-repeat center top / 31px auto;
}
.c-page-contact-cont__tel {
  font-size: 2rem;
  color: var(--c-primary);
}
.c-page-contact-cont__tel a {
  font-size: 4.5rem;
  color: var(--c-primary);
  line-height: 1;
}
.c-page-contact-cont__time {
  font-size: 1.6rem;
}
.c-page-contact-cont .c-btn-cta--l {
  margin: 0 auto;
}
@media screen and (max-width: 1800px) {
  .c-page-contact__inner {
    column-gap: 30px;
  }
  .c-page-contact-cont {
    width: calc((100% - 60px) / 3);
    padding: 70px 50px;
  }
  .c-page-contact-cont__ttl {
    margin-bottom: 35px;
  }
  .c-page-contact-cont__tel a {
    font-size: 4rem;
  }
}
@media screen and (max-width: 1700px) {
  .c-page-contact {
    padding: 50px;
  }
  .c-page-contact__ttl {
    font-size: 3.8rem;
    padding: 50px;
  }
  .c-page-contact__ttl::before {
    font-size: 13rem;
    top: -40px;
  }
  .c-page-contact__inner {
    column-gap: 25px;
  }
  .c-page-contact-cont {
    width: calc((100% - 50px) / 3);
    padding: 50px 30px;
  }
  .c-page-contact-cont__ttl {
    margin-bottom: 30px;
    font-size: 1.8rem;
  }
  .c-page-contact-cont__tel a {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 1400px) {
  .c-page-contact {
    padding: 50px;
  }
  .c-page-contact__ttl {
    font-size: 3.5rem;
    padding: 60px 30px;
  }
  .c-page-contact__ttl::before {
    font-size: 12rem;
    top: -20px;
  }
  .c-page-contact__inner {
    flex-wrap: wrap;
    gap: 10px;
  }
  .c-page-contact-cont {
    width: calc((100% - 20px) / 2);
    padding: 40px 30px;
  }
  .c-page-contact-cont:first-child {
    width: 100%;
    margin-bottom: 10px;
  }
  .c-page-contact-cont__ttl {
    margin-bottom: 20px;
    font-size: 1.9rem;
  }
  .c-page-contact-cont__tel a {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 960px) {
  .c-page-contact {
    padding: 30px;
    border-radius: 30px;
  }
  .c-page-contact__ttl {
    font-size: 2.5rem;
    padding: 30px 0;
  }
  .c-page-contact__ttl::before {
    font-size: 8rem;
  }
  .c-page-contact-cont {
    width: calc((100% - 10px) / 2);
    padding: 40px 20px 20px;
  }
  .c-page-contact-cont:first-child {
    width: 100%;
  }
  .c-page-contact-cont__ttl {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .c-page-contact-cont__tel {
    font-size: 2rem;
  }
  .c-page-contact-cont__tel a {
    font-size: 3.5rem;
  }
  .c-page-contact-cont__time {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-page-contact {
    margin-bottom: 70px;
    border-radius: 10px;
    padding: 20px;
  }
  .c-page-contact__ttl {
    font-size: 2.2rem;
  }
  .c-page-contact__ttl::before {
    font-size: 6rem;
    top: -5px;
  }
  .c-page-contact-cont {
    width: calc((100% - 10px) / 2);
    border-radius: 10px;
  }
  .c-page-contact-cont:first-child {
    width: 100%;
    margin: 0;
  }
  .c-page-contact-cont--tel .c-page-contact-cont__ttl {
    background-size: 30px auto;
  }
  .c-page-contact-cont--contact .c-page-contact-cont__ttl {
    background-size: 38px auto;
  }
  .c-page-contact-cont--entry .c-page-contact-cont__ttl {
    background-size: 31px auto;
  }
  .c-page-contact-cont__tel {
    font-size: 2rem;
  }
  .c-page-contact-cont__tel a {
    font-size: 3.5rem;
  }
  .c-page-contact-cont__time {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 600px) {
  .c-page-contact__ttl {
    font-size: 2rem;
    padding: 30px 10px 20px;
  }
  .c-page-contact__ttl::before {
    font-size: 4rem;
    top: 10px;
  }
  .c-page-contact-cont {
    width: 100%;
    padding: 20px;
  }
  .c-page-contact-cont:first-child {
    padding: 20px;
  }
  .c-page-contact-cont__ttl {
    height: 60px;
    padding-top: 30px;
    font-size: 1.6rem;
  }
  .c-page-contact-cont:first-child .c-page-contact-cont__ttl {
    height: 80px;
  }
  .c-page-contact-cont--tel .c-page-contact-cont__ttl {
    background-size: 17px auto;
  }
  .c-page-contact-cont--contact .c-page-contact-cont__ttl {
    background: url("../images/icon-mail-g.png") no-repeat center top 5px / 18px auto;
  }
  .c-page-contact-cont--entry .c-page-contact-cont__ttl {
    background-size: 17px auto;
  }
  .c-page-contact-cont__tel {
    font-size: 1.4rem;
  }
  .c-page-contact-cont__tel a {
    font-size: 3rem;
  }
  .c-page-contact-cont__time {
    font-size: 1.4rem;
  }
}



/*----- Form -----*/
/* Text, Textarea, Selectbox */
.c-sel {
	width: 100%;
	max-width: 300px;
	height: 45px;
	padding: 0 20px;
	background: #fff url(../images/arr_select_down.png) no-repeat right 10px center / 9px;
	border: 1px solid var(--c-border);
	border-radius: 5px;
	cursor: pointer;
	font-size: 1.8rem;
}
.c-form {
	width: 100%;
	height: 48px;
	padding: 0 20px;
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: 5px !important;
  font-size: 1.8rem;
}
.c-form.-sm {
	max-width: 250px;
}
.c-form.-md {
	max-width: 445px;
}
.c-form.-lg {
	max-width: 650px;
}
.c-form-txt {
	width: 100%;
	max-width: 650px;
	height: 240px;
	padding: 15px 20px;
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: 5px;
  font-size: 1.8rem;
}
.c-form-button {
  border-radius: 50px;
  width: 200px;
  height: 40px;
	border: 1px solid var(--c-primary);
  padding: 0 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.4rem;
	color: var(--c-primary);
  background: #fff;
  position: relative;
  cursor: pointer;  
	transition: all .3s ease-in-out;
  margin-bottom: 5px;
}
.c-form-button:hover {
	border: 1px solid var(--c-primary);
	color: #fff;
  background: var(--c-primary);
}
.c-form-button:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 50%;
  right: 20px;
  border-radius: 100%;
  background: var(--c-primary);
  transform: translateY(-50%);
	transition: all .3s ease-in-out;
}
.c-form-button:hover:before {
  background: #fff;
}
@media screen and (max-width: 767px) {
	.c-form {
		height: 45px;
	}
  .c-form-button {
    width: 160px;
    height: 30px;
    padding: 0 20px;
    font-size: 1.3rem;
  }
	.c-sel {
		font-size: 1.6rem;
	}
	.c-form {
	  font-size: 1.6rem;
	}
	.c-form-txt {
	  font-size: 1.6rem;
	}
}

/* Check, Radio */
input[type='radio'] {
	margin-right: 5px;
}
input[type='radio'] + span{
	margin-right: 10px;
}
.c-col-l label {
	margin-right: 5px;
}


/*----- c-menu -----*/
/*--c-dl-menu--*/
.c-dl-menu {
  display: none;
  /*width: 100vw;*/
  position: fixed;
  top: 100%;
  top: 0;
  right: 0;
  z-index: 99999;
  overflow-y: scroll;
  overflow-x: hidden;
  /*min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  min-height: 100svh;*/
  height: 0;
  transition: all .5s ease-in-out;
  border-radius: 0 0 100% 100%;
}
.c-dl-menu.is-show {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99999;
  overflow-y: scroll;
  overflow-x: hidden;
  /*min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  min-height: 100svh;*/
  height: 100svh;
  transition: all .5s ease-in-out;
  border-radius: 0;
}
/*.c-dl-menu:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  height: 0;
  background: var(--c-primary);
  transition: all .3s ease-in-out;
}
.c-dl-menu.is-show:before {
  top: 0;
  animation: c-dl-menu01 1s ease forwards;
}*/
@keyframes c-dl-menu01 {
  0% {
    height: 100svh;
  }
  50% {
    height: 100svh;
  }
  100% {
    height: 0;
  }
}
.c-dl-menu__inner {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  background: #fff;
}
.c-dl-menu-img {
  width: calc( 100vw - 800px );
  position: relative;
}
.c-dl-menu__cont {
  width: 800px;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  min-height: 100svh;
  position: relative;
  padding: 200px 100px 50px;
  background:url("../images/bg01.png") no-repeat right -200px,url("../images/dl-logo.png") no-repeat right bottom #fff;
  background-size: 100% auto,80% auto;
}
@media screen and (max-width: 1300px) {
  .c-dl-menu-img {
    width: calc( 100vw - 700px );
  }
  .c-dl-menu__cont {
    width: 700px;
    padding: 150px 70px 50px;
  }
}
@media screen and (max-width: 1100px) {
  .c-dl-menu-img {
    width: calc( 100vw - 600px );
  }
  .c-dl-menu__cont {
    width: 600px;
    padding: 150px 50px 50px;
  }
}
@media screen and (max-width: 960px) {
  .c-dl-menu-img {
    display: none;
  }
  .c-dl-menu__cont {
    width: 100%;
    padding: 150px 50px 50px;
    background:url("../images/dl-logo.png") no-repeat right bottom var( --c-secondary );
    background-size: 80% auto;
    background:url("../images/bg01.png") no-repeat right -50px,url("../images/dl-logo.png") no-repeat right bottom #fff;
    background-size: 150% auto,80% auto;
  }
}
@media screen and (max-width: 767px) {
  .c-dl-menu__inner {
    display: block;
    width: 100%;
  }
  .c-dl-menu__cont {
    padding: 100px 20px 50px;
  }
}

/*-- logo / close --*/
.c-dl-close {
  position: fixed;
  top: 50px;
  right: 50px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  z-index: 9999;
  transition: all .4s ease-in-out;
  background: var(--c-quaternary);
  border: 2px solid var(--c-quaternary);
}
@media (hover: hover) and (pointer: fine) {
  .c-dl-close:hover {
    border: 2px solid var(--c-quaternary);
    background: #fff;
  }
}
.c-dl-menu__btn {
  position: fixed;
  top: 50px;
  right: 110px;
  width: 100%;
  display: flex;
  column-gap: 10px;
  justify-content: flex-end;
}
.c-dl-menu__logo {
  position: fixed;
  width: 441px;
  top: 50px;
  left: 50px;
  z-index: 9;
	transition: all .3s ease-in-out;
}
.-transform .c-dl-menu__logo {
  width: 380px;
  height: auto;
  margin-top: -20px;
}
@media screen and (max-width: 1600px) {
  .c-dl-menu__logo {
    width: 380px;
  }
  .-transform .c-dl-menu__logo {
    width: 350px;
    margin-top: -10px;
  }
}
@media screen and (max-width: 1400px) {
  .c-dl-menu__logo {
    width: 350px;
  }
  .-transform .c-dl-menu__logo {
    width: 330px;
  }
}
@media screen and (max-width: 1300px) {
  .c-dl-close {
    position: fixed;
    top: 30px;
    right: 30px;
  }
  .c-dl-menu__btn {
    top: 30px;
    right: 90px;
  }
  .c-dl-menu__logo {
    width: 330px;
    top: 30px;
    left: 30px;
  }
  .-transform .c-dl-menu__logo {
    width: 300px;
    margin-top: -5px;
  }
}
@media screen and (max-width: 1200px) {
  .c-dl-menu__logo {
    width: 280px;
  }
  .-transform .c-dl-menu__logo {
    width: 250px;
    margin-top: 0;
  }
}
@media screen and (max-width: 960px) {
  .c-dl-menu__logo {
    display: none;
  }  
}
@media screen and (max-width: 767px) {
  .c-dl-close {
    top: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
  }
  .c-dl-menu__btn {
    position: static;
    margin: 0 auto 40px;
    justify-content: center;
    column-gap: 5px;
  }
  .c-dl-menu__logo {
    width: 225px;
    top: 20px;
    left: 20px;
    display: block;
  }
  .-transform .c-dl-menu__logo {
    width: 225px;
  }
}

/*-- c-dl-menu-img --*/
.c-dl-menu-img__inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.c-dl-menu-img__inner p {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: fadeZoomIn 28s infinite;
}
.c-dl-menu-img__inner p:nth-child(1) {
  animation-delay: 0s;
}
.c-dl-menu-img__inner p:nth-child(2) {
  animation-delay: 7s;
}
.c-dl-menu-img__inner p:nth-child(3) {
  animation-delay: 14s;
}
.c-dl-menu-img__inner p:nth-child(4) {
  animation-delay: 21s;
}
@keyframes fadeZoomIn {
  0%   { opacity: 0; transform: scale(1.03); }
  5%   { opacity: 1; transform: scale(1.04); }
  40%  { opacity: 1; transform: scale(1.12); }
  65%  { opacity: 0; transform: scale(1.15); }
  100% { opacity: 0; transform: scale(1.17); }
}
.c-dl-menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center center;
  will-change: transform, opacity;
}

/*-- c-dl-menu__cont --*/
.c-dl-menu-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.c-dl-menu-nav-body {
  width: 48.5%;
}
.c-dl-menu-nav-body:last-child {
  width: 100%;
  border-top: 1px solid var( --c-border );
  border-bottom: 1px solid var( --c-border );
  margin-top: 20px;
  padding-top: 50px;
  margin-bottom: 50px;
  padding-bottom: 30px;  
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.c-dl-menu-nav-body:last-child .c-dl-menu-nav__list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.c-dl-menu-nav-body:last-child .c-dl-menu-nav__item {
  width: 48.5%;
}
.c-dl-menu-nav__item a {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  padding-left: 25px;
  position: relative;
  color: var( --c-tertiary );
  line-height: 1.2;
  margin-bottom: 20px; 
}
.c-dl-menu-nav__item a:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background: var( --c-tertiary );
  top: 10px;
  left: 0;
  transform: translateY( -50% );
}
.c-dl-menu-nav__item a:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border: 1px solid #fff;
  border-right: none;
  border-top: none;  
  top: 10px;
  left: 4px;
  transform: translateY( -50% ) rotate( -135deg );
}
@media (hover: hover) and (pointer: fine) {
  .c-dl-menu-nav__item a:hover:before,
  .c-dl-menu-nav__item a:hover:after {
    animation: slideIcon02 0.5s ease forwards;
  }
}
.c-dl-menu-nav__list ul {
  margin-bottom: 30px;  
}
.c-dl-menu-nav__list ul .c-dl-menu-nav__item a {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  padding-left: 20px;
  position: relative;
  color: var( --c-tertiary );
  line-height: 1.6;
  margin-bottom: 10px;  
  margin-left: 20px;
}
.c-dl-menu-nav__list ul .c-dl-menu-nav__item a:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  border-radius: 0;
  background: var( --c-tertiary );
  top: 10px;
  left: 0;
  transform: none;
}
.c-dl-menu-nav__list ul .c-dl-menu-nav__item a:after {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .c-dl-menu-nav__list ul .c-dl-menu-nav__item a:hover:before {
    animation: slideIcon03 0.5s ease forwards;
  }
}
.c-dl-menu__copy {
  text-align: center;
  font-size: 1.4rem;
}
.c-dl-menu-nav__item--pc {
  display: block;
}
.c-dl-menu-nav__item--sp {
  display: none;
}
@media screen and (max-width: 1400px) {
  .c-dl-menu-nav__item a {
    font-size: 1.6rem;
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-dl-menu-nav__item a {
    font-size: var( --c-fontsize );
    margin-bottom: 15px;
  }
  .c-dl-menu-nav__list ul {
    margin-bottom: 20px;  
  }
  .c-dl-menu-nav__list ul .c-dl-menu-nav__item a {
    font-size: var( --c-fontsize );
  }
}
@media screen and (max-width: 600px) {
  .c-dl-menu-nav {
    display: block;
  }
  .c-dl-menu-nav-body:first-child {
    width: 100%;
    border-top: 1px solid var( --c-border );
    padding-top: 30px;  
  }
  .c-dl-menu-nav-body:last-child {
    width: 100%;
    border-top: none;
    border-bottom: 1px solid var( --c-border );
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 30px;
    padding-bottom: 15px;  
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .c-dl-menu-nav__item a {
    margin-bottom: 15px;
  }
  .c-dl-menu-nav__item a:before {
    top: 8px;
  }
  .c-dl-menu-nav__item a:after {
    top: 8px;
  }
  .c-dl-menu-nav__list ul .c-dl-menu-nav__item a:before {
    top: 11px;
  }
  .c-dl-menu-nav__item--pc {
    display: none;
  }
  .c-dl-menu-nav__item--sp {
    display: block;
  }
}

.c-dl-menu__info {
  width: 100%;
  text-align: center;
}
.c-dl-menu__name {
  font-size: 2.0rem;
  font-weight: 700;
  margin-bottom: 5px;  
}
.c-dl-menu__add {
  margin-bottom: 5px;
  font-size: 1.6rem;
}
.c-dl-menu__license {
  margin-bottom: 5px;
  font-size: 1.6rem;
}
.c-dl-menu__tel span {
  font-size: 1.6rem;
  display: inline-block;
  margin-right: 10px;
}
.c-dl-menu__tel a {
  font-size: 2.4rem;
}
@media screen and (max-width: 1200px) {
  .c-dl-menu__name {
    font-size: 1.8rem;
  }
  .c-dl-menu__add,
  .c-dl-menu__license {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-dl-menu__name {
    font-size: 1.6rem;
  }
  .c-dl-menu__tel a {
    font-size: 2.0rem;
  }
}

.c-menu-trigger, .c-menu-trigger span {
  transition: all .4s;
  box-sizing: border-box;
}
.c-menu-trigger {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
}
@media (hover: hover) and (pointer: fine) {
  .c-menu-trigger:hover {
    background: none;
  }
}
.c-menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 5px;
}
.c-menu-trigger span:nth-of-type(1) {
  top: 18px;
  left: 12px;
  width: 23px;
}
.c-menu-trigger span:nth-of-type(2) {
  top: 26px;
  left: 12px;
  width: 13px;
}
@media (hover: hover) {
  .c-menu-trigger:hover span:nth-of-type(1) {
    top: 20px;
    left: 12px;
    width: 23px;
    background: var(--c-quaternary);
  }
  .c-menu-trigger:hover span:nth-of-type(2) {
    top: 24px;
    left: 12px;
    width: 13px;
    background: var(--c-quaternary);
  }
  .c-dl-close .c-menu-trigger:hover span:nth-of-type(1),
  .c-dl-close .c-menu-trigger:hover span:nth-of-type(2) {
    background: var(--c-quaternary);
  }
}
.c-menu-trigger span.show {
  display: block;
}
.c-menu-trigger span.hide {
  display: none;
}
.c-menu-trigger.active span:nth-of-type(1) {
  top: 22px;
  left: 11px;
  width: 25px;
  -webkit-transform: translateY(0) rotate(-20deg);
  transform: translateY(0) rotate(-20deg);
  background: #fff;
}
.c-menu-trigger.active span:nth-of-type(2) {
  top: 22px;
  left: 11px;
  width: 25px;
  -webkit-transform: translateY(-0) rotate(20deg);
  transform: translateY(-0) rotate(20deg);
  background: #fff;
}
@media (hover: hover) {
  .c-menu-trigger:hover.active span:nth-of-type(1),
  .c-menu-trigger:hover.active span:nth-of-type(2) {
    background: #fff;
  }
  .c-dl-close .c-menu-trigger:hover.active span:nth-of-type(1),
  .c-dl-close .c-menu-trigger:hover.active span:nth-of-type(2) {
    background: var(--c-quaternary);
  }
}
@media screen and (max-width: 767px) {
  .c-menu-trigger {
    width: 40px;
    height: 40px;
  }
  .c-menu-trigger span:nth-of-type(1) {
    top: 16px;
    width: 15px;
  }
  .c-menu-trigger span:nth-of-type(2) {
    top: 23px;
    width: 10px;
  }
  @media (hover: hover) {
    .c-menu-trigger:hover span:nth-of-type(1) {
      top: 18px;
      width: 15px;
    }
    .c-menu-trigger:hover span:nth-of-type(2) {
      top: 21px;
      width: 10px;
    }
  }
  .c-menu-trigger.active span:nth-of-type(1),
  .c-menu-trigger.active span:nth-of-type(2) {
    top: 20px;
    left: 13px;
    width: 16px;
  }
}

/*-- c-circle --*/
.c-circle:before {
  position: absolute;
  content: "";
  width: 1500px;
  height: 1500px;
  top: 300px;
  left: 0;
  transform: translateX(-30%);
  border: 100px solid #fcf3c0;
  z-index: -2;
  border-radius: 100%;
}
@media screen and (max-width: 1500px) {
  .c-circle:before {
    width: calc( (1700 / 1920) * 100vw );
    height: calc( (1700 / 1920) * 100vw );
    top: calc( (200 / 1500) * 100vw );
    transform: translateX(-50%);
    border: calc( (100 / 1500) * 100vw ) solid #fcf3c0;
  }
}
@media screen and (max-width: 960px) {
  .c-circle:before {
    width: calc( (850 / 960) * 100vw );
    height: calc( (850 / 960) * 100vw );
    top: calc( (128 / 960) * 100vw );
    transform: translateX(-50%);
    border: calc( (64 / 960) * 100vw ) solid #fcf3c0;
    left: calc( (128 / 960) * 100vw );
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 796px) {
  .c-circle:before {
    width: 120vw;
    height: 120vw;
  }
}

.c-circle02:after {
  position: absolute;
  content: "";
  width: 1000px;
  height: 1000px;
  border: 100px solid #e6f3f8;
  top: -50px;
  right: -100px;
  z-index: -1;
  border-radius: 100%;
}
@media screen and (max-width: 1500px) {
  .c-circle02:after {
    width: calc( (1200 / 1920) * 100vw );
    height: calc( (1200 / 1920) * 100vw );
    border: calc( (100 / 1500) * 100vw ) solid #e6f3f8;
  }
}
@media screen and (max-width: 960px) {
  .c-circle02:after {
    width: calc( (600 / 960) * 100vw );
    height: calc( (600 / 960) * 100vw );
    border: calc( (64 / 960) * 100vw ) solid #e6f3f8;
  }
}
@media screen and (max-width: 767px) {
  .c-circle02:after {
    width: 90vw;
    height: 90vw;
    border: calc( (64 / 769) * 100vw ) solid #e6f3f8;
    top: -50px;
  }
}

.c-bg {
  position: relative; 
}
.c-bg--r:before {
  position: absolute;
  content: "";
  width: calc((1263 / 1920) * 100vw);
  aspect-ratio: 1263 / 948;
  background: url("../images/bg01.png") no-repeat 0 0;
  background-size: cover;
  top: -200px;
  right: 0;
  z-index: -3;
}
.c-bg--l:after {
  position: absolute;
  content: "";
  width: calc((1085 / 1920) * 100vw);
  aspect-ratio: 1085 / 1711;
  background: url("../images/bg02.png") no-repeat 0 0;
  background-size: cover;
  bottom: -300px;
  left: 0;
  z-index: -3;
}
@media screen and (max-width: 767px) {
  .c-bg--r:before {
    width: calc((600 / 769) * 100vw);
    top: -100px;
  }
  .c-bg--l:after {
    width: calc((600 / 769) * 100vw);
    bottom: -200px;
  }
}

.c-col-2 {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.c-col-2__info {
  width: 58%;
}
.c-col-2__img {
  width: 37%;
}
.c-col-2__img img {
  overflow: hidden;
  border-radius: 30px;
}
.c-col-2__catch {
  font-size: 2.6rem;
  font-weight: 700;
  color: var( --c-primary );
  margin-bottom: 10px;
}
@media screen and (max-width: 1500px) {
  .c-col-2__img img {
    border-radius: 20px;
  }
}
@media screen and (max-width: 960px) {
  .c-col-2 {
    display: block;
  }
  .c-col-2__info {
    width: 100%;
  }
  .c-col-2__img {
    width: 100%;
    margin-bottom: 30px;
  }
  .c-col-2__img img {
    border-radius: 20px;
    margin: 0 auto;
  }
  .c-col-2__catch {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-col-2__img img {
    border-radius: 10px;
  }
  .c-col-2__catch {
    font-size: 1.8rem;
  }
}



/*---------- project ----------*/
/* Index
-------------- */
/*----- Main Visual -----*/
.p-mv {
  width: 100%;
  height: 100vh;
  height: 100svh;
  position: relative;
  margin-bottom: 50px;
}
.p-mv__photo {
  width: 100%;
  height: 100vh;
  height: 100svh;
  position: relative;
  opacity: 0;
  transform: translate(0, -10px);
  animation: translate 1.0s ease-in-out 3.5s forwards;
}
.p-mv__img {
  position: absolute !important;
  opacity: 0;
}
.p-mv__img.slick-initialized {
  opacity: 1;
}
.p-mv__img img {
  display: block;
}
.p-mv__img--01 {
  width: 30%;
  bottom: 7%;
  left: 32%;
}
.p-mv__img--02 {
  width: 12.4%;
  bottom: 3.7%;
  right: 20%;
}
.p-mv__img--03 {
  width: 25%;
  bottom: 18.5%;
  right: -8%;
}
.p-mv__img--04 {
  width: 8%;
  bottom: 3.7%;
  left: 1.5%;
}
@media screen and (max-width: 1200px) {
  .p-mv__img--01 {
    width: 40%;
    bottom: 12%;
    left: 30%;
  }
  .p-mv__img--02 {
    width: 15%;
    bottom: 3.7%;
    right: 10%;
  }
  .p-mv__img--03 {
    width: 25%;
    bottom: 35%;
    right: -8%;
  }
  .p-mv__img--04 {
    width: 10%;
    bottom: 3.7%;
    left: 1.5%;
  }
}
@media screen and (max-width: 960px) {
  .p-mv__img--01 {
    width: 40%;
    bottom: 19%;
    left: 32%;
  }
  .p-mv__img--02 {
    width: 15%;
    bottom: 3.7%;
    right: 10%;
  }
  .p-mv__img--03 {
    width: 25%;
    bottom: 35%;
    right: -8%;
  }
  .p-mv__img--04 {
    width: 10%;
    bottom: 3.7%;
    left: 3.5%;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__img--01 {
    width: 40%;
    bottom: 22%;
    left: 32%;
  }
  .p-mv__img--02 {
    width: 20%;
    bottom: 8%;
    right: 3%;
  }
  .p-mv__img--03 {
    width: 25%;
    bottom: 60%;
    right: -8%;
  }
  .p-mv__img--04 {
    width: 18%;
    bottom: 4.7%;
    left: 3.5%;
  }
}
@media screen and (max-width: 600px) {
  .p-mv__img--01 {
    width: 47%;
    bottom: 25%;
    left: 33%;
  }
  .p-mv__img--02 {
    width: 20%;
    bottom: 8%;
    right: -2%;
  }
  .p-mv__img--03 {
    width: 25%;
    top: 7%;
    bottom: inherit;
    right: -8%;
  }
  .p-mv__img--04 {
    width: 22%;
    bottom: 3%;
    left: 3.5%;
  }
}
@media screen and (max-width: 550px) {
  .p-mv__img--01 {
    width: 55%;
    bottom: 26%;
    left: 40%;
  }
  .p-mv__img--02 {
    width: 30%;
    bottom: 0;
    right: 5%;
  }
  .p-mv__img--03 {
    width: 30%;
    top: -5%;
    right: -10%;
  }
  .p-mv__img--04 {
    width: 25%;
    bottom: 14%;
    left: 6.5%;
  }
}
@media screen and (max-width: 450px) {
  .p-mv__img--01 {
    width: 70%;
    bottom: 26%;
    left: 40%;
  }
  .p-mv__img--02 {
    width: 30%;
    bottom: 0;
    right: 5%;
  }
  .p-mv__img--03 {
    width: 30%;
    top: 2%;
    right: -10%;
  }
  .p-mv__img--04 {
    width: 25%;
    bottom: 14%;
    left: 6.5%;
  }
}

.p-mv__object {
  width: 100%;
  height: 100vh;
  height: 100svh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.p-mv__obj {
  position: absolute;
  aspect-ratio: 1 / 1.18;
  animation: mvOpacity 6s ease-in-out infinite;
  opacity: 1;
}
.p-mv__obj--01 {
  width: 35.8%;
  bottom: 0;
  left: -18%;
  background: url("../images/mv-obj01.png") no-repeat 0 0 / 100% auto;
}
.p-mv__obj--02 {
  width: 22%;
  bottom: 5%;
  left: 12.5%;
  background: url("../images/mv-obj02.png") no-repeat 0 0 / 100% auto;
}
.p-mv__obj--03 {
  width: 13.5%;
  top: -3%;
  left: 20%;
  background: url("../images/mv-obj03.png") no-repeat 0 0 / 100% auto;
}
.p-mv__obj--04 {
  width: 22.5%;
  top: -3%;
  right: 25.5%;
  background: url("../images/mv-obj04.png") no-repeat 0 0 / 100% auto;
}
.p-mv__obj--05 {
  width: 50%;
  bottom: 0;
  right: -20%;
  background: url("../images/mv-obj05.png") no-repeat 0 0 / 100% auto;
}
.p-mv__obj--01 { animation-delay: 0s; }
.p-mv__obj--02 { animation-delay: 1.2s; }
.p-mv__obj--03 { animation-delay: 2.4s; }
.p-mv__obj--04 { animation-delay: 3.6s; }
.p-mv__obj--05 { animation-delay: 4.8s; }

@media screen and (max-width: 767px) {
  .p-mv__obj--01 {
    width: 45.8%;
    bottom: 155px;
    left: -6%;
  }
  .p-mv__obj--02 {
    width: 22%;
    bottom: 6%;
    left: 29.5%;
  }
  .p-mv__obj--03 {
    width: 26.5%;
    top: 14%;
    left: 3%;
  }
  .p-mv__obj--04 {
    width: 33.5%;
    top: -3%;
    right: 25.5%;
  }
  .p-mv__obj--05 {
    width: 50%;
    bottom: 0;
    right: -20%;
  }
}
.p-mv__catch {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-40%);
  z-index: 2;
  opacity: 0;
  animation: blur 1.0s ease-in-out 4.0s forwards;
}
.p-mv__catch-en {
  transform: rotate(90deg);
  transform-origin: left top;
  font-size: 1.0rem;
  color: #b9ada7;
  letter-spacing: 1.0em;
  position: relative;
}
.p-mv__catch-en:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 1px;
  right: -50px;
  top: 9px;
  background: #b9ada7;
}
.p-mv__catch-jp {
  font-size: 4.8rem;
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: normal;
  margin-top: -25px;
  margin-left: 5px;
}
.p-mv__catch-jp * {
  letter-spacing: 0.01em;
  line-height: 1.0;
  font-weight: 700;
}
.p-mv__catch-main {
  margin-left: 30px;  
}
.p-mv__catch-sub {
  font-size: 2.4rem;
  font-weight: 700;
  margin-left: 30px;
}
.p-mv__catch-em {
  font-size: 4.8rem;
  font-weight: 700;  
  color: var(--c-primary);
}
@media screen and (max-width: 1500px) {
  .p-mv__catch-en {
    font-size: 0.9rem;
  }
  .p-mv__catch-en:before {
    top: 8px;
  }
  .p-mv__catch-jp {
    font-size: 4.0rem;
  }
  .p-mv__catch-sub {
    font-size: 2.2rem;
  }
  .p-mv__catch-em {
    font-size: 4.0rem;
  }
}
@media screen and (max-width: 1300px) {
  .p-mv__catch {
    transform: translateY(-50%);
  }
  .p-mv__catch-en:before {
    right: -40px;
    top: 7px;
  }
  .p-mv__catch-jp {
    font-size: 3.5rem;
    margin-top: -20px;
  }
  .p-mv__catch-main {
    margin-left: 20px;  
  }
  .p-mv__catch-sub {
    font-size: 1.8rem;
    margin-left: 25px;
  }
  .p-mv__catch-em {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 960px) {
  .p-mv__catch {
    line-height: 1.4;
  }
  .p-mv__catch-main {
    margin-left: 15px;  
  }
  .p-mv__catch-sub {
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__catch {
    transform: translateY(-80%);
    line-height: 1.4;
  }
  .p-mv__catch-en {
    font-size: 0.8rem;
    letter-spacing: 0.8em;
  }
  .p-mv__catch-en:before {
    width: 25px;
    right: -30px;
    top: 6px;
  }
  .p-mv__catch-jp {
    font-size: 2.6rem;
    margin-top: -20px;
    margin-left: 0;
  }
  .p-mv__catch-sub {
    margin-left: 15px;
  }
  .p-mv__catch-em {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) and (min-height: 659px) {
  .p-mv__catch {
     top: 50%;
  }
}
@media screen and (max-width: 767px) and (max-height: 658px) {
  .p-mv__catch {
     top: 60%;
  }
}
/* slick 最低限の初期安定CSS */
.slick-slider {
  position: relative;
  display: block;
}
.slick-list {
  overflow: hidden;
}
.slick-track {
  display: flex;
}

/* ----- Top SERVICE -----*/
.p-tp-service {
  padding: 0 0 var( --layout_margin-block );
}
.p-tp-service__cont {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px;
  position: relative;
  z-index: 1;
}
.p-tp-service-list {
  width: calc((100% - 10px) / 3);
  height: 400px;
  border-radius: 5px;
  overflow: hidden;
}
.p-tp-service-list__link {
  display: block;
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 40px;
  border-radius: 5px;
  background: #fff;
}
.p-tp-service-list__num {
  width: 50px;
  height: 20px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  line-height: 1;
}
.p-tp-service-list__head {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.p-tp-service-list__head::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all .3s ease-in-out;
}
a:hover .p-tp-service-list__head::after {
  transform: scale(1.1);
}
.p-tp-service-list__head::before {
  content: "";
  position: absolute;
  right: 47px;
  bottom: 47px;
  width: 8px;
  height: 8px;
  transform: rotate(-135deg);
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  z-index: 2;
}
a:hover .p-tp-service-list__head::before {
  animation: slideIcon04 0.5s ease forwards;
}
.p-tp-service-list__ttl {
  position: absolute;
  left: 35px;
  bottom: 35px;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  padding-right: 90px;
}
.p-tp-service-list__ttl.multi-line {
  bottom: 25px;
}
.p-tp-service-list__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.8;
  transition: all .3s ease-in-out;
}
.p-tp-service-list__link:hover .p-tp-service-list__img {
  opacity: 1;
}
.p-tp-service-list__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease-in-out;
}
a:hover .p-tp-service-list__img img {
  transform: scale(1.1);
}
@media screen and (max-width: 1500px) {
  .p-tp-service-list { 
    height: 300px; 
  }
  .p-tp-service-list__link { 
    height: 300px; 
  }
  .p-tp-service-list__ttl { 
    font-size: 2.4rem; 
  }
}
@media screen and (max-width: 1200px) {
  .p-tp-service-list { 
    height: 250px; 
  }
  .p-tp-service-list__link {
    height: 250px;
    padding: 30px;
  }
  .p-tp-service-list__head { height: 100px; }
  .p-tp-service-list__ttl { 
  	font-size: 2.2rem;
	  left: 25px;
	  bottom: 35px;
	}
	.p-tp-service-list__ttl.multi-line {
	  bottom: 20px;
	}
}

@media screen and (max-width: 960px) {
  .p-tp-service-list {
    width: calc((100% - 5px) / 2);
    height: 200px;
  }
  .p-tp-service-list__link {
    height: 200px;
    padding: 20px;
  }
  .p-tp-service-list__head { height: 100px; }
  .p-tp-service-list__ttl {
    font-size: 2rem;
    left: 25px;
    bottom: 35px;
  }
	.p-tp-service-list__ttl {
	  padding-right: 80px;
	}
  .p-tp-service-list__head::after {
    width: 50px;
    height: 50px;
    right: 20px;
    bottom: 20px;
  }
  .p-tp-service-list__head::before {
    right: 42px;
    bottom: 42px;
  }
}
@media screen and (max-width: 767px) {
  .p-tp-service-list {
    width: calc((100% - 5px) / 2);
    height: 150px;
  }
  .p-tp-service-list__link {
    height: 150px;
    padding: 20px;
  }
  .p-tp-service-list__head { height: 70px; }
  .p-tp-service-list__ttl {
    font-size: 1.6rem;
    left: 20px;
    bottom: 25px;
  }
  .p-tp-service-list__head::after {
    width: 40px;
    height: 40px;
    right: 15px;
    bottom: 15px;
  }
  .p-tp-service-list__head::before {
    right: 32px;
    bottom: 32px;
  }
	.p-tp-service-list__ttl {
	  padding-right: 60px;
	}
	.p-tp-service-list__ttl.multi-line {
	  bottom: 15px;
	}
}
@media screen and (max-width: 450px) {
  .p-tp-service-list {
    width: 100%;
    height: 130px;
  }
  .p-tp-service-list__link {
    height: 130px;
    padding: 20px;
  }
}


/* ----- Top PROPERTY ----- */
.p-tp-property {
  margin-bottom: var( --layout_margin-block );
}
.p-tp-property__inner {
	position: relative;
	margin-bottom: 100px;
}
.p-tp-property .slick-list {
  overflow: visible;
}
.p-tp-property-list {
  margin: 0 15px;
}
.p-tp-property-list__img {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.p-tp-property-list__img img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease-in-out;
}
a:hover .p-tp-property-list__img img {
  transform: scale(1.1);
}
.p-tp-property-list-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.p-tp-property-list-info__cat li {
  padding: 0 10px;
  height: 20px;
  display: flex;
  align-items: center;
  width: fit-content;
  background: var(--c-primary);
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  border-radius: 10px;
  position: relative;
}
.p-tp-property-list-info__date {
  color: var(--c-primary);
  font-size: 1.4rem;
}
.p-tp-property-list__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--c-tertiary);
  margin-bottom: 15px;
}
.p-tp-property-list__txt {
  font-size: 2rem;
}
@media screen and (max-width: 1500px) {
  .p-tp-property-list-info {
    margin-bottom: 15px;
  }
  .p-tp-property-list__ttl {
    margin-bottom: 10px;
    line-height: var(--c-catch);
  }
}
@media screen and (max-width: 960px) {
  .p-tp-property {
    margin-bottom: 250px;
  }
	.p-tp-property__inner {
		padding-bottom: 150px;
		margin-bottom: 50px;
	}
  .p-tp-property-list-info {
    margin-bottom: 15px;
  }
  .p-tp-property-list__ttl {
    font-size: 2.2rem;
    margin-bottom: 10px;
    line-height: var(--c-catch);
  }
  .p-tp-property-list__txt {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-tp-property {
    margin-bottom: 100px;
  }
	.p-tp-property__inner {
		padding-bottom: 60px;
		margin-bottom: 50px;
	}
  .p-tp-property-list {
    margin: 0 10px;
  }
  .p-tp-property-list__img {
    border-radius: 5px;
  }
  .p-tp-property-list-info__cat li {
    font-size: 1.2rem;
  }
  .p-tp-property-list__ttl {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .p-tp-property-list__txt {
    font-size: var(--c-fontsize);
  }
}

.p-property__label {
	position: absolute;
	width: 100px;
	aspect-ratio: 1;
	background: #ff0000;
	border-radius: 150px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 700;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1500px) {
	.p-property__label {
		width: 85px;
	  font-size: 2.0rem;
	}
}
@media screen and (max-width: 767px) {
	.p-property__label {
		width: 75px;
	  font-size: 1.8rem;
	}
}


/*-- recruit-blog__arrow --*/
.p-tp-property__arrow {
  position: absolute;
  width: 170px;
  height: 80px;
  top: 40px;
  right: 0;
  z-index: 1;
}
.p-tp-property__arrow-prev,
.p-tp-property__arrow-next {
  position: absolute;
  top: 0;
  cursor: pointer;
  width: 80px;
  height: 80px;
  background: var(--c-primary);
  border-radius: 100%;
}
.p-tp-property__arrow-prev {
  left: 0;
}
.p-tp-property__arrow-next {
  right: 0;
}
.p-tp-property__arrow-prev::before,
.p-tp-property__arrow-next::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 40px;
  left: 37px;
  transform: translateY(-50%) rotate(-135deg);
}
.p-tp-property__arrow-prev::before {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}
.p-tp-property__arrow-next::before {
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.p-tp-property__arrow-prev:hover::before {
  animation: slideIcon05 0.5s ease forwards;
}
.p-tp-property__arrow-next:hover::before {
  animation: slideIcon02 0.5s ease forwards;
}
.p-tp-property__arrow span {
  position: absolute;
  font-size: 1.2rem;
  left: 0;
  bottom: -25px;
  text-align: center;
  display: block;
  width: 100%;
  color: var(--c-primary);
}
@media screen and (max-width: 960px) {
  .p-tp-property__arrow {
    width: 125px;
    height: 80px;
    top: inherit;
    /*bottom: -130px;*/
    bottom: 0;
    left: calc(50% - 62px);
    right: auto;
  }
  .p-tp-property__arrow-prev,
  .p-tp-property__arrow-next {
    width: 60px;
    height: 60px;
  }
  .p-tp-property__arrow-prev::before,
  .p-tp-property__arrow-next::before {
    top: 30px;
    left: 27px;
  }
}
@media screen and (max-width: 767px) {
  .p-tp-property__arrow {
    width: 90px;
    height: 40px;
    /*bottom: -70px;*/
    left: calc(50% - 45px);
  }
  .p-tp-property__arrow-prev,
  .p-tp-property__arrow-next {
    width: 40px;
    height: 40px;
  }
  .p-tp-property__arrow-prev::before {
    top: 20px;
    left: 17px;
  }
  .p-tp-property__arrow-next::before {
    top: 20px;
    left: 15px;
  }
}

.p-tp-property-btnarea {
	display: flex;
  justify-content: center;
	gap: 20px;
}
@media screen and (max-width: 960px) {
  .p-tp-property-btnarea {
		display: flex;
	  justify-content: center;
		gap: 10px;
	}
}
@media screen and (max-width: 767px) {
  .p-tp-property-btnarea {
		display: block;
	}
	.p-tp-property__btn {
		margin: 0 auto 10px;
	}
}



/* ----- Top EMPTY ----- */
.p-tp-empty {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-block: 300px;
}
.p-tp-empty__img {
  margin-left: calc( var(--layout_margin-inline) * -1 );
  width: calc( 45% + var(--layout_margin-inline) );
  border-radius: 0 30px 30px 0;
  overflow: hidden;
}
.p-tp-empty__img img {
  width: 100%;
  height: auto;
}
.p-tp-empty-info {
  width: calc(57% - 100px);
}
.p-tp-empty-info__txt {
  margin-bottom: var( --cont_margin-block03 );
}
@media screen and (max-width: 1500px) {
  .p-tp-empty {
    margin-block: 200px;
  }
}
@media screen and (max-width: 1200px) {
  .p-tp-empty {
    display: block;
  }
  .p-tp-empty__img {
    margin: 0 auto var( --cont_margin-block02 );
    width: 100%;
    max-width: 768px;
    border-radius: var( --c_border-radius );
  }
  .p-tp-empty-info {
    width: 100%;
  }
  .p-tp-empty .c-btn {
    margin: 0 auto;
  }
}
@media screen and (max-width: 960px) {
  .p-tp-empty {
    margin-block: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-tp-empty {
    display: block;
  }
  .p-tp-empty-info {
    width: 100%;
  }
	.p-tp-empty-info__txt {
	  margin-bottom: var( --cont_margin-block02 )
	}
}


/* ----- Top COMPANY ----- */
.p-tp-company {
  position: relative;
  padding-bottom: var( --layout_margin-block );
  margin-bottom: var( --layout_margin-block );
}
.p-tp-company:before {
  position: absolute;
  content: "";
  width: calc( 100% + (var(--layout_margin-inline) * 2) );
  height: calc( 100% - 90px);
  top: 90px;
  left: calc(var(--layout_margin-inline) * -1 );
  background: var(--c-secondary);
  z-index: -1;
}
.p-tp-company__tll,
.p-tp-company__en,
.p-tp-company__lead {
  text-align: center;
}
.p-tp-company__cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-tp-company__map {
  width: 55%;
  border-radius: var( --c_border-radius );
  overflow: hidden;
}
.p-tp-company__map iframe {
  display: block;
}
.p-tp-company__info {
  width: calc(45% - 100px);
}
.p-tp-company .c-btn {
  margin: 0 auto;
}
@media screen and (max-width: 1500px) {
  .p-tp-company:before {
    height: calc(100% - 70px);
    top: 70px;
  }
  .p-tp-company__info {
    width: calc(45% - 70px);
  }
}
@media screen and (max-width: 1200px) {
  .p-tp-company__lead {
    text-align: left;
  }
  .p-tp-company__cont {
    display: block;
  }
  .p-tp-company__map {
    width: 100%;
    height: 500px;
    margin-bottom: var( --cont_margin-block03 );
  }
  .p-tp-company__map iframe {
    height: 500px;
  }
  .p-tp-company__info {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .p-tp-company:before {
    height: calc(100% - 65px);
    top: 65px;
  }
}
@media screen and (max-width: 767px) {
  .p-tp-company:before {
    height: calc(100% - 40px);
    top: 40px;
  }
  .p-tp-company__lead {
    text-align: left;
  }
  .p-tp-company__map {
    height: 300px;
    border-radius: var( --c_border-radius );
    margin-bottom: var( --cont_margin-block02 );
  }
  .p-tp-company__map iframe {
    height: 300px;
  }
}
@media screen and (max-width: 600px) {
  .p-tp-company .c-table__ttl {
    width: 30%;
    padding: 20px 0;
    font-weight: 700;
  }
  .p-tp-company .c-table__txt {
    width: 70%;  
    padding: 20px 0;
  }
}

.p-company-main {
  margin-bottom: var(--layout_margin-block);
  padding-bottom: var(--layout_margin-block);
  border-bottom: 1px solid var(--c-border);
}
.p-company-main-greeting {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--layout_margin-block02);
}
.p-company-main-greeting__img {
  width: 47.5%;
}
.p-company-main-greeting__img img {
  width: 100%;
  height: auto;
  border-radius: 0 5px 5px 0;
}
.p-company-main-greeting__info {
  width: 47.5%;
  padding: 0 var(--layout_margin-inline) 0 0;
  position: relative;
  z-index: 1;
}
.p-company-main-greeting__info:before {
  position: absolute;
  content: "GREETING";
  line-height: 1;
  top: -100px;
  left: -50px;
  color: #9bc779;
  font-size: 20rem;
  z-index: -1;
  opacity: 0.1;
}
.p-company-main-greeting__txt {
  font-size: 2rem;
}
.p-company-main-greeting__txt p {
  margin-bottom: 30px;
}
@media screen and (max-width: 1300px) {
  .p-company-main-greeting__info:before {
    top: -70px;
    left: -30px;
    font-size: 15rem;
  }
}
@media screen and (max-width: 960px) {
  .p-company-main-greeting {
    display: block;
    margin: 0 var(--layout_margin-inline) var(--layout_margin-block02);
  }
  .p-company-main-greeting__img {
    width: 60%;
    margin: 0 auto 50px;
  }
  .p-company-main-greeting__img img {
    width: 100%;
    height: auto;
    border-radius: 5px;
  }
  .p-company-main-greeting__info {
    width: 100%;
    padding: 0;
    position: relative;
  }
  .p-company-main-greeting__info:before {
    top: -50px;
    left: -20px;
    font-size: 13rem;
  }
  .p-company-main-greeting__txt {
    font-size: 2rem;
  }
  .p-company-main-greeting__txt p {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-company-main-greeting__img {
    width: 80%;
  }
  .p-company-main-greeting__txt {
    font-size: 1.6rem;
  }
  .p-company-main-greeting__info:before {
    top: -50px;
    left: -10px;
    font-size: 10rem;
  }
}
@media screen and (max-width: 600px) {
  .p-company-main-greeting__img {
    margin: 0 auto 30px;
  }
  .p-company-main-greeting__txt p {
    margin-bottom: 20px;
  }
}

.p-company-main-cont {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--layout_margin-block02);
}
.p-company-main-cont--journey {
  flex-direction: row-reverse;
}
.p-company-main-cont__img {
  width: 42%;
}
.p-company-main-cont__img img {
  border-radius: 5px;
}
.p-company-main-cont__info {
  width: 50%;
  position: relative;
}
.p-company-main-cont__info:before {
  position: absolute;
  content: "GREETING";
  line-height: 1;
  top: -100px;
  left: -50px;
  color: #9bc779;
  font-size: 20rem;
  z-index: -1;
  opacity: 0.1;
}
.p-company-main-cont--journey .p-company-main-cont__info:before {
  content: "JOURNEY";
}
.p-company-main-cont--policy .p-company-main-cont__info:before {
  content: "POLICY";
}
.p-company-main-cont__txt {
  font-size: 2rem;
}
.p-company-main-cont__txt p {
  margin-bottom: 30px;
}
@media screen and (max-width: 1300px) {
  .p-company-main-cont__info:before {
    top: -70px;
    left: -30px;
    font-size: 15rem;
  }
}
@media screen and (max-width: 960px) {
  .p-company-main-cont {
    display: block;
  }
  .p-company-main-cont__img {
    width: 60%;
    margin: 0 auto 50px;
  }
  .p-company-main-cont__info {
    width: 100%;
  }
  .p-company-main-cont__info:before {
    top: -70px;
    left: -30px;
    font-size: 15rem;
  }
}
@media screen and (max-width: 767px) {
  .p-company-main-cont__info:before {
    top: -50px;
    left: -20px;
    font-size: 10rem;
  }
  .p-company-main-cont__txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 600px) {
  .p-company-main-cont__img {
    width: 100%;
    margin: 0 auto 30px;
  }
  .p-company-main-cont__txt p {
    margin-bottom: 20px;
  }
}

.p-company-main-last {
  max-width: 1000px;
  margin: 0 auto;
}
.p-company-main-last__img {
  margin-bottom: var(--layout_margin-inline);
}
.p-company-main-last__img img {
  border-radius: 5px;
}
.p-company-main-last__txt {
  font-size: 2rem;
}
.p-company-main-last__txt p {
  margin-bottom: 30px;
}
.p-company-main-last-sign {
  text-align: right;
  font-size: 1.8rem;
}
.p-company-main-last-sign__name {
  font-size: 3.6rem;
  line-height: 1.4;
}
.p-company-main-last-sign__en {
  font-size: 1.4rem;
}
@media screen and (max-width: 960px) {
  .p-company-main-last {
    display: block;
    margin: 0 var(--layout_margin-inline) var(--layout_margin-block02);
  }
  .p-company-main-last__img {
    width: 60%;
    margin: 0 auto 50px;
  }
  .p-company-main-last__img img {
    width: 100%;
    height: auto;
  }
  .p-company-main-last__txt {
    font-size: 2rem;
  }
  .p-company-main-last-sign {
    text-align: right;
    font-size: 1.6rem;
  }
  .p-company-main-last-sign__name {
    font-size: 3rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .p-company-main-last {
    display: block;
    margin: 0 var(--layout_margin-inline) 0;
  }
  .p-company-main-last__txt {
    font-size: 1.6rem;
  }
  .p-company-main-last-sign {
    text-align: right;
    font-size: 1.4rem;
  }
  .p-company-main-last-sign__name {
    font-size: 2.2rem;
    line-height: 1.4;
  }
  .p-company-main-last-sign__en {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 600px) {
  .p-company-main-last__img {
    width: 100%;
    margin: 0 auto 30px;
  }
  .p-company-main-last__txt p {
    margin-bottom: 20px;
  }
}

.p-company-outline {
  margin-bottom: var(--layout_margin-block);
}
.p-company-outline__ttl,
.p-company-outline__en {
  text-align: center;
}
.p-company-outline__en {
  margin-bottom: var(--cont_margin-block02);
}
.p-company-outline__cont {
  margin-bottom: var(--cont_margin-block02);
}
.p-company-outline .slick-list {
  overflow: visible;
}
.p-company-outline .slick-track {
  display: flex;
  align-items: center;
}
.p-company-outline-gallery p {
  margin: 0 35px;
}
.p-company-outline-gallery__img--01 {
  width: 457px;
}
.p-company-outline-gallery__img--02 {
  width: 610px;
}
.p-company-outline-gallery__img--03 {
  width: 430px;
}
.p-company-outline-gallery__img--04 {
  width: 389px;
}
.p-company-outline-gallery p img {
  border-radius: 5px;
}
@media screen and (max-width: 1500px) {
  .p-company-outline-gallery p {
    margin: 0 30px;
  }
  .p-company-outline-gallery__img--01 {
    width: calc((457 / 1920) * 100vw);
  }
  .p-company-outline-gallery__img--02 {
    width: calc((610 / 1920) * 100vw);
  }
  .p-company-outline-gallery__img--03 {
    width: calc((430 / 1920) * 100vw);
  }
  .p-company-outline-gallery__img--04 {
    width: calc((389 / 1920) * 100vw);
  }
}
@media screen and (max-width: 1300px) {
  .p-company-outline-gallery p {
    margin: 0 20px;
  }
}
@media screen and (max-width: 960px) {
  .p-company-outline-gallery p {
    margin: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-company-outline-gallery p {
    margin: 0 10px;
  }
  .p-company-outline-gallery__img--01 {
    width: calc((350 / 767) * 100vw);
  }
  .p-company-outline-gallery__img--02 {
    width: calc((400 / 767) * 100vw);
  }
  .p-company-outline-gallery__img--03 {
    width: calc((310 / 767) * 100vw);
  }
  .p-company-outline-gallery__img--04 {
    width: calc((250 / 767) * 100vw);
  }
}

.p-company-access {
  margin-bottom: var(--layout_margin-block);
}
.p-company-access__ttl,
.p-company-access__en {
  text-align: center;
}
.p-company-access__en {
  margin-bottom: var(--cont_margin-block02);
}
.p-company-access__cont {
  margin-bottom: var(--cont_margin-block);
}
.p-company-access-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-company-access__map {
  width: 67%;
  border-radius: 5px;
  overflow: hidden;
}
.p-company-access-info {
  width: 26%;
}
.p-company-access-info__logo {
  max-width: 300px;
  margin-bottom: 40px;
}
.p-company-access-info__add {
  margin-bottom: 10px;
  font-size: 1.8rem;
}
.p-company-access-info__tel {
  margin-bottom: 10px;
  font-size: 4rem;
  line-height: 1;
}
.p-company-access-info__tel span {
  margin-bottom: 10px;
  font-size: 2rem;
  color: var(--c-primary);
  line-height: 1;
}
.p-company-access-info__tel a {
  color: var(--c-primary);
  line-height: 1;
}
.p-company-access-info__sche {
  font-size: 1.8rem;
}
@media screen and (max-width: 1500px) {
  .p-company-access__map {
    width: 65%;
  }
  .p-company-access-info {
    width: 30%;
  }
  .p-company-access-info__tel {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 1300px) {
  .p-company-access__map {
    width: 60%;
  }
  .p-company-access-info {
    width: 35%;
  }
  .p-company-access-info__add {
    font-size: 1.6rem;
  }
  .p-company-access-info__tel {
    font-size: 3rem;
  }
  .p-company-access-info__sche {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 960px) {
  .p-company-access-cont {
    display: block;
  }
  .p-company-access__map {
    width: 100%;
    margin-bottom: 30px;
  }
  .p-company-access__map iframe {
    height: 60vw;
  }
  .p-company-access-info {
    width: 100%;
    text-align: center;
  }
  .p-company-access-info__logo {
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-company-access__map iframe {
    height: 90vw;
  }
  .p-company-access-info__logo {
    max-width: 250px;
    margin: 0 auto 20px;
  }
  .p-company-access-info__add {
    font-size: 1.4rem;
  }
  .p-company-access-info__tel {
    font-size: 3rem;
  }
  .p-company-access-info__tel span {
    font-size: 1.4rem;
  }
  .p-company-access-info__sche {
    font-size: 1.4rem;
  }
}

/*--FAQ--*/
.p-faq {
  margin-bottom: var(--layout_margin-block);
  position: relative;
}

.p-faq__innerlink {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  column-gap: 20px;
  margin-bottom: var( --cont_margin-block );
  counter-reset: number;
}
.p-faq__innerlink li {
  width: calc( (100% - 80px) / 5 );
  counter-increment: number;
  border-top: 1px solid var( --c-primary );
  border-bottom: 1px solid var( --c-primary );
}
.p-faq__innerlink li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 30px 20px 30px 50px;
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  height: 100%;
}
.p-faq__innerlink li a:before {
  position: absolute;
  content: counter(number, decimal-leading-zero) " ";
  top: calc( 50% - 10px );
  left: 0;
  height: 20px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  width: fit-content;
  background: var(--c-primary);
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  border-radius: 10px;
}
.p-faq__innerlink li a:after {
  position: absolute;
  content: "";
  top: calc( 50% - 5px );
  right: 20px;
  width: 8px;
  height: 8px;
  border: 2px solid var( --c-primary );
  transform:rotate(45deg);
  border-top: none;
  border-left: none;
}
@media screen and (max-width: 1200px) {
  .p-faq__innerlink {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 20px;
    margin-bottom: var( --cont_margin-block );
    counter-reset: number;
  }
  .p-faq__innerlink::after{
    content:"";
    display: block;
    width: calc( (100% - 40px) / 3 );
  }
  .p-faq__innerlink li {
    width: calc( (100% - 40px) / 3 );
    counter-increment: number;
    border-top: 1px solid var( --c-primary );
    border-bottom: 1px solid var( --c-primary );
    margin-bottom: 20px;
  }
  .p-faq__innerlink li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0 20px 50px;
    position: relative;
    font-size: 1.8rem;
    font-weight: 700;
    height: 100%;
  }
  .p-faq__innerlink li a:before {
    position: absolute;
    content: counter(number, decimal-leading-zero) " ";
    top: calc( 50% - 10px );
    left: 0;
    height: 20px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    width: fit-content;
    background: var(--c-primary);
    font-size: 1.4rem;
    line-height: 1;
    color: #fff;
    border-radius: 10px;
  }
}
@media screen and (max-width: 960px) {
  .p-faq__innerlink {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 20px;
    margin-bottom: var( --cont_margin-block );
    counter-reset: number;
  }
  .p-faq__innerlink::after{
    content:"";
    display: block;
    width: calc( (100% - 40px) / 3 );
  }
  .p-faq__innerlink li {
    width: calc( (100% - 40px) / 3 );
    counter-increment: number;
    border-top: 1px solid var( --c-primary );
    border-bottom: 1px solid var( --c-primary );
    margin-bottom: 20px;
  }
  .p-faq__innerlink li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0 20px 50px;
    position: relative;
    font-size: 1.8rem;
    font-weight: 700;
    height: 100%;
  }
  .p-faq__innerlink li a:before {
    position: absolute;
    content: counter(number, decimal-leading-zero) " ";
    top: calc( 50% - 10px );
    left: 0;
    height: 20px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    width: fit-content;
    background: var(--c-primary);
    font-size: 1.4rem;
    line-height: 1;
    color: #fff;
    border-radius: 10px;
  }
}
@media screen and (max-width: 769px) {
  .p-faq__innerlink {
    display: block;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 20px;
    margin-bottom: var( --cont_margin-block );
    counter-reset: number;
  }
  .p-faq__innerlink::after{
    content:"";
    display: block;
    width: calc( (100% - 40px) / 3 );
  }
  .p-faq__innerlink li {
    width: 100%;
    counter-increment: number;
    border-top: 1px solid var( --c-primary );
    border-bottom: 1px solid var( --c-primary );
    margin-bottom: 10px;
  }
  .p-faq__innerlink li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 0 15px 50px;
    position: relative;
    font-size: 1.6rem;
    font-weight: 700;
    height: 100%;
  }
  .p-faq__innerlink li a:before {
    position: absolute;
    content: counter(number, decimal-leading-zero) " ";
    top: calc( 50% - 10px );
    left: 0;
    height: 20px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    width: fit-content;
    background: var(--c-primary);
    font-size: 1.2rem;
    line-height: 1;
    color: #fff;
    border-radius: 10px;
  }
}


.p-faq-cat {
  margin-bottom: var(--cont_block-l);
  display: flex;
  justify-content: space-between;
}
.p-faq-cat-side {
  width: 350px;
  position: relative;
  padding-top: 50px;
  border-top: 1px solid var(--c-border);
}
.p-faq-cat-side:before {
  position: absolute;
  content: "";
  top: -1px;
  left: 0;
  width: 50px;
  height: 1px;
  background: var(--c-primary);
}
.p-faq-cat-side__inner {
  width: 350px;
}
.p-faq-cat__en {
  font-size: 1.4rem;
  color: var(--c-primary);
}
.p-faq-cat__ttl {
  font-size: 3.6rem;
  font-weight: 700;
}
.p-faq-cat__list {
  width: calc(100% - 450px);
}
.p-faq-cat:last-child .p-faq-cat__list {
  border-bottom: 1px solid var(--c-border);
}
.p-faq-list {
  border-top: 1px solid var(--c-border);
  position: relative;
  cursor: pointer;
  padding: 50px 0;
}
.p-faq-list:before {
  position: absolute;
  content: "";
  width: 1px;
  height: calc(100% - 40px);
  top: 20px;
  left: 100px;
  background: var(--c-border);
}
.p-faq-list__q {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  padding: 0 60px 0 150px;
}
.p-faq-list__q:before {
  position: absolute;
  content: "Q";
  width: 100px;
  height: 100%;
  top: 0;
  left: 0;
  color: var(--c-primary);
  font-size: 3.6rem;
  line-height: 1;
  text-align: center;
  font-weight: 400;
}
.p-faq-list__txt {
  padding: 30px 60px 0 150px;
  position: relative;
}
.p-faq-list__txt * {
  font-size: 1.8rem;
}
.p-faq-list__btn {
  position: absolute;
  width: 25px;
  height: 25px;
  right: 20px;
  top: 55px;
}
.p-faq-list__btn:before,
.p-faq-list__btn:after {
  position: absolute;
  content: "";
  transition: .5s ease-in-out;
}
.p-faq-list__btn:before {
  width: 25px;
  height: 2px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--c-primary);
}
.p-faq-list__btn:after {
  width: 2px;
  height: 25px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--c-primary);
}
.p-faq-list__btn.active:before {
  display: none;
}
.p-faq-list__btn.active:after {
  transform: translateY(-50%) rotate(-90deg);
}
@media screen and (max-width: 1500px) {
  .p-faq-cat-side {
    width: 300px;
  }
  .p-faq-cat-side__inner {
    width: 300px;
  }
  .p-faq-cat__ttl {
    font-size: 3.2rem;
  }
  .p-faq-cat__list {
    width: calc(100% - 350px);
  }
}
@media screen and (max-width: 1200px) {
  .p-faq-cat-side {
    width: 200px;
  }
  .p-faq-cat-side__inner {
    width: 200px;
  }
  .p-faq-cat__ttl {
    font-size: 2.6rem;
  }
  .p-faq-cat__list {
    width: calc(100% - 230px);
  }
  .p-faq-list:before {
    left: 70px;
  }
  .p-faq-list__q {
    padding: 0 60px 0 100px;
  }
  .p-faq-list__q:before {
    width: 70px;
    height: 70%;
    font-size: 3.2rem;
  }
  .p-faq-list__txt {
    padding: 20px 60px 0 100px;
  }
}
@media screen and (max-width: 960px) {
  .p-faq-cat-side {
    width: 170px;
  }
  .p-faq-cat-side__inner {
    width: 170px;
  }
  .p-faq-cat__en {
    font-size: 1.2rem;
  }
  .p-faq-cat__ttl {
    font-size: 2.2rem;
  }
  .p-faq-cat__list {
    width: calc(100% - 200px);
  }
  .p-faq-list:before {
    left: 70px;
  }
  .p-faq-list__q {
    font-size: 1.8rem;
    padding: 0 40px 0 100px;
  }
  .p-faq-list__q:before {
    font-size: 2.6rem;
  }
  .p-faq-list__txt {
    padding: 20px 40px 0 100px;
  }
  .p-faq-list__btn {
    right: 10px;
  }
}
@media screen and (max-width: 769px) {
  .p-faq-cat {
    margin-bottom: var(--layout_margin-block);
    display: block;
    border-bottom: 1px solid var(--c-border);
  }
  .p-faq-cat-side {
    width: 100%;
    padding: 30px 0;
  }
  .p-faq-cat-side__inner {
    width: 100%;
  }
  .p-faq-cat__ttl {
    font-size: 2.2rem;
  }
  .p-faq-cat__list {
    width: 100%;
  }
  .p-faq-list {
    padding: 30px 0;
  }
  .p-faq-list:before {
    left: 40px;
  }
  .p-faq-list__q {
    font-size: 1.6rem;
    padding: 0 30px 0 60px;
  }
  .p-faq-list__q:before {
    width: 35px;
    height: 70px;
    font-size: 2.4rem;
  }
  .p-faq-list__txt {
    padding: 10px 30px 0 60px;
  }
  .p-faq-list__txt * {
    font-size: 1.4rem;
  }
  .p-faq-list__btn {
    width: 20px;
    height: 20px;
    right: 0;
    top: 33px;
  }
  .p-faq-list__btn:before {
    width: 20px;
    height: 2px;
  }
  .p-faq-list__btn:after {
    width: 2px;
    height: 20px;
  }
}

/* ----- Top News -----*/
/* Contents */
.p-tp-news {
  margin-block: 0 var(--layout_margin-block);
  display: flex;
  justify-content: space-between;
}
.p-tp-news-head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 300px;
  text-align: left;
}
.p-tp-news-head__ttl {
  font-size: 4.4rem;
  line-height: 1.0;
}
.p-tp-news-head__en {
  font-size: 5.5rem;
  margin-bottom: 20px;
  color: var(--c-primary);
  line-height: 1.0;

}
.p-tp-news-head__jp {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.0;
}
.p-tp-news-head__btn {
  height: 40px;
  width: fit-content;
}
.p-tp-news-head__btn a {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  color: var(--c-primary);
  padding: 0 70px 0 0;
  height: 40px;
  position: relative;
}
.p-tp-news-head__btn a:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  background: var(--c-primary);
  top: 0;
  right: 0;
  border-radius: 40px;
  transition: all .3s ease-in-out;
}
.p-tp-news-head__btn a:after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-right: none;
  border-top: none;
  top: 50%;
  right: 18px;
  transform: translateY(-50%) rotate(-135deg);
}
.p-tp-news-head__btn a:hover:before {
  transform: scale(1.2);
}
.p-tp-news-head__btn a:hover:after {
  animation: slideIcon02 0.5s ease forwards;
}
.p-tp-news-list {
  width: calc(100% - 300px);
  border-top: 1px solid var(--c-border);
}
.p-tp-news-list-item {
  border-bottom: 1px solid var(--c-border);
}
.p-tp-news-list-item a {
  padding: 20px 25px 20px 0;
  display: flex;
  align-items: center;
  position: relative;
  transition: all .3s ease-in-out;
}
.p-tp-news-list-item a:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid var(--c-primary);
  border-right: none;
  border-top: none;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(-135deg);
  transition: all .3s ease-in-out;
}
.p-tp-news-list-item__date {
  width: 130px;
  padding: 10px 0;
  border-right: 1px solid var(--c-border);
  margin-right: 40px;
  color: var(--c-primary);
  font-size: 1.4rem;
  line-height: 1.2;
  transition: all .3s ease-in-out;
}
.p-tp-news-list-item__date span {
  font-size: 2.8rem;
  line-height: 1.2;
  color: var(--c-primary);
}
.p-tp-news-list-item__ttl {
  font-size: 2.0rem;
  line-height: 1.4;
}
@media (hover: hover) and (pointer: fine) {
  .p-tp-news-list-item a:hover {
    background: var(--c-secondary);
	  padding: 20px 15px 20px 10px;
  }
	.p-tp-news-list-item a:hover:before {
	  right: 10px;
	}
}
@media screen and (max-width: 1300px) {
  .p-tp-news-head {
    width: 250px;
  }
  .p-tp-news-list {
    width: calc(100% - 250px);
  }
}
@media screen and (max-width: 1200px) {
  .p-tp-news-list-item__date {
    width: 110px;
    margin-right: 30px;
  }
  .p-tp-news-list-item__date span {
    font-size: 2.6rem;
  }
  .p-tp-news-list-item__ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 960px) {
  .p-tp-news {
    display: block;
  }
  .p-tp-news-head {
    width: 100%;
    margin-bottom: var( --cont_margin-block03 );
  }
  .p-tp-news-list {
    width: 100%;
    margin-bottom: var( --cont_margin-block03 );
  }
  .p-tp-news-list-item__date {
    width: 100px;
    font-size: 1.3rem;
  }
  .p-tp-news-list-item__date span {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-tp-news-head {
    margin-bottom: 30px;
  }
  .p-tp-news-list {
    margin-bottom: 30px;
  }
  .p-tp-news-head__en {
    font-size: 3.5rem;
    margin-bottom: 10px;
  }
  .p-tp-news-head__jp {
    font-size: var(--c-fontsize);
  }
  .p-tp-news-list-item a {
    padding: 10px 25px 10px 0;
  }
  .p-tp-news-list-item a:before {
    right: 10px;
  }
  .p-tp-news-list-item__date {
    width: 70px;
    margin-right: 20px;
    font-size: 1.2rem;
  }
  .p-tp-news-list-item__date span {
    font-size: var(--c-fontsize);
  }
  .p-tp-news-list-item__ttl {
    width: calc(100% - 90px);
    font-size: var(--c-fontsize);
  }
}
@media screen and (max-width: 500px) {
  .p-tp-news-list-item a {
    padding: 10px 15px 10px 0;
  }
  .p-tp-news-list-item a:before {
    right: 0;
  }
  .p-tp-news-list-item__date {
    width: 60px;
    margin-right: 10px;
  }
  .p-tp-news-list-item__ttl {
    width: calc(100% - 70px);
    font-size: 1.4rem;
  }
}

/*-- p-special-banner --*/
.p-special-banner {
  width: fit-content;
  margin-bottom: var( --layout_margin-block );
  text-align: center;
  width: calc( 100% - var(--layout_margin-inline) * 2 );
}
.p-special-banner img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
}


/* =================================================
下層ページ
================================================= */

/* まちづくり不動産について
------------------------------------------------- */
.p-about-main {
  position: relative;
  padding: 250px 0 var( --layout_margin-block );
}
@media screen and (max-width: 1500px) {
  .p-about-main {
    padding-top: 150px;
  }
}
@media screen and (max-width: 1100px) {
  .p-about-main {
    padding-top: 100px;
  }
}
@media screen and (max-width: 960px) {
  .p-about-main {
    padding-top: 70px;
  }
}
@media screen and (max-width: 767px) {
  .p-about-main {
    padding-top: 50px;
  }
}
.p-about-main__inner { 
  padding: 1px var(--layout_margin-inline) 200px;
  margin-block: 0;
  border-radius: 30px;
  background: var(--c-secondary);
  position: relative;
  z-index: 1;
}
.sub .p-about-main__inner {
  background: #fff;
}
.p-about-main__inner::before {
  position: absolute;
  content: "MACHIDUKURI";
  width: 100%;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1.0;
  z-index: -1;
  letter-spacing: 0.05em;
  color: var(--c-secondary);
  font-size: 18.2rem;
  top: -145px;
}
.sub .p-about-main__inner::before {
  color: #fff;
}
@media screen and (max-width: 1500px) {
  .p-about-main__inner::before {
    font-size: 15rem;
    top: -125px;
  }
}
@media screen and (max-width: 1300px) {
  .p-about-main__inner::before {
    font-size: 12rem;
    top: -95px;
  }
}
@media screen and (max-width: 1100px) {
  .p-about-main__inner::before {
    font-size: 11rem;
    top: -90px;
  }
}
@media screen and (max-width: 960px) {
  .p-about-main__inner { 
    padding: 1px var(--layout_margin-inline) 100px;
  }
  .p-about-main__inner::before {
    font-size: 8.5rem;
    top: -70px;
  }
}
@media screen and (max-width: 767px) {
  .p-about-main__inner { 
    padding: 1px var(--layout_margin-inline) 20px;
    border-radius: 15px;
  }
  .p-about-main__inner::before {
    font-size: calc((70 / 798) * 100vw);
    top: calc((-55 / 798) * 100vw);
  }
}
.p-about-main-list {
  margin: -120px calc(-1 * var(--layout_margin-inline)) 30px;
  display: flex;
  justify-content: center;
}
.p-about-main-list__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 30px;
}
.p-about-main-list-item {
  width: 178px;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  background: var(--c-primary);
  text-align: center;
  padding-top: 15px;
}
.p-about-main-list-item:nth-child(odd) {
  margin-top: 60px;
}
.p-about-main-list-item__img {
  margin: 0 auto;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-about-main-list-item__txt {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.01em;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-about-main-list-item:nth-child(1) .p-about-main-list-item__img img {
  width: 36px;
}
.p-about-main-list-item:nth-child(2) .p-about-main-list-item__img img {
  width: 37px;
}
.p-about-main-list-item:nth-child(3) .p-about-main-list-item__img img {
  width: 45px;
}
.p-about-main-list-item:nth-child(4) .p-about-main-list-item__img img {
  width: 42px;
}
.p-about-main-list-item:nth-child(5) .p-about-main-list-item__img img {
  width: 46px;
}
@media screen and (max-width: 1500px) {
  .p-about-main-list {
    margin: -90px calc(-1 * var(--layout_margin-inline)) 30px;
  }
  .p-about-main-list-item {
    width: 150px;
  }
  .p-about-main-list-item__img {
    height: 50px;
  }
  .p-about-main-list-item__txt {
    font-size: 1.8rem;
    height: 55px;
  }
}
@media screen and (max-width: 1100px) {
  .p-about-main-list {
    margin: -70px calc(-1 * var(--layout_margin-inline)) 30px;

  }
  .p-about-main-list__inner {
    column-gap: 20px;
  }
  .p-about-main-list-item {
    width: 120px;
  }
  .p-about-main-list-item__img {
    height: 40px;
  }
  .p-about-main-list-item__img img {
    transform: scale(0.8);
  }
  .p-about-main-list-item__txt {
    font-size: 1.4rem;
    height: 55px;
  }
}
@media screen and (max-width: 960px) {
  .p-about-main-list {
    margin: -50px calc(-1 * var(--layout_margin-inline)) 30px;
  }
  .p-about-main-list__inner {
    column-gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-about-main-list {
    margin: -20px -20px 30px;
  }
  .p-about-main-list__inner {
    column-gap: 10px;
    max-width: 320px;
  }
  .p-about-main-list-item {
    width: 100px;
  }
  .p-about-main-list-item__img {
    height: 30px;
  }
  .p-about-main-list-item__img img {
    transform: scale(0.7);
  }
  .p-about-main-list-item__txt {
    font-size: 1.2rem;
    height: 45px;
  }
  .p-about-main-list-item:nth-child(odd),
  .p-about-main-list-item:last-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 500px) {
  .p-about-main-list {
    margin: -20px -20px 30px;
  }
  .p-about-main-list__inner {
    column-gap: 5px;
    width: 310px;
  }
  .p-about-main-list-item {
    width: 100px;
    padding-top: 10px;
  }
  .p-about-main-list-item__img {
    height: 25px;
  }
  .p-about-main-list-item__img img {
    transform: scale(0.6);
  }
}
.p-about-main-info__en {
  margin-bottom: 50px;
  color: var(--c-primary);
  font-size: 1.2rem;
  text-align: center;
}
.p-about-main-info__catch {
  margin-bottom: 60px;
  color: var(--c-tertiary);
  font-size: 5.5rem;
  font-weight: 700;
  text-align: center;
}
.p-about-main-info__lead {
  margin-bottom: 60px;
  font-weight: 700;
  text-align: center;
}
.p-about-main-info__txt {
  margin-bottom: 70px;
  text-align: center;
}
.p-about-main__btn {
  margin: 0 auto;
}
@media screen and (max-width: 1500px) {
  .p-about-main-info__en {
    margin-bottom: 30px;
  }
  .p-about-main-info__catch {
    margin-bottom: 50px;
    font-size: 4.5rem;
  }
  .p-about-main-info__lead {
    margin-bottom: 30px;
  }
  .p-about-main-info__txt {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1300px) {
  .p-about-main-info__catch {
    margin-bottom: 30px;
    font-size: 4.5rem;
  }
  .p-about-main-info__lead {
    margin-bottom: 30px;
  }
  .p-about-main-info__txt {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .p-about-main-info__catch {
    font-size: 4rem;
  }
  .p-about-main-info__txt {
    text-align: left;
  }
}
@media screen and (max-width: 960px) {
  .p-about-main-info__catch {
    font-size: 3.5rem;
  }
  .p-about-main-info__txt {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .p-about-main-info {
    margin-bottom: 50px;
  }
  .p-about-main-info__en {
    margin-bottom: 10px;
  }
  .p-about-main-info__catch {
    margin-bottom: 20px;
    font-size: 2.5rem;
  }
  .p-about-main-info__lead {
    margin-bottom: 20px;
  }
  .p-about-main-info__txt {
    margin-bottom: 30px;
  }
}
.p-about-main-gallery {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.p-about-main-gallery__img {
  position: absolute;
}
.p-about-main-gallery__img img {
  border-radius: 20px;
}
.p-about-main-gallery__img--01 {
  top: 100px;
  left: -100px;
}
.p-about-main-gallery__img--02 {
  bottom: 200px;
  left: -50px;
}
.p-about-main-gallery__img--03 {
  top: 150px;
  right: -75px;
}
.p-about-main-gallery__img--04 {
  bottom: 150px;
  right: -100px;
}
@media screen and (max-width: 1920px) {
	.p-about-main-gallery__img--01 img {
	  border-radius: 0 20px 20px 0;
	}
	.p-about-main-gallery__img--04 img {
	  border-radius: 20px 0 0 20px;
	}
}
@media screen and (max-width: 1800px) {
  .p-about-main-gallery__img--01 {
    width: calc((329 / 1800) * 100vw);
  }
  .p-about-main-gallery__img--02 {
    width: calc((248 / 1800) * 100vw);
    bottom: 150px;
    left: -50px;
  }
  .p-about-main-gallery__img--03 {
    width: calc((360 / 1800) * 100vw);
    right: -75px;
  }
  .p-about-main-gallery__img--04 {
    width: calc((326 / 1800) * 100vw);
    right: -100px;
  }
}
@media screen and (max-width: 1500px) {
  .p-about-main-gallery__img--02 {
    width: calc((300 / 1800) * 100vw);
    bottom: 100px;
  }
  .p-about-main-gallery__img--03 {
    width: calc((320 / 1800) * 100vw);
  }
  .p-about-main-gallery__img--04 {
    width: calc((360 / 1800) * 100vw);
    bottom: 75px;
  }
}
@media screen and (max-width: 1400px) {
  .p-about-main-gallery__img--03 {
    width: calc((300 / 1800) * 100vw);
    top: 120px;
    right: -60px;
  }
  .p-about-main-gallery__img--04 {
    bottom: 80px;
  }
}
@media screen and (max-width: 1300px) {
  .p-about-main-gallery__img--01 {
    width: calc((310 / 1800) * 100vw);
    top: 120px;
    left: -50px;
  }
  .p-about-main-gallery__img--02 {
    left: -25px;
  }
  .p-about-main-gallery__img--03 img {
    border-radius: 20px 0 0 20px;
  }
  .p-about-main-gallery__img--04 {
    right: -50px;
  }
}
@media screen and (max-width: 1200px) {
  .p-about-main-gallery__img--01 {
    width: calc((329 / 1800) * 100vw);
    top: 100px;
  }
  .p-about-main-gallery__img--02 {
    left: -25px;
  }
  .p-about-main-gallery__img--03 {
    width: calc((350 / 1800) * 100vw);
    top: 70px;
  }
  .p-about-main-gallery__img--04 {
    width: calc((400 / 1800) * 100vw);
  }
}
@media screen and (max-width: 960px) {
  .p-about-main-gallery__img--02 {
    bottom: 75px;
  }
  .p-about-main-gallery__img--03 {
    top: 100px;
  }
  .p-about-main-gallery__img--04 {
    bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-about-main-gallery {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    display: none;
  }
  .p-about-main-gallery__img {
    position: relative;
  }
  .p-about-main-gallery__img img {
    border-radius: 10px;
  }
  .p-about-main-gallery__img--01 {
    width: 35%;
    top: inherit;
    left: inherit;
    margin-left: 20px;
  }
  .p-about-main-gallery__img--02 {
    width: 45%;
    top: inherit;
    left: inherit;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 20px;
  }
  .p-about-main-gallery__img--03 {
    width: 55%;
    top: inherit;
    left: inherit;
    margin-top: 0;
    margin-bottom: 0;
  }
  .p-about-main-gallery__img--04 {
    width: 35%;
    top: inherit;
    left: inherit;
    margin-top: 40px;
    margin-right: 10px;
  }
}

/* ----- FEATURE ----- */
.p-about-features {
  position: relative;
  margin-bottom: var(--layout_margin-block);
}
.p-about-features::before {
  position: absolute;
  content: "FEATURES";
  top: 80px;
  right: -30px;
  font-size: 20rem;
  line-height: 1;
  color: #eff9e7;
  z-index: -1;
}
.p-about-features::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 80%;
  height: 100%;
  background: var(--c-secondary);
  border-radius: 30px 0 0 30px;
  z-index: -2;
}
.p-about-features__inner {
  padding-block: var(--layout_margin-block);
}
.p-about-features__catch {
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-primary);
  text-align: center;
}
.p-about-features__catch span {
  font-size: 4rem;
  color: var(--c-primary);
}
.p-about-features__ttl {
  font-size: 4.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 100px;
}
.p-about-features__info {
  display: flex;
  justify-content: space-between;
  column-gap: 50px;
}
.p-about-features-list {
  width: calc((100% - 100px) / 3);
}
.p-about-features-list:nth-child(2) {
  margin-top: 100px;
}
.p-about-features-list:nth-child(3) {
  margin-top: 50px;
}
.p-about-features-list__img {
  border-radius: 5px;
  overflow: hidden;
}
.p-about-features-list__img img {
  width: 100%;
  height: auto;
}
.p-about-features-list__info {
  width: 47%;
}
.p-about-features-list__num {
  height: 20px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  width: fit-content;
  background: var(--c-primary);
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  border-radius: 10px;
  margin: -10px 0 40px -10px;
  z-index: 1;
  position: relative;
}
.p-about-features-list__ttl {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--c-tertiary);
}
.sub .p-about-features::after {
  display: none;
}
.sub .p-about-features__inner {
  padding-block: 0;
}
.sub .p-about-features__info {
  display: block;
}
.sub .p-about-features-list {
  width: 100%;
  margin-bottom: var(--cont_margin-block);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sub .p-about-features-list:nth-child(2) {
  margin-top: 0;
  flex-direction: row-reverse;
}
.sub .p-about-features-list__img {
  width: 47%;
  border-radius: 20px;
}
.sub .p-about-features-list__num {
  height: 20px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  width: fit-content;
  background: var(--c-primary);
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  border-radius: 10px;
  margin: 0 0 20px 0;
  z-index: 1;
  position: relative;
}
.sub .p-about-features-list__ttl {
  font-size: 3.4rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--c-tertiary);
}
@media screen and (max-width: 1500px) {
  .p-about-features__ttl {
    margin-bottom: 70px;
  }
  .p-about-features-list__num {
    margin-bottom: 30px;
  }
  .p-about-features-list__ttl {
    font-size: 2.6rem;
    margin-bottom: 20px;
  }
  .sub .p-about-features-list__ttl {
    font-size: 2.6rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1300px) {
  .p-about-features::before {
    right: -70px;
  }
  .p-about-features__catch span {
    font-size: 3.5rem;
  }
  .p-about-features__ttl {
    font-size: 3.5rem;
    margin-bottom: 50px;
  }
  .p-about-features__info {
    column-gap: 30px;
  }
  .p-about-features-list {
    width: calc((100% - 60px) / 3);
  }
  .p-about-features-list:nth-child(2) {
    margin-top: 70px;
  }
  .p-about-features-list:nth-child(3) {
    margin-top: 30px;
  }
  .p-about-features-list__ttl {
    font-size: 2.4rem;
  }
  .p-about-features-list__txt {
    font-size: 2rem;
  }
  .sub .p-about-features-list__ttl {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 960px) {
  .p-about-features::before {
    top: 50px;
    font-size: 15rem;
  }
  .p-about-features__catch {
    font-size: 1.8rem;
  }
  .p-about-features__catch span {
    font-size: 3rem;
  }
  .p-about-features__ttl {
    font-size: 3rem;
    margin-bottom: 50px;
  }
  .p-about-features-list:nth-child(2) {
    margin-top: 50px;
  }
  .p-about-features-list:nth-child(3) {
    margin-top: 25px;
  }
  .p-about-features-list__num {
    margin-bottom: 20px;
  }
  .p-about-features-list__ttl {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
  .p-about-features-list__txt {
    font-size: 1.8rem;
  }
  .sub .p-about-features-list__ttl {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
  .sub .p-about-features-list__txt {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-features {
    overflow: hidden;
  }
  .p-about-features::before {
    top: 40px;
    left: 10%;
    font-size: 10rem;
    width: 150vw;
  }
  .p-about-features__catch {
    font-size: 1.4rem;
  }
  .p-about-features__catch span {
    font-size: 2rem;
  }
  .p-about-features__ttl {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .p-about-features__info {
    display: block;
  }
  .p-about-features-list {
    width: 100%;
    margin-bottom: 30px;
  }
  .p-about-features-list:nth-child(2) {
    margin-top: 0;
  }
  .p-about-features-list:last-child {
    margin-bottom: 0;
  }
  .p-about-features-list__img {
    width: fit-content;
    margin: 0 auto;
  }
  .p-about-features-list__num {
    margin: -10px auto 20px;
  }
  .p-about-features-list__ttl {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .p-about-features-list__txt {
    font-size: var(--c-fontsize);
  }
  .sub .p-about-features-list {
    display: block;
    margin-bottom: 30px;
  }
  .sub .p-about-features-list__img {
    width: fit-content;
    margin: 0 auto;
  }
  .sub .p-about-features-list__num {
    margin: -10px auto 20px;
  }
  .sub .p-about-features-list__info {
    width: 100%;
  }
  .sub .p-about-features-list__ttl {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .sub .p-about-features-list__txt {
    font-size: var(--c-fontsize);
  }
}
.p-about-voice {
  position: relative;
  padding-bottom: var( --layout_margin-block02 );
  margin-bottom: var( --layout_margin-block );
}
.p-about-voice:before {
  position: absolute;
  content: "";
  width: calc( 100% + (var(--layout_margin-inline) * 2) );
  height: calc( 100% - 90px);
  top: 90px;
  left: calc(var(--layout_margin-inline) * -1 );
  background: var(--c-secondary);
  z-index: -1;
}
.p-about-voice__ttl,
.p-about-voice__en,
.p-about-voice__lead {
  text-align: center;
}
.p-about-voice__cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var( --cont_margin-block03 );
}
.p-about-voice__map {
  width: 55%;
  border-radius: var( --c_border-radius );
  overflow: hidden;
}
.p-about-voice__map iframe {
  display: block;
}
.p-about-voice__info {
  width: calc(45% - 100px);
}
.p-about-voice .c-btn {
  margin: 0 auto;
}
@media screen and (max-width: 1500px) {
  .p-about-voice:before {
    height: calc(100% - 70px);
    top: 70px;
  }
  .p-about-voice__info {
    width: calc(45% - 70px);
  }
}
@media screen and (max-width: 1200px) {
  .p-about-voice__lead {
    text-align: left;
  }
  .p-about-voice__cont {
    display: block;
  }
  .p-about-voice__map {
    width: 100%;
    height: 500px;
    margin-bottom: var( --cont_margin-block03 );
  }
  .p-about-voice__map iframe {
    height: 500px;
  }
  .p-about-voice__info {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .p-about-voice:before {
    height: calc(100% - 65px);
    top: 65px;
  }
}
@media screen and (max-width: 767px) {
  .p-about-voice:before {
    height: calc(100% - 40px);
    top: 40px;
  }
  .p-about-voice__lead {
    text-align: left;
  }
  .p-about-voice__map {
    height: 300px;
    border-radius: var( --c_border-radius );
    margin-bottom: var( --cont_margin-block03 );
  }
  .p-about-voice__map iframe {
    height: 300px;
  }
}
@media screen and (max-width: 600px) {
  .p-about-voice .c-table__ttl {
    width: 30%;
    padding: 20px 0;
    font-weight: 700;
  }
  .p-about-voice .c-table__txt {
    width: 70%;  
    padding: 20px 0;
  }
}


/* 不動産売却
------------------------------------------------- */
.p-sales-main {
  position: relative;
  padding-bottom: var(--layout_margin-block);
  margin-bottom: var(--layout_margin-block);
  border-bottom: 1px solid var(--c-border);
}
.p-sales-main__cont {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  position: relative;
  z-index: 1;
}
.p-sales-main-list {
  width: calc((100% - 100px) / 3);
  margin-bottom: var(--cont_margin-block02);
}
.p-sales-main-list:nth-child(4),
.p-sales-main-list:nth-child(5) {
  margin-bottom: 0;
}
.p-sales-main-list__photo {
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 30px;
}
.p-sales-main-list__num {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 50px;
  height: 20px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  line-height: 1;
}
.p-sales-main-list__img {
  width: 100%;
  overflow: hidden;
  transition: all .3s ease-in-out;
}
.p-sales-main-list__img img {
  width: 100%;
  height: auto;
  transition: all .3s ease-in-out;
}
.p-sales-main-list__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--c-tertiary);
}
.p-sales-main-list__txt {
  margin-bottom: 50px;
}
@media screen and (max-width: 1500px) {
  .p-sales-main__cont {
    gap: 30px;
  }
  .p-sales-main-list {
    width: calc((100% - 60px) / 3);
  }
}
@media screen and (max-width: 1300px) {
  .p-sales-main__cont {
    gap: 20px;
  }
  .p-sales-main-list {
    width: calc((100% - 40px) / 3);
  }
  .p-sales-main-list__ttl {
    font-size: 2.2rem;
  }
  .p-sales-main-list__txt {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .p-sales-main__cont {
    gap: 20px;
  }
  .p-sales-main-list {
    width: calc((100% - 40px) / 3);
  }
  .p-sales-main-list__num {
    top: 30px;
    left: 30px;
  }
  .p-sales-main-list__ttl {
    font-size: 2.2rem;
  }
  .p-sales-main-list__txt {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 960px) {
  .p-sales-main__cont {
    gap: 20px;
  }
  .p-sales-main-list {
    width: calc((100% - 20px) / 2);
  }
  .p-sales-main-list__num {
    top: 20px;
    left: 20px;
  }
  .p-sales-main-list__ttl {
    font-size: 2rem;
  }
  .p-sales-main-list__txt {
    font-size: 1.8rem;
  }
  .p-sales-main-list__head::after {
    width: 50px;
    height: 50px;
    right: 20px;
    bottom: 20px;
  }
  .p-sales-main-list__head::before {
    right: 42px;
    bottom: 42px;
  }
}
@media screen and (max-width: 767px) {
  .p-sales-main__cont {
    gap: 10px;
  }
  .p-sales-main-list {
    width: calc((100% - 10px) / 2);
  }
  .p-sales-main-list__ttl {
    font-size: 1.8rem;
  }
  .p-sales-main-list__txt {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .p-sales-main-list__head::after {
    width: 40px;
    height: 40px;
    right: 15px;
    bottom: 15px;
  }
  .p-sales-main-list__head::before {
    right: 32px;
    bottom: 32px;
  }
}
@media screen and (max-width: 600px) {
  .p-sales-main-list {
    width: 100%;
  }
  .p-sales-main-list:nth-child(4),
  .p-sales-main-list:nth-child(5) {
    margin-bottom: var(--cont_margin-block02);
  }
}

/*-- 不動産売却の流れ --*/
.p-sales-flow {
  position: relative;
  margin-bottom: var(--layout_margin-block);
}

.p-selfquick {
  border-radius: 30px;
  border: 3px solid var(--c-primary);
  padding: 147px;
  position: relative;
  overflow: hidden;
  margin-bottom: var(--layout_margin-block);
}
.p-selfquick:before {
  position: absolute;
  content: "SELF \A QUICK \A APPRAISAL";
  white-space: pre;
  color: #f5faf2;
  font-size: 21rem;
  top: -20px;
  left: -20px;
  line-height: 0.8;
  z-index: -1;
}
.p-selfquick__num {
  height: 20px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  width: fit-content;
  background: var(--c-primary);
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  border-radius: 10px;
  margin: 0 auto 30px;
  z-index: 1;
  position: relative;
}
.p-selfquick__ttl {
  font-size: 4.8rem;
  font-weight: 700;
  position: relative;
  text-align: center;
  width: fit-content;
  margin: 0 auto 50px;
  color: var(--c-primary);
  line-height: 1.4;
  padding-bottom: 20px;
}
.p-selfquick__ttl:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 5px;
  left: 0;
  bottom: 0;
  background: var(--c-primary);
}
.p-selfquick__txt {
  margin-bottom: 50px;
}
.p-selfquick__btnarea {
  display: flex;
  justify-content: center;
  column-gap: 30px;
  margin-bottom: 50px;
}
.p-selfquick__bnr a {
  display: block;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 1500px) {
  .p-selfquick {
    padding: 117px;
  }
  .p-selfquick:before {
    font-size: 18rem;
  }
  .p-selfquick__ttl {
    font-size: 4.2rem;
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 1200px) {
  .p-selfquick {
    padding: 87px;
  }
  .p-selfquick__num {
    margin: 0 auto 20px;
  }
  .p-selfquick__ttl {
    font-size: 3.5rem;
    margin: 0 auto 30px;
  }
  .p-selfquick__txt {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 960px) {
  .p-selfquick {
    padding: 57px;
  }
  .p-selfquick__ttl {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-selfquick {
    padding: 37px 27px;
    border-radius: 15px;
    border: 2px solid var(--c-primary);
  }
  .p-selfquick__ttl {
    font-size: 2.4rem;
    margin: 0 auto 20px;
    padding-bottom: 10px;
  }
  .p-selfquick__ttl:before {
    height: 3px;
  }
  .p-selfquick__txt {
    margin-bottom: 20px;
  }
  .p-selfquick__btnarea {
    column-gap: 10px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  .p-selfquick {
    padding: 27p 17px;
  }
  .p-selfquick__num {
    margin: 0 auto 10px;
  }
  .p-selfquick__ttl {
    font-size: 2.2rem;
    margin: 0 auto 20px;
    padding-bottom: 10px;
  }
  .p-selfquick__txt {
    margin-bottom: 20px;
  }
  .p-selfquick__btnarea {
    display: block;
    margin-bottom: 20px;
  }
  .p-selfquick__btn {
    margin: 0 auto;
  }
  .p-selfquick__btn:first-child {
    margin-bottom: 10px;
  }
}

.p-sales-bvb-intro {
  position: relative;
  padding-bottom: var(--layout_margin-block02);
  margin-bottom: var(--layout_margin-block02);
  border-bottom: 1px solid var(--c-border);  
}
.p-sales-bvb-buyout {
  padding-bottom: 1px;
  margin-bottom: var(--layout_margin-block);  
}
.p-sales-bvb-buyout-main {
  margin-bottom: var(--layout_margin-block02);  
}
.p-sales-bvb-buyout .c-cont-merit {
  margin-bottom: 0;
}
.p-sales-bvb-brokerage {
  padding-bottom: 1px;
  margin-bottom: var(--layout_margin-block);  
}
.p-sales-bvb-brokerage .c-cont-merit {
  margin-bottom: 0;
}
.p-sales-bvb-comparison {
  padding-bottom: var(--layout_margin-block02);
  margin-bottom: var(--layout_margin-block02);
  border-bottom: 1px solid var(--c-border);  
}
.p-sales-bvb-comparison__table {
  margin-bottom: var(--layout_margin-block02);
  width: 100%; 
}
.p-sales-bvb-comparison__table .c-table02 tr th:nth-child(1) {
  width: 25%;
}
.p-sales-bvb-comparison__table .c-table02 tr th:nth-child(2) {
  width: 37.5%;
}
.p-sales-bvb-comparison__table .c-table02 tr th:nth-child(3) {
  width: 37.5%;
}
@media screen and (max-width: 960px) {
  .p-sales-bvb-comparison__table {
    overflow-x: scroll;
    margin-bottom: 10px;
  }
  .p-sales-bvb-comparison__table .c-table02 {
    min-width: 900px;
  }
}
@media screen and (max-width: 767px) {
  .p-sales-bvb-comparison__table .c-table02 {
    min-width: 600px;
  }
  .p-sales-bvb-comparison__table .c-table02 tr th:nth-child(1) {
    width: 150px;
  }
  .p-sales-bvb-comparison__table .c-table02 tr th:nth-child(2) {
    width: 225px;
  }
  .p-sales-bvb-comparison__table .c-table02 tr th:nth-child(3) {
    width: 225px;
  }
}

/*p-sales-ct-intro*/
.p-sales-ct-intro {
  position: relative;
  padding-bottom: var(--layout_margin-block02);
  margin-bottom: var(--layout_margin-block02);
  border-bottom: 1px solid var(--c-border);  
}
/*p-sales-ct-costs*/
.p-sales-ct-costs {
  margin-bottom: var(--layout_margin-block);  
}
.p-sales-ct-costs__lead {
  margin-bottom: var(--cont_margin-block02);  
}
/*p-sales-ct-taxes*/
.p-sales-ct-taxes {
  margin-bottom: var(--layout_margin-block);  
}
.p-sales-ct-taxes__lead {
  margin-bottom: var(--cont_margin-block02);  
}
/*p-sales-vacancies-intro*/
.p-sales-vacancies-intro {
  padding-bottom: var(--layout_margin-block02);
  margin-bottom: var(--layout_margin-block02);
  border-bottom: 1px solid var(--c-border);   
}
.p-sales-vacancies-inheritance {
  margin-bottom: var(--layout_margin-block);  
}
.p-sales-vacancies-inheritance-main {
  margin-bottom: var(--layout_margin-block02);  
}
/*p-sales-vacancies-solving*/
.p-sales-vacancies-solving {
  margin-bottom: var(--layout_margin-block02);   
}
.p-sales-vacancies-solving__inner {
  background: var(--c-secondary);
  padding: 50px;
  border-radius: 10px;
}
.p-sales-vacancies-solving .c-sec-list {
  margin-bottom: 0;
}
@media screen and (max-width: 1300px) {
  .p-sales-vacancies-solving__inner {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-sales-vacancies-solving__inner {
    padding: 20px;
  }
}
/*p-sales-vacancies-taxes*/
.p-sales-vacancies-taxes {
  margin-bottom: var(--layout_margin-block);   
}
/*p-sales-vacancies-vacant*/
.p-sales-vacancies-vacant {
  margin-bottom: var(--layout_margin-block);   
}
.p-sales-vacancies-vacant__cont {
  margin-bottom: var(--cont_margin-block02);  
}
/*p-sales-vacancies-support*/
.p-sales-vacancies-support {
  margin-bottom: var(--layout_margin-block);
}
.p-sales-vacancies-support__cont {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.p-sales-vacancies-support__img {
  width: 305px;
}
.p-sales-vacancies-support__info {
  width: calc(100% - 450px);
  padding-bottom: 100px;
}
.p-sales-vacancies-support__catch {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 30px;
}
.p-sales-vacancies-support-box {
  margin-bottom: 30px;
}
.p-sales-vacancies-support-box__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 10px;
}
.p-sales-vacancies-support__txt {
  margin-bottom: 50px;
}
.p-sales-vacancies-support-note {
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 50px 0;
  margin-bottom: 150px;
}
.p-sales-vacancies-support-note__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--c-tertiary);
  margin-bottom: 20px;
}
.p-sales-vacancies-support-note__txt {
  font-size: 1.8rem;
}
@media screen and (max-width: 1500px) {
  .p-sales-vacancies-support__img {
    width: 280px;
  }
  .p-sales-vacancies-support__info {
    width: calc(100% - 330px);
  }
}
@media screen and (max-width: 1200px) {
  .p-sales-vacancies-support__img {
    width: 220px;
  }
  .p-sales-vacancies-support__info {
    width: calc(100% - 270px);
  }
  .p-sales-vacancies-support__catch {
    font-size: 2.4rem;
  }
  .p-sales-vacancies-support-box__ttl {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 960px) {
  .p-sales-vacancies-support__img {
    width: 150px;
  }
  .p-sales-vacancies-support__info {
    width: calc(100% - 200px);
  }
  .p-sales-vacancies-support__catch,
  .p-sales-vacancies-support-box__ttl {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-sales-vacancies-support__cont {
    display: block;
  }
  .p-sales-vacancies-support__img {
    width: 200px;
    margin: 0 auto 30px;
  }
  .p-sales-vacancies-support__info {
    width: 100%;
    padding-bottom: 50px;
  }
  .p-sales-vacancies-support__catch {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .p-sales-vacancies-support-box {
    margin-bottom: 20px;
  }
  .p-sales-vacancies-support-box__ttl {
    font-size: 1.6rem;
  }
  .p-sales-vacancies-support__txt {
    margin-bottom: 30px;
  }
  .p-sales-vacancies-support-note {
    padding: 30px 0;
    margin-bottom: 50px;
  }
  .p-sales-vacancies-support-note__ttl {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .p-sales-vacancies-support__btn {
    margin: 0 auto;
  }
}


/*p-sales-rm-relation*/
.p-sales-rm-relation {
  margin-bottom: var(--layout_margin-block);  
}
.p-sales-rm-relation__cont {
  margin-bottom: var(--cont_margin-block02);  
}
.p-sales-rm-aav {
  margin-bottom: var(--layout_margin-block);  
}
.p-sales-rm-auction {
  margin-bottom: var(--cont_margin-block02);   
}
.p-sales-rm-voluntary {
  margin-bottom: var(--cont_margin-block02);   
}
.p-sales-rm-relation__table {
  margin-bottom: var(--layout_margin-block02);
  width: 100%; 
}
.p-sales-rm-relation__table .c-table02 tr th:nth-child(1) {
  width: 20%;
}
.p-sales-rm-relation__table .c-table02 tr th:nth-child(2) {
  width: 40%;
}
.p-sales-rm-relation__table .c-table02 tr th:nth-child(3) {
  width: 40%;
}
@media screen and (max-width: 960px) {
  .p-sales-rm-relation__table {
    overflow-x: scroll;
    margin-bottom: 10px;
  }
  .p-sales-rm-relation__table .c-table02 {
    min-width: 900px;
  }
}
@media screen and (max-width: 767px) {
  .p-sales-rm-relation__table .c-table02 {
    min-width: 600px;
  }
  .p-sales-rm-relation__table .c-table02 tr th:nth-child(1) {
    width: 150px;
  }
  .p-sales-rm-relation__table .c-table02 tr th:nth-child(2) {
    width: 225px;
  }
  .p-sales-rm-relation__table .c-table02 tr th:nth-child(3) {
    width: 225px;
  }
}
.p-sales-rm-avv__table {
  margin-bottom: var(--layout_margin-block02);
  width: 100%; 
}
.p-sales-rm-avv__table .c-table02 tr th:nth-child(1) {
  width: 20%;
}
.p-sales-rm-avv__table .c-table02 tr th:nth-child(2) {
  width: 40%;
}
.p-sales-rm-avv__table .c-table02 tr th:nth-child(3) {
  width: 40%;
}
.p-sales-rm-avv__table .c-table02__scroll {
  display: none;
  font-size: 1.6rem;
}
@media screen and (max-width: 960px) {
  .p-sales-rm-avv__table {
    overflow-x: scroll;
    margin-bottom: 10px;
  }
  .p-sales-rm-avv__table .c-table02 {
    min-width: 900px;
  }
  .p-sales-rm-avv__table .c-table02__scroll {
    display: block;
    margin-bottom: var(--layout_margin-block02);
  }
}
@media screen and (max-width: 767px) {
  .p-sales-rm-avv__table .c-table02 {
    min-width: 600px;
  }
  .p-sales-rm-avv__table .c-table02 tr th:nth-child(1) {
    width: 150px;
  }
  .p-sales-rm-avv__table .c-table02 tr th:nth-child(2) {
    width: 225px;
  }
  .p-sales-rm-avv__table .c-table02 tr th:nth-child(3) {
    width: 225px;
  }
  .p-sales-rm-avv__table .c-table02__scroll {
    font-size: 1.4rem;
  }
}

/*-- 不動産購入 --*/
.p-purchase-main {
  position: relative;
  padding-bottom: var(--layout_margin-block02);
  margin-bottom: var(--layout_margin-block02);
  border-bottom: 1px solid var(--c-border);  
}

.p-purchase-flow {
  position: relative;
  margin-bottom: var(--layout_margin-block);
}
.p-purchase-flow__cont {
  padding-bottom: var(--cont_margin-block02);
}
.p-purchase-commission {
  margin-bottom: var(--layout_margin-block);  
}
.p-purchase-commission__cont {
  padding: 50px;
  background: #f7fef1;
  border-radius: 10px;
}
.p-purchase-commission__catch {
  font-size: 2.4rem;
  color: var( --c-tertiary );
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-purchase-commission__catch {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
}
.p-purchase-how {
  margin-bottom: var(--layout_margin-block);  
}


.p-knowledge-main {
  margin-bottom: var(--layout_margin-block);
}
.p-knowledge-main__inner {
  margin-bottom: var(--cont_margin-block02);
}
.p-knowledge-index {
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
}
.p-knowledge-index-cont {
  width: calc((100% - 30px) / 2);
  background: var(--c-secondary);
  padding: 30px 30px 100px;
  border-radius: 10px;
}
.p-knowledge-index__en {
  text-align: center;
  font-size: 1.4rem;
  color: var(--c-primary);
}
.p-knowledge-index__ttl {
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 20px;
  line-height: 1.4;
  font-weight: 700;
}
.p-knowledge-index__img {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}
.p-knowledge-index__ul {
  margin-bottom: 50px;
  counter-reset: item;
}
.p-knowledge-index__li {
  background: #fff;
  border-radius: 10px;
  counter-increment: item;
  margin-bottom: 10px;
}
.p-knowledge-index__li a {
  padding: 25px 30px 25px 90px;
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--c-tertiary);
  line-height: 1.6;
  position: relative;
  transition: all .3s ease-in-out;
}
.p-knowledge-index__li a:before {
  position: absolute;
  content: counter(item, decimal-leading-zero) "";
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  height: 20px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  width: fit-content;
  background: var(--c-primary);
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  border-radius: 10px;
  z-index: 1;
  font-weight: 400;
  transition: all .3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .p-knowledge-index__li a:hover {
    padding: 25px 20px 25px 100px;
  }
  .p-knowledge-index__li a:hover:before {
    left: 40px;
  }
}
@media screen and (max-width: 1300px) {
  .p-knowledge-index__ttl {
    font-size: 2.8rem;
  }
  .p-knowledge-index__li a {
    padding: 15px 20px 15px 70px;
    font-size: 2rem;
  }
  .p-knowledge-index__li a:before {
    left: 20px;
  }
}
@media screen and (max-width: 960px) {
  .p-knowledge-index {
    display: block;
  }
  .p-knowledge-index-cont {
    width: 100%;
    padding: 30px 30px 50px;
    margin-bottom: 20px;
  }
  .p-knowledge-index__ttl {
    font-size: 2.6rem;
  }
  .p-knowledge-index__ul {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-knowledge-index-cont {
    padding: 20px 20px 40px;
  }
  .p-knowledge-index__en {
    font-size: 1.2rem;
  }
  .p-knowledge-index__ttl {
    font-size: 2.2rem;
  }
  .p-knowledge-index__li a {
    padding: 15px 10px 15px 60px;
    font-size: 1.6rem;
  }
  .p-knowledge-index__li a:before {
    left: 10px;
  }
}

.p-knowledge-detail {
  margin-bottom: var(--layout_margin-block);
}
.knowledge-detail-flow02__table {
  width: 100%; 
  margin-bottom: var(--cont_margin-block03);  
}
.knowledge-detail-flow02__table .c-table02 tr th:nth-child(1) {
  width: 20%;
}
.knowledge-detail-flow02__table .c-table02 tr th:nth-child(2) {
  width: 20%;
}
.knowledge-detail-flow02__table .c-table02 tr th:nth-child(3) {
  width: 20%;
}
.knowledge-detail-flow02__table .c-table02 tr th:nth-child(4) {
  width: 40%;
}
@media screen and (max-width: 960px) {
  .knowledge-detail-flow02__table {
    overflow-x: scroll;
  }
  .knowledge-detail-flow02__table .c-table02 {
    min-width: 900px;
  }
}
@media screen and (max-width: 767px) {
  .knowledge-detail-flow02__table .c-table02 {
    min-width: 600px;
  }
}
.knowledge-detail-flow03__table {
  width: 100%; 
  margin-bottom: var(--cont_margin-block03);  
}
.knowledge-detail-flow03__table .c-table02 tr th:nth-child(1) {
  width: 18%;
}
.knowledge-detail-flow03__table .c-table02 tr th:nth-child(2) {
  width: 18%;
}
.knowledge-detail-flow03__table .c-table02 tr th:nth-child(3) {
  width: 18%;
}
.knowledge-detail-flow03__table .c-table02 tr th:nth-child(4) {
  width: 23%;
}
.knowledge-detail-flow03__table .c-table02 tr th:nth-child(5) {
  width: 23%;
}
@media screen and (max-width: 960px) {
  .knowledge-detail-flow03__table {
    overflow-x: scroll;
  }
  .knowledge-detail-flow03__table .c-table02 {
    min-width: 900px;
  }
}
@media screen and (max-width: 767px) {
  .knowledge-detail-flow03__table .c-table02 {
    min-width: 600px;
  }
}
.knowledge-detail-flow04__table {
  width: 100%; 
  margin-bottom: var(--cont_margin-block03);  
}
.knowledge-detail-flow04__table .c-table02 tr th {
  width: 20%;
}
@media screen and (max-width: 960px) {
  .knowledge-detail-flow04__table {
    overflow-x: scroll;
  }
  .knowledge-detail-flow04__table .c-table02 {
    min-width: 900px;
  }
}
@media screen and (max-width: 767px) {
  .knowledge-detail-flow04__table .c-table02 {
    min-width: 600px;
  }
}

.p-case-main {
  position: relative;
  padding-bottom: var(--layout_margin-block02);
  margin-bottom: var(--layout_margin-block02);
  border-bottom: 1px solid var(--c-border);  
}
.p-case-main__notice {
  margin-top: 10px;
  font-size: 1.6rem;
  color: var(--c-tertiary);
}
.p-case-list__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.p-case-list-cont {
  width: calc(( 100% - 30px )  / 2 );
  border-radius: 10px;
  background: var( --c-secondary );
  padding: 30px;
}
.p-case-list__img {
  margin-bottom: 30px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.p-case-list__cat {
  position: absolute;
  top: 30px;
  left: 30px;
  padding: 3px 12px 3px 15px;
  display: flex;
  align-items: center;
  width: fit-content;
  background: var(--c-primary);
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  border-radius: 10px;
  z-index: 1;
  font-weight: 400;
}
.p-case-list__img img {
	width: 100%;
	height: auto;
}
.p-case-list-head {
  border-bottom: 1px solid var(--c-border);
  padding: 0 0 30px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-case-list-head * {
  color: var(--c-tertiary);
  line-height: 1.0;
}
.p-case-list-head__price {
  font-size: 1.8rem;
}
.p-case-list-head__price span {
  font-size: 4.2rem;
}
.p-case-list-head__date {
  font-size: 1.6rem;
}
.p-case-list-head__date span {
  font-size: 2.0rem;
}
.p-case-list-spec {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px 20px;
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 30px;
  margin-bottom: 20px;
}
.p-case-list-spec__cont {
  font-size: 2.0rem;
}
.p-case-list-spec__label {
  border-radius: 20px;
  padding: 2px 20px;
  background: #f4ebe6;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-tertiary);
  margin-right: 10px;
}
.p-case-list-txt {
  font-size: 1.8rem;  
}
@media screen and (max-width: 1300px) {
  .p-case-main {
    position: relative;
    padding-bottom: var(--layout_margin-block02);
    margin-bottom: var(--layout_margin-block02);
    border-bottom: 1px solid var(--c-border);  
  }
  .p-case-main__notice {
    margin-top: 10px;
    font-size: 1.6rem;
    color: var(--c-tertiary);
  }
  .p-case-list__inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  .p-case-list-cont {
    width: calc(( 100% - 20px )  / 2 );
    border-radius: 10px;
    background: var( --c-secondary );
    padding: 30px;
  }
  .p-case-list__img {
    margin-bottom: 30px;
    position: relative;
  }
  .p-case-list__cat {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 3px 12px 3px 15px;
    display: flex;
    align-items: center;
    width: fit-content;
    background: var(--c-primary);
    font-size: 1.4rem;
    line-height: 1;
    color: #fff;
    border-radius: 10px;
    z-index: 1;
    font-weight: 400;
  }
  .p-case-list__img img {
    border-radius: 10px;
    overflow: hidden;
  }
  .p-case-list-head {
    border-bottom: 1px solid var(--c-border);
    padding: 0 0 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .p-case-list-head * {
    color: var(--c-tertiary);
    line-height: 1.0;
  }
  .p-case-list-head__price {
    font-size: 1.8rem;
  }
  .p-case-list-head__price span {
    font-size: 3.6rem;
  }
  .p-case-list-head__date {
    font-size: 1.4rem;
  }
  .p-case-list-head__date span {
    font-size: 1.8rem;
  }
  .p-case-list-spec {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 20px;
    border-bottom: 1px solid var(--c-border);
    padding-bottom: 30px;
    margin-bottom: 20px;
  }
  .p-case-list-spec__cont {
    font-size: 1.8rem;
  }
  .p-case-list-spec__label {
    border-radius: 20px;
    padding: 2px 20px;
    background: #f4ebe6;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--c-tertiary);
    margin-right: 10px;
  }
  .p-case-list-txt {
    font-size: 1.8rem;  
  }
}
@media screen and (max-width: 960px) {
  .p-case-main {
    position: relative;
    padding-bottom: var(--layout_margin-block02);
    margin-bottom: var(--layout_margin-block02);
    border-bottom: 1px solid var(--c-border);  
  }
  .p-case-main__notice {
    margin-top: 10px;
    font-size: 1.6rem;
    color: var(--c-tertiary);
  }
  .p-case-list__inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  .p-case-list-cont {
    width: calc(( 100% - 20px )  / 2 );
    border-radius: 10px;
    background: var( --c-secondary );
    padding: 20px;
  }
  .p-case-list__img {
    margin-bottom: 30px;
    position: relative;
  }
  .p-case-list__cat {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 3px 12px 3px 15px;
    display: flex;
    align-items: center;
    width: fit-content;
    background: var(--c-primary);
    font-size: 1.4rem;
    line-height: 1;
    color: #fff;
    border-radius: 10px;
    z-index: 1;
    font-weight: 400;
  }
  .p-case-list__img img {
    border-radius: 10px;
    overflow: hidden;
  }
  .p-case-list-head {
    border-bottom: 1px solid var(--c-border);
    padding: 0 0 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .p-case-list-head * {
    color: var(--c-tertiary);
    line-height: 1.0;
  }
  .p-case-list-head__price {
    font-size: 1.8rem;
  }
  .p-case-list-head__price span {
    font-size: 3.6rem;
  }
  .p-case-list-head__date {
    font-size: 1.4rem;
  }
  .p-case-list-head__date span {
    font-size: 1.8rem;
  }
  .p-case-list-spec {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 20px;
    border-bottom: 1px solid var(--c-border);
    padding-bottom: 30px;
    margin-bottom: 20px;
  }
  .p-case-list-spec__cont {
    font-size: 1.8rem;
  }
  .p-case-list-spec__label {
    border-radius: 20px;
    padding: 2px 20px;
    background: #f4ebe6;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--c-tertiary);
    margin-right: 10px;
  }
  .p-case-list-txt {
    font-size: 1.8rem;  
  }
}
@media screen and (max-width: 767px) {
  .p-case-main {
    position: relative;
    padding-bottom: var(--layout_margin-block02);
    margin-bottom: var(--layout_margin-block02);
    border-bottom: 1px solid var(--c-border);  
  }
  .p-case-main__notice {
    margin-top: 10px;
    font-size: 1.4rem;
    color: var(--c-tertiary);
  }
  .p-case-list__inner {
    display: block;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  .p-case-list-cont {
    width: 100%;
    border-radius: 10px;
    background: var( --c-secondary );
    padding: 20px;
    margin-bottom: 20px;
  }
  .p-case-list__cat {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 3px 12px 3px 15px;
    display: flex;
    align-items: center;
    width: fit-content;
    background: var(--c-primary);
    font-size: 1.4rem;
    line-height: 1;
    color: #fff;
    border-radius: 10px;
    z-index: 1;
    font-weight: 400;
  }
  .p-case-list__img {
    margin-bottom: 30px;
    position: relative;
  }
  .p-case-list__img img {
    border-radius: 10px;
    overflow: hidden;
  }
  .p-case-list-head {
    border-bottom: 1px solid var(--c-border);
    padding: 0 0 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .p-case-list-head * {
    color: var(--c-tertiary);
    line-height: 1.0;
  }
  .p-case-list-head__price {
    font-size: 1.4rem;
  }
  .p-case-list-head__price span {
    font-size: 2.4rem;
  }
  .p-case-list-head__date {
    font-size: 1.2rem;
  }
  .p-case-list-head__date span {
    font-size: 1.4rem;
  }
  .p-case-list-spec {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 20px;
    border-bottom: 1px solid var(--c-border);
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .p-case-list-spec__cont {
    font-size: 1.6rem;
  }
  .p-case-list-spec__label {
    border-radius: 20px;
    padding: 2px 15px;
    background: #f4ebe6;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--c-tertiary);
    margin-right: 5px;
  }
  .p-case-list-txt {
    font-size: 1.6rem;  
  }
}

.p-property,
.p-property-detail {
  margin-bottom: var(--layout_margin-block);  
}
.p-property-cont,
.p-property-detail-cont {
  display: flex;
	gap: 0 50px;
}
.p-property-info {
	width: calc( 100% - 390px );
	border-top: 1px solid var( --c-border );
  padding-top: 50px;
}
.p-property-detail-info {
	width: calc( 100% - 390px );
	border-top: 1px solid var( --c-border );
  padding-top: 20px;
}
@media screen and (max-width: 1300px) {
  .p-property-info,
  .p-property-detail-info {
    width: calc( 100% - 300px );
  }
  .p-property-detail-info {
    padding-top: 0;
  }
}
@media screen and (max-width: 960px) {
  .p-property-cont,
  .p-property-detail-cont {
    display: block;
  }
	.p-property-info,
  .p-property-detail-info {
		width: 100%;
    margin-bottom: 100px;
	}
}
@media screen and (max-width: 767px) {
	.p-property-info,
  .p-property-detail-info {
    margin-bottom: 70px;
	}
}

.p-property-info__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.p-property-list {
  width: calc((100% - 30px) / 2);
  margin-bottom: 30px;
}
.p-property-list__img {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.p-property-list__img img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
}
a:hover .p-property-list__img img {
  transform: scale(1.1);
}
.p-property-list__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.p-property-list__cat {
  padding: 3px 15px;
  display: flex;
  align-items: center;
  width: fit-content;
  background: var(--c-primary);
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  border-radius: 10px;
  font-weight: 400;
}
.p-property-list__date {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--c-primary);
}
.p-property-list__ttl {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--c-tertiary);
  line-height: 1.6;
}
@media screen and (max-width: 1300px) {
  .p-property-list__ttl {
    font-size: 2.4rem;
  }
  .p-property-list__summary {
    font-size: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .p-property-list__ttl {
    font-size: 2.2rem;
  }
  .p-property-list__summary {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-property-list {
    margin-bottom: 0;
  }
  .p-property-list__img {
    margin-bottom: 20px;
  }
  .p-property-list__head {
    margin-bottom: 10px;
  }
  .p-property-list__ttl {
    font-size: 2rem;
    margin-bottom: 5px;
  }
  .p-property-list__summary {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 600px) {
  .p-property-info__inner {
    display: block;
  }
  .p-property-list {
    width: 100%;
    margin-bottom: 30px;
  }
}
/* トピックス-詳細
------------------------------------------------- */
.p-property-detail-head {
  display: flex;
  align-items: center;
  gap: 0 30px;
  margin-top: 30px;
  margin-bottom: 20px;
  padding: 0 20px;
}
.p-property-detail-head__cat {
  padding: 3px 15px;
  display: flex;
  align-items: center;
  width: fit-content;
  background: var(--c-primary);
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  border-radius: 10px;
  font-weight: 400;
}
.p-property-detail__ttl {
  font-size: 3.4rem;
  line-height: 1.4;
  font-weight: 700;
  color: var(--c-tertiary);
  margin-bottom: 30px;
  padding: 0 20px 60px;
	border-bottom: 1px solid var( --c-border );
}
@media screen and (max-width: 1300px) {
  .p-property-detail-head {
    margin-bottom: 20px;
    margin-top: 30px;
    padding: 0 20px;
  }
  .p-property-detail-head__date {
    font-size: 1.8rem;
  }
  .p-property-detail__ttl {
    font-size: 3.0rem;
    margin-bottom: 30px;
    padding: 0 20px 30px;
  }
}
@media screen and (max-width: 960px) {
  .p-property-detail-head {
    margin-bottom: 20px;
    margin-top: 30px;
    padding: 0 20px;
  }
  .p-property-detail-head__date {
    font-size: 1.6rem;
  }
  .p-property-detail__ttl {
    font-size: 2.6rem;
    margin-bottom: 30px;
    padding: 0 20px 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-property-detail-head {
    gap: 0 20px;
    margin-bottom: 10px;
    margin-top: 30px;
    padding: 0;
  }
  .p-property-detail-head__date {
    font-size: 1.4rem;
  }
  .p-property-detail__ttl {
    font-size: 2.0rem;
    margin-bottom: 20px;
    padding: 0 0 30px;
  }
}


.p-property-detail-post {
  margin: 0 20px 70px;  
}
@media screen and (max-width: 767px) {
  .p-property-detail-post {
    margin: 0 0 50px;
  }
}
.p-property-detail-post .p-property-detail-post__date {
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 30px;
}
.p-property-detail-post .p-property-detail-post__img {
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}
.p-property-detail-post .p-property-detail-post__img img {
  margin: 0 auto;
  border-radius: 10px;
}

.p-property-detail-post h2 {
	font-size: 22px;
	margin: 0 0 10px;
	padding: 0 0 0 14px;
	position: relative;
	font-family: var(--font-family-bold);
	font-weight: bold;
}
.p-property-detail-post h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 4px;
	width: 4px;
	height: 30px;
	background: var(--color-main);
}
.p-property-detail-post h3 {
	font-size: 18px;
	margin: 0 0 10px;
	padding: 0 0 0 14px;
	position: relative;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	font-family: var(--font-family-bold);
	font-weight: bold;
}
.p-property-detail-post h3::before {
	content: '';
	position: absolute;
	top: 100%;
	border-style: solid;
	border-color: transparent;
	left: 0;
	top: 12px;
	width: 2px;
	height: 2px;
	background: var(--color-main);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}
.p-property-detail-post h4 {
	font-size: 16px;
	margin-bottom: 10px;
	font-family: var(--font-family-bold);
	font-weight: bold;
}
.p-property-detail-post img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.p-property-detail-post img.alignright {
  margin: 0 0 0 10px;
  display: inline;
}	 
.p-property-detail-post img.alignleft {
  margin: 0 10px 0 0;
  display: inline;
}			 
.p-property-detail-post table {
  margin-bottom: 50px;
  width: 100%;
  border-bottom: 1px solid #c8d8c4;
}				 
.p-property-detail-post table th ,.p-property-detail-post table td {
  padding: 30px 20px;
  border-top: 1px solid #c8d8c4;
}				 
.p-property-detail-post table th {
  width: 20%;
}	 
.p-property-detail-post .aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}  
.p-property-detail-post .alignright {
  float: right;
} 
.p-property-detail-post .alignleft {
  float: left;
}
.p-property-detail-post p {
	margin-bottom: 20px;
}
.p-property-detail-post img {
	margin-bottom: 10px;
}
.p-property-detail-post a {
	text-decoration: under-line;
}
@media screen and (max-width: 1300px) {
  .p-property-detail-post .p-property-detail-post__img {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-property-detail-post .p-property-detail-post__img {
    margin-bottom: 20px;
  }
  .p-property-detail-post table {
    margin-bottom: 50px;
    width: 100%;
    border-bottom: 1px solid #c8d8c4;
  }				 
  .p-property-detail-post table th ,.p-property-detail-post table td {
    padding: 25px 0;
    border-top: 1px solid #c8d8c4;
  }				 
  .p-property-detail-post table th {
    width: 40%;
  }	 
  .p-property-detail-post img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .p-property-detail-post img.alignright {
    margin: 0 auto;
    display: block;
  }	 
  .p-property-detail-post img.alignleft {
    margin: 0 auto;
    display: block;
  }		 
  .p-property-detail-post .aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }  
  .p-property-detail-post .alignright {
    float: none;
  } 
  .p-property-detail-post .alignleft {
    float: none;
  }
}
@media screen and (max-width: 500px) {
  .p-property-detail-post {
    padding: 0;
  }
}

.p-property-spec {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 20px;
  margin-top: 50px;
}
.p-property-spec__cont {
  width: calc((100% - 20px) / 2);
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  position: relative;
  border-top: 1px solid var(--c-border);
}
.p-property-spec__cont:nth-last-child(-n+2) {
  border-bottom: 1px solid var(--c-border);
}
.p-property-spec__cont::before {
  position: absolute;
  content: "";
  width: 1px;
  height: calc(100% - 60px);
  top: 30px;
  left: 160px;
  background: var(--c-border);
}
.p-property-spec__ttl {
  width: 160px;
  padding: 30px 0 30px 30px;
}
.p-property-spec__txt {
  width: calc(100% - 160px);
  padding: 30px 0 30px 30px;
}
@media screen and (max-width: 1500px) {
  .p-property-spec__cont {
    padding: 20px 0;
  }
  .p-property-spec__cont::before {
    height: calc(100% - 40px);
    top: 20px;
    left: 140px;
  }
  .p-property-spec__ttl {
    width: 140px;
    padding: 20px 0 20px 20px;
  }
  .p-property-spec__txt {
    width: calc(100% - 140px);
    padding: 20px 0 20px 20px;
  }
}
@media screen and (max-width: 1300px) {
  .p-property-spec {
    display: block;
  }
  .p-property-spec__cont {
    width: 100%;
    padding: 20px 0;
  }
  .p-property-spec__cont:nth-last-child(2) {
    border-bottom: 1px solid var(--c-border);
    border-bottom: none;
  }
  .p-property-spec__cont::before {
    height: calc(100% - 40px);
    top: 20px;
    left: 140px;
  }
}
@media screen and (max-width: 767px) {
  .p-property-spec__cont {
    width: 100%;
    padding: 10px 0;
  }
  .p-property-spec__cont::before {
    height: calc(100% - 20px);
    top: 10px;
    left: 100px;
  }
  .p-property-spec__ttl {
    width: 100px;
    padding: 10px 0;
  }
  .p-property-spec__txt {
    width: calc(100% - 100px);
    padding: 10px 0 10px 20px;
  }
}

.p-property-detail-btn {
	margin: 0 auto 100px;
}
@media screen and (max-width: 767px) {
	.p-property-detail-btn {
		margin: 0 auto 70px;
	}
}


.p-news-list,
.p-news-detail {
  margin-bottom: var(--layout_margin-block);  
}
.p-news-cont {
  display: flex;
  justify-content: space-between;
  gap: 0 50px;
}
.p-news-info {
  width: calc( 100% - 390px );
  border-top: 1px solid var( --c-border );
}
.p-news-sidebar {
  width: 340px;
  position: relative;
}
@media screen and (max-width: 1300px) {
  .p-news-info {
    width: calc( 100% - 300px );
  }
  .p-news-sidebar {
    width: 250px;
  }
}
@media screen and (max-width: 960px) {
  .p-news-cont {
    display: block;
  }
	.p-news-info {
		width: 100%;
    margin-bottom: 100px;
	}	
  .p-news-sidebar {
		width: 100%;
  }
}
@media screen and (max-width: 767px) {
	.p-news-info {
    margin-bottom: 70px;
	}
}

/*----- Sidebar -----*/
.p-news-sidebar {
	position: relative;
}
.p-news-sidebar__outer {
  top: 150px;
}
.p-news-sidebar__block {
  margin-bottom: 70px;
}
.p-news-sidebar-block__ttl {
  padding: 3px 15px;
  display: flex;
  align-items: center;
  width: fit-content;
  background: var(--c-primary);
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
}
.p-news-sidebar-block__ul li a {
  padding: 25px 0 25px 40px;
  display: block;
  font-size: 2.2rem;
  line-height: 1;
  position: relative;
  color: var(--c-tertiary);
  border-bottom: 1px solid var(--c-border);
  transition: all .3s ease-in-out;
}
.p-news-sidebar-block__ul li a:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 8px;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background: var(--c-primary);
  transition: all .3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .p-news-sidebar-block__ul li a:hover {
    padding: 25px 0 25px 45px;
  }
  .p-news-sidebar-block__ul li a:hover:before {
    left: 25px;
  }
}
.p-news-sidebar-block__select {
  width: 100%;
  padding-top: 20px;
}
.p-news-sidebar-block__select-box {
  width: 100%;
  height: 100%;
  padding: 20px 40px 20px 15px;
  letter-spacing: .15em;
  line-height: 1;
  border: 1px solid var(--c-border);
  border-radius: 5px;
  background: #fff url(../images/arr_select_down.png) no-repeat right 20px center / 6px 8px;
  vertical-align: middle;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  outline: none;
  font-size: 1.8rem;
}
@media screen and (max-width: 1300px) {
  .p-news-sidebar__block {
    margin-bottom: 50px;
  }
  .p-news-sidebar-block__ttl {

    margin-bottom: 10px;
  }
  .p-news-sidebar-block__ul li a {
    padding: 25px 0 25px 30px;
    font-size: 2rem;
  }
  .p-news-sidebar-block__ul li a:before {
    left: 10px;
  }
  @media (hover: hover) and (pointer: fine) {
    .p-news-sidebar-block__ul li a:hover {
      padding: 25px 0 25px 35px;
    }
    .p-news-sidebar-block__ul li a:hover:before {
      left: 15px;
    }
  }
  .p-news-sidebar-block__select {
    padding-top: 10px;
  }
}
@media screen and (max-width: 960px) {
  .p-news-sidebar__block {
    margin-bottom: 50px;
  }
  .p-news-sidebar-block__ul li a {
    padding: 25px 0 25px 30px;
    font-size: 2rem;
  }
  .p-news-sidebar-block__ul li a:before {
    left: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-news-sidebar__block {
    margin-bottom: 30px;
  }
  .p-news-sidebar-block__ul li a {
    padding: 20px 0 20px 25px;
    font-size: 1.6rem;
  }
  .p-news-sidebar-block__ul li a:before {
    left: 10px;
  }
  .p-news-sidebar-block__select {
    padding-top: 10px;
  }
  .p-news-sidebar-block__select-box {
    font-size: 1.6rem;
  }
}

/*----- 一覧 -----*/
.p-news-list-item {
  border-bottom: 1px solid var(--c-border);
}
.p-news-list-item a {
  width: 100%;
  height: 100%;
  padding: 50px 50px 45px 20px;
  display: block;
  position: relative;
  transition: all .3s ease-in-out;
}
.p-news-list-item a::before,
.p-news-list-item a::after {
  content: '';
  position: absolute;
  top: calc(50% - 4px);
  right: 30px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--c-primary);
  border-top: none;
  border-right: none;
  transform: rotate(225deg);
  transition: all 0.2s ease-in-out;
}
.p-news-list-item a::after {
  transform: translateX(-15px) rotate(225deg);
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-news-list-item a:hover::before {
    transform: translateX(15px) rotate(225deg);
    opacity: 0;
  }
  .p-news-list-item a:hover::after {
    transform: translateX(0) rotate(225deg);
    opacity: 1;
  }
}
.p-news-list-item__unit {
  display: flex;
  align-items: center;
  gap: 0 30px;
  margin-bottom: 20px;
}
.p-news-list-item__date {
  font-size: 2rem;
  line-height: 1;
  color: var(--c-primary);
}
.p-news-list-item__cat {
  padding: 3px 15px;
  display: flex;
  align-items: center;
  width: fit-content;
  background: var(--c-primary);
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  border-radius: 10px;
  font-weight: 400;
}
.p-news-list-item__ttl {
  font-size: 2.8rem;
  line-height: 1.4;
  font-weight: 700;
  color: var(--c-tertiary);
  margin-bottom: 5px;
}
@media screen and (max-width: 1300px) {
  .p-news-list-item a {
    padding: 50px 30px 45px 20px;
  }
  .p-news-list-item a::before,
  .p-news-list-item a::after {
    right: 10px;
  }
  .p-news-list-item__date {
    font-size: 1.8rem;
  }
  .p-news-list-item__ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 960px) {
  .p-news-list-item a {
    padding: 40px 30px 35px 0;
  }
  .p-news-list-item__date {
    font-size: 1.6rem;
  }
  .p-news-list-item__ttl {
    font-size: 2.2rem;
  }
  .p-news-list-item__summary {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-news-list-item a {
    padding: 30px 20px 25px 0;
  }
  .p-news-list-item a::before,
  .p-news-list-item a::after {
    right: 0;
  }
  .p-news-list-item__unit {
    gap: 0 20px;
    margin-bottom: 10px;
  }
  .p-news-list-item__date {
    font-size: 1.4rem;
  }
  .p-news-list-item__ttl {
    font-size: 2rem;
  }
  .p-news-list-item__summary {
    font-size: 1.6rem;
  }
}


/* トピックス-詳細- Topics Single
------------------------------------------------- */
.p-news-detail-head {
  display: flex;
  align-items: center;
  gap: 0 30px;
  margin-bottom: 20px;
  margin-top: 50px;
  padding: 0 20px;
}
.p-news-detail-head__date {
  font-size: 2rem;
  line-height: 1;
  color: var(--c-primary);
}
.p-news-detail-head__cat {
  padding: 3px 15px;
  display: flex;
  align-items: center;
  width: fit-content;
  background: var(--c-primary);
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  border-radius: 10px;
  font-weight: 400;
}
.p-news-detail__ttl {
  font-size: 3.4rem;
  line-height: 1.4;
  font-weight: 700;
  color: var(--c-tertiary);
  margin-bottom: 30px;
  padding: 0 20px 60px;
	border-bottom: 1px solid var( --c-border );
}
@media screen and (max-width: 1300px) {
  .p-news-detail-head {
    margin-bottom: 20px;
    margin-top: 30px;
    padding: 0 20px;
  }
  .p-news-detail-head__date {
    font-size: 1.8rem;
  }
  .p-news-detail__ttl {
    font-size: 3.0rem;
    margin-bottom: 30px;
    padding: 0 20px 30px;
  }
}
@media screen and (max-width: 960px) {
  .p-news-detail-head {
    margin-bottom: 20px;
    margin-top: 30px;
    padding: 0 20px;
  }
  .p-news-detail-head__date {
    font-size: 1.6rem;
  }
  .p-news-detail__ttl {
    font-size: 2.6rem;
    margin-bottom: 30px;
    padding: 0 20px 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-news-detail-head {
    gap: 0 20px;
    margin-bottom: 10px;
    margin-top: 30px;
    padding: 0;
  }
  .p-news-detail-head__date {
    font-size: 1.4rem;
  }
  .p-news-detail__ttl {
    font-size: 2.0rem;
    margin-bottom: 20px;
    padding: 0 0 30px;
  }
}

.p-news-detail-cont {
  margin: 0 20px 70px;
}
@media screen and (max-width: 767px) {
  .p-news-detail-cont {
    margin: 0 0 50px;
  }
}

.p-news-detail-cont h2 {
	font-size: 2.8rem;
	margin: 0 0 20px;
	padding: 3px 0 3px 14px;
	position: relative;
  font-family: var(--font-primary-strong);
	font-weight: 700;
	line-height: 1.4;
}
.p-news-detail-cont h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	background: var(--c-primary);
  border-radius: 5px;
}
.p-news-detail-cont h3 {
	font-size: 2.4rem;
	margin: 0 0 20px;
	padding: 0 0 0 14px;
	position: relative;
  font-family: var(--font-primary-strong);
	font-weight: 700;
	line-height: 1.4;
}
.p-news-detail-cont h3::before {
	content: '';
	position: absolute;
	top: 100%;
	border-style: solid;
	border-color: transparent;
	left: 0;
	top: 15px;
	width: 2px;
	height: 2px;
	background: var(--c-primary);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}
.p-news-detail-cont h4 {
	font-size: 2.2rem;
	margin: 0 0 20px;
  font-family: var(--font-primary-strong);
	font-weight: 700;
	color: var(--c-primary);
	line-height: 1.4;
}
.p-news-detail-cont img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.p-news-detail-cont img.alignright {
  margin: 0 0 0 10px;
  display: inline;
}	 
.p-news-detail-cont img.alignleft {
  margin: 0 10px 0 0;
  display: inline;
}			 
.p-news-detail-cont table {
  margin-bottom: 50px;
  width: 100%;
  border-bottom: 1px solid #c8d8c4;
}				 
.p-news-detail-cont table th ,.p-news-detail-cont table td {
  padding: 30px 20px;
  border-top: 1px solid #c8d8c4;
}				 
.p-news-detail-cont table th {
  width: 20%;
}	 
.p-news-detail-cont .aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}  
.p-news-detail-cont .alignright {
  float: right;
} 
.p-news-detail-cont .alignleft {
  float: left;
}
.p-news-detail-cont p {
	margin-bottom: 20px;
}
.p-news-detail-cont img {
	margin-bottom: 10px;
	max-width: 100%;
	height: auto;
	aspect-ratio: auto;
}
.p-news-detail-cont a {
	text-decoration: under-line;
}
@media screen and (max-width: 767px) {
	.p-news-detail-cont h2 {
		font-size: 2.2rem;
	}
	.p-news-detail-cont h3 {
		font-size: 1.9rem;
	}
	.p-news-detail-cont h3::before {
		top: 9px;
	}
	.p-news-detail-cont h4 {
		font-size: 1.8rem;
	}
  .p-news-detail-cont table {
    margin-bottom: 50px;
    width: 100%;
    border-bottom: 1px solid #c8d8c4;
  }				 
  .p-news-detail-cont table th ,.p-news-detail-cont table td {
    padding: 25px 0;
    border-top: 1px solid #c8d8c4;
  }				 
  .p-news-detail-cont table th {
    width: 40%;
  }	 
  .p-news-detail-cont img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .p-news-detail-cont img.alignright {
    margin: 0 auto;
    display: block;
  }	 
  .p-news-detail-cont img.alignleft {
    margin: 0 auto;
    display: block;
  }		 
  .p-news-detail-cont .aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }  
  .p-news-detail-cont .alignright {
    float: none;
  } 
  .p-news-detail-cont .alignleft {
    float: none;
  }
}
@media screen and (max-width: 500px) {
  .p-news-detail-cont {
    padding: 0;
  }
}

/*editor*/
/* Alignments */
.alignleft {
  float: left;
  margin-right: 1rem;
}
@media only screen and (min-width: 768px) {
  .alignleft {
    margin-right: calc(2 * 1rem);
  }
}
.alignright {
  float: right;
  margin-left: 1rem;
}
@media only screen and (min-width: 768px) {
  .alignright {
    margin-left: calc(2 * 1rem);
  }
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*キャプション崩れ*/
.wp-caption {
	max-width: 100% !important;
}


.p-pagenation {
  background: var(--c-secondary);
  border-radius: 10px;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 50px;
}
.p-pagenation p {
  width: 200px;
}
.p-pagenation a {
  display: flex;
  align-items: center;
  height: 50px;
  border-radius: 50px;
  border: 1px solid var(--c-tertiary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-tertiary);
  width: 200px;
  position: relative;
}
.p-pagenation a span {
  font-weight: 700;
  color: var(--c-tertiary);
}
.p-pagenation__btn a {
  justify-content: center;
  transition: all 0.2s ease-in-out;
}
.p-pagenation__btn a span {
  transition: all 0.2s ease-in-out;
}
.p-pagenation__turn--prev a {
  padding: 0 20px 0 50px;
  justify-content: flex-end;
}
.p-pagenation__turn--prev a::before,
.p-pagenation__turn--prev a::after {
  content: '';
  position: absolute;
  top: calc(50% - 4px);
  left: 30px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--c-tertiary);
  border-top: none;
  border-right: none;
  transform: rotate(45deg);
  transition: all 0.2s ease-in-out;
}
.p-pagenation__turn--prev a::after {
  transform: translateX(15px) rotate(45deg);
  opacity: 0;
}
.p-pagenation__turn--next a {
  padding: 0 50px 0 20px;
  justify-content: flex-start;
}
.p-pagenation__turn--next a::before,
.p-pagenation__turn--next a::after {
  content: '';
  position: absolute;
  top: calc(50% - 4px);
  right: 30px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--c-tertiary);
  border-top: none;
  border-right: none;
  transform: rotate(-135deg);
  transition: all 0.2s ease-in-out;
}
.p-pagenation__turn--next a::after {
  transform: translateX(-15px) rotate(-135deg);
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-pagenation__btn a:hover {
    border: 1px solid var(--c-tertiary);
    background: var(--c-tertiary);
    color: #fff;
  }
  .p-pagenation__turn--prev a:hover::before {
    transform: translateX(-15px) rotate(45deg);
    opacity: 0;
  }
  .p-pagenation__turn--prev a:hover::after {
    transform: translateX(0) rotate(45deg);
    opacity: 1;
  }
  .p-pagenation__turn--next a:hover::before {
    transform: translateX(15px) rotate(-135deg);
    opacity: 0;
  }
  .p-pagenation__turn--next a:hover::after {
    transform: translateX(0) rotate(-135deg);
    opacity: 1;
  }
  .p-pagenation__btn a:hover span {
    color: #fff;
  }
}
@media screen and (max-width: 1300px) {
  .p-pagenation {
    column-gap: 20px;
  }
  .p-pagenation p {
    width: 160px;
  }
  .p-pagenation a {
    font-size: 1.6rem;
    width: 160px;
  }
}
@media screen and (max-width: 767px) {
  .p-pagenation {
    padding: 20px;
    column-gap: 10px;
  }
  .p-pagenation p {
    width: 80px;
  }
  .p-pagenation a {
    height: 40px;
    font-size: 1.4rem;
    width: 80px;
  }
  .p-pagenation a span {
    display: none;
  }
  .p-pagenation__turn--prev a {
    padding: 0 10px 0 30px;
  }
  .p-pagenation__turn--prev a::before,
  .p-pagenation__turn--prev a::after {
    left: 10px;
  }
  .p-pagenation__turn--next a {
    padding: 0 30px 0 10px;
  }
  .p-pagenation__turn--next a::before,
  .p-pagenation__turn--next a::after {
    right: 10px;
  }
}

/*----- Pager -----*/
.p-pager {
  font-size: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  margin: var( --cont_margin-block ) 0 var( --cont_margin-block );
} 
.page-numbers {
  width: 60px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  line-height: 1;
  text-align: center;
  border: 2px solid var(--c-tertiary);
  border-radius: 100%;
  transition: all .3s ease-in-out;
  color: var(--c-tertiary);
} 
.prev.page-numbers,
.next.page-numbers {
  font-size: 1.8rem;
  transform: translateY(-2px);
  border: none;
  color: var(--c-tertiary);
  position: relative;
}
.prev.page-numbers:before {
  position: absolute;
  content: "";
  width: 2px;
  height: 14px;
	background: var(--c-tertiary);
  top: 50%;
  left: 50%;
  transform: translateY(-7px) rotate(45deg);
  transition: all .3s ease-in-out;
}
.prev.page-numbers:after {
  position: absolute;
  content: "";
  width: 2px;
  height: 14px;
	background: var(--c-tertiary);
  top: 50%;
  left: 50%;
  transform: translateY(2px) rotate(-45deg);
  transition: all .3s ease-in-out;
}
.next.page-numbers:before {
  position: absolute;
  content: "";
  width: 2px;
  height: 14px;
	background: var(--c-tertiary);
  top: 50%;
  left: 50%;
  transform: translateY(-7px) rotate(-45deg);
  transition: all .3s ease-in-out;
}
.next.page-numbers:after {
  position: absolute;
  content: "";
  width: 2px;
  height: 14px;
	background: var(--c-tertiary);
  top: 50%;
  left: 50%;
  transform: translateY(2px) rotate(45deg);
  transition: all .3s ease-in-out;
}
.page-numbers.current,
.page-numbers:hover {
	color: #fff;
	background: var(--c-tertiary);
}
.prev.page-numbers:hover,
.next.page-numbers:hover {
	background: none;
}
.prev.page-numbers:hover:before,
.prev.page-numbers:hover:after {
  left: calc( 50% - 5px );
}
.next.page-numbers:hover:before,
.next.page-numbers:hover:after {
  left: calc( 50% + 5px );
}
@media screen and (max-width: 767px) {
  .p-pager {
    column-gap: 5px;
  	margin: var( --cont_margin-block ) 0 var( --layout_margin-block );
  } 
  .page-numbers {
    width: 40px;
    font-size: 1.4rem;
  } 
  .prev.page-numbers,
  .next.page-numbers {
    font-size: 1.2rem;
  }
}


/* お問い合わせ
------------------------------------------------- */
.p-assessment {
  margin-bottom: var(--layout_margin-block);
}
.p-assenssment-tunageru {
  border-top: 1px solid var(--c-primary);
  border-bottom: 1px solid var(--c-primary);
  padding: 50px;
  margin-bottom: var(--layout_margin-block02);
}
.p-assenssment-tunageru__ttl {
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 30px;
  text-align: center;
}
.p-assenssment-tunageru__inner {
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
}
.p-assenssment-tunageru__img {
  width: 300px;
}
.p-assenssment-tunageru__txt {
  width: calc(100% - 330px);
  font-size: 1.6rem;
}
@media screen and (max-width: 1200px) {
  .p-assenssment-tunageru {
    padding: 50px 30px;
  }
  .p-assenssment-tunageru__ttl {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 960px) {
  .p-assenssment-tunageru {
    padding: 50px 0;
  }
  .p-assenssment-tunageru__img {
    width: 230px;
  }
  .p-assenssment-tunageru__txt {
    width: calc(100% - 260px);
  }
}
@media screen and (max-width: 767px) {
  .p-assenssment-tunageru {
    padding: 30px 0;
  }
  .p-assenssment-tunageru__ttl {
    font-size: 1.8rem;
  }
  .p-assenssment-tunageru__inner {
    display: block;
  }
  .p-assenssment-tunageru__img {
    width: 230px;
    margin: 0 auto 20px;
  }
  .p-assenssment-tunageru__txt {
    width: 100%;
  }
}

.p-contact-sec {
  margin-bottom: var(--layout_margin-block02);
  padding-bottom: var(--layout_margin-block02);
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--c-border);
}
.p-contact-sec:last-child {
}
@media screen and (max-width: 1200px) {
  .p-contact-sec {
    display: block;
  }
}

/* ----- Layout -----*/
.p-contact-ttl {
  width: 400px;
}
.p-contact-ttl__inner {
  width: 400px;
  display: flex;
  justify-content: flex-start;
  top: 150px;
}
.p-contact-sec:last-child .p-contact-ttl__inner {
  margin-bottom: var(--layout_margin-block02);
}
.p-contact-ttl__num {
  height: 20px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  width: fit-content;
  background: var(--c-primary);
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  border-radius: 10px;
  z-index: 1;
  position: relative;
  margin: 5px 30px 0 0;
}
.p-contact-ttl__ttl {
  font-size: 3rem;
  font-weight: 700;
  color: var(--c-tertiary);
  line-height: 1.4;
}
.p-contact-main {
  width: calc(100% - 400px);
}
@media screen and (max-width: 1500px) {
  .p-contact-ttl {
    width: 300px;
  }
  .p-contact-ttl__ttl {
    font-size: 2.5rem;
  }
  .p-contact-main {
    width: calc(100% - 300px);
  }
}
@media screen and (max-width: 1300px) {
  .p-contact-ttl {
    width: 250px;
  }
  .p-contact-main {
    width: calc(100% - 250px);
  }
}
@media screen and (max-width: 1200px) {
  .p-contact-ttl {
    width: 100%;
    display: block;
    margin-bottom: 30px;
  }
  .p-contact-ttl__inner {
    display: block;
  }
  .p-contact-ttl__num {
    margin: 5px 30px 10px 0;
  }
  .p-contact-main {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .p-contact-ttl {
    width: 100%;
    display: block;
    margin-bottom: 30px;
  }
	.p-contact-sec:last-child .p-contact-ttl__inner {
	  margin-bottom: 0;
	}
}
@media screen and (max-width: 767px) {
  .p-contact-ttl__ttl {
    font-size: 2rem;
  }
}

/*----- Tel -----*/
.p-contact-main__num {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 10px;
}
.p-contact-main__tel {
  font-size: 2.0rem;
  display: inline-block;
  margin-right: 20px;
  color: var(--c-primary);
  line-height: 1.0;
}
.p-contact-main__tel a {
  font-size: 5.0rem;
  display: inline-block;
  margin-left: 10px;
  color: var(--c-primary);
  line-height: 1.0;
}
.p-contact-main__fax {
  font-size: 1.6rem;
  display: inline-block;
  color: var(--c-primary);
  line-height: 1.0;
}
.p-contact-main__fax span {
  font-size: 2.4rem;
  display: inline-block;
  margin-left: 10px;
  color: var(--c-primary);
  line-height: 1.0;
}
.p-contact-main__add {
  font-size: 1.6rem;  
}
@media screen and (max-width: 960px) {
  .p-contact-main__tel span {
    font-size: 2.0rem;
  }
  .p-contact-main__tel a {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact-main__num {
    display: block;
    margin-bottom: 10px;
  }
  .p-contact-main__tel {
    display: block;
    margin-bottom: 10px;
  }
  .p-contact-main__fax {
    display: block;
  }
  .p-contact-main__tel span {
    font-size: 1.4rem;
  }
  .p-contact-main__tel a {
    font-size: 2.8rem;
  }
  .p-contact-main__add {
    font-size: 1.4rem;
  }
}

/* ----- Form -----*/
.p-contact-main__intro {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-contact-main__intro {
    margin-bottom: 30px;
  }
}

/* Guide */
.p-contact-guide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 100px;
  position: relative;
  width: fit-content;
  margin: 0 auto 100px;
}
.p-contact-guide:before {
  width: calc(100% - 30px);
  height: 1px;
  content: '';
  position: absolute;
  bottom: 0;
  left: 15px;
  z-index: -1;
  background: var(--c-border);
}
.p-contact-guide__item {
  letter-spacing: .15em;
  line-height: 1;
  font-size: 1.8rem;
  position: relative;
  padding: 0 0 20px;
}
.p-contact-guide__item:before {
  width: 15px;
  aspect-ratio: 1;
  margin-bottom: 16px;
  margin-inline: auto;
  content: '';
  position: absolute;
  left: 50%;
  bottom: -23px;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 100%;
}
.p-contact-guide__item.-current:before {
  border: 3px solid var(--c-primary);
}
@media screen and (max-width: 1200px) {
  .p-contact-guide {
    gap: 0 100px;
    margin: 0 auto 70px;
  }
}
@media screen and (max-width: 960px) {
  .p-contact-guide {
    gap: 0 50px;
    margin: 0 auto 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-contact-guide {
    gap: 0 30px;
    margin: 0 auto 30px;
  }
  .p-contact-guide__item {
    font-size: 1.6rem;
  }
}

/* Contents */
.p-form-table {
	margin-bottom: 50px;
	border-top: 1px solid var(--c-border);
}
.p-form-table dl {
	padding-block: 25px;
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--c-border);
}
.p-form-table dl dt {
	width: 320px;
	padding-left: 30px;
	flex-shrink: 0;
  font-size: 1.8rem;
}
.p-form-table dl dt p {
  font-size: 1.8rem;
}
.p-form-table dl dd {
  font-size: 1.8rem;
}
.p-form-table dl dd.c-col-s {
	width: 60px;
	flex-shrink: 0;
}
.p-form-table dl dd.c-col-l {
	width: calc( 100% - 380px );
	padding-left: 50px;
}
.p-form-txt {
	margin-bottom: 5px;
	display: block;
	font-size: 1.4rem;
}
.p-count {
	font-size: 1.4rem;  
}
.p-form-rec {
  width: 100%;
  height: 20px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var( --c-tertiary );
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  border-radius: 10px;
  z-index: 1;
  position: relative;
  margin: 5px 30px 0 0;
}
@media screen and (max-width: 1600px) {
  .p-form-table dl dt {
    width: 300px;
    padding-left: 0;
  }
  .p-form-table dl dd.c-col-l {
    width: calc( 100% - 310px );
  }
}
@media screen and (max-width: 960px) {
  .p-form-table dl dt {
    width: 250px;
    font-size: 1.8rem;
  }
	.p-form-table dl dd {
    font-size: 1.8rem;
	}
  .p-form-table dl dd.c-col-l {
    width: calc( 100% - 280px );
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-form-table {
    margin-bottom: 30px;
  }
  .p-form-table dl {
    flex-wrap: wrap;
  }
  .p-form-table dl dt {
    width: calc( 100% - 50px );
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 700;
  }
  .p-form-table dl dt p {
    font-size: 1.4rem;
    font-weight: 700;
  }
	.p-form-table dl dd {
    font-size: 1.4rem;
	}
  .p-form-table dl dd.c-col-s {
    width: 50px;
    margin-bottom: 10px;
  }
  .p-form-table dl dd.c-col-l {
    width: 100%;
  	padding-left: 0;
  }
  .p-form-txt {
    font-size: 1.4rem;
  }
  .p-form-rec {
    padding: 7px 0;
    font-size: 1.2rem;
  }
}

.p-policy {
  font-size: 1.5rem;
  margin-bottom: 50px;
  padding: 40px 40px 20px;
  overflow-y: auto;
  border: 1px solid var(--c-border);
  border-radius: 5px;
  height: 350px;
}
.p-policy-block {
  margin-bottom: 20px;
}
.p-polilcy__ttl {
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.p-policy-block__txt {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 5px;
}
.p-form-check {
  width: fit-content;
  display: flex;
  justify-content: center;
  position: relative;
  font-size: 0;
  text-align: center;
  margin: 0 auto 50px;
}
.p-form-check input[type="checkbox"] {
  margin-right: 10px;
  display: inline-block;
  vertical-align: -1px;
}
.p-form-check__txt {
  display: inline-block;
  position: relative;
  font-size: 1.6rem;
  letter-spacing: .1em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-policy {
    font-size: 1.4rem;
    margin-bottom: 30px;
    padding: 20px 20px 10px;
    height: 250px;
  }
  .p-policy-block {
    margin-bottom: 10px;
  }
  .p-polilcy__ttl {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
  .p-policy-block__txt {
    font-size: 1.4rem;
  }
  .p-form-check {
    margin: 0 auto 30px;
  }
  .p-form-check__txt {
    font-size: 1.4rem;
  }
}

/* ----- 確認画面、完了画面 -----*/
#form02 .p-contact-lead,
#form03 .p-contact-lead {
	padding: 20px;
	font-size: 1.8rem;
	line-height: 1.75;
	font-weight: 700;
	text-align: center;
}
.p-contact-lead.-error {
	margin-bottom: 60px;
	color: var(--c-primary);
	border: 3px solid var(--c-primary);
}
#form02 .p-contact-lead {
	margin-bottom: 60px;
	color: var(--c-primary);
	border: 3px solid var(--c-primary);
	border-radius: 20px;
}
#form03 .p-contact-lead {
	margin-bottom: 60px;
	color: var(--c-primary);
	border: 3px solid var(--c-primary);
	/*background: var(--c-secondary);*/
	border-radius: 20px;
	font-weight: 400;
}
.p-contact-lead.-complete span {
	display: block;
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--c-primary);
}
.p-contact-lead.-complete a {
	color: var( --c-tertiary );
}
.error_messe {
  color: #b10000;
}
#form03 .c-btn {
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	#form02 .p-contact-lead,
	#form03 .p-contact-lead {
		font-size: 1.6rem;
	}
	.p-contact-lead.-complete span {
		display: block;
		font-size: 1.7rem;
	}
	#form02 .p-form-table dl,
	#form03 .p-form-table dl {
		flex-direction: column;
	}
	#form02 .p-form-table dl dt,
	#form02 .p-form-table dl dd,
	#form03 .p-form-table dl dt,
	#form03 .p-form-table dl dd {
		width: 100%;
	}
}

.c-btn-submit {
	width: 500px;
	position: relative;
	margin: 0 auto 20px;
}
.c-btn-submit a,
.c-btn-submit input {
	width: 100%;
	padding: 0 40px;
	height: 100px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	background: var(--c-tertiary);
	font-size: 2.0rem;
	letter-spacing: .2em;
	line-height: 1.3;
	border: 2px solid var(--c-tertiary);
	border-radius: 70px;
	transition: all .2s ease-in-out;
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-align: left;
}
.c-btn-submit::before {
  content: '';
  position: absolute;
  top: calc(50% - 4px);
  right: 30px;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  transform: rotate(225deg);
  opacity: 1;
  transition: all 0.2s ease-in-out;
  z-index: 1;
}
.c-btn-submit::after {
  content: '';
  position: absolute;
  top: calc(50% - 4px);
  right: 30px;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  transform: translateX(-15px) rotate(225deg);
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.c-btn-back a,
.c-btn-back input {
	width: 100%;
	color: var(--c-tertiary);
	font-size: 1.8rem;
	line-height: 1.3;
	transition: all .2s ease-in-out;
	font-weight: 400;
	letter-spacing: 0.05em;
	text-align: center;
	background: none;
	text-decoration: underline;
}
.c-btn-back input {
	font-size: 2.0rem;
}
.p-form-btn-caution {
	font-size: 1.8rem;
	text-align: center;
}
@media (hover: hover) and (pointer: fine) {
  .c-btn-submit a:hover,
  .c-btn-submit input:hover {
    padding: 0 30px 0 50px;
  }
  .c-btn-submit:hover::before {
    transform: translateX(15px) rotate(225deg);
    opacity: 0;
  }
  .c-btn-submit:hover::after {
    transform: translateX(0) rotate(225deg);
    opacity: 1;
  }
}
@media screen and (max-width: 960px) {
  .c-btn-submit a,
  .c-btn-submit input {
    font-size: 1.8rem;
  }
	.c-btn-back input {
    font-size: 1.8rem;
	}
	.p-form-btn-caution {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 767px) {
  .c-btn-submit {
    width: 270px;
    position: relative;
    margin: 0 auto 20px;
  }
  .c-btn-submit a,
  .c-btn-submit input {
    padding: 0 20px;
    height: 60px;
    font-size: 1.4rem;
  }
  .c-btn-submit a::before,
  .c-btn-submit input::before {
    right: 20px;
  }
  .c-btn-submit a::after,
  .c-btn-submit input::after {
    right: 20px;
  }
	.c-btn-back input {
    font-size: 1.4rem;
	}
	.p-form-btn-caution {
    font-size: 1.4rem;
	}
  @media (hover: hover) and (pointer: fine) {
    .c-btn-submit a:hover,
    .c-btn-submit input:hover {
      padding: 0 20px 0 30px;
    }
  }
}
@media screen and (max-width: 500px) {
	.p-form-btn-caution {
    text-align: left;
	}
	.p-form-btn-caution br {
		display: none;
	}
}

/*プラグイン*/
.wpcf7 form .wpcf7-response-output {
  background: #ffb900;
  padding: 10px;
  text-align: center;
  color: #fff;
  border-radius: 10px;
  border: none;
  margin-bottom: 50px !important;
  font-size: 1.8rem;
}
.wpcf7 form .wpcf7-response-output:empty {
  display: none;
}
.wpcf7-not-valid-tip {
  color: #dc3232 !important;
  font-size: 1.4rem;
  font-weight: normal;
  display: block;
  text-align: left;
}
.p-entry-form .p-form-check .wpcf7-not-valid-tip {
  text-align: center;
}
#form01 .p-form-table .p-col-l span.wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-spinner {
  display: none;
}
#form01 span.wpcf7-not-valid-tip {
  display: block;
  font-size: 1.5rem;
  margin-top: 3px;
}
.wpcf7-list-item {
  margin-left: 0 !important;
  margin-right: 15px;
}
.wpcf7-list-item input[type="radio"] {
  transform: translateY(1px);
}
.wpcf7-list-item input[type="checkbox"] {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid var(--c-border);
  transform: translateY(1px);
  border-radius: 3px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.wpcf7-list-item input[type="checkbox"]:checked {
  background: var(--c-primary);
  border: 1px solid var(--c-primary);
}
.wpcf7-list-item input[type="checkbox"]:checked:before {
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: '';
}
.wpcf7-list-item-label {
  margin-left: 3px;
}
@media screen and (max-width: 767px) {
	.wpcf7 form .wpcf7-response-output {
	  font-size: 1.6rem;
	}
}

/* Utility
------------------------------------------------- */
/* ---------- Display ----------*/
.u-emphasis {
  background: linear-gradient(transparent 60%, #fffb7d 60%);
  font-weight: 700;
}
.u-color01 {
  color: var(--c-primary);
}

.u-m-xxl,
.u-m-xl,
.u-m-lg,
.u-m-ll,
.u-m-md,
.u-m-sm,
.u-m-xs { display: none;}
.u-p-xxl,
.u-p-xl,
.u-p-ll,
.u-p-lg,
.u-p-md,
.u-p-sm,
.u-p-xs { display: block;}
@media screen and (max-width: 1480px) {
	.u-m-xxl { display: block;}
	.u-p-xxl { display: none;}
}
@media screen and (max-width: 1300px) {
	.u-m-xl { display: block;}
	.u-p-xl { display: none;}
}
@media screen and (max-width: 1200px) {
	.u-m-ll { display: block;}
	.u-p-ll { display: none;}
}
@media screen and (max-width: 1024px) {
	.u-m-lg { display: block;}
	.u-p-lg { display: none;}
}
@media screen and (max-width: 960px) {
	.u-m-md { display: block;}
	.u-p-md { display: none;}
}
@media screen and (max-width: 767px) {
	.u-m-sm { display: block;}
	.u-p-sm { display: none;}
}
@media screen and (max-width: 428px) {
	.u-m-xs { display: block;}
	.u-p-xs { display: none;}
}
