@charset "UTF-8";
/* =========================================================
reset
========================================================= */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/* =========================================================
base
========================================================= */
html, body {
  overscroll-behavior-x: none;
  width: 100%;
}

html {
  font-size: 62.5%;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  background: #ffffff;
  box-sizing: border-box;
  color: #333;
  font-family: "Noto Sans JP", "IBM Plex Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  min-height: 100dvh;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  margin: 0;
  padding: 0;
}

a {
  cursor: pointer;
  text-decoration: none;
  transition: 0.4s;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}

p {
  color: #000000;
  margin: 0;
  padding: 0;
}

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

figure {
  margin: 0;
  padding: 0;
}

dl, dt, dd, ul, li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pc-show {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-show {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .sp-show {
    display: none;
  }
}

/* =========================================================
breadcrumbs
========================================================= */
.c-breadcrumbs {
  padding: 0 0 24px;
}
.c-breadcrumbs-wrap {
  width: 94%;
  max-width: 1280px;
  margin: auto;
}
.c-breadcrumbs-list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}
.c-breadcrumbs-list li {
  align-items: center;
  color: #777;
  display: flex;
  font-size: 14px;
  line-height: 1.5;
}
.c-breadcrumbs-list li:not(:last-child)::after {
  color: #999;
  content: ">";
  display: inline-block;
  font-size: 1.1rem;
  margin-left: 10px;
}
.c-breadcrumbs-list li:last-child {
  color: #231815;
  font-weight: 700;
}
.c-breadcrumbs-list li a {
  color: #777;
  text-decoration: none;
  transition: opacity 0.3s;
}
.c-breadcrumbs-list li a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 429px) {
  .c-breadcrumbs {
    padding-top: 10px;
  }
  .c-breadcrumbs-list {
    gap: 4px 8px;
  }
  .c-breadcrumbs-list li {
    font-size: 13px;
  }
  .c-breadcrumbs-list li:not(:last-child)::after {
    margin-left: 8px;
  }
}

/* =========================================================
header
========================================================= */
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 100;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
  /* 修正箇所：ロゴをフレックスで並べる */
  /* --- 以下、既存のナビゲーション関連スタイルは変更なし --- */
}
@media screen and (max-width: 991px) {
  .c-header {
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .c-header {
    height: 60px;
  }
}
.c-header.is-scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  /* スクロール時のロゴテキスト反転処理 */
}
.c-header.is-scrolled .c-header-logo a .logo-text {
  filter: brightness(0);
}
.c-header.is-scrolled .c-header-gnav_sub li.tel a {
  color: #333333;
}
.c-header.is-scrolled .c-header-gnav_sub li.tel a::before {
  filter: invert(24%) sepia(85%) saturate(2283%) hue-rotate(174deg) brightness(91%) contrast(101%);
}
.c-header.is-scrolled .c-header-gnav_sub li.recruit a {
  color: #3FA7D1;
  border-color: #3FA7D1;
}
.c-header.is-scrolled .c-header-gnav_sub li.recruit a::after {
  filter: invert(24%) sepia(85%) saturate(2283%) hue-rotate(174deg) brightness(91%) contrast(101%);
}
.c-header.is-scrolled .c-header-gnav_sub li.sns li a img {
  filter: invert(24%) sepia(85%) saturate(2283%) hue-rotate(174deg) brightness(91%) contrast(101%);
}
.c-header.is-scrolled .c-header-gnav_main li a {
  color: #333333;
}
.c-header.is-scrolled .c-header-drawerbtn_item a {
  background-color: #E8F8FF;
}
.c-header-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1800px;
  height: 100%;
  margin: auto;
  padding-inline: 90px 120px;
  transition: padding 0.3s ease;
}
@media screen and (max-width: 1199px) {
  .c-header-wrap {
    padding-inline: 40px 110px;
  }
}
@media screen and (max-width: 991px) {
  .c-header-wrap {
    padding-inline: 30px 100px;
  }
}
@media screen and (max-width: 767px) {
  .c-header-wrap {
    padding-inline: 20px 75px;
  }
}
.c-header-logo a {
  display: flex;
  align-items: center;
  gap: 16px; /* マークとテキストの隙間 */
  line-height: 1;
}
.c-header-logo a img {
  width: 100%;
  height: auto;
  transition: filter 0.3s ease;
}
.c-header-logo a .logo-mark {
  max-width: 60px; /* マークのサイズ */
}
.c-header-logo a .logo-text {
  max-width: 180px; /* テキストのサイズ */
}
@media screen and (max-width: 767px) {
  .c-header-logo a {
    gap: 12px;
  }
  .c-header-logo a .logo-mark {
    max-width: 45px;
  }
  .c-header-logo a .logo-text {
    max-width: 130px;
  }
}
@media screen and (max-width: 991px) {
  .c-header-gnav {
    display: none;
  }
}
.c-header-gnav_sub {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 20px;
       column-gap: 20px;
  padding-block: 6px;
}
.c-header-gnav_sub li.tel a {
  color: #ffffff;
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 1199px) {
  .c-header-gnav_sub li.tel a {
    font-size: 20px;
  }
}
.c-header-gnav_sub li.tel a::before {
  background-image: url("../images/common/icon-phone_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  width: 34px;
  height: 26px;
  margin-right: 8px;
  transition: filter 0.3s ease;
}
@media screen and (max-width: 1199px) {
  .c-header-gnav_sub li.tel a::before {
    width: 26px;
    height: 20px;
  }
}
.c-header-gnav_sub li.tel a:hover {
  opacity: 0.8;
}
.c-header-gnav_sub li.recruit a {
  border-radius: 16px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #ffffff;
  position: relative;
  width: 160px;
  height: 32px;
  padding-right: 20px;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.c-header-gnav_sub li.recruit a::after {
  background-image: url("../images/common/icon-recruit.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  position: absolute;
  right: 12px;
  width: 15px;
  height: 15px;
  transition: filter 0.3s ease;
}
.c-header-gnav_sub li.recruit a:hover {
  opacity: 0.8;
}
.c-header-gnav_sub li.sns .snslist {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.c-header-gnav_sub li.sns .snslist a:hover {
  opacity: 0.8;
}
.c-header-gnav_main {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  -moz-column-gap: 32px;
       column-gap: 32px;
}
@media screen and (max-width: 1199px) {
  .c-header-gnav_main {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.c-header-gnav_main li a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.c-header-gnav_main li a:hover {
  opacity: 0.8;
}
.c-header-drawerbtn {
  position: fixed;
  top: 0;
  right: 0;
}
.c-header-drawerbtn label {
  background: #3FA7D1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  position: relative;
  z-index: 200;
  cursor: pointer;
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 991px) {
  .c-header-drawerbtn label {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .c-header-drawerbtn label {
    width: 60px;
    height: 60px;
  }
}
.c-header-drawerbtn label .icon {
  border-top: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  display: block;
  position: relative;
  width: 36px;
  height: 24px;
}
@media screen and (max-width: 767px) {
  .c-header-drawerbtn label .icon {
    width: 26px;
    height: 18px;
    border-top-width: 2px;
    border-bottom-width: 2px;
  }
}
.c-header-drawerbtn label .icon::before {
  content: "";
  background: #ffffff;
  display: block;
  position: absolute;
  top: calc(50% - 1.5px);
  left: 0;
  width: 100%;
  height: 3px;
}
@media screen and (max-width: 767px) {
  .c-header-drawerbtn label .icon::before {
    height: 2px;
    top: calc(50% - 1px);
  }
}
@media screen and (max-width: 991px) {
  .c-header-drawerbtn_list {
    display: none;
  }
}
.c-header-drawerbtn_item.callender a {
  border-bottom: 1px solid #3FA7D1;
}
.c-header-drawerbtn_item.callender a::before {
  background-image: url("../images/common/icon-callender.svg");
}
.c-header-drawerbtn_item.dl a {
  border-bottom: 1px solid #0b6fa2;
}
.c-header-drawerbtn_item.dl a::before {
  background-image: url("../images/common/icon-dl.svg");
}
.c-header-drawerbtn_item.access a::before {
  background-image: url("../images/common/icon-map.svg");
}
.c-header-drawerbtn_item a {
  background-color: #ffffff;
  color: #0b6fa2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  text-align: center;
  line-height: 1.3;
  width: 90px;
  height: 90px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.c-header-drawerbtn_item a::before {
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-bottom: 6px;
}
.c-header-drawerbtn_item a:hover {
  opacity: 0.9;
}

/* =========================================================
drawer
========================================================= */
.c-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 680px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 501;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.c-drawer::-webkit-scrollbar {
  width: 6px;
}
.c-drawer::-webkit-scrollbar-thumb {
  background-color: #91cde5;
  border-radius: 3px;
}
.c-drawer--wrap {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.c-drawer-btn {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}
.c-drawer-btn label {
  cursor: pointer;
  display: block;
}
.c-drawer-btn .icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: #3FA7D1;
  position: relative;
  transition: background-color 0.3s ease;
}
.c-drawer-btn .icon:hover {
  background-color: #2b8bb2;
}
.c-drawer-btn .icon::before, .c-drawer-btn .icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background-color: #fff;
}
.c-drawer-btn .icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-drawer-btn .icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-drawer-btn .icon .border {
  position: absolute;
  bottom: 8px;
  font-size: 10px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.c-drawer-gnav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
  padding: 90px 20px 40px;
  overflow-y: auto;
  scrollbar-gutter: stable;
  background-color: #ffffff;
  box-sizing: border-box;
}
.c-drawer-gnav > ul, .c-drawer-gnav > p {
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
}
.c-drawer-menu_list {
  padding: 0;
  margin: 0 0 25px 0;
  list-style: none;
}
.c-drawer-menu_item {
  border-bottom: 1px solid #e0e8ed;
}
.c-drawer-menu_item:first-child {
  border-top: 1px solid #e0e8ed;
}
.c-drawer-menu_item .c-drawer-menu_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
}
.c-drawer-menu_item .c-drawer-menu_title, .c-drawer-menu_item > a {
  display: flex;
  align-items: center;
  flex: 1;
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  text-decoration: none;
  padding: 14px 0;
  transition: color 0.3s ease;
}
.c-drawer-menu_item .c-drawer-menu_title:hover, .c-drawer-menu_item > a:hover {
  color: #3FA7D1;
}
.c-drawer-menu_item .toggle-btn {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.c-drawer-menu_item .toggle-btn .icon {
  position: relative;
  width: 14px;
  height: 14px;
}
.c-drawer-menu_item .toggle-btn .icon::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
  background-color: #333333;
}
.c-drawer-menu_item .toggle-btn .icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 6px;
  width: 2px;
  height: 14px;
  background-color: #333333;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.c-drawer-menu_item .c-drawer-submenu {
  list-style: none;
  padding: 0 0 15px 15px;
  margin: 0;
  display: none;
}
.c-drawer-menu_item .c-drawer-submenu li {
  margin-top: 10px;
}
.c-drawer-menu_item .c-drawer-submenu li a {
  font-size: 14px;
  color: #595959;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 6px 0;
  transition: color 0.3s ease;
}
.c-drawer-menu_item .c-drawer-submenu li a::before {
  background-image: url("../images/common/icon-arrow_blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 12px;
}
.c-drawer-menu_item .c-drawer-submenu li a:hover {
  color: #3FA7D1;
}
.c-drawer-menu_item.is-open .c-drawer-submenu, .c-drawer-menu_item:has(.toggle-btn[aria-expanded=true]) .c-drawer-submenu {
  display: block !important;
}
.c-drawer-menu_item.is-open .toggle-btn .icon::after, .c-drawer-menu_item:has(.toggle-btn[aria-expanded=true]) .toggle-btn .icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
.c-drawer-menu_reservelist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0 0 20px 0;
  list-style: none;
}
.c-drawer-menu_reservelist .c-drawer-menu_reserveitem {
  width: 100%;
}
.c-drawer-menu_reservelist .c-drawer-menu_reserveitem a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 10px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.c-drawer-menu_reservelist .c-drawer-menu_reserveitem a[href^=tel] {
  background-color: #ffffff;
  color: #3FA7D1;
  border: 2px solid #3FA7D1;
}
.c-drawer-menu_reservelist .c-drawer-menu_reserveitem a[href^=tel]:hover {
  background-color: white;
}
.c-drawer-menu_reservelist .c-drawer-menu_reserveitem a:not([href^=tel]) {
  background-color: #3FA7D1;
  color: #ffffff;
  border: 2px solid #3FA7D1;
}
.c-drawer-menu_reservelist .c-drawer-menu_reserveitem a:not([href^=tel]):hover {
  background-color: #2d92bb;
  border-color: #2d92bb;
}
.c-drawer-menu_sublist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin: 0 0 20px 0;
  list-style: none;
}
@media (min-width: 768px) {
  .c-drawer-menu_sublist::after {
    content: "";
    flex: 1 1 calc(50% - 6px);
  }
}
.c-drawer-menu_sublist .c-drawer-menu_subitem {
  flex: 1 1 100%;
  min-width: 120px;
}
@media screen and (min-width: 768px) {
  .c-drawer-menu_sublist .c-drawer-menu_subitem {
    flex: 1 1 calc(50% - 6px);
  }
}
.c-drawer-menu_sublist .c-drawer-menu_subitem a {
  display: block;
  width: 100%;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.c-drawer-menu_sublist .c-drawer-menu_subitem a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}
.c-drawer-menu_sublist .c-drawer-menu_subitem a img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-drawer-menu_reservenote {
  font-size: 12px;
  line-height: 1.6;
  color: #666666;
  margin: 0 0 25px 0;
  padding: 0 5px;
}
.c-drawer-menu_reservenote .red {
  color: #E6C003;
  margin-right: 6px;
}
.c-drawer-menu_snslist {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.c-drawer-menu_snslist .c-drawer-menu_snsitem a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #3FA7D1;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.c-drawer-menu_snslist .c-drawer-menu_snsitem a img {
  width: 22px;
  height: 22px;
  display: block;
}
.c-drawer-menu_snslist .c-drawer-menu_snsitem a:hover {
  opacity: 0.8;
}
.c-drawer-menu_snslist .c-drawer-menu_snsitem a:hover img {
  filter: brightness(0) invert(1);
}

#drawer {
  display: none;
}
#drawer:checked + .c-drawer {
  right: 0;
}
#drawer:checked ~ .c-drawer-overlay {
  opacity: 1;
  visibility: visible;
}

.c-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  cursor: pointer;
}

/* =========================================================
footer
========================================================= */
.c-footer {
  /* 背景画像とグラデーションを同時に重ねる指定 */
  background-image: linear-gradient(180deg, rgba(0, 52, 73, 0.9) 0%, rgba(1, 88, 123, 0.75) 80%, rgba(149, 227, 250, 0.5) 100%), url("../images/common/footer-bk.jpg");
  /* 背景画像の表示調整 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* 文字色の基本指定（白文字） */
  color: #ffffff;
  padding: 80px 0 20px 0;
}
@media screen and (max-width: 767px) {
  .c-footer {
    padding: 50px 0 20px 0;
  }
}
.c-footer-wrap {
  width: 94%;
  max-width: 1400px;
  margin: 0 auto;
}
.c-footer-top {
  background: #ffffff;
  border-radius: 18px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 40px 60px;
}
@media screen and (max-width: 991px) {
  .c-footer-top {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-footer-top {
    padding: 30px 20px;
    border-radius: 12px;
  }
}
.c-footer-reserve_head {
  text-align: center;
}
.c-footer-reserve_ttl {
  border-bottom: 1px solid #3FA7D1;
  color: #3FA7D1;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
  padding-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .c-footer-reserve_ttl {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
.c-footer-reserve_ttl .ja {
  color: #333333;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 15px;
  margin-left: 0; /* ネガティブマージンを修正して中央寄せを安定化 */
}
@media screen and (max-width: 767px) {
  .c-footer-reserve_ttl .ja {
    font-size: 13px;
  }
}
.c-footer-reserve_ttl .ja::before {
  background-image: url("../images/common/kira-blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .c-footer-reserve_ttl .ja::before {
    width: 14px;
    height: 14px;
  }
}
.c-footer-reserve_cont {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (max-width: 991px) {
  .c-footer-reserve_cont {
    flex-direction: column;
    row-gap: 30px;
  }
}
.c-footer-reserve_web {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}
@media screen and (max-width: 991px) {
  .c-footer-reserve_web {
    width: 100%;
    border-bottom: 1px dotted #3FA7D1;
    padding-bottom: 30px;
  }
}
.c-footer-reserve_tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}
@media screen and (max-width: 991px) {
  .c-footer-reserve_tel {
    width: 100%;
  }
}
.c-footer-reserve_subttl {
  color: #333333;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .c-footer-reserve_subttl {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.c-footer-reserve_subttl.web::before {
  background-image: url("../images/common/icon-pc.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  width: 64px;
  height: 64px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .c-footer-reserve_subttl.web::before {
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }
}
.c-footer-reserve_subttl.tel::before {
  background-image: url("../images/common/icon-phone.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  width: 64px;
  height: 64px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .c-footer-reserve_subttl.tel::before {
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }
}
.c-footer-reserve_note {
  color: #333333;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-footer-reserve_note {
    font-size: 12px;
  }
}
.c-footer-reserve_note .red {
  color: #E6C003;
  margin-right: 6px;
}
.c-footer-reserve_btn {
  border: 1px solid #3FA7D1;
  border-radius: 30px;
  color: #3FA7D1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 60px;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-footer-reserve_btn {
    font-size: 16px;
    height: 50px;
  }
}
.c-footer-reserve_btn::after {
  background-image: url(../images/common/icon-arrow_blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 767px) {
  .c-footer-reserve_btn::after {
    width: 18px;
    height: 18px;
    right: 15px;
  }
}
.c-footer-middle {
  margin: 0 0 40px;
}
.c-footer-middle_head {
  border-top: 2px solid #ffffff;
  width: 100%;
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .c-footer-middle_head {
    padding: 24px 0;
  }
}
.c-footer-middle_head a img {
  width: 100%;
  max-width: 300px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-footer-middle_head a img {
    max-width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .c-footer-middle_head a img {
    max-width: 160px;
  }
}
.c-footer-middle_head a:hover {
  opacity: 0.8;
}
.c-footer-middle_cont {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 991px) {
  .c-footer-middle_cont {
    flex-direction: column;
    gap: 40px;
  }
}
.c-footer-middle_cont-left {
  width: 24%;
}
@media screen and (max-width: 991px) {
  .c-footer-middle_cont-left {
    width: 100%;
  }
}
.c-footer-middle_cont-address {
  font-style: normal;
  line-height: 2;
  margin-bottom: 20px;
  font-size: 14px;
}
.c-footer-middle_cont-sns {
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.c-footer-middle_cont-sns li a {
  display: block;
  transition: opacity 0.3s ease;
}
.c-footer-middle_cont-sns li a:hover {
  opacity: 0.8;
}
.c-footer-middle_cont-center {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 48%;
}
@media screen and (max-width: 991px) {
  .c-footer-middle_cont-center {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .c-footer-middle_cont-center {
    display: none;
  }
}
.c-footer-middle_cont-nav {
  width: 48%;
}
.c-footer-middle_cont-navttl {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
  font-size: 16px;
  padding: 8px 12px;
  position: relative;
}
.c-footer-middle_cont-navttl::before {
  content: "";
  position: absolute;
  left: 0;
  height: 60%;
  border-left: 3px solid #ffffff;
  top: 50%;
  transform: translateY(-50%);
}
.c-footer-middle_cont-navlist {
  margin-top: 8px;
}
.c-footer-middle_cont-navitem a {
  color: #ffffff;
  display: flex;
  align-items: center;
  font-size: 14px;
  padding: 10px 0;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.c-footer-middle_cont-navitem a:hover {
  opacity: 0.8;
}
.c-footer-middle_cont-navitem a::before {
  background-image: url(../images/common/icon-arrow_white-footer.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  width: 10px;
  height: 12.5px;
  margin-right: 12px;
  flex-shrink: 0;
}
.c-footer-middle_cont-right {
  width: 24%;
}
@media screen and (max-width: 991px) {
  .c-footer-middle_cont-right {
    width: 100%;
  }
}
.c-footer-middle_cont-bnrlist {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 991px) {
  .c-footer-middle_cont-bnrlist {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px 2%;
  }
}
@media screen and (max-width: 767px) {
  .c-footer-middle_cont-bnrlist {
    flex-direction: column;
    gap: 15px;
  }
}
.c-footer-middle_cont-bnritem {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .c-footer-middle_cont-bnritem {
    width: 49%;
  }
}
@media screen and (max-width: 767px) {
  .c-footer-middle_cont-bnritem {
    width: 100%;
  }
}
.c-footer-middle_cont-bnritem a {
  display: block;
  transition: opacity 0.3s ease;
}
.c-footer-middle_cont-bnritem a:hover {
  opacity: 0.8;
}
.c-footer-middle_cont-bnritem a img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.c-footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}
.c-footer-bottom_copyright {
  color: #ffffff;
  font-size: 12px;
}
/*# sourceMappingURL=style-common.css.map */