@charset "UTF-8";
/* --------------------------------

  CSS Reset

-------------------------------- */
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 400;
  font-style: normal;
}

article, aside, footer, header, nav, section, main, figure, figcaption {
  display: block;
}

:root {
  --font-family: "Noto Sans JP", sans-serif;
  --color-text: #373737;
  --color-link: #e9aca2;
  --color-hover: #e58e80;
  --color-base: #e9aca2;
  --color-main: #f4b4d0;
  --color-sub1: #fffafa;
  --color-sub2: #f1f1f1;
  --color-sub3: #ddd;
  --color-sub4: #f4d6d1;
  --color-sub5: #fbf0ee;
  --color-grd1: rgba(0, 0, 0, 0);
  --color-grd2: rgba(0, 0, 0, 1);
  --transition: 0.3s;
  --inner-width: 110rem;
  --inner-width2: 130rem;
  --inner-width3: 160rem;
  --box-shadow: 0 0 3px 0 rgba(0, 0, 0, .3);
  --box-shadow2: 0 0 9px 0 rgba(233, 172, 162, 1);
  --box-shadow3: 0 0 4px 0 rgba(255, 255, 255, 1), 0 0 4px 0 rgba(255, 255, 255, 1);
  --text-shadow: 0 0 3px rgba(0, 0, 0, .3);
  --text-shadow2: 0 0 9px rgba(233, 172, 162, 1);
  --text-shadow3: 0 0 4px rgba(255, 255, 255, 1), 0 0 4px rgba(255, 255, 255, 1);
}

* {
  scroll-behavior: auto !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

a {
  color: var(--color-link);
  border: none;
  text-decoration: none;
}

a:hover {
  color: var(--color-hover);
  text-decoration: underline;
}

img, video, iframe {
  max-width: 100%;
}

img {
  height: auto;
  border: none;
  vertical-align: top;
}

b, strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
blockquote::before,
blockquote::after,
q:before,
q:after,
q::before,
q::after {
  content: "";
  content: none;
}

a, area, button, [role=button], input:not([type=range]), label, select, summary, textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

button {
  border: none;
  background: none;
}
button:hover, button:active, button:focus {
  outline: none;
}
button:active, button:focus {
  box-shadow: none;
}

/* --------------------------------

  共通スタイル

-------------------------------- */
html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
@media screen and (min-width: 1100px), print {
  html {
    overflow-y: scroll;
  }
}

body {
  min-width: 32rem;
  line-height: 1.5;
  font-size: 1.4rem;
  font-family: var(--font-family);
  color: var(--color-text);
  text-align: left;
  letter-spacing: 0.05em;
  background-color: var(--color-sub1);
}
@media screen and (min-width: 768px), print {
  body {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1099.98px) {
  html.nav-open {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
  }
}

/* 共通セクション */
.c-section {
  line-height: 1.8;
}
.c-section__secondary {
  position: relative;
  max-width: var(--inner-width);
  margin-inline: auto;
  line-height: 1.8;
}
.c-section__secondary:not(:last-child) {
  margin-bottom: 10rem;
}
@media screen and (min-width: 1100px), print {
  .c-section__secondary:not(:last-child) {
    margin-bottom: 15rem;
  }
}

/* 共通ヘッダー */
.c-header {
  margin-bottom: 5rem;
}
/* 共通見出し */
.c-heading {
  max-width: var(--inner-width);
  margin-inline: auto;
  line-height: 1.3;
  font-size: 2rem;
  text-align: center;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px), print {
  .c-heading {
    display: flex;
    padding-top: 4rem;
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-heading {
    font-size: 3rem;
  }
}
.c-heading.__h2 {
  display: block;
  position: relative;
  margin-bottom: 5rem;
  padding: 0 0 2.2rem;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 2.6rem;
  color: var(--color-hover);
  letter-spacing: 0.05em;
}
.c-heading.__h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0.8rem;
  height: 0.8rem;
  background: var(--color-base);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: -2rem 0 0 var(--color-sub4), 2rem 0 0 var(--color-sub4);
}
@media screen and (min-width: 768px), print {
  .c-heading.__h2 {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-heading.__h2 {
    font-size: 4rem;
  }
}
.c-heading.__h3 {
  display: block;
  margin-bottom: 3rem;
  padding: 1.4rem 1rem 1.4rem 2rem;
  text-align: left;
  border-left: 1px solid var(--color-hover);
  background-color: var(--color-sub5);
}
.c-heading.__h3:not(:first-of-type) {
  margin-top: 8rem;
}
@media screen and (min-width: 768px), print {
  .c-heading.__h3 {
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-heading.__h3 {
    margin-bottom: 4rem;
    padding: 2rem 2rem 2rem 2.5rem;
    font-size: 3.2rem;
  }
}
.c-heading__en {
  display: block;
  line-height: 1em;
  font-size: 8rem;
}
@media screen and (min-width: 768px), print {
  .c-heading__en {
    margin: -3.4rem 2rem 0 0;
  }
}
@media screen and (min-width: 1100px), print {
  .c-heading__en {
    margin: -4rem 5rem 0 0;
    font-size: 10rem;
  }
}
@media screen and (min-width: 1280px), print {
  .c-heading__en {
    margin-left: -5rem;
  }
}
@media screen and (min-width: 1920px), print {
  .c-heading__en {
    margin-left: -10rem;
  }
}

/* リンクボタン */
.c-link-button {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 1.5rem 4rem 1.5rem 3rem;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  border-radius: 10em;
  background-color: var(--color-link);
  transition: color var(--transition), border-color var(--transition), background-color var(--transition);
}
.c-link-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  width: 0.6em;
  height: 0.6em;
  margin: auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

/* 共通リンクボタン（ホバー）*/
.c-link-button[href]:hover {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .c-link-button[href]:hover {
    color: #fff;
    border-color: var(--color-hover);
    background-color: var(--color-hover);
  }
}

/* コンテンツ画面中央寄せ */
.c-inner {
  position: relative;
  max-width: var(--inner-width);
  margin-inline: auto;
}
.c-inner::after {
  content: "";
  display: table;
  clear: both;
}
/* Google Maps */
.c-map-area {
  position: relative;
  height: 40rem;
}
.c-map-area iframe {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* 共通テーブル */
.c-table {
  display: block;
  margin: 0 -4px;
  line-height: 1.5;
}
.c-table tbody {
  display: block;
}
.c-table tr {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 4px 0;
}
.c-table th,
.c-table td {
  vertical-align: middle;
  padding: 2.2rem 1rem;
  border-bottom-width: 1px;
  border-style: solid;
}
.c-table th {
  color: var(--color-hover);
  border-color: var(--color-hover);
}
.c-table td {
  border-color: var(--color-text);
}
.c-table tr:first-child th,
.c-table tr:first-child td {
  border-top-width: 1px;
}
.c-table .tel-link[href] {
  color: currentColor;
}
.c-table .tel-link[href]:hover {
  color: var(--color-hover);
}
@media screen and (max-width: 767.98px) {
  .c-table tr,
  .c-table th,
  .c-table td {
    display: block;
  }
  .c-table tr + tr {
    margin-top: 3rem;
  }
  .c-table th {
    width: auto !important;
    padding: 1.5rem 1rem;
    font-size: 1.6rem;
    border-top-width: 1px;
  }
  .c-table td {
    padding: 1.5rem 1rem 0;
    border: none;
  }
}

/* 共通お問い合わせ（電話）*/
.c-global-tel {
  display: inline-block;
  vertical-align: top;
}
.c-global-tel .tel-link {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--color-link);
}
.c-global-tel .tel-link::before {
  content: "";
  display: block;
  width: 2.8rem;
  height: 2.8rem;
  margin: 0 1rem 0 0;
  background: url(../img/base/icon-tel_pnk.svg) no-repeat center;
  background-size: cover;
}
.c-global-tel .tel-link[href] {
  color: var(--color-link);
}
.c-global-tel .tel-link[href]:hover {
  text-decoration: underline;
}
@media screen and (min-width: 768px), print {
  .c-global-tel .tel-link {
    font-size: 3.2rem;
  }
  .c-global-tel .tel-link::before {
    width: 3.3rem;
    height: 3.3rem;
  }
}
/* --------------------------------

  汎用スタイル

-------------------------------- */
.u-list-unstyled {
  list-style: none;
}
.u-list-disc {
  list-style-type: none;
  line-height: 1.5;
}
.u-list-disc li {
  position: relative;
  padding-left: 1.15em;
}
.u-list-disc li + li {
  margin-top: 0.35em;
}
.u-list-disc li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 0.55em;
  height: 0.55em;
  border-radius: 100%;
  background-color: currentColor;
}

.u-text-left {
  text-align: left;
}
.u-text-center {
  text-align: center;
}
.u-text-right {
  text-align: right;
}
.u-text-indent {
  text-indent: 1em;
}
.u-text-link {
  color: currentColor;
}
@media screen and (min-width: 768px), print {
  .u-text-md-left {
    text-align: left;
  }
  .u-text-md-center {
    text-align: center;
  }
}
@media screen and (min-width: 1100px), print {
  .u-text-lg-left {
    text-align: left;
  }
  .u-text-lg-center {
    text-align: center;
  }
}

.u-d-none {
  display: none;
}
.u-d-block {
  display: block;
}
.u-d-flex {
  display: flex;
}
@media screen and (min-width: 480px), print {
  .u-d-sm-none {
    display: none;
  }
  .u-d-sm-block {
    display: block;
  }
  .u-d-sm-flex {
    display: flex;
  }
}
@media screen and (min-width: 768px), print {
  .u-d-md-none {
    display: none;
  }
  .u-d-md-block {
    display: block;
  }
  .u-d-md-flex {
    display: flex;
  }
}
@media screen and (min-width: 1100px), print {
  .u-d-lg-none {
    display: none;
  }
  .u-d-lg-block {
    display: block;
  }
  .u-d-lg-flex {
    display: flex;
  }
}
@media screen and (min-width: 1600px), print {
  .u-d-xl-none {
    display: none;
  }
  .u-d-xl-block {
    display: block;
  }
  .u-d-xl-flex {
    display: flex;
  }
}

.u-ft-marugo {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.u-ft-tangerine {
  font-family: "Tangerine", cursive;
  font-weight: 700;
  font-style: normal;
}

.u-fs-sm {
  font-size: 1.2rem;
}
@media screen and (min-width: 1100px), print {
  .u-fs-sm {
    font-size: 1.4rem;
  }
}
.u-fs-lg {
  font-size: 1.6rem;
}
@media screen and (min-width: 1100px), print {
  .u-fs-lg {
    font-size: 1.8rem;
  }
}
.u-fs-xl {
  font-size: 1.8rem;
}
@media screen and (min-width: 1100px), print {
  .u-fs-xl {
    font-size: 2rem;
  }
}

.u-fw-bold {
  font-weight: 700;
}
.u-fw-bold * {
  font-weight: 700;
}
.u-bg-base {
  background-color: var(--color-base);
}
.u-bg-main {
  background-color: var(--color-main);
}
.u-bg-white {
  background-color: #fff;
}
.u-color-base {
  color: var(--color-base);
}
.u-color-main {
  color: var(--color-main);
}
.u-color-text {
  color: var(--color-hover);
}
.u-color-white {
  color: #fff;
}
.u-color-black {
  color: #000;
}
.u-color-danger {
  color: #b22c00;
}
.u-flex-1 {
  flex: 1;
}

.u-clearfix::after {
  content: "";
  clear: both;
  display: block;
}

.u-lh-lg {
  line-height: 1.8;
}
@media screen and (min-width: 1100px), print {
  .u-lh-lg {
    line-height: 2;
  }
}

.u-indent {
  margin-left: 1em;
  text-indent: -1em;
}

.u-anchor-point {
  scroll-margin-top: 10rem;
}
@media screen and (min-width: 1100px), print {
  .u-anchor-point {
    scroll-margin-top: 16rem;
  }
}

.u-box-radius {
  border-radius: 1rem;
}
.u-img-wrap {
  aspect-ratio: 4/3;
  display: block;
  position: relative;
  overflow: hidden;
}

.u-img-cover {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

@media screen and (min-width: 768px), print {
  .float-md-right {
    float: right;
  }
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.font-feature-settings {
  font-feature-settings: "palt" 1;
}

/* ios高さ100%用 */
.full-height {
  height: calc(var(--vh, 1vh) * 100);
}

/* --------------------------------

  wrapper

-------------------------------- */
.l-wrapper {
  position: relative;
  overflow: hidden;
}
/* 背景画像 */
.c-bg {
  position: absolute;
  pointer-events: none;
}
.c-bg img {
  width: 100%;
}
.c-bg__top {
  top: 0;
  left: 0;
  width: 250%;
}
.c-bg__middle {
  right: -20%;
  bottom: 30%;
  width: 100%;
}
.c-bg__bottom {
  bottom: -20vh;
  left: -40%;
  width: 140%;
}
@media screen and (min-width: 1100px), print {
  .c-bg__top {
    right: -50vw;
    left: auto;
    width: 150vw;
  }
  .c-bg__middle {
    top: 50%;
    right: -14vw;
    bottom: auto;
    width: 60vw;
    transform: translateY(-50%);
  }
  .c-bg__middle--secondary {
    top: auto;
    bottom: 30%;
    transform: none;
  }
  .c-bg__bottom {
    bottom: 0;
    left: 0;
    width: 100vw;
  }
  .c-bg__bottom--secondary {
    bottom: -50rem;
  }
}
/* --------------------------------

  header

-------------------------------- */
.l-header {
  padding-top: 10rem;
}
.l-header__container {
  display: grid;
  place-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% - 1rem);
  height: 8rem;
  font-size: 100%;
  border-radius: 0 0 1rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--box-shadow2);
  z-index: 900;
}
.l-header__tel {
  display: none;
}
.l-header__title {
  margin-bottom: 6rem;
}
@media screen and (min-width: 768px), print {
  .l-header {
    padding-top: 20rem;
  }
  .l-header__container {
    display: block;
    position: absolute;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    box-shadow: none;
    z-index: 1010;
  }
  .l-header__title {
    margin-bottom: 8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .l-header {
    padding-top: 18.4rem;
  }
}

/* ヘッダーロゴ */
.c-header-logo a {
  display: flex;
  align-items: center;
  line-height: 1.2;
  font-size: 1.6rem;
  color: var(--color-text);
}
.c-header-logo a:hover {
  text-decoration: none;
}
.c-header-logo img {
  display: block;
  width: 5rem;
  margin-right: 1rem;
}
@media screen and (min-width: 375px), print {
  .c-header-logo a {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 768px), print {
  .c-header-logo a {
    display: block;
    position: absolute;
    top: 2rem;
    left: 0;
    width: 18rem;
    font-size: 1.8rem;
    text-align: center;
  }
  .c-header-logo img {
    width: 8rem;
    margin: 0 auto 1rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-header-logo a {
    display: grid;
    place-content: center;
    aspect-ratio: 1/1;
    top: 0;
    width: 22rem;
    font-size: 2.2rem;
    border-radius: 0 0 2rem 0;
    background-color: #fff;
    box-shadow: var(--box-shadow2);
  }
  .c-header-logo img {
    width: 12rem;
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 1280px), print {
  .c-header-logo a {
    width: 25rem;
  }
  .c-header-logo img {
    width: 15.4rem;
  }
}

/* お問い合わせボタン（電話）*/
.c-tel-button {
  display: block;
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  width: 5.6rem;
  height: 5.6rem;
  overflow: hidden;
  cursor: pointer;
  z-index: 990;
}
@media screen and (min-width: 375px), print {
  .c-tel-button {
    right: 2.2rem;
  }
}
@media screen and (min-width: 768px), print {
  .c-tel-button {
    display: none;
  }
}
.c-tel-button a {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: var(--color-base);
}
.c-tel-button a:hover {
  text-decoration: none;
}
.c-tel-button a::before {
  content: "";
  display: block;
  position: absolute;
  top: 1rem;
  right: 0;
  left: 0;
  width: 2.2rem;
  height: 2.2rem;
  margin: auto;
  background: url(../img/base/icon-tel_wht.svg) center no-repeat;
  background-size: cover;
}
.c-tel-button a::after {
  content: "TEL";
  display: block;
  position: absolute;
  bottom: 0.8rem;
  left: 0;
  width: 100%;
  line-height: 1;
  font-size: 1rem;
  font-family: inherit;
  color: #fff;
  text-align: center;
  letter-spacing: 0.15em;
}

/* スクロール時固定用 */
@media screen and (min-width: 768px), print {
  .is-fixed .l-header__container {
    position: fixed;
    top: -60px;
    transform: translateY(60px);
    transition: transform var(--transition);
  }
}
@media screen and (min-width: 1100px), print {
  .is-fixed .l-header__container {
    margin-top: -4rem;
  }
  .is-fixed .c-header-logo a {
    display: flex;
    align-items: center;
    place-content: center left;
    aspect-ratio: auto;
    top: 6.2rem;
    left: 2rem;
    width: 30rem;
    font-size: 2rem;
    text-align: left;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
  }
  .is-fixed .c-header-logo img {
    width: 8rem;
    margin: 0 2rem 0 0;
  }
}
@media screen and (min-width: 1280px), print {
  .is-fixed .c-header-logo a {
    width: 44rem;
  }
  .is-fixed .c-header-logo br {
    display: none;
  }
}

/* --------------------------------

  nav

-------------------------------- */
.l-nav {
  display: block;
  position: fixed;
  top: 0;
  left: -30rem;
  width: 30rem;
  height: 100%;
  z-index: 1000;
}
.l-nav__container {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #fff;
  z-index: 10;
}
@media screen and (min-width: 768px), print {
  .l-nav {
    position: absolute;
    left: auto;
    width: 100%;
    height: auto;
    background-color: transparent;
  }
  .l-nav__container {
    background-color: transparent;
    overflow: visible;
  }
}
@media screen and (min-width: 1100px), print {
  .l-nav__container {
    display: flex;
    padding: 4rem 0 0;
  }
}
@media screen and (max-width: 767.98px) {
  .l-nav {
    transition: left 0.3s;
  }
  .nav-open .l-nav {
    left: 0;
  }
}

/* メインナビ */
.c-nav {
  padding: 8rem 2rem 0;
}
.c-nav__item {
  position: relative;
}
.c-nav__link, .c-nav__label {
  display: grid;
  place-content: center left;
  position: relative;
  height: 6rem;
  padding: 0 4.5rem 0 1rem;
  font-size: 1.6rem;
  color: #000;
}
.c-nav__link:hover {
  text-decoration: none;
  color: #000;
}
@media (hover: hover) and (pointer: fine) {
  .c-nav__link:hover {
    color: var(--color-hover);
  }
}
@media screen and (min-width: 768px), print {
  .c-nav {
    display: flex;
    justify-content: flex-end;
    margin: 0 2rem 0 0;
    padding: 8rem 4rem 1.5rem 4rem;
    border-radius: 0 0 2rem 0;
    background-color: #fff;
    box-shadow: var(--box-shadow2);
  }
  .c-nav__item + .c-nav__item {
    margin-left: 4rem;
  }
  .c-nav__link, .c-nav__label {
    height: 5.4rem;
    padding: 0;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-nav {
    margin: 0 0 0 auto;
    padding: 2.5rem 33.5rem 2.5rem 4.5rem;
    border-radius: 2rem 0 0 2rem;
  }
  .c-nav__item + .c-nav__item {
    margin-left: 5rem;
  }
}
@media screen and (max-width: 767.98px) {
  .c-nav__item {
    border-top: 1px solid var(--color-base);
  }
  .c-nav__item:last-child {
    border-bottom: 1px solid var(--color-base);
  }
}
@media screen and (min-width: 1100px) and (hover: hover) and (pointer: fine), print {
  .c-nav__item.is-current .c-nav__link, .c-nav__item.is-current .c-nav__label {
    color: var(--color-hover);
  }
}

/* サブメニュー */
.c-subnav {
  margin: 0 1rem 2rem;
  border-radius: 1.5rem;
  background-color: var(--color-base);
}
.c-subnav__item + .c-subnav__item {
  border-top: 1px solid #fff;
}
.c-subnav__link {
  display: grid;
  place-content: center;
  height: 5rem;
  line-height: 1.2;
  font-size: 1.4rem;
  color: #fff;
  transition: background-color var(--transition);
}
.c-subnav__link:hover {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .c-subnav__link:hover {
    color: #fff;
    background-color: var(--color-hover);
  }
}
@media screen and (min-width: 768px), print {
  .c-subnav {
    position: relative;
    left: 50%;
    width: 30rem;
    margin: 0 0 0 -15rem;
    border-radius: 2rem;
    background-color: rgba(233, 172, 162, 0.95);
    box-shadow: var(--box-shadow3);
    overflow: hidden;
  }
  .c-subnav__item + .c-subnav__item {
    border-top: none;
  }
  .c-subnav__link {
    height: 5rem;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-subnav {
    width: 35rem;
    margin: 0 0 0 -17.5rem;
    border-radius: 3rem;
  }
  .c-subnav__link {
    height: 6rem;
    font-size: 1.8rem;
  }
}

/* 事業所情報 */
.c-nav-info {
  padding: 4rem 0;
  text-align: center;
}
.c-nav-info__logo {
  line-height: 1.3;
  font-size: 2.2rem;
  color: var(--color-text);
}
.c-nav-info__logo img {
  display: block;
  width: 8rem;
  margin: auto;
  margin: 0 auto 1.5rem;
}
.c-nav-info__num {
  margin: 1rem 0;
}
.c-nav-info__tel {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px), print {
  .c-nav-info {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem 6rem 0 0;
    text-align: right;
    letter-spacing: normal;
  }
  .c-nav-info__logo {
    display: none;
  }
  .c-nav-info__num {
    display: none;
  }
  .c-nav-info__add {
    font-size: 1.2rem;
  }
  .c-nav-info__tel {
    margin-bottom: 0;
  }
  .c-nav-info__fax {
    display: none;
  }
}
@media screen and (min-width: 1100px), print {
  .c-nav-info {
    padding: 5.5rem 4rem 0 0;
  }
}

/* ナビゲーション開閉ボタン */
.c-nav-button {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 6rem;
  height: 8rem;
  line-height: 1;
  font-family: inherit;
  background-color: transparent;
  cursor: pointer;
  z-index: 910;
}
@media screen and (min-width: 375px), print {
  .c-nav-button {
    width: 8rem;
  }
}
@media screen and (min-width: 768px), print {
  .c-nav-button {
    display: none;
  }
}
.nav-open .c-nav-button {
  display: none;
}
.c-nav-button::before {
  content: "MENU";
  display: block;
  position: absolute;
  bottom: 1.8rem;
  left: 0.1rem;
  width: 100%;
  line-height: 1;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-link);
  text-align: center;
  letter-spacing: 0.15em;
}
.c-nav-button__icon {
  display: block;
  position: absolute;
  inset: 0;
  top: -2rem;
  width: 3.5rem;
  height: 2rem;
  margin: auto;
  border-top: 2px solid var(--color-link);
  border-bottom: 2px solid var(--color-link);
}
.c-nav-button__icon::before, .c-nav-button__icon::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  border-top: 2px solid var(--color-link);
}
.c-nav-button__icon::after {
  display: none;
}
.c-nav-button__close {
  position: absolute;
  z-index: 10;
}
@media screen and (max-width: 1099.98px) {
  .nav-open .c-nav-button__close {
    display: block;
  }
}
.c-nav-button__close::before {
  content: "CLOSE";
}
.c-nav-button__close .c-nav-button__icon {
  border: none;
}
.c-nav-button__close .c-nav-button__icon::before {
  transform: rotate(45deg);
}
.c-nav-button__close .c-nav-button__icon::after {
  display: block;
  transform: rotate(-45deg);
}

/* ナビゲーション背景 */
@media screen and (min-width: 768px), print {
  .o-nav-screen {
    display: none;
  }
}
.o-nav-screen__overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-open .o-nav-screen__overlay {
  pointer-events: auto;
  opacity: 0.35;
  cursor: pointer;
}

/* ドロップダウン：ボタン */
.dropdown-toggle {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 6rem;
  background: transparent;
  z-index: 10;
}
.dropdown-toggle:hover {
  cursor: pointer;
}
.dropdown-toggle::before {
  content: "";
  display: block;
  position: absolute;
  top: 2.4rem;
  right: 1.4rem;
  width: 1rem;
  height: 1rem;
  border-top: 2px solid var(--color-link);
  border-right: 2px solid var(--color-link);
  transform: rotate(135deg);
}
.dropdown-toggle.show::before {
  top: 2.8rem;
  transform: rotate(-45deg);
}
.dropdown-toggle::after {
  display: none;
}
@media screen and (min-width: 768px), print {
  .dropdown-toggle {
    height: 100%;
    z-index: 30;
  }
  .dropdown-toggle::before {
    top: auto;
    right: 0;
    bottom: -0.3rem;
    left: 0;
    width: 0.8rem;
    height: 0.8rem;
    margin: auto;
    border-width: 1px;
  }
  .dropdown-toggle.show::before {
    top: auto;
    bottom: -0.9rem;
  }
  .dropdown-toggle.show + .c-nav__link, .dropdown-toggle.show + .c-nav__label {
    color: var(--color-hover);
  }
}
@media screen and (min-width: 1100px) and (hover: hover) and (pointer: fine), print {
  .dropdown-toggle:hover + .c-nav__link, .dropdown-toggle:hover + .c-nav__label {
    color: var(--color-hover);
  }
}

/* ドロップダウン：メニュー */
.dropdown-menu {
  display: block !important;
  position: absolute;
  min-width: 0;
  width: 100%;
  margin: 0;
  margin-top: -10px !important;
  padding: 0;
  font-size: 100%;
  color: var(--color-text);
  text-align: left;
  list-style: none;
  border: none;
  border-radius: 0;
  background-color: transparent;
  background-clip: padding-box;
  z-index: 1000;
}
@media screen and (max-width: 767.98px) {
  .dropdown-menu {
    position: static !important;
    margin-top: 0 !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }
  .dropdown-menu.show {
    inset: auto !important;
    transform: none !important;
    max-height: var(--max-height);
  }
}
@media screen and (min-width: 768px), print {
  .dropdown-menu {
    margin-top: 0px !important;
    transition: margin-top var(--transition), opacity var(--transition);
    opacity: 0;
    pointer-events: none;
  }
  .dropdown-menu.show {
    margin-top: 50px !important;
    opacity: 1;
    pointer-events: auto;
  }
}

/* スクロール時固定用 */
@media screen and (min-width: 768px), print {
  .is-fixed .l-nav {
    position: fixed;
    top: -60px;
    transform: translateY(60px);
    transition: transform var(--transition);
  }
  .is-fixed .c-nav {
    background-color: rgba(255, 255, 255, 0.95);
  }
}
@media screen and (min-width: 1100px), print {
  .is-fixed .l-nav {
    margin-top: -4rem;
  }
  .is-fixed .l-nav__container {
    display: block;
  }
  .is-fixed .c-nav {
    margin-right: 2rem;
    padding-right: 32rem;
    border-radius: 0 0 2rem 0;
  }
  .is-fixed .c-nav__item + .c-nav__item {
    margin-left: 3rem;
  }
  .is-fixed .c-nav-info {
    padding-right: 5rem;
  }
}
@media screen and (min-width: 1280px), print {
  .is-fixed .c-nav {
    padding-right: 33.5rem;
  }
  .is-fixed .c-nav__item + .c-nav__item {
    margin-left: 4rem;
  }
}

/* --------------------------------

  main

-------------------------------- */
.l-main {
  padding: 0 2rem 10rem;
}
@media screen and (min-width: 1100px), print {
  .l-main {
    padding: 0 5rem 15rem;
  }
}

/* --------------------------------

  footer

-------------------------------- */
.l-footer {
  background-color: rgba(244, 214, 209, 0.2);
}
.l-footer__container {
  max-width: var(--inner-width2);
  padding: 7rem 0;
}
.l-footer__head {
  margin-bottom: 5rem;
}
.l-footer__body {
  max-width: 40rem;
  margin-inline: auto;
  padding: 0 2rem;
}
@media screen and (min-width: 768px), print {
  .l-footer__body {
    display: flex;
    justify-content: center;
    max-width: none;
    margin: 0;
    padding: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .l-footer {
    padding: 11rem 5rem;
  }
  .l-footer__container {
    display: flex;
    padding: 0;
  }
  .l-footer__head {
    margin-bottom: 0;
  }
  .l-footer__body {
    justify-content: space-between;
    width: 44rem;
    margin: 1.5rem 0 0 auto;
  }
}
@media screen and (min-width: 1280px), print {
  .l-footer__body {
    width: 50rem;
  }
}

/* 事業所情報 */
.c-footer-info {
  color: #000;
  text-align: center;
}
.c-footer-info__logo {
  line-height: 1.3;
  font-size: 2.4rem;
  color: var(--color-text);
}
.c-footer-info__logo img {
  display: block;
  width: 10rem;
  margin: 0 auto 2rem;
}
.c-footer-info__num {
  margin: 2rem 0 1rem;
}
.c-footer-info__tel .tel-link {
  color: currentColor;
}
.c-footer-info__tel .tel-link[href]:hover {
  color: currentColor;
}
@media screen and (min-width: 1100px), print {
  .c-footer-info__tel .tel-link[href]:hover {
    color: var(--color-hover);
  }
}
@media screen and (min-width: 768px), print {
  .c-footer-info__logo {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-info {
    font-size: 1.8rem;
    text-align: left;
  }
  .c-footer-info__logo {
    display: inline-flex;
    vertical-align: top;
    align-items: center;
  }
  .c-footer-info__logo img {
    width: 8.9rem;
    margin: -0.2em 1.5rem 0 0;
  }
  .c-footer-info__num {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 1280px), print {
  .c-footer-info__logo {
    font-size: 2.6rem;
  }
}

/* フッターナビ */
.c-footer-nav + .c-footer-nav {
  margin-top: 1rem;
}
.c-footer-nav__item + .c-footer-nav__item {
  margin-top: 1rem;
}
.c-footer-nav__link, .c-footer-nav__label {
  display: block;
  padding: 1rem 0;
  line-height: 1.5;
  color: #000;
  text-align: center;
  border-radius: 0.5rem;
  border: 1px solid var(--color-base);
}
.c-footer-nav__link {
  background-color: #fff;
}
.c-footer-nav__link[href]:hover {
  text-decoration: none;
}
.c-footer-nav__label {
  border-radius: 0.5rem 0.5rem 0 0;
}
@media screen and (min-width: 768px), print {
  .c-footer-nav {
    width: 30rem;
  }
  .c-footer-nav + .c-footer-nav {
    margin-top: 0;
    margin-left: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-nav {
    width: auto;
  }
  .c-footer-nav + .c-footer-nav {
    margin: 0;
  }
  .c-footer-nav__item + .c-footer-nav__item {
    margin-top: 1.5rem;
  }
  .c-footer-nav__link, .c-footer-nav__label {
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: -1rem -1rem -1rem 0;
    padding: 1rem 1rem 1rem 1.2em;
    font-size: 1.8rem;
    border-radius: 0;
    border: none;
  }
  .c-footer-nav__link::before, .c-footer-nav__label::before {
    content: "";
    display: block;
    position: absolute;
    top: 2ch;
    left: 0;
    width: 0.5em;
    height: 0.5em;
    margin: auto;
    border-top: 2px solid var(--color-base);
    border-right: 2px solid var(--color-base);
    transform: rotate(45deg);
  }
  .c-footer-nav__link {
    background-color: transparent;
  }
  .c-footer-nav__link[href]:hover {
    text-decoration: none;
  }
  .c-footer-nav__label {
    border-radius: 0;
  }
}

/* フッターサブメニュー */
.c-footer-subnav {
  padding: 1.5rem;
  border-radius: 0 0 0.5rem 0.5rem;
  border: 1px solid var(--color-base);
  border-top: none;
  background-color: #fff;
}
.c-footer-subnav__item + .c-footer-subnav__item {
  margin-top: 0.5rem;
}
.c-footer-subnav__link {
  display: inline-block;
  vertical-align: top;
  position: relative;
  line-height: 1.5;
  margin: -1rem -1rem -1rem 0;
  padding: 1rem 1rem 1rem 1.2em;
  color: #000;
}
.c-footer-subnav__link:hover {
  text-decoration: none;
}
.c-footer-subnav__link::before {
  content: "・";
  display: block;
  position: absolute;
  top: 1rem;
  left: 0.05em;
}
@media screen and (min-width: 1100px), print {
  .c-footer-subnav {
    margin: 1.5rem 0 0 1.2em;
    padding: 0;
    border-radius: 0;
    border: none;
    background-color: transparent;
  }
  .c-footer-subnav__item + .c-footer-subnav__item {
    margin-top: 1rem;
  }
  .c-footer-subnav__link {
    font-size: 1.8rem;
  }
}

/* ページの先頭へ */
.c-footer-pagetop {
  display: block;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 4.5rem;
  height: 4.5rem;
  overflow: hidden;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px), print {
  .c-footer-pagetop {
    right: 2rem;
    bottom: 2rem;
    width: 5rem;
    height: 5rem;
  }
}
.is-fixed .c-footer-pagetop {
  opacity: 1;
  pointer-events: auto;
}
.c-footer-pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: var(--color-link);
  transition: background-color var(--transition);
}
.c-footer-pagetop a:hover {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .c-footer-pagetop a:hover {
    background-color: var(--color-hover);
  }
}
.c-footer-pagetop a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.8rem;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}

/* コピーライト */
.c-footer-copy {
  display: grid;
  place-content: center;
  position: relative;
  height: 6.5rem;
}
.c-footer-copy small {
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-base);
  letter-spacing: 0.2em;
}
.c-footer-copy span {
  display: none;
}
@media screen and (min-width: 768px), print {
  .c-footer-copy {
    height: 9rem;
  }
  .c-footer-copy span {
    display: inline;
    font-weight: 700;
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-copy {
    display: block;
    max-width: var(--inner-width2);
    height: auto;
    margin: 2rem auto 0;
    text-align: right;
  }
  .c-footer-copy small {
    font-size: 1.6rem;
  }
}

/* --------------------------------

  ページタイトル

-------------------------------- */
.c-page-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
  font-size: 2.4rem;
}
.c-page-title__en {
  display: block;
  margin-left: -0.2ch;
  line-height: 1em;
  font-size: 3.5em;
  color: var(--color-base);
  mix-blend-mode: multiply;
}
.c-page-title__jp {
  display: block;
  margin: -0.5ch 0 -1ch;
  text-shadow: var(--text-shadow3);
}
.c-page-title__container {
  position: relative;
  margin: 0 0 0 2rem;
  padding: 13rem 0 7rem 2rem;
  border-radius: 2rem 0 0 2rem;
  background: #fff url(../img/top/mv_sm.jpg) no-repeat center;
  background-size: cover;
  box-shadow: var(--box-shadow3);
}
@media screen and (min-width: 768px), print {
  .c-page-title {
    font-size: 2.8rem;
  }
  .c-page-title__container {
    margin: 0 0 0 5rem;
    padding: 10rem 0 10rem 5rem;
    background-image: url(../img/base/title.jpg);
  }
}
@media screen and (min-width: 1100px), print {
  .c-page-title {
    max-width: var(--inner-width3);
    height: 32rem;
    margin-inline: auto;
    font-size: 3.6rem;
  }
  .c-page-title__container {
    margin: 0 0 0 14rem;
    padding: 0 0 0 6rem;
  }
}

/* --------------------------------

  ローディング

-------------------------------- */
.loader {
  display: grid;
  place-content: center;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-sub1);
  z-index: 9999;
  opacity: 1;
  pointer-events: none;
}
.loader.is-loaded {
  animation: fadeOut 1s forwards;
}
.loader.is-reloaded {
  animation: fadeOut 0.3s forwards;
}
.loader-logo {
  display: block;
  width: 10rem;
  opacity: 0;
}
@media screen and (min-width: 768px), print {
  .loader-logo {
    width: 14rem;
  }
}
@media screen and (min-width: 1100px), print {
  .loader-logo {
    width: 18rem;
  }
}
.loader-logo.is-loaded {
  animation: fadeIn 0.5s forwards;
}
.loader-logo.is-reloaded {
  display: none;
}

/* --------------------------------

  アニメーション

-------------------------------- */
.js-anime {
  pointer-events: none;
}
.js-anime.is-active {
  pointer-events: auto;
}
.js-anime.fadeIn {
  opacity: 0;
}
.js-anime.fadeIn.is-active {
  animation: fadeIn 0.75s forwards;
}
.js-anime.fadeInUp {
  opacity: 0;
  transform: translateY(100px);
}
.js-anime.fadeInUp.is-active {
  animation: fadeInUp 0.75s forwards;
}
.js-anime.fadeZoomIn {
  opacity: 0;
  transform: scale(1.4);
}
.js-anime.fadeZoomIn.is-active {
  animation: fadeZoomIn 0.75s forwards;
}
.js-anime.fadeInRight {
  opacity: 0;
  transform: translateX(100px);
}
.js-anime.fadeInRight.is-active {
  animation: fadeInRight 0.75s forwards;
}
.js-anime.fadeInLeft {
  opacity: 0;
  transform: translateX(-100px);
}
.js-anime.fadeInLeft.is-active {
  animation: fadeInLeft 0.75s forwards;
}

@media screen and (max-width: 767.98px) {
  .js-anime__sp-none,
  .js-anime__sp-none.is-active {
    pointer-events: auto !important;
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeZoomIn {
  from {
    opacity: 0;
    transform: scale(1.2);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
/* --------------------------------

  トップページ

-------------------------------- */
/* メイングラフィック */
.p-mv__section {
  margin: 0 -2rem 5rem;
}
.p-mv__container {
  max-width: none;
  padding: 0 0 0 2rem;
}
.p-mv__img {
  aspect-ratio: 7/5;
  display: block;
  position: relative;
  border-radius: 2rem 0 0 2rem;
  box-shadow: var(--box-shadow3);
  overflow: hidden;
  opacity: 0;
}
.p-mv__img.is-loaded {
  animation: fadeZoomIn 1s forwards;
}
.p-mv__img.is-reloaded {
  opacity: 1;
}
.p-mv__img img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.p-mv__catch {
  display: grid;
  place-content: center left;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0 0 0 2rem;
  opacity: 0;
}
.p-mv__catch--inner {
  padding: 0 0 0 2rem;
  font-size: calc(1.2rem + 1vw);
}
.p-mv__catch.is-loaded {
  animation: fadeInRight 1s forwards;
}
.p-mv__catch.is-reloaded {
  opacity: 1;
}
.p-mv__copy {
  position: relative;
  margin-left: -0.2ch;
  line-height: 1em;
  font-size: 3.5em;
  color: var(--color-base);
  mix-blend-mode: multiply;
}
.p-mv__text {
  text-shadow: var(--text-shadow3);
}
@media screen and (min-width: 768px), print {
  .p-mv__container {
    padding: 0 0 0 5rem;
  }
  .p-mv__catch {
    padding: 0 0 0 5rem;
  }
  .p-mv__catch--inner {
    padding: 0 0 0 5rem;
    font-size: calc(1.4rem + 1vw);
  }
  .p-mv__copy {
    font-size: 5em;
  }
}
@media screen and (min-width: 1100px), print {
  .p-mv__section {
    margin: 0 -5rem 10rem;
  }
  .p-mv__container {
    padding: 0 0 0 14rem;
  }
  .p-mv__img {
    aspect-ratio: 1462/700;
  }
  .p-mv__catch {
    padding: 0 0 0 14rem;
  }
  .p-mv__catch--inner {
    padding: 0 0 0 11rem;
    font-size: calc(1.2rem + 1vw);
  }
}

/* 導入部 */
.p-top-intro__section {
  margin-bottom: 10rem;
}
.p-top-intro__container {
  max-width: var(--inner-width3);
}
.p-top-intro__heading {
  margin: 3rem -2rem 0;
  line-height: 1em;
  font-size: calc(3rem + 1.5vw);
}
.p-top-intro__heading::after {
  content: "";
  display: block;
  aspect-ratio: 770/160;
  width: 70%;
  max-width: 44rem;
  margin: 2rem auto 0;
  background: url(../img/base/bg_title.png) center no-repeat;
  background-size: cover;
}
.p-top-intro__text {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px), print {
  .p-top-intro__heading {
    font-size: 6rem;
  }
  .p-top-intro__text {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-top-intro__section {
    margin-bottom: 15rem;
  }
  .p-top-intro__heading {
    margin: 4rem 0 0;
    font-size: 6rem;
  }
  .p-top-intro__heading::after {
    width: 77rem;
    max-width: none;
    margin-top: 3rem;
  }
}

/* サービス一覧 */
.p-top-service__section {
  margin-bottom: 10rem;
}
.p-top-service__container {
  max-width: var(--inner-width3);
}
.p-top-service__list {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  max-width: 40rem;
  margin-inline: auto;
}
.p-top-service__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  grid-column-gap: 0px;
  grid-row-gap: 2rem;
  position: relative;
  padding: 0 2rem 3rem;
  border-radius: 2rem;
  background-color: #fff;
  box-shadow: var(--box-shadow2);
  overflow: hidden;
}
.p-top-service__img {
  aspect-ratio: 470/300;
  margin: 0 -2rem;
}
.p-top-service__img img {
  transition: opacity var(--transition), transform var(--transition);
}
.p-top-service__title {
  display: grid;
  place-content: center;
  margin: 0 -2rem;
  line-height: 1.25;
  font-size: 2.4rem;
  letter-spacing: normal;
}
.p-top-service__office {
  display: grid;
  place-content: center;
  padding: 1.5rem 0;
  line-height: 1.4;
  letter-spacing: normal;
  border-radius: 1rem;
  background-color: var(--color-sub2);
}
.p-top-service__more a:hover {
  text-decoration: none;
}
.p-top-service__more a::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 10;
}
@media (hover: hover) and (pointer: fine) {
  .p-top-service__item:hover .p-top-service__img img {
    opacity: 0.75;
    transform: scale(1.1);
  }
  .p-top-service__item:hover .p-top-service__more .c-link-button {
    color: #fff;
    background-color: var(--color-hover);
  }
}
@media screen and (min-width: 768px), print {
  .p-top-service__list {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
    margin-inline: 0;
  }
  .p-top-service__title {
    font-size: calc(1.4rem + 1vw);
  }
}
@media screen and (min-width: 1100px), print {
  .p-top-service__list {
    grid-column-gap: 3.5rem;
  }
  .p-top-service__item {
    grid-row-gap: 3rem;
    padding: 0 3.5rem 4rem;
  }
  .p-top-service__img {
    margin: 0 -3.5rem 1rem;
  }
  .p-top-service__title {
    font-size: 2.8rem;
  }
}

/* お知らせ一覧 */
.p-top-news__body {
  margin-top: -2rem;
}
.p-top-news__more {
  margin-top: 5rem;
}
/* --------------------------------

  お知らせ

-------------------------------- */
.news-body {
  margin-top: 2rem;
  line-height: 1.8;
  word-break: break-all;
  word-wrap: break-word;
}
.news-body * {
  word-break: break-all;
  word-wrap: break-word;
}
.news-body::after {
  content: "";
  display: table;
  clear: both;
}
.news-more {
  margin-top: 3rem;
  text-align: center;
}
.news-back {
  margin-top: 5rem;
  padding-top: 5rem;
  text-align: center;
  border-top: 1px solid var(--color-sub3);
}
.news-link {
  display: block;
  position: relative;
  padding: 2rem 1rem;
  line-height: 1.4;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-sub3);
}
.news-link:hover {
  text-decoration: none;
}
.news-link:hover .news-title {
  text-decoration: underline;
}
.news-date {
  margin-bottom: 1rem;
  color: var(--color-hover);
}
.news-title {
  word-break: break-all;
  word-wrap: break-word;
}
.news-img {
  position: relative;
  overflow: hidden;
}
.news-img img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
@media screen and (min-width: 768px), print {
  .news-link {
    display: flex;
    padding: 2rem 0;
  }
  .news-date {
    width: 14ch;
    margin-bottom: 0;
  }
  .news-title {
    flex: 1;
  }
}
/* pagination */
.pagination {
  display: block;
}
.news-list + .pagination {
  margin-top: 2.5rem;
}
@media screen and (min-width: 1100px), print {
  .news-list + .pagination {
    margin-top: 3.5rem;
  }
}
.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .page-numbers {
  display: block;
  margin: 0 0.4rem;
  padding: 1rem 1.5rem;
  line-height: 1.2;
  color: var(--color-text);
  text-align: center;
  border-radius: 0.35rem;
  background-color: #fff;
  transition: color var(--transition), background-color var(--transition);
}
@media screen and (max-width: 767.98px) {
  .pagination .page-numbers {
    margin: 0.2rem;
    font-size: 1.4rem;
  }
}
.pagination .page-numbers:hover {
  text-decoration: none;
}
.pagination .page-numbers[href]:hover,
.pagination .current {
  color: #fff;
  background-color: var(--color-hover);
}
.pagination .screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

/*! TinyMCE Clear Float
 * https://wordpress.org/plugins-wp/tinymce-clear-buttons/
 */
.aligncenter {
  display: block;
  margin: auto;
}

.alignright {
  float: right;
  margin-left: 1em;
}

.alignleft {
  float: left;
  margin-right: 1em;
}

img[class*=wp-image-],
img[class*=attachment-] {
  height: auto;
  max-width: 100%;
  margin-bottom: 1em;
}

/* --------------------------------

  下層ページ

-------------------------------- */
/* サービス詳細の一覧 */
.p-service__detail {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
}
.p-service__detail--item {
  padding: 2rem;
}
.p-service__detail dt {
  margin-bottom: 0.5rem;
  line-height: 1.4;
  font-size: 2rem;
}
.p-service__detail dd {
  font-size: 1.4rem;
}
@media screen and (min-width: 480px), print {
  .p-service__detail {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px), print {
  .p-service__detail {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-service__detail {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 2.5rem;
  }
  .p-service__detail--item {
    padding: 2.5rem;
  }
  .p-service__detail dt {
    margin-bottom: 1rem;
    font-size: 2.4rem;
  }
}

/* 訪問介護サービス */
.p-visit__img {
  max-width: 40rem;
  margin: 0 auto 3rem;
}
.p-visit__img img {
  width: 100%;
}
.p-visit__more {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  margin-top: 3rem;
}
.p-visit__more--link {
  display: grid;
  place-content: center;
  height: 100%;
  padding: 1.5rem 0;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  border-radius: 1rem;
  background-color: var(--color-hover);
  box-shadow: var(--box-shadow2);
  transition: color var(--transition), background-color var(--transition);
}
.p-visit__more--link:hover {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .p-visit__more--link:hover {
    background-color: var(--color-link);
    box-shadow: none;
  }
}
.p-visit__more--inner::before {
  content: "";
  display: block;
  aspect-ratio: 45/55;
  width: 3.4rem;
  margin: 0 auto 1rem;
  background: url(../img/base/icon-pdf_wht.svg) no-repeat center;
  background-size: cover;
}
.p-visit__more--label {
  display: block;
  margin-top: 0.5rem;
  font-size: 2.2rem;
}
@media screen and (min-width: 768px), print {
  .p-visit__more--inner::before {
    width: 4rem;
  }
  .p-visit__more--label {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-visit__img {
    width: 52rem;
    max-width: none;
    margin: 0;
  }
  .p-visit__more {
    grid-template-columns: auto;
    max-width: 36rem;
  }
  .p-visit__more--link {
    padding: 2rem;
    text-align: left;
  }
  .p-visit__more--inner {
    display: inline-block;
    vertical-align: top;
    position: relative;
    padding-left: 7.5rem;
  }
  .p-visit__more--inner::before {
    aspect-ratio: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4.5rem;
    height: 5.5rem;
    margin: auto;
  }
}

/* 会社情報 */
.p-outline__table th {
  width: 15rem;
}
/* 各事業所所在地 */
.p-office__table th {
  width: 30rem;
}
/* Cookie等の利用について */
.cookie-policy {
  padding: 2rem;
  border-radius: 2rem;
  border: 1px solid #ddd;
  background-color: #fff;
  font-feature-settings: "palt" 1;
}

.cookie-policy h2 {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  font-size: 2rem;
  text-align: center;
  border-bottom: 1px solid #ccc;
}

.cookie-policy h3 {
  margin: 3rem 0 1rem;
  font-size: 1.8rem;
}

.cookie-policy h4 {
  margin: 2rem 0 1rem;
  line-height: 1.5;
  font-size: 1.6rem;
}

.cookie-policy p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.cookie-policy a {
  color: #000;
  text-decoration: underline;
}

.cookie-policy a:hover {
  color: #333;
  text-decoration: none;
}

.cookie-policy ul {
  list-style-type: none;
}

.cookie-policy li {
  position: relative;
  padding-left: 1.1em;
}

.cookie-policy li::before {
  content: "●";
  display: inline-block;
  margin-right: 0.5em;
  margin-left: -1.5em;
  font-size: 0.7em;
}

.cookie-policy table {
  display: block;
  margin-top: 2rem;
}

.cookie-policy tbody,
.cookie-policy tr,
.cookie-policy th,
.cookie-policy td {
  display: block;
}

.cookie-policy tr:not(:last-child) {
  margin-bottom: 0.5rem;
}

.cookie-policy th,
.cookie-policy td {
  padding: 1rem 1.5rem;
}

.cookie-policy th {
  background-color: #f0f0f0;
}

.cookie-policy td {
  border-top: none;
  border: 1px solid #f0f0f0;
}

@media screen and (min-width: 768px), print {
  .cookie-policy {
    padding: 3rem;
  }
  .cookie-policy h2 {
    margin-bottom: 3.5rem;
    padding-bottom: 2rem;
    font-size: 2.6rem;
  }
  .cookie-policy h3 {
    font-size: 2rem;
  }
  .cookie-policy h4 {
    font-size: 1.8rem;
  }
  .cookie-policy tr {
    display: table;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
  }
  .cookie-policy th,
  .cookie-policy td {
    display: table-cell;
    padding: 1.5rem 2rem;
  }
  .cookie-policy th {
    width: 30rem;
  }
  .cookie-policy td {
    border-top: 1px solid #f0f0f0;
  }
}
/* --------------------------------

  プリント

-------------------------------- */
@media print {
  html, body {
    width: var(--inner-width);
    background: none;
  }
}
/* --------------------------------

  修正・追加用

-------------------------------- */
/* 公開時用 */
@media screen and (min-width: 768px), print {
  .p-top-service__list.__single {
    display: block;
  }
  .p-top-service__list.__single .p-top-service__item {
    display: block;
    padding: 3.5rem 2rem 3.5rem calc(50% + 2rem);
  }
  .p-top-service__list.__single .p-top-service__img {
    aspect-ratio: auto;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
  }
  .p-top-service__list.__single .p-top-service__title {
    font-size: 2.8rem;
  }
  .p-top-service__list.__single .p-top-service__title,
  .p-top-service__list.__single .p-top-service__office,
  .p-top-service__list.__single .p-top-service__text {
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-top-service__list.__single {
    max-width: var(--inner-width);
    margin-inline: auto;
  }
  .p-top-service__list.__single .p-top-service__item {
    padding: 4rem 3.5rem 4rem calc(50% + 3.5rem);
  }
  .p-top-service__list.__single .p-top-service__title {
    font-size: 3.4rem;
  }
}