
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  /* font-family: "Open Sans", serif; */
  font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "MS P明朝", "MS PMincho", serif;
  color: #444444;
}


a {
  color: #D11716;
  text-decoration: none;
}

a:hover {
  color: #145269;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #D11716;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background-image: linear-gradient(to right, yellow, #D11716);
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/* #header {
  background: rgba(0, 0, 0, 0.75);
  transition: all 0.5s;
  z-index: 997;
  height: auto;
} */


#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.75);
  transition: all 0.5s;
}

@media (max-width: 768px) {
  header {
      position: fixed;
      top: 0;
      width: 100%;
  }
}

#header .logo {
  /* font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase; */
}
#header .logo a {
  color: #fff;
  max-height: 40px;
}
#header .logo img {
  max-height: 57px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 22px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  position: relative;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #D11716;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #fff;
}
.navbar .getstarted, .navbar .getstarted:focus {
  padding: 8px 25px;
  margin-left: 12px;
  border-radius: 4px;
  color: #fff;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  border: 2px solid #D11716;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff;
  background: #D11716;
}
.navbar .getstarted:hover:before, .navbar li:hover > .getstarted:before {
  visibility: hidden;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 22px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #2a2a2a;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #D11716;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #D11716;
  font-size: 45px;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(17, 17, 17, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  opacity: 0.8;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 30px;
  color: #6e7274;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #D11716;
}
.navbar-mobile > ul > li {
  white-space: nowrap;
  padding: 0;
  border-bottom: 1px solid #76797c;
}
.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #D11716;
  padding-left: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #D11716;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
# Video Section
--------------------------------------------------------------*/

#video {
  width: 100vw;
  aspect-ratio: 16 / 9;
  /* max-height: 68vh;  */
   /* 大画面では拡大しすぎないように */
  margin: 0;
  padding: 0;
  background-color: rgb(177 185 197 / 6%);
  overflow: hidden;
  position: relative;
}
@media (min-width: 1400px) {
  #video {
    background-color: rgba(0, 0, 0);
  }
}


.video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#video video {
  width: 100%;
  height: 100%;
  object-fit: contain;  
  object-position: center center;
  display: block;
  /* background-color: #6b6868;  */
}

@media (min-width: 1400px) {
  #video video {
    transform: translateY(1.5%)!important;
  }
}
@media (min-width: 1600px) {
  #video video {
    transform: translateY(0%)!important;
  }
}



/* #message チラ見せ */
#message {
  margin-top: -5vh; 
  padding-top: 6vh; 
  background-color: white;
  position: relative;
  z-index: 1;
}

@media (min-width: 1360px) {
  #video {
    height: 79vh; 
  }
}
@media (min-width: 1900px) {
  #video {
    height: 90vh; 
  }
}
@media (min-width: 2000px) {
  #video {
    height: 91vh; 
  }
}



/* --- タブレット：1024px以下 --- */
@media (max-width: 1024px) {
  #video {
    height: 55vh; 
  }

  #video video {
    transform: translateY(-1%)!important;
  }

  #message {
    margin-top: 0;
    padding-top: 20px;
  }
}
@media (max-width: 900px) {
  #video {
    height: 53vh;
  }
}
@media (max-width: 834px) {
  #video {
    height: 56vh;
  }
  #video video {
    transform: translateY(0%)!important;
  }
}
@media (max-width: 800px) {
  #video {
    height: 70vh;
  }
  #video video {
    transform: translateY(0%)!important;
  }
}
/* --- スマホ：768px以下 --- */
@media (max-width: 768px) {
  #video {
    height: 60vh;  
  }

  #video video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transform: translateY(-2%)!important;
  }
}

/* --- 中小型スマホ：640px以下 --- */
@media (max-width: 640px) {
  #video {
    height: 45vh;
  }

  #video video {
    transform: translateY(2%)!important;
  }
  
}


@media (max-width: 480px) {
  #video {
    height: 55vh;
  }
  #video video {
    transform: translateY(0%)!important;
  }
}
@media (max-width: 425px) {
  #video video {
    transform: translateY(0%)!important;
  }
}

/* --- 小型スマホ：360px以下 --- */
@media (max-width: 360px) {
  #video {
    height: 46vh;
  }
  #video video {
    transform: translateY(15%)!important;
  }
}





/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 50vh;
  background-color: rgba(17, 17, 17, 0.8);
  overflow: hidden;
  padding: 0;
  margin: 3rem 0;
}
/* #hero .carousel-item {
  width: 100%;
  height: 50vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: 0.3;
} */
#hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transform-origin: center; 
}
@media (max-width: 380px) {
  #hero .carousel-container {
    display: inline-block;
  }
}
/* --- 小型スマホ：414px以下 --- */
@media (max-width: 414px) {
  #hero .carousel-container {
    display: inline-block;
    transform: scale(0.6); 
  }
}
@media (min-width: 768px) {
  #hero .carousel-content {
    transform: scale(0.9); 
  }
}
@media (min-width: 800px) {
  #hero .carousel-content {
    transform: scale(0.6); 
  }
}
@media (min-width: 834px) {
  #hero .carousel-content {
    transform: scale(0.8); 
  }
}
@media (min-width: 1024px) {
  #hero .carousel-content {
    transform: scale(0.9); 
  }
}

#hero .carousel-content {
  text-align: center;
}
@media (min-width: 1300px) {
  #hero .carousel-content {
    transform: scale(0.8);

  }
}
@media (min-width: 1900px) {
  #hero .carousel-content {
    transform: scale(1); 
    transform-origin: center; 
  }
}
#hero .carousel-content img {
  height: auto;
  display: block;
  margin: 0 auto; 
}
@media (max-width: 320px) {
  #hero .carousel-content img{
    margin-left: -2.7rem;
  }
}
#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
    font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "MS P明朝", "MS PMincho", serif;
}
@media (max-width: 375px) {
  #hero h2 {
    margin-top: 30px;
    margin-bottom: 0;
  }
}
@media (max-width: 320px) {
  #hero h2 {
    margin-top: 10px;
    margin-bottom: 0;
  }
}
#hero h2 span {
  color: #D11716;
}
#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 23px auto 30px auto;
  color: #fff;
}
@media (max-width: 375px) {
  #hero p {
    /* font-size: 14px; */
    margin: 10px auto 20px auto;
  }
}
@media (max-width: 320px) {
  #hero p {
    margin: -80px auto 20px auto;
  }
}
#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
  width: 100%;
  height: 50vh;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  transition: 0.3;
  padding: 0 1rem;
}
/* --- 小型スマホ：414px以下 --- */
@media (max-width: 414px) {
  hero .carousel-inner .carousel-item {
    height: 60vh;
  }
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}
#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}
#hero .carousel-indicators li.active {
  opacity: 1;
  background: #D11716;
}
#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px 12px 32px;
  display: inline-block;
  padding: 10px 30px 12px 30px;
  background: #D11716;
  color: #fff;
  border: 2px solid #D11716;
  margin: 0 0.2rem;
}
#hero .btn-get-started:hover {
  /* background: #6ab82a; */
  border: 2px solid #D11716;
  color: #D11716;
  background: none;
}
@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  #hero p {
    width: 80%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

.hero.hero-container.carousel-container img{
  width: 100%;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 2rem 0;
}

.section-bg {
  background-color: #f1f1f1;
  display: flex;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 1.6875rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-bottom: 0.5rem;
  color: #D11716;
  font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "MS P明朝", "MS PMincho", serif;
  letter-spacing:0.13em;
}
.section-title p {
  margin-bottom: 0;
  font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "MS P明朝", "MS PMincho", serif;
  font-size: 14px;
  letter-spacing: 0.05rem;
}
.section-title h4 {
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  letter-spacing: 0.05rem;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
  padding: 30px 20px;
}

.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  text-align: center;
  margin-bottom: 0;
}
.about .content h4 {
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  /* font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "MS P明朝", "MS PMincho", serif; */
  letter-spacing: 0.08rem;
  margin-bottom: .8rem;
}
.about .content p {
  margin-bottom: 0;
  text-align: center;
  font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "MS P明朝", "MS PMincho", serif;
}
.about .content .icon-box {
  margin-top: 25px;
}
.about .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}
.about .content .icon-box i {
  font-size: 48px;
  float: left;
  color: #D11716;
}
.about .content .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}
.about .image {
  background: url("../img/about.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}
@media (max-width: 991px) {
  .about .image {
    text-align: center;
  }
  .about .image img {
    max-width: 80%;
  }
}
@media (max-width: 667px) {
  .about .image img {
    max-width: 100%;
  }
}

#about .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px 12px 32px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  text-transform: uppercase;
  background: #D11716;
  border: solid 1px #D11716;

}
#about .btn-get-started:hover {
  color: #fff;
  background-image: linear-gradient(to right, yellow, #D11716);
  border-width: 1px; 
  border-style: solid; 
  border-image-source: linear-gradient(to right, yellow, #D11716); border-image-slice: 1;
}

@media (min-width: 1024px) {
  #about .carousel-control-prev, #about .carousel-control-next {
    width: 5%;
  }
}

#about .btn-inner {
  width: 100%;
  text-align: center;
  padding: 0.5rem 0;
}

#about .section-title p {
  margin-bottom: 0;
    font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "MS P明朝", "MS PMincho", serif;
  font-size: 1rem;
  line-height: 1.8rem;
  letter-spacing: 0.2rem;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 0 0 30px 0;
}
.counts .count-box {
  padding: 30px;
  width: 100%;
}
.counts .count-box i {
  display: block;
  font-size: 44px;
  color: #D11716;
  float: left;
  line-height: 0;
}
.counts .count-box span {
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color: #2a2a2a;
  margin-left: 60px;
}
.counts .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #505050;
}
.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #505050;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}
.counts .count-box a:hover {
  color: #777777;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}
.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}
.clients img:hover {
  filter: none;
  transform: scale(1.15);
}
@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  text-align: center;
}
.services .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 50%;
  transition: 0.5s;
  color: #D11716;
  overflow: hidden;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
}
.services .icon i {
  font-size: 36px;
  line-height: 0;
}
.services:hover .icon {
  box-shadow: 0px 0 25px rgba(92, 159, 36, 0.3);
}
.services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 15px;
}
.services .title a {
  color: #444444;
  transition: 0.3s;
}
.services .title a:hover {
  color: #D11716;
}
.services .title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #D11716;
  bottom: 0;
  left: calc(50% - 25px);
}
.services .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Concept Section Styles
--------------------------------------------------------------*/
.concept .box,
.concept .box01,
.concept .box02 {
  padding: 50px 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  height: 15rem;
  font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "MS P明朝", "MS PMincho", serif;
  position: relative;
  overflow: hidden;
  background-size: 120%;
  transition: background-size 0.5s ease, background-position 0.5s ease;
  background-position: center right; /* 初期位置 */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); 
}
@media (max-width: 991px) {
  .concept .box,
  .concept .box01,
  .concept .box02 {
    height: 17rem;
  }
}
@media (max-width: 600px) {
  .concept .box,
  .concept .box01,
  .concept .box02 {
    height: 15rem;
  }
}


.concept .box span,
.concept .box01 span,
.concept .box02 span {
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  color: #2a2a2a;
}

.concept .box h4,
.concept .box01 h4,
.concept .box02 h4 {
  font-size: 28px;
  font-weight: 600;
  margin: 20px 0;
  color: #D11716;
}

.concept .box p,
.concept .box01 p,
.concept .box02 p {
  color: #145269;;
  font-weight: 600;
  font-size: 28px;
  margin: 0;
  padding: 0 0.5rem;
  display: inline-block;
  opacity: 1; 
  transform: scale(1); 
  transition: color 0.3s ease, transform 0.7s ease, opacity 1.5s ease; 
}

/* Hover Effects */
.concept .box:hover {
  background: url(../img/concept/02-w-b.png) no-repeat center/cover;
  opacity: 0.9;
  background-size: 125%; 
  background-position: center left; 
}

.concept .box01:hover {
  background: url(../img/concept/09-w-b02.png) no-repeat center/cover;
  opacity: 0.9;
  background-size: 125%; 
  background-position: center left; 
}

.concept .box02:hover {
  background: url(../img/concept/06-w-b.png) no-repeat center/cover;
  opacity: 0.9;
  background-size: 125%; 
  background-position: center left; 
}

@media (max-width: 1200px) {
  .concept .box:hover, .concept .box01:hover, .concept .box02:hover{
    background-size: 145%; 
  }
}
@media (max-width: 991px) {
  .concept .box:hover, .concept .box01:hover, .concept .box02:hover{
    background-size: 105%; 
  }
}
@media (max-width: 500px) {
  .concept .box:hover, .concept .box01:hover, .concept .box02:hover{
    background-size: 110%; 
  }
}
@media (max-width: 360px) {
  .concept .box:hover, .concept .box01:hover, .concept .box02:hover{
    background-size: 160%; 
  }
}



.concept .box:hover span,
.concept .box01:hover span,
.concept .box02:hover span {
  color: #000;
  font-size: 33px;
  opacity: 0.9;
}

.concept .box span:hover,
.concept .box01 span:hover,
.concept .box02 span:hover {
  color: #ffffff;
}




.concept .box:hover p,
.concept .box01:hover p,
.concept .box02:hover p {
  color: #ffffff; 
  font-size: 80px;
  opacity: 1; 
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); 
  transform: scale(1.2);
}

.concept .box:hover h4,
.concept .box01:hover h4,
.concept .box02:hover h4 {
  color: #000;
  opacity: 0.9;
}

/* Title Styling */
.concept h4 {
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  /* font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "MS P明朝", "MS PMincho", serif; */
}

/* Button Styling */
#concept .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px 12px;
  margin: 10px;
  color: #fff;
  border: 2px solid #D11716;
  background: #D11716;
  transition: 0.5s;
  line-height: 1;
  animation-delay: 0.8s;
}

#concept .btn-get-started:hover {
  background-image: linear-gradient(to right, yellow, #D11716);
  color: #fff;
  border-image: linear-gradient(to right, yellow, #D11716);
  border-image-slice: 1;
}

/* Responsive Adjustments */

@media (min-width: 1024px) {
  #about .carousel-control-prev,
  #about .carousel-control-next {
    width: 5%;
  }
}

#concept .btn-inner {
  width: 100%;
  text-align: center;
  padding: 3rem 0;
}



/*--------------------------------------------------------------
# portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.01rem;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #D11716;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(42, 42, 42, 0.7);
}
.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(42, 42, 42, 0.7);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}
/* .portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
} */
.portfolio .portfolio-wrap iframe {
  transition: all ease-in-out 0.3s;
  display: flex;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}
.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}
.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}
.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #145269;
}
.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

 .portfolio .portfolio-wrap:hover iframe, .portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
 }
.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #D11716;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #D11716;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(42, 42, 42, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details iframe{
  display: inline-flex;
  width: 100%;
  height: 33rem;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #f7f7f7;
  text-align: center;
  /* border-radius: 8px; */
  position: relative;
  overflow: hidden;
  height: 100%;
}
.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  margin-top: 15px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #212529;
}
@media (min-width: 430px) {
  .pricing .box h3 {
    font-size: 1.4rem;
  }
}
.pricing .box h4 {
  font-size: 1rem;
  color: #D11716;
  font-weight: 500;
    font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "MS P明朝", "MS PMincho", serif;
  margin-bottom: 20px;
  line-height: 1.5rem;
}
@media (min-width: 430px) {
  .pricing .box h4 {
    font-size: 1.3rem;
  }
}
.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}
.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}
.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #2a2a2a;
  text-align: center;
  line-height: 20px;
  font-size: 0.9375rem;
}
.pricing .box ul li {
  padding-bottom: 16px;
    font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "MS P明朝", "MS PMincho", serif;
  border-bottom: 1px solid;
  display: inline-block;
  word-break: break-all;
  width: 87%;
  padding-top: 1.1rem;
}
.pricing .box ul i {
  color: #D11716;
  font-size: 18px;
  padding-right: 4px;
}
.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}
.pricing .btn-wrap {
  padding: 44px;
  text-align: center;
}
.pricing .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  /* border-radius: 4px; */
  border: 2px solid #D11716;
  color: #D11716;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}
.pricing .btn-buy:hover {
  background: #D11716;
  color: #fff;
}
.pricing .recommended {
  background: #D11716;
}
.pricing .recommended h3, .pricing .recommended h4, .pricing .recommended h4 span, .pricing .recommended ul, .pricing .recommended ul .na {
  color: #fff;
}
.pricing .recommended .btn-buy {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.pricing .recommended .btn-buy:hover {
  background: #fff;
  border-color: #fff;
  color: #D11716;
}

.pricing h4 {
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  padding-bottom: .5rem;
}

#pricing li a{
  color: #2a2a2a;
  text-decoration: none;
}
#pricing li a:hover {
  color: #f7dea1;
  /* color: #8ed851; */
  /* background: #8ed851; */
  text-decoration:underline;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}
.faq .faq-list ul {
  padding: 0;
  list-style: none;
}
.faq .faq-list li + li {
  margin-top: 15px;
}
.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}
.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}
.faq .faq-list a:hover,
.faq .faq-list .icon-help:hover{
color: #145269;
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 1px;
  left: -1px;
  color: #D11716;
}
.faq .faq-list .icon-help:hover{
  color: #145269;
  }

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
  color: #D11716;
}
.faq .faq-list .icon-close:hover,
.faq .faq-list .icon-help:hover{
  color: #145269;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
    font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "MS P明朝", "MS PMincho", serif;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed {
  color: #343a40;
}
.faq .faq-list a.collapsed:hover {
color: #145269;
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}
@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}
.contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #D11716;
}
.contact .contact-info address, .contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}
.contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}
.contact .contact-info a {
  color: #000;
}
.contact .contact-info a:hover {
  color: #D11716;
}
.contact .contact-address, .contact .contact-phone, .contact .contact-email {
  margin-bottom: 20px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea, .contact .php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  height: auto;
  padding: 10px 15px;
  border-radius: 4px;
  color: #76797c;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus, .contact .php-email-form select:focus {
  border-color: #D11716;
}
.contact .php-email-form select:focus {
  border-color: #D11716!important;
}

.contact .php-email-form button[type=submit] {
  /* background: #D11716;
  border: 0;
  padding: 10px 30px 12px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
  width: 16%; */

  display: inline-block;
  padding: 10px 40px 12px 40px;
  /* border-radius: 4px; */
  border: 2px solid #D11716;
  color: #D11716;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
  background-color: #fff;
}
.contact .php-email-form button[type=submit]:hover {
  /* background: #6ab82a; */
  background: #D11716;
  color: #fff;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (min-width: 768px) {
  .contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
  .contact .contact-address, .contact .contact-phone, .contact .contact-email {
    padding: 20px 0;
  }
}

.contact h4 {
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  padding-bottom: .5rem;
}

.contact .form .form-select{
  font-size: 0.9rem;
  min-height: 48px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2376797c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 2.5rem;
}
@media (max-width: 400px) {
  .contact .form-select {
    font-size: 0.75rem; 
  }
}

@media (max-width: 360px) {
  .contact .form-select {
    font-size: 0.6875rem;
    letter-spacing: -0.2px;
    padding-left: 4px;
    padding-right: 4px;
  }
}
.contact .form-select:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2376797c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}
.contact .form-select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23e51010' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(229, 16, 16, 0.25);
  border-color: #D11716;
}



/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 6px 0;
  background: #f6f6f6;
  min-height: 31px;
  margin-top: 77px;
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "MS P明朝", "MS PMincho", serif;
  padding-top: 0.5rem;
  letter-spacing: 0.02rem;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #444444;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #111111;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}
#footer .footer-top {
  background: #1d1d1d;
  border-bottom: 1px solid #2f2f2f;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  font-family: 'MS 明朝', 'Hiragino Mincho Pro', 'serif';
  letter-spacing: 0.14rem;
}
#footer .footer-top .footer-info h5 {
  font-size: 11px;
  margin: 0;
  padding: 6px 0 2px 0;
  line-height: 1;
  font-weight: 50;
  letter-spacing: 0.111rem;
  font-family: 'MS 明朝', 'Hiragino Mincho Pro', 'serif';
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #fff;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2a2a2a;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #D11716;
  color: #fff;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 11px;
  font-weight: 200;
  color: #fff;
  position: relative;
  font-family: 'MS 明朝', 'Hiragino Mincho Pro', 'serif';
  margin-bottom: 0.5rem;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #D11716;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-family: "Roboto", sans-serif;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a, #footer .footer-info a{
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover, #footer .footer-info a:hover {
  color: #145269;
}
#footer .footer-top .footer-icon{
  display: inline-block;
}
#footer .footer-top .footer-icon img{
  width: 55%;
}
@media (max-width: 768px) {
  #footer .footer-top .footer-icon img{
    width: 45%;
  }
}

/*--------------------------------------------------------------
# Profile
--------------------------------------------------------------*/

.profile{
  padding-top: 40px;
}

.profile .profile-photo,.profile .session-photo{
  align-items: center;
  justify-content: center;
  display: flex;
  margin-top: 1.5rem;
}

.profile .profile-photo img{
  display: block;
  width: 83%;
}
.profile .session-photo img{
  display: block;
  width: 51%;
}

@media (max-width: 991px) {
  .profile .profile-photo img, .profile .session-photo img {
    width: 100%;
    max-width: 720px; 
    height: auto;
  }

  .profile .profile-photo img, .profile .session-photo {
    padding: 0 1rem;
  }
}

.profile .profile-info, .profile .profile-description{
  align-items: center;
  justify-content: center;
  display: flex;
  text-align: center;
  font-family: serif,sans-serif;
}

.profile-description02{
  align-items: center;
  justify-content: center;
  display: flex;
  text-align: center;
  font-family: serif,sans-serif;
  padding: 0 10%;
}
.profile-description03{
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: serif, sans-serif;
  margin: 1.5rem 0;
}
@media (max-width: 576px) {
  .profile-description03{
    display: block;
  }
}

.profile-description02 h4, .profile-description03 h4,
.profile-description02 h5, .profile-description03 h5 {
  font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "MS P明朝", "MS PMincho", serif;

}

.profile-description02 h2, .profile-description03 h2{
  font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "MS P明朝", "MS PMincho", serif;
  color: #000;
  font-weight: 500;
}

.profile-description02 h3,.profile-description03 h3 {
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.08rem;
    margin-bottom: .8rem;
}


.profile-description03 p {
  font-size: 1rem;
  display: inline-block;
  letter-spacing: 0.08rem;
  white-space: nowrap;
  width: 100%;
  margin: 0;
}
.profile-description02 p,.profile-description03 p {
  font-size: 1rem;
  display: inline-block;
  letter-spacing: 0.08rem;
  white-space: normal;
  width: 100%;
  margin: 0;
}
.profile-description02{
  font-size: 1rem;
  display: contents;
  letter-spacing: 0.08rem;
  white-space: nowrap;
  width: 100%;
  margin: 0;
}
.profile-description02 ul,.profile-description03 ul{
  list-style-type: none;
  font-size: 0.9rem;
  font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.08rem;
  line-height: 1.7rem;
}
@media (max-width: 576px) {
  .profile-description02 ul,.profile-description03 ul{
    padding: 0 1rem;
  }
}

.profile-description02 span{
  display: contents;
}
.profile-description02 li{
  white-space: normal;
  font-size: 1rem;
}


#profile .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px 12px 32px;
  display: inline-block;
  padding: 10px 30px 12px 30px;
  background: #D11716;
  color: #fff;
  border: 2px solid #D11716;
  margin: 0 0.2rem;
}

#profile .btn-get-started:hover {
    border: 2px solid #D11716;
    color: #D11716;
    background: none;
}

/* YouYube */


/* 各動画のラッパー */
.profile-description-video-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.profile-description-video {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background-color: #000;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-info {
  text-align: center;
  margin-top: 1rem;
}

.video-title {
  font-size: 1rem;
  font-weight: 500;
  margin: 0.5rem 0;
  font-family: "Roboto", sans-serif;
}

.video-subtitle {
  font-size: 0.8rem;
  color: #666;
  font-family: "Roboto", sans-serif;
}

.gdesc-inner .gslide-title a{
  display: inline-flex !important;
  font-weight: bold !important;
  color: gray !important;
  padding-left: 1rem !important;
  font-size: 2rem !important;
}

.gdesc-inner .gslide-title a:hover{
  color: red!important;
}

/* @media (max-width: 576px) {
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 18px;
  }
  .section-title p {
    font-size: 14px;
    margin-bottom: 1rem;
  }
  .btn {
    padding: 8px 20px;
    font-size: 14px;
  }
  .form-control {
    font-size: 14px;
    padding: 8px 12px;
  }
} */


.validate {
  color: red;
  font-size: 0.875rem;
  padding-top: 4px;
  font-style: italic;
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-2px); }
  to { opacity: 1; transform: translateY(0); }
}