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

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

a[href^="tel:"] {
  pointer-events: none;
}

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

/*===============================================
  header
===============================================*/
#header .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 10rem;
  padding: 0 2rem 0 3rem;
}
#header .header__other {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: clamp(1.3rem, 1.0126582278vw, 1.6rem);
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  padding-block: calc(1em + 0.1rem);
}
#header .header__tel {
  row-gap: 0.625em;
}
#header .header__tel .com-tel__time {
  font-size: calc(1em - 0.1rem);
  margin-bottom: 0.2rem;
}
#header .header__tel .com-tel__num {
  font-size: max(2.5rem, 1.875em);
}
#header .header__tel .com-tel__num::before {
  min-width: 2rem;
}
#header .header__tel .com-tel__num > span {
  margin-top: -0.5rem;
  margin-bottom: -0.2rem;
}
#header .header__tel .com-replace {
  font-size: max(1.2rem, 0.875em);
}
#header .header__ig {
  display: block;
  width: 4rem;
  transition: all 0.3s;
}
#header .header__ig:hover {
  opacity: 0.64;
}
#header .header__mail {
  min-width: 14em;
  font-size: 1.25em;
  padding-inline: 2.5em;
}
#header .header__mail::before {
  width: 1.25em;
  left: 1em;
}
#header .header__mail::after {
  width: 1.2em;
  right: 0.75em;
}

/*===============================================
  footer
===============================================*/
#footer {
  padding: 5.8rem 0 6rem;
}
#footer .footer__logo {
  margin-bottom: 5rem;
}
#footer .footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
  width: 1080px;
}
#footer .footer__links {
  align-self: center;
  gap: 2rem 4rem;
}
#footer .footer__ig {
  width: 4rem;
}
#footer .footer__btn {
  font-size: 1.8rem;
  height: 5rem;
}

/*フッターナビ
-----------------------------*/
.footer-nav {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0;
  margin-left: auto;
}
.footer-nav__list {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-auto-flow: column;
  gap: 1em 5rem;
}
.footer-nav__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 0.25em;
       column-gap: 0.25em;
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1);
  margin-block: calc((1em - 1lh) / 2);
}
.footer-nav__item::before {
  content: ">";
  color: var(--color-dahlia);
}

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

/*サイドボタン
-----------------------------*/
#side {
  bottom: 10px;
  right: 10px;
}

/*===============================================
  visual
===============================================*/
/*共通
-----------------------------*/
/*メインビジュアル
-----------------------------*/
.visual__main {
  aspect-ratio: 192/84;
}
.visual__movie {
  -o-object-position: center 55%;
     object-position: center 55%;
}

/*サブビジュアル
-----------------------------*/
.visual__sub {
  height: clamp(240px, 18.75vw, 300px);
}
.visual__catch--sub {
  height: 47%;
  aspect-ratio: 475/141;
  font-size: clamp(2.8rem, 2.1875vw, 3.5rem);
  line-height: 1.37143;
  padding-inline: 1em;
}
.visual__catch--sub::before {
  width: calc(100% + 2rem);
  background-size: auto 64.085%;
}

/*===============================================
  グローバルナビ
===============================================*/
.gnav {
  font-size: 1.7rem;
  font-family: var(--font-family-noto);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  background: var(--color-dahlia);
  letter-spacing: 0;
  line-height: 1;
  padding-block: 1.1rem;
}
.gnav__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -moz-column-gap: 1px;
       column-gap: 1px;
  width: 1080px;
  margin-inline: auto;
}
.gnav__item {
  position: relative;
  z-index: 0;
}
.gnav__item::after {
  content: "";
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, #fff 1px, transparent 1px, transparent 9px) repeat-y center top/1px 9px;
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
}
.gnav__item:first-of-type::before {
  content: "";
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, #fff 1px, transparent 1px, transparent 9px) repeat-y center top/1px 9px;
  position: absolute;
  top: 0;
  right: 100%;
  z-index: -1;
}
.gnav__link {
  display: block;
  text-align: center;
  line-height: 1.64706;
  letter-spacing: var(--letter-spacing-lg);
  padding-block: 0.5em;
  left: calc(var(--letter-spacing-lg) * -1);
}
.gnav__link:hover, .gnav__link.current {
  color: var(--color-sunflower);
}

/*===============================================
  main#container
===============================================*/
/*===============================================
  パンくずリスト
===============================================*/
.breadcrumb {
  padding-top: 2rem;
}
.breadcrumb__list {
  width: 1080px;
}
.breadcrumb__item::after {
  margin-inline: 1em;
}

/*===============================================
  main共通
===============================================*/
.section {
  padding-block: 10rem;
}

.inbox {
  width: 1080px;
}

/*電話番号
-----------------------------*/
.com-tel {
  align-items: flex-start;
}
.com-tel__num {
  font-size: 4rem;
}
.com-tel__num::before {
  width: calc(1em - 1rem);
}
.com-tel__num span {
  margin-top: -0.7rem;
  margin-bottom: -0.3rem;
}

/*ボタン
-----------------------------*/
.com-btn {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 24rem;
  height: 6rem;
  font-size: 2rem;
  padding-inline: 7rem;
}
.com-btn::after {
  right: 1.5rem;
}
.com-btn:not(.com-btn--jump)::after {
  width: 2.4rem;
}
.com-btn--jump::after {
  width: 1rem;
}
.com-btn--mail::before {
  width: 2.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2rem;
}
.com-btn--ig::before {
  width: 2.9rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2rem;
}
.com-btn--yt::before {
  width: 2.7rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2rem;
}

/*テーブル
-----------------------------*/
.com-table {
  line-height: 1.875;
}
.com-table tr th {
  text-align: center;
  vertical-align: middle;
  border-bottom: solid 1px var(--color-bloom);
  padding: 1.4rem 3rem;
}
.com-table tr td {
  vertical-align: middle;
  border-bottom: solid 1px var(--color-rose);
  padding: 1.4rem 3rem;
}
.com-table tr:last-of-type th {
  border-bottom-color: var(--color-rose);
}
.com-table tr:first-of-type th,
.com-table tr:first-of-type td {
  border-top: solid 1px var(--color-rose);
}

/*テキストボックス
-----------------------------*/
.com-text p,
.com-note p {
  margin-right: calc(var(--letter-spacing-base) * -1);
}

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

/*お知らせ
-----------------------------*/
.com-post__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 4.5rem;
}
.com-post__link {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  height: 100%;
}
.com-post__link > * {
  width: 100%;
}
.com-post__tags {
  margin-bottom: 1.5rem;
}
.com-post__tag {
  line-height: 2.3125;
}
.com-post__image {
  margin-bottom: 3rem;
  box-shadow: 7px 7px var(--color-bloom);
}
.com-post__image img {
  aspect-ratio: 1.5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.com-post__inner {
  border-bottom: solid 1px var(--color-dahlia);
  padding-bottom: 1.4rem;
}

/*===============================================
  タイトル
===============================================*/
/*大タイトル
-----------------------------*/
.com-title01 {
  row-gap: 2rem;
  margin-bottom: 5rem;
}
.com-title01::after {
  aspect-ratio: 64/4;
  background-size: 30px 4px;
  margin-top: 1rem;
}

.top-title {
  font-size: 4.5rem;
  gap: 2rem;
  margin-bottom: 5rem;
}
.top-title > span {
  line-height: 1.33334;
}
.top-title::before {
  width: 4rem;
}
.top-title--mid {
  font-size: 3.5rem;
}
.top-title--mid > span {
  line-height: 1.57143;
}
.top-title--mid .b {
  font-size: 4.5rem;
  line-height: 1.44445;
}

/*中タイトル
-----------------------------*/
/*小タイトル
-----------------------------*/
/*===============================================
  共通セクション
===============================================*/
/*お問い合わせ
-----------------------------*/
.com-contact__inner {
  max-width: 79rem;
  padding: 0 5rem 4rem;
}
.com-contact__inner::before {
  height: calc(100% - 4.5rem);
  border-radius: 0 2rem;
}
.com-contact__inner::after {
  width: calc(100% + 11.2rem);
  height: calc(100% + 8.5rem);
  bottom: -6.5rem;
}
.com-contact__title {
  width: 34rem;
  height: 8.2rem;
  margin-bottom: 6rem;
  border-radius: 1.5rem;
}
.com-contact__title::after {
  height: calc(2rem + 1px);
}
.com-contact__text {
  max-width: 31rem;
  font-size: 1.7rem;
  line-height: 2.35295;
  margin-inline: auto;
  position: relative;
  z-index: 0;
}
.com-contact__text::after {
  content: "";
  width: 69rem;
  height: 20.7rem;
  background: url(../img/common/contact_deco-l.png) no-repeat left bottom/contain, url(../img/common/contact_deco-r.png) no-repeat right bottom/contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2.3rem;
  z-index: -2;
  pointer-events: none;
}
.com-contact__items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding-top: 5rem;
}
.com-contact__tel .com-tel__time {
  justify-content: flex-start;
  width: 100%;
  height: 3rem;
  padding-inline: 1rem;
  margin-bottom: 1rem;
}
.com-contact__btn {
  width: 32rem;
}
.com-contact__memo {
  width: 100%;
  font-size: 1.9rem;
  line-height: 1.68422;
  letter-spacing: var(--letter-spacing-lg);
}
.com-contact__memo p {
  margin-right: calc(var(--letter-spacing-lg) * -1);
}

/*===============================================
  トップページ
===============================================*/
/*このようなことにお困りではありませんか？
-----------------------------*/
.top-worries {
  background-size: min(623px, 32.448%);
}
.top-worries::after {
  height: 23rem;
  margin-top: 4rem;
}
.top-worries__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5rem 4rem;
}
.top-worries__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24rem;
  aspect-ratio: 240/195;
  padding-bottom: 2rem;
  position: relative;
  z-index: 0;
}
.top-worries__item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}
.top-worries__item p {
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.45834;
  word-break: keep-all;
  padding-inline: 0.5em;
}
.top-worries__item:nth-of-type(8n + 1)::before, .top-worries__item:nth-of-type(8n)::before {
  background: url(../img/index/bg_worries-balloon01.png) no-repeat center/100% 100%;
}
.top-worries__item:nth-of-type(8n + 2)::before, .top-worries__item:nth-of-type(8n + 7)::before {
  background: url(../img/index/bg_worries-balloon02.png) no-repeat center/100% 100%;
}
.top-worries__item:nth-of-type(8n + 3)::before, .top-worries__item:nth-of-type(8n + 6)::before {
  background: url(../img/index/bg_worries-balloon03.png) no-repeat center/100% 100%;
}
.top-worries__item:nth-of-type(8n + 4), .top-worries__item:nth-of-type(8n + 5) {
  padding-bottom: 3rem;
}
.top-worries__item:nth-of-type(8n + 4)::before, .top-worries__item:nth-of-type(8n + 5)::before {
  background: url(../img/index/bg_worries-balloon04.png) no-repeat center/100% 100%;
}
.top-worries__item:nth-of-type(8n + 5)::before, .top-worries__item:nth-of-type(8n + 6)::before, .top-worries__item:nth-of-type(8n + 7)::before, .top-worries__item:nth-of-type(8n)::before {
  transform: scale(-1, 1);
}

/*心残りのないお別れをサポートいたします
-----------------------------*/
.top-about::before {
  background-size: min(71rem, 36.9892%);
}
.top-about__title {
  padding-bottom: 2rem;
}
.top-about__title::after {
  width: calc(100% + 27.6rem);
  height: 11.6rem;
}
.top-about__text {
  text-align: center;
  font-size: 1.9rem;
  line-height: 2.10527;
}
.top-about__btn {
  margin: 5rem auto 0;
}
.top-about__images {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  width: calc(100vw - 10rem);
  max-width: 1280px;
  min-width: 1240px;
  height: 46rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 17rem;
  z-index: -2;
}
.top-about__image {
  position: relative;
  z-index: 0;
}
.top-about__image::before {
  content: "";
  position: absolute;
  z-index: -2;
}
.top-about__image--left {
  width: 20.703125%;
}
.top-about__image--left::before {
  width: 94.717%;
  aspect-ratio: 251/233;
  background: url(../img/index/bg_about-img-l.svg) no-repeat center/contain;
  left: 4.90567%;
  bottom: -23.922%;
}
.top-about__image--right {
  width: 21.875%;
  margin-right: 5px;
  margin-left: auto;
}
.top-about__image--right::before {
  width: calc(100% - 3px);
  aspect-ratio: 277/237;
  background: url(../img/index/bg_about-img-r.svg) no-repeat center/contain;
  top: -15.472%;
  right: -5px;
}

/*事業内容
-----------------------------*/
.top-service + .section {
  padding-top: 17rem;
}
.top-service__items {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 6rem;
}
.top-service__heading {
  padding: 1.6rem 3rem;
  border-radius: 1.5rem;
  margin-bottom: -1.5rem;
}
.top-service__heading::after {
  height: calc(2rem + 1px);
}
.top-service__image {
  margin-bottom: 3rem;
}
.top-service__image img {
  border-radius: 2rem;
  box-shadow: 7px 7px var(--color-bloom);
}
.top-service__text {
  text-align: center;
  font-size: 1.7rem;
  line-height: 2.35295;
}
.top-service__text p {
  margin-right: calc(-0.5em - var(--letter-spacing-base) * -1);
}
.top-service__link {
  -moz-column-gap: 0.9em;
       column-gap: 0.9em;
  font-size: 2rem;
  line-height: 1.2;
  margin-top: 2rem;
}

/*商品紹介
-----------------------------*/
.top-products__inner {
  min-height: 59.4rem;
  padding-right: 57rem;
  position: relative;
  z-index: 0;
}
.top-products__list {
  gap: 2rem;
  padding: 2rem;
  border-radius: 2rem;
  margin-top: 3rem;
}
.top-products__list dt {
  width: 5em;
  font-size: 2rem;
  line-height: 2;
  border-radius: 1rem;
}
.top-products__list dd {
  font-size: 2.8rem;
  line-height: 1;
}
.top-products__list dd.min {
  font-size: 2rem;
}
.top-products__list dd.min .mid {
  font-size: 2.8rem;
}
.top-products__list dd.min .b {
  font-size: 3.5rem;
}
.top-products__images {
  width: 50rem;
  position: absolute;
  top: 0;
  right: 0;
}
.top-products__images::before {
  width: 41.8rem;
  top: 8.8rem;
  left: 5rem;
}
.top-products__image--lt {
  margin-bottom: -5.3rem;
}
.top-products__box {
  padding-top: 3rem;
}
.top-products__heading {
  font-size: 3rem;
  margin-bottom: 3rem;
}
.top-products__body {
  font-size: 1.5rem;
  line-height: 2.66667;
}
.top-products__btn {
  margin-top: 3rem;
}

/*ご購入はこちら
-----------------------------*/
.top-shop {
  margin-block: 5rem;
}
.top-shop::before {
  width: calc(100% - 5rem);
  max-width: 182rem;
  border-radius: 4rem;
}
.top-shop__item {
  display: grid;
  grid-template-columns: 1fr 50%;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
}
.top-shop__inner {
  padding: 5rem 5rem 7rem;
  align-self: center;
}
.top-shop__title {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}
.top-shop__title::after {
  width: 2.4rem;
}
.top-shop__text {
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.88889;
}
.top-shop__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-shop__image::after {
  height: 26.5rem;
  aspect-ratio: 184/265;
  left: -9rem;
}

/*バナーリンクセクション
-----------------------------*/
.top-bnr + .section {
  padding-top: 20rem;
}
.top-bnr__items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4rem 6rem;
}
.top-bnr__item {
  width: 51rem;
  aspect-ratio: 51/22;
  border-radius: 2rem;
}
.top-bnr__text {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  font-size: 2.8rem;
  line-height: 1.07143;
  padding: 1.5rem 2rem 1.5rem 3rem;
  border-top-left-radius: 1rem;
}
.top-bnr__text::after {
  width: 2.4rem;
}

/*お知らせ
-----------------------------*/
.top-news::before {
  min-width: 128rem;
  height: clamp(302px, 23.5416666667vw, 452px);
}
.top-news__box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem 3rem;
}
.top-news__title {
  justify-content: flex-start;
  flex-direction: row;
  margin-bottom: 0;
  order: 0;
}
.top-news__list,
.top-news .com-empty {
  grid-column: span 2;
  order: 2;
}
.top-news__btn {
  order: 1;
}

/*===============================================
  Rin Flowerについて
===============================================*/
/*心残りのないお別れを叶える、新しい副葬品
-----------------------------*/
.about-lead__inner {
  display: grid;
  grid-template-columns: 1fr 48.1rem;
  align-items: flex-start;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}

/*Rin Flowerについて動画でご紹介
-----------------------------*/
.about-movie::before {
  background-size: min(71rem, 36.9892%);
}
.about-movie__box {
  height: 48rem;
}

/*Rin Flowerが選ばれる理由
-----------------------------*/
.about-reason__table {
  font-size: 1.7rem;
  line-height: 1.76471;
}
.about-reason__table tr.ttl th {
  font-size: 2.2rem;
  line-height: 1.36364;
  padding-block: 1rem;
}
.about-reason__table tr.ttl th.main, .about-reason__table tr.ttl th.oth {
  border-radius: 2rem 2rem 0 0;
}
.about-reason__table tr td {
  text-align: center;
  width: 44rem;
  padding-block: 1.4rem;
}
.about-reason__table tr td.main {
  font-size: 1.9rem;
  line-height: 1.57895;
}

/*購入案内
-----------------------------*/
.about-guide__item {
  display: grid;
  grid-template-columns: 12rem 1fr;
  align-items: center;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  padding: 4rem;
  border-radius: 2rem;
}
.about-guide__btn {
  min-width: 35rem;
  height: 5rem;
  font-size: 1.8rem;
  padding-inline: 5rem;
  margin-top: 3rem;
}
.about-guide__items {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  padding: 3rem;
  border-radius: 1rem;
  background: var(--color-bloom);
  margin-top: 3rem;
}
.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.7rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.88236;
}

/*ご使用の流れ
-----------------------------*/
.about-flow::before {
  min-width: 128rem;
  height: clamp(302px, 23.5416666667vw, 452px);
}
.about-flow__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 5rem;
}
.about-flow__btn {
  width: 30rem;
}
.about-flow__btn .com-btn {
  width: 100%;
  height: 5rem;
  font-size: 1.8rem;
}
.about-flow__box {
  padding-top: 5rem;
}
.about-flow__heading {
  margin-bottom: 2.5rem;
}
.about-flow__list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 4.5rem;
  padding-top: 1.5rem;
}
.about-flow__item {
  width: 33rem;
  padding: 2.3rem 2rem 3rem;
  border-radius: 2rem;
}
.about-flow__item::before {
  font-size: 2rem;
  width: 1.5em;
  padding-bottom: 0.05em;
  top: -1.5rem;
}
.about-flow__item::after {
  width: 1rem;
  height: 100%;
  top: 0;
  left: calc(100% + 1.75rem);
}
.about-flow__item:nth-of-type(3n)::after {
  display: none;
}
.about-flow__image {
  margin-inline: 0.3rem;
  margin-bottom: 3rem;
}
.about-flow__image img {
  border-radius: 1rem;
}
.about-flow__caption {
  align-items: center;
  word-break: keep-all;
  text-align: center;
}
.about-flow__body {
  text-align: center;
  word-break: keep-all;
}

/*===============================================
  ご遺族の皆様へ / 終活をお考えの方へ
===============================================*/
/*このような方におすすめ
-----------------------------*/
.service-worries::before {
  min-width: 128rem;
  height: clamp(302px, 23.5416666667vw, 452px);
}
.service-worries__inner {
  position: relative;
  z-index: 0;
}
.service-worries__list {
  position: absolute;
  inset: 0;
}
.service-worries__item {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--font-size-h5);
  line-height: var(--line-height-h5);
  position: absolute;
}
.service-worries__item p {
  text-align: center;
  word-break: keep-all;
  margin-block: calc((1em - 1lh) / 2);
}
.service-worries--support .service-worries__inner {
  padding-top: 31rem;
}
.service-worries--support .service-worries__item {
  width: 33rem;
  aspect-ratio: 33/27;
  padding-inline: 1em;
}
.service-worries--support .service-worries__item:nth-of-type(4), .service-worries--support .service-worries__item:nth-of-type(5) {
  aspect-ratio: 33/24;
}
.service-worries--support .service-worries__item:nth-of-type(1) {
  padding-bottom: 2rem;
  top: 0;
  left: 0;
  background: url(../img/support/balloon_worries01.png) no-repeat center/contain;
}
.service-worries--support .service-worries__item:nth-of-type(2) {
  padding-bottom: 2rem;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/support/balloon_worries02.png) no-repeat center/contain;
}
.service-worries--support .service-worries__item:nth-of-type(3) {
  padding-bottom: 2.5rem;
  top: 0;
  right: 0;
  background: url(../img/support/balloon_worries03.png) no-repeat center/contain;
}
.service-worries--support .service-worries__item:nth-of-type(4) {
  padding-bottom: 1rem;
  bottom: 0;
  left: 0;
  background: url(../img/support/balloon_worries04.png) no-repeat center/contain;
}
.service-worries--support .service-worries__item:nth-of-type(5) {
  padding-bottom: 1rem;
  bottom: 0;
  right: 0;
  background: url(../img/support/balloon_worries05.png) no-repeat center/contain;
}
.service-worries--legacy .service-worries__inner {
  padding-top: 22.5rem;
}
.service-worries--legacy .service-worries__item {
  width: 24rem;
  aspect-ratio: 240/195;
  padding-inline: 0.5em;
}
.service-worries--legacy .service-worries__item:nth-of-type(1) {
  width: 28.3rem;
  aspect-ratio: 283/178;
  padding-right: calc(1em + 1rem);
  top: 15.7rem;
  left: 0;
  background: url(../img/legacy/balloon_worries01.png) no-repeat center/contain;
}
.service-worries--legacy .service-worries__item:nth-of-type(2) {
  padding-bottom: 1.8rem;
  top: 1rem;
  left: 24rem;
  background: url(../img/legacy/balloon_worries02.png) no-repeat center/contain;
}
.service-worries--legacy .service-worries__item:nth-of-type(3) {
  padding-bottom: 2.2rem;
  top: 0;
  right: 30rem;
  background: url(../img/legacy/balloon_worries03.png) no-repeat center/contain;
}
.service-worries--legacy .service-worries__item:nth-of-type(4) {
  width: 34.1rem;
  aspect-ratio: 314/176;
  padding-left: calc(1em + 2.7rem);
  top: 15.9rem;
  right: 0;
  background: url(../img/legacy/balloon_worries04.png) no-repeat center/contain;
}

/*Rin Flowerの特徴
-----------------------------*/
.service-feature__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  margin-bottom: 5rem;
}
.service-feature__item:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.service-feature__image {
  flex-shrink: 0;
  width: 52rem;
}
.service-feature__image img {
  aspect-ratio: 1.625;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-feature__image img {
  border-radius: 2rem;
}
.service-feature__inner {
  width: 100%;
  align-self: center;
}
.service-feature__heading {
  flex-direction: row;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  margin-bottom: 3rem;
}
.service-feature__heading::before {
  width: 1.5em;
  font-size: 2rem;
  padding-bottom: 0.05em;
  flex-shrink: 0;
}
.service-feature__heading > span {
  align-self: center;
}
.service-feature__body p {
  display: inline;
}

/*お客様の声
-----------------------------*/
.service-voice__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.5rem;
}
.service-voice__item {
  row-gap: 3rem;
  padding: 0 2rem 3rem;
}
.service-voice__item::before {
  height: calc(100% - 2rem);
  border-radius: 2rem;
}
.service-voice__status {
  gap: 2rem;
}
.service-voice__status .age {
  font-size: 2.4rem;
  line-height: 1.54167;
}
.service-voice__status .gender {
  line-height: 2.3125;
  padding-inline: 2rem;
}

/*===============================================
  会社情報
===============================================*/
/*会社概要
-----------------------------*/
.info-company {
  background-size: min(623px, 32.448%);
}
.info-company__table tr th {
  width: 20rem;
}
.info-company__map {
  height: 35rem;
  margin-top: 5rem;
}

/*===============================================
  お知らせ
===============================================*/
/* お知らせ 一覧
-----------------------------*/
/* お知らせ 詳細
-----------------------------*/
/*タグリスト
-----------------------------*/
/*===============================================
  お問い合わせ
===============================================*/
.contact-form__table tr th {
  width: 36rem;
  text-align: left;
  line-height: 2.375;
}
.contact-form__table tr th .optional-mark,
.contact-form__table tr th .required-mark {
  margin-top: 0.5rem;
}
.contact-form__table tr td {
  vertical-align: middle;
  line-height: 2.375;
}
.contact-form__table tr td .add {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-form .contact-submits-wrap > * {
  margin: 2rem 1.5rem 0;
}

/*===============================================
  お問い合わせ完了
===============================================*/
.contact-complete__text {
  text-align: center;
}

/*===============================================
  プライバシーポリシー
===============================================*/
/*===============================================
  サイトマップ
===============================================*/
.sitemap-list__items {
  display: grid;
  grid-template: repeat(5, 1fr)/repeat(2, 1fr);
  grid-auto-flow: column;
  gap: 2rem 8rem;
}
.sitemap-list__link {
  font-size: 1.8rem;
  line-height: 1.5;
  padding: 1.5rem 2rem;
}

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