@charset "UTF-8";
:root {
  --grad-progress: 0;
  --intro-progress: 0;
  --g-padding-s: 2.25rem;
  --g-padding-m: 5rem;
  --g-padding-l: 11.25rem;
  --g-color-base: #BDA13C;
  --g-color-brown: #5E370F;
  --g-color-yellow: #B99B34;
  --g-color-black: #000000;
  --g-color-white: #fff;
  --g-color-border: #707070;
  --g-color-grey: #EBEBEB;
  --g-color-red: #D33333;
  --g-color-green: #46b450;
  --g-color-orange: #ef6400;
  --g-color-pink: #D372EA;
  --g-color-blue: #02648E;
  --g-color-gray: #D2D6D7;
}
@media screen and (max-width: 1500px) {
  :root {
    --g-padding-m: 5rem;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --g-padding-m: 0;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*:focus {
  outline: none;
}

html {
  box-sizing: border-box;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-size: 16px;
}
html::-webkit-scrollbar {
  display: none;
}

body {
  font-family: "Noto Serif JP", serif;
  line-height: 1.6;
  color: var(--g-color-black);
  background-color: var(--g-color-white);
}

@font-face {
  font-family: "MyMincho";
  src: url("fonts/my-mincho.ttf") format("truetype");
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.bg-dark {
  background-color: var(--g-color-black) !important;
  color: var(--g-color-white);
}

.bg-base {
  background-color: var(--g-color-base);
  color: var(--g-color-white);
}

.bg-brown {
  background-color: var(--g-color-brown);
  color: var(--g-color-white);
}

.bg-yellow {
  background-color: var(--g-color-yellow);
  color: var(--g-color-black);
}

.bg-grey {
  background-color: var(--g-color-grey);
  color: var(--g-color-black);
}

.bg-white {
  background-color: var(--g-color-white);
  color: var(--g-color-black);
}

.opa {
  opacity: 0.9;
}

header .header-layer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
header .first-line {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 4rem;
}
@media screen and (max-width: 1500px) {
  header .first-line {
    justify-content: space-between;
  }
}
@media screen and (max-width: 1000px) {
  header .first-line {
    flex-direction: column;
    justify-content: center;
  }
}
header .first-line .css-mobile-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0px;
}
header .first-line .css-mobile-menu #menuToggle {
  display: none;
  flex-direction: column;
  position: relative;
  padding-right: 1.5rem;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}
@media screen and (max-width: 1500px) {
  header .first-line .css-mobile-menu #menuToggle {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  header .first-line .css-mobile-menu #menuToggle {
    display: flex;
  }
}
header .first-line .css-mobile-menu #menuToggle input {
  display: flex;
  width: 40px;
  height: 32px;
  position: absolute;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
}
header .first-line .css-mobile-menu #menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-1px, 0);
}
header .first-line .css-mobile-menu #menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
header .first-line .css-mobile-menu #menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, 0);
}
header .first-line .css-mobile-menu #menuToggle input:checked ~ ul {
  transform: none;
}
header .first-line .css-mobile-menu #menuToggle span {
  display: flex;
  width: 29px;
  height: 2px;
  margin-top: 1px;
  margin-bottom: 5px;
  position: relative;
  background: #000000;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 5px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}
header .first-line .css-mobile-menu #menuToggle span:first-child {
  transform-origin: 0% 0%;
}
header .first-line .css-mobile-menu #menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}
header .first-line #menu {
  position: absolute;
  width: auto;
  min-width: 200px;
  height: auto;
  margin: -50px 0 0 -50px;
  margin-top: 3.28rem;
  padding: 50px;
  padding-top: 80px;
  background-color: #584728;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translateX(100%);
  top: 0;
  right: 0;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  list-style: none;
}
header .first-line #menu li {
  padding: 10px 0;
  transition-delay: 2s;
}
header .first-line #menu li a {
  color: #fff;
  text-decoration: none;
}
@media all and (max-width: 1000px) {
  header .first-line .css-mobile-header #menu {
    width: 100vw;
    height: 100vh;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  header .first-line .css-mobile-header #menu li {
    padding: 1rem 2rem;
  }
  header .first-line .css-mobile-header .css-mobile-menu #menuToggle {
    padding-right: 1rem;
  }
}
header .second-line {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-right: 4rem;
  align-items: center;
  min-height: 4rem;
  color: #000000;
}
@media screen and (max-width: 1500px) {
  header .second-line {
    display: flex;
  }
}
@media screen and (max-width: 1000px) {
  header .second-line {
    display: none;
  }
}
header .second-line ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  width: auto;
  justify-content: flex-end;
  gap: 1rem;
  align-items: center;
}
@media screen and (max-width: 1500px) {
  header .second-line ul {
    display: flex;
  }
}
@media screen and (max-width: 1000px) {
  header .second-line ul {
    display: none;
  }
}
header .second-line ul li {
  text-align: center;
  border: 1.8px solid #91acc9;
  border-color: #91acc9;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, rgba(91, 148, 185, 0.05), rgba(74, 144, 226, 0.05));
}
header .second-line ul li a {
  display: flex;
  gap: 1rem;
  padding: 0.2rem 0.5rem;
  align-items: center;
  text-decoration: none;
  color: #2f4964;
  transition: opacity 0.3s ease;
}
header .second-line ul li a:hover {
  opacity: 0.95;
}
header .second-line ul li a .icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.25rem;
}
header .second-line ul li a .icon svg {
  width: 100%;
  height: 100%;
  fill: #1a72ad;
}
header .second-line ul li a .text {
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  header .second-line ul {
    flex-wrap: wrap;
    gap: 1rem;
  }
  header .second-line ul li {
    flex: 1;
    min-width: 120px;
  }
}
header .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  display: flex;
  align-items: flex-end;
}
header .navbar .navbar-brand,
header .navbar .navbar-nav .nav-link,
header .navbar .tel,
header .navbar .tel a,
header .navbar .btn-outline-light {
  color: var(--g-color-black) !important;
}
header .navbar .dropdown-menu .dropdown-item {
  color: var(--g-color-black) !important;
}
header .navbar .dropdown-menu .dropdown-item:hover {
  color: var(--g-color-black) !important;
  background-color: var(--g-color-grey);
}
header .navbar-brand {
  width: 20%;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  header .navbar-brand {
    width: 70%;
    align-items: center;
    padding-bottom: 0;
  }
}
header .navbar-brand .logo {
  width: 100%;
  height: auto;
  max-height: 3rem;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  header .navbar-brand .logo {
    max-height: 2.5rem;
  }
}
header .tel {
  font-size: 2rem;
  color: var(--g-color-black);
}
header .tel a {
  color: var(--g-color-black);
}
header .navbar-nav {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 1500px) {
  header .navbar-nav {
    display: flex;
  }
}
@media screen and (max-width: 1000px) {
  header .navbar-nav {
    display: none;
  }
}
header .navbar-nav .nav-item {
  border-right: 1px solid #333;
}
header .navbar-nav .nav-item:last-child {
  border-right: none;
}
header .navbar-nav .nav-link {
  display: block;
  padding: 0rem 0rem;
}
@media screen and (max-width: 768px) {
  header .navbar-nav {
    border-top: 1px solid var(--g-color-black);
    align-items: center;
    margin-bottom: 0;
  }
  header .navbar-nav .nav-item {
    border-right: none;
  }
}

header.top-page {
  height: 100vh;
  overflow: hidden;
  padding-right: 0;
  padding-left: 0;
}

.jumbotron {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  min-height: 80vh;
}

.jumbotron-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.jumbotron-content {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 2rem;
  border-radius: 1rem;
  margin-left: 0;
  margin-right: auto;
  z-index: 2;
  position: relative;
  margin-top: 10rem;
  max-width: 40rem;
  min-width: 35rem;
}
@media screen and (max-width: 1000px) {
  .jumbotron-content {
    margin-top: 15rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: unset;
    min-width: unset;
  }
}

@media screen and (max-width: 768px) {
  .jumbotron {
    min-height: unset;
    display: block;
    display: flex;
    flex-direction: column;
    justify-content: end;
  }
  .jumbotron-content {
    width: 100%;
    padding: 1rem;
    margin-top: unset;
    margin-top: auto;
  }
}
.jumbotron-content .ml4 {
  position: relative;
  font-weight: 1000;
  font-size: 2em;
  color: #ffffff;
}
.jumbotron-content .ml4 .letters {
  position: absolute;
  margin: auto;
  left: 0;
  top: 0.3em;
  right: 0;
  opacity: 0;
}

.jumbotron h1 {
  word-wrap: break-word;
}

.jumbotron h2 {
  line-height: 1.8rem;
}

.jumbotron-bg-anim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.jumbotron-bg-anim img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center;
}

@keyframes zoomAnim {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}
#sec1 {
  background-color: rgba(189, 168, 129, 0.7);
}
#sec1 .card:nth-of-type(2) {
  border-left: none;
  border-right: none;
}
#sec1 .slider-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}
#sec1 .slider-wrapper {
  display: flex;
  transition: transform 0.8s ease-in-out;
  height: 100%;
}
#sec1 .slider-slide {
  flex: 0 0 33.333%;
  padding: 0 15px;
  opacity: 0.7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#sec1 .slider-image {
  max-width: 200px;
  max-height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
}
#sec1 .image-caption {
  text-align: center;
  color: #333;
}
#sec1 .caption-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
}
#sec1 .caption-text {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.3;
}
#sec1 .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #ddd;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  color: #333;
}
#sec1 .slider-arrow:hover {
  background: rgb(255, 255, 255);
  border-color: #999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
#sec1 .slider-arrow-left {
  left: 20px;
}
#sec1 .slider-arrow-right {
  right: 20px;
}
@media (max-width: 768px) {
  #sec1 .slider-container {
    height: 350px;
  }
  #sec1 .slider-slide {
    flex: 0 0 100%;
  }
  #sec1 .slider-image {
    max-width: 180px;
    max-height: 130px;
  }
  #sec1 .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

.ttl-bdr {
  font-size: 1.5rem;
  position: relative;
  color: #3d2f2f;
}
.ttl-bdr::before {
  content: "";
  position: absolute;
  color: #3d2f2f;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 0.3125rem solid var(#3d2f2f);
  width: 12%;
  margin: 0 auto -0.9375rem;
}

.ttl-small {
  font-size: 1rem;
  color: #3d2f2f;
}

#sec3 {
  background-image: url("../img/bg-staff.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #sec3 {
    background-image: none;
  }
}

#sec4 table {
  width: 100%;
  background-color: #ccc;
  font-size: 0.75rem;
  color: #666;
  table-layout: fixed;
  border-collapse: collapse;
}
#sec4 table th,
#sec4 table td {
  padding: 0.625rem;
  text-align: center;
  border: 1px solid #ccc;
}
#sec4 table th {
  background-color: #002795;
  color: var(--g-color-white);
}
#sec4 table td {
  width: 14.2%;
}
#sec4 table td:nth-child(7n) {
  background-color: #5197e0;
  color: var(--g-color-white);
}
#sec4 table td:nth-child(7n+1) {
  background-color: #ff8a8c;
  color: var(--g-color-white);
}

.social img {
  width: 2.25rem;
  height: 2.25rem;
}

iframe {
  width: 100%;
  height: 28.125rem;
}

.footer-logo {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .footer-logo {
    width: 100%;
  }
}

#page-top {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  font-size: 80%;
}
#page-top a {
  background: #666;
  text-decoration: none;
  color: var(--g-color-white);
  width: 6.25rem;
  padding: 1.5625rem 0;
  text-align: center;
  display: block;
  border-radius: 0.625rem;
}
#page-top a:hover {
  text-decoration: none;
  background: #999;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:not(:disabled):not(.disabled).active {
  color: #6c757d !important;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.2;
  }
}

@media screen and (max-width: 575.98px) {
  .display-3 {
    line-height: 0.8em;
  }
}

@media screen and (max-width: 575.98px) {
  .display-4 {
    font-size: 2rem;
    line-height: 1.2;
  }
}

@media screen and (max-width: 1199.98px) {
  .herounit h1 {
    margin-top: 10rem;
  }
}

#sec1,
#sec2,
#sec3,
#sec4,
#sec5 {
  scroll-margin-top: 6.25rem;
  padding-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  #sec1,
  #sec2,
  #sec3,
  #sec4,
  #sec5 {
    scroll-margin-top: 4rem;
    padding-top: 1rem;
  }
}

.navbar-expand-md .navbar-nav .nav-link {
  padding-right: 1rem;
  padding-left: 1rem;
}
.navbar-expand-md .navbar-nav .nav-link .fab.fa-line {
  color: #00b900;
}

@keyframes popIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  70% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  80% {
    transform: translateY(-8px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes flipIn {
  0% {
    transform: rotateY(90deg) scale(0.7);
    opacity: 0;
  }
  60% {
    transform: rotateY(-10deg) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: rotateY(0deg) scale(1);
    opacity: 1;
  }
}
@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  70% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes zoomInAnim {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}
@keyframes zoomOutAnim {
  0% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
.highlight-red {
  color: #e53935;
  font-weight: bold;
  letter-spacing: 0.01em;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #3d2f2f;
}
.hero-title .hero-line {
  display: block;
  margin-bottom: 0.5rem;
  color: #3d2f2f;
  background: none;
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s ease;
}
.hero-title .hero-line:hover {
  transform: translateY(-2px);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}
.hero-title .hero-line.hero-line-1 {
  animation-delay: 0.2s;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.hero-title .hero-line.hero-line-2 {
  animation-delay: 0.4s;
  font-weight: 700;
  color: #3d2f2f;
  position: relative;
}
.hero-title .hero-line.hero-line-2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--g-color-base), var(--g-color-yellow));
  border-radius: 2px;
  transform: scaleX(0);
  animation: expandLine 0.6s ease-out 0.8s forwards;
  transition: all 0.3s ease;
}
.hero-title .hero-line.hero-line-2:hover::after {
  height: 4px;
  background: linear-gradient(90deg, var(--g-color-yellow), var(--g-color-base));
}
.hero-title .hero-line.hero-line-3 {
  animation-delay: 0.6s;
  font-weight: 900;
  color: #3d2f2f;
  position: relative;
}
.hero-title .hero-line.hero-line-3::before {
  content: "🎣";
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  animation: bounceIn 1s ease-out 1s both;
  transition: all 0.3s ease;
}
.hero-title .hero-line.hero-line-3:hover::before {
  transform: translateY(-50%) rotate(10deg) scale(1.1);
}
@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-title .hero-line.hero-line-3::before {
    left: -30px;
    font-size: 1.5rem;
  }
}

.hero-subtitle {
  font-size: 1.8rem;
  line-height: 1.4;
  color: #3d2f2f;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.hero-subtitle .subtitle-line {
  display: block;
  margin-bottom: 0.3rem;
  color: #3d2f2f;
  background: none;
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.hero-subtitle .subtitle-line:hover {
  transform: translateY(-1px);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
.hero-subtitle .subtitle-line.subtitle-line-1 {
  animation-delay: 0.8s;
  font-weight: 600;
}
.hero-subtitle .subtitle-line.subtitle-line-2 {
  animation-delay: 1s;
  font-weight: 700;
  position: relative;
}
.hero-subtitle .subtitle-line.subtitle-line-2::after {
  content: "✨";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  animation: twinkle 2s ease-in-out infinite;
  transition: all 0.3s ease;
}
.hero-subtitle .subtitle-line.subtitle-line-2:hover::after {
  transform: translateY(-50%) scale(1.2);
  animation: twinkle 1s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .hero-subtitle {
    font-size: 1.4rem;
  }
  .hero-subtitle .subtitle-line.subtitle-line-2::after {
    right: -25px;
    font-size: 1rem;
  }
}

@keyframes expandLine {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes twinkle {
  0%, 100% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translateY(-50%) scale(1.1);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(0.3);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
  }
  70% {
    transform: translateY(-50%) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}
.hero-block {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #3d2f2f;
  margin: 3rem 0 0rem 0;
  font-family: "Noto Serif JP", serif;
}

.hero-main-title {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: #3d2f2f;
  margin: 1.2rem 0 0.8rem 0;
  line-height: 1.25;
  font-family: "Noto Serif JP", serif;
}

.hero-sub-title {
  font-size: 1rem;
  font-style: italic;
  color: #3d2f2f;
  margin: 0.5rem 0 1.2rem 0;
  letter-spacing: 0.2em;
  font-family: "Noto Serif JP", serif;
  position: relative;
}

.hero-sub-title::before,
.hero-sub-title::after {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: #3d2f2f;
  vertical-align: middle;
  margin: 0 0.7rem;
}

.hero-sub-title::before {
  margin-left: 0;
}

.hero-sub-title::after {
  margin-right: 0;
}

.hero-support {
  font-size: 1.1rem;
  color: #3d2f2f;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
  font-family: "Noto Serif JP", serif;
}

.hero-support-small {
  font-size: 0.95rem;
  font-weight: bold;
  color: #3d2f2f;
  margin-top: 1.2rem;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 768px) {
  .hero-block {
    margin: 2rem 0 1.5rem 0;
  }
  .hero-main-title {
    font-size: 1.5rem;
  }
  .hero-sub-title {
    font-size: 1rem;
  }
  .hero-support {
    font-size: 0.95rem;
  }
  .hero-support-small {
    font-size: 0.8rem;
  }
}
.btns-mv {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  margin: 2rem 0;
}
.btns-mv .li {
  list-style: none;
}
.btns-mv a.btn-lp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-image: linear-gradient(to right, #5ec275, #a1c73f);
  color: #fff !important;
  padding: 1rem 2.2rem;
  font-size: 1.2rem;
  font-weight: bold;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  position: relative;
  border: 2px solid transparent;
}
.btns-mv a.btn-lp::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  background: repeating-linear-gradient(to right, transparent 0 4px, #c9a063 4px 8px), repeating-linear-gradient(to left, transparent 0 4px, #c9a063 4px 8px), repeating-linear-gradient(to bottom, transparent 0 4px, #c9a063 4px 8px), repeating-linear-gradient(to top, transparent 0 4px, #c9a063 4px 8px);
  background-size: 100% 2px, 100% 2px, 2px 100%, 2px 100%;
  background-position: top left, bottom left, top left, top right;
  background-repeat: no-repeat;
}
.btns-mv a.btn-lp .fa {
  font-size: 1.5em;
  margin-right: 0.5em;
}
.btns-mv a.btn-lp small {
  display: block;
  font-size: 0.85em;
  font-weight: normal;
  margin-top: 0.2em;
}
.btns-mv a.btn-lp:hover {
  background: #503603;
  box-shadow: 0 6px 24px rgba(94, 55, 15, 0.18);
  transform: translateY(-2px) scale(1.03);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 600px) {
  .btns-mv {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  .btns-mv .li a.btn-lp {
    width: 100%;
    justify-content: center;
    padding: 1rem 1rem;
  }
}
.btn-lp .fa,
.btn-lp .fab {
  font-size: 1.5em;
  margin-right: 0.5em;
  vertical-align: middle;
}

/*# sourceMappingURL=main.css.map */
