@charset "UTF-8";

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

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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


body {
  font-size: 1.125rem;
  line-height: 1.1111111111;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #727171;
  background: #fff;
}

main{
	min-width:1300px;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  -webkit-filter: brightness(1.2);
  /* Safari用 */
  filter: brightness(1.2);
  /* デフォルト */
}

@media screen and (max-width: 768px) {
  a:hover {
    opacity: 1;
  }
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin: auto;
}

.no-image {
  background: #fff;
  padding: 0.5rem;
  -o-object-fit: contain !important;
  object-fit: contain !important;
}

.no-article,
.no-search {
  margin-top: 5rem;
  text-align: center;
}

@media screen and (max-width: 768px) {

  .no-article,
  .no-search {
    margin-top: 8vw;
    text-align: center;
  }

  .no-article,
  .no-search {
    font-size: 3.85vw;
  }

  #article .p-news,
  #search .p-news {
    padding: 15vw 0;
  }
}

.l-inner {
  width: 100%;
  max-width: 1190px;
  margin-inline: auto;
  padding: 0 25px;
}

@media screen and (max-width: 768px) {
  .l-inner {
    padding: 0 20px;
  }
}

.l-section--bg {
  background: #ededed;
}

.c-article__image img {
  aspect-ratio: 296/192;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-article__category {
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  font-weight: 600;
  color: #fff;
  background: #eb6d73;
  margin-top: 0.9375rem;
  padding: 3.5px 1rem 4px;
}

.c-article__title {
  font-size: 1.0625rem;
  line-height: 1.4117647059;
  letter-spacing: 0em;
  font-weight: 600;
  margin-top: 1rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.c-article .c-article__date {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0.1875rem;
  margin-top: 1rem;
}

.c-article__date .icon {
  width: 16px;
  padding-top: 1px;
}

.c-article__time {
  font-size: 0.9375rem;
  line-height: 1.1333333333;
  letter-spacing: 0em;
  font-weight: 400;
  color: #727171;
}
.over-1200{
	display: block;
}
@media screen and (max-width: 1199px) {
	.over-1200{
	    display: none;
    }
}

/*ーーーーーーーーー ハンバーガー ーーーーーーーー*/
.under-1200{
	display: none;
}
@media screen and (max-width: 1199px) {
	.under-1200{
	    display: block;
    }
}
.p-drawer__icon {
  position: absolute;
  width: 3.125rem;
  height: 3.125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1.25rem;
  background: #73b0f2;
  cursor: pointer;
  z-index: 1000;
}

.p-drawer__icon-bars {
  position: relative;
  display: block;
  top: 0.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 1.875rem;
  height: 1.875rem;
  z-index: 1000;
}

.p-drawer__icon-bar1,
.p-drawer__icon-bar2,
.p-drawer__icon-bar3 {
  position: absolute;
  width: 1.875rem;
  height: 0.1875rem;
  background: #fff;
  top: 0;
  left: 0;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.p-drawer__icon-bar1 {
  top: 0.1875rem;
}

.p-drawer__icon-bar2 {
  top: 0.8125rem;
}

.p-drawer__icon-bar3 {
  top: 1.5rem;
}

.p-drawer__icon.is-active .p-drawer__icon-bar1 {
  width: 1.875rem;
  top: calc(50% - 0.125rem);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.p-drawer__icon.is-active .p-drawer__icon-bar2 {
  display: none;
}

.p-drawer__icon.is-active .p-drawer__icon-bar3 {
  width: 1.875rem;
  top: calc(50% - 0.125rem);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.p-drawer__icon.is-active {
  background: #fff;
}

.p-drawer__icon.is-active .p-drawer__icon-bar1,
.p-drawer__icon.is-active .p-drawer__icon-bar3 {
  background: #73b0f2;
}

.p-drawer__contents {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  color: #fff;
  background: #73b0f2;
  padding: 6.25rem 1.25rem;
  padding: 25.64vw 10.26vw;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: auto;
  pointer-events: none;
  overflow-y: scroll;
  z-index: 250;
}

.p-drawer__contents.is-active {
  opacity: 1;
  pointer-events: auto;
}

.p-drawer .p-drawer__search {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 5.13vw;
}

.p-drawer__search-text {
  line-height: 1.375;
  letter-spacing: 0em;
  font-weight: 600;
  font-size: 4.62vw;
  color: #fff;
}

.p-drawer__search-icon {
  display: inline-block;
  background: #fff;
  padding: 2.56vw;
}

.p-drawer__search-icon img {
  width: 7.69vw;
  height: 7.69vw;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-drawer .p-drawer__items {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 7.69vw;
  margin-top: 12.82vw;
}

.p-drawer__item {
  width: 100%;
  border-bottom: 1px solid #fff;
  padding-bottom: 2.56vw;
}

.p-drawer__item a {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 5.13vw;
}

.p-drawer__item .arrow {
  display: inline-block;
  width: 3.85vw;
}

.p-drawer__item .arrow img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.p-drawer__item .link_text {
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: 0em;
  font-weight: 600;
  position: relative;
  padding-left: 25px;
}


.p-drawer__item .link_text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-48%);
  border-style: solid;
  border-width: 8px 0 8px 12px; /* 上4px 右0 下4px 左6px */
  border-color: transparent transparent transparent #c9caca; /* ▶ グレー */
  transition: border-left-color 0.3s;
}

.current-menu .link_text::before {
  border-color: transparent transparent transparent #eb6d73; /* ピンク */
}





/*ーーーーーーーーー フッター  ーーーーーーーー*/
.p-footer {
  padding: 2rem 0 1rem;
  background-color: #eeeeee;
  position: relative;
}

.p-footer__logo {
  width: 100%;
  max-width: 5rem;
  margin-inline: auto;
}

.p-footer__copyright {
  display: block;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  letter-spacing: 0em;
  font-weight: 400;
  color: #9d9d9d;
  text-align: center;
  margin-top: 1rem;
}

@media screen and (max-width: 768px) {
  .p-footer {
    padding: 30px 0 20px;
	border: none;
  }

  .p-footer__logo {
    max-width: 100px;
  }

  .p-footer__copyright {
    font-size: 3.08vw;
    margin-top: 4.1vw;
  }
}
.p-footer__bar{
	position: absolute;
    top: 0;
    height: 7px;
}


/*ーーーーーーーーー ヘッダー  ーーーーーーーー*/
.p-header {
  position: relative;
  border-bottom: 10px solid #eb6d73;
  padding: 0.8rem 0;
  z-index: 999;
}

.p-header .p-header__inner {
  width: 100%;
  max-width: 1190px;
  margin-inline: auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 0 0 0 1rem;
}

.p-header__logo {
  width: 100%;
  max-width: 6rem;
  margin-left: 0;
}

.p-header__contents {
  width: 100%;
  width: auto;
}

.p-header .p-header__search {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 1.875rem;
}

.contact_btn{
	padding: 10px 35px;
    border: 2px solid #eb6d73;
    border-radius: 100px;
    color: #eb6d73;
    box-shadow: 2px 2px 0px 1px #eb6d73;
    min-width: 200px;
    text-align: center;
}
.contact-text{
    font-weight: 600;
    position: relative;
    padding-left: 25px;
	
}
.contact-text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-48%);
    border-style: solid;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent #eb6d73;
    transition: border-left-color 0.3s;
}
.contact_btn:hover{
	background-color: #eb6d73;	
    color: #ffffff;
}
.contact-text:hover::before{
	border-color: transparent transparent transparent #ffffff;
}

.p-header__nav {
  
}

.p-header .p-header__lists {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1rem 0 0;
  gap: 1.25rem;
}

.p-header__list a {
  gap: 0.3125rem;
}

.p-header__list .arrow {
  width: 0.6875rem;
}

.p-header__list .link_text {
  font-size: 1rem;
  line-height: 1.40625;
  letter-spacing: 0em;
  font-weight: 600;
  position: relative;
  padding-left: 20px;
}

.p-header__list .link_text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-48%);
  border-style: solid;
  border-width: 8px 0 8px 12px; /* 上4px 右0 下4px 左6px */
  border-color: transparent transparent transparent #c9caca; /* ▶ グレー */
  transition: border-left-color 0.3s;
}

.current-menu .link_text::before {
  border-color: transparent transparent transparent #eb6d73; /* ピンク */
}


@media screen and (max-width: 768px) {
  .p-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
	height: 80px;
	border-bottom: 5px solid #eb6d73;
  }

  .p-header__logo {
    max-width: 13vw;
  }
  .p-header .p-header__search{
	position: absolute;
    right: 90px;
  }
  .contact_btn{
	padding: 9px 14px 9px 17px;
    min-width: unset;
	box-shadow: 1px 1px 0px 1px #eb6d73;
  }
  .contact-text{
	font-size: 14px;
    padding-left: 20px;
  }
  .contact-text::before{
	border-width: 7px 0 7px 12px;
  }
}

/*ーーーーーーーーー main ーーーーーーーー*/
main{
  min-width:1200px;
  margin-top: 4px;
  border-top: 6px solid #6ea6da;
}
@media screen and (max-width: 768px) {
	main{
		border-top: 5px solid #6ea6da;
	}
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　トップページ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/*ーーーーーーーーー mv ーーーーーーーー*/
.p-mv_container {
  overflow: hidden;
  padding: 6rem 0 6.25rem;
  text-align: center;
}
.ttl-m{
	font-size: 3rem;
	margin-bottom: 15px;
	text-align: center;
}
.ttl-ss{
	text-align: center;
}
.color-pink{
	color: #eb6d73;
}
.mv-text__container{
	max-width: 450px;
    margin: 45px auto 0;
}
.text{
	text-align: justify;
	line-height: 1.75;
	color: #727171;
}
.mv-img__container{
	max-width: 1500px;
    margin: -200px auto 0;
    padding: 0 20px;
}


/*ーーーーーーーーー　リスク  ーーーーーーーー*/
.p-risk__container{
	padding: 5rem 1rem 5rem;
    background-color: #dcdddd;
	position: relative;
}
.p-risk__inner{
	background-color: #fff;
    padding: 50px 50px 30px;
    border-radius: 20px;
}
.p-risk__wrapper{	
    position: relative;
}
.color-blue{
	color: #6ea6da;
}
.p-risk__wrapper .text{
	max-width: 85%;
    margin: 0 auto;
}
.p-risk__items{
	margin: 20px 0 0;
    gap: 33%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: space-between;
}
.p-risk__item{
	display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
    gap: 3px;
}
.p-risk__contents{
	padding: 20px 15px;
    background-repeat: no-repeat;
    background-position: center;
}
.p-risk__1{
	border-bottom: 2px solid #dcdddd;
	background-image: url(../img/risk-1.png);
}
.p-risk__2{
	background-image: url(../img/risk-2.png);
}
.p-risk__3{
	border-bottom: 2px solid #dcdddd;
	background-image: url(../img/risk-3.png);
}
.p-risk__4{
	background-image: url(../img/risk-4.png);
}
.p-risk__contents .text{
	max-width: 100%;
	margin-top: 10px;
	text-align: justify;
	font-size: 1rem;
} 
.p-risk__img{
	width: 37%;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}
.p-risk__container::after{
	content: "";	
    position: absolute;
	width: 255px;
    height: 74px;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../img/risk02.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

/*ーーーーーーーーー  スマロビコンシェルジュ　ーーーーーーーー*/
.p-concierge__container{
	padding: 7rem 0 6.25rem;
}
.font-corporate{
	font-family: "corporate-logo-ver2", "Noto Sans JP", sans-serif;
	font-weight: 600;
	font-style: normal;
	text-align: center;
}

/* -----------------------------------------------------------
   Adobe Fonts 読み込み中のガタつき対策
----------------------------------------------------------- */

/* 1. 身代わりフォント（fallback）の定義 */
@font-face {
  font-family: "corporate-fallback";
  /* メイリオやヒラギノをベースにする */
  src: local("Hiragino Kaku Gothic ProN"), local("Meiryo"), sans-serif;
  
  /* Adobe Fonts (Corporate Logo) は少しスリムで高さがあるため、
     身代わりフォントのサイズを微調整して位置を合わせる */
  size-adjust: 105%;      /* 全体のサイズを微調整 */
  ascent-override: 95%;   /* 上方向の余白を調整 */
  letter-spacing: -0.02em; /* 文字間を少し詰めて Adobe Fonts に寄せる */
}

/* 2. 実際の要素に適用 */
.font-corporate {
  /* まず身代わりを出し、Adobe Fontsが来たら入れ替える（swap） */
  font-family: "corporate-logo-ver2", "corporate-fallback", sans-serif;
  font-display: swap; 
}



.p-concierge__inner .ttl-ss{
	margin-bottom: 10px;
}
.p-concierge__container .ttl-m img{
	max-width: 766px;
}
.p-concierge-text__container{
	max-width: 650px;
    margin: -20px auto 0;	
}

/*ーーーーーーーーー　スマロビリンク  ーーーーーーーー*/
.p-link__container{
	padding: 5rem 1rem 5rem;
    background-color: #eb6d73;
	position: relative;
}
.p-link__inner{
	background-color: #fff;
    padding: 50px;
    border-radius: 20px;
}
.p-link__inner .ttl-ss{
	margin-bottom: 10px;
}
.p-link__container .ttl-m img{
	max-width: 568px;
}
.p-link_ttl{
	text-align: center;
    font-size: 1.75rem;
    font-weight: 600;
	margin-top: 40px;
}
.p-link__items{
	display: flex;
    align-items: flex-start;
	margin: 30px auto;
}
.p-link__item{
	padding: 0 30px;
	width: 33.33%;
}
.p-link__img{
	max-width: 250px;
	margin: 0 auto 10px;
}
.p-link__item .text{
	text-align: justify;
}
.p-link__item2{
	border-left: 0.5px solid #727171;
	border-right: 0.5px solid #727171;
}
.ttl-s{
	text-align: center;
    font-size: 2.5rem;
}
.p-link__wrapper .ttl-s{
    position: relative;
    width: fit-content;
    margin: 80px auto 0;
}
.p-link__wrapper .ttl-s::before{
	content: "";
    position: absolute;
    top: 50%;
    left: -120PX;
    transform: translateY(-50%);
    width: 100px;
    height: 1px;
    background-color: #eb6d73;
}
.p-link__wrapper .ttl-s::after{
	content: ""; 
    position: absolute;
    top: 50%;
    right: -120PX;
    transform: translateY(-50%);
    width: 100px;
    height: 1px;
    background-color: #eb6d73;
}
.p-link-case__wrapper{
	margin-top: 50px;
}
.p-link-case__ttl{
	font-size: 2rem;
    font-weight: 600;
    color: #727171;
    position: relative;
    padding-left: 30px;
}
.p-link-case__ttl::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-48%);
    border-style: solid;
    border-width: 12px 0 12px 18px;
    border-color: transparent transparent transparent #727171;
    transition: border-left-color 0.3s;
}
.p-link-case__items{
	margin-top: 20px;
    display: flex;
    gap: 30px;
	align-items: center;
}
.p-link-case__img{
	width: 45%;
}
.p-link-case__text{
	width: 55%;
}
.p-link-case__detail{
	padding-left: 25px;
}
.p-link-case__detail li{
	font-size: 1.5rem;
    font-weight: 600;
    list-style: disc;
	margin-bottom: 15px;
	line-height: 1.2;
}
.p-link-case__detail2{
	padding: 7px 15px;
    border: 3px solid #eb6d73;
    font-weight: 600;
    width: fit-content;
    margin: 10px 0;
}
.p-link-case__detail3{
	padding-left: 25px;
}
.p-link-case__detail3 li{
	list-style: circle;
    margin-bottom: 7px;
    color: #727171;
	line-height: 1.2;
}

/*ーーーーーーーーー　各種サービス  ーーーーーーーー*/
.p-service__container{
	padding: 6rem 0 6.25rem;
}
.p-service__inner .ttl-m{
	max-width: 900px;
    margin: auto;
}
.p-service__inner .ttl-ss{
	margin-top: 10px;
}
.p-concierge__container .ttl-m img{
	max-width: 900px;
}
.p-service__items{
	gap: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: space-between;
	position: relative;
	margin-top: -15px;
}
.p-service__item{
	display: grid;
    grid-row: span 6;
    grid-template-rows: subgrid;
    gap: 0px;
    border-radius: 25px;
	background: #fff;
	position: relative;
}
.p-top-detail__item-blue2 {
    border: 3px solid #6ea7da;
}
.p-top-detail__item-blue2 .p-top-detail__item-background {
	background-color: #eaf2fa;
    border-color: #6ea7da;
}
.p-service__item .font-corporate{
	padding: 25px 20px 15px;
}

.p-service-detail__img{
	width: 90%;
	margin: auto;
}
.p-service-detail__img img{
	height: auto;
}
.p-service__item .text{
	padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
	text-align: center;
}
.p-service__text{
	border-top: 0.5px solid #6ea6da;
    padding: 5px 20px !important;
	line-height: 1.5;
}
.p-service__items2{
	margin-top: 30px;
	gap: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: space-between;
}
.p-service__item2{
	display: grid;
	width: 90%;
    margin: 0 auto;
}
.p-service__item2 a{
	padding: 20px 50px;
    border: 2px solid #eb6d73;
    border-radius: 100px;
    color: #eb6d73;
    box-shadow: 2px 2px 0px 1px #eb6d73;
    text-align: center;
}
.p-service__btn{
    font-weight: 600;
    position: relative;
    padding-left: 30px;
	font-size: 1.25rem;
	
}
.p-service__btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-48%);
    border-style: solid;
    border-width: 12px 0 12px 18px;
    border-color: transparent transparent transparent #eb6d73;
    transition: border-left-color 0.3s;
}
.p-service__item2 a:hover{
	background-color: #eb6d73;	
    color: #ffffff;
}
.p-service__item2 a:hover .p-service__btn::before{
	border-color: transparent transparent transparent #ffffff;
}
.p-service__img{
	height: auto;
	z-index: 5;
    position: relative;
	margin-top: 20px;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　トップページ　スマホ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

@media screen and (max-width: 768px) {
	body{
		font-size: 1rem;
	}
	main{
		min-width:0;
		margin-top: 80px;
	}
	
/*ーーーーーーーーー　mv　ーーーーーーーー*/
	.p-mv_container{
		padding: 3rem 0;
	}
	.ttl-m{
		font-size: 28px;
		line-height: 1.3;
		
	}
	.ttl-ss{
		font-size: 18px;
		line-height: 1.5;
	}
	.mv-text__container{
		max-width: 79%;
		margin: 20px auto 0;
	}
	.mv-img__container{
		margin: -25px auto 0;
		padding: 0 0px;
	}
	
/*ーーーーーーーーー　リスク　ーーーーーーーー*/
	.p-risk__container{
		padding: 3rem 15px;
	}
	.p-risk__inner{
		padding: 20px 20px 0;
	}
	.p-risk__wrapper .text{
		max-width: 100%;
	}
	.p-risk__contents{
		padding: 25px 0px;
	}
	.p-risk__items{
		display: block;
	}
	.p-risk__2{
		border-bottom: 2px solid #dcdddd;
	}
	.p-risk__img{
		position: relative;
    	width: 80%;
    	bottom: unset;
    	left: unset;
    	transform: unset;
    	margin: auto;
	}
	.p-risk__container::after{
		width: 150px;
		bottom: -50px;
	}
	
/*ーーーーーーーーー　コンシェルジュ　ーーーーーーーー*/	
	.p-concierge__container{
		padding: 3rem 0;
	}
	.p-concierge-text__container{
		margin: 0 auto 0;
	}
	
/*ーーーーーーーーー　スマロビリンク　ーーーーーーーー*/	
	.p-link__container{
		padding: 3rem 15px;
	}
	.p-link__inner{
		padding: 20px;
	}
	.p-link_ttl{
		font-size: 18px;
		line-height: 1.5;
		margin-top: 20px;
	}
	.p-link__items{
		flex-direction: column;
	}
	.p-link__item{
		padding: 0 0 30px;
		width: 100%;
	}
	.p-link__item2{
		border-left: none;
		border-right: none;
	}
	.p-link__wrapper .ttl-s{
		font-size: 28px;
        margin: 20px auto 0;
	}
	.p-link__wrapper .ttl-s::before{
		left: -50PX;
		width: 40px;
	}
	.p-link__wrapper .ttl-s::after{
		right: -50PX;
		width: 40px;
		
	}
	.p-link-case__wrapper{
		margin-top: 30px;
	}
	.p-link-case__ttl{
		font-size: 6.7vw;
	}
	.p-link-case__items{
		flex-direction: column;
	}
	.p-link-case__img, .p-link-case__text{
		width: 100%;
	}
	.p-link-case__detail li{
		font-size: 18px;
		line-height: 1.3;
	}
	.p-link-case__detail3 li{
		line-height: 1.5;
	}
	
/*ーーーーーーーーー　サービス　ーーーーーーーー*/	
	.p-service__container{
		padding: 3rem 0px;
	}
	.p-service__items{
		padding: 0 10px 0 5px;
		margin-top: 20px;
		gap: 40px;
	}
	.p-service__item{
		grid-row: span 7;
	}
	.p-service__item2{
		border-top: 0.5px solid #6ea6da;
    padding: 13px 20px 15px !important;
    width: 100%;
	}

}







/*ーーーーーーーーー　NEWS　ーーーーーーーー*/
.p-news {
  padding: 5rem 0 5rem;
}

.home .p-news {
  background: #fdf4f4;
}

.p-news__inner{
	position: relative;
	z-index: 10;
}

.p-news__head {
  text-align: center;
}

.p-news__head .p-link_ttl{
	margin-top: 10px;
}

.news-img{
	max-width: 300px;
    margin: 30px auto;
}

/* 外側の枠線 */
.news-category-nav {
  border-top: 1px solid #9fa0a0;
  border-bottom: 1px solid #9fa0a0;
  padding: 15px 0;
  margin-bottom: 30px;
}

/* リストを横並びにする */
.category-list {
  display: flex;
  justify-content: center; /* 中央寄せ（左寄せなら flex-start） */
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 25px; /* 項目間の余白 */
}

.category-list li {
  position: relative;
  padding-left: 15px; /* ドットの分の余白 */
  font-size: 16px;
  font-weight: 600;
}

/* グレーのドット */
.category-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #b5b5b6; /* ドットの色 */
  border-radius: 50%;
}

/* リンクの装飾消去 */
.category-list li a {
  text-decoration: none;
  color: inherit;
}

.category-list li.current_cat a{
	color: #eb6d73;
}

.category-list li.current_cat::before {
    background-color: #eb6d73; 
}

.category-list li a:hover {
  opacity: 0.7;
}

.p-news__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8125rem;
  margin-top: 50px;
}

.tag .p-news__items{
	margin-top: 80px;
}

.p-news__item a {
  display: block;
}

.p-news__btn {
  margin-top: 3.75rem;
  text-align: center;
}

.p-news__btn a {
    padding: 20px 50px;
    border: 2px solid #eb6d73;
    border-radius: 100px;
    color: #eb6d73;
    box-shadow: 2px 2px 0px 1px #eb6d73;
    min-width: 280px;
    text-align: center;
    background: #fff;
    display: flex;
	justify-content: center;
	max-width: 400px;
    margin: auto;

}

.p-news__btn a:hover {
    background-color: #eb6d73;
    color: #ffffff;
}

.p-news__btn a:hover .p-service__btn::before{
	border-color: transparent transparent transparent #ffffff;
}

.p-news__tag {
  margin-top: 3rem;
}

.p-news__tag-text{
	font-size: 2rem;
	text-align: center;
    font-weight: 600;
}

.p-news__tag-head {
    gap: 0.5rem;
    width: 500px;	
    justify-content: left !important;
}

.p-news__tag-contents {
  gap: 1.4375rem;
  align-items: flex-start !important;
}

.p-news__tag .tag-icon {
  width: 2.5rem;
  height: auto;
}

.p-news__tag .tag-text {
  font-size: 1rem;
  line-height: 1.1875;
  letter-spacing: 0em;
  font-weight: 500;
  color: #00238c;
}

.p-news__tag-lists {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem 0.9375rem;
}

.p-news__tag-list a {
  display: inline-block;
  width: 100%;
  font-size: 0.9375rem;
  line-height: 1.2666666667;
  letter-spacing: 0em;
  font-weight: 400;
  color: #fff;
  background: #009fde;
  border-radius: 1.25rem;
  padding: 0.5625rem 0.5rem 0.6875rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-news {
    padding: 3rem 0;
  }

  .p-news__head-title {
    font-size: 12.82vw;
  }

  .p-news__head-sub-title {
    font-size: 4.62vw;
    margin-top: 0;
  }

  .p-news__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 7.69vw 2.56vw;
    margin-top: 10.26vw;
  }

  .c-article__category {
    font-size: 3.59vw;
    margin-top: 2.56vw;
    padding: 0.3125rem 0.5rem 0.375rem;
    padding: 0.77vw 2.56vw;
  }

  .c-article__title {
    font-size: 3.85vw;
    margin-top: 2.05vw;
    -webkit-line-clamp: 2;
  }

  .c-article .c-article__date {
    gap: 0.77vw;
    margin-top: 2.05vw;
  }

  .c-article__date .icon {
    width: 3.08vw;
  }

  .c-article__time {
    font-size: 3.08vw;
  }

  .p-news__btn {
    margin-top: 7.69vw;
  }

  .p-news__btn a {
    font-size: 3.59vw;
    padding: 5.13vw 2.56vw;
  }

  .p-news__btn a::before {
    width: 3.46vw;
    height: 3.46vw;
    right: 2.56vw;
  }
	
  .p-news__tag{
	padding: 0 20px 0 0;
  }

  .p-news__tag-text {
    font-size: 20px
  }
	
  .p-news__tag-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5.13vw;
  }

  .p-news__tag-head {
    gap: 2.56vw;
  }
  .p-news__tag-head {
    width: 100%;	
  }
  .p-news__tag .tag-icon {
    width: 8.97vw;
  }

  .p-news__tag .tag-text {
    font-size: 3.85vw;
  }

  .p-news__tag-lists {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.56vw 2.56vw;
  }

  .p-news__tag-list a {
    font-size: 3.3vw;
    border-radius: 5.13vw;
    padding: 1.03vw 2.56vw 1.54vw;
  }

  .tag .p-news__items{
	margin-top: 50px;
  }
}

.p-special {
  margin-top: -4.375rem;
}

.p-special__box {
  position: relative;
  gap: 2.5rem;
  padding: 1.25rem 3.375rem 1.875rem 1.875rem;
  background-image: url("../images/special_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-special__head {
  text-align: center;
}

.p-special__title {
  font-size: 2rem;
  line-height: 1.1875;
  letter-spacing: 0em;
  font-weight: 600;
  color: #eb6d73;
}

.p-special__sub-title {
  font-size: 1.375rem;
  line-height: 1.1818181818;
  letter-spacing: 0em;
  font-weight: 600;
  color: #eb6d73;
}

.p-special__banners {
  gap: 1.25rem;
}

.p-special__banner a {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .p-special {
    padding: 20.51vw 0 0;
    margin-top: 0;
  }

  .p-special__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5.13vw;
    padding: 0;
    background: none;
  }

  .p-special__title {
    font-size: 10.26vw;
  }

  .p-special__sub-title {
    font-size: 4.62vw;
  }

  .p-special__banners {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.56vw;
  }

  .p-special__banner {
    width: 100%;
  }
}

.u-target {
  opacity: 0;
  -webkit-transform: translateY(3.125rem);
  transform: translateY(3.125rem);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

.u-target.SlideUp {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.u-is-pc {
  display: block;
}

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

.u-is-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-is-sp {
    display: block;
  }
}

.u-en {
  font-family: "din-2014", sans-serif;
}

.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.u-is-br {
  display: inline-block;
}

.u-mt40 {
  margin-top: 2.5rem;
}

.u-mt60 {
  margin-top: 3.75rem;
}
.u-mt50 {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .u-mt40 {
    margin-top: 5.13vw;
  }

  .u-mt60 {
    margin-top: 7.69vw;
  }
}

/* ページネーション */
.c-pagination ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0.9375rem;
  margin-top: 5.625rem;
}

.c-pagination li {
  display: inline-block;
}

.c-pagination a,
.c-pagination span {
  display: block;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0em;
  font-weight: 600;
  color: #eb6d73;
  padding: 0.625rem;
}

.c-pagination a:hover {
  background: #fdf5f4;
  color: #fff;
}

.c-pagination .active span,
.c-pagination .current {
  background: #eb6d73;
  color: #fff;
}

/* 詳細ページ */
.c-single {
  padding: 5rem 0;
}

.c-single__category {
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  font-weight: 600;
  color: #fff;
  background: #00238c;
  margin-top: 0.9375rem;
  padding: 0.3125rem 0.5rem 0.375rem;
}

.c-single__title {
  font-size:  1.8rem;
  line-height: 1.3;
  letter-spacing: 0em;
  font-weight: 600;
  margin-top: 0.75rem;
}

.c-single__image {
  margin-top: 1.5rem;
}

.c-single__image img {
  border: 0.0625rem solid #c3b2b3;
  aspect-ratio: 243 / 173;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-single__tags {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0.9375rem;
  margin-top: 1.5rem;
}

.c-single__tag {
  display: inline-block;
  width: calc(20% - 0.9375rem);
  font-size: 0.9375rem;
  line-height: 1.2666666667;
  letter-spacing: 0em;
  font-weight: 400;
  padding: 0.5625rem 0.5rem 0.6875rem;
  text-align: center;
}

.c-single__sub-title {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 600;
  color: #00238c;
}

.c-single__text {
  font-size: 1.0625rem;
  line-height: 1.8;
  letter-spacing: 0em;
  font-weight: 400;
  color: #636363;
  margin-top: 1rem;
}

.c-single__sns {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1.25rem;
  margin-top: 3rem;
}

.c-single__sns-text {
  font-size: 0.875rem;
  line-height: 1.1666666667;
  letter-spacing: 0em;
  font-weight: 400;
  color: #636363;
}

.c-single__sns-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9375rem;
}

.c-single__sns-icon img {
  width: 30px;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-single__btn {
  margin-top: 2.5rem;
  text-align: center;
}

.c-single__btn a {
  position: relative;
  display: block;
  width: 100%;
  max-width: 38.75rem;
  margin-inline: auto;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 600;
  color: #929798;
  border: 1px solid #cccccc;
  padding: 2.375rem 1.25rem;
}

.c-single__btn a::before {
  content: "";
  width: 1.0625rem;
  height: 1.0625rem;
  position: absolute;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/btn_icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .c-single {
    padding: 15vw 0;
  }

  .c-single__category {
    font-size: 3.59vw;
    margin-top: 2.56vw;
    padding: 0.77vw 2.56vw;
  }

  .c-single__title {
    font-size: 6vw;
    margin-top: 2.56vw;
  }

  .p-news__tag-lists {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.56vw 2.56vw;
  }

  .c-single__tags {
    margin-top: 5.12vw;
  }

  .c-single__tag {
    width: calc(33.3% - 2.56vw);
    font-size: 3.6vw;
    border-radius: 5.13vw;
    padding: 1.03vw 2.56vw 1.54vw;
  }

  .c-single__sub-title {
    font-size: 4.2vw;
  }

  .c-single__text {
    font-size: 3.85vw;
  }

  .c-single__image {
    margin-top: 5.12vw;
  }

  .c-single__sns {
    gap: 20px;
    margin-top: 7vw;
  }

  .c-single__sns-text {
    font-size: 3.33vw;
  }

  .c-single__sns-icons {
    gap: 15px;
  }

  .c-single__btn {
    margin-top: 6vw;
  }

  .c-single__btn a {
    font-size: 3.59vw;
    padding: 5.13vw 2.56vw;
  }

  .c-single__btn a::before {
    width: 3.46vw;
    height: 3.46vw;
    right: 2.56vw;
  }
}

/* 検索機能 */
.search-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

.search-popup.active {
  display: block;
}

.search-popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 2rem;
  width: 90%;
  max-width: 910px;
  text-align: center;
}

.search-popup__close {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.search-popup__form {
  gap: 0.625rem;
}

.search-popup__input {
  width: 80%;
  padding: 0.625rem 1.25rem;
  border: 1px solid #ccc;
  outline: none;
}

.search-popup__input::placeholder {
  font-size: 0.9375rem;
  font-size: 1rem;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  font-weight: 400;
  color: #9d9d9d;
}

.search-popup__button {
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  font-weight: 400;
  color: #fff;
  background: #c3b2b3;
  padding: 0.625rem 1.25rem;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.search-popup__button:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .search-popup__content {
    padding: 5.12vw 2.56vw;
    width: 90%;
  }

  .search-popup__close {
    top: 1vw;
    right: 0.5vw;
    font-size: 3.59vw;
  }

  .search-popup__form {
    flex-direction: column;
    gap: 2.56vw;
  }

  .search-popup__input {
    width: 88%;
    padding: 2.56vw 2.56vw 3.2vw;
  }

  .search-popup__input::placeholder {
    font-size: min(3.51vw, 18px);
  }

  .search-popup__button {
    font-size: min(3.51vw, 18px);
    padding: 1.15vw 5.12vw 1.4vw;
  }
}

/* 検索ページ */
.p-search {
  padding: 5rem 0;
}

.p-search__title {
  text-align: center;
}

.p-search .no-search {
  margin-top: 2rem;
}

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

/* 投稿用CSS */
.p-contents {
  margin: 3rem 0;
}

.p-contents p {
  line-height: 1.75;
  margin-top: 1rem;
}

.p-contents figure {
  margin: 3rem 0 1rem;
}

.p-contents h3 {
  color: #73b0f2;
  font-size: 18px;
  margin-top: 40px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 600!important;
}

.p-contents h3 strong{
	font-weight: 600!important;
}

.p-contents h2{
	line-height: 1.3;
	font-weight: 600;
}


.wp-block-image{
	margin-top: 20px;
}

.wp-block-group{
	margin: 20px auto;
    font-weight: 600;
    color: #73b0f2;
}

.wp-block-button__link{
	box-shadow: 0 5px 0 #f93147;
	text-shadow: 0 2px 0 #8787875c;
}

.wp-block-buttons.is-content-justification-center{
	margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .p-contents{
	margin: 1rem 0;
	}
  .p-contents iframe {
    width: 100% !important;
    height: 400px;
  }
	.wp-block-buttons>.wp-block-button.wp-block-button__width-50{
		width: calc(90% - var(--wp--style--block-gap, .5em) * .5)!important;
	}
}

@media screen and (max-width: 550px) {
  .p-contents iframe {
    height: 300px;
  }
}

html {
    scroll-behavior: smooth;
}
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #6ea6da;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #6ea6da;
    border-right: 3px solid #6ea6da;
    transform: translateY(20%) rotate(-45deg);
}
@media screen and (max-width: 768px) {
.pagetop {
    right: 10px;
    bottom: 10px;
}
}


/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
詳細ページ サイドバー用CSS追加
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.c-single {
  padding: 0 0;
}

.c-single__inner {
  max-width: 1210px;
}

.c-single__body {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-left: 1px solid #c3b2b3;
  border-right: 1px solid #c3b2b3;
}

/* サイドバー */
.c-single__aside {
  width: 30%;
}

.c-aside__title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  color: #eb6b71;
  border-top: 1px solid #c3b2b3;
  padding: 2rem 2rem 0;
}

.c-aside__article-title {
  border-top: none;
}

.c-aside__article {
  padding: 0 0 2rem;
}

.c-aside__article-inner {
  padding: 0 2rem;
}

.c-aside__items {
  padding-top: 2rem;
}

.c-aside__item:not(:first-of-type) {
  margin-top: 2rem;
}

.c-aside__search-inner {
  padding: 0 2rem;
}

.c-aside__search-box {
  padding: 2rem 0;
}

.c-aside__search form {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.c-aside__search-input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #c3b2b3;
  outline: none;
}

.c-aside__search-button {
  background: #c3b2b3;
  padding: 10px;
}

.c-aside__search-button img {
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-aside__tag-inner {
  padding: 0 2rem;
}

.c-aside__tag-contents {
  padding: 2rem 0;
}

.c-aside__tag-lists {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1.25rem 0.9375rem;
}

.c-aside__tag-list {
  width: calc(50% - 0.95rem / 2);
}

.c-aside__tag-list a {
  display: block;
  font-size: 0.9rem;
  line-height: 1.2666666667;
  letter-spacing: 0em;
  font-weight: 400;
  color: #fff;
  background: #009fde;
  border-radius: 1.25rem;
  padding: 0.5625rem 0.5rem 0.6875rem;
  text-align: center;
}

/* コンテンツ */
.c-single__contents {
  width: 70%;
  padding: 3rem 5rem 5rem;
  border-right: 1px solid #c3b2b3;
}

.c-single__category {
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  font-weight: 600;
  color: #fff;
  background: #eb6b71;
  margin-top: 0.9375rem;
  padding: 0.3125rem 0.5rem 0.375rem;
}

.c-single__image {
  margin-top: 1.5rem;
}

.c-single__image img {
  border: 0.0625rem solid #00238c;
  aspect-ratio: 243 / 173;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-single__tags {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0.9375rem;
  margin-top: 1.5rem;
  border-top: 1px solid #c3b2b3;
  border-bottom: 1px solid #c3b2b3;
}

.c-single__tag {
  display: inline-block;
  width: calc(20% - 0.9375rem);
  font-size: 0.9375rem;
  line-height: 1.2666666667;
  letter-spacing: 0em;
  font-weight: 400;
  border-radius: 1.25rem;
  padding: 0.5625rem 0.5rem 0.6875rem;
  text-align: center;
}

.c-single__sub-title {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 600;
  color: #00238c;
}

.c-single__text {
  font-size: 1.0625rem;
  line-height: 1.8;
  letter-spacing: 0em;
  font-weight: 400;
  color: #636363;
  margin-top: 1rem;
}

.c-single__sns {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1.25rem;
  margin-top: 3rem;
}

.c-single__sns-text {
  font-size: 0.875rem;
  line-height: 1.1666666667;
  letter-spacing: 0em;
  font-weight: 400;
  color: #636363;
}

.c-single__sns-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9375rem;
}

.c-single__sns-icon img {
  width: 30px;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-single__btn {
  margin-top: 2.5rem;
  text-align: center;
}

.c-single__btn a {
  position: relative;
  display: block;
  width: 100%;
  max-width: 38.75rem;
  margin-inline: auto;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 600;
  color: #929798;
  border: 1px solid #cccccc;
  padding: 2.375rem 1.25rem;
}

.c-single__btn a::before {
  content: "";
  width: 1.0625rem;
  height: 1.0625rem;
  position: absolute;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/btn_icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .c-single {
    padding: 15vw 0;
  }

  .c-single__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
	border: none;
  }

  .c-single__aside {
    width: 100%;
    border-left: none;
    border-right: none;
    padding-top: 20vw;
  }

  .c-aside__article {
    padding: 0;
    padding-top: 4vw;
  }

  .c-aside__article-inner,
  .c-aside__search-inner,
  .c-aside__tag-inner {
    padding: 0;
  }

  .c-aside__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6vw 2vw;
  }

  .c-aside__item:not(:first-of-type) {
    margin-top: 0;
  }

  .c-aside__title {
    font-size: 5vw;
    padding: 0;
    padding-bottom: 1vw;
    border-top: none;
  }

  .c-single__contents {
    width: 100%;
    padding: 0;
	border: none;
  }

  .c-single__category {
    font-size: 3.59vw;
    margin-top: 2.56vw;
    padding: 0.77vw 2.56vw;
  }

  .c-aside__search {
    margin-top: 10vw;
  }

  .c-single__tags {
    margin-top: 5.12vw;
  }

  .c-single__tag {
    width: calc(33.3% - 2.56vw);
    font-size: 3.6vw;
    border-radius: 5.13vw;
    padding: 1.03vw 2.56vw 1.54vw;
  }

  .c-single__sub-title {
    font-size: 4.2vw;
  }

  .c-single__text {
    font-size: 3.85vw;
  }

  .c-single__image {
    margin-top: 5.12vw;
  }

  .c-single__sns {
    gap: 20px;
    margin-top: 7vw;
  }

  .c-single__sns-text {
    font-size: 3.33vw;
  }

  .c-single__sns-icons {
    gap: 15px;
  }

  .c-single__btn {
    margin-top: 6vw;
  }

  .c-single__btn a {
    font-size: 3.59vw;
    padding: 5.13vw 2.56vw;
  }

  .c-single__btn a::before {
    width: 3.46vw;
    height: 3.46vw;
    right: 2.56vw;
  }

  .c-aside__items {
    padding: 0;
    margin-top: 5vw;
  }

  .c-aside__search-box {
    padding: 0;
    margin-top: 5vw;
  }

  .c-aside__search-input {
    padding: 4vw 2vw;
  }

  .c-aside__search-button {
    padding: 1vw 2vw;
  }

  .c-aside__search-button img {
    width: 6vw;
    height: 6vw;
  }

  .c-aside__tag {
    margin-top: 10vw;
  }

  .c-aside__tag-contents {
    padding: 0;
    margin-top: 5vw;
  }

  .c-aside__tag-lists {
    gap: 2.56vw 2.56vw;
  }

  .c-aside__tag-list {
    width: calc(50% - 2.56vw / 2);
  }

  .c-aside__tag-list a {
    font-size: 3.3vw;
    border-radius: 5.13vw;
    padding: 1.53vw 2.56vw 2.04vw;
  }
}



/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
タグ検索　追加　20250731
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.p-news__tag .p-top-detail__item-pink{
	position: relative;
    background: #fff;
    margin-top: 30px;
    padding: 15px 20px;
}

.p-news__tag .p-top-detail__item-pink .p-top-detail__item-background{
	border-radius: 0px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag__wrapper{
	border-top: 1px solid #c3b2b3;
    border-bottom: 1px solid #c3b2b3;
	padding: 20px;
}

.tag-item {
  display: inline-block;
  padding: 6px 16px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tag-item:hover {
  color: #6ea6da;
}

.p-tag__btn{
  margin-top: 3rem;
  margin-bottom: 0;
}

.c-single__tag{
  width: auto;
  padding: 0.5625rem 0.8rem 0.6875rem;
}


.p-footer__banner{
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 60px;
    flex-wrap: wrap;
}

.p-footer__banner a{
  width: calc( 20% - 0.5rem);
}

@media screen and (max-width: 768px) {
	.p-news__tag .p-top-detail__item-pink{
		margin-top: 15px;
	}
    .p-footer__banner {
        gap: 2.56vw;
    }
      .p-footer__banner a{
      width: calc( 50% - 2.56vw);
    }
}

.c-single__aside {
    position: sticky;
    top: 0;
    align-self: start;
}

@media screen and (max-width: 768px) {
	.c-single__aside {
		position: relative;
	}
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
お問い合わせ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.p-contact__container {
    padding: 6rem 0;
}

.p-contact__container .font-corporate{
	font-size: 4rem;
	color: #5eb1f7;
	margin-bottom: 15px;
}

.p-contact__text{
	text-align: center;
    font-weight: 600;
}


.p-top-form__form {
  margin-top: 3.9375rem;
}
@media screen and (max-width: 767px) {
  .p-contact__container{
    padding: 3rem 0;
  }
  .p-top-form__form {
    margin-top: 1.875rem;
  }
  .p-contact__container .font-corporate{
	font-size: 3rem;
  }
}

.p-form__wrapper {
  max-width: 47.8125rem;
  margin-inline: auto;
  background-color: var(--color-white);
  border-radius: 0.625rem;
}

/* Form Content */
.p-form__content {
  padding: 3.125rem 3.75rem 2.125rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-form__content {
    padding: 1.25rem;
  }
}

/* Form Items */
.p-form__item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-form__item {
    flex-direction: column;
    gap: 10px;
  }
}

.p-form__item + .p-form__item {
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-form__item + .p-form__item {
    margin-top: 0.9375rem;
  }
}

/* Form Questions */
.p-form__question {
  width: 30%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-form__question {
    width: 100%;
  }
}

.p-form__question label {
  font-size: 1rem;
    font-weight: 600;
    color: #727171;
}
@media screen and (max-width: 767px) {
  .p-form__question label {
    font-size: 1rem;
  }
}

/* Form Answers */
.p-form__answer {
  display: flex;
  font-size: 1.125rem;
  font-weight: var(--bold);
  line-height: 1.4444444444;
  width: 70%;
}
@media screen and (max-width: 767px) {
  .p-form__answer {
    width: 100%;
    font-size: 1rem;
    flex-direction: column;
    column-gap: 0.625rem;
    row-gap: 0.3125rem;
  }
}

.p-form__answer p {
  width: 100%;
}

.p-form__answer br {
  display: none;
}

/* Form Inputs */
.p-form__input {
  cursor: pointer;
  width: 100%;
  padding: 0.5625rem 1.625rem;
  line-height: 1.4444444444;
  border-radius: 0.3125rem;
  border: 1px solid #595757;
  font-weight: 400;
  background-color: #f0f2f3;
  color: #444444;
  font-size: 0.9em;
}

@media screen and (max-width: 767px) {
  .p-form__input {
    padding: 0.625rem 1.25rem 0.625rem 0.625rem;
  }
}


.wpcf7-form-control-wrap {
  width: 100%;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-spinner {
  display: none;
}

.p-form__button {
    text-align: center;
    max-width: 400px;
    margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
  .p-form__button {
    
  }
}

.contact__confirm-button, .contact__submit-button{
	background-color: #fc616d;
    padding: 20px 40px;
    border: none;
    border-radius: 100px;
    width: 100%;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 3px 0px 3px #f93147;
    font-size: 1.25rem;
	display: block;
}

.contact__back-button{
	background-color: #5eb1f7;
    padding: 20px 40px;
    border: none;
    border-radius: 100px;
    width: 100%;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 3px 0px 3px #4488c2;
    font-size: 1.25rem;
    display: block;
}

.u-attention{
	background-color: #fc616d;
    padding: 1px 8px 2px;
    color: #fff;
    margin-left: 7px;
    font-size: 0.9em;
}

.form-recaptcha-text{
	color: #727171;
    font-size: 0.8em;
    text-align: center;
	margin-top: 50px;
}
.form-recaptcha-text a{
	color: #5eb1f7;
}

@media screen and (max-width: 767px) {
  .form-recaptcha-text {
    text-align: left;
    line-height: 1.5;
    margin-top: 20px;
    font-size: 12px;
    }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
下層ページ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.p-top__container{
	padding: 0;
    position: relative;
}

.ttl-img{
	position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
}

.p-top__text-up{
	position: absolute;
    top: 11.5rem;
    left: 50%;
    transform: translateX(-50%);
	width: 100%;
	color: #eb6d73;
	text-align: center;
    font-size: 1.75rem;
    font-weight: 600;
}

.p-top__text-low{
	position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
	text-align: center;
    font-size: 1.75rem;
    font-weight: 600;
}

.dot{
	color: #6ea6da;
	position: relative;
}

.dot::before{
	content: "●";
    position: absolute;
    top: -10PX;
    left: 50%;
    transform: translateX(-50%);
	width: 10px;
    height: 10px;
    color: #eb6d73;
    font-size: 10px;
}
.p-top-detail__container{
	padding: 2rem 0 5rem;
}

.p-top-detail__items{
	gap: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: space-between;
}

.p-top-detail__item{
	display: grid;
    grid-row: span 3;
	grid-template-rows: subgrid;
    gap: 0px;
	position: relative;
    border-radius: 20px;
	text-align: center;
    width: 100%;  
    margin: 0 auto; 
    box-sizing: border-box;
	background-color: #fff;
	padding: 20px;
}

.p-top-detail__item-pink{
	border: 3px solid #eb6d73;
}

.p-top-detail__item-blue{
	border: 3px solid #73b0f2;
}

.p-top-detail__item-gray{
	border: 3px solid #9fa0a0;
}

/* 追加した背景用divのスタイル */
.p-top-detail__item-background {
    position: absolute;
    top: 8px; /* ずらす量 */
    left: 8px; /* ずらす量 */
    width: calc(100% + 6px); /* 親と同じ幅 */
    height: calc(100% + 6px); /* 親と同じ高さ */
    border-radius: 20px;
	border: 3px solid;
    z-index: -1!important; /* これを背面に */
    box-sizing: border-box;
}
.p-top-detail__item-pink .p-top-detail__item-background {
    background-color: #ffe0e9; /* 薄いピンクの背景色 */
    border-color: #eb6d73; /* ピンクの枠線 */
}
.p-top-detail__item-blue .p-top-detail__item-background {
    background-color: #e0f0ff; /* 薄い青の背景色 */
    border-color: #73b0f2; /* 青の枠線 */
}
.p-top-detail__item-gray .p-top-detail__item-background {
    background-color: #f0f0f0; /* 薄い灰色の背景色 */
    border-color: #9fa0a0; /* 灰色の枠線 */
}

.p-top-detail__item-catch{
	position: absolute;
	top: -17px;
    left: 20px;
    color: #fff;
    font-weight: 600;
	padding: 6px 15px 8px;
    border-radius: 50px;
    font-size: 0.9em;
}

.p-top-detail__item-pink .p-top-detail__item-catch{
	background-color: #eb6d73;
}

.p-top-detail__item-blue .p-top-detail__item-catch{
	background-color: #73b0f2;
}

.p-top-detail__item-gray .p-top-detail__item-catch{
	background-color: #9fa0a0;
}
.ttl-detail{
	font-size: 20px;
}
.p-top-detail__item .text{
	font-weight: 600;
	font-size: 0.9em;
    line-height: 1.5;
	text-align: center;
}

.p-top-detail__item img{
	width: 180px;
	height: auto;
}

/*ーーーーーーーーー　メリット  ーーーーーーーー*/
.p-merit__container{
	padding: 5rem 1rem 5rem;
    background-color: #eb6d73;
	position: relative;
}
.p-merit__inner{
	background-color: #fff;
    padding: 50px;
    border-radius: 20px;
}
.marker-yellow{
	background: linear-gradient(transparent 45%, #fff100 45%);
    width: fit-content;
    margin: auto;
    padding: 0 10px 3px;
	font-size: 3rem;
}
.p-merit_ttl{
	text-align: center;
    font-size: 1.75rem;
    font-weight: 600;
}
.p-merit__items{
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: space-between;
	margin: 40px auto 0;
}
.p-merit__item{
	padding: 0 30px;
	display: grid;
    grid-row: span 4;
    grid-template-rows: subgrid;
    gap: 15px;
}
.p-merit__img{
	max-width: 250px;
	height: auto;
}
.p-merit__item .text{
	text-align: justify;
	font-size: 0.9em;
}
.p-merit__item2{
	border-right: 0.5px solid #727171;
	border-left: 0.5px solid #727171;
}
.color-gray{
	color: #9fa0a0;
}


/*ーーーーーーーーー　How to  ーーーーーーーー*/
.p-how__container{
    padding: 6rem 1rem 4rem;
}
.ttl-how{
	max-width: 800px;
    margin: auto;
}
.p-how__inner .p-link_ttl{
	margin-top: 10px;
}
.p-how-to__wrapper{
	position: relative;
	margin-top: 50px;
}
.p-how-to__items{
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
	align-items: center;
}
.p-how-to__item{
	width: 50%;
	position: relative;
	height: 250px;
}
.p-how-to__item1{
	border-bottom: 4px solid #cecece;
    border-right: 4px solid #cecece;
}
.p-how-to__item2{
	border-bottom: 4px solid #cecece;
}
.p-how-to__item3{
    border-right: 4px solid #cecece;
}
.p-how-to__item1{
	border-bottom: 4px solid #cecece;
    border-right: 4px solid #cecece;
}
.p-how-to__item-img{
	position: absolute;
	width: 250px;
}
.p-how-to__item1 .p-how-to__item-img{
	top: 0;
    left: 0;
}
.p-how-to__item2 .p-how-to__item-img{
	top: 0;
    right: 0;
}
.p-how-to__item3 .p-how-to__item-img{
	bottom: 0;
    left: 0;
}
.p-how-to__item4 .p-how-to__item-img{
	bottom: 0;
    right: 0;
}
.p-how-to__item5 .p-how-to__item-img{
	top: 30px;
    right: -100px;
}
.p-how-to__item-text{
	position: absolute;
}
.how-to-text{
	font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.5;
}
.p-how-to__item1 .p-how-to__item-text{
	top: 50%;
    transform: translateY(-50%);
    right: 100px;
}
.p-how-to__item2 .p-how-to__item-text{
	top: 50%;
    transform: translateY(-50%);
    left: 100px;
}
.p-how-to__item3 .p-how-to__item-text{
	top: 50%;
    transform: translateY(-50%);
    right: 100px;
}
.p-how-to__item4 .p-how-to__item-text{
	top: 50%;
    transform: translateY(-50%);
    left: 100px;
}
.p-how-to__item5 .p-how-to__item-text{
	bottom: 40px;
    width: 100%;
}
.p-how-to__item5 .how-to-text{
	text-align: center;
}
.how-to-text span{
	font-size: 0.8em;
}
.p-how-to__img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
}
.p-how-to__img img{
	height: auto;
}

/*ーーーーーーーーー　導入事例  ーーーーーーーー*/
.p-case__container{
	background-color: #d8e7f5;
    padding: 5rem 1rem 5rem;
}
.p-case__inner{
	background-color: #fff;
    padding: 50px;
    border-radius: 20px;
}
.ttl-ml{
	font-size: 4rem;
	width: fit-content;
    margin: auto;
}
.p-case__wrapper .p-link_ttl{
	margin-top: 10px;
}
.p-case__items{
	gap: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 330px));
    justify-content: center;
	margin-top: 40px;
}
.locker-case__items{
	grid-template-columns: repeat(auto-fit, minmax(300px, 350px));
}
.p-case__item{
	display: grid;
    grid-row: span 4;
    grid-template-rows: subgrid;
    gap: 15px;
}
.ttl-case{
	line-height: 1.3;
}
.case-att__warp{
	background: #6ea6da;
    color: #fff;
    display: flex;
    align-items: center;
}
.case-att__img{
	border-right: 4px solid #3181ca;
	width: 50px;
    padding: 6px;
    display: flex;
    align-items: center;
	height: 67px;
}
.case-att__img img{
	height: auto;
}
.case-att__text{
	border-left: 3px solid #a0c5e7;
    padding: 5px 3px 4px 8px;
    font-size: 15px;
    display: flex;
    align-items: center;
    width: calc(100% - 50px);
	line-height: 1.3;
	height: 67px;
}

/*ーーーーーーーーー　導入プラン・費用感  ーーーーーーーー*/
.p-plan__container{
    padding: 7.5rem 1rem 6.25rem;
}
.p-plan__wrapper{
	position: relative;
    box-sizing: border-box;
    background-color: #fff;
    padding: 50px;
    border-radius: 20px;
}
.p-plan__wrapper .ttl-ml{
	background: #fff;
    padding: 0 20px;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    margin: auto;
    text-align: center;
}
.plan__wrapper{
	display: flex;
    align-items: center;
    gap: 50px;
	margin-top: 25px;
}
.plan-img{
	width: 35%;
}
.plan-img img{
	max-width: 250px;
}
.plan-text__wrapper{
	display: flex;
    gap: 30px;
    flex-direction: column;
}
.plan-text{
	text-align: justify;
    line-height: 1.75;
    color: #727171;
	position: relative;
}
.plan-text::before{
	content: "●";
	color: #ec6d74;
	width: 20px;
	font-size: 20px;
	position: absolute;
	top: -2px;
	left: -30px;
}


	
/*ーーーーーーーーー　採用ページ  ーーーーーーーー*/
.otherpage-fv__container{
	padding: 5rem 0;
}
.recruit__container{
	position: relative;
}
.recruit__inner{
	z-index: 5;
    position: relative;
}
.recruit__inner .p-link_ttl{
	margin-bottom: 20px;
    text-align: left;
}
.recruit__inner .plan-text__wrapper{
	padding-left: 30px;
	gap: 10px;
}
.recruit__inner .plan-text::before{
	color: #5eb1f7;
}
.back-img{
	position: absolute;
    bottom: 20%;
    width: 60%;
}

	
/*ーーーーーーーーー　What’s Nice Eze?  ーーーーーーーー*/
/* レイアウト */
.message__container{
	position: relative;
	padding: 0 0 5rem;
}
.message__inner{
	z-index: 5;
    position: relative;
}
.message-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.message__container .p-link_ttl{
	margin: 20px auto 30px;
    text-align: left;
}
/* メインメッセージ部分 */
.main-content {
    flex: 1;
}

.section-title {
    color: #d86d7a; /* ピンクがかった赤 */
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.message-body p {
    text-align: justify;
}

/* プロフィール部分（右側） */
.profile-card {
    width: 350px;
    background-color: #f7f7f7; /* 薄いグレーの背景 */
    padding: 20px;
}
.profile-image img {
    width: 100%;
    height: auto;
    display: block;
}

.profile-info {
    padding-top: 20px;
}

.profile-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

.profile-info p {
    font-size: 15px;
    line-height: 1.7;
}

.message__container .back-img{
	bottom: 10%;
    width: 50%;
}

/* 役員紹介セクション全体 */
.members__container {
    padding: 5rem 0;
    background-color: #dcdddd;
}

.members__container .p-link_ttl {
    margin: 0 0 30px;
    text-align: left;
}

/* グリッドレイアウト */
.members-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2列 */
    gap: 30px;
}

/* 各カードの設定 */
.member-card {
    background: #fff;
    border-radius: 20px; /* 角丸 */
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 5つ目の要素（佐藤様）を左寄せにする調整 */
.member-card:last-child {
    grid-column: 1 / 2;
}

.member-layout {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.member-image {
    flex-shrink: 0;
    width: 150px;
}

.member-image img {
    width: 100%;
    height: auto;
    display: block;
}

.member-info {
    flex: 1;
}

.member-role {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.member-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-text {
    font-size: 15px;
    line-height: 1.7;
}

/* 複数行対応のマーカー */
.member-quote {
    margin-top: auto;
    text-align: center;
    line-height: 1.6; /* 行間を広げてマーカーの重なりを防ぐ */
}

.member-quote span {
    background: linear-gradient(transparent 40%, #fffbbf 40%);
    font-weight: 600;
    color: #eb6d73;
    font-size: 18px;
    padding: 0 5px;
    /* 改行時にも装飾を維持 */
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    display: inline;
}
/* 会社概要セクション全体 */
.company-info__container {
    padding: 5rem 0;
    background-color: #fff;
}

.company-info__inner .p-link_ttl {
    margin: 0 0 40px;
	text-align: left;
}

/* レイアウト構成 */
.company-info-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* テーブルの設定 */
.company-table-wrapper {
    flex: 1;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
	margin: 0;
}

.company-table tr {
    border-bottom: 2px solid #c9caca;
}

.company-table th {
    width: 25%;
    text-align: left;
    padding: 20px 10px;
    font-weight: 600;
    vertical-align: top;
}

.company-table td {
    padding: 20px 10px;
    line-height: 1.6;
}

/* 事業内容のリスト装飾（ピンクの丸） */
.business-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.5em;
}

.business-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #eb6d73; /* 代表メッセージ等と合わせたピンク */
    font-size: 0.9em;
}

/* 地図の装飾 */
.company-map {
    flex-shrink: 0;
}

.company-map iframe {
    width: 320px; /* 画像のサイズ感に調整 */
    height: 220px;
}






@media screen and (max-width: 767px) {
	
/*ーーーーーーーーー　下層FV  ーーーーーーーー*/
	.p-top__container {
	    padding: 5rem 0 0;
	}
	.p-top__container{
		padding: 5rem 0 0;
	}
	.ttl-img{
		top: 2rem;
        width: 95%;
	}
	.p-top__text-up{
		font-size: 18px;
		top: 6rem;
		line-height: 1.3;
		padding: 0 10px;
	}
	.p-top__text-low{
		font-size: 18px;
		bottom: -2rem;
		line-height: 1.7;
		padding: 0 10px;
	}
	.p-top-detail__container{
		margin-top: 50px;
		padding: 2rem 0 3rem;
	}
	.p-top-detail__items{
		padding: 0px 20px;
	}
	
/*ーーーーーーーーー　メリット  ーーーーーーーー*/
	.p-merit__container{
		padding: 3rem 20px;
	}
	.p-merit__inner{
		padding: 30px 20px;
	}
	.marker-yellow{
		font-size: 28px;
		line-height: 1.3;
	}
	.p-merit__items{
		margin: 0 auto;
		gap: 30px;
	}
	.p-merit__item{
		gap: 5px;
		padding: 0;
	}
	.p-merit__item2{
		border-right: none;
		border-left: none;
	}
	.p-merit_ttl{
		font-size: 20px;
	}
	
/*ーーーーーーーーー　How to  ーーーーーーーー*/
	.p-how__container{
		padding: 3rem 0;
	}
	.p-how-to__wrapper{
		display: flex;
    	flex-direction: column-reverse;
    	margin-top: 10px;
	}
	.p-how-to__items{
		align-items: flex-start;
    	flex-direction: column;
	}
	.p-how-to__item{
		width: 100%;
    	border: none;
    	height: 100px;
	}
	.p-how-to__item-img{
		width: 100px;
	}
	.p-how-to__item1 .p-how-to__item-img, .p-how-to__item2 .p-how-to__item-img, .p-how-to__item3 .p-how-to__item-img, .p-how-to__item4 .p-how-to__item-img, .p-how-to__item5 .p-how-to__item-img{
		top: 0;
    	left: 0;
		right: unset;
	}
	.p-how-to__item1 .p-how-to__item-text, .p-how-to__item2 .p-how-to__item-text, .p-how-to__item3 .p-how-to__item-text, .p-how-to__item4 .p-how-to__item-text, .p-how-to__item5 .p-how-to__item-text{
		left: 110px;
    	right: unset;
	}
	.p-how-to__item5 .p-how-to__item-text{
		bottom: unset;
        width: unset;
        top: 50%;
        transform: translateY(-50%);
	}
	.p-how-to__item5 .how-to-text{
		text-align: left;
	}
	.how-to-text{
		font-size: 16px;
    	line-height: 1.3;
	}
	.p-how-to__item1, .p-how-to__item2, .p-how-to__item2, .p-how-to__item3{
		border-bottom: 2px solid #cecece;
		border-right: none;
	}
	.p-how-to__item4{
		border: none;
	}
	.p-how-to__img{
    	position: relative;
		top: unset;
    	left: unset;
    	transform: unset;
    	margin: 0 auto;
	}
/*ーーーーーーーーー　導入事例  ーーーーーーーー*/
	.p-case__container{
		padding: 3rem 20px;
	}
	.p-case__inner{
		padding: 20px;
	}
	.ttl-ml{
		font-size: 28px;
	}
	.p-case__items{
		margin-top: 20px;
	}
	.p-case__item{
		gap: 10px;
		display: flex;
        flex-direction: column;
	}
	.case-att__text, .case-att__img{
		height: 70px;
	}
	.locker-case__items .case-att__text, .locker-case__items .case-att__img{
		height: 87px;
	}
	
/*ーーーーーーーーー　導入プラン・費用感  ーーーーーーーー*/
	.p-plan__container{
		padding: 4.5rem 15px 3rem 5px;
	}
	.p-plan__wrapper{
		padding: 20px;
	}
	.plan__wrapper{
		flex-direction: column;
		gap: 20px;
	}
	.plan-img{
		width: 50%;
	}
	.plan-text__wrapper{
		padding-left: 30px;
		gap: 15px;
	}
	.plan-text::before{
		font-size: 16px;
        top: 0px;
	}
	.p-plan__wrapper .ttl-ml{
		top: -20px;
        width: 85%;
		padding: 0 5px;
	}
	
/*ーーーーーーーーー　採用ページ  ーーーーーーーー*/
	.otherpage-fv__container{
		padding: 3rem 0;
	}
	.otherpage-fv__container .ttl-ml{
		font-size: 3rem;
	}
	.recruit__inner .p-link_ttl{
		margin: 25px 0 15px;
	}
	.back-img{
		bottom: 10%;
        width: 90%;
	}
	
/*ーーーーーーーーー　What’s Nice Eze?  ーーーーーーーー*/
	.message-layout {
        flex-direction: column;
    }
    
    .profile-card {
        width: 100%;
    }
	.members-grid {
        grid-template-columns: 1fr; /* 1列 */
    }
     .member-layout {
        flex-direction: column;
        align-items: center;
		 text-align: center;
    }
	.members__container .p-link_ttl{
		margin: 0 0 15px;
	}
	.member-card:last-child {
        grid-column: auto;
    }
	.member-text{
		text-align: justify;
	}
	.company-info-layout {
        flex-direction: column;
        align-items: center;
    }
    .company-table th {
        width: 27%;
		line-height: 1.3;
    }
    .company-map, .company-map iframe {
        width: 100%;
    }
	.message__container{
		padding: 0 0 3rem;
	}
	.staff-fv__container .ttl-ml{
		font-size: 9vw;
	}
	.message__container .p-link_ttl{
		margin: 0px auto 15px;
	}
	.profile-image img{
		aspect-ratio: 1 / 1;
	}
	.message__container .back-img{
		display: none;
	}
	.members__container{
		padding: 3rem 0;
	}
	.company-info__inner .p-link_ttl{
		margin: 0 0 15px;
	}
	.member-card{
		padding: 30px 20px;
	}
	.member-quote{
		text-align: left;
	}
	.company-info__container{
		padding: 3rem 0;
	}
	.company-info__inner .p-link_ttl{
		margin: 0 0 15px;
	}
}



/*ーーーーーーーーー　採用バナー  ーーーーーーーー*/
.c-fixed-recruit {
    position: fixed;
    right: 0;
    top: 25%;
    transform: translateY(-25%); 
    z-index: 100; /* 他の要素より上に表示 */
    transition: opacity 0.3s ease;
	right: -2px;
}

.c-fixed-recruit a {
    display: block;
    width: 110px; /* バナーの横幅（適宜調整してください） */
    height: auto;
}

.c-fixed-recruit img {
    width: 100%;
    height: auto;
    display: block;
}

.c-fixed-recruit:hover {
    opacity: 0.8;
}

/* スマホ等で邪魔になる場合は非表示、または位置調整 */
@media screen and (max-width: 768px) {
	.c-fixed-recruit{
		bottom: 10%;
        top: unset;
	}
    .c-fixed-recruit a {
        width: 70px; /* スマホでは少し小さく */
    }
}
