@charset "UTF-8";

/*
Theme Name: Bridge Theme
Description: 株式会社ブリッジ Original Theme
Author: Kaito Nishimura
Version: 1.0.0
*/
/* 共通ここから
=================================== */
:root {
  --color-white: #FFFEFD;
  --color-black: #35373D;
  --color-blue: #00A8FF;
  --color-green: #AFEEEE;
  --bcolor-lightBlue: #E5F6FF;
  --h-color-green: #D7F6F6;
  --h-color-lightGreen: #EBFAF9;
  --h-color-yellow: #FCC800;
}

html {
  background-color: var(--color-white, #FFFEFD);
  scroll-behavior: auto;
}

body {
  overflow-x: hidden;
  font-family:
    "Noto Serif JP",
    serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-black, #35373D);
}

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

section+section {
  margin: 120px 0;
}

:target {
  scroll-margin-top: 30px;
}

#top:target {
  scroll-margin-top: 90px;
}

.w-container {
  width: min(92%, 1200px);
  margin-left: auto;
  margin-right: auto;
}

p+p {
  margin-top: 1em;
}

.pc-br {
  display: none;
}

/* ------フォントここから------ */
h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.25;
}

.page-title {
  font-size: 32px;
  text-align: center;
}

.page-title span,
.b-main-title span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-blue);
}

.page-title span {
  margin-bottom: 30px;
}

h2 {
  font-size: 26px;
  text-align: center;
  margin-bottom: 60px;
}

h3 {
  font-size: 20px;
}

/* ------ ボタン ------ */
.btn {
  width: 312px;
  margin-top: 30px;
  padding: 10px;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: var(--color-blue);
  border-radius: 10px;
  box-shadow: 2px 5px 12px #909090;
}


/* ------表------ */
.b-table {
  width: 100%;
  margin-bottom: 30px;
  border: thin solid var(--color-black);
}

.b-table th,
.b-table td {
  display: block;
  text-align: center;
  width: 100%;
  padding: 0.6em;
}

.b-table tr,
.b-table th {
  border-bottom: thin solid var(--color-black);
}

.b-table tr:last-of-type {
  border-bottom: none;
}

.b-table th {
  background-color: var(--bcolor-lightBlue);
}

/* ------動き------ */
/* テキストリンクをホバーした時 */
.text-link a {
  transition: color 0.3s ease;
}

.text-link a:hover {
  color: var(--color-blue);
}

/* ボタンをホバーした時 */
.b-hover,
.btn {
  opacity: 1;
  transition: all 0.3s ease;
}

.b-hover:hover,
.btn:hover {
  box-shadow: none;
  opacity: 0.5;
}

/* ------ページに固定------ */
.fixed-btn {
  position: fixed;
  right: 0;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}

.fixed-btn.is-show {
  opacity: 1;
  pointer-events: auto;
}

a.b-page-top img,
a.b-fixed__contact span {
  transition: all 0.3s ease;
}

a.b-page-top img:hover,
a.b-fixed__contact span:hover {
  box-shadow: none;
  opacity: 0.5;
}

/* ページトップ */
a.b-page-top {
  display: grid;
  place-items: center;
  bottom: 60px;
  width: 90px;
  height: auto;
  margin-bottom: 10px;
  margin-right: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: var(--color-blue);
}

a.b-page-top img {
  border-radius: 10px;
  box-shadow: 4px 6px 8px rgba(0, 0, 0, 0.25);
}

#contact a.b-page-top {
  bottom: 10px;
}

/* お問い合わせボタン */
a.b-fixed__contact {
  bottom: 0;
  left: 0;
  right: 0;
}

a.b-fixed__contact span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 60px;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--color-blue);
}

a.b-fixed__contact img {
  width: 22px;
  height: 16px;
  margin-right: 12px;
}

/* 共通セクションここから
=================================== */
/* ------ヘッダーここから------ */
.b-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 90px;
  background-color: var(--color-white);
  box-shadow: 0 2px 5px #9090906b;
}

.b-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.b-header__img {
  width: 50px;
}

.b-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
}

.b-header__txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.b-header__txt p {
  margin: 0;
}

.companyn {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.2;
}

.companyt {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.b-header-nav {
  position: fixed;
  inset: 90px 0 0 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
}

.b-header-nav ul {
  background-color: var(--color-white);
}

.b-header-nav li {
  text-align: center;
  background-color: var(--color-blue);
  color: var(--color-white);
  border-bottom: 1px solid var(--color-white);
}

.b-header-nav li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px;
  font-size: 25px;
}

/* 共通ボタン */
.nav-btn {
  position: relative;
  z-index: 210;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.x-wrap {
  position: relative;
}

/* ×ボタン */
.nav-btn__x {
  display: none;
  /* ← 初期は非表示 */
  align-items: center;
  justify-content: center;
  position: relative;
  width: 44px;
  height: 90px;
}

/* 青い四角 */
.nav-btn__x::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 40px;
  height: 40px;
  margin: auto;
  background-color: var(--color-blue);
}

/* × */
.nav-btn__x img {
  position: relative;
  z-index: 1;
  width: 24px;
}

/* 三本線 */
.menu-btn {
  display: flex;
}

/* OPEN時の切り替え */
.is-open .menu-btn {
  display: none;
}

.is-open .nav-btn__x {
  display: flex;
}

/* メニュー */
.b-header-nav {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.is-open .b-header-nav {
  pointer-events: auto;
  opacity: 1;
}

/* ------下層ページヒーローエリア------ */
.b-hero-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 100%;
  height: 180px;
  margin-top: 90px;
  /* fixedヘッダー分 */
  margin-bottom: 30px;
  background-color: var(--bcolor-lightBlue);
}

.b-main-title span {
  text-align: center;
}

/* ------フッターここから------ */
.b-footer {
  border-top: 5px solid var(--bcolor-lightBlue);
}

.b-footer__inner {
  margin-top: 120px;
}

.b-footer__address {
  text-align: center;
}

.b-footer__address p {
  padding: 30px 0 60px;
}

.b-footer-nav ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}

.b-footer-nav {
  padding-bottom: 60px;
  border-bottom: 1px solid var(--color-black);
}

.b-footer-nav li a {
  border-bottom: 1px solid var(--color-blue);
  transition: color 0.3s ease;
}

.b-footer__info {
  text-align: center;
}

/* ひばりケアプランセンターここから */
.b-footer__hibari {
  padding: 30px 0;
  border-bottom: 1px solid var(--color-black);
}

.b-footer__hibari a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  height: 50px;
  font-size: 18px;
  cursor: pointer;
}

.b-footer__hibari a:first-of-type::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 9px;
  width: 100%;
  height: 1px;
  border-top: 1px solid var(--color-blue);
}

.b-footer__hibari img {
  width: 20px;
}

/* ユニケアここから */
.b-footer__unicare {
  padding: 30px 0;
  border-bottom: 1px solid var(--color-black);
}

.b-footer__unicare-title {
  font-size: 18px;
}

.b-footer__unicare-sns {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  cursor: pointer;
}

.b-footer__unicare-sns a {
  display: inline-flex;
  align-items: center;
  padding: 5px;
}

.b-footer__unicare-sns img {
  width: 30px;
  height: 30px;
}

/* ユニケア大阪中央出張所ここから */
.b-footer__facility li>a:first-of-type {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--color-blue);
  cursor: pointer;
}

.b-footer__facility img {
  width: 20px;
}

.b-footer__facility li {
  padding-top: 30px;
}

/* コピーライトここから */
.copyright {
  padding: 30px 0 120px;
  text-align: center;
}


/* ------アバウトここから------ */
.about {
  text-align: center;
}

.b-intro span {
  display: inline;
  background: linear-gradient(transparent 60%, var(--color-green) 40%);
  line-height: 1.5;
}

.about-txt {
  text-align: center;
}

/* ------お問い合わせフォームここから------ */
.form--contact {
  margin-top: 90px;
}

input[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

.form--contact input {
  width: 30px;
  height: auto;
}

.form dt {
  width: 100%;
  margin: 10px 0;
  font-weight: normal;
}

.form-text-area {
  width: 100%;
  margin-bottom: 20px;
  padding: 10px;
  background-color: #fff;

}

.form dd textarea {
  width: 100%;
  height: 350px;
}

.form--contact input,
.form--contact textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  background-color: #fff;
  border: 1px solid var(--color-black);
}

input,
form-text-area,
select {
  scroll-margin-top: 150px;
}

.radio-text {
  display: inline-block;
  white-space: nowrap;
}

.form-actions .btn {
  width: 312px;
  height: 60px;
  margin: 30px 0;
  padding: 10px;
  font-size: 20px;
  text-align: center;
  color: var(--color-white);
  background-color: var(--color-blue);
  border-radius: 10px;
  box-shadow: 0 3px 2px rgba(0, 0, 0, .3);
}


.form--contact a {
  cursor: pointer;
}

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-actions .form-link {
  margin: 0;
  text-align: center;
}

.privacy-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  margin-right: 15px;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

.privacy-checkbox {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.checkbox-text a {
  text-decoration: underline;
  color: var(--color-blue);
}

.checkbox-text::after {
  content: "必須";
  margin-left: 1em;
  padding: 0em 0.5em;
  color: #fff;
  background-color: #FF5E5E;
}

.form-link {
  text-decoration: underline;
  color: var(--color-blue);
}

.form-link h3 {
  margin-bottom: 60px;
}

/* トップページここから
=================================== */
/*  メインビジュアルここから  */
.b-main-visual {
  position: relative;
  width: 100%;
  min-height: 380px;
  margin: 90px auto;
  background-image: url(./images/top/b-main-visual-sp.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.b-main__txt {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  gap: 1em;
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
}

.b-main__txt__right,
.b-main__txt__left {
  font-size: clamp(24px, 3vw, 42px);
  padding: 10px;
  letter-spacing: 0.2em;
  text-orientation: upright;
  writing-mode: vertical-rl;
  background: rgba(255, 255, 255, 0.6);
}

.b-main__txt__right {
  margin-bottom: 2em;
}

.b-main__blue {
  color: var(--color-blue);
}

.b-sectionup {
  margin-top: 60px;
}

/* アバウトここから */
.about__txt h3 {
  margin-bottom: 2em;
}

.b-sub-title__key {
  display: flex;
  justify-content: center;
}

.b-sub-title__key::before {
  content: '「';
  margin-bottom: auto;
  margin-right: 0.5em;
}

.b-sub-title__key::after {
  content: '」';
  margin-top: auto;
}

/* 事業内容ここから */
.b-business {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: var(--bcolor-lightBlue);
}

.b-business__item {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  min-width: 0;
}

.b-business__item::after {
  display: block;
  padding: 10px;
  border: 2px dotted var(--color-black);
}

.b-business__image {
  width: 100%;
  object-fit: cover;
  margin-top: 3em;
}

.b-business__txt__box img {
  max-width: 40px;
  height: auto;
}

.b-business__logo {
  width: 50px;
  height: 50px;
}

.b-business__txt__box {
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: clamp(20px, 3vw, 42px);
  gap: 0.5em;
  padding-bottom: 0.5em;
  border-bottom: var(--color-blue) solid 5px;
}

.b-business__txt p {
  margin: 1.5em auto;
}

.btn:hover {
  box-shadow: none;
  opacity: 0.5;
}

.btn__hbr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 20px;
  gap: 1em;
  margin: auto;
}

.b-business__link-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  background-color: var(--color-white);
  border-radius: 50%;
}

.b-business__link-img::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(./images/common/link.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.b-business__list>li+li::before {
  content: '';
  display: block;
  height: 10px;
  margin: 60px auto;
  background-image: radial-gradient(circle, var(--color-black) 2.5px, transparent 2.5px);
  background-repeat: repeat-x;
  background-size: 25px 5px;
  background-position: left bottom;
}

.b-business__link {
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 1em auto;
  margin: auto;
}

.b-business__link ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1em;
  padding: 2em clamp(10px, 4.3%, 1.5em);
}

.b-business__link li {
  border-bottom: var(--color-blue) solid 1px;
  width: calc((100% - 1em) / 2);
  min-width: 242px;
  text-align: center;
}

.b-business__link a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
  padding: 0.3em;
}

.b-business__link img {
  width: 20px;
  margin: 0 0.2em 3px 0;
}

/* 企業理念ここから */
.philosophy {
  text-align: center;
}

/* 代表挨拶ここから */
.message {
  background-color: var(--bcolor-lightBlue);
  padding: 60px 0;
}

.message__image {
  object-fit: cover;
  width: auto;
}

.message__txt {
  width: 90%;
  margin: auto;
  margin-top: 60px;
}

.message__txt p {
  margin-top: 1em;
}

.message__txt h3 {
  margin-top: 1em;
  text-align: end;
}

/* 沿革ここから */
section.history {
  margin-bottom: 0;

}

.history__txt dl::before {
  content: '';
  position: absolute;
  width: 27px;
  height: 27px;
  background-color: var(--color-green);
  border-radius: 50%;
}

.history__txt dl {
  position: relative;
}

.history__txt dt {
  position: relative;
  padding-left: 13%;
}

.history__txt dd {
  position: relative;
  padding: 1em;
  padding-left: 15%;
}

.history__txt dl::after {
  content: '';
  position: absolute;
  left: 13px;
  top: 9px;
  bottom: -9px;
  background-color: var(--color-green);
  width: 2px;
}

.history__txt dl:last-child::after {
  content: none;
}


/* 会社概要ここから */
section.b-info {
  margin-top: 30px;
  padding-top: 90px;
}

.b-info__content {
  padding: auto;
}

.b-info iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}


/* お問い合わせここから */
.contact {
  margin: 0;
  padding: 80px 0;
  text-align: center;
  background-color: var(--bcolor-lightBlue);
}

.contact p {
  margin-bottom: 60px;
}

.b-contact__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.b-contact__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 90px;
  font-size: 26px;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 2px 5px 12px #909090;
}

.b-contact__contact {
  color: var(--color-white);
  background-color: var(--color-blue);
}

.b-contact__recruit {
  color: var(--color-black);
  background-color: var(--color-green);
}

.b-contact__btn a::after {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
  border: var(--color-white) 3px solid;
  border-radius: 10px;
}

/* 採用情報ここから
=================================== */
/* ------ヒーローエリアここから------ */
.hero-area h1 {
  margin-top: 90px;
  padding: 30px 0;
  background-color: var(--bcolor-lightBlue);
}


/* ------ 募集要項ここから------ */
.tag-input {
  display: none;
}

.b-main-title+p {
  text-align: center;
}

.job-btn {
  display: block;
  padding: 15px 0;
  margin: 30px 0;
  background-color: var(--bcolor-lightBlue);
  box-shadow: 2px 5px 12px #909090;
  transition: all 0.3s ease;
}

.job-btn:hover {
  box-shadow: none;
}

.job-desc-content {
  display: none;
  margin-top: 60px;
}

.job-desc-content.is-active {
  display: block;
}

input[type="radio"]:checked+.job-btn {
  color: var(--color-white);
  background-color: var(--color-blue);
  box-shadow: none;
}

.job-btn span {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-text {
  font-size: 20px;
  font-weight: bold;
}

.job-desc h3 {
  margin: 20px 0;
  padding-left: 1em;
  font-weight: bold;
  border-left: 8px solid var(--color-blue);
}

.b-job-table th,
.b-job-table td {
  padding: 1em;
  text-align: left;
}

.entry-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 312px;
  margin: 30px auto;
  padding: 10px;
  font-size: 26px;
  text-align: center;
  color: #fff;
  background-color: var(--color-blue);
  border-radius: 10px;
  box-shadow: 2px 5px 12px #909090;
}

/* ------ 採用までの流れここから------ */
.b-flow--list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.b-flow--item span {
  display: block;
  color: var(--color-blue);
}

.b-flow--item img {
  width: 150px;
  height: 150px;
  margin: 20px 0;
}

.b-flow--item {
  position: relative;
  padding: 20px 0;
  text-align: center;
  background-color: #fff;
  border: 4px solid var(--color-green);
}

.b-flow--item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -32px;
  width: 25px;
  height: 25px;
  background: url("./images/recruit/b-arrow-green.svg") no-repeat center/contain;
}

/* ------ Q&A ------*/

.b-faq {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--bcolor-lightBlue);
}

.faq--item {
  margin: 30px 0;
  padding: 10px;
  background-color: #fff;
  border: 1px solid var(--color-black);
}

.faq--q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  cursor: pointer;
  list-style: none;
}

summary img {
  width: 16px;
  height: 16px;
  transform: rotate(0deg);
  transition: transform 0.3s;
}

details[open] summary img {
  transform: rotate(180deg);
}

.faq--a {
  padding: 15px;
  border-top: 1px solid var(--color-black);
}

/* ------ 応募フォームここから------ */
#recruit-form:target {
  scroll-margin-top: 120px;
}

.required::before {
  content: "必須";
  padding: 0em 0.8em;
  margin-right: 0.5em;
  color: #fff;
  background-color: #FF5E5E;
}

.any::before {
  content: "任意";
  margin-right: 0.5em;
  padding: 0em 0.8em;
  color: #fff;
  background-color: #7f7f7f;
}

input[type="radio"] {
  width: 13px;
  height: 13px;
  margin-top: 7.1px;
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;

}

.radio-button {
  display: block;
  margin-top: 10px;
}

.radio-button:last-child {
  margin-bottom: 25px;
}

.form--recruit .radio-button:last-child {
  margin-left: 2em;
}

.form dt {
  width: 100%;
  margin: 10px 0;
  font-weight: normal;
}

.form-text-area {
  width: 100%;
  padding: 10px;
  background-color: #fff;
  border: 1px solid var(--color-black);
}

.form dd textarea {
  width: 100%;
  height: 200px;
}

.form .btn {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.privacy-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  margin-right: 15px;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

.privacy-checkbox {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.checkbox-text a {
  color: var(--color-blue);
  text-decoration: underline;
}

.checkbox-text::after {
  content: "必須";
  margin-left: 1em;
  padding: 0em 0.5em;
  color: #fff;
  background-color: #FF5E5E;
}


/* 個人情報保護方針ここから
=================================== */
.privacypolicy {
  margin-top: 90px;
}

.privacypolicy .b-main-title {
  text-align: center;
}

.privacypolicy .b-main-title h2 {
  display: inline-block;
  margin-bottom: 30px;
  padding: 0 8px 6px;
  border-bottom: 1px solid var(--color-black);
}

.privacypolicy__content {
  margin-bottom: 120px;
  padding: 10px;
  border: 3px solid var(--color-black);
}

.privacypolicy__item {
  margin-top: 30px;
}

/* お問い合わせここから
=================================== */
/* ------コンタクトここから------ */
.radio-button {
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  width: fit-content;
  cursor: pointer;
}


/* ひばりケアプランセンターここから
=================================== */
/* ------ページ内共通ここから------ */
#hibari body {
  font-family:
    "IBM Plex Sans JP",
    sans-serif;
}

#hibari :target {
  scroll-margin-top: 0;
}

.h-main-title::after {
  content: '';
  display: block;
  width: 114px;
  height: 6px;
  margin: 12px auto;
  background-image: url(./images/hibari/main-title-deco.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* 画像の角丸・アスペクト比 */
.h-img-rounded img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}

/* ボタンをホバーした時 */
a.h-btn-link {
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease, filter 0.3s ease;
}

a.h-btn-link:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  filter: brightness(115%);
}

/* ------ヘッダーここから------ */
.h-header {
  position: fixed;
  inset: 0;
  z-index: 100;
  height: 64px;
  background-color: var(--color-white);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.h-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  height: 100%;
  padding-left: clamp(8px, 2.1vw, 30px);
  background-color: var(--color-white);
}

.h-header__logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: clamp(16px, 5vw, 20px);
  font-weight: 700;
  line-height: 1.25;
}

.h-header__logo img {
  width: 40px;
  margin-bottom: 4px;
}

/* ハンバーガーメニュー */
.h-nav-btn {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  height: 100%;
  aspect-ratio: 1;
  padding: 6px 14px;
  font-size: 12px;
  line-height: 1;
  color: var(--color-white);
  background-color: var(--color-blue);
}

.h-nav-btn span {
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 3px;
  background-color: var(--color-white);
  border-radius: 2px;
}

.h-nav-btn span {
  transition: all .5s;
}

.h-nav-btn span:nth-of-type(1) {
  top: 15px;
}

.h-nav-btn span:nth-of-type(2) {
  top: 25px;
}

.h-nav-btn span:nth-of-type(3) {
  top: 35px;
}

.h-nav-btn span:last-of-type {
  position: static;
  width: 100%;
  height: auto;
  text-align: center;
  background-color: transparent;
  transform: translateX(0);
}

/* ナビが開いたとき */
.is-open .h-nav-btn span:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translateY(20px) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.is-open .h-nav-btn span:nth-of-type(2) {
  opacity: 0;
}

.is-open .h-nav-btn span:nth-of-type(3) {
  top: 50%;
  -webkit-transform: translateY(-20px) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.is-open .h-nav-btn span:last-of-type {
  opacity: 0;
}

/* ナビメニュー */
.h-header__nav {
  position: absolute;
  top: 64px;
  left: 0;
  z-index: -1;
  width: 100vw;
  font-weight: 500;
  background-color: rgba(0, 0, 0, 0.5);
  transform: translate(0, -100%);
  transition: transform 0.5s ease;
}

.h-header__nav ul {
  background-color: var(--color-white);
}

.h-header__nav li {
  border-top: 1px solid var(--h-color-green);
}

.h-header__nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 30px 0;
  font-size: 20px;
}

.h-header__nav li img {
  width: 30px;
  aspect-ratio: 1;
  margin-bottom: 4px;
}

.h-header__contact {
  text-align: center;
}

.h-header__contact a {
  display: inline-flex;
  margin: 24px 0;
  padding: 10px 20px;
  font-size: 24px;
  line-height: 1.25;
  color: var(--color-white);
  background-color: var(--color-blue);
  border-radius: 10px;
  box-shadow: none;
}

.h-header__contact a:hover {
  color: var(--color-white);
}

/* ナビが開いたとき */
.is-open .h-header__nav {
  transform: translate(0, 0);
}

body.is-open {
  overflow: hidden;
}

/* ナビの背面 */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: -10;
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.5s ease;
}

.is-open .nav-overlay {
  visibility: visible;
  opacity: 1;
}

/* ------メインビジュアルここから------ */
.h-main-visual {
  position: relative;
  height: 100vw;
  margin-top: 64px;
  background-image: url(./images/hibari/h-main-visual.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.h-main-visual__txt {
  display: inline-grid;
  justify-items: start;
  gap: 8px;
  position: absolute;
  bottom: 16px;
  left: 16px;
}

.h-main-visual__txt h1 {
  font-size: clamp(32px, 6vw, 48px);
}

.h-main-visual__row span {
  font-size: clamp(42px, 8vw, 62px);
}

.h-main-visual__txt p {
  font-size: clamp(20px, 5.5vw, 42px);
  font-weight: 700;
  line-height: 1.25;
}

.h-main-visual__row,
.h-main-visual__txt p {
  display: inline-block;
  padding: 8px 8px 4px;
  background-color: var(--color-white);
  border-radius: 10px;
}

.h-main-visual__row:nth-last-of-type(+1) {
  margin-top: 8px;
}

.h-main-visual__row span,
.h-main-visual__txt p {
  color: var(--color-blue);
}

/* ------お悩みここから------ */
section.worry {
  margin-bottom: 90px;
}

.worry__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px clamp(16px, 5%, 60px);
}

.worry__list li {
  display: grid;
  place-items: center;
  width: clamp(150px, 100%, 240px);
  aspect-ratio: 85 / 74;
  text-align: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.worry__list li:first-of-type {
  background-image: url(./images/hibari/worry-bg-1.svg);
}

.worry__list li:nth-of-type(2) {
  background-image: url(./images/hibari/worry-bg-2.svg);
}

.worry__list li:nth-of-type(3) {
  background-image: url(./images/hibari/worry-bg-3.svg);
}

.worry__list li:nth-of-type(4) {
  background-image: url(./images/hibari/worry-bg-4.svg);
}

.worry__list li:nth-of-type(5) {
  background-image: url(./images/hibari/worry-bg-5.svg);
}

.worry__list li:nth-of-type(6) {
  background-image: url(./images/hibari/worry-bg-6.svg);
}

.worry__list li:nth-of-type(3),
.worry__list li:nth-of-type(4) {
  margin-left: auto;
}

.worry__list::after {
  content: '';
  display: block;
  grid-column: 1 / 3;
  width: 100%;
  aspect-ratio: 10 / 7;
  background-image: url(./images/hibari/worry-family.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* ------解決策ここから------ */
section.solution {
  margin-top: 90px;
}

.solution .h-main-title span {
  color: var(--color-blue);
}

.solution__txt {
  text-align: center;
}


/* ------事業内容ここから------ */
.h-business {
  padding: 120px 0;
  background-color: var(--h-color-lightGreen);
}

.h-business__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.h-business__txt {
  padding: 30px max(4.2%, 16px);
  background-color: var(--color-white);
  border-radius: 20px;
}

.h-business__txt h3 {
  margin-bottom: 30px;
}

.h-business__img {
  display: grid;
  gap: 30px;
}

.h-business__img li {
  width: 80%;
}

.h-business__img li:nth-of-type(2n-1) {
  margin: auto auto 0 0;
}

.h-business__img li:nth-of-type(2n) {
  margin: 0 0 auto auto;
}

/* ------大切にしているポイントここから------ */
.point__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 600px;
  margin: 0 auto;
}

.point__list li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}

.point__list li:nth-of-type(2n) {
  justify-content: flex-end;
}

.point__list figure {
  flex: 0 0 100px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.point__list li h3 {
  flex: 0 0 11em;
}

.point__list li:nth-of-type(2n) h3 {
  flex: 0 0 9.1em;
}

/* ------料金についてここから------ */
section.price {
  margin-bottom: 0;
}

.price__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 60px max(4.2%, 16px);
  border: 6px solid var(--color-blue);
  border-radius: 20px;
}

.price__txt {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price__txt h2 {
  min-width: 276px;
  background: linear-gradient(180deg, transparent 0%, transparent 70%, rgba(252, 200, 0, 1) 70%, rgba(252, 200, 0, 1) 90%, transparent 90%, transparent 100%);
}

.price__txt h2 span {
  font-size: 60px;
  color: var(--color-blue);
}

.price__img {
  width: 200px;
}

/* ------ご利用の流れここから------ */
section#h-flow {
  margin-top: 0;
  padding-top: 120px;
}

.h-flow__list {
  display: grid;
  gap: 30px;
}

.h-flow__list li {
  position: relative;
  padding-top: 76px;
}

.h-flow__number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 8px;
  width: 100px;
  height: 100px;
  padding-top: 0.4em;
  aspect-ratio: 1;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: var(--color-white);
  background-image: url(./images/hibari/h-flow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.h-flow__number span {
  font-size: 50px;
  line-height: 1;
}

.h-flow__txt {
  padding: 40px 16px 16px;
  background-color: var(--h-color-green);
  border-radius: 20px;
}

.h-flow__txt h3 {
  margin-bottom: 30px;
  text-align: center;
}



/* ------ご利用者さまの声ここから------ */
.voice {
  padding: 120px 0;
  background-color: var(--h-color-lightGreen);
}

.voice__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.voice__list li {
  display: block;
  padding: 30px max(4.2%, 16px);
  background-color: var(--color-white);
  border-radius: 20px;
}

.voice__title {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.voice__title figure {
  width: 40%;
  max-width: 130px;
}

.voice__name {
  flex-grow: 1;
  min-width: 159px;
}

.voice__list h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}

.voice__list h3 span {
  display: inline-block;
  padding: 0.25em 0.3em 0.1em;
  font-size: 80%;
  line-height: 1;
  color: var(--color-white);
  background-color: var(--color-blue);
  border-radius: 5px;
}

/* ------事業所案内ここから------ */
.h-info__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.h-info__txt h3 {
  margin-bottom: 30px;
}

.h-table {
  width: 100%;
}

.h-table tr {
  border-bottom: 1px dotted var(--color-blue);
}

.h-table th,
.h-table td {
  padding-top: 10px;
  padding-bottom: 10px;
}

.h-table tr:first-of-type th,
.h-table tr:first-of-type td {
  padding-top: 0;
}

.h-table th {
  width: 35%;
  min-width: 100px;
  padding-left: 0.2em;
  font-weight: 500;
}

.h-table td {
  padding-right: 0.2em;
}

.h-table__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}

.h-table__link img {
  flex: 0 0 20px;
  width: 20px;
}

/* ------お問い合わせここから------ */
.h-contact {
  margin-bottom: 0;
  padding: 120px 0;
  background-image: url(./images/hibari/h-contact.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.h-contact__txt {
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 0 0 5px var(--color-white);
}

.h-contact__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  max-width: 360px;
  margin: 0 auto;
  padding: 16px 16px 16px 24px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-white);
  background-color: var(--color-blue);
  border-radius: 50px;
}

.h-contact__btn figure {
  flex: 1 1 40px;
  display: grid;
  justify-items: end;
}

.h-contact__btn img {
  place-items: center;
  width: min(100%, 40px);
}

.h-contact__btn p {
  flex: 1 0 auto;
}

.h-contact__btn span {
  font-size: 20px;
}

.h-contact__btn::after {
  content: '';
  flex: 0 1 32px;
  display: block;
  width: 32px;
  height: 32px;
  background-image: url(./images/hibari/h-contact-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* ------フッターここから------ */
.h-footer {
  padding: 90px 0 15px;
  background-color: var(--h-color-lightGreen);
}

.h-footer__container {
  display: grid;
  gap: 60px;
}

.h-footer__address {
  text-align: center;
}

.h-footer__address a h2 {
  display: inline-block;
  margin-bottom: 0.2em;
  font-size: 20px;
}

.h-footer__nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.h-footer__nav li a {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}

.h-footer__nav img {
  width: 30px;
  margin-bottom: 4px;
}

.h-footer__copy {
  text-align: center;
  line-height: 1.2;
}

.h-footer__copy .sp-br::after {
  content: " ";
}

/* ------固定ボタン------ */
/* お問い合わせボタン */
a.h-fixed__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 114px;
  right: 0;
  width: 50px;
  padding: 5px 5px 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-align: center;
  color: var(--color-white);
  background-color: var(--color-blue);
  border-radius: 5px 0 0 5px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.h-fixed__contact img {
  width: 30px;
  height: 30px;
  aspect-ratio: 1;
}

/* page-top */
a.h-page-top {
  display: grid;
  justify-items: center;
  gap: 10px;
  bottom: 8px;
  right: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8), 0 0 5px rgba(255, 255, 255, 0.8), 0 0 5px rgba(255, 255, 255, 0.8), 0 0 5px rgba(255, 255, 255, 0.8);
  color: var(--color-blue);
  box-shadow: none;
}

a.h-page-top span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: var(--color-blue);
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.5) 1px 1px 5px;
}

a.h-page-top span::after {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(./images/hibari/h-page-top-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

a.h-page-top:hover {
  box-shadow: none;
  filter: brightness(115%);
}

/* =================================================
tablet・PC
================================================= */
@media screen and (min-width: 769px) {

  /* 共通PCここから
  =================================== */
  :target {
    scroll-margin-top: 90px;
  }

  #top:target {
    scroll-margin-top: 150px;
  }

  section+section {
    margin: 180px 0;
  }

  .sp-br {
    display: none;
  }

  /* ------フォントここから------ */
  .page-title {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  /* ------表------ */
  .b-table {
    display: table;
    height: 100%;
    margin-bottom: 0;
  }

  .b-table tr {
    display: table-row;
    border-bottom: thin solid var(--color-black);
  }

  .b-table tr:last-of-type {
    border-bottom: none;
  }


  .b-table th,
  .b-table td {
    display: table-cell;
    vertical-align: middle;
    width: auto;
    text-align: center;
  }

  .b-table th {
    width: 35%;
    border-bottom: none;
    border-right: thin solid var(--color-black);
  }

  .b-table td {
    width: 65%;
  }

  /* ------ページに固定------ */
  /* ページトップ */
  a.b-page-top {
    bottom: 10px;
  }

  /* 表示について */
  a.b-fixed__contact {
    display: none;
  }

  /* 共通セクションPCここから
  =================================== */
  /* ヘッダーメニュー */
  .b-header-nav ul {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 1;
  }

  .b-header-nav li {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 60px;
    padding: 0;
    text-align: center;
    color: var(--color-white);
    background-color: var(--color-blue);
    border-right: 1px solid var(--color-white);
  }

  .b-header__inner {
    display: flex;
    align-items: center;
  }

  .b-header-nav a {
    line-height: 1.2;
  }

  .x-wrap {
    display: none;
  }

  .b-header__img {
    width: 80px;
    height: auto;
  }

  .companyn {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
  }

  .companyt {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
  }

  .b-header-nav {
    position: fixed;
    inset: 90px 0 auto 0;
    height: auto;
    z-index: 100;
    background-color: transparent;
    pointer-events: auto;
    opacity: 1;
  }

  .b-header-nav li:last-child {
    border-right: none;
  }

  .b-header-nav li a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-size: clamp(21px, 2.8vw, 25px);
  }


  .b-header-nav ul {
    max-width: none;
    width: 100%;
    margin: 0;
    background-color: var(--color-white);
  }

  /* フッターメニュー */
  .b-hero-area {
    margin-top: 150px;
    margin-bottom: 0;
  }

  /* フッターメニュー */
  .b-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }

  .b-footer__address,
  .b-footer__info,
  .b-footer__hibari,
  .b-footer__unicare,
  .b-footer__facility .copyright {
    display: block;
    text-align: left;
  }

  .b-footer p {
    padding: 0;
    text-align: left;
  }

  .b-footer-nav,
  .b-footer__hibari,
  .b-footer__unicare {
    border-bottom: none
  }

  .b-footer-nav ul {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .b-footer__info {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 30px;
    margin-top: 20px;
  }

  .b-footer__info li {
    flex-shrink: 0;
    min-width: 410px;
  }

  .b-footer__address {
    flex-shrink: 0;
    width: 200px;
  }

  .b-footer__info>li {
    padding-top: 0;
  }

  .copyright {
    margin: 30px 0;
    text-align: left;
  }

  .b-footer__unicare-head {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .b-footer__unicare-sns {
    margin-top: 0;
  }

  .b-footer__facility li:first-child {
    padding-top: 0;
  }

  .b-footer__unicare-sns {
    gap: 5px;
    width: auto;
    height: 50px;
  }

  .b-footer__unicare {
    padding-top: 10px;
  }

  /* HOME PCここから
  =================================== */
  /* メインビジュアルここから */
  .b-main-visual {
    background-image: url(./images/top/b-main-visual-pc.webp);
    height: calc(100dvh - 80px);
    min-height: 700px;
    margin-top: 80px;
  }

  .b-main__txt {
    bottom: 50px;
    left: 15%;
    transform: translate(-50%, 0);
    gap: 1em;
  }

  /* アバウトここから */
  .b-sub-title__key::before {
    margin-right: 0;
  }

  /* 事業内容ここから */
  .b-business {
    margin: 100px auto;
  }

  .b-business__item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 60px;
  }

  .b-business__image {
    margin: 0;
    flex: 1 1 0;
  }

  .b-business__txt {
    flex: 1 1 0;
  }

  .btn__hbr {
    text-align: right;
    font-size: 24px;
    margin: auto 0 auto auto;
    width: min(100%, 350px);
  }

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

  .dottedline {
    margin: 60px auto;
  }

  .b-business__logo {
    max-width: 80px;
  }

  .b-business .b-sub-title {
    font-size: min(2.5vw, 32px);
  }

  /* 企業理念ここから */
  .philosophy {
    margin: 100px auto;
  }

  /* 代表挨拶ここから */
  .message {
    width: min(92%, 1200px);
    margin-left: auto;
    margin-right: auto;
    padding: 80px 0;
  }

  .message__content {
    display: flex;
    gap: 60px;
  }

  .message__txt {
    margin-top: 0;
  }

  .message__txt p:first-child {
    margin-top: 0;
  }

  .message__image,
  .message__txt {
    flex: 1;
  }

  /* 沿革ここから */
  .history__container {
    display: block;
    max-width: 500px;
    margin: auto;
  }

  .history__txt dl {
    display: flex;
    gap: 60px;
    padding-bottom: 60px;
  }

  .history__txt dd {
    padding: 0;
  }

  /* 会社概要ここから */
  section.b-info {
    margin-top: 90px;
  }

  .b-info__content {
    display: flex;
    gap: 60px;
  }

  .b-info--list,
  .b-info__map {
    flex: 1 1 50%;
  }

  .b-info--item {
    height: 100%;
  }

  /* お問い合わせここから */
  .contact {
    padding: 120px 0;
  }

  .b-contact__btn {
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
    font-size: 32px;
  }

  .b-contact__btn a {
    flex: 1;
    width: 50%;
    max-width: 50%;
    height: 160px;
  }

  /* 採用情報PCここから
  =================================== */
  /* ------ 募集要項ここから------ */
  .hero-area h1 {
    margin-top: 150px;
  }

  .job-desc-tag {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }

  .job-btn {
    padding: 15px;
    width: 50%;
  }

  .main-text {
    font-size: 24px;
    font-weight: bold;
  }

  .b-job-table th,
  .b-job-table td {
    display: table-cell;
    width: auto;
  }

  .b-job-table th {
    vertical-align: middle;
    width: 30%;
    text-align: center;
  }

  .b-job-table td {
    text-align: start;
  }

  /* ------ 採用までの流れここから------ */

  .b-flow--list {
    flex-direction: row;
    gap: 40px;
  }

  .b-flow--item {
    flex: 1;
  }

  .b-sub-title span {
    display: block;
  }

  .b-flow--item:not(:last-child)::after {
    top: 50%;
    right: -38px;
    bottom: auto;
    left: auto;
    transform: rotate(-90deg) translateX(50%);
  }

  /* ------ 応募フォームここから------ */
  #recruit-form:target {
    scroll-margin-top: 200px;
  }

  input,
  form-text-area,
  select {
    scroll-margin-top: 200px;
  }

  /* ひばりケアプランセンターPCここから
  =================================== */
  /* ------ページ内共通ここから------ */
  #hibari body {
    font-size: 20px;
  }

  /* ------メインビジュアルここから------ */
  .h-main-visual {
    height: calc(100dvh - 64px);
    background-position: top center;
  }

  .h-main-visual__txt {
    justify-items: end;
    bottom: 75px;
    right: 45px;
  }

  .h-main-visual__txt h1 {
    font-size: 48px;
  }

  .h-main-visual__row span {
    font-size: 62px;
  }

  .h-main-visual__txt p {
    font-size: 42px;
  }

  .h-main-visual__txt h1,
  .h-main-visual__txt p {
    display: inline-block;
    background-color: var(--color-white);
    border-radius: 10px;
  }

  .h-main-visual__row:nth-of-type(+1) {
    margin-top: 0;
  }

  /* ------お悩みここから------ */
  .worry__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 60px clamp(30px, 3%, 60px);
  }

  .worry__list li {
    width: calc((100% - clamp(30px, 3%, 60px) * 3) / 4);
    min-width: 218px;
  }

  .worry__list li:nth-of-type(3),
  .worry__list li:nth-of-type(4) {
    margin-left: 0;
  }

  .worry__list::after {
    width: calc((100% - 60px) / 2);
  }


  /* ------事業内容ここから------ */
  .h-business__content {
    flex-direction: row-reverse;
    flex-wrap: wrap;
    gap: 60px;
  }

  .h-business__txt,
  .h-business__img {
    flex: 1;
  }

  .h-business__txt {
    min-width: 534px;
    padding: 30px;
  }

  .h-business__img {
    min-width: 350px;
  }

  /* ------大切にしているポイントここから------ */
  .point__list {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 60px;
    max-width: 100%;
  }

  .point__list li {
    flex-direction: column;
    gap: 1em;
    width: 270px;
  }

  .point__list li h3,
  .point__list li:nth-of-type(2n) h3 {
    flex: 0 1 auto;
    text-align: center;
  }

  /* ------料金についてここから------ */
  .price__container {
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
    padding: 90px min(7%, 90px);
  }

  .price__txt {
    align-items: flex-start;
    flex: 1 1 auto;
    width: auto;
    min-width: 312px;
  }

  .price h2 {
    min-width: 312px;
  }

  .price h2 span {
    font-size: 60px;
    color: var(--color-blue);
  }

  .price__img {
    flex: 0 0 max(22%, 200px);
    width: auto;
  }

  /* ------ご利用の流れここから------ */
  section#h-flow {
    margin-top: 60px;
  }

  .h-flow__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }

  .h-flow__list li {
    padding-top: 60px;
  }

  .h-flow__number {
    left: 21px;
  }

  .h-flow__number span {
    font-size: 50px;
    line-height: 1;
  }

  .h-flow__txt {
    height: 100%;
    padding: 40px 30px 16px;
    background-color: var(--h-color-green);
    border-radius: 20px;
  }

  .h-flow__txt h3 {
    margin-bottom: 30px;
    text-align: center;
  }

  /* ------ご利用者さまの声ここから------ */
  .voice__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
  }

  .voice__list li {
    width: calc((100% - 60px * 2) / 3);
    min-width: 300px;
    padding: 30px;
  }

  /* ------事業所案内ここから------ */
  .h-info__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }

  .h-info__txt {
    flex: 1 0 36%;
  }

  .h-table td {
    min-width: 260px;
    padding-right: 0.2em;
  }

  .h-info__img {
    flex: 1 1 50%;
  }

  /* ------お問い合わせここから------ */
  .h-contact__btn {
    max-width: 766px;
    padding: 39px 24px 39px 48px;
    font-size: 42px;
    border-radius: 70px;
  }

  .h-contact__btn figure {
    flex: 1 1 40px;
    display: grid;
    justify-items: end;
  }

  .h-contact__btn p {
    flex: 1 0 auto;
  }

  .h-contact__btn span {
    font-size: 32px;
  }

  .h-contact__btn::after {
    content: '';
    flex: 0 1 32px;
    display: block;
    width: 32px;
    height: 32px;
    background-image: url(./images/hibari/h-contact-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  /* .h-contact__btnをホバーした時 */
  .h-contact__btn:hover {
    filter: brightness(115%);
  }

  /* ------フッターここから------ */
  .h-footer {
    padding: 45px 0 15px;
    background-color: var(--h-color-lightGreen);
  }

  .h-footer__container {
    grid-template-columns: 1fr auto;
    gap: 60px;
  }

  .h-footer__address {
    text-align: start;
  }

  .h-footer__address a h2 {
    font-size: 24px;
    text-align: start;
  }

  .h-footer__nav {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .h-footer__copy {
    grid-column: 1 / 3;
  }
}

/* ------ PC ------ */
@media screen and (min-width: 1025px) {

  /* ------ヘッダーここから------ */
  .h-header {
    height: 80px;
  }

  .h-header__inner {
    padding: 0 min(1.5vw, 30px);
  }

  .h-header__logo {
    font-size: clamp(16px, 1.9vw, 24px);
  }

  /* ハンバーガーメニュー */
  .h-nav-btn {
    display: none;
  }

  /* ナビメニュー */
  .h-header__nav {
    position: static;
    z-index: 0;
    width: auto;
    background-color: transparent;
    transform: translate(0, 0);
  }

  .h-header__nav ul {
    display: flex;
    align-items: center;
    gap: 0 2.6vw;
  }

  .h-header__nav li {
    border-top: none;
  }

  .h-header__nav a {
    font-size: clamp(14px, 1.3vw, 18px);
    padding: 0;
  }

  .h-header__contact a {
    margin: 0;
    padding: 10px;
  }

  .is-open .nav-overlay {
    display: none;
  }

  /* 固定お問い合わせボタン */
  a.h-fixed__contact {
    display: none;
  }

  /* メインビジュアル */
  .h-main-visual {
    height: calc(100dvh - 80px);
    margin-top: 80px;
  }
}