@charset "UTF-8";
/* ------------------------------------------------------------
// SCSS Imports
------------------------------------------------------------ */
/* ------------------------------------------------------------
style reset
------------------------------------------------------------ */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  border: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
table tr th {
  font-weight: normal;
}

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

button,
input {
  margin: 0;
  padding: 0;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}

/* ------------------------------------------------------------
// Bootstrap
------------------------------------------------------------ */
.container {
  max-width: 1320px;
  padding-left: 20px !important;
  padding-right: 20px !important;
  margin-inline: auto;
}

.row {
  margin-left: -20px !important;
  margin-right: -20px !important;
}

[class*=col-] {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

/* ------------------------------------------------------------
// photo-ofi
------------------------------------------------------------ */
.photo-ofi {
  height: 0;
  display: block;
  background-color: #fafafa;
  overflow: hidden;
  position: relative;
  padding-bottom: 75%;
}
.photo-ofi img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  font-family: "object-fit: scale-down;";
  position: absolute;
  left: 0;
  top: 0;
}

/* ------------------------------------------------------------
// paging
------------------------------------------------------------ */
div.paging span.current,
div.paging span.paging-text {
  margin: 0px 2px;
  color: #333333;
  border: 1px solid #cccccc;
  display: inline;
  zoom: 1;
  display: inline-block;
  overflow: hidden;
  text-decoration: none;
}

div.paging span.paging-text a {
  padding: 3px 8px;
  display: block;
}

div.paging span.current {
  background: #cc0000;
  border: 1px solid #663366;
  color: #ffffff;
  display: inline;
  zoom: 1;
  padding: 3px 8px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

div.paging span.paging-text a:hover {
  background: #cccccc;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

/* ============================================================
// 初期共通設定（common.scss）
// 全プロジェクトで共通利用するベーススタイル
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

html,
body {
  height: 100%;
}

html {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-y: scroll;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.google-maps iframe {
  vertical-align: bottom;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
}

.clickable {
  cursor: pointer;
}

.txt-right {
  text-align: right;
}

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

.txt-left {
  text-align: left;
}

.pagetop {
  position: fixed;
  right: 15px;
  bottom: 15px;
  transform: translateY(100px);
  opacity: 0;
  z-index: 10;
}
.pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
}

.pagetop.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pagetop.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* tel:リンクはテキスト色を継承させる */
a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}
@media print {
  a[href^="tel:"] {
    text-decoration: none;
  }
}

.reveal {
  --dur: 1.2s; /* 速度 */
  --ease: cubic-bezier(0.45, 0, 0.55, 1); /* 最初と最後がゆっくり */
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  will-change: transform, opacity;
}

/* 出現方向 */
.reveal[data-anim=fade] {
  transform: none;
}

.reveal[data-anim=up] {
  transform: translateY(20px);
}

.reveal[data-anim=left] {
  transform: translateX(-20px);
}

.reveal[data-anim=right] {
  transform: translateX(20px);
}

/* 表示後の状態 */
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* 動きを減らすユーザー配慮 */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
/* 印刷時は常に表示 */
@media print {
  .reveal {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
/* ==================================================
// _header.scss
================================================== */
.header-wrap {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  width: calc(100% - 80px);
  height: 118px;
  margin: 30px 40px;
  padding: 20px 40px;
  background: #ffffff;
  border-radius: 16px;
}
.header-wrap .logo {
  max-width: 300px;
}
.header-wrap .logo a img {
  max-height: 100%;
}
.header-wrap .box {
  display: flex;
}
.header-wrap .box .pc-nav {
  display: flex;
  align-items: center;
  margin-right: 60px;
  padding-right: 60px;
  border-right: 2px dotted #e7f9fd;
}
.header-wrap .box .pc-nav ul {
  display: flex;
  gap: 60px;
}
.header-wrap .box .pc-nav ul li a .txt {
  font-weight: 700;
}
.header-wrap .box .pc-nav ul li a .txt-min {
  font-size: 20px;
  color: #92dbe1;
  transition: 0.3s;
}
.header-wrap .box .pc-nav ul li a.current .txt-min, .header-wrap .box .pc-nav ul li a:hover .txt-min {
  color: #134e78;
}
.header-wrap .box .contact-area {
  flex: 1;
  display: flex;
  gap: 40px;
}
.header-wrap .box .contact-area .tel-time-day .tel {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 500;
}
.header-wrap .box .contact-area .tel-time-day .tel i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #134e78;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e7f9fd;
}
.header-wrap .box .contact-area .tel-time-day .time,
.header-wrap .box .contact-area .tel-time-day .day {
  font-size: 12px;
}
.header-wrap .box .contact-area .contact-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  width: 189px;
  height: 100%;
  background: #1e94e8;
  border-radius: 12px;
  transition: 0.3s;
}
.header-wrap .box .contact-area .contact-btn a:hover {
  background: #134e78;
}
@media print, screen and (max-width: 1600px) {
  .header-wrap .box .pc-nav {
    display: none;
  }
}
@media print, screen and (max-width: 1440px) {
  .header-wrap {
    width: calc(100% - 40px);
    margin: 30px 20px;
  }
}
@media print, screen and (max-width: 991px) {
  .header-wrap {
    width: calc(100% - 20px);
    height: 80px;
    margin: 20px 10px;
    padding: 10px 20px;
  }
  .header-wrap .box {
    display: none;
  }
}
@media print, screen and (max-width: 767px) {
  .header-wrap {
    height: 60px;
  }
}
@media print, screen and (max-width: 500px) {
  .header-wrap {
    border-radius: 10px;
  }
}

/* =====================
  スクロール固定（2重スクロール防止）
===================== */
body.is-menu-open {
  overflow: hidden;
}

/* =====================
  ハンバーガー（丸＋フォーカス枠なし）
===================== */
.hamburger {
  display: none;
}

@media screen and (max-width: 1600px) {
  .hamburger {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1001;
    display: inline;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid #333333;
    transition: background-color 0.25s ease;
    /* ★クリック後に出る黒枠（フォーカスリング）を消す */
    /* ===== 開く：3 → 1 → × ===== */
    /* ===== 閉じる：× → 1 → 3 ===== */
  }
}
@media screen and (max-width: 1600px) and (max-width: 991px) {
  .hamburger {
    top: 38px;
    right: 24px;
  }
}
@media screen and (max-width: 1600px) and (max-width: 767px) {
  .hamburger {
    top: 28px;
    right: 18px;
  }
}
@media screen and (max-width: 1600px) {
  .hamburger:focus, .hamburger:focus-visible {
    outline: none;
  }
  .hamburger .hamburger-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 24px; /* ★26 → 24：少し短くして窮屈感を軽減 */
    height: 2px;
    background: #333;
    border-radius: 999px;
    transform: translate(-50%, -50%);
  }
  .hamburger .hamburger-bar.hamburger-bar-top {
    transform: translate(-50%, -50%) translateY(-8px);
  }
  .hamburger .hamburger-bar.hamburger-bar-mid {
    transform: translate(-50%, -50%);
  }
  .hamburger .hamburger-bar.hamburger-bar-bot {
    transform: translate(-50%, -50%) translateY(8px);
  }
  .hamburger.is-open .hamburger-bar-top {
    animation: ham-open-top 0.6s ease forwards;
  }
  .hamburger.is-open .hamburger-bar-mid {
    animation: ham-open-mid 0.6s ease forwards;
  }
  .hamburger.is-open .hamburger-bar-bot {
    animation: ham-open-bot 0.6s ease forwards;
  }
  .hamburger.is-closing .hamburger-bar-top {
    animation: ham-close-top 0.6s ease forwards;
  }
  .hamburger.is-closing .hamburger-bar-mid {
    animation: ham-close-mid 0.6s ease forwards;
  }
  .hamburger.is-closing .hamburger-bar-bot {
    animation: ham-close-bot 0.6s ease forwards;
  }
}
/* ===== keyframes ===== */
/* open */
@keyframes ham-open-top {
  0% {
    transform: translate(-50%, -50%) translateY(-8px) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
@keyframes ham-open-mid {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ham-open-bot {
  0% {
    transform: translate(-50%, -50%) translateY(8px) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
/* close */
@keyframes ham-close-top {
  0% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) translateY(-8px) rotate(0);
  }
}
@keyframes ham-close-mid {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes ham-close-bot {
  0% {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) translateY(8px) rotate(0);
  }
}
/* =====================
  ナビ（右から全画面）
  ・メニュー側だけスクロール可能
  ・スクロールバーは非表示（でもスクロールできる）
  ・中央寄せやめて左上基準
===================== */
.global-nav {
  position: fixed;
  inset: 0;
  z-index: 1000;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s ease;
  pointer-events: none;
  background: #ffffff;
  /* メニュー全体をスクロール容器にする */
}
.global-nav.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.global-nav .global-nav-inner {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* スクロールバー非表示 */
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 90px 40px 40px;
  display: block;
}
.global-nav .global-nav-inner::-webkit-scrollbar {
  display: none;
}
.global-nav .global-nav-inner .global-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.global-nav .global-nav-inner .global-nav-list li {
  margin: 0;
}
.global-nav .global-nav-inner .global-nav-list a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 700;
}
.global-nav .global-nav-inner .global-nav-list a span {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #92dbe1;
  transition: 0.3s;
}
.global-nav .global-nav-inner .global-nav-list a.current span, .global-nav .global-nav-inner .global-nav-list a:hover span {
  color: #134e78;
}

/* ============================================================
// footer（フッター共通）
============================================================ */
footer {
  background: #ffffff;
}

.footer-wrap {
  padding-top: 200px;
}
.footer-wrap .company-info {
  margin-bottom: 20px;
}
.footer-wrap .company-info .logo {
  margin-bottom: 20px;
}
.footer-wrap .footer-table-nav {
  display: flex;
  gap: 60px;
}
.footer-wrap .footer-table-nav .time-table {
  width: calc((100% - 30px) / 2);
}
.footer-wrap .footer-table-nav .time-table table {
  table-layout: fixed;
  width: 100%;
}
.footer-wrap .footer-table-nav .time-table table tr th,
.footer-wrap .footer-table-nav .time-table table tr td {
  text-align: center;
  padding: 15px 5px;
  border: 1px solid #f2f9fe;
}
.footer-wrap .footer-table-nav .time-table table tr th {
  color: #ffffff;
  width: calc((100% - 170px) / 7);
  background: #134e78;
}
.footer-wrap .footer-table-nav .time-table table tr th:first-child {
  width: 160px;
}
.footer-wrap .footer-table-nav .time-table table tr td:first-child {
  background: #e2f1fb;
}
.footer-wrap .footer-table-nav .time-table .note {
  font-size: 14px;
  text-align: right;
  margin-top: 2px;
}
.footer-wrap .footer-table-nav .nav {
  display: flex;
  justify-content: flex-end;
  width: calc((100% - 30px) / 2);
}
.footer-wrap .footer-table-nav .nav ul {
  display: grid;
  grid-template-rows: repeat(3, max-content);
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  gap: 5px 40px;
}
.footer-wrap .footer-table-nav .nav ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  grid-template-rows: repeat(3, max-content);
}
@media print, screen and (max-width: 991px) {
  .footer-wrap .company-info .logo img {
    width: 100%;
    max-width: 154px;
  }
  .footer-wrap .footer-table-nav {
    flex-direction: column;
    gap: 60px;
  }
  .footer-wrap .footer-table-nav .time-table {
    width: 100%;
  }
  .footer-wrap .footer-table-nav .time-table table tr th,
  .footer-wrap .footer-table-nav .time-table table tr td {
    padding: 15px 0;
  }
  .footer-wrap .footer-table-nav .time-table table tr th {
    width: calc((100% - 120px) / 7);
  }
  .footer-wrap .footer-table-nav .time-table table tr th:first-child {
    width: 120px;
  }
  .footer-wrap .footer-table-nav .nav {
    display: none;
  }
}
.footer-wrap .footer-nav-box ul.footer-nav li a {
  display: block;
}

.copyright {
  font-size: 12px;
  text-align: center;
  margin-top: 60px;
  padding: 20px;
  border-top: 1px solid #cccccc;
}

/* ------------------------------------------------------------
// 印刷設定
------------------------------------------------------------ */
@media print {
  a {
    text-decoration: none !important;
  }
  .link-btn {
    display: none !important;
  }
  table,
  p {
    page-break-inside: avoid !important;
  }
  .header-wrap {
    position: static;
  }
  nav,
  .hamburger,
  .pagetop {
    display: none !important;
  }
}
/* ------------------------------------------------------------
// body
------------------------------------------------------------ */
body {
  font-family: "Onest", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #242525;
  line-height: 1.5;
  background: #e7f9fd;
}

/* ------------------------------------------------------------
// spacer
------------------------------------------------------------ */
.spacer {
  height: 120px;
}
@media screen and (max-width: 767px) {
  .spacer {
    height: 60px;
  }
}

/* ------------------------------------------------------------
// Font
------------------------------------------------------------ */
.txt-red {
  color: #d62828;
}

.txt-blue {
  color: #499edf;
}

.txt-area p:not(:last-child) {
  margin-bottom: 20px;
}

/* ------------------------------------------------------------
// link
------------------------------------------------------------ */
a,
a:hover,
a:visited,
a:active {
  color: inherit;
  text-decoration: none;
}
a img,
a:hover img,
a:visited img,
a:active img {
  transition: opacity 0.3s;
}

a:hover img {
  opacity: 0.8;
}

.link-btn a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  width: 200px;
  height: 50px;
  background: #499edf;
  border-radius: 25px;
}
.link-btn a i {
  position: absolute;
  top: 50%;
  right: 30px;
  color: #ffffff;
  transform: translateY(-50%);
  transition: 0.3s;
}
.link-btn a:hover i {
  right: 15px;
}
@media print, screen and (max-width: 767px) {
  .link-btn a {
    height: 40px;
  }
}

/* ------------------------------------------------------------
// table
------------------------------------------------------------ */
.table-base {
  width: 100%;
}
.table-base tr {
  display: grid;
  grid-template-columns: 260px auto;
}
.table-base tr th,
.table-base tr td {
  font-size: 16px;
  text-align: left;
  vertical-align: top;
  padding: 1.5em;
  border-top: 2px solid #ffffff;
}
.table-base tr th {
  font-weight: 600;
  color: #111111;
  background: #edf9d8;
}
.table-base tr:first-child th, .table-base tr:first-child td {
  border-top: none;
}
@media screen and (max-width: 767px) {
  .table-base tr {
    display: flex;
    flex-direction: column;
    border-top: none;
  }
  .table-base tr th,
  .table-base tr td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .table-base tr th {
    padding: 0.6em 1em;
  }
  .table-base tr td {
    padding: 1em 1em 1.5em;
  }
}

/* ------------------------------------------------------------
// Common Content Styles
------------------------------------------------------------ */
.content-wrap {
  width: 100%;
  max-width: 1520px;
  margin: 40px auto 0;
  padding: 120px 40px;
  background: #ffffff;
  border-radius: 32px;
}
@media print, screen and (max-width: 1680px) {
  .content-wrap {
    width: calc(100% - 40px);
    margin: 40px 20px 0;
  }
}
@media print, screen and (max-width: 991px) {
  .content-wrap {
    padding: 60px 0;
  }
}
@media print, screen and (max-width: 767px) {
  .content-wrap {
    width: calc(100% - 20px);
    margin: 20px 10px 0;
    padding: 40px 0;
    border-radius: 10px;
  }
}

.content-box:not(:first-child) {
  margin: 120px 0;
}
@media print, screen and (max-width: 767px) {
  .content-box:not(:first-child) {
    margin: 90px 0;
  }
}

.content-subttl {
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #cccccc;
}
.content-subttl h3 {
  font-size: 36px;
}
.content-subttl h3 span {
  display: block;
  font-size: 24px;
  color: #fab153;
}
@media print, screen and (max-width: 767px) {
  .content-subttl {
    margin-bottom: 20px;
  }
  .content-subttl h3 {
    font-size: 22px;
  }
  .content-subttl h3 span {
    font-size: 16px;
  }
}

.contact-wrap {
  padding-top: 180px;
}
.contact-wrap .blue-box {
  text-align: center;
  margin-bottom: -140px;
  padding: 50px 20px;
  background: #1e94e8;
  border-radius: 36px;
}
.contact-wrap .blue-box .ttl {
  font-size: 36px;
  color: #ffffff;
}
.contact-wrap .blue-box p {
  color: #ffffff;
  margin: 10px 0 30px;
}
.contact-wrap .blue-box .contact-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.contact-wrap .blue-box .contact-box .tel-time-day {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 290px;
  height: 110px;
  padding: 0 25px;
  border: 1px solid #ffffff;
}
.contact-wrap .blue-box .contact-box .tel-time-day .tel {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
}
.contact-wrap .blue-box .contact-box .tel-time-day .tel i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #134e78;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e7f9fd;
}
.contact-wrap .blue-box .contact-box .tel-time-day .time,
.contact-wrap .blue-box .contact-box .tel-time-day .day {
  font-size: 12px;
  color: #ffffff;
}
.contact-wrap .blue-box .contact-box .contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-wrap .blue-box .contact-box .contact-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #1e94e8;
  width: 290px;
  height: 110px;
  background: #ffffff;
  transition: 0.3s;
}
.contact-wrap .blue-box .contact-box .contact-btn a span {
  display: block;
  font-size: 14px;
}
.contact-wrap .blue-box .contact-box .contact-btn a:hover {
  color: #ffffff;
  background: #134e78;
}
@media screen and (max-width: 767px) {
  .contact-wrap {
    padding-top: 60px;
  }
  .contact-wrap .blue-box {
    padding: 40px 20px;
    border-radius: 10px;
  }
  .contact-wrap .blue-box .ttl {
    font-size: 22px;
  }
  .contact-wrap .blue-box p {
    margin: 10px 0 30px;
  }
  .contact-wrap .blue-box .contact-box {
    flex-direction: column;
    gap: 20px;
  }
  .contact-wrap .blue-box .contact-box .tel-time-day {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 110px;
    padding: 0 25px;
  }
  .contact-wrap .blue-box .contact-box .contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .contact-wrap .blue-box .contact-box .contact-btn a {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .contact-wrap .blue-box p br {
    display: none;
  }
}