@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: 1630px;
  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
------------------------------------------------------------ */
.paging {
  text-align: center;
}
.paging .current,
.paging .paging-text {
  overflow: hidden;
  display: inline-block;
  color: #333333;
  margin: 0px 2px;
  zoom: 1;
}
.paging .current a,
.paging .paging-text a {
  display: block;
  padding: 3px 8px;
  border: 1px solid #cccccc;
  transition: 0.3s;
}
.paging .current a:hover,
.paging .paging-text a:hover {
  color: #ffffff;
  background: #0066ff;
  border: 1px solid #0066ff;
  cursor: pointer;
}
.paging .current {
  color: #ffffff;
  padding: 3px 8px;
  background: #003380;
  border: 1px solid #003380;
  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;
}

.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;
}
@media screen and (max-width: 767px) {
  .pagetop a img {
    width: 40px;
    height: 40px;
  }
}

.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);
  }
}
[data-aos] {
  opacity: 0;
  transition: opacity 1s ease-out, transform 1s ease-out;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

[data-aos=fade-up] {
  transform: translateY(20px);
}

[data-aos=fade-down] {
  transform: translateY(-20px);
}

[data-aos=fade-left] {
  transform: translateX(-20px);
}

[data-aos=fade-right] {
  transform: translateX(20px);
}

[data-aos=zoom-in] {
  transform: scale(0.9);
}

[data-aos=zoom-out] {
  transform: scale(1.1);
}

/* ============================================================
// header（ヘッダー共通 + ハンバーガーメニュー + 全画面ナビ）
============================================================ */
header .header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 80px;
  padding: 0 0 0 40px;
  background: #ffffff;
  z-index: 500;
}
header .header-wrap .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  width: 100%;
  max-width: 293px;
  height: 100%;
}
header .header-wrap nav {
  flex: 1;
}
header .header-wrap .gnav ul {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  height: 80px;
  margin-right: 40px;
}
header .header-wrap .gnav ul li {
  min-width: 80px;
}
header .header-wrap .gnav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  height: 100%;
  padding: 0 15px;
}
header .header-wrap .gnav ul li a::after {
  content: "●";
  font-size: 5px;
  color: transparent;
  margin-top: 5px;
  display: block;
  line-height: 1;
  transition: 0.3s;
}
header .header-wrap .gnav ul li a.current::after, header .header-wrap .gnav ul li a:hover::after {
  color: #0066ff;
}
header .header-wrap .youtube-btn {
  display: flex;
}
header .header-wrap .youtube-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 200px;
  height: 80px;
  background: #85ed51;
  transition: 0.3s;
}
header .header-wrap .youtube-btn a .icon img {
  width: 30px;
  height: 22px;
}
header .header-wrap .youtube-btn a .txt {
  text-align: center;
}
header .header-wrap .youtube-btn a .icon-external img {
  width: 12px;
  height: 12px;
}
header .header-wrap .youtube-btn a:hover {
  background: #54bf1f;
}
header .header-wrap .contact-btn {
  display: flex;
}
header .header-wrap .contact-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 200px;
  height: 80px;
  background: #0066ff;
  transition: 0.3s;
}
header .header-wrap .contact-btn a .icon img {
  width: 21px;
  height: 22px;
}
header .header-wrap .contact-btn a .txt {
  color: #ffffff;
  text-align: center;
}
header .header-wrap .contact-btn a:hover {
  background: #003380;
}
@media print, screen and (max-width: 1399px) {
  header .header-wrap {
    padding: 0 0 0 20px;
  }
  header .header-wrap .logo {
    max-width: 240px;
  }
  header .header-wrap .gnav {
    display: none;
  }
  header .header-wrap .youtube-btn {
    display: none;
  }
  header .header-wrap .contact-btn {
    display: none;
  }
}
header .header-space {
  height: 80px;
}

/* ------------------------------------------------------------
// 全画面ナビゲーション
------------------------------------------------------------ */
/* ------------------------------------------------------------
// ハンバーガーメニューアイコン
------------------------------------------------------------ */
.hamburger {
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  width: 48px;
  height: 48px;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  background-color: transparent;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #111;
  transition: all 0.3s ease;
}
.hamburger span:nth-child(1) {
  top: 14px;
}
.hamburger span:nth-child(2) {
  top: 23px;
}
.hamburger span:nth-child(3) {
  top: 32px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 23px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 23px;
}
@media print, screen and (max-width: 1399px) {
  .hamburger {
    display: flex;
  }
}

/* ------------------------------------------------------------
// 全画面ナビゲーション
------------------------------------------------------------ */
.fullscreen-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  background: url(../images/common/sp-nav-bg.jpg) no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  z-index: 999;
  overflow-y: auto; /* 縦スクロールを許可 */
  overflow-x: hidden; /* 横スクロールは禁止 */
  -webkit-overflow-scrolling: touch; /* iOS滑らかスクロール */
}
.fullscreen-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.fullscreen-nav ul li {
  margin: 25px 0;
}
.fullscreen-nav ul li a {
  font-size: 20px;
  font-weight: 500;
  color: #121212;
  letter-spacing: 0.05em;
  text-shadow: -1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff, 1px 1px 0 #ffffff;
  transition: 0.5s;
}
.fullscreen-nav ul li a.current, .fullscreen-nav ul li a:hover {
  color: #0066ff;
}
.fullscreen-nav.active {
  opacity: 1;
  visibility: visible;
}

.nav-inner {
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  /* 基本：縦中央配置 */
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-inner ul {
  width: 100%;
  max-width: 400px;
}

/* 縦幅が小さいとき：中央→上部表示に切り替え */
@media (max-height: 500px) {
  .nav-inner {
    align-items: flex-start;
    padding-top: 60px;
  }
}
/* 縦幅がさらに狭くて項目多い場合：左右2列に切り替え */
@media (max-height: 400px) {
  .fullscreen-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }
  .fullscreen-nav ul li {
    width: 45%;
    margin: 15px 5px;
  }
}
body.noscroll {
  overflow: hidden;
  scrollbar-width: none; /* Firefox用 */
}

body.noscroll::-webkit-scrollbar {
  display: none; /* Chrome・Safari・Edge */
}

/* ============================================================
// footer（フッター共通 + ナビゲーション + コピーライト）
============================================================ */
.recruit-wrap {
  margin-top: 160px;
}
.recruit-wrap p {
  text-align: center;
}
@media print, screen and (max-width: 767px) {
  .recruit-wrap {
    margin-top: 100px;
  }
}

.recruit-link-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 60px;
  background: url(../images/common/wellcome.png) no-repeat center center;
}
.recruit-link-btn-wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid #0066ff;
  border-radius: 50%;
  transition: 0.3s;
}
.recruit-link-btn-wrap a .circle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #ffffff;
  line-height: 1.3;
  width: 374px;
  height: 374px;
  background: linear-gradient(to bottom right, #0066ff, #85ed51);
  border-radius: 50%;
}
.recruit-link-btn-wrap a .circle span {
  display: block;
  font-size: 30px;
  text-align: center;
  width: 100%;
  padding-right: 1em;
}
.recruit-link-btn-wrap a .circle .arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
.recruit-link-btn-wrap a:hover {
  border: 1px solid #003380;
}
.recruit-link-btn-wrap a:hover .circle .arrow {
  bottom: 20px;
}
@media print, screen and (max-width: 767px) {
  .recruit-link-btn-wrap a {
    padding: 10px;
  }
  .recruit-link-btn-wrap a .circle {
    font-size: 34px;
    width: 240px;
    height: 240px;
  }
  .recruit-link-btn-wrap a .circle span {
    font-size: 22px;
  }
}

.recruit-line {
  width: 100%;
  max-width: 1000px;
  height: 2px;
  margin: 0 auto;
  background: #78a2d3;
}

.recruit-white-box {
  margin: 90px 0 -400px 0;
}
.recruit-white-box .white-box {
  padding: 0 240px 100px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
}
.recruit-white-box .white-box .recruit-icon-box {
  display: flex;
  gap: 100px;
}
.recruit-white-box .white-box .recruit-icon-box .box {
  width: calc((100% - 200px) / 3);
}
.recruit-white-box .white-box .recruit-icon-box .box .ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
  width: 100%;
  height: 50px;
  background: #0066ff;
  border-radius: 25px;
}
.recruit-white-box .white-box .recruit-icon-box .box .img {
  padding: 30px;
}
.recruit-white-box .white-box .recruit-icon-box .box .img img {
  margin: 0 auto;
}
.recruit-white-box .white-box .recruit-icon-box .box .txt {
  font-size: 14px;
}
@media print, screen and (max-width: 1499px) {
  .recruit-white-box {
    margin: 90px 0 0 0;
  }
  .recruit-white-box .white-box {
    padding: 0 40px 100px;
  }
  .recruit-white-box .white-box .recruit-icon-box {
    gap: 50px;
  }
  .recruit-white-box .white-box .recruit-icon-box .box {
    width: calc((100% - 100px) / 3);
  }
  .recruit-white-box .white-box .recruit-icon-box .box .ttl {
    font-size: 16px;
  }
}
@media print, screen and (max-width: 991px) {
  .recruit-white-box .white-box .recruit-icon-box {
    justify-content: center;
    flex-wrap: wrap;
  }
  .recruit-white-box .white-box .recruit-icon-box .box {
    width: calc((100% - 50px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .recruit-white-box .white-box {
    padding: 0 20px 50px;
  }
  .recruit-white-box .white-box .recruit-icon-box {
    flex-direction: column;
  }
  .recruit-white-box .white-box .recruit-icon-box .box {
    width: 100%;
  }
}

.footer-wrap {
  margin-top: 100px;
}
.footer-wrap .footer-box {
  padding: 15px 0 30px;
  background: url(../images/common/footer-bg.png) no-repeat center center/cover;
}
.footer-wrap .footer-box p {
  text-align: center;
}
.footer-wrap .footer-box .tel-fax-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 130px;
  margin-top: 60px;
}
.footer-wrap .footer-box .tel-fax-box .box .time {
  font-size: 16px;
  height: 20px;
  margin-left: 60px;
}
.footer-wrap .footer-box .tel-fax-box .box .number {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 60px;
  line-height: 1.2;
}
.footer-wrap .footer-box .tel-fax-box .box .number .prefix {
  font-size: 24px;
}
.footer-wrap .footer-box .contact-btn {
  display: flex;
  margin-bottom: 40px;
  padding: 40px 0;
  border-bottom: 2px solid #aaaaaa;
}
.footer-wrap .footer-box .contact-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 780px;
  height: 90px;
  margin: 0 auto;
  background: #0066ff;
  border-radius: 45px;
  transition: 0.3s;
}
.footer-wrap .footer-box .contact-btn a .icon img {
  width: 39px;
  height: 39px;
}
.footer-wrap .footer-box .contact-btn a .txt {
  font-size: 30px;
  color: #ffffff;
  text-align: center;
}
.footer-wrap .footer-box .contact-btn a:hover {
  background: #003380;
}
.footer-wrap .footer-box .footer-logo {
  margin-bottom: 10px;
}
.footer-wrap .footer-box .footer-logo img {
  margin: 0 auto;
}
.footer-wrap .footer-box .footer-tel {
  text-align: center;
}
.footer-wrap .footer-box .footer-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
}
@media print, screen and (max-width: 1199px) {
  .footer-wrap .footer-box .tel-fax-box {
    gap: 50px;
  }
  .footer-wrap .footer-box .tel-fax-box .box .time {
    font-size: 15px;
    margin-left: 52px;
  }
  .footer-wrap .footer-box .tel-fax-box .box .number {
    gap: 15px;
    font-size: 42px;
  }
  .footer-wrap .footer-box .tel-fax-box .box .number .prefix {
    font-size: 18px;
  }
}
@media print, screen and (max-width: 767px) {
  .footer-wrap .footer-box {
    padding: 15px 0 30px;
  }
  .footer-wrap .footer-box .tel-fax-box {
    flex-direction: column;
    gap: 0;
  }
  .footer-wrap .footer-box .tel-fax-box .box .time {
    font-size: 14px;
    margin-left: 52px;
  }
  .footer-wrap .footer-box .tel-fax-box .box .number {
    gap: 15px;
    font-size: 40px;
  }
  .footer-wrap .footer-box .tel-fax-box .box .number .prefix {
    font-size: 16px;
  }
  .footer-wrap .footer-box .contact-btn a {
    height: 50px;
    margin: 0 auto;
    border-radius: 25px;
  }
  .footer-wrap .footer-box .contact-btn a .icon img {
    width: 20px;
    height: 20px;
  }
  .footer-wrap .footer-box .contact-btn a .txt {
    font-size: 20px;
  }
}

.copyright {
  font-size: 12px;
  text-align: center;
  margin-top: 60px;
}

/* ------------------------------------------------------------
// 印刷設定
------------------------------------------------------------ */
@media print {
  body {
    font-size: 12pt;
  }
  a {
    text-decoration: none !important;
  }
  table,
  p {
    page-break-inside: avoid !important;
  }
  .hamburger {
    position: absolute !important;
  }
  .pagetop {
    display: none !important;
  }
  .header-wrap {
    position: static !important;
  }
  .header-space {
    display: none !important;
  }
}
/* ------------------------------------------------------------
// Body
------------------------------------------------------------ */
body {
  font-family: "Noto Serif JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #121212;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }
}

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

.content-ttl-spacer {
  width: 100%;
  height: 340px;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .content-ttl-spacer {
    height: 180px;
  }
}

/* ------------------------------------------------------------
// Display On or Off
------------------------------------------------------------ */
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: inline;
  }
}

/* ------------------------------------------------------------
// Text
------------------------------------------------------------ */
.f-red {
  color: #d62828;
}

.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 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  width: 100%;
  max-width: 300px;
  height: 80px;
  margin: 0 auto;
  background: #0066ff;
  border-radius: 40px;
  transition: 0.3s;
}
.link-btn:hover {
  color: #ffffff;
  background: #003380;
}
@media screen and (max-width: 767px) {
  .link-btn {
    height: 50px;
  }
}

/* ------------------------------------------------------------
// Table
------------------------------------------------------------ */
.table-base {
  width: 100%;
}
.table-base tr {
  display: grid;
  grid-template-columns: 260px auto;
}
.table-base tr th,
.table-base tr td {
  text-align: left;
  vertical-align: top;
}
.table-base tr th {
  padding: 1em 0;
  border-bottom: 1px solid #0066ff;
}
.table-base tr td {
  padding: 1em;
  border-bottom: 1px solid #1b1b1b;
}
.table-base tr td a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.table-base tr:first-child th, .table-base tr:first-child td {
  border-top: none;
}
@media screen and (max-width: 767px) {
  .table-base {
    width: 100%;
  }
  .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 {
    font-weight: 700;
    padding: 0.6em 1em;
    background: #fafafa;
  }
  .table-base tr td {
    padding: 1em 1em 2em;
  }
  .table-base tr td .municipalities {
    font-weight: 700;
  }
}

/* ------------------------------------------------------------
// Common Content Styles
------------------------------------------------------------ */
.content-box {
  padding: 0 40px;
}
.content-box:not(:last-child) {
  margin-bottom: 160px;
}
@media print, screen and (max-width: 767px) {
  .content-box {
    padding: 0 10px;
  }
  .content-box:not(:last-child) {
    margin-bottom: 100px;
  }
}

.page-ttl-img {
  position: relative;
  width: 100%;
  height: 240px;
  margin: 0 0 100px;
  border-radius: 3px;
}
.page-ttl-img .page-ttl {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
}
.page-ttl-img .page-ttl h2 {
  font-size: 40px;
  font-weight: 700;
  color: #121212;
  letter-spacing: 0.2em;
  line-height: 1.1;
}
@media print, screen and (max-width: 767px) {
  .page-ttl-img {
    width: 100%;
    height: 140px;
    margin-bottom: 50px;
  }
  .page-ttl-img .page-ttl {
    height: 60px;
  }
  .page-ttl-img .page-ttl h2 {
    font-size: 28px;
  }
}

.information-ttl-img {
  background: url(../images/information/page-ttl-img.png) no-repeat center center/cover;
}

.business-ttl-img {
  background: url(../images/business/page-ttl-img.png) no-repeat center center/cover;
}

.about-ttl-img {
  background: url(../images/about/page-ttl-img.png) no-repeat center center/cover;
}

.contact-ttl-img {
  background: url(../images/contact/page-ttl-img.png) no-repeat center center/cover;
}

.ripples {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-size: cover;
  z-index: 1;
}

.content-ttl {
  font-size: 72px;
  text-align: center;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 40px;
  color: transparent;
  background: linear-gradient(90deg, #0066ff 20%, #00ffaa 80%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media print, screen and (max-width: 767px) {
  .content-ttl {
    font-size: 32px;
    margin-bottom: 20px;
  }
}

.content-subttl {
  margin-bottom: 40px;
}
.content-subttl .subttl .txt-jp {
  display: inline-block;
  font-size: 42px;
  font-weight: 700;
  color: #144ad1;
  line-height: 1.3;
  padding-top: 10px;
  background: linear-gradient(90deg, #0066ff, #85ed51);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.content-subttl .subttl .txt-en {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  color: #a6a8ab;
  line-height: 1.3;
}
.content-subttl .line {
  height: 1px;
  margin-top: 10px;
  background-image: linear-gradient(to right, #0066ff 0%, #85ed51 100%);
  transform: skew(-15deg);
}
@media print, screen and (max-width: 767px) {
  .content-subttl {
    margin-bottom: 20px;
  }
  .content-subttl .subttl .txt-jp {
    font-size: 24px;
    line-height: 1.4;
  }
  .content-subttl .subttl .txt-en {
    font-size: 12px;
    letter-spacing: 0.05em;
  }
}