@charset "UTF-8";
/* SCSSの読み込み */
@import url(all.css);
/*===============================================
  切り替え用
===============================================*/
html {
  font-size: clamp(8px, 2.2222222222vw, 10px);
  scroll-padding-top: 7.2rem;
}

.sp-none {
  display: none !important;
}

.com-table:not(.com-table--noblock) table,
.com-table:not(.com-table--noblock) table tbody,
.com-table:not(.com-table--noblock) table th,
.com-table:not(.com-table--noblock) table tr,
.com-table:not(.com-table--noblock) table td {
  display: block !important;
  width: 100% !important;
}

/*===============================================
  ページネーション
===============================================*/
/*===============================================
  詳細ページ前後
===============================================*/
/*===============================================
  wrapper
===============================================*/
#wrapper {
  min-width: 320px;
}

/*===============================================
  header
===============================================*/
#header .header__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 7.2rem;
  margin-inline: max(20px, 2.4rem);
}
#header .header__logo img {
  height: 3.2rem;
}

/*===============================================
  footer
===============================================*/
#footer {
  padding-top: 6.4rem;
}
#footer:not(:has(.footer-nav)) {
  padding-bottom: 6.4rem;
}
#footer .footer__logo img {
  height: 3.2rem;
}
#footer .footer__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 5rem;
  padding-top: 5rem;
}
#footer .footer__links {
  gap: 2.5rem;
}
#footer .footer__ig {
  width: 5rem;
}
#footer .footer__btn {
  width: 20rem;
  margin-inline: 0;
}

/*フッターナビ
-----------------------------*/
.footer-nav {
  width: 100%;
}
.footer-nav__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--color-dahlia);
  gap: 1px;
  padding-block: 1px;
}
.footer-nav__item {
  font-size: var(--font-size-base);
  background: var(--color-bloom);
  grid-column: span 2;
}
.footer-nav__item:has(.nav-link--privacy), .footer-nav__item:has(.nav-link--privacy) ~ .footer-nav__item {
  grid-column: span 1;
  font-size: var(--font-size-sm);
}
.footer-nav__link {
  line-height: 1.5;
  font-weight: var(--font-weight-bold);
  padding: 1.5em 1em;
}

/*コピーライト
-----------------------------*/
/*===============================================
  fixed固定
===============================================*/
/*ページトップ
-----------------------------*/
#pagetop {
  right: 1rem;
  bottom: 1rem;
}

/*サイドボタン
-----------------------------*/
#side {
  left: 1rem;
  bottom: 1rem;
}

/*===============================================
  visual
===============================================*/
/*共通
-----------------------------*/
/*メインビジュアル
-----------------------------*/
.visual__main {
  aspect-ratio: 16/9;
}

/*サブビジュアル
-----------------------------*/
.visual__sub {
  height: 24rem;
}
.visual__catch--sub {
  min-width: 32rem;
  max-width: 94%;
  height: 10rem;
  font-size: 2.8rem;
  line-height: 1.28572;
  padding-inline: 1em;
}
.visual__catch--sub::before {
  width: calc(100% + 3rem);
  background-size: auto 60%;
}

/*===============================================
  main#container
===============================================*/
/*===============================================
  パンくずリスト
===============================================*/
.breadcrumb {
  padding-block: 1.5rem;
}
.breadcrumb__list {
  width: 90%;
}
.breadcrumb + .section {
  padding-top: 8.8rem;
}

/*===============================================
  main共通
===============================================*/
.section {
  padding: 6.4rem 0;
}

.inbox {
  margin-inline: max(20px, 2.4rem);
}

/*電話番号
-----------------------------*/
.com-tel__num {
  font-size: 3.2rem;
}
.com-tel__num::before {
  width: calc(1em - 1rem);
}

/*ボタン
-----------------------------*/
.com-btn {
  width: 32rem;
  min-height: 6rem;
  font-size: var(--font-size-base);
  padding: 1.5rem 4rem 1.5rem 2.4rem;
  margin-inline: auto;
}
.com-btn::after {
  right: 1.5rem;
}
.com-btn:not(.com-btn--jump)::after {
  width: 1em;
}
.com-btn--jump::after {
  width: 1rem;
}
.com-btn--mail {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.com-btn--mail::before {
  width: 2.4rem;
}
.com-btn--ig {
  padding-block: 15px;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.com-btn--ig::before {
  width: 30px;
}
.com-btn--yt {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.com-btn--yt::before {
  width: 2.4rem;
}

/*テーブル
-----------------------------*/
.com-table {
  line-height: 1.5;
}
.com-table--noblock tr th,
.com-table--noblock tr td {
  padding: 1em 0.5em;
}
.com-table--noblock tr th {
  width: 30%;
  vertical-align: middle;
  border-bottom: solid 1px var(--color-bloom);
}
.com-table--noblock tr td {
  border-bottom: solid 1px var(--color-rose);
}
.com-table--noblock tr:last-of-type th {
  border-bottom-color: var(--color-rose);
}
.com-table--noblock tr:first-of-type th,
.com-table--noblock tr:first-of-type td {
  border-top: solid 1px var(--color-rose);
}
.com-table:not(.com-table--noblock) tr th,
.com-table:not(.com-table--noblock) tr td {
  padding: 1em 0.75em;
}
.com-table:not(.com-table--noblock) tr:last-of-type {
  border-bottom: solid 1px var(--color-rose);
}

/*テキストボックス
-----------------------------*/
.com-text br:not(.pc-none),
.com-note br:not(.pc-none) {
  display: none;
}
.com-text .mb,
.com-note .mb {
  margin-bottom: 1.3333333334em;
}

/* セクション背景
-----------------------------*/
.com-bg {
  padding-bottom: 2rem;
}
.com-bg::after {
  width: 78rem;
  height: calc(4rem + 1px);
}
.com-bg + .section {
  padding-top: 10rem;
}

/*お知らせ
-----------------------------*/
.com-post__item {
  margin-bottom: 3rem;
}
.com-post__link {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 1.5rem 2rem;
}
.com-post__tags {
  grid-column: span 2;
}
.com-post__tag {
  font-size: var(--font-size-sm);
  line-height: 2;
}
.com-post__image {
  box-shadow: 0.6rem 0.6rem var(--color-bloom);
}
.com-post__image img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.com-post__inner {
  align-self: center;
}
.com-post__heading {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 2lh;
}

/*===============================================
  タイトル
===============================================*/
/*大タイトル
-----------------------------*/
.com-title01 {
  row-gap: 1.5rem;
  margin-bottom: 4rem;
}
.com-title01 > span {
  word-break: keep-all;
}
.com-title01::after {
  aspect-ratio: 44/4;
  background-size: 20px 4px;
  margin-top: 1rem;
}

.top-title {
  font-size: 3rem;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.top-title > span {
  line-height: 1.33334;
}
.top-title::before {
  width: 3rem;
}
.top-title--mid {
  font-size: 2.4rem;
}
.top-title--mid > span {
  line-height: 1.41667;
}
.top-title--mid .b {
  font-size: 3rem;
  line-height: 1.33334;
}

/*中タイトル
-----------------------------*/
/*小タイトル
-----------------------------*/
/*===============================================
  共通セクション
===============================================*/
/*お問い合わせ
-----------------------------*/
.com-contact__inner {
  padding: 0 2.4rem 3.2rem;
}
.com-contact__inner::before {
  height: calc(100% - 4.5rem);
  border-radius: 0 2rem;
}
.com-contact__inner::after {
  width: calc(100% + 7.6rem);
  height: calc(100% + 4.2rem);
  bottom: -4.2rem;
  background-size: 12rem;
}
.com-contact__title {
  width: 26rem;
  height: 7rem;
  margin-bottom: 5rem;
  border-radius: 1rem;
}
.com-contact__title::after {
  height: calc(1.6rem + 1px);
}
.com-contact__text {
  line-height: 2.77778;
  word-break: keep-all;
}
.com-contact__items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem 2.4rem;
  padding-top: 3rem;
}
.com-contact__tel {
  align-items: flex-start;
}
.com-contact__tel .com-tel__time {
  width: 100%;
  justify-content: flex-start;
  padding: 0.25em 1em;
}
.com-contact__btn {
  width: 25rem;
  margin-inline: 0;
}
.com-contact__memo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.625;
}
.com-contact__memo p {
  margin-right: calc(-0.5em - var(--letter-spacing-base));
}

/*===============================================
  トップページ
===============================================*/
/*このようなことにお困りではありませんか？
-----------------------------*/
.top-worries {
  background-size: 40%;
}
.top-worries::after {
  height: 12rem;
  margin-top: 3.6rem;
}
.top-worries__list {
  width: -moz-fit-content;
  width: fit-content;
  padding: 2.4rem;
  background: var(--color-bloom);
  border-radius: 1.2rem;
  margin-inline: auto;
  position: relative;
}
.top-worries__list::after {
  content: "";
  width: 100%;
  height: 4rem;
  background: url(../img/common/balloon_worries-bottom.svg) no-repeat center/contain;
  position: absolute;
  left: 0;
  bottom: -3rem;
}
.top-worries__item {
  font-size: var(--font-size-h6);
  color: var(--color-rose);
  line-height: var(--line-height-h6);
  border-bottom: dashed 1px var(--color-dahlia);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.top-worries__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

/*心残りのないお別れをサポートいたします
-----------------------------*/
.top-about {
  padding-bottom: 0;
}
.top-about + section {
  padding-top: 12rem;
}
.top-about::before {
  background-size: 42%;
  width: 100%;
  height: calc(100% - 12rem);
  top: 0;
  left: 0;
}
.top-about__title {
  padding-bottom: 1rem;
}
.top-about__title::after {
  width: calc(100% + 18rem);
  height: 8rem;
  bottom: -1rem;
}
.top-about__btn {
  margin-top: 4rem;
}
.top-about__images {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 60vw;
  padding-top: 4rem;
  margin-left: auto;
  margin-right: -7vw;
  margin-bottom: -12rem;
  position: relative;
  z-index: 0;
}
.top-about__images::before {
  content: "";
  width: 64%;
  aspect-ratio: 251/233;
  background: url(../img/index/bg_about-img-l.svg) no-repeat center/contain;
  position: absolute;
  top: 24%;
  left: 62%;
  z-index: -2;
  transform: translateX(-50%);
  opacity: 0.64;
}
.top-about__image--left {
  width: 64%;
  z-index: 1;
}
.top-about__image--right {
  width: 48%;
  margin-left: auto;
  margin-top: -12%;
}

/*事業内容
-----------------------------*/
.top-service__item {
  margin-bottom: 5rem;
}
.top-service__item:last-of-type {
  margin-bottom: 0;
}
.top-service__heading {
  padding: 2rem 3rem;
  border-radius: 1.5rem;
  margin-bottom: -1.5rem;
}
.top-service__heading::after {
  height: calc(1.6rem + 1px);
}
.top-service__image {
  margin-bottom: 3rem;
}
.top-service__image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-service__image img {
  border-radius: 1.2rem;
  box-shadow: 0.6rem 0.6rem var(--color-bloom);
}
.top-service__text {
  line-height: 2.77778;
}
.top-service__text p {
  margin-right: calc(-0.5em - var(--letter-spacing-base) * -1);
}
.top-service__link {
  -moz-column-gap: 1em;
       column-gap: 1em;
  font-size: 2rem;
  line-height: 1.2;
  margin-top: 3rem;
}

/*商品紹介
-----------------------------*/
.top-products__list {
  gap: 2rem;
  padding: 2rem;
  border-radius: 1.2rem;
  margin-top: 3rem;
}
.top-products__list dt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5em;
  font-size: var(--font-size-h6);
  line-height: 2;
  border-radius: 1rem;
}
.top-products__list dd {
  font-size: var(--font-size-h5);
  line-height: 1.25;
  word-break: keep-all;
  margin-block: calc((1em - 1lh) / 2);
}
.top-products__list dd.min {
  font-size: var(--font-size-h6);
}
.top-products__list dd.min .mid {
  font-size: var(--font-size-h5);
}
.top-products__list dd.min .b {
  font-size: var(--font-size-h4);
}
.top-products__images {
  margin-top: 3.6rem;
}
.top-products__images::before {
  width: 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top-products__image {
  width: 64%;
}
.top-products__image--lt {
  margin-bottom: -16%;
}
.top-products__box {
  padding-top: 4.8rem;
}
.top-products__heading {
  align-items: center;
  margin-bottom: 3rem;
}
.top-products__body {
  line-height: 2.77778;
}
.top-products__btn {
  margin-top: 3rem;
}

/*ご購入はこちら
-----------------------------*/
.top-shop {
  margin-block: 3rem;
}
.top-shop::before {
  width: 100%;
}
.top-shop__inner {
  padding: 3.2rem 2.4rem;
  position: relative;
  z-index: 1;
}
.top-shop__title {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.top-shop__title::after {
  width: 2rem;
}
.top-shop__image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-shop__image::after {
  height: 12rem;
  aspect-ratio: 184/265;
  right: 0.5rem;
  bottom: 100%;
  z-index: -1;
  opacity: 0.6;
}

/*バナーリンクセクション
-----------------------------*/
.top-bnr {
  padding-block: 4rem;
}
.top-bnr__item {
  height: 15rem;
  border-radius: 1.2rem;
  margin-bottom: 3rem;
}
.top-bnr__item:last-of-type {
  margin-bottom: 0;
}
.top-bnr__text {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  font-size: var(--font-size-h5);
  line-height: var(--line-height-h5);
  padding: 1rem 2rem 1rem 3rem;
  border-top-left-radius: 1rem;
}
.top-bnr__text::after {
  width: 2rem;
}

/*お知らせ
-----------------------------*/
.top-news::before {
  height: 10rem;
}
.top-news__btn {
  margin-top: 4rem;
}

/*===============================================
  Rin Flowerについて
===============================================*/
/*心残りのないお別れを叶える、新しい副葬品
-----------------------------*/
.about-lead__title br {
  display: none;
}
.about-lead__image {
  width: 32rem;
  margin: 3.6rem auto 0;
}

/*Rin Flowerについて動画でご紹介
-----------------------------*/
.about-movie::before {
  background-size: 42%;
}

/*Rin Flowerが選ばれる理由
-----------------------------*/
.about-reason__table {
  font-size: 1.6rem;
  line-height: 1.875;
}
.about-reason__table tr.ttl th {
  font-size: 1.9rem;
  line-height: 1.57895;
  letter-spacing: 0.04em;
  padding-block: 1.5rem;
}
.about-reason__table tr:not(.ttl) th {
  white-space: nowrap;
  text-align: left;
  padding: 1em 0.75em;
}
.about-reason__table tr td {
  padding: 1em 0.75em;
}
.about-reason__table tr td.main {
  font-size: var(--font-size-base);
  line-height: 1.66667;
}

/*購入案内
-----------------------------*/
.about-guide__item {
  padding: 2.4rem;
  border-radius: 1.2rem;
}
.about-guide__icon {
  margin-bottom: -6rem;
}
.about-guide__icon img {
  width: 6rem;
}
.about-guide__heading {
  flex-direction: row;
  min-height: 8rem;
  padding-left: 7.5rem;
}
.about-guide__heading > span {
  align-self: center;
}
.about-guide__btn {
  width: 100%;
  max-width: 36rem;
  margin-top: 3rem;
}
.about-guide__items {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--color-bloom);
  margin-top: 3rem;
}
.about-guide__tel .com-tel__time {
  margin-bottom: 0.5rem;
}
.about-guide__tel .com-tel__num {
  font-size: 3rem;
}
.about-guide__tel .com-tel__num > span {
  margin-top: -0.5rem;
  margin-bottom: -0.2rem;
}
.about-guide__memo {
  font-size: 1.6rem;
  line-height: 1.625;
}
.about-guide__memo p {
  margin-right: calc(-0.5em - var(--letter-spacing-base));
}

/*ご使用の流れ
-----------------------------*/
.about-flow::before {
  min-width: 128rem;
  height: clamp(302px, 23.5416666667vw, 452px);
}
.about-flow__btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.about-flow__btn .com-btn {
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  padding-right: 3rem;
  padding-left: 1.5rem;
}
.about-flow__box {
  padding-top: 6.4rem;
}
.about-flow__heading {
  margin-bottom: 2.5rem;
}
.about-flow__item {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 2.4rem 2rem;
  padding: 2.4rem 2.4rem 3.2rem;
  border-radius: 1.2rem;
  margin-bottom: 7rem;
}
.about-flow__item:last-of-type {
  margin-bottom: 0;
}
.about-flow__item::before {
  font-size: 2rem;
  width: 1.5em;
  padding-bottom: 0.125em;
  top: -1rem;
}
.about-flow__item::after {
  width: 2rem;
  aspect-ratio: 1;
  top: calc(100% + 2rem);
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}
.about-flow__image img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-flow__image img {
  border-radius: 1rem;
}
.about-flow__caption {
  align-items: flex-start;
  align-self: center;
  margin-bottom: 0;
}
.about-flow__body {
  grid-column: span 2;
}

/*===============================================
  ご遺族の皆様へ / 終活をお考えの方へ
===============================================*/
/*このような方におすすめ
-----------------------------*/
.service-worries::before {
  height: 10rem;
}
.service-worries__list {
  width: -moz-fit-content;
  width: fit-content;
  padding: 2.4rem;
  background: var(--color-bloom);
  border-radius: 1.2rem;
  margin-inline: auto;
  position: relative;
}
.service-worries__list::after {
  content: "";
  width: 100%;
  height: 4rem;
  background: url(../img/common/balloon_worries-bottom.svg) no-repeat center/contain;
  position: absolute;
  left: 0;
  bottom: -3rem;
}
.service-worries__item {
  font-size: var(--font-size-h6);
  color: var(--color-rose);
  line-height: var(--line-height-h6);
  border-bottom: dashed 1px var(--color-dahlia);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.service-worries__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.service-worries__image {
  padding-top: 3.6rem;
}
.service-worries__image img {
  height: 16rem;
}

/*Rin Flowerの特徴
-----------------------------*/
.service-feature__item {
  margin-bottom: 6.4rem;
}
.service-feature__image {
  margin-bottom: 3rem;
}
.service-feature__image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-feature__image img {
  border-radius: 1rem;
}
.service-feature__heading {
  flex-direction: row;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.service-feature__heading::before {
  width: 1.5em;
  font-size: 2rem;
  padding-bottom: 0.15em;
  flex-shrink: 0;
}
.service-feature__heading > span {
  align-self: center;
}

/*お客様の声
-----------------------------*/
.service-voice__item {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 2.4rem;
  padding: 2.4rem 2.4rem 3.2rem;
  margin-bottom: 3rem;
}
.service-voice__item:last-of-type {
  margin-bottom: 0;
}
.service-voice__item::before {
  height: 100%;
  border-radius: 1.2rem;
}
.service-voice__status {
  justify-content: flex-start;
  gap: 2rem;
}
.service-voice__status .age {
  font-size: var(--font-size-h5);
  line-height: var(--line-height-h5);
}
.service-voice__status .gender {
  line-height: 2;
  padding-inline: 1em;
}
.service-voice__comment {
  grid-column: span 2;
}

/*===============================================
  会社情報
===============================================*/
/*会社概要
-----------------------------*/
.info-company {
  background-size: 40%;
}
.info-company__map {
  height: 30rem;
  margin-top: 3rem;
}

/*===============================================
  お知らせ
===============================================*/
/* お知らせ 一覧
-----------------------------*/
.news-archive__title {
  align-items: flex-start;
  margin-bottom: 2rem;
}
/* お知らせ 詳細
-----------------------------*/
/*タグリスト
-----------------------------*/
/*===============================================
  お問い合わせ
===============================================*/
.contact-form__table tr td .add {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.contact-form .contact-submits-wrap > * {
  margin: 0 auto 2rem;
}
.contact-form .contact-submits-wrap > *:last-child {
  margin-bottom: 0;
}

/*===============================================
  お問い合わせ完了
===============================================*/
/*===============================================
  プライバシーポリシー
===============================================*/
/*===============================================
  サイトマップ
===============================================*/
.sitemap-list__item {
  margin-bottom: 1.2rem;
}
.sitemap-list__item:last-of-type {
  margin-bottom: 0;
}
.sitemap-list__link {
  padding: 1em;
}

/*===============================================
  404エラー
===============================================*/