/* =======

  Template Name: shiroya laundry
  Theme Colors:
  - Primary: #089169 (緑)
  - Secondary: #ECDD3B (黄色)
  - Accent: #077A59 (濃い緑)
  - Text Dark: #2E2E2E
  - Text Light: #6A6972
  - Background Light: #f8f9fa
  - Background Gray: #f0f0f0

======== */

/*===========================
  COMMON css 
===========================*/
@import url("https://fonts.googleapis.com/css?family=Poppins:400,700|Lato:300,400,700&display=swap");

:root {
  --primary-color: #089169;
  --primary-dark: #077A59;
  --primary-light: #0CAF82;
  --secondary-color: #ECDD3B;
  --secondary-dark: #E6D729;
  --secondary-light: #F2E650;
  --text-dark: #2E2E2E;
  --text-light: #6A6972;
  --bg-light: #f8f9fa;
  --bg-gray: #f0f0f0;
  --white: #ffffff;
  --danger: #e74c3c;
  --warning: #f39c12;
  --success: #089169;

  --gradient-primary: linear-gradient(to right, #089169 0%, #077A59 100%);
  --gradient-secondary: linear-gradient(to right, #ECDD3B 0%, #E6D729 100%);
  --gradient-accent: linear-gradient(135deg, #089169 0%, #ECDD3B 100%);
}

body {
  font-family: "ms-pmincho", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #6A6972;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

a,
button,
input,
textarea {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
a:focus,
input:focus,
textarea:focus,
button:focus,
.navbar-toggler:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}


h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #2E2E2E;
  margin: 0px;
}


h1,
h3,
h4,
h5,
h6 {
  font-family: "ms-pmincho", sans-serif;
  font-weight: 700;
  color: #2E2E2E;
  margin: 0px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #6A6972;
  margin: 0px;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/* 選択テキストのスタイル */
::selection {
  background-color: #089169;
  color: #ffffff;
}

/*===== All Button Style =====*/
.main-btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0 25px;
  font-size: 16px;
  line-height: 48px;
  border-radius: 8px;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background: linear-gradient(to right, #089169 0%, #089169 50%, #077A59 100%);
  background-size: 200%;
  box-shadow: 0 4px 15px rgba(8, 145, 105, 0.2);
}

.main-btn:hover {
  color: #ffffff;
  background-position: right center;
  box-shadow: 0 5px 15px rgba(8, 145, 105, 0.3);
  transform: translateY(-2px);
}

.accent-btn {
  background: linear-gradient(to right, #ECDD3B 0%, #E6D729 50%, #ECDD3B 100%);
  color: #2E2E2E;
  background-size: 200%;
  box-shadow: 0 4px 15px rgba(236, 221, 59, 0.2);
}

.accent-btn:hover {
  color: #2E2E2E;
  background-position: right center;
  box-shadow: 0 5px 15px rgba(236, 221, 59, 0.3);
}

.btn-outline-secondary {
  border: 2px solid #089169;
  color: #089169;
  background: transparent;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
  background-color: #089169;
  color: #ffffff;
  border-color: #089169;
}

@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*===== All Section Title Style =====*/
.section-title .line {
  background: linear-gradient(#089169 0%, #077A59 100%);
  width: 150px;
  height: 5px;
  margin-bottom: 10px !important;
  border-radius: 3px;
}

.section-title .sub-title {
  font-size: 18px;
  font-weight: 400;
  color: #089169;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .section-title .sub-title {
    font-size: 16px;
  }
}

.section-title .title {
  font-size: 32px;
  padding-top: 10px;
/*  color: #2E2E2E;*/
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title .title {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .section-title .title {
    font-size: 24px;
  }
}

.section-title .title span {
  font-weight: 700;
  display: contents;
  color: #089169;
}

/*===== All Preloader Style =====*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  display: table;
  height: 100%;
  width: 100%;
  background: #ffffff;
  z-index: 99999;
}

.preloader .loader {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.preloader .loader .spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  margin-left: -32px;
  z-index: 18;
  pointer-events: none;
}

.preloader .loader .spinner .spinner-container {
  pointer-events: none;
  position: absolute;
  width: 100%;
  padding-bottom: 100%;
  top: 50%;
  left: 50%;
  margin-top: -50%;
  margin-left: -50%;
  -webkit-animation: spinner-linspin 1568.2353ms linear infinite;
  animation: spinner-linspin 1568.2353ms linear infinite;
}

.preloader .loader .spinner .spinner-container .spinner-rotator {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .spinner .spinner-container .spinner-rotator .spinner-left {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  right: 50%;
}

.preloader .loader .spinner .spinner-container .spinner-rotator .spinner-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  left: 50%;
}

.preloader .loader .spinner-circle {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  width: 200%;
  height: 100%;
  border-style: solid;
  /* Spinner Color */
  border-color: #089169 #089169 #E1E1E1;
  border-radius: 50%;
  border-width: 6px;
}

.preloader .loader .spinner-left .spinner-circle {
  left: 0;
  right: -100%;
  border-right-color: #E1E1E1;
  -webkit-animation: spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .spinner-right .spinner-circle {
  left: -100%;
  right: 0;
  border-left-color: #E1E1E1;
  -webkit-animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

/* Preloader Animations */
@-webkit-keyframes spinner-linspin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner-linspin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spinner-easespin {
  12.5% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  25% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  37.5% {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg);
  }
  50% {
    -webkit-transform: rotate(540deg);
    transform: rotate(540deg);
  }
  62.5% {
    -webkit-transform: rotate(675deg);
    transform: rotate(675deg);
  }
  75% {
    -webkit-transform: rotate(810deg);
    transform: rotate(810deg);
  }
  87.5% {
    -webkit-transform: rotate(945deg);
    transform: rotate(945deg);
  }
  to {
    -webkit-transform: rotate(1080deg);
    transform: rotate(1080deg);
  }
}

@keyframes spinner-easespin {
  12.5% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  25% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  37.5% {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg);
  }
  50% {
    -webkit-transform: rotate(540deg);
    transform: rotate(540deg);
  }
  62.5% {
    -webkit-transform: rotate(675deg);
    transform: rotate(675deg);
  }
  75% {
    -webkit-transform: rotate(810deg);
    transform: rotate(810deg);
  }
  87.5% {
    -webkit-transform: rotate(945deg);
    transform: rotate(945deg);
  }
  to {
    -webkit-transform: rotate(1080deg);
    transform: rotate(1080deg);
  }
}

@-webkit-keyframes spinner-left-spin {
  0% {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
}

@keyframes spinner-left-spin {
  0% {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
}

@-webkit-keyframes right-spin {
  0% {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  to {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
}

@keyframes right-spin {
  0% {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  to {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
}

/*===== NAVBAR =====*/
.navbar-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky .navbar {
  padding: 10px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .sticky .navbar {
    padding: 15px 0;
  }
}

.navbar {
  padding: 25px 0;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-brand {
  padding: 0;
}

.navbar-brand h2 {
  color: #ffffff;
  transition: all 0.3s ease;
}

.sticky .navbar-brand h2 {
  color: #089169;
}

.navbar-toggler {
  padding: 0;
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky .navbar-toggler .toggler-icon {
  background-color: #2E2E2E;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav {
    padding: 20px 30px;
  }
}

.navbar-nav .nav-item {
  margin-right: 45px;
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item {
    margin-right: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item {
    margin: 0;
  }
}

.navbar-nav .nav-item a {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 10px 0;
  position: relative;
  font-family: "ms-pmincho", sans-serif;
}

.navbar-nav .nav-item a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #ECDD3B;
  bottom: 5px;
  left: 0;
  transition: all 0.3s ease;
}

.navbar-nav .nav-item a:hover::after,
.navbar-nav .nav-item a.active::after {
  width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item a {
    display: inline-block;
    padding: 8px 0;
    color: #2E2E2E;
  }
}

.navbar-nav .nav-item a:hover, .navbar-nav .nav-item a.active {
  color: #ECDD3B;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-btn {
    position: absolute;
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.navbar-btn .main-btn {
  line-height: 45px;
  background: linear-gradient(to right, #089169 0%, #ECDD3B 50%, #089169 100%);
  background-size: 200%;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(8, 145, 105, 0.25);
}

.navbar-btn .main-btn:hover {
  color: #ffffff;
  background-position: right center;
  box-shadow: 0 8px 20px rgba(8, 145, 105, 0.4);
  transform: translateY(-2px);
}

.sticky .navbar-nav .nav-item a {
  color: #2E2E2E;
}

.sticky .navbar-nav .nav-item a.active, .sticky .navbar-nav .nav-item a:hover {
  color: #089169;
}

/*===== HEADER HERO =====*/
.header-hero {
  position: relative;
  z-index: 5;
  background-position: bottom center;
  background-image: linear-gradient(to bottom, rgba(8, 145, 105, 0.8), rgba(8, 145, 105, 0.6)), url(assets/images/banner-bg.png);
}

#particles-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.header-hero-content {
  padding-top: 180px;
}

@media (max-width: 767px) {
  .header-hero-content {
    padding-top: 130px;
  }
}

.header-hero-content .header-sub-title {
  font-size: 38px;
  font-weight: 300;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  .header-hero-content .header-sub-title {
    font-size: 24px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header-hero-content .header-sub-title {
    font-size: 30px;
  }
}

.header-hero-content .header-title {
  font-size: 128px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  .header-hero-content .header-title {
    font-size: 82px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header-hero-content .header-title {
    font-size: 82px;
  }
}

.header-hero-content .text {
/*  color: #ffffff;*/
  margin-top: 30px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.header-hero-content .main-btn {
  margin-top: 40px;
  background: linear-gradient(to right, #ECDD3B 0%, #E6D729 50%, #ECDD3B 100%);
  color: #2E2E2E;
  box-shadow: 0 5px 15px rgba(236, 221, 59, 0.25);
}

.header-hero-content .main-btn:hover {
  color: #2E2E2E;
  background-position: right center;
  box-shadow: 0 8px 20px rgba(236, 221, 59, 0.4);
}

.header-hero-image {
  padding-top: 45px;
}

.header-hero-image img {
  max-width: 650px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767px) {
  .header-hero-image img {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .header-hero-image {
    padding-top: 30px;
  }
}

/*===========================
  BRAND css 
===========================*/
.brand-area {
  background-color: #f8f9fa;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.05) inset;
}

@media (max-width: 767px) {
  .brand-logo {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.single-logo {
  padding: 15px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.single-logo:hover {
  transform: translateY(-5px);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-logo {
    padding: 15px 15px;
  }
}

@media (max-width: 767px) {
  .single-logo {
    padding: 15px 30px;
  }
}

@media (max-width: 767px) {
  .single-logo {
    width: 50%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-logo {
    width: 33.33%;
  }
}

.single-logo .feature-icon {
  font-size: 3rem;
  color: #089169;
  transition: all 0.3s ease;
}

.single-logo:hover .feature-icon {
  color: #ECDD3B;
  transform: scale(1.1);
}

.single-logo span {
  display: block;
  margin-top: 10px;
/*  color: #2E2E2E;*/
  font-weight: 500;
}

/*===========================
  SERVICES css 
===========================*/
.single-services {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 5px 30px 0px rgba(167, 167, 167, 0.16);
  box-shadow: 0px 5px 30px 0px rgba(167, 167, 167, 0.16);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 50px 30px;
  border: 2px solid transparent;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .single-services {
    padding: 20px 20px 30px;
  }
}

.single-services .services-icon {
  display: inline-block;
  position: relative;
}

.single-services .services-icon img {
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.single-services .services-icon .shape-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  filter: hue-rotate(120deg);
}

.single-services .services-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 34px;
  color: #ffffff;
  background: linear-gradient(135deg, #089169 0%, #ECDD3B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.single-services .services-content .services-title a {
  font-size: 26px;
  font-weight: 700;
/*  color: #2E2E2E;*/
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-services .services-content .services-title a {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .single-services .services-content .services-title a {
    font-size: 20px;
  }
}

.single-services .services-content .services-title a:hover {
  color: #089169;
}

.single-services .services-content .text {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .single-services .services-content .text {
    margin-top: 20px;
  }
}

.single-services .services-content .more {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 400;
  color: #089169;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.single-services .services-content .more i {
  margin-left: 10px;
  font-size: 14px;
  font-weight: 700;
}

.single-services .services-content .more:hover {
  letter-spacing: 2px;
  color: #077A59;
}

.single-services:hover {
  border-color: #089169;
  transform: translateY(-5px);
  box-shadow: 0px 15px 30px 0px rgba(167, 167, 167, 0.16);
}

.single-services:hover .services-icon .shape {
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
}

.single-services:hover .services-icon i {
  background: linear-gradient(135deg, #ECDD3B 0%, #089169 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*===========================
  ABOUT css 
===========================*/
.about-area {
  position: relative;
  z-index: 5;
}

.about-shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  z-index: -1;
}

.about-shape-1 img {
  width: 100%;
/*  filter: hue-rotate(260deg);*/
}

@media (max-width: 767px) {
  .about-shape-1 {
    display: none;
  }
}

.about-shape-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  z-index: -1;
}

.about-shape-2 img {
  width: 100%;
/*  filter: hue-rotate(260deg);*/
}

@media (max-width: 767px) {
  .about-shape-2 {
    display: none;
  }
}

.about-content {
  max-width: 480px;
}

.about-content .text {
  margin-top: 15px;
}

.about-content .main-btn {
  background: linear-gradient(to right, #089169 0%, #ECDD3B 50%, #089169 100%);
  background-size: 200%;
  height: 50px;
  line-height: 50px;
  padding: 0 35px;
  margin-top: 40px;
  box-shadow: 0 4px 15px rgba(8, 145, 105, 0.2);
}

.about-content .main-btn:hover {
  background-position: right center;
  box-shadow: 0 8px 20px rgba(8, 145, 105, 0.3);
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.about-image:hover img {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/*===========================
  VIDEO COUNTER css 
===========================*/
.video-content {
  position: relative;
  padding-bottom: 30px;
}

.video-content .dots {
  position: absolute;
  left: -30px;
  bottom: 0;
  filter: hue-rotate(120deg);
}

.video-wrapper {
  margin-right: 15px;
  position: relative;
  -webkit-box-shadow: 0px 13px 46px 0px rgba(113, 113, 113, 0.33);
  box-shadow: 0px 13px 46px 0px rgba(113, 113, 113, 0.33);
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .video-wrapper {
    margin-right: 0;
  }
}

.video-wrapper .video-image img {
  width: 100%;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.video-wrapper:hover .video-image img {
  transform: scale(1.05);
}

.video-wrapper .video-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(8, 145, 105, 0.8) 0%, rgba(236, 221, 59, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}

.video-wrapper .video-icon a {
  width: 60px;
  height: 60px;
  line-height: 62px;
  text-align: center;
  border-radius: 50%;
  background-color: #ffffff;
  color: #089169;
  font-size: 20px;
  position: relative;
  z-index: 5;
  transition: all 0.3s ease;
}

.video-wrapper .video-icon a::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}

.video-wrapper .video-icon a:hover {
  background-color: #ECDD3B;
  color: #2E2E2E;
  transform: scale(1.1);
}

.counter-wrapper {
  padding-left: 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .counter-wrapper {
    padding-left: 0;
  }
}

.counter-wrapper .counter-content .text {
  margin-top: 35px;
}

.counter-wrapper .single-counter {
  max-width: 155px;
  height: 120px;
  border-radius: 60px;
  position: relative;
  z-index: 5;
  margin-top: 60px;
}

@media (max-width: 767px) {
  .counter-wrapper .single-counter {
    max-width: 100px;
    height: 80px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .counter-wrapper .single-counter {
    max-width: 155px;
    height: 120px;
  }
}

.counter-wrapper .single-counter::before {
  position: absolute;
  content: "";
  width: 155px;
  height: 120px;
  border-radius: 60px;
  top: 0;
  left: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  z-index: -1;
}

@media (max-width: 767px) {
  .counter-wrapper .single-counter::before {
    max-width: 100px;
    height: 80px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .counter-wrapper .single-counter::before {
    max-width: 155px;
    height: 120px;
  }
}

.counter-wrapper .single-counter.counter-color-1::before {
  background: linear-gradient(#089169 0%, #077A59 100%);
}

.counter-wrapper .single-counter.counter-color-2::before {
  background: linear-gradient(#ECDD3B 0%, #E6D729 100%);
}

.counter-wrapper .single-counter.counter-color-3::before {
  background: linear-gradient(#089169 0%, #ECDD3B 100%);
}

.counter-wrapper .single-counter .count {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

@media (max-width: 767px) {
  .counter-wrapper .single-counter .count {
    font-size: 18px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .counter-wrapper .single-counter .count {
    font-size: 22px;
  }
}

.counter-wrapper .single-counter .text {
  font-size: 16px;
  color: #ffffff;
}

@media (max-width: 767px) {
  .counter-wrapper .single-counter .text {
    font-size: 14px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .counter-wrapper .single-counter .text {
    font-size: 16px;
  }
}

/* Machines Status */
.machines-status {
  background-color: #f8f9fa;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.machines-status:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.machines-status h5 {
  color: #089169;
  font-weight: 600;
  border-bottom: 1px solid rgba(8, 145, 105, 0.2);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.machine-indicator {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 8px;
}

.machine-indicator.machine-available {
  background-color: #089169;
  box-shadow: 0 0 0 3px rgba(8, 145, 105, 0.2);
}

.machine-indicator.machine-busy {
  background-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

.line-button {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(to right, #06C755 0%, #05a949 100%);
  color: #ffffff;
  padding: 10px 15px;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  margin-top: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(6, 199, 85, 0.2);
}

.line-button i {
  margin-right: 8px;
}

.line-button:hover {
  background-position: right center;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(6, 199, 85, 0.3);
}

/*===========================
  PRICING css 
===========================*/
.pricing-area {
  background: linear-gradient(to bottom, #f8f9fa 0%, rgba(255, 255, 255, 0) 100%);
}

.table-pricing {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.table-pricing th, 
.table-pricing td {
  text-align: center;
  vertical-align: middle;
  padding: 15px;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.table-pricing th:last-child,
.table-pricing td:last-child {
  border-right: none;
}

.table-pricing tr:last-child td {
  border-bottom: none;
}

.table-pricing thead th {
  background-color: #089169;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 15px;
}

.table-pricing tbody tr {
  transition: all 0.3s ease;
}

.table-pricing tbody tr:hover {
  background-color: rgba(8, 145, 105, 0.05);
}

.table-pricing tbody td:first-child {
  font-weight: 500;
  color: #2E2E2E;
}

.sub-title {
  color: #089169;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.sub-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, #089169 0%, #ECDD3B 100%);
}

/* Premium Course */
.premium-course {
  background: linear-gradient(to right, #f6f9fe, rgba(236, 221, 59, 0.1));
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 2rem;
  border-left: 5px solid #089169;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.premium-course:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.premium-course .sub-title {
  color: #089169;
}

.premium-course ul {
  margin-left: 20px;
  list-style-type: disc;
}

.premium-course ul li {
  padding: 5px 0;
  color: #2E2E2E;
}

/* Card Service */
.card-service {
  transition: all 0.3s ease;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: none;
}

.card-service:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-left: 3px solid #089169;
}

.card-service .card-body {
  padding: 25px;
}

.card-service img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-service .feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #089169;
  transition: all 0.3s ease;
}

.card-service:hover .feature-icon {
  color: #ECDD3B;
  transform: scale(1.1) rotate(10deg);
}

.card-service h4 {
  color: #2E2E2E;
  margin-bottom: 15px;
  font-weight: 600;
}

.card-service .check-icon {
  color: #089169;
  margin-right: 5px;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.payment-method {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 50px;
  background-color: #f8f9fa;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.payment-method:hover {
  background-color: rgba(8, 145, 105, 0.1);
  transform: translateY(-2px);
}

/*===========================
  GUIDE css 
===========================*/
.guide-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.guide-step:hover {
  transform: translateY(-3px);
}

.guide-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #089169 0%, #ECDD3B 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1rem;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(8, 145, 105, 0.2);
}

.guide-step-content {
  flex-grow: 1;
}

.guide-step-content h5 {
  margin-bottom: 10px;
  color: #2E2E2E;
  font-weight: 600;
}

.icon-small {
  color: #089169;
  margin-right: 8px;
}

.icon-tiny {
  color: #089169;
  font-size: 12px;
  margin-right: 5px;
}

.step-list {
  list-style: none;
  padding-left: 5px;
  margin-bottom: 15px;
}

.step-list li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.step-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.step-image:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.temperature-selector {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 15px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.temperature-options {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.temperature-option {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.temperature-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.temp-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: #ffffff;
  font-size: 18px;
}

.temp-low {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.temp-high {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.temp-title {
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  color: #2E2E2E;
}

.temp-desc p {
  margin: 0;
  font-size: 12px;
  color: #6A6972;
}

.machine-tip {
  background-color: rgba(8, 145, 105, 0.05);
  border-left: 3px solid #089169;
  padding: 15px;
  border-radius: 5px;
  font-size: 14px;
  color: #2E2E2E;
  margin-top: 20px;
}

.machine-tip i {
  color: #ECDD3B;
  margin-right: 5px;
}

/* Washing Guide Table */
.table-washing-guide {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.table-washing-guide th {
  background-color: #089169;
  color: #ffffff;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.table-washing-guide td {
  text-align: center;
  vertical-align: middle;
  padding: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.table-washing-guide tr:last-child td {
  border-bottom: none;
}

.table-washing-guide tr:hover td {
  background-color: rgba(8, 145, 105, 0.05);
}

.table-washing-guide tr td:first-child {
  font-weight: 500;
  color: #2E2E2E;
  text-align: left;
}

.check-icon {
  color: #089169;
  font-size: 1.2rem;
}

.cross-icon {
  color: #e74c3c;
  font-size: 1.2rem;
}

.triangle-icon {
  color: #f39c12;
  font-size: 1.2rem;
}

/* Tab Navigation */
.nav-tabs {
  border-bottom: 2px solid rgba(8, 145, 105, 0.2);
  margin-bottom: 20px;
}

.nav-tabs .nav-item {
  margin-bottom: -2px;
}

.nav-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  color: #6A6972;
  font-weight: 500;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
  border-color: transparent;
  color: #089169;
}

.nav-tabs .nav-link.active {
  color: #089169;
  border-bottom: 2px solid #089169;
  background-color: transparent;
}

/*===========================
  MACHINES css 
===========================*/
.machines-area {
  background-color: #f8f9fa;
}

.badge {
  padding: 6px 12px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
}

.badge.bg-primary {
  background-color: #089169 !important;
}

.badge.bg-warning {
  background-color: #ECDD3B !important;
  color: #2E2E2E !important;
}

.badge.bg-success {
  background-color: #089169 !important;
}

.badge.bg-success:hover {
  background-color: #077A59 !important;
}

.machine-features {
  display: flex;
  flex-wrap: wrap;
}

.machine-features .badge {
  margin-right: 5px;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.machine-features .badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

/*===========================
  STORES css 
===========================*/
.stores-area {
  background-color: #f8f9fa;
}

.store-card {
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.store-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.store-image {
  position: relative;
}

.store-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.store-status {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #089169;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.store-card:hover .store-status {
  background-color: #089169;
  color: #ffffff;
}

.store-info {
  padding: 25px;
}

.store-info h3 {
  color: #2E2E2E;
  margin-bottom: 20px;
  font-weight: 600;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.detail-item:hover {
  transform: translateY(-3px);
}

.icon-box {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(8, 145, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.detail-item:hover .icon-box {
  background-color: rgba(8, 145, 105, 0.2);
  transform: rotate(10deg);
}

.icon-box i {
  color: #089169;
  font-size: 20px;
}

.detail-item h6 {
  color: #2E2E2E;
  margin-bottom: 5px;
  font-weight: 600;
}

.detail-item p {
  margin: 0;
  color: #6A6972;
}

.facilities {
  display: flex;
  flex-wrap: wrap;
}

.facilities .badge {
  margin-right: 8px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.facilities .badge:hover {
  background-color: rgba(8, 145, 105, 0.1) !important;
  transform: translateY(-2px);
}

.facilities .badge i {
  margin-right: 5px;
}

.store-gallery {
  display: flex;
  margin-bottom: 20px;
}

.gallery-item {
  flex: 1;
  margin-right: 10px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-item:last-child {
  margin-right: 0;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  object-position: center center; /* 追加 */
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.action-buttons {
  display: flex;
  flex-wrap: wrap;
}

.action-buttons .btn {
  margin-right: 10px;
  margin-bottom: 10px;
}

.all-stores-link {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.all-stores-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: rgba(8, 145, 105, 0.05);
}

/*===========================
  FAQ css 
===========================*/
.faq-area {
  background-color: #f0f0f0;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* shiroya-laundry カラースタイル続き */

/*===========================
  FAQ css 続き
===========================*/
.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-title {
  padding: 15px 20px;
  background-color: #ffffff;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  color: #2E2E2E;
}

.faq-title i {
  transition: all 0.3s ease;
  color: #089169;
}

.faq-title.active i {
  transform: rotate(180deg);
}

.faq-title:hover {
  background-color: rgba(8, 145, 105, 0.05);
}

.faq-title span {
  width: 90%;
  font-size: 16px;
}

.faq-title.active {
  background-color: #089169;
  color: #ffffff;
}

.faq-title.active i {
  color: #ffffff;
}

.faq-content {
  padding: 20px;
  display: none;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-content p {
  margin: 0;
  color: #6A6972;
  line-height: 1.6;
}

.faq-title.active + .faq-content {
  display: block;
}

/*===========================
  FOOTER css 
===========================*/
.footer-area {
  background-position: top center;
  position: relative;
  z-index: 5;
  color: #2E2E2E;
}


.footer-area::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
   background-image: url(../images/footer-bg.webp) !important;
  background-position: top center;
  z-index: -1;
  background-size: cover;
/*  filter: hue-rotate(120deg);*/
}

@media only screen and (min-width: 1921px) {
  .footer-area::before {
    height: 1120px;
  }
}

#particles-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.footer-widget {
  padding-top: 50px;
}

.footer-about .logo h2 {
  color: #2E2E2E;
  font-size: 28px;
}

.footer-about .text {
  color: #2E2E2E;
  line-height: 30px;
  margin-top: 30px;
  opacity: 0.9;
}

.footer-about .social {
  margin-top: 40px;
}

.footer-about .social li {
  display: inline-block;
  margin-right: 30px;
}

.footer-about .social li a {
  font-size: 22px;
  color: #2E2E2E;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.footer-about .social li a:hover {
  color: #ECDD3B;
  transform: translateY(-3px);
}

.footer-title .title {
  font-size: 24px;
  font-weight: 700;
  color: #2E2E2E;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title .title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #ECDD3B;
}

.link-wrapper {
  padding: 0 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .link-wrapper {
    padding: 0px 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .link-wrapper {
    padding: 0;
    padding-right: 50px;
  }
}

.link-wrapper .link {
  padding-top: 20px;
}

.link-wrapper .link li {
  margin-top: 12px;
  transition: all 0.3s ease;
}

.link-wrapper .link li:hover {
  transform: translateX(5px);
}

.link-wrapper .link li a {
  font-size: 16px;
  color: #2E2E2E;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  position: relative;
  padding-left: 15px;
}

.link-wrapper .link li a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ECDD3B;
  transform: translateY(-50%);
}

.link-wrapper .link li a:hover {
  color: #ECDD3B;
}

.footer-contact .contact {
  padding-top: 20px;
}

.footer-contact .contact li {
  margin-top: 15px;
  font-size: 16px;
  color:  #2E2E2E;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 25px;
}

.footer-contact .contact li i {
  position: absolute;
  left: 0;
  top: 5px;
  color: #ECDD3B;
}

.footer-contact .contact li:hover {
  color: #ECDD3B;
  transform: translateX(3px);
}

/* Subscribe Area */
.subscribe-area {
  padding: 40px 50px 90px;
  box-shadow: 0px 0px 18px 0px rgba(8, 145, 105, 0.1);
  border-radius: 15px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.subscribe-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(to right, #089169 0%, #ECDD3B 100%);
}

@media (max-width: 767px) {
  .subscribe-area {
    padding: 10px 30px 60px;
  }
}

.subscribe-content .subscribe-title {
  font-size: 35px;
  font-weight: 700;
  color: #2E2E2E;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .subscribe-content .subscribe-title {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .subscribe-content .subscribe-title {
    font-size: 24px;
  }
}

.subscribe-content .subscribe-title span {
  font-weight: 400;
  color: #089169;
}

.contact-info {
  margin-top: 40px;
}

.contact-info .d-flex {
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.contact-info .d-flex:hover {
  transform: translateY(-3px);
}

.contact-info i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #089169 0%, #ECDD3B 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 20px;
  box-shadow: 0 5px 15px rgba(8, 145, 105, 0.2);
}

.contact-info h5 {
  color: #2E2E2E;
  margin-bottom: 5px;
}

.contact-info p {
  margin: 0;
  color: #6A6972;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  padding-bottom: 30px;
}

.copyright-content {
  padding-top: 15px;
  text-align: center;
}

.copyright-content p {
  color: rgba(255, 255, 255, 0.8);
}

.copyright-content a {
  font-size: 16px;
  color: #2E2E2E;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.copyright-content a:hover {
  color: #ECDD3B;
}

/*===== BACK TO TOP =====*/
.back-to-top {
  font-size: 20px;
  color: #ffffff;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: linear-gradient(to right, #089169 0%, #077A59 50%, #089169 100%);
  background-size: 200%;
  text-align: center;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  box-shadow: 0 5px 15px rgba(8, 145, 105, 0.2);
}

.back-to-top:hover {
  color: #ffffff;
  background-position: right center;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(8, 145, 105, 0.3);
}

/* ======================
    追加のカスタムクラス
========================= */

/* カードのスタイリング */
.card-service {
  overflow: hidden;
  border-radius: 15px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.card-service:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-left: 3px solid #089169;
}

/* カードヘッダーカスタム */
.card-header-custom {
  position: relative;
  padding-bottom: 20px;
}

.icon-wrapper {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #089169 0%, #ECDD3B 100%);
  color: #ffffff;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(8, 145, 105, 0.2);
}

.icon-wrapper .feature-icon {
  font-size: 28px;
  color: #ffffff;
}

.line-decoration {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #089169 0%, #ECDD3B 100%);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* ステップのスタイリング */
.guide-steps {
  max-width: 90%;
  margin: 0 auto;
}

.guide-step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.guide-step:not(:last-child):after {
  content: '';
  position: absolute;
  left: 20px;
  top: 45px;
  bottom: -15px;
  width: 2px;
  background: linear-gradient(to bottom, #089169 0%, rgba(8, 145, 105, 0.1) 100%);
}

.guide-step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  position: relative;
}

.guide-step-number span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #089169 0%, #ECDD3B 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(8, 145, 105, 0.2);
}

.guide-step-content {
  flex-grow: 1;
}

.guide-step-content h5 {
  color: #2E2E2E;
  margin-bottom: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.icon-small {
  margin-right: 8px;
  color: #089169;
}

.icon-tiny {
  font-size: 12px;
  color: #089169;
  margin-right: 5px;
}

.step-list {
  list-style: none;
  padding-left: 5px;
  margin-bottom: 15px;
}

.step-list li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.step-image {
  margin-top: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* 支払い方法のスタイリング */
.payment-methods-mini {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.payment-method-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #f8f9fa;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  color: #089169;
  transition: all 0.3s ease;
}

.payment-method-item:hover {
  background-color: rgba(8, 145, 105, 0.1);
  transform: rotate(10deg);
}

/* 温度セレクターのスタイリング */
.temperature-selector {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 15px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.temperature-options {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.temperature-option {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.temperature-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.temp-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: #ffffff;
  font-size: 18px;
}

.temp-low {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.temp-high {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.temp-title {
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
}

.temp-desc p {
  margin: 0;
  font-size: 12px;
  color: #6A6972;
}

/* ヒントのスタイリング */
.machine-tip {
  background-color: rgba(8, 145, 105, 0.05);
  border-left: 3px solid #089169;
  padding: 12px 15px;
  border-radius: 5px;
  font-size: 14px;
  color: #2E2E2E;
}

.machine-tip i {
  color: #ECDD3B;
  margin-right: 5px;
}

/* 店舗セクションのカスタム */
.stores-area {
  background-color: #f8f9fa;
}

.store-card {
  transition: all 0.4s ease;
  overflow: hidden;
}

.store-card:hover {
  transform: translateY(-5px);
}

.detail-item {
  transition: all 0.3s ease;
}

.detail-item:hover .icon-box {
  background-color: rgba(8, 145, 105, 0.2);
  transform: scale(1.05);
}

.gallery-item {
  width: 33.333%;
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 5px;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

.gallery-item img {
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.facilities .badge {
  transition: all 0.3s ease;
}

.facilities .badge:hover {
  background-color: #f8f9fa !important;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.store-status {
  transition: all 0.3s ease;
}

.store-card:hover .store-status {
  background-color: rgba(8, 145, 105, 0.9);
  color: #ffffff;
}

.all-stores-link {
  transition: all 0.3s ease;
}

.all-stores-link:hover {
  background-color: rgba(8, 145, 105, 0.05);
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  .guide-steps {
    max-width: 100%;
  }
  
  .temperature-options {
    flex-direction: column;
    gap: 10px;
  }
  
  .store-image img {
    height: 200px;
  }
  
/*  .gallery-item {
    height: 150px;
  }*/

  .gallery-item img {
    object-position: center center; /* 追加 */
  }
  
  .detail-item {
    margin-bottom: 15px !important;
  }
  
  .detail-item .icon-box {
    width: 35px !important;
    height: 35px !important;
  }
  
  .detail-item .icon-box i {
    font-size: 16px !important;
  }
  
  .facilities .badge {
    font-size: 0.75rem;
  }
  
  .navbar-brand h2 {
    font-size: 24px;
  }
  
  .header-hero-content .main-btn {
    padding: 0 20px;
    font-size: 14px;
    line-height: 45px;
  }
}

/* Margin & Padding Classes */
/* 使用頻度が高いものだけを残し、残りは省略 */

.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }

.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }

.pt-20 { padding-top: 20px; }
.pt-40 { padding-top: 40px; }
.pt-70 { padding-top: 70px; }
.pt-120 { padding-top: 120px; }

.pb-40 { padding-bottom: 40px; }
.pb-70 { padding-bottom: 70px; }
.pb-100 { padding-bottom: 100px; }
.pb-130 { padding-bottom: 130px; }

.gray-bg { background-color: #f0f0f0; }

/* アニメーション効果 */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.float-animation {
  animation: float 5s ease-in-out infinite;
}

/* フォーカス状態のスタイル */
input:focus, textarea:focus, select:focus {
  border-color: #089169 !important;
  box-shadow: 0 0 0 0.2rem rgba(8, 145, 105, 0.25) !important;
}

/* ホバーエフェクト */
.hover-grow {
  transition: all 0.3s ease;
}

.hover-grow:hover {
  transform: scale(1.05);
}

.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
}

/* カラークラス */
.text-primary {
  color: #089169 !important;
}

.text-secondary {
  color: #ECDD3B !important;
}

.bg-primary {
  background-color: #089169 !important;
}

.bg-secondary {
  background-color: #ECDD3B !important;
}

/* 斜めの区切り */
.slant-divider {
  position: relative;
  height: 100px;
  overflow: hidden;
}

.slant-divider::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f8f9fa;
  transform: skewY(-3deg);
  transform-origin: bottom right;
}

/* 特別なハイライトテキスト */
.highlight-text {
  position: relative;
  display: inline-block;
  padding: 0 5px;
}

.highlight-text::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: rgba(236, 221, 59, 0.3);
  z-index: -1;
  transition: height 0.3s ease;
}

.highlight-text:hover::before {
  height: 100%;
}

/* CTA (Call to Action) ボタン */
.cta-button {
  background: linear-gradient(to right, #089169 0%, #ECDD3B 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 10px 20px rgba(8, 145, 105, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(8, 145, 105, 0.4);
  color: #ffffff;
}

/* ブログ・ニュースセクション用スタイル */
.news-card {
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-img {
  position: relative;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.news-card:hover .news-img img {
  transform: scale(1.1);
}

.news-date {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #089169;
  color: #ffffff;
  padding: 5px 15px;
  font-size: 14px;
  border-top-right-radius: 15px;
}

.news-content {
  padding: 20px;
}

.news-content h4 {
  margin-bottom: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.news-card:hover .news-content h4 {
  color: #089169;
}

.news-content p {
  margin-bottom: 15px;
  color: #6A6972;
}

.news-content .read-more {
  color: #089169;
  font-weight: 500;
  transition: all 0.3s ease;
}

.news-content .read-more:hover {
  color: #077A59;
  letter-spacing: 1px;
}

/* アクセシビリティ向上のためのカスタム */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* フォーカス可視性の向上 */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
  outline: 2px solid #089169;
  outline-offset: 2px;
}

/* スクリーンリーダー用のスキップリンク */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #089169;
  color: #ffffff;
  padding: 8px;
  z-index: 1000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* ダークモード対応（将来的な拡張のため） */

/*@media (prefers-color-scheme: dark) {
  :root {
    --bg-light: #222;
    --bg-gray: #333;
    --text-dark: #f5f5f5;
    --text-light: #bbb;
  }
  
  .card-service, 
  .store-card,
  .machines-status,
  .premium-course,
  .table-pricing,
  .subscribe-area,
  .faq-title,
  .faq-content {
    background-color: #2a2a2a;
  }
  
  .temperature-option,
  .payment-method {
    background-color: #333;
  }
  
  .navbar.sticky {
    background-color: rgba(42, 42, 42, 0.95);
  }
  
  .sticky .navbar-nav .nav-item a {
    color: #2E2E2E;
  }
}
*/


/* Add these styles to your style.css file */

/* Particles container styling */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none; /* Allow click events to pass through to elements below */
}

/* Ensure header hero has the correct position for particles */
.header-hero {
  position: relative;
  z-index: 5;
  overflow: hidden; /* Keep particles contained within */
}

/* Ensure footer has the correct position for particles */
footer.footer-area {
  position: relative;
  z-index: 5;
  overflow: hidden; /* Keep particles contained within */
}

/* Adjust particles color and opacity for better visibility */
#particles-1 canvas,
#particles-2 canvas {
  opacity: 1; /* Adjust as needed */
}

/* Specific styling for header particles */
#particles-1 {
  z-index: 1; /* Above the background but below the content */
}

/* Specific styling for footer particles */
#particles-2 {
  z-index: 1; /* Above the background but below the content */
}





/* Particles container styling */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none; /* Allow click events to pass through to elements below */
}

/* Ensure header hero has the correct position for particles */
.header-hero {
  position: relative;
  z-index: 5;
  overflow: hidden; /* Keep particles contained within */
}

/* Ensure footer has the correct position for particles */
footer.footer-area {
  position: relative;
  z-index: 5;
  overflow: hidden; /* Keep particles contained within */
}

/* Adjust particles color and opacity for better visibility */
#particles-1 canvas,
#particles-2 canvas {
  opacity: 1; /* Adjust as needed */
}

/* Specific styling for header particles */
#particles-1 {
  z-index: 1; /* Above the background but below the content */
}

/* Specific styling for footer particles */
#particles-2 {
  z-index: 1; /* Above the background but below the content */
}




