@charset "UTF-8";

/* ===========================================
共通
=========================================== */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  color: #333333;
  font-weight: 500;
  font-size: 16px;
  line-height: calc(30 / 16);
  font-family: "Noto Serif JP", serif;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 80;
  pointer-events: none;
}

body.is-scrollLock::before {
  opacity: 1;
  pointer-events: auto;
}

body.is-scrollLock {
  overflow: hidden;
}

a {
  color: #333333;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul {
  list-style: none;
}

main {
  width: calc(100% - 230px);
  margin-left: 230px;
}

.container {
  max-width: 932px;
  padding: 60px 16px;
  margin: 0 auto;
}

.container--sm {
  max-width: 600px;
  padding: 0;
  margin: 0 auto;
}

.sp__only {
  display: none;
}

/* タイトル
=========================================== */
.section-title {
  font-size: 26px;
  font-weight: 700;
  line-height: calc(31 / 26);
  text-align: center;
  margin-bottom: 30px;
}

.content-title {
  font-size: 16px;
  font-weight: 700;
  line-height: calc(30 / 16);
  margin-bottom: 10px;
}

.content-title--center {
  font-size: 20px;
  font-weight: 700;
  line-height: calc(24 / 20);
  margin-bottom: 20px;
  text-align: center;
}

.content-title--border {
  font-size: 20px;
  font-weight: 700;
  line-height: calc(24 / 20);
  padding-bottom: 16px;
  margin-bottom: 16px;
  position: relative;
}

.content-title--border::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 1px;
  background: #D2D2D2;
  pointer-events: none;
}

.content-title--diamond {
  display: block;
  width: max-content;
  margin: 0 auto 20px;
  font-size: 22px;
  font-weight: 700;
  line-height: calc(26 / 22);
  text-align: center;
  padding-left: 36px;
  position: relative;
}

.content-title--diamond::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 19px;
  height: 19px;
  background-color: #004664;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: center;
  display: block;
  pointer-events: none;
}

/* 画像ポップアップ
=========================================== */
/* .lum-lightbox {
  z-index: 110;
}

.lum-lightbox-inner img.lum-img {
  max-width: 100%;
  width: auto;
} */

/* ===========================================
ヘッダー
=========================================== */
.header {
  width: 230px;
  height: 100%;
  background-color: #004664;
  padding: 50px 25px;
  position: fixed;
  top: 0;
  overflow-y: auto;
  text-align: center;
  z-index: 80;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 191px;
  height: auto;
  aspect-ratio: calc(191 / 124);
  background: url(/img/common/logo/logo_crest.png) no-repeat;
  background-size: contain;
  pointer-events: none;
}

.header a {
  color: #ffffff;
}

.header__logo {
  margin-bottom: 20px;
}

.header__logo a {
  display: inline-block;
}

.header__logo img {
  width: 150px;
  height: auto;
  aspect-ratio: 150 / 82;
}

.header__list {
  margin-bottom: 20px;
}

.header__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 18px;
  font-weight: 800;
  line-height: calc(20 / 18);
}

.header__item a {
  display: block;
  padding: 20px 10px;
}

.header__list .header__item:last-of-type {
  border-bottom: none;
}

.header__btn {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.header__btn a {
  background: rgba(255, 255, 255, 0.12);
  padding: 6px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
}

.header__btn a+a {
  margin-top: 10px;
}

.header__tel {
  margin-bottom: 30px;
}

.header__tel a {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: calc(24 / 20);
  padding-left: 20px;
  position: relative;
}

.header__tel a::before {
  content: "\f095";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  top: 2px;
  left: 0;
  transform: rotate(12deg);
  font-size: 17px;
  pointer-events: none;
}

.header__tel a span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: calc(17 / 14);
  margin-top: 4px;
}

.header__sns {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__sns a {
  display: inline-block;
  padding: 0 15px;
}

.header__sns .fa-brands {
  font-size: 27px;
}

/* ハンバーガーメニュー
------------------------------------------- */
.header__toggle {
  display: none;
  z-index: 100;
  position: fixed;
  top: 0;
  right: 0;
  width: 77px;
  height: 88px;
  background-color: #336B83;
}

.header__toggle-line {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s;
  transform-origin: center;
}

.header__toggle-line:nth-of-type(1) {
  top: 30px;
}

.header__toggle-line:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.header__toggle-line:nth-of-type(3) {
  bottom: 30px;
}

.header.is-active .header__toggle-line:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.header.is-active .header__toggle-line:nth-of-type(2) {
  opacity: 0;
}

.header.is-active .header__toggle-line:nth-of-type(3) {
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* Languageボタン
=========================================== */
.lang-switcher {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 6px;
}

.lang-btn {
  width: 100%;
  padding: 2px 0;
  color: #fff;
  cursor: pointer;
  position: relative;
}

.lang-btn::after {
  content: "\f078";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  font-size: 16px;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.lang-btn span {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding-left: 22px;
  position: relative;
}

.lang-btn span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url('/img/common/icon/icon_language.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.lang-menu a {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 2px 0;
}

/* 初期状態 */
.lang-menu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.3s ease,
    opacity 0.3s ease;
}

/* 開いた状態 */
.lang-switcher.is-open .lang-menu {
  max-height: 200px;
  opacity: 1;
}

.lang-switcher.is-open .lang-btn::after {
  transform: translateY(-50%) rotate(-180deg);
  transform-origin: center;
}

/* ===========================================
フッター
=========================================== */
.footer {
  width: calc(100% - 230px);
  margin-left: 230px;
  font-family: "Noto Sans JP", sans-serif;
}

.footer .container {
  position: relative;
  padding-top: 40px;
}

.footer .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background-color: #D2D2D2;
}

.footer__wrapper {
  text-align: center;
}

.footer__textbox {
  margin-bottom: 30px;
}

.footer a {
  display: inline-block;
}

.footer__logo {
  width: 226px;
  height: auto;
  aspect-ratio: 226 / 77;
  margin-bottom: 20px;
}

.footer__address {
  font-size: 16px;
  font-weight: 400;
  line-height: calc(19 / 16);
  margin-bottom: 5px;
}

.footer__tel {
  font-size: 16px;
  font-weight: 400;
  line-height: calc(19 / 16);
  padding-left: 20px;
  position: relative;
}

.footer__tel::before {
  content: "\f095";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  top: 2px;
  left: 0;
  transform: rotate(12deg);
  font-size: 16px;
  pointer-events: none;
}

.footer__sns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 350px;
  width: 100%;
  margin: 0 auto 20px;
}

.footer__sns a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 110px;
  width: 100%;
}

.footer__sns a img {
  width: 26px;
  height: auto;
  aspect-ratio: 1 / 1;
  margin-bottom: 4px;
}

.footer__sns span {
  font-size: 15px;
  font-weight: 400;
  line-height: calc(18 / 15);
  white-space: nowrap;
}

.copyright {
  font-size: 10px;
  font-weight: 400;
  line-height: calc(12 / 10);
  color: #A0A0A0;
}

/* ===========================================
トップページ
=========================================== */
/* トップページ-メインビジュアル
=========================================== */
.mainvisual__top img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1111 / 545;
}

/* トップページ-ページナビ
=========================================== */
.page-nav .container {
  padding-bottom: 40px;
}

.page-nav__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.page-nav__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-nav__title {
  font-size: 18px;
  font-weight: 600;
  line-height: calc(36 / 18);
}

.page-nav__detail {
  font-size: 14px;
  font-weight: 600;
  line-height: calc(28 / 14);
  color: #004664;
  padding-right: 18.5px;
  position: relative;
}

.page-nav__detail::before,
.page-nav__detail::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 6px;
  display: block;
  width: 6px;
  height: 1px;
  background: #004664;
  transform: rotate(50deg);
  transform-origin:calc(100% - 0.5px) 50%;
  pointer-events: none;
}
.page-nav__detail::after{
  transform: rotate(-50deg);
}

/* トップページ-バナー
=========================================== */
.banner__miuraanjin .container {
  position: relative;
  padding-top: 40px;
  padding-bottom: 80px;
}

.banner__miuraanjin .container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background-color: #D2D2D2;
}

.banner__miuraanjin a {
  display: block;
  max-width: 72.2%;
  margin: 0 auto;
}

/* トップページ-交通アクセス
=========================================== */
.access .container {
  padding-top: 80px;
  padding-bottom: 120px;
}

.access__wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.access__wrapper>p {
  margin-bottom: 30px;
}

.access__inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 72px;
}

.access__transportation {
  width: 50%;
  padding-left: 20px;
  border-left: 1px solid #D9D9D9;
}

.access__transportation ul li {
  position: relative;
  padding-left: 22px;
}

.access__transportation ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #006995;
}

.access__transportation p {
  margin-bottom: 0;
}

.map {
  width: 100%;
  height: auto;
  aspect-ratio: 900 / 380;
}

.map iframe {
  width: 100%;
  height: 100%;
}

/* ===========================================
下層ページ
=========================================== */
/* 下層ページ-共通
=========================================== */
/* 下層ページ-メインビジュアル
------------------------------------------- */
.mainvisual {
  position: relative;
}

.mainvisual h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  font-size: 40px;
  font-weight: 600;
  line-height: calc(80 / 40);
  color: #ffffff;
  text-align: center;
}

.mainvisual img {
  width: 100%;
  height: auto;
  aspect-ratio: 1111 / 370;
}

/* 下層ページ-リンクエリア
------------------------------------------- */
.link-area .container {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 60px;
}

.link-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.link-item {
  border: 1px solid #BFBFBF;
}

.link-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 18.5px 0;
  font-size: 20px;
  font-weight: 700;
  line-height: calc(24 / 20);
}

/* 下層ページ-テキスト
------------------------------------------- */
p {
  margin-bottom: 30px;
}

/* 下層ページ-画像エリア（2・3カラム）
------------------------------------------- */
.imgbox__figure img {
  width: 100%;
  height: auto;
}

.imgbox__caption,
.imgbox__caption--sm {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: calc(34 / 13);
}

/* 2カラム */
.imgbox.cols-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* 3カラム */
.imgbox.cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* 下層ページ-FAQアコーディオン
------------------------------------------- */
.faq-accordion__item {
  padding: 12px 0;
  border-bottom: 1px solid #D2D2D2;
}

.faq-accordion__item:last-of-type {
  border-bottom: none;
}

.faq-accordion__question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 12px 0;
  /* cursor: pointer; */
}

.faq-accordion__icon {
  position: relative;
  display: block;
  width: 30px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1;
  z-index: 1;
}

.faq-accordion__icon.icon__q {
  transform: translateY(-3px);
  margin-top: 3px;
}

.faq-accordion__icon.icon__a {
  transform: translateY(-2px);
  margin-top: 7px;
}

.faq-accordion__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.faq-accordion__icon.icon__q::before {
  transform: translate(-50%, -50%) translateY(3px);
  background-color: #004664;
}

.faq-accordion__icon.icon__a::before {
  transform: translate(-50%, -50%) translateY(2px);
  background-color: #006995;
}

.faq-accordion__content {
  width: calc(100% - 40px);
}

.faq-accordion__content p {
  margin-bottom: 0;
}

.faq-accordion__content p+p,
.faq-accordion__content p+img,
.faq-accordion__content p+.imgbox__figure,
.faq-accordion__content p+div {
  margin-top: 10px;
}

.faq-accordion__question p {
  font-size: 20px;
  font-weight: 700;
  line-height: calc(24 / 20);
}

.faq-accordion__answer {
  /* display: none; */
  padding: 0 0 12px;
}

.faq-accordion__answer.is-open {
  display: block;
}

.faq-accordion__answer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.faq-accordion__answer p {
  font-size: 16px;
  font-weight: 500;
  line-height: calc(30 / 16);
}

/* 浄土寺について
=========================================== */
/* 浄土寺について-ご挨拶
------------------------------------------- */
.greeting .container {
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
}

.greeting .container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background-color: #D2D2D2;
}

.greeting img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.greeting__box {
  background-color: #F1F1F1;
  padding: 20px;
}

.greeting__box+.greeting__box {
  margin-top: 30px;
}

.greeting__box p {
  margin-bottom: 0;
}

.greeting__name {
  font-size: 16px;
  font-weight: 700;
  line-height: calc(30 / 16);
  margin-bottom: 10px;
}

.greeting__desc {
  font-size: 14px;
  font-weight: 500;
  line-height: calc(30 / 14);
}

.greeting__desc a {
  text-decoration: underline;
}

/* 浄土寺について-浄土寺の歴史
------------------------------------------- */
.history>.container {
  padding-top: 80px;
  position: relative;
}

.history>.container::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
  width: 100%;
  height: 1px;
  background-color: #D2D2D2;
  pointer-events: none;
}

/* 浄土寺について-アメリカから返還された梵鐘
------------------------------------------- */
.bell .container {
  padding-bottom: 120px;
}

.bell .imgbox.cols-2 {
  margin-bottom: 30px;
}

/* 浄土寺について-昭和36年の梵鐘返還式
------------------------------------------- */
.return p {
  margin-bottom: 20px;
}

/* 三浦按針と浄土寺
=========================================== */
/* 三浦按針と浄土寺-三浦按針 菩提寺として
------------------------------------------- */
.bodaiji .container {
  position: relative;
}

.bodaiji .container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background-color: #D2D2D2;
}

/* 三浦按針と浄土寺-三浦按針とは
------------------------------------------- */
.miuraanjin .container {
  position: relative;
}

.miuraanjin .container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background-color: #D2D2D2;
}

/* 三浦按針と浄土寺-逸見・安針塚について
------------------------------------------- */
.anjinzuka .container {
  padding-bottom: 30px;
  position: relative;
}

.anjinzuka .container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background-color: #D2D2D2;
}

.gallery {
  display: grid;
  grid-template-columns: 49.2% 47.5%;
  grid-template-rows: auto 441px;
  gap: 10px 3.3%;
  margin-bottom: 60px;
}

.gallery__figure--large {
  grid-column: 1 / -1;
}

.gallery__figure--large img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  aspect-ratio: 600 / 400;
}

.gallery__figure--left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  aspect-ratio: 295 / 441;
}

.gallery__figure--right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  aspect-ratio: 285 / 442;
}

.gallery__caption {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: calc(34 / 13);
}

/* 三浦按針と浄土寺-三浦按針 ゆかりの品
------------------------------------------- */
.related-items>.container>.container--sm {
  padding-bottom: 50px;
}

.notes {
  font-size: 14px;
  font-weight: 700;
  line-height: calc(30 / 14);
  background: #F1F1F1;
  padding: 0 10px;
}

.related-item {
  margin-bottom: 60px;
}

.related-item__kannonzo .imgbox__caption {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 600px;
  width: 100%;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 500;
  line-height: calc(17 / 14);
}

/* 浄土寺護持会
=========================================== */
.protection .container {
  padding-bottom: 90px;
}

.protection .imgbox {
  margin-bottom: 30px;
}

/* 永代供養墓
=========================================== */
/* 永代供養墓-「倶会一処」のやすらぎ
------------------------------------------- */
.tomb-desc .container {
  position: relative;
  padding-bottom: 100px;
}

.tomb-desc .container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background-color: #D2D2D2;
}

/* 永代供養墓-鎌倉時代より八百年続く歴史と共に
------------------------------------------- */
.tomb-point .container {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

.tomb-point .container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background-color: #D2D2D2;
}

.tomb-point__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tomb-point__item:nth-of-type(2) {
  flex-direction: row-reverse;
}

.tomb-point__item+.tomb-point__item {
  margin-top: 40px;
}

.tomb-point__img {
  width: 49%;
}

.tomb-point__text {
  width: 48%;
}

.tomb-point__text p {
  margin-bottom: 0;
}

/* 永代供養墓-ペット専用墓「動物廟」ご案内
------------------------------------------- */
.tomb-pet .container {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

.tomb-pet .container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background-color: #D2D2D2;
}

/* 永代供養墓-在来（一般）墓所のご案内
------------------------------------------- */
.tomb-individual .container {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

.tomb-individual .container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background-color: #D2D2D2;
}

/* 永代供養墓-よくあるご質問
------------------------------------------- */
.tomb-faq .container {
  padding-top: 100px;
  padding-bottom: 96px;
}

.section-title__tomb-faq {
  margin-bottom: 6px;
}

/* よくあるご質問
=========================================== */
.faq .container {
  padding-top: 46px;
  padding-bottom: 106px;
}

.faq .imgbox__caption {
  font-size: 15px;
  line-height: calc(30 / 15);
}

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

  /* ===========================================
共通
=========================================== */
  html {
    scroll-padding-top: 88px;
  }

  main {
    width: 100%;
    margin-top: 88px;
    margin-left: 0;
  }

  .container {
    padding: 50px 16px;
  }

  /* ===========================================
ヘッダー
=========================================== */
  .header {
    width: 100%;
    height: 88px;
    padding: 0 92px 0 15px;
    overflow-y: visible;
  }

  .header__cover {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .header.is-active .header__cover {
    opacity: 1;
    pointer-events: auto;
  }

  .header::before {
    top: 0;
    left: 0;
    transform: translateX(0);
    width: 153px;
    height: auto;
    aspect-ratio: calc(153 / 88);
    background: url(/img/common/logo/logo_crest_sp.png) no-repeat;
    background-size: contain;
  }

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 90;
  }

  .header__nav.is-active {
    transform: translateX(0);
  }

  .header__nav-inner {
    width: 294px;
    height: 100%;
    margin-left: auto;
    padding: 75px 15px;
    background-color: #004664;
    overflow-y: auto;
  }

  .header__logo {
    display: flex;
    align-items: center;
    height: 88px;
    text-align: left;
    margin-bottom: 0;
  }

  .header__logo a {
    display: flex;
    align-items: center;
  }

  .header__logo img {
    display: block;
    width: 273px;
    height: auto;
    aspect-ratio: 273 / 45;
  }

  .header__list {
    margin-bottom: 35px;
  }

  .header__item {
    font-size: 25px;
    line-height: calc(29 / 25);
  }

  .header__btn {
    margin-bottom: 40px;
  }

  .header__btn a {
    padding: 8px;
    border-radius: 8.6px;
    font-size: 21.5px;
  }

  .header__btn a+a {
    margin-top: 15px;
  }

  .header__tel {
    margin-bottom: 40px;
  }

  .header__tel a {
    font-size: 28.6px;
    line-height: calc(35 / 28.6);
    padding-left: 30px;
  }

  .header__tel a::before {
    font-size: 24px;
  }

  .header__tel a span {
    font-size: 20px;
    line-height: calc(24 / 20);
    margin-top: 5px;
  }

  .header__sns {
    margin-bottom: 40px;
  }

  .header__sns a {
    padding: 0 25px;
  }

  .header__sns .fa-brands {
    font-size: 38px;
  }

  /* ハンバーガーメニュー
------------------------------------------- */
  .header__toggle {
    display: inline-block;
    transition: all 0.3s;
  }

  .header.is-active .header__toggle {
    background-color: #004664;
  }

  /* Languageボタン
=========================================== */
  .lang-switcher {
    border-radius: 8.6px;
  }

  .lang-btn {
    padding: 3px 0;
  }

  .lang-btn::after {
    right: 11px;
    font-size: 23px;
  }

  .lang-btn span {
    font-size: 23px;
    padding-left: 30px;
  }

  .lang-btn span::before {
    width: 23px;
    height: 23px;
  }

  .lang-menu a {
    font-size: 23px;
    padding: 3px 0;
  }

  /* ===========================================
フッター
=========================================== */
  .footer {
    width: 100%;
    margin-left: 0;
  }

  .footer .container {
    padding-bottom: 60px;
  }
}

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

  /* ===========================================
共通
=========================================== */
  .pc__only {
    display: none;
  }

  .sp__only {
    display: inline-block;
  }

  /* タイトル
=========================================== */
  .content-title--center {
    margin-bottom: 50px;
  }

  /* ===========================================
トップページ
=========================================== */
  /* トップページ-メインビジュアル
=========================================== */
  .mainvisual__top img {
    aspect-ratio: 393 / 328;
  }

  /* トップページ-ページナビ
=========================================== */
  .page-nav .container {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .page-nav__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .page-nav__title {
    font-size: 15px;
    line-height: calc(30 / 15);
  }

  .page-nav__detail {
    font-size: 12px;
    line-height: calc(23 / 12);
    padding-right: 15.3px;
  }

  .page-nav__detail::before,
  .page-nav__detail::after {
    right: 5px;
    width: 5px;
    pointer-events: none;
  }

  /* トップページ-バナー
=========================================== */
  .banner__miuraanjin .container {
    padding-top: 30px;
    padding-bottom: 60px;
  }

  .banner__miuraanjin a {
    max-width: 100%;
  }

  /* トップページ-交通アクセス
=========================================== */
  .access .container {
    padding-top: 60px;
    padding-bottom: 100px;
  }

  .access__inner {
    flex-direction: column;
    margin-bottom: 50px;
  }

  .access__transportation {
    width: 100%;
  }

  .access__transportation+.access__transportation {
    margin-top: 30px;
  }

  .map {
    aspect-ratio: 360 / 213;
  }

  /* ===========================================
下層ページ
=========================================== */
  /* 下層ページ-共通
=========================================== */
  /* 下層ページ-メインビジュアル
------------------------------------------- */
  .mainvisual h1 {
    font-size: 30px;
    line-height: calc(60 / 30);
  }

  .mainvisual img {
    aspect-ratio: 393 / 328;
  }

  /* 下層ページ-リンクエリア
------------------------------------------- */
  .link-area .container {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 30px;
  }

  .link-list {
    gap: 6px;
  }

  .link-item a {
    padding: 12px 0;
    font-size: 16px;
    line-height: calc(19 /16);
  }

  /* 下層ページ-テキスト
------------------------------------------- */
  /* 下層ページ-画像エリア（2・3カラム）
------------------------------------------- */
  .imgbox__caption--sm {
    font-size: 11px;
    line-height: calc(34 / 11);
  }

  /* 2カラム */
  .imgbox.cols-2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }

  /* 3カラム */
  .imgbox.cols-3 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  /* 下層ページ-FAQアコーディオン
------------------------------------------- */


  /* 浄土寺について
=========================================== */
  /* 浄土寺について-ご挨拶
------------------------------------------- */
  .greeting .container {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  /* 浄土寺について-浄土寺の歴史
------------------------------------------- */
  .history>.container {
    padding-top: 50px;
  }

  /* 浄土寺について-アメリカから返還された梵鐘
------------------------------------------- */
  .bell .container {
    padding-bottom: 90px;
  }

  .bell .imgbox.cols-2 {
    margin-bottom: 50px;
  }

  /* 昭和３６年の梵鐘返還式 */
  .return p {
    margin-bottom: 50px;
  }

  /* 三浦按針と浄土寺
=========================================== */
  /* 三浦按針と浄土寺-三浦按針 菩提寺として
------------------------------------------- */

  /* 三浦按針と浄土寺-三浦按針とは
------------------------------------------- */

  /* 三浦按針と浄土寺-逸見・安針塚について
------------------------------------------- */
  .anjinzuka .container {
    padding-bottom: 20px;
  }

  .gallery {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    grid-template-rows: none;
    margin-bottom: 50px;
  }

  .gallery__figure--large {
    grid-column: 1 / -1;
  }

  .gallery__figure--large img {
    aspect-ratio: 360 / 240;
  }

  .gallery__figure--left img {
    height: auto;
    aspect-ratio: 360 / 538;
  }

  .gallery__figure--right img {
    height: auto;
    aspect-ratio: 360 / 500;
  }

  /* 三浦按針と浄土寺-三浦按針 ゆかりの品
------------------------------------------- */
  .related-items .container {
    padding-bottom: 90px;
  }

  .notes {
    font-size: 13px;
    padding: 0 5px;
  }

  .related-items .related-item:last-of-type {
    margin-bottom: 0;
  }

  .related-item .imgbox.cols-2 {
    gap: 30px;
  }

  /* 浄土寺護持会
=========================================== */
  .protection .container {
    padding-top: 30px;
    padding-bottom: 60px;
  }

  /* 永代供養墓
=========================================== */
  /* 永代供養墓-「倶会一処」のやすらぎ
------------------------------------------- */
  .tomb-desc .container {
    padding-bottom: 50px;
  }
  /* 永代供養墓-鎌倉時代より八百年続く歴史と共に
------------------------------------------- */
  .tomb-point .container {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .tomb-point__item,
  .tomb-point .tomb-point__item:nth-of-type(2) {
    flex-direction: column;
  }

  .tomb-point__item+.tomb-point__item {
    margin-top: 50px;
  }

  .tomb-point__img {
    width: 100%;
    margin-bottom: 30px;
  }

  .tomb-point__text {
    width: 100%;
  }

  /* 永代供養墓-ペット専用墓「動物廟」ご案内
------------------------------------------- */
  .tomb-pet .container {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .tomb-pet .section-title {
    font-size: 25px;
    letter-spacing: -0.05em;
  }

  /* 永代供養墓-在来（一般）墓所のご案内
------------------------------------------- */
  .tomb-individual .container {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  /* 永代供養墓-よくあるご質問
------------------------------------------- */
  .tomb-faq .container {
    padding-top: 50px;
    padding-bottom: 66px;
  }

  /* よくあるご質問
=========================================== */
  .faq .container {
    padding-top: 6px;
    padding-bottom: 66px;
  }
}