:root {
  --sp-header-height: 70px;
}

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

body {
  font-family: "Zen Maru Gothic", 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
}

li {
  list-style: none;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #333;
}

.midashi1 {
  color: #505050;/*文字色*/
  padding: 0.5em;/*文字周りの余白*/
  background: #ffeac7;/*背景色*/
  vertical-align: middle;
  border-radius: 25px;/*左側の角を丸く*/
  max-width: 800px;
  margin: 0 auto;
}

.midashi1:before {
  content: '●';
  color: white;
  margin-right: 8px;
}

.content-first-info {
  margin: 30px;
  padding: 30px;
  text-align: center;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .content-first-info {
    margin: 0;
  }
}

@media (max-width: 480px) {
  .content-first-info {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.tx-on-img {
  position: relative;
  text-align: center;
}

.tx-on-img .tx {
  position: absolute;
  color: #fff;
  font-size: 1.8rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1rem;
}

.tx-on-img .img {
  width: 200px;
}

.table-paturn2 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 8px;
  background: transparent;
  table-layout: fixed;
}

.table-paturn2 th{
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  background-color: #FFA472CC;
  font-weight: bold;
  font-size: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: none;
}

.table-paturn2 td {
  background-color: #ffefe6;
  border-radius: 12px;
  padding: 15px 20px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: none;
}

@media (max-width: 480px) {
  .table-paturn2 th{
    font-size: 1rem;
    padding-left: 5px;
    padding-right: 5px;
  }

  .table-paturn2 td {
    font-size: 0.8rem;
    padding-left: 5px;
    padding-right: 5px;
  }
}

.gallery-paturn1 {
  display: flex;
  flex-direction: column;
  gap: 200px;
}

.gallery-paturn1 p{
  padding: 20px;
  text-align: center;
  width: 70%;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 50px;
}

.gallery-paturn1 ul{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
  margin-left: 20px;
  margin-right: 20px;
}

.gallery-paturn1 li {
  position: relative;
  display: block;
  width: 100%;
}

.gallery-paturn1 li img {
  width: 100%;
  object-fit: cover;
}

.gallery-paturn1 li::after {
  content: "";
  position: absolute;
  top: 20px;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f4c2c2;
  rotate: -10deg;
  z-index: -1;
  opacity: 0.4;
}

@media (max-width: 768px) {
  .gallery-paturn1 ul{
    grid-template-columns: repeat(1, 1fr);
  }
}


@media (max-width: 480px) {
  .gallery-paturn1 p{
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

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

.flow07 {
  padding-left: 0;
}

.flow07 > li {
  list-style-type: none;
  display: flex;
}

.flow07 > li:not(:last-child) {
  margin: 0 0 50px;
}

.flow07 > li .icon07 {
  width: 90px;
  box-sizing: border-box;
  padding: 20px 10px 10px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  background: #FF6B35;
  border-radius: 5px 5px 0 0;
  position: relative;
  line-height: 125%;
  margin: 0;
}
.flow07 > li .icon07::after {
  content: ' ';
  width: 0;
  height: 0;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-top: 20px solid #FF6B35;
  position: absolute;
  bottom: -20px;
  left: 0;
}

.flow07 > li dl {
  padding: 0 0 0 30px;
  width: calc(100% - 115px);
}

.flow07 > li dl dt {
  padding: 0 0 5px;
  margin: 0 0 15px;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 4px solid #CCCCCC;
  position: relative;
}
.flow07 > li dl dt::after {
  content: '';
  width: 20%;
  height: 4px;
  position: absolute;
  bottom: -4px;
  left: 0;
  background-color: #FF6B35;
}

.flow07 > li dl dd {
  margin: 0;
}

@media (max-width: 480px) {
  .flow07 > li .icon07 {
    width: 50px;
    padding: 20px 5px 5px;
  }

  .flow07 > li .icon07::after {
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
  }

  .flow07 > li dl {
    width: initial;
    padding-left: 10px;
  }
}

.float-element1 {
  position: absolute;
  top: -100px;
  width: 150px;
  z-index: -1;
}

.float-element2 {
  position: absolute;
  top: 50%;
  width: 150px;
  z-index: -1;
}

.float-element3 {
  position: absolute;
  top: 0px;
  right: 10px;
  width: 150px;
  z-index: -1;
}

.float-element4 {
  position: absolute;
  top: 80%;      
  right: 10px;
  width: 150px;
  z-index: -1;
}

.bg-overlay {
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: -999;
}

.bg-overlay img {
  opacity: 0.1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Header Container */
.header {
  padding: 15px 0;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Section */
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.header-logo {
  max-width: 400px;
  display: flex;
  align-items: center;
}

.header-logo a{
  display: flex;
}

.header-logo img {
  width: 100%;
}

.sns-button {
  display: flex;
  align-items: center;
  background: #FF6B35;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  justify-content: center;
}

.sns-button:hover {
  background: #E55A2B;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.sns-icon {
  width: 20px;
  height: 20px;
  margin-right: 6px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Navigation */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav {
  flex: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 30px;
}

.nav-item {
  padding: 10px 15px;
  border-radius: 10px;
  min-height: 80px;
  justify-content: center;
  transition: all 0.3s ease;
  background-color: #ffeac7;
  flex: 1;
}

.nav-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #8B4513;
  font-size: 13px;
  font-weight: 600;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-icon {
  width: 45px;
  height: 45px;
  margin-bottom: 6px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

.nav-item:hover .nav-icon {
  transform: scale(1.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 15px 15px;
  padding: 20px;
  z-index: 20;
  margin-top: 10px;
}

.mobile-menu.active {
  display: block;
  animation: slideDown 0.3s ease;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  color: #8B4513;
  font-size: 14px;
  font-weight: 600;
}

.mobile-nav-item:last-child {
  border-bottom: none;
}

.mobile-nav-icon {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.contact-btn {
  display: flex;
  align-items: center;
  background: #FF6B35;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  justify-content: center;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .nav-menu {
    gap: 20px;
  }

  .nav-item {
    font-size: 12px;
    padding: 8px 10px;
  }

  .nav-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 992px) {
  .nav-menu {
    gap: 15px;
  }

  .nav-item {
    font-size: 11px;
    padding: 6px 8px;
  }

  .nav-icon {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 768px) {
  .header {
    position: fixed;
    height: var(--sp-header-height);
    width: 100vw;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background-color: #fff;
  }

  .header-container {
    padding: 0 15px;
  }

  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    font-size: 40px;
  }

  .nav-container {
    justify-content: flex-start;
  }

  .sns-button {
    display: none;
  }

  .header-top {
    gap: 10px;
    margin-bottom: 0px;
  }

  /* メニューボタン（モバイル用） */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    margin-left: 10px;
    z-index: 1001;
  }

  .mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .sp-header-top-height {
    margin-top: var(--sp-header-height);
  }
}

@media (max-width: 480px) {
  .header-top {
    gap: 10px;
    margin-bottom: 0px;
  }
}

/* Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Icon Placeholders */
.nav-icon1 {
  background-image: url('/wp-content/themes/taiyou/asset/img/nav1.svg');
}

.nav-icon2 {
  background-image: url('/wp-content/themes/taiyou/asset/img/nav2.svg');
}

.nav-icon3 {
  background-image: url('/wp-content/themes/taiyou/asset/img/nav3.svg');
}

.nav-icon4 {
  background-image: url('/wp-content/themes/taiyou/asset/img/nav4.svg');
}

.nav-icon5 {
  background-image: url('/wp-content/themes/taiyou/asset/img/nav5.svg');
}

.nav-icon6 {
  background-image: url('/wp-content/themes/taiyou/asset/img/nav6.svg');
}

.icon-mail {
  background-image: url('/wp-content/themes/taiyou/asset/img/mail-icon.svg');
}

.container {
  position: relative;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.breadcrumb li:not(:last-of-type)::after {
  content: "›";
  margin: 0 .6em; /* 記号の左右の余白 */
  color: #777; /* 記号の色 */
}

.open-hours-sec {
      position: relative;
      background-color: #fffaf0;
    }

    .open-hours-sec .table-panel-time {
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      padding: 120px 20px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
      position: relative;
      z-index: 2;
    }

    .open-hours-sec .card {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
      height: 100%;
    }

    .open-hours-sec .card-title {
      font-size: 28px;
      font-weight: 600;
      color: #8B4513;
      margin-bottom: 30px;
      text-align: center;
      position: relative;
      padding-bottom: 15px;
    }

    .open-hours-sec .card-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, #D4A574, #F4E4BC);
      border-radius: 2px;
    }

    .open-hours-sec .hours-table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 20px;
    }

    .open-hours-sec .hours-table tr {
      border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    }

    .open-hours-sec .hours-table td {
      padding: 12px 0;
      font-size: 16px;
    }

    .open-hours-sec .hours-table .day {
      color: #5A4A3A;
      font-weight: 500;
      width: 40%;
    }

    .open-hours-sec .hours-table .time {
      color: #8B4513;
      font-weight: 600;
      text-align: right;
    }

    .open-hours-sec .closed {
      color: #D2691E !important;
      font-weight: 600;
    }

    .open-hours-sec .notice {
      background: linear-gradient(135deg, #FFF8E1, #FFECB3);
      border-left: 4px solid #FFA726;
      padding: 15px;
      border-radius: 8px;
      margin-top: 20px;
      font-size: 14px;
      color: #E65100;
      line-height: 1.5;
    }

    .open-hours-sec .testimonial-card {
      position: relative;
    }

    .open-hours-sec .testimonial-header {
      background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
      padding: 20px;
      border-radius: 15px;
      margin-bottom: 20px;
      text-align: center;
    }

    .open-hours-sec .testimonial-text {
      font-size: 16px;
      color: #4A4A4A;
      line-height: 1.8;
      margin-bottom: 25px;
    }

    .open-hours-sec .testimonial-author {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 30px;
    }

    .open-hours-sec .author-avatar {
      overflow: hidden;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: antiquewhite;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: white;
      font-weight: 600;
    }

    .open-hours-sec .author-avatar img {
      width: 100%;
    }

    .open-hours-sec .author-info {
      flex: 1;
    }

    .open-hours-sec .author-name {
      font-size: 16px;
      font-weight: 600;
      color: #8B4513;
      margin-bottom: 2px;
    }

    .open-hours-sec .author-period {
      font-size: 14px;
      color: #999;
    }

    .open-hours-sec .cta-button {
      width: 100%;
      background: #FF6B35;
      color: white;
      border: none;
      padding: 18px 30px;
      border-radius: 50px;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      text-decoration: none;
      box-shadow: 0 8px 25px rgba(66, 165, 245, 0.3);
    }

    .open-hours-sec .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 35px rgba(66, 165, 245, 0.4);
      background: #FF6B35;
      opacity: 0.7;
    }

    .open-hours-sec .cta-button::before {
      content: '🐾';
      font-size: 20px;
    }

    /* レスポンシブデザイン */
    @media (max-width: 768px) {

      /* 営業時間セクション */
      .open-hours-sec .table-panel-time {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .open-hours-sec .card {
        padding: 30px 25px;
      }

      .open-hours-sec .card-title {
        font-size: 24px;
      }

      .open-hours-sec .hours-table td {
        padding: 10px 0;
        font-size: 15px;
      }

      .open-hours-sec .testimonial-text {
        font-size: 15px;
      }

      .open-hours-sec .cta-button {
        padding: 15px 25px;
        font-size: 16px;
      }
    }

    @media (max-width: 480px) {

      /* 営業時間セクション */
      .open-hours-sec .open-hours-sec {
        padding: 20px 15px;
      }

      .open-hours-sec .card {
        padding: 25px 20px;
      }

      .open-hours-sec .card-title {
        font-size: 22px;
      }

      .open-hours-sec .hours-table td {
        font-size: 14px;
      }

      .open-hours-sec .testimonial-text {
        font-size: 14px;
      }

      .open-hours-sec .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 18px;
      }

      .open-hours-sec .cta-button {
        padding: 14px 20px;
        font-size: 15px;
      }
    }

.footer-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;

  .content-wrapper {
    display: flex;
    max-width: 1200px;
    width: 100%;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
  }

  .activity-section {
    flex: 1;
    position: relative;
  }

  .activity-main {
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: footerfloat 3s ease-in-out infinite;
  }

  .activity-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .activity-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #1976D2;
    font-weight: bold;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .activity-small {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #C8E6C9 0%, #A5D6A7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    animation: footerbounce 2s ease-in-out infinite;
  }

  .activity-small:nth-child(2) {
    top: -40px;
    left: -40px;
    animation-delay: 0.5s;
  }

  .activity-small:nth-child(3) {
    bottom: -40px;
    right: -40px;
    animation-delay: 1s;
    background: linear-gradient(45deg, #FFE0B2 0%, #FFCC02 100%);
  }

  .info-section {
    flex: 1;
    position: relative;
  }

  .logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
  }

  .footer-logo {
    display: flex;
  }

  .footer-logo img {
    width: 100%;
  }

  .subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
  }

  .info-details {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
  }

  .info-item {
    display: flex;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
  }

  .info-item:last-child {
    margin-bottom: 0;
  }

  .info-icon {
    flex: 1;
    text-align: start;
    margin-right: 10px;
    display: flex;
    align-items: center;
  }

  .info-text {
    text-align: end;
  }

  .decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }

  .floating-element {
    position: absolute;
    animation: floatRandom 4s ease-in-out infinite;
  }

  .floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    font-size: 30px;
    animation-delay: 0s;
  }

  .floating-element:nth-child(1) img {
    height: 100px;
  }

  .floating-element:nth-child(2) {
    top: 20%;
    right: 15%;
    font-size: 25px;
    animation-delay: 1s;
  }

  .floating-element:nth-child(2) img {
    height: 50px;
  }

  .floating-element:nth-child(3) {
    bottom: 25%;
    left: 5%;
    font-size: 35px;
    animation-delay: 2s;
  }

  .floating-element:nth-child(3) img {
    height: 50px;
  }

  .floating-element:nth-child(4) {
    bottom: 10%;
    right: 10%;
    font-size: 28px;
    animation-delay: 3s;
  }

  .floating-element:nth-child(4) img {
    height: 50px;
  }

  .hills {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, #81C784 0%, #A5D6A7 100%);
    clip-path: polygon(0 100%, 0 60%, 25% 40%, 50% 55%, 75% 35%, 100% 50%, 100% 100%);
    z-index: 2;
  }

  .trees {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 150px;
    z-index: 3;
  }

  .tree {
    position: absolute;
    bottom: 0;
    width: 20px;
    height: 60px;
    background: #4CAF50;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  }

  .tree:nth-child(1) {
    right: 80px;
    height: 70px;
    width: 25px;
  }

  .tree:nth-child(2) {
    right: 40px;
    height: 50px;
    width: 18px;
  }

  .tree:nth-child(3) {
    right: 10px;
    height: 80px;
    width: 30px;
  }

  @media (max-width: 768px) {
    .content-wrapper {
      flex-direction: column;
      gap: 40px;
      text-align: center;
    }

    .activity-main {
      width: 250px;
      height: 250px;
    }

    .subtitle {
      font-size: 16px;
    }

    .info-details {
      padding: 20px;
    }

    .floating-element {
      font-size: 20px !important;
    }
  }

  @media (max-width: 480px) {
    .footer-main {
      padding: 10px;
    }

    .activity-main {
      width: 200px;
      height: 200px;
    }

    .content-wrapper {
      gap: 30px;
    }

    .info-details {
      padding: 15px;
    }

    .info-item {
      font-size: 14px;
    }
  }
}

@keyframes footerfloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes floatRandom {

  0%,
  100% {
    transform: translate(0px, 0px);
  }

  25% {
    transform: translate(-10px, -15px);
  }

  50% {
    transform: translate(10px, -10px);
  }

  75% {
    transform: translate(-5px, 15px);
  }
}

.scroll-btn-4 {
  position: fixed;
  bottom: 30px;
  right: 50px;
  width: 65px;
  height: 65px;
  background: rgba(255, 173, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 26px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(100px);
  z-index: 1000;
}

.scroll-btn-4.show {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 480px) {
  .scroll-btn-4 {
    right: 1rem;
  }
}

.copyright {
  height: 100px;
  background-color: #e69100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 20px;
}

/* レスポンシブデザイン */
@media (min-width: 960px) {
  .scroll-btn-4:hover {
    background-color: rgba(255, 173, 0, 0.2);
    transform: translateY(-5px);
  }
}

.lowlayer-mv {
  background-image: url(/wp-content/themes/taiyou/asset/img/lowlayer_bg.png);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lowlayer-mv h1 {
  padding: 10px;
  background-color: cornsilk;
  border-radius: 10px;
}