@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: 1400px;
  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 .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;
}
.paging .current a:hover,
.paging .paging-text a:hover {
  color: #ffffff;
  background: #aaaaaa;
  border: 1px solid #aaaaaa;
  cursor: pointer;
}
.paging .current {
  color: #ffffff;
  padding: 3px 8px;
  background: #333333;
  border: 1px solid #333333;
  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;
}

body.noscroll {
  overflow: hidden;
}

.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;
}

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

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

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

.clickable {
  cursor: pointer;
}

.pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  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);
  }
}
[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;
  gap: 10px;
  width: 100%;
  height: 80px;
  padding: 0 45px;
  background: #ffffff;
  z-index: 500;
}
header .header-wrap .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
}
header .header-wrap .logo img {
  height: 63px;
}
header .header-wrap nav {
  display: flex;
  gap: 70px;
}
header .header-wrap nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 80px;
}
header .header-wrap nav ul li a {
  font-size: 16px;
}
header .header-wrap nav ul li a.current, header .header-wrap nav ul li a:hover {
  border-bottom: 1px solid #121212;
}
header .header-wrap nav .contact-btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 16px;
  color: #ffffff;
  width: 206px;
  height: 51px;
  background: #121212;
  border-radius: 4px;
  overflow: hidden;
}
header .header-wrap nav .contact-btn a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 28px;
  background: #2f2f2f;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
header .header-wrap nav .contact-btn a span img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: none;
  opacity: 1;
  width: 15px;
  height: 12px;
}
header .header-wrap nav .contact-btn a.animating-hover img {
  animation: arrowOutIn 0.5s forwards;
}
header .header-wrap nav .contact-btn a.animating-leave img {
  animation: arrowOutIn 0.5s reverse forwards;
}
@keyframes arrowOutIn {
  0% {
    left: 50%;
    opacity: 1;
    transform: translateX(-50%);
  }
  30% {
    left: 100%;
    opacity: 0;
    transform: translateX(-50%);
  }
  50% {
    left: -30%;
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    left: 50%;
    opacity: 1;
    transform: translateX(-50%);
  }
}
header .header-wrap .instagram-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  padding-left: 30px;
  border-left: 1px solid #121212;
}
header .header-wrap .instagram-btn img {
  width: 32px;
  height: 32px;
}
@media print, screen and (max-width: 1199px) {
  header .header-wrap {
    padding: 0 20px;
  }
  header .header-wrap .logo img {
    height: 50px;
  }
  header .header-wrap nav {
    display: none;
  }
  header .header-wrap .instagram-btn {
    display: none;
  }
}
header .header-space {
  height: 80px;
}

/* ------------------------------------------------------------
// ハンバーガーメニューアイコン
------------------------------------------------------------ */
.hamburger {
  cursor: pointer;
  display: none;
  position: fixed;
  top: 15px;
  right: 15px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background-color: transparent;
  z-index: 1001;
}
.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: 1199px) {
  .hamburger {
    display: flex;
  }
}

/* ------------------------------------------------------------
// 全画面ナビゲーション
------------------------------------------------------------ */
.fullscreen-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(../images/common/gnav-bg.png) 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: hidden;
}
.fullscreen-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.fullscreen-nav ul li {
  margin: 25px 0;
}
.fullscreen-nav ul li a {
  font-size: 24px;
  text-decoration: none;
  color: #111;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.fullscreen-nav ul li a.current {
  border-bottom: 1px solid #121212;
}
.fullscreen-nav.active {
  opacity: 1;
  visibility: visible;
}

.nav-inner {
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 90px 20px;
  background: rgba(255, 255, 255, 0.9);
  box-sizing: border-box;
}
.nav-inner .instagram-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-inner .instagram-btn img {
  width: 32px;
  height: 32px;
}

body.noscroll {
  overflow: hidden;
}

/* ============================================================
// footer（フッター共通 + ナビゲーション + コピーライト）
============================================================ */
footer .footer-contact-wrap {
  padding: 90px 0;
  background: #4a4947;
}
footer .footer-contact-wrap .footer-img-wrap {
  padding: 140px 0 120px;
  background: url(../images/common/contact-bg.png) no-repeat center center/cover;
}
footer .footer-contact-wrap .footer-img-wrap .footer-contact-box {
  width: 51.2%;
  margin-left: auto;
}
footer .footer-contact-wrap .footer-img-wrap .footer-contact-box .contact-ttl {
  position: relative;
  display: inline-block;
  z-index: 1;
}
footer .footer-contact-wrap .footer-img-wrap .footer-contact-box .contact-ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 40px;
  width: calc(100% + 60px);
  background: #aee8c1;
  z-index: -1;
}
footer .footer-contact-wrap .footer-img-wrap .footer-contact-box .contact-ttl .min-txt {
  font-size: 16px;
  color: #c3ff00;
  line-height: 1.2;
  padding-left: 150px;
}
footer .footer-contact-wrap .footer-img-wrap .footer-contact-box .contact-ttl .txt {
  font-size: 72px;
  color: #ffffff;
  line-height: 1;
  padding-bottom: 14px;
  padding-left: 150px;
}
footer .footer-contact-wrap .footer-img-wrap .footer-contact-box p {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  margin: 30px 0 60px;
  padding-left: 150px;
}
footer .footer-contact-wrap .footer-img-wrap .footer-contact-box .contact-btn {
  padding-left: 150px;
}
footer .footer-contact-wrap .footer-img-wrap .footer-contact-box .contact-btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 16px;
  color: #ffffff;
  width: 206px;
  height: 51px;
  background: #121212;
  border-radius: 4px;
  overflow: hidden;
}
footer .footer-contact-wrap .footer-img-wrap .footer-contact-box .contact-btn a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 28px;
  background: #2f2f2f;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
footer .footer-contact-wrap .footer-img-wrap .footer-contact-box .contact-btn a span img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: none;
  opacity: 1;
  width: 15px;
  height: 12px;
}
footer .footer-contact-wrap .footer-img-wrap .footer-contact-box .contact-btn a.animating-hover img {
  animation: arrowOutIn 0.5s forwards;
}
footer .footer-contact-wrap .footer-img-wrap .footer-contact-box .contact-btn a.animating-leave img {
  animation: arrowOutIn 0.5s reverse forwards;
}
@keyframes arrowOutIn {
  0% {
    left: 50%;
    opacity: 1;
    transform: translateX(-50%);
  }
  30% {
    left: 100%;
    opacity: 0;
    transform: translateX(-50%);
  }
  50% {
    left: -30%;
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    left: 50%;
    opacity: 1;
    transform: translateX(-50%);
  }
}
@media print, screen and (max-width: 1199px) {
  footer .footer-contact-wrap {
    padding: 90px 0;
  }
  footer .footer-contact-wrap .footer-img-wrap {
    padding: 0;
    background: none;
  }
  footer .footer-contact-wrap .footer-img-wrap .footer-contact-box {
    width: 100%;
  }
  footer .footer-contact-wrap .footer-img-wrap .footer-contact-box .contact-ttl::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -20px; /* 超左まで伸ばす */
    height: 40px;
    width: 20px; /* 画面左からテキスト左までをカバー */
    background: #aee8c1;
    z-index: -1;
  }
}
@media print, screen and (max-width: 767px) {
  footer .footer-contact-wrap .footer-img-wrap .footer-contact-box .contact-ttl::before {
    content: "";
    height: 30px;
  }
  footer .footer-contact-wrap .footer-img-wrap .footer-contact-box .contact-ttl::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 30px;
    width: calc(100% + 60px);
    background: #aee8c1;
    z-index: -1;
  }
  footer .footer-contact-wrap .footer-img-wrap .footer-contact-box .contact-ttl .min-txt {
    font-size: 15px;
    padding-left: 0;
  }
  footer .footer-contact-wrap .footer-img-wrap .footer-contact-box .contact-ttl .txt {
    font-size: 40px;
    padding-left: 0;
  }
  footer .footer-contact-wrap .footer-img-wrap .footer-contact-box p {
    font-size: 16px;
    margin: 20px 0 40px;
    padding-left: 0;
  }
  footer .footer-contact-wrap .footer-img-wrap .footer-contact-box .contact-btn {
    padding-left: 0;
  }
}
footer .footer-wrap {
  padding: 80px 0;
  background: #ffffff;
}
footer .footer-wrap .footer-logo {
  margin-bottom: 80px;
}
footer .footer-wrap .footer-logo img {
  width: 309px;
  height: 105px;
}
footer .footer-wrap .footer-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .footer-wrap .footer-box .box nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
footer .footer-wrap .footer-box .box nav ul li a:hover {
  text-decoration: underline;
}
footer .footer-wrap .footer-box .box nav .contact-btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 16px;
  color: #ffffff;
  width: 206px;
  height: 51px;
  background: #121212;
  border-radius: 4px;
  overflow: hidden;
}
footer .footer-wrap .footer-box .box nav .contact-btn a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 28px;
  background: #2f2f2f;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
footer .footer-wrap .footer-box .box nav .contact-btn a span img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: none;
  opacity: 1;
  width: 15px;
  height: 12px;
}
footer .footer-wrap .footer-box .box nav .contact-btn a.animating-hover img {
  animation: arrowOutIn 0.5s forwards;
}
footer .footer-wrap .footer-box .box nav .contact-btn a.animating-leave img {
  animation: arrowOutIn 0.5s reverse forwards;
}
@keyframes arrowOutIn {
  0% {
    left: 50%;
    opacity: 1;
    transform: translateX(-50%);
  }
  30% {
    left: 100%;
    opacity: 0;
    transform: translateX(-50%);
  }
  50% {
    left: -30%;
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    left: 50%;
    opacity: 1;
    transform: translateX(-50%);
  }
}
footer .footer-wrap .footer-box .box:last-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}
footer .footer-wrap .footer-box .box:last-child .address-box span,
footer .footer-wrap .footer-box .box:last-child .address-box a {
  color: #121212;
}
footer .footer-wrap .footer-box .box:last-child .address-box span:hover,
footer .footer-wrap .footer-box .box:last-child .address-box a:hover {
  color: #121212;
}
footer .footer-wrap .footer-box .box:last-child .address-box:first-child {
  margin-left: 80px;
  padding-left: 80px;
  border-left: 1px solid #121212;
}
@media print, screen and (max-width: 991px) {
  footer .footer-wrap .footer-logo {
    margin-bottom: 40px;
  }
  footer .footer-wrap .footer-logo img {
    width: 309px;
    height: 105px;
    margin: 0 auto;
  }
  footer .footer-wrap .footer-box {
    justify-content: center;
    margin-bottom: 60px;
  }
  footer .footer-wrap .footer-box .box:first-child {
    display: none;
  }
  footer .footer-wrap .footer-box .box:last-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
  }
  footer .footer-wrap .footer-box .box:last-child .address-box:first-child {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
}
@media print, screen and (max-width: 767px) {
  footer .footer-wrap .footer-box .box:last-child {
    flex-direction: column;
    gap: 35px;
  }
  footer .footer-wrap .footer-box .box:last-child .address-box {
    text-align: center;
  }
}
footer .copyright {
  font-size: 12px;
  color: #d8d8d8;
  text-align: right;
}

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

/* ------------------------------------------------------------
// spacer
------------------------------------------------------------ */
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

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

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

/* ------------------------------------------------------------
// text
------------------------------------------------------------ */
.txt-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 a {
  display: inline-block;
  position: relative;
  padding-bottom: 4px;
  color: #111111;
  transition: color 0.3s ease;
}
.link-btn a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% + 40px);
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease, background-color 0.3s ease;
}
.link-btn a::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: 1px;
  width: 10px;
  height: 10px;
  border-right: 1px solid currentColor;
  transform: rotate(-45deg);
  transform-origin: bottom right;
  transition: right 0.3s ease, border-color 0.3s ease;
}
.link-btn a:hover {
  color: #000000;
}
.link-btn a:hover::before {
  width: calc(100% + 60px);
}
.link-btn a:hover::after {
  right: -60px;
}

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

/* ------------------------------------------------------------
// Common Content Styles
------------------------------------------------------------ */
.content-wrap {
  margin-bottom: 120px;
}

.cont-box {
  margin: 0 0 120px;
}
@media print, screen and (max-width: 767px) {
  .cont-box {
    margin: 0 0 60px;
  }
}

.page-ttl-img {
  position: relative;
  height: 380px;
  margin-bottom: 120px;
}
@media print, screen and (max-width: 767px) {
  .page-ttl-img {
    height: 280px;
  }
}

.page-ttl {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.page-ttl h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Quicksand", sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #ffffff;
  height: 120px;
}
@media print, screen and (max-width: 767px) {
  .page-ttl h2 {
    font-size: 40px;
    height: 60px;
  }
}

.cont-left-ttl {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.cont-left-ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -9999px; /* 超左まで伸ばす */
  height: 40px;
  width: 9999px; /* 画面左からテキスト左までをカバー */
  background: #aee8c1;
  z-index: -1;
}
.cont-left-ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 40px;
  width: calc(100% + 60px);
  background: #aee8c1;
  z-index: -1;
}
.cont-left-ttl .min-txt {
  font-size: 16px;
  line-height: 1.2;
}
.cont-left-ttl .txt {
  display: flex;
  align-items: baseline;
  gap: 20px;
  font-size: 72px;
  line-height: 1;
  padding-bottom: 14px;
}
.cont-left-ttl .txt img {
  width: 32px;
  height: 32px;
}
@media print, screen and (max-width: 767px) {
  .cont-left-ttl::before {
    content: "";
    height: 30px;
  }
  .cont-left-ttl::after {
    content: "";
    height: 30px;
  }
  .cont-left-ttl .min-txt {
    font-size: 15px;
  }
  .cont-left-ttl .txt {
    gap: 10px;
    font-size: 40px;
  }
  .cont-left-ttl .txt img {
    width: 20px;
    height: 20px;
  }
}

.cont-subttl {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}
.cont-subttl img {
  width: 40px;
  padding-top: 8px;
}
.cont-subttl h3 {
  gap: 10px;
  font-size: 40px;
  font-weight: 700;
  color: #666666;
  line-height: 1;
}
.cont-subttl h3::first-letter {
  font-size: 50px;
  color: #111111;
  margin-right: 2px;
}
.cont-subttl h3 span {
  font-size: 16px;
  font-weight: 500;
  color: #999999;
  margin-left: 0.5em;
}
@media print, screen and (max-width: 767px) {
  .cont-subttl {
    margin-bottom: 30px;
  }
  .cont-subttl img {
    width: 34px;
  }
  .cont-subttl h3 {
    font-size: 30px;
  }
  .cont-subttl h3::first-letter {
    font-size: 40px;
  }
  .cont-subttl h3 span {
    display: none;
  }
}