@charset "UTF-8";
@import url(all.css);
/*rootの変数宣言*/
:root {
  /*==============================
      カラー    
  ==============================*/
  --color-font: #161a14;
  --color-white: #ffffff;
  --color-yellow:#feee00;
  --color-red: #e70012;
  --color-beige: #fffbee;
  --color-gray:#cbcbcb;
  /*カレントカラー*/
  --color-current: #e70012;
  /*テキストリンクカラー*/
  --color-textlink:#e70012;
  /*必須ボタンカラー*/
  --color-required: #e70012;
  /*任意ボタンカラー*/
  --color-optional: #e70012;
  /*ラジオボタンカラー*/
  --color-radio: #e70012;
  /*チェックボタンカラー*/
  --color-check: #e70012;
  /*==============================
      フォントファミリー
  ==============================*/
  /*タイトル*/
  --font-family-heading: "Zen Maru Gothic", sans-serif;
  /*本文*/
  --font-family-body: "Zen Kaku Gothic New", sans-serif;
  /*==============================
      フォントサイズ
  ==============================*/
  /*基準のフォントサイズ*/
  --font-size-body: 1.6rem;
  /*==============================
      行間
  ==============================*/
  /*基準の行間*/
  --line-height-base: 1.5625;
  /*==============================
      文字間
  ==============================*/
  /*基準の文字間*/
  --letter-spacing-base: 0.1em;
}

/*rootの変数宣言*/
:root {
  /*==============================
      カラー    
  ==============================*/
  --color-font: #161a14;
  --color-white: #ffffff;
  --color-yellow:#feee00;
  --color-red: #e70012;
  --color-beige: #fffbee;
  --color-gray:#cbcbcb;
  /*カレントカラー*/
  --color-current: #e70012;
  /*テキストリンクカラー*/
  --color-textlink:#e70012;
  /*必須ボタンカラー*/
  --color-required: #e70012;
  /*任意ボタンカラー*/
  --color-optional: #e70012;
  /*ラジオボタンカラー*/
  --color-radio: #e70012;
  /*チェックボタンカラー*/
  --color-check: #e70012;
  /*==============================
      フォントファミリー
  ==============================*/
  /*タイトル*/
  --font-family-heading: "Zen Maru Gothic", sans-serif;
  /*本文*/
  --font-family-body: "Zen Kaku Gothic New", sans-serif;
  /*==============================
      フォントサイズ
  ==============================*/
  /*基準のフォントサイズ*/
  --font-size-body: 1.6rem;
  /*==============================
      行間
  ==============================*/
  /*基準の行間*/
  --line-height-base: 1.5625;
  /*==============================
      文字間
  ==============================*/
  /*基準の文字間*/
  --letter-spacing-base: 0.1em;
}

/*opacity含めたカラー指定あればここで定義*/
/*========================
    default
========================*/
html {
  font-size: 62.5%;
}

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

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

.wrapper {
  min-width: 1280px;
  max-width: 1920px;
  margin-inline: auto;
}

.container {
  /*ヘッダー追従の時はここにmax-width:1920px;,overflow-x:hidden;をかける*/
}

.com-inbox {
  width: 1080px;
}

/*パンくずリスト*/
.breadcrumb {
  padding-block: 3.2rem;
}
.breadcrumb__list {
  width: 1080px;
  margin-inline: auto;
  display: flex;
  justify-content: flex-end;
  gap: 0.25em;
}
.breadcrumb__item {
  display: flex;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1;
}
.breadcrumb__item::after {
  content: "｜";
  margin-left: 0.25em;
  pointer-events: none;
}
.breadcrumb__item:last-child {
  display: block;
  max-width: 23rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumb__item:last-child::after {
  display: none;
}

/*==============================
    各種ホバー処理
==============================*/
/*ロゴ*/
.logo a:hover {
  transition: opacity 0.3s;
}
.logo a:hover:hover {
  opacity: 0.5;
}

/*パンくずリスト*/
.breadcrumb__item a {
  transition: all 0.3s;
}
.breadcrumb__item a:hover {
  transition: opacity 0.3s;
}
.breadcrumb__item a:hover:hover {
  opacity: 0.5;
}

/*ヘッダーナビ*/
.header .util__item:has(.x) a {
  transition: all 0.3s;
}
.header .util__item:has(.x) a:hover {
  opacity: 0.5;
}

/*ナビゲーション*/
.nav-menu__link {
  transition: all 0.3s;
}
.nav-menu__link:hover {
  opacity: 0.5;
}

/*ボタン*/
.com-btn,
.file-btn,
.mail-btn {
  transition: all 0.3s;
}
.com-btn:hover,
.file-btn:hover,
.mail-btn:hover {
  box-shadow: 0 0 0 0 #85000b;
  transform: translateY(8px);
}

/*下層リンク*/
.top-link__item {
  transition: all 0.3s;
}
.top-link__item:hover {
  box-shadow: 0 0 0 0 #85000b;
  transform: translate(3rem, 3rem);
}

/*テキストリンク*/
.com-textlink {
  transition: all 0.3s;
}
.com-textlink:hover {
  transition: opacity 0.3s;
}
.com-textlink:hover:hover {
  opacity: 0.5;
}

/*お知らせ詳細*/
.paginated__link {
  transition: all 0.3s;
}
.paginated__link:hover {
  opacity: 0.5;
}

/*お問い合わせ完了（トップへ戻る）*/
.complete__btn {
  transition: all 0.3s;
}
.complete__btn:hover {
  transition: opacity 0.3s;
}
.complete__btn:hover:hover {
  opacity: 0.5;
}

/*追従ボタン*/
.follow_btn a {
  transition: all 0.3s;
}
.follow_btn a span {
  transition: all 0.3s;
}
.follow_btn a::after {
  transition: all 0.3s;
}
.follow_btn a:hover span {
  opacity: 0.5;
}
.follow_btn a:hover::after {
  transform: translateY(8px);
  box-shadow: 0 0 0 0 #85000b;
}

/*フッターナビ*/
.footer-nav__item a {
  transition: all 0.3s;
}
.footer-nav__item a:hover {
  opacity: 0.5;
}
.footer-sub__item a {
  transition: all 0.3s;
}
.footer-sub__item a:hover {
  opacity: 0.5;
}
.footer .x {
  transition: all 0.3s;
}
.footer .x:hover {
  opacity: 0.5;
}
.footer small a:hover {
  opacity: 0.5;
}

/*==============================
    ヘッダー
==============================*/
.header {
  padding: 2rem 3rem;
}
.header .util__list {
  display: flex;
  gap: 3rem;
  align-items: center;
}
.header .util__item a.x {
  width: 32px;
}

/*==============================
    ナビゲーション
==============================*/
.nav-menu__list {
  display: flex;
  justify-content: center;
}
.nav-menu__item {
  position: relative;
  width: 18rem;
  height: 10rem;
}
.nav-menu__item:last-child::after {
  display: none;
}
.nav-menu__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.nav-menu__item::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  flex-shrink: 0;
  width: 1rem;
  aspect-ratio: 1;
  background-color: var(--color-yellow);
  border-radius: 100vh;
}
.nav-menu__item .txt {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.389;
  letter-spacing: 0.05em;
}

.nav-link--top {
  gap: 0.7rem !important;
}
.nav-link--about {
  padding-top: 0.8rem;
  gap: 1.3rem !important;
}
.nav-link--about .txt {
  font-size: 1.4rem;
  line-height: 1.286;
}
.nav-link--service_price {
  padding-top: 0.7rem;
}
.nav-link--guide {
  padding-top: 0.3rem;
}
.nav-link--info {
  padding-top: 0.7rem;
  gap: 1.8rem !important;
}

/*==============================
    メインビジュアル
==============================*/
.mv {
  padding-block: 2rem 3rem;
}
.mv__list {
  position: absolute;
  left: clamp(27px, 2.08vw, 40px);
  top: clamp(-122px, -6.354vw, -81px);
  gap: clamp(18px, 1.41vw, 27px);
}
.mv__item {
  width: clamp(133px, 10.42vw, 200px);
}
.mv__item > span {
  font-size: clamp(13px, 1.04vw, 20px);
}
.mv__title {
  border-radius: 0 3rem 0 0;
  font-size: clamp(25px, 1.98vw, 38px);
}
.mv__title .sub {
  margin-bottom: clamp(17px, 1.3vw, 25px);
}
.mv__title-wrap {
  padding: clamp(67px, 5.21vw, 100px) clamp(40px, 3.13vw, 60px) clamp(20px, 1.56vw, 30px) clamp(20px, 1.56vw, 30px);
}
.mv__container {
  width: clamp(1133px, 88.54vw, 1700px);
  aspect-ratio: 1700/684;
}

/*==============================
    サブビジュアル
==============================*/
.sv__container {
  width: clamp(1133px, 88.54vw, 1700px);
  aspect-ratio: 1700/400;
}
.sv__title {
  font-size: clamp(25px, 1.98vw, 38px);
  padding-block: clamp(28px, 2.19vw, 42px);
  min-width: clamp(522px, 40.78vw, 783px);
  border-radius: 0 3rem 0 0;
  line-height: 1;
}

/*==============================
    共通タイトル
==============================*/
/*==============================
    共通ボタン
==============================*/
.com-btn {
  width: 35rem;
  height: 6rem;
}

.mail-btn {
  width: 35rem;
  height: 7rem;
}

.file-btn {
  height: 7rem;
}

/*==============================
    共通テーブル
==============================*/
/*==============================
    TOP
==============================*/
.top-concept {
  padding-block: 9rem 10rem;
}
.top-concept .com-title01 .ja {
  margin-right: -1em;
}
.top-concept__list {
  margin-right: -10rem;
}

.top-features {
  padding-block: 5rem 10rem;
}
.top-features__list {
  padding: 7rem 4rem;
  background-color: var(--color-white);
  border-radius: 3rem;
}
.top-features .com-btn {
  margin-inline: auto;
  margin-top: -3rem;
}

.top-service {
  padding-block: 10rem;
}
.top-service__image {
  flex-shrink: 0;
  width: 60rem;
  aspect-ratio: 600/500;
  margin-left: -10rem;
}

.top-link {
  padding-block: 5rem;
}
.top-link .com-inbox {
  width: 1280px;
}
.top-link__list {
  justify-content: space-between;
}
.top-link__item {
  width: 60rem;
}
.top-link__title {
  padding-left: 15.1rem;
}

.top-news {
  padding-block: 10rem;
}
.top-news .com-inbox {
  position: relative;
}
.top-news .com-btn {
  position: absolute;
  top: 2.2rem;
  right: 0;
  width: 25rem;
}

/*==============================
    レコードブック横須賀中央について
==============================*/
.about-worries {
  padding-block: 4rem;
}
.about-worries .com-inbox {
  justify-content: space-between;
  align-items: flex-start;
}

.about-section {
  padding-block: 5rem 9rem;
}
.about-section__image {
  flex-shrink: 0;
  width: 50rem;
}
.about-section__text {
  padding-top: 3rem;
}

.about-features {
  padding-block: 9rem;
}
.about-features__image {
  width: 35rem;
  flex-shrink: 0;
}

/*==============================
    サービス・料金
==============================*/
.service-section {
  padding-block: 9rem;
}
.service-section__item {
  align-items: flex-start;
}
.service-section__image {
  flex-shrink: 0;
  width: 40rem;
  aspect-ratio: 1;
}

.service-flow {
  padding-block: 5rem 12rem;
}
.service-flow .com-inbox {
  display: flex;
  justify-content: space-between;
}
.service-flow__box {
  flex-shrink: 0;
}
.service-flow__list {
  width: 67rem;
}
.service-flow__image {
  flex-shrink: 0;
  width: 20rem;
  border-radius: 3rem;
  overflow: hidden;
}
.service-flow__text {
  padding-top: 1rem;
}
.service-flow__text p {
  margin-right: -1em;
}

.service-fee {
  padding-block: 9rem;
}
.service-fee__box {
  width: 52rem;
  flex-shrink: 0;
}
.service-fee__box:not(.service-fee__box:has(.service-fee__subtitle)) .service-fee__category {
  margin-top: 4.9986rem;
}
.service-fee__box:not(.service-fee__box:has(.service-fee__subtitle, .service-fee__category)) dl:first-of-type {
  margin-top: 4.9986rem;
}

/*==============================
    ご利用案内
==============================*/
.guide-flow {
  padding-block: 9rem;
}
.guide-flow .com-inbox {
  display: flex;
  justify-content: space-between;
}
.guide-flow__box {
  flex-shrink: 0;
}
.guide-flow__list {
  width: 67rem;
}
.guide-flow__image {
  flex-shrink: 0;
  width: 20rem;
  border-radius: 3rem;
  overflow: hidden;
}
.guide-flow__text {
  padding-top: 1rem;
}
.guide-flow__text p {
  margin-right: -1em;
}

.guide-qa {
  padding-block: 5rem 9rem;
}

.guide-document {
  padding-block: 9rem;
}
.guide-document__box {
  width: 52rem;
}

/*==============================
    スタッフ紹介
==============================*/
.staff-section__item {
  align-items: flex-start;
}
.staff-section__image {
  flex-shrink: 0;
  width: 30rem;
  aspect-ratio: 300/420;
}
.staff-section__text {
  width: 100%;
}

/*==============================
    施設案内
==============================*/
.info-section {
  padding-block: 9rem;
}
.info-section__wrap {
  justify-content: space-between;
  align-items: flex-start;
}
.info-section .com-table__wrap {
  width: 74rem;
  flex-shrink: 0;
}
.info-section .com-table th {
  width: 10rem;
}
.info-section .com-table td .replace {
  margin-left: 2rem;
}
.info-section .map {
  height: 40rem;
}

.info-gallery {
  padding-block: 9rem;
}

/*==============================
    送迎エリアについて
==============================*/
.com-area {
  position: relative;
  z-index: 0;
  padding-block: 10rem;
}
.com-area::before {
  position: absolute;
  border-radius: 3rem 0 0 3rem;
  z-index: -1;
  content: "";
  display: block;
  aspect-ratio: 1350/738;
  height: 100%;
  right: 0;
  top: 0;
  background: url(../img/top/top_area-img.png) top left/contain no-repeat;
}
.com-area .com-title01 {
  gap: 2rem;
}
.com-area__text {
  position: relative;
  z-index: 0;
  padding: 5rem 11rem 5rem 0;
  width: 60rem;
}
.com-area__text::before {
  position: absolute;
  right: 0;
  top: 0;
  width: 1020px;
  height: 100%;
  border-radius: 0 3rem 3rem 0;
  z-index: -1;
  content: "";
  background: url(../img/top/top_area-bg-deco.png) top left/auto 100% no-repeat, var(--color-white);
}

/*==============================
    無料見学受付中！
==============================*/
.com-contact .com-title01 {
  gap: 2rem;
  margin-bottom: 3rem;
}
.com-contact .com-inbox {
  width: clamp(1200px, 66.67vw, 1280px);
  padding: 5rem clamp(67px, 5.21vw, 100px);
}
.com-contact__text {
  width: 49rem;
  flex-shrink: 0;
}
.com-contact__box {
  padding: 4rem 7rem;
  flex-shrink: 0;
  width: 49rem;
}
.com-contact__box .com-tel {
  font-size: 4.8rem;
}

/*==============================
    お知らせ一覧
==============================*/
.news {
  padding-block: 10rem;
}

/*お知らせ共通部分*/
.com-news__item a:hover {
  transition: opacity 0.3s;
}
.com-news__item a:hover:hover {
  opacity: 0.5;
}

/*タグリスト(PC)
-----------------------------*/
.tag-select {
  text-align: right;
  margin-bottom: 5rem;
}
.tag-select__box {
  min-width: 24rem;
}
.tag-select__box::after {
  right: 1.8rem;
}
.tag-select__dropdown {
  line-height: 1;
  padding: 12px 48px 12px 12px;
  background-color: var(--color-white);
}

/*==============================
    お知らせ詳細
==============================*/
.news-detail {
  padding-block: 10rem;
}
.news-detail__box {
  padding: 4rem 4rem 6rem 4rem;
}

/*==============================
  お問い合わせ
==============================*/
.contact {
  padding-block: 10rem;
}
.contact .com-table {
  margin-bottom: 3rem;
  table-layout: fixed;
}
.contact .com-table th {
  width: 35%;
}
.contact .com-btn {
  margin-inline: auto;
  margin-top: 5rem;
  width: 35rem;
  height: 6rem;
}
.contact .contact-submits-wrap {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
.contact .contact-submits-wrap .com-btn {
  margin-inline: 0;
}

/*==============================
  お問い合わせ完了
==============================*/
.complete {
  padding-block: 10rem;
}
.complete__box {
  text-align: center;
}
.complete__btn {
  margin-top: 5rem;
}
.complete__btn:hover {
  opacity: 0.5;
}

/*==============================
　プライバシーポリシー
==============================*/
.privacy {
  padding-block: 10rem;
}
.privacy__box {
  margin-bottom: 5rem;
}
.privacy__box:last-child {
  margin-bottom: 0;
}

/*==============================
    サイトマップ
==============================*/
.site {
  padding-block: 10rem;
}
.site .com-inbox {
  width: 70rem;
}
.site__list {
  display: flex;
  flex-direction: column;
}
.site__item {
  height: 7.5rem;
}
.site__item a {
  padding: 1rem;
}
.site__item a::after {
  width: 1rem;
  transform: rotate(-45deg);
}
.site__item a:hover {
  transition: all 0.3s;
  opacity: 0.5;
}
.site__item a:hover::after {
  transform: rotate(-45deg) translate(5px, 5px);
  transition: all 0.3s;
}

/*==============================
    このページは存在しません
==============================*/
.e404 {
  padding-block: 10rem;
}
/*==============================
    フッター
==============================*/
.footer {
  position: relative;
  z-index: 0;
  background: linear-gradient(to bottom, var(--color-red) 0, var(--color-red) 15rem, var(--color-beige) 15rem, var(--color-beige) 100%);
}
.footer::before {
  position: absolute;
  content: "";
  z-index: -1;
  height: 100%;
  width: clamp(1150px, 88.54vw, 1700px);
  border-radius: 3rem 3rem 0 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-white);
}
.footer__box > p {
  line-height: 1.875;
}
.footer__logo {
  height: 6.9rem;
}
.footer__wrap {
  width: 1080px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-gray);
}
.footer__inner {
  width: 1080px;
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
}
.footer-nav__list {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 3rem 4rem;
  grid-auto-flow: column;
}
.footer-nav__item {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
.footer .nav-item--privacy, .footer .nav-item--site {
  display: none;
}
.footer-sub__wrap {
  width: 1080px;
  margin-inline: auto;
  display: flex;
  margin-top: 4rem;
  justify-content: space-between;
}
.footer-sub__list {
  display: flex;
}
.footer-sub__item {
  line-height: 1;
  font-size: 1.4rem;
  display: flex;
}
.footer-sub__item::after {
  content: "｜";
}
.footer-sub__item:last-child::after {
  display: none;
}