@charset "UTF-8";

/* common
 ====================================================*/
:root {
	--main-pink: #EA596C;
	--sub-01-pink: #EA96A1;
	--sub-02-pink: #FBE1DB;/* 背景に使ったり */
	--green: #3EB157;
	--yellow: #F5E07D
}

/* ふわっと */
body{
    font-size: .16rem;
    line-height: 1.5;
    font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 400;
  	font-style: normal;
	color: #231815;
    animation-name:fadeInAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    @keyframes fadeInAnime{
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }
html {
    font-size: 100px;
	margin-top: 0 !important
  }
a {
    transition: 0.5s;
}
a:hover {
    opacity: 0.5;
}
.fb{
	font-weight: 600 !important;
}
.fb-02{
	font-weight: 500 !important;
}
/* color 基本の色 */
.marker {
  background: linear-gradient(transparent 60%, yellow 60%);
}

.pink-back{
    background-color: #ee8596;
}
.pink-color{
    color: #ee8596;
}
.green-a-back{
    background-color: #82c374;
}
.green-a-color{
    color: #82c374;
}
.green-b-back{
    background-color: #105a3c;
}
.green-b-color{
    color: #105a3c;
}
/* margin */
.mt01{
    margin-top: .1rem;
}
.mt02{
    margin-top: .2rem;
}
.mb01{
	margin-bottom: .1rem;
}
.kome:before{
    content:"※";
    color: red;
}
.wrap{
    width: min(1000px, 90%);
    margin: auto;
	padding-top: 30px;
}
.wrap-02{
	width: min(800px, 90%);
	margin: auto;
	padding-top: 30px;
}
.pc-only{display: block}
.sp-only{display: none}


/* =================== 
header ヘッダー
 =================== */
main{
    width: 100%;
	margin: auto;
    line-height: 1.5;
}
main.main-01{
    background: var(--sub-02-pink);
	margin-top: 120px;
	}
main.main-02{
	margin-top: 120px;
	}
#access{
    padding-top: 1rem;
    margin-top: -1rem;
}






.site-header {
	position: fixed;
	z-index: 99999999;
	top: 20px;
	width: 100%;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
    align-items: flex-start;
}

/* ロゴ・無料タグ */
.logo-group{
	display: flex;
	flex-flow: column;
	align-items: center;
}
.logo-img{
	width: 100px;
}
.consultation-tag {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 25px;
  border: 1px solid #804F21;
  border-radius: 10px;
  background-color: #FEF5E7;
  color: #804F21;
}

/* ロゴ・無料タグ 下層ページ */
.header-logo{
  position: relative;
  top: 10px;
}
.header-logo__title{
  width: 180px;
}
.header-logo__label{
  position: absolute;
  top: 30px;
  left: 45px;
  padding: 5px 10px 7px;
  border: 1px solid #804F21;
  border-radius: 20px;
  background-color: #FEF5E7;
  color: #804F21;
  line-height: 1;
}



/* メニュー部分 */
.header-nav-group{
	display: flex;
	align-items: center;
	border-radius: 20px;
  	padding: 10px 20px;
  	background-color: rgba(255, 255, 255, 0.8);
}
.header-nav ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3列2段 */
  gap: 10px 20px;
  list-style: none;
  margin-right: 30px;
}

.header-nav li {
  position: relative;
  padding-left: 20px;
}

.header-nav li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: var(--sub-01-pink);
  border-radius: 50%;
}

/* 電話・LINEボタン */
.header-contact {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-tel {
  background-color: var(--sub-01-pink);
  color: #fff;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
	line-height: 1.2;
}


.btn-line img {
  width: 45px;
  height: 45px;
}

.btn-menu {
  background-color: var(--main-green);
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 10px;
  /* ここに三本線のスタイルを追加 */
}

/* top トップページ
 ====================================================*/
/* ===================
 グリーフケア　おひとりさま
=================== */
.service {
  background-color: #FBE1DB;
  width: 100%;
  padding: 60px 0;
  margin-top: 1rem;
  box-sizing: border-box;
}

.service__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* PC：横並び */
.service__list {
  display: flex;
  justify-content: center;
  gap: 40px;
}

/* カード */
.service__card {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  flex: 1;
  max-width: 500px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service__title {
  color: var(--main-pink);
  font-size: .3rem;
  margin-bottom: 20px;
}

.service__text {
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: .18rem;
}

.service__visual {
  position: relative;
  width: min(200px, 100%);
  margin-top: auto; /* 下揃え */
}

.service__image {
  width: 100%;
  height: auto;
  margin-left: -40px;
}

/* moreボタン */
.service__more {
  position: absolute;
  right: -70px;
  bottom: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  text-decoration: none;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.service__more--yellow {
  background-color: #F5E07D;
}

.service__more--pink {
  background-color: var(--sub-01-pink);
}

.service__arrow {
  width: 25px;
  height: 1px;
  background: #000;
  margin-top: 5px;
  position: relative;
}

.service__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
}

/* --- SP：縦並び --- */
@media (max-width: 768px) {
  .service__list {
    flex-direction: column;
    align-items: center;
  }

  .service__card {
    width: 100%;
    padding: 30px 20px;
  }
}


/* ===================
 お知らせ
=================== */
.info{
	width: min(500px, 100%);
	margin: 100px auto;
}
.info__inner{
	position: relative;
	display: flex;
	  justify-content: center;
}
.info__heading{
	font-size: .2rem;
	color: var(--main-pink)
}
.info__inner a{
	margin-left: auto;
}
.info__container{
	background-color: var(--yellow);
	padding: 50px 40px;
	border-radius: 20px;
	margin-top: 20px;
}
.info__list .info__body{
	display: flex;
}
.info__item-title{
	font-size: .18rem;
	padding-left: 1em;
}
/* =========================
 info-more
========================= */
.info-more {
	position: absolute;
	right: 0;
}

.info-more__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  padding: 10px 15px;
  border-radius: 999px;

  background-color: var(--sub-01-pink); /* 画像の薄ピンク */
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.info-more__link:hover {
  opacity: 0.8;
}

.info-more__text {
  font-size: .14rem;
  line-height: 1;
}

/* 矢印 */
.info-more__arrow {
  position: relative;
  width: 18px;
  height: 1px;
  background-color: #000;
}

.info-more__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 8px;
  height: 0px;
  border-top: 0.5px solid #000;
  border-right: 0.5px solid #000;
  transform: rotate(45deg);
}

/* SP微調整 */
@media (max-width: 768px) {
  .info-more__text {
    font-size: 14px;
  }

  .info-more__link {
    padding: 10px;
  }
}



.gyoumu-wrap{
    margin-top: 1rem;
    display: flex;
}
.gyoumu-inner{
    padding: .2rem 0;
    border-top: 1px dashed #82c374;
    border-bottom: 1px dashed #82c374;
    display: table;
    margin: .3rem auto .7rem;
    font-size: .17rem;
}
.top-copy-oyaku{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: .25rem;
    width: 50%;
    margin: 0 auto;
    display: inline-block;
}
.top-profile-wrap{
    display: flex;
    justify-content: center;
	gap: 10px;
    margin: .3rem auto 1rem;
    position: relative;
    align-items: center;
}
/*.top-profile-wrap:before{
    content: url(/assets/img/green-b.png);
    padding: 100px 10px 0 0;
}*/
.top-profile-wrap img{
    width: 230px;
    margin-right: 10px;
}
.top-profile-wrap .roco img{
	width: 100px;
}
.top-profile-wrap .roco{
	font-size: .12rem;
}
.map{
    text-align: center;
}
.map dl{
    margin-bottom: .1rem
}
.map dt{
    background-color: #666;
    color: #fff;
    display: table;
    padding: .3rem .2rem;
    margin: 0 auto .1rem;
}
/* page 下層ページ*/
.page-title{
	font-size: .28rem;
	text-align: center;
	margin: 0px auto 30px;
	padding-top: 60px;
}
.page-wrap{
    width: min(950px, 100%);
}
.page-title-wrap{
    display: flex;
    align-items: center;
    margin: auto;
    justify-content: center;
}
.page-title-wrap img{
    height: 1.7rem;
}
.page-title-inner{
    text-align: center;
    padding: .5rem 0;
    border-radius: .2rem;
    margin-left: .3rem;
    width: 3rem;
    color: #fff;
}
.page-title-inner img{
    width: 1rem;
    height: auto;
    margin-top: .2rem;
}
.page-title-inner .people{
    font-size: .3rem;
    padding-bottom: .1rem;
    font-weight: bold;
}
.page-soudan-wrap{
    margin-top: .3rem;
}
.page-soudan-wrap dl.page-soudan-innner{
    text-align: center;
    padding: 0.3rem;
    margin-bottom: .3rem;
    border-radius: .2rem;
}
.page-soudan-wrap dl.page-soudan-innner dt{
    font-size: .18rem
}
.page-soudan-wrap dl.page-soudan-innner:nth-child(even){
    background-color: #fffbee;
}
.page-soudan-wrap dl.page-soudan-innner:nth-child(odd){
    background-color: #fdf0f0;
}
.page-soudan-wrap dl.page-soudan-innner img{
    width: 0.4rem;
    margin: 0.2rem;
}
.maru_pink:before{
    content: "●";
    color: #ee8596;
    padding-right: .05rem;
}
.maru_yellow:before{
    content: "●";
    color: #fdce1d;
    padding-right: .05rem;
}
.qa-list dl {
    position: relative;
    margin: 30px 0 0;
    margin-top: 30px;
    cursor: pointer;
  }
.qa-list dl dd {
    position: relative;
    margin: 0;
    padding: 20px 20px 20px 60px;
  }
.qa dt{
    background-color: #f2f2f2;
    padding: .3rem 0 .3rem .6rem;
    font-size: .18rem;
    font-weight: normal;
    position: relative;
    margin: 0;
}
.qa dt:before {
    font-size: 22px;
    line-height: 1;
    position: absolute;
    top: 25px;
    left: 20px;
    display: block;
    content: 'Q.';
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  }
  .qa dd:before {
    font-size: 22px;
    line-height: 1;
    position: absolute;
    left: 20px;
    display: block;
    content: 'A.';
    font-weight: bold;
    color: #ee8596;
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  }
/* 雑誌掲載 */
.book{
  width: min(800px, 90%);
  margin: 30px auto 60px;
}
.book img{
  width: 100%;
}
/* プライバシーポリシー */
.privacy {
    letter-spacing: 0;
    font-size: 0.14rem;
    line-height: 1.6;
    padding: 0.10rem;
  }
  .privacy dl > dt {
    font-weight: bold;
    font-size: 0.16rem;
    color: #206b40;
    letter-spacing: 0;
    margin: 0.2rem 0 0.1rem;
  }
/* footer */
footer{
    text-align: center;
    padding: 1rem 0 .3rem;
    background-color: #fff;
    line-height: 1.5;
    margin-bottom: 1rem;
}
footer .title{
    width: 70px;
  margin: 0 auto;
}
footer .title img{
    width: 100%;
}
footer .footer-address{
    margin: .2rem auto 0;
    font-size: .14rem;
}
footer .copyright{
    font-size: .14rem
}
.footer-green-left{
    position: fixed;
    bottom: 0;
    left: 5%;
    z-index: 5;
}
.footer-green-left img{
    width: 1.5rem;
}
.footer-green-right{
    position: fixed;
    bottom: 0;
    right: 5%;
    z-index: 5;
}
.footer-green-right img{
    width: 1.3rem;
}


/* グリーフケア　おひとりさま
 ====================================================*/
.service-detail {
  padding-block: 50px;
}

.service-detail__inner {
  width: min(1000px, 90%);
  margin: 0 auto;
}

.service-detail__card {
  background: #fff;
  border-radius: 40px;
  padding: 48px 56px;
}

/* header */
.service-detail__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 60px;
  padding-inline: 10%;
  text-align: center;
  position: relative;
}

.service-detail__catch {
  margin: 0 0 6px;
  font-size: 18px;
}

.service-detail__lead {
  margin: 0;
  font-size: .24rem;
}

.service-detail__header-illust {
  width: 120px;
}

.service-detail__header-img {
  width: 220px;
  position: absolute;
  top: -60px;
  right: 100px;
}

/* content */
.service-detail__item {
  margin-top: 60px;
}

.service-detail__item-title {
  margin-bottom: 10px;
  text-align: center;
  font-size: .22rem;
  font-weight: 500;
  color: var(--sub-01-pink);
}

.service-detail__item-no {
  margin-right: 6px;
}

.service-detail__text {
  margin: 0 0 10px;
  line-height: 1.9;
	text-align: center;
}
.service-detail__cta-text span{
	color: #ff9900
}
/* cta */
.service-detail__cta {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
  padding: 0 10%;
}

.service-detail__cta-box {
  border: 3px dashed #e79aa3;
  border-radius: 22px;
  padding: 22px;
  text-align: center;
	line-height: 1.8
}


.service-detail__cta-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 12px 24px;
  border-radius: 999px;
  background: #e79aa3;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

/* おひとりさま */
.service-detail--solo{
  grid-template-columns: 100px 1fr 100px;
}
.service-detail__header-illust--solo-01, .service-detail__header-illust--solo-02{
	width: 0;
}
.service-detail__header-illust--solo-01 img{
	top: -80px;
  left: auto;
  width: 100px;
  right: auto;
}
.service-detail__header-illust--solo-02 img{
	top: -20px;
  	right: 90px;
	width: 100px;
}
.service-detail__cta--solo {
  grid-template-columns: 180px 1fr;
}

/* responsive */
@media (max-width: 768px) {
  .service-detail__card {
    padding: 30px 20px;
    border-radius: 28px;
  }

  .service-detail__header,
  .service-detail__cta {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
	  margin-bottom: 0;
  }
}


/* 記事
 ====================================================*/
.breadcrumbsWrap{
	font-size: .12rem;
}
.single{
	margin-top: 60px;
	padding-inline: 5%;
}
.single__title{
	font-size: .24rem;
	margin-bottom: 30px;
}


/* お問い合わせ
 ====================================================*/
#contact{
	width: min(800px, 90%);
	margin: 0 auto;
}
#contact .contact-item{
	display: flex;
	align-items: center;
	margin: 20px 0;
}
#contact .contact-item > dt{
  flex: 0 0 240px; /* 240px固定 */
	font-weight: 500;
}
#contact .must{
	background-color: var(--main-pink);
	color: #fff;
	border-radius: 5px;
	margin-left: 5px;
	padding: 1px 5px;
	font-size: 14px;
}
#contact .any{
	background-color: #666;
	color: #fff;
	border-radius: 5px;
	margin-left: 5px;
	padding: 1px 5px;
	font-size: 14px;
}
#contact input{
	width: 550px;
	padding: 10px;
  border-radius: 10px;
  border: 3px solid var(--sub-02-pink);
	margin-bottom:5px;
}
#contact .submit input{
	width: auto !important;
}
#contact .contact-agree input{
	width: auto !important
}
#contact .contact-address{
	width: 375px;
}
#contact .contact-address li{
	margin-bottom: 5px;
}
#contact .privacy{
	padding: 20px;
	font-size: 15px;
}
#contact .privacy dt + dt{
	margin: 35px 0 5px;
}
#contact .privacy dt{
	font-size: 18px;
  border-left: 5px solid var(--main-pink);
  padding-left: 10px;
	font-weight: bold;
}
#contact dt.privacy-top{
	font-size: 16px;
  border-left: none;
  padding-left: 10px;
	margin-top: 10px;
}
.scroll-box {
  width: 100%;
  height: 300px;
  overflow-y: scroll;
  border: 1px solid #ddd;
  background-color: #f8f4f4;
  margin: 0.30rem 0;
}
span.wpcf7-list-item {
    display: block;
}
select {
  text-transform: none;
  padding: 10px 20px;
  border: 1px solid var(--sub-02-pink);
  border-radius: 8px;
  background-color: var(--sub-02-pink);
}
textarea {
  	width: 550px;
	padding: 10px;
	border-radius: 10px;
	border: 3px solid var(--sub-02-pink);
}
.submit{
	margin: 20px auto;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.submit input{
	background-color: var(--main-pink);
  	font-size: 18px !important;
  	padding: 10px 60px !important;
  	color: #fff;
  	border-radius: 15px !important;
}
.multiform > p{
	display: flex;
	gap: 30px;
	justify-content: center;
	padding-top: 60px;
}
.wpcf7-spinner{
	display: none !important
}
#autozip {
   display: none !important;
}


@media screen and (max-width: 767px) {
#contact .contact-item {
  flex-flow: column;
	padding: 0 5%;
}
#contact input {
  width: 100%;
}
#contact .contact-address {
  width: 100%;
}
textarea {
  width: 100%;
}
#contact .contact-zip input{
		width: 200px;
	}
	#contact .contact-agree input{
		width: auto;
	}
.submit {
  width: 90%;
}
}

/* お知らせ
 ====================================================*/
.single p{
	margin-bottom: 1em;
}
/* ===== news list ===== */
.news-list{
	width: 800px;
  list-style: none;
  margin: 0 auto;
  padding: 0 5%;
}

/* 各記事 */
.news-list > li{
  padding: 16px 0;
}

/* 日付 */
.news-list .post_date{
  margin: 0 0 6px;
}

/* タイトル（本文サイズ） */
.news-list .post-title{
  margin: 0;
  font-size: 20px;   /* ← 本文サイズ指定 */
  line-height: 1.6;
  font-weight: normal;
}

/* リンク */
.news-list .post-title a{
  color: #000;
  text-decoration: none;
}

/* ===== PC：日付＋タイトルを横並び ===== */
@media (min-width: 768px){
  .news-list > li{
    display: grid;
    grid-template-columns: 120px 1fr;
    column-gap: 20px;
    align-items: center;
  }

  .news-list .post_date{
    margin: 0;
    white-space: nowrap;
  }
}
