@charset "UTF-8";
/* SCSSの読み込み */
@import url(all.css);
/* font-weight */
:root {
  /* カラー */
  --color-text: #333;
  --color-wakaba: #87c907;
  --color-green: #1baa6d;
  --color-gradation-green: #05cb91;
  --color-yellow: #fbfd6e;
  --color-orange: #f1c348;
  --color-cream: #feffe9;
  --color-salmon: #faa47a;
  --color-blue: #76c3f9;
  /* font-family */
  --font-family-noto: "Noto Sans JP", sans-serif;
  --font-family-kaku: "Zen Kaku Gothic New", sans-serif;
  /* font-weight */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}

@media screen and (min-width: 768px) {
  :root {
    /* フォントサイズ */
    --font-size-xxl: 4.6rem;
    --font-size-xl: 3.2rem;
    --font-size-gl: 2.4rem;
    --font-size-base: 1.6rem;
    --font-size-xs: 1.3rem;
    /* line-height */
    --line-height-xxl: 1.652174;
    --margin-height-xxl: -0.326087em;
    --line-height-xl: 1.5;
    --margin-height-xl: -0.25em;
    --line-height-gl: 1.5;
    --margin-height-gl: -0.25em;
    --line-height-base: 1.875;
    --margin-height-base: -0.4375em;
    /* letter-speacing */
    --letter-spacing-base: 0.06em;
  }
}
@media screen and (max-width: 767px) {
  :root {
    /* フォントサイズ */
    --font-size-xxxl: 1.75em;
    --font-size-xxl: 1.5em;
    --font-size-xl: 1.25em;
    --font-size-gl: 1.125em;
    --font-size-base: 1em;
    --font-size-sm: 0.875em;
    --font-size-xs: 0.75em;
    /* line-height */
    --line-height-gl: 1.5;
    --line-height-base: 1.75;
    /* letter-speacing */
    --letter-spacing-base: 0.06em;
  }
}
/*===============================================
  切り替え用
===============================================*/
.sp-none {
  display: none !important;
}

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

/*===============================================
  ページネーション
===============================================*/
.pagenation {
  padding-top: 40px;
}
.pagenation li {
  width: 2em;
  font-size: 1.5rem;
  line-height: 2em;
  margin: 5px 4px 0;
}

/*===============================================
  詳細ページ前後
===============================================*/
.paginated__list {
  padding-top: 1.5em;
  margin-top: 2em;
}
.paginated__item {
  width: 90px;
}
.paginated__link {
  font-size: 1.4rem;
  line-height: 2.14286;
  letter-spacing: 0;
}
.paginated__link--prev::before {
  margin-right: 0.5em;
}
.paginated__link--next::after {
  margin-left: 0.5em;
}

/*===============================================
  wrapper
===============================================*/
#wrapper {
  min-width: 320px;
}

/*===============================================
  header
===============================================*/
#header .header__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 90%;
  height: 80px;
}
#header .header__logo img {
  height: 52px;
}
#header .header__other {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: clamp(1.4rem, 4.3243243243vw, 1.6rem);
  background: var(--color-cream);
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 55;
}
#header .header__tel {
  width: calc(100% - 80px);
}
#header .header__btn {
  height: 80px;
  border-radius: 0;
}
#header .header__btn::before {
  aspect-ratio: 1;
}
#header .header__btn > span {
  display: none;
}

/*===============================================
  footer
===============================================*/
#footer {
  font-size: clamp(1.4rem, 4.3243243243vw, 1.6rem);
  letter-spacing: var(--letter-spacing-base);
  padding: clamp(48px, 15vw, 60px) 0 88px;
  background-size: 150%;
}
#footer .footer__logo {
  text-align: center;
  margin-bottom: clamp(32px, 10vw, 40px);
}
#footer .footer__logo img {
  height: 65px;
}
#footer .footer__inner {
  width: 90%;
}
#footer .footer__inner > * {
  margin-bottom: 30px;
}
#footer .footer__inner > *:last-child {
  margin-bottom: 0;
}
#footer .footer__posting > * {
  margin-bottom: 20px;
}
#footer .footer__posting > *:last-child {
  margin-bottom: 0;
}
#footer .footer__posting-item {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
#footer .footer__posting-item dt {
  line-height: 2;
}
#footer .footer__posting-item dt:has(+ dd) {
  margin-bottom: 1em;
}
#footer .footer__posting-item dd {
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--font-size-sm);
  margin: 0 auto;
}
#footer .footer__address {
  max-width: 410px;
  text-align: center;
  line-height: var(--line-height-base);
  margin: 0 auto;
}
#footer .footer__address > * {
  margin-bottom: 1em;
}
#footer .footer__address > *:last-child {
  margin-bottom: 0;
}

/*フッターナビ
-----------------------------*/
.fnav {
  width: 100vw;
  background: var(--color-wakaba);
  border-top: solid 1px var(--color-wakaba);
  border-bottom: solid 1px var(--color-wakaba);
  margin-left: -5vw;
  margin-top: 40px;
}
.fnav__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}
.fnav__item {
  background: var(--color-cream);
}
.fnav__item:nth-last-of-type(2n + 1):first-of-type {
  grid-column-start: 1;
  grid-column-end: 3;
}
.fnav__item:nth-last-of-type(2n):first-of-type.fnav__item--ent + .fnav__item {
  grid-column-start: 1;
  grid-column-end: 3;
}
.fnav__item--ent {
  grid-column-start: 1;
  grid-column-end: 3;
}
.fnav__link {
  font-size: var(--font-size-sm);
  line-height: 2;
  padding: 1.5em 2vw;
}

/*コピーライト
-----------------------------*/
.copy {
  padding: 20px 0;
}

/*===============================================
  fixed固定
===============================================*/
/*ページトップ
-----------------------------*/
#pagetop {
  width: clamp(40px, 12.5vw, 50px);
  right: 8px;
  bottom: 8px;
}

/*サイドボタン
-----------------------------*/
#side {
  font-size: clamp(1.4rem, 4.3243243243vw, 1.6rem);
  width: calc(100% - 80px);
  min-width: 250px;
  height: 80px;
  left: 8px;
  bottom: 8px;
}
#side::before {
  aspect-ratio: 1;
}
#side > span {
  font-size: var(--font-size-gl);
  width: calc(100% - 80px);
  padding-right: 6%;
}
#side > span .b {
  font-size: 1.25em;
}
#side > span::after {
  content: "";
  width: 0.65em;
  height: 100%;
  background: url(../img/common/arrow.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  right: 5%;
}

/*===============================================
  visual
===============================================*/
/*メインビジュアル
-----------------------------*/
.visual__main-catch {
  width: 90.3125vw;
  padding: 15vw 0;
  margin: 0 auto;
}
.visual__main-catch::before {
  width: 98vw;
  height: 24vw;
  left: 50%;
  bottom: -8vw;
  transform: translateX(-50%);
}
.visual__main-catch::after {
  width: 100%;
  height: 10vw;
  left: 0;
  bottom: 18%;
}
.visual__main-list {
  flex-wrap: wrap;
}
.visual__main-item {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  width: 36%;
  font-size: 5vw;
  padding-bottom: 10vw;
  margin-top: -10vw;
  position: relative;
}
.visual__main-item > span {
  letter-spacing: var(--letter-spacing-base);
  line-height: 1.5;
}
.visual__main-item--memento > span {
  line-height: 1;
}
.visual__main-item:nth-of-type(4n + 1) {
  margin-left: -10vw;
}
.visual__main-item:nth-of-type(4n + 3) {
  margin-left: 10vw;
}
.visual__main-images {
  gap: 2.5vw;
  grid-template: 1fr/1fr 1fr;
  padding: 0 2.5vw;
}
.visual__main-image--main {
  display: none;
}

/*サブビジュアル
-----------------------------*/
.visual__sub {
  justify-content: center;
  height: 62.5vw;
}
.visual__sub-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 60%;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 5vw;
}
.visual__sub-inner::before {
  width: 96%;
  height: 16vw;
  bottom: 0;
}
.visual__sub-catch {
  min-width: 72%;
  font-size: 6.25vw;
}
.visual__sub-catch > span {
  letter-spacing: var(--letter-spacing-base);
  padding-bottom: 0.5em;
}
.visual__sub-catch::before {
  width: 65.625vw;
  height: 17.5vw;
  bottom: 0;
}
.visual__sub-catch::after {
  font-size: 3.75vw;
  letter-spacing: var(--letter-spacing-base);
  margin-top: 1em;
}
.visual__sub--memento .visual__sub-catch {
  font-size: 5.625vw;
}

/*===============================================
  main#container
===============================================*/
#container {
  font-size: clamp(1.4rem, 4.3243243243vw, 1.6rem);
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
}

/*===============================================
  パンくずリスト
===============================================*/
.breadcrumb {
  padding-top: 8px;
}
.breadcrumb__list {
  width: 90%;
}
.breadcrumb__item {
  font-size: var(--font-size-xs);
  line-height: var(--line-height-gl);
  letter-spacing: var(--letter-spacing-base);
}

/*===============================================
  main共通
===============================================*/
.inbox {
  width: 90%;
}

/*電話番号
-----------------------------*/
.com-tel {
  font-size: var(--font-size-xxxl);
}
.com-tel > * {
  min-width: 6em;
}
.com-tel-num {
  letter-spacing: var(--letter-spacing-base);
}
.com-tel-num::before {
  width: 0.75em;
  height: 0.75em;
  margin-right: 10px;
}
.com-tel .com-replace {
  height: clamp(10px, 3vw, 12px);
  margin-top: clamp(10px, 3vw, 12px);
}

/*ボタン
-----------------------------*/
.com-btn {
  width: 100%;
  height: clamp(64px, 20vw, 80px);
  font-size: var(--font-size-gl);
  line-height: var(--line-height-gl);
  letter-spacing: var(--letter-spacing-base);
  text-shadow: 0 0 5px rgba(27, 170, 109, 0.5);
  border-radius: 10px;
  padding-left: 5%;
  margin: 0 auto;
}
.com-btn:not(.header__btn)::before {
  width: calc(1em - 2px);
  left: 5%;
}
.com-btn.com-btn--vertical::before {
  height: auto;
  aspect-ratio: 8/9;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}

.com-link {
  font-size: var(--font-size-gl);
  margin: 0 auto;
}
.com-link::before {
  width: 0.85em;
  margin-right: 1em;
}

.com-line {
  font-size: var(--font-size-gl);
  text-shadow: 0 0 5px rgba(27, 170, 109, 0.5);
  border-radius: 10px;
}
.com-line::before {
  height: 100%;
  background-size: auto 50%;
}
.com-line > span {
  letter-spacing: var(--letter-spacing-base);
}

.com-mail {
  font-size: var(--font-size-gl);
  text-shadow: 0 0 5px rgba(27, 170, 109, 0.5);
  border-radius: 10px;
}
.com-mail::before {
  height: 100%;
  background-size: auto 25%;
}
.com-mail > span {
  letter-spacing: var(--letter-spacing-base);
}

/* 営業時間 / 定休日
-----------------------------*/
.com-informations {
  display: grid;
  grid-template: 1fr/repeat(auto-fit, minmax(12em, 1fr));
  gap: 5px;
}

.com-information {
  line-height: 2.5;
}

/*テーブル
-----------------------------*/
.com-table tr {
  padding: 0 0.5em 2em;
  margin-bottom: 2em;
}
.com-table tr th {
  margin-bottom: 1em;
}
/*テキストボックス
-----------------------------*/
.com-text .mb {
  margin-bottom: 1em;
}
.com-text .min {
  font-size: var(--font-size-sm);
}
.com-text br {
  display: none;
}

/*画像
-----------------------------*/
.com-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 32%;
     object-position: center 32%;
  aspect-ratio: 16/9;
  border-radius: 12px;
}

/*SB未記入テキスト
-----------------------------*/
.com-empty {
  font-size: var(--font-size-gl);
  line-height: var(--line-height-gl);
  padding: 2em 0;
}

/*===============================================
  タイトル
===============================================*/
/*大タイトル
-----------------------------*/
.com-title01 {
  font-size: var(--font-size-xxxl);
  margin-bottom: 1.25em;
}
.com-title01 > span {
  line-height: var(--line-height-gl);
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1em);
}
.com-title01 > span .br {
  display: inline-block;
}
.com-title01 .b {
  font-size: 1.071429em;
}

/*中タイトル
-----------------------------*/
.com-title02 {
  font-size: var(--font-size-xxl);
  padding-bottom: 0.5em;
  margin-bottom: 1em;
}
.com-title02 > span {
  line-height: var(--line-height-gl);
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1em);
}

/*小タイトル
-----------------------------*/
.com-title03 {
  font-size: var(--font-size-xl);
  margin-bottom: 1em;
}
.com-title03 > span {
  line-height: var(--line-height-gl);
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1em);
  border-radius: 10px;
  padding: 0.75em 1.25em;
}

/*===============================================
  共通セクション
===============================================*/
/*お問い合わせ
-----------------------------*/
.com-contact {
  padding: clamp(64px, 20vw, 80px) 0;
}
.com-contact__text {
  text-align: center;
}
.com-contact__list {
  padding-top: 30px;
}
.com-contact__item {
  width: min(360px, 100%);
  margin: 0 auto 20px;
}
.com-contact__item:last-of-type {
  margin-bottom: 0;
}
.com-contact__link {
  height: 80px;
}
.com-contact__link::before {
  aspect-ratio: 1;
}
.com-contact__link > span {
  width: calc(100% - 80px);
}
.com-contact__address {
  padding-top: 20px;
}
.com-contact__address > * {
  margin-bottom: 10px;
}
.com-contact__address > *:last-child {
  margin-bottom: 0;
}
.com-contact__tel {
  height: 3em;
}

/*こんなお困りごとはありませんか？
-----------------------------*/
.com-trouble {
  padding: clamp(64px, 20vw, 80px) 0 0;
}
.com-trouble::before {
  width: 96%;
  min-width: 420px;
  height: 36px;
}
.com-trouble::after {
  height: 100px;
  margin-top: 20px;
}
.com-trouble__item {
  font-size: var(--font-size-gl);
  line-height: var(--line-height-gl);
  padding: 1em 1em 1em calc(2.5em + 12px);
  border-radius: 12px;
  margin-bottom: 10px;
}
.com-trouble__item:last-child {
  margin-bottom: 0;
}
.com-trouble__item::before {
  width: 1.5em;
  height: 100%;
  top: 0;
  left: 1em;
}
.com-trouble__item br {
  display: none;
}
.com-trouble + .com-about .com-about__title {
  padding-top: clamp(64px, 20vw, 80px);
}
.com-trouble + .com-about .com-about__title::after {
  height: clamp(56px, 17.5vw, 70px);
  top: clamp(-20px, -5vw, -16px);
}

/*セカンドライフにお任せください！
-----------------------------*/
.com-about__title {
  font-size: var(--font-size-xxl);
  padding: clamp(32px, 10vw, 40px) 2.5%;
}
.com-about__title::before {
  width: 98%;
  background-size: auto 64% !important;
  opacity: 0.64;
}
.com-about__title br {
  display: none;
}
.com-about .inbox {
  padding: clamp(32px, 10vw, 40px) 0 clamp(64px, 20vw, 80px);
}
.com-about__image {
  margin-top: 30px;
}
.com-about.memento-about .inbox, .com-about.disused-about .inbox {
  padding: clamp(32px, 10vw, 40px) 0;
}
.com-about.memento-about .com-about__text, .com-about.disused-about .com-about__text {
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--font-size-gl);
  margin: 0 auto;
}

/*○○の流れ
-----------------------------*/
.com-flow {
  padding: clamp(64px, 20vw, 80px) 0;
}
.com-flow__title:has(+ .com-flow__box) {
  margin-bottom: 0;
}
.com-flow__title + .com-flow__box {
  padding-top: clamp(48px, 15vw, 60px);
}
.com-flow__box {
  padding-top: clamp(64px, 20vw, 80px);
}
.com-flow__box .com-flow__item-title::before, .com-flow__box .com-flow__item-title::after {
  font-size: var(--font-size-xl);
  letter-spacing: var(--letter-spacing-base);
}
.com-flow__item {
  padding: 2em 1.5em 1.5em;
  margin-bottom: 60px;
}
.com-flow__item::after {
  height: 40px;
  top: calc(100% + 10px);
}
.com-flow__item-title {
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.com-flow__item-title > span {
  width: 100%;
  margin-top: 15px;
}
.com-flow__item-image {
  margin-top: 1.5em;
}
.com-flow__item-cta {
  padding-top: 1.5em;
}
.com-flow__item-cta > * {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 1.5em;
}
.com-flow__item-cta > *:last-child {
  margin-bottom: 0;
}
.com-flow__item-link {
  width: 40px;
  margin-right: 30px;
}
.com-flow__item-link--mail a {
  border-radius: 6px;
}
.com-flow__item-tel {
  min-width: 240px;
  padding-bottom: 20px;
}

/*===============================================
  エントランスページ
===============================================*/
.entrance {
  display: grid;
  grid-template-rows: 5fr 4fr 4fr;
  height: min(810px, 160vw);
  min-height: calc(100dvh - 200px);
}
.entrance__box {
  border-top: solid 2px var(--color-wakaba);
  border-bottom: solid 2px var(--color-wakaba);
}
.entrance__box:has(+ .entrance__box) {
  border-bottom-width: 1px;
}
.entrance__box + .entrance__box {
  border-top-width: 1px;
}
.entrance__box--hidden::after {
  font-size: var(--font-size-xxxl);
  letter-spacing: var(--letter-spacing-base);
}
.entrance__box-inner {
  width: 80%;
  max-width: 360px;
  height: 72%;
  border-radius: clamp(16px, 5vw, 20px);
}
.entrance__box-inner::after {
  width: 110%;
  height: 64%;
}
.entrance__box-link {
  border-radius: clamp(12px, 3.75vw, 15px);
}
.entrance__box-link::after {
  font-size: var(--font-size-xxl);
  letter-spacing: var(--letter-spacing-base);
  margin-top: 0.5em;
}
.entrance__box-txt > span {
  margin-bottom: 0.5em;
}
.entrance__box-txt > span.mid {
  margin-bottom: 0.25em;
}
.entrance__box-txt .sub {
  font-size: var(--font-size-base);
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1em);
}
.entrance__box-txt .main {
  font-size: var(--font-size-xxxl);
}
.entrance__box-txt .main.mid {
  font-size: var(--font-size-xxl);
}
.entrance + .copy {
  margin-bottom: 80px;
}

/*===============================================
  トップページ
===============================================*/
/*大切な想い出、
一つひとつ丁寧に整理します。
-----------------------------*/
.top-about {
  padding: clamp(64px, 20vw, 80px) 0;
}
.top-about::before {
  height: 100%;
}
.top-about::after {
  display: none;
}
.top-about__btn {
  font-size: var(--font-size-base);
  margin-top: 40px;
}
.top-about__area {
  padding-top: clamp(64px, 20vw, 80px);
  background: none;
}
.top-about__area-title {
  font-size: var(--font-size-xxxl);
}
.top-about__area-title::after {
  margin-top: 0.5em;
}
.top-about__area-map {
  text-align: center;
}
.top-about__area-map img {
  height: clamp(160px, 50vw, 200px);
}
.top-about__area-text {
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.5em 1em;
  margin: -20px auto 0;
}

/*あなたにおすすめのページへご案内
-----------------------------*/
.top-chart {
  padding: clamp(64px, 20vw, 80px) 0;
}
.top-chart__title::before {
  width: calc(100% + 56px);
  height: 24px;
  top: -16px;
}
.top-chart__title > span:last-child::after {
  width: 16px;
  margin-left: 8px;
  vertical-align: bottom;
}
.top-chart__flow::before {
  width: calc(100vw - 40px);
  min-width: 1240px;
  max-width: 1414px;
  height: 185px;
  top: -105px;
}
.top-chart__question {
  font-size: var(--font-size-xl);
  padding: 1em 0.75em;
  border-radius: 12px;
  border-width: 2px;
  margin-bottom: 20px;
}
.top-chart__options {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}
.top-chart__options::before {
  width: 100vw;
  min-width: 1360px;
  max-width: 1920px;
  height: clamp(252px, 19.6354166667vw, 377px);
  background-size: clamp(267px, 20.8333333333vw, 400px);
}
.top-chart__options:last-of-type .top-chart__option {
  width: calc(50% - 8px);
}
.top-chart__option:nth-of-type(1) {
  width: 72%;
  max-width: clamp(100% - 110px, 100% - 27.5vw, 100% - 90px);
}
.top-chart__label {
  width: clamp(80px, 25vw, 100px);
  aspect-ratio: 1;
  font-size: var(--font-size-xxxl);
  border-width: 3px;
  padding-bottom: 0.1em;
  margin: 0 auto;
}
.top-chart__label::before {
  width: 25%;
  height: 160px;
  top: 100%;
}
.top-chart__label::after {
  width: 75%;
  height: 25px;
  top: calc(100% + 159px);
}
.top-chart__label:has(+ .top-chart__result) {
  margin-bottom: 55px;
}
.top-chart__label:has(+ .top-chart__result)::before {
  height: 24px;
}
.top-chart__label:has(+ .top-chart__result)::after {
  top: calc(100% + 23px);
}
.top-chart__result {
  width: 100%;
  height: 80px;
  text-align: center;
  justify-content: center;
  font-size: var(--font-size-base);
  box-shadow: 0 4px var(--color-green);
}
.top-chart__result .b {
  display: block;
  font-size: var(--font-size-gl);
}
.top-chart__result br {
  display: none;
}
.top-chart__result::after {
  width: 54px;
  height: 47px;
  right: 2%;
  filter: drop-shadow(0 0 4px rgba(27, 170, 109, 0.6));
  display: none;
}
.top-chart__result:hover {
  box-shadow: none;
  transform: translateY(4px);
}

/*お知らせ
-----------------------------*/
.top-news {
  padding: clamp(64px, 20vw, 80px) 0;
}
.top-news::after {
  width: 96%;
  min-width: 420px;
  height: 36px;
  bottom: 0;
}
.top-news__title::before {
  width: calc(100% + 56px);
  height: 24px;
  top: -16px;
}
.top-news__item {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-gl);
  margin-bottom: 15px;
}
.top-news__item-link {
  padding: 1.5em;
}
.top-news__item-tags {
  margin-left: 7em;
  margin-top: calc(var(--line-height-gl) * -1em);
}
.top-news__item-title {
  font-size: 1.1428572em;
  margin-top: 1em;
}
.top-news__link {
  margin-top: 40px;
}

/*===============================================
  セカンドライフについて
===============================================*/
/*ご挨拶
-----------------------------*/
.about-greeting {
  padding: clamp(64px, 20vw, 80px) 0;
}

/*セカンドライフが選ばれる3つの理由
-----------------------------*/
.about-reason {
  padding: clamp(64px, 20vw, 80px) 0;
}
.about-reason__item {
  margin-bottom: clamp(64px, 20vw, 80px);
}
.about-reason__item-title::before {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}
.about-reason__item-image {
  margin-top: 30px;
}

/*===============================================
  遺品整理
===============================================*/
/*生前整理・遺品整理
-----------------------------*/
.com-about + .memento-sort {
  padding-top: clamp(48px, 15vw, 60px);
}

.memento-sort {
  padding: clamp(64px, 20vw, 80px) 0;
}
.memento-sort__item {
  margin-bottom: clamp(64px, 20vw, 80px);
}
.memento-sort__item-title {
  align-items: center;
}
.memento-sort__item-image {
  margin-top: 30px;
}

/*料金表
-----------------------------*/
.memento-fee {
  padding: clamp(64px, 20vw, 80px) 0;
}
.memento-fee__text {
  text-align: center;
}
.memento-fee__table {
  line-height: 1.5;
  padding-top: 20px;
}
.memento-fee__table th {
  width: 32%;
  padding: 1em;
  background: var(--color-cream);
}
.memento-fee__table td {
  padding: 1em;
}

/*遺品供養や仏壇供養も承っております。
-----------------------------*/
.memento-service {
  padding: clamp(64px, 20vw, 80px) 0;
}
.memento-service__image {
  margin-top: 30px;
}

/*===============================================
  不用品買取・回収
===============================================*/
/*出張買取・店頭買取
-----------------------------*/
.disused-purchase {
  padding: clamp(64px, 20vw, 80px) 0;
}
.disused-purchase__image {
  margin-bottom: 20px;
}
.disused-purchase__btn {
  margin-top: 30px;
}
.disused-purchase__box {
  padding-top: 70px;
}
.disused-purchase__items {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: -20px;
}
.disused-purchase__item {
  width: calc(50% - 10px);
  margin-top: 20px;
  margin-right: 20px;
}
.disused-purchase__item:nth-of-type(2n), .disused-purchase__item:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 480px) {
  .disused-purchase__item {
    width: 100%;
  }
}
.disused-purchase__item-title {
  font-size: 1em;
  margin: 10px 0 0;
}
.disused-purchase__item-title > span {
  padding: 1em 0.5em;
}

/*不用品回収
-----------------------------*/
.disused-collect {
  padding: clamp(64px, 20vw, 80px) 0;
}
.disused-collect__image {
  margin-bottom: 20px;
}
.disused-collect__btn {
  margin-top: 30px;
}
.disused-collect__table {
  padding-top: 40px;
}
.disused-collect__table caption {
  margin-bottom: 15px;
}
.disused-collect__table tr {
  line-height: 1.5;
}
.disused-collect__table tr:nth-of-type(2n + 1) {
  background: var(--color-cream);
}
.disused-collect__table tr th {
  padding: 1em;
}
.disused-collect__table tr td {
  padding: 1em;
}

/*===============================================
  お客様の声
===============================================*/
.voice-list {
  padding: clamp(64px, 20vw, 80px) 0;
}
.voice-list__item {
  padding: 2em 1.5em;
  border-radius: 12px;
  margin-bottom: 30px;
}
.voice-list__item-title .min {
  font-size: 0.75em;
  margin-top: 0.25em;
}

/*===============================================
  会社案内
===============================================*/
.company-information {
  padding: clamp(64px, 20vw, 80px) 0;
}
.company-information__table td .com-replace {
  font-size: var(--font-size-xs);
  padding: 0.66666667em 0;
}
.company-information__table td .com-replace img {
  height: 1em;
}
.company-information__map {
  height: clamp(320px, 100vw, 400px);
  margin-top: clamp(32px, 10vw, 40px);
}

/*==================================================
 ニュース一覧
================================================== */
.news-archive {
  padding: clamp(64px, 20vw, 80px) 0;
}
.news-archive__item {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-gl);
  margin-bottom: 15px;
}
.news-archive__item-link {
  padding: 1.5em;
}
.news-archive__item-tags {
  margin-left: 7em;
  margin-top: calc(var(--line-height-gl) * -1em);
}
.news-archive__item-title {
  font-size: 1.1428572em;
  margin-top: 1em;
}

/*タグリスト
-----------------------------*/
.tag-select {
  margin-bottom: 40px;
}
.tag-select__box {
  min-width: 160px;
}
.tag-select__box::after {
  right: 12px;
}
.tag-select__dropdown {
  font-size: var(--font-size-xs);
  line-height: 1.33334;
  padding: 12px 32px 12px 12px;
}

/*==================================================
 ニュース詳細
================================================== */
.news-detail {
  padding: clamp(64px, 20vw, 80px) 0;
}
.news-detail__post {
  font-size: var(--font-size-xs);
  line-height: 1.66667;
  margin-bottom: 16px;
}
/*==================================================
 お問い合わせ
================================================== */
.contact-form {
  padding: clamp(64px, 20vw, 80px) 0;
}
.contact-form__table {
  margin-bottom: 40px;
}
.contact-form__table th .optional-mark,
.contact-form__table th .required-mark {
  font-size: var(--font-size-xs);
  line-height: 2;
  padding: 0 8px;
  margin-top: 2px;
}
.contact-form .contact-submits-wrap {
  padding-top: 16px;
}
.contact-form .contact-submits-wrap > * {
  width: 75vw;
  max-width: 320px;
  height: 60px;
  margin: 0 auto 20px;
}
.contact-form .contact-submits-wrap > *:last-child {
  margin-bottom: 0;
}

/*==================================================
 お問い合わせ完了
================================================== */
.contact-complete {
  padding: clamp(64px, 20vw, 80px) 0;
}
/*===============================================
  プライバシーポリシー
===============================================*/
.privacy-policy {
  padding: clamp(64px, 20vw, 80px) 0;
}
.privacy-policy__box {
  margin-bottom: 56px;
}

/*==================================================
 サイトマップ
================================================== */
.sitemap-list {
  padding: clamp(64px, 20vw, 80px) 0;
}
.sitemap-list__item {
  font-size: var(--font-size-gl);
  margin-bottom: 10px;
}
.sitemap-list__item:last-of-type {
  margin-bottom: 0;
}
.sitemap-list__link {
  padding: 15px;
}

/*===============================================
  404エラー
===============================================*/
.error-message {
  padding: clamp(64px, 20vw, 80px) 0;
}