/*
Theme Name: beauty-wp
*/

@charset "utf-8";
/* * {
	outline: 1px solid magenta;
} */

header {
  width: 100%;
  height: 180px;
}
.header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1000px;
  height: 180px;
  margin: 0 auto;
}
.logo img {
  width: 120px;
}
.logo-sp {
  display: none;
}
nav ul {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 0 auto;
  font-family: "Outfit", serif;
  font-weight: 500;
  font-size: 18px;
  gap: 50px;
}
nav ul li:not(.logo) {
  margin-bottom: 10px; /* 下部余白を追加 */
}
nav ul li a {
  position: relative;
  text-decoration: none;
  color: #76C0BB;
  padding: 0;
  transition: color 0.3s ease;
}
nav ul li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #76C0BB;
  left: 0;
  bottom: 10px;
  opacity: 0; 
  transition: bottom 0.3s ease, opacity 0.3s ease; 
}
nav ul li a:hover {
  color: #76C0BB;
}
nav ul li a:hover::after {
  bottom: -3px; 
  opacity: 1; 
}
nav ul li.logo a::after {
  display: none; /* 下線を非表示 */
}
.hamburger {
  display: none;
}

@media (max-width: 768px) {
  header {
    z-index: 1000; 
    height: 100px;
  }
  .header-inner {
    width: 100%;
    height: 100px;
  }
  .logo {
    display: none;
  }
  .logo-sp {
    display: block;
  }
  .logo-sp img {
    height: 80px;
  }
  nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.96);
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
    gap: 15px;
  }
  header nav ul.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  header nav ul li {
    text-align: center;
    padding: 0;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 1002;
    gap: 8px;
  }
  .hamburger span {
    height: 3px;
    width: 30px;
    background-color: #76C0BB;
    margin: 0 0;
    transition: 0.3s;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 8px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }
}

/* register-btn */
.register-btn {
  position: fixed;
  top: 0;
  right: 0;
  width: 180px;
  height: 220px;
  background-color: #76C0BB;
  font-size: 22px;
  color: #fff;
  z-index: 999;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  line-height: 1.3;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-bottom-left-radius: 40px;
}
.register-text span {
  display: block;
  font-size: 16px;
  font-family: "Outfit", serif;
  font-weight: 300;
  line-height: 1.6;
}
.register-btn:hover
{
  background: #6F6E69;
  color: #fff;
}
.register-btn a {
  width: 100%;
  height: 100%; 
  color: #fff;
  text-decoration: none;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 0px;  
}

@media (max-width: 768px) {
  .register-btn {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    flex-direction: row;
    text-align: center;
    height: auto;
    padding: 10px 0;
    font-size: 24px;
    flex-direction: column;
    border-bottom-left-radius: 0;
  }
  .register-btn a {
    text-align: left;
    flex-direction: row;
    gap: 20px;  
  }
  .register-icon img {
    width: 60px;
  }
}

.top-img {
  display: flex;
  height: 600px;
}
.top-img-inner {
	width: calc(100% - 90px);
	height: 100vh;
}
.top-side {
  width: 90px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center; 
  flex-direction: column;
  gap: 42px;
}
.top-side-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 1;
  gap: 16px;
}
.top-side-sns-item img {
  width: 26px;
}
.top-side-scroll {
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  height: 238px;
}
.line {
  position: relative;
  width: 1px;
  height: 100%;
  background-color: #6F6E69;
  animation: lineMove 4s linear infinite;
}
.line::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -10px;
  width: 10px;
  height: 1px;
  background-color: #6F6E69;
  transform: rotate(-45deg);
  transform-origin: left center;
}
@keyframes lineMove {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}
.scroll-text {
  writing-mode: vertical-rl; /* 縦書きに設定 */
  text-orientation: sideways; /* 文字を横向きに表示 */
  font-size: 20px; /* フォントサイズ */
  color: #6F6E69; /* 文字の色 */
  font-family: "Outfit", serif;
  font-weight: 400;
}
.slideshow {
  position: absolute;
  width: calc(100% - 90px);
  height: 600px;
  overflow: hidden;
  border-radius: 0 0 300px 0;
}
.slideshow-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background: no-repeat 50% 50%;
  background-size: cover;
  -webkit-animation-name: kenburns;
  animation-name: kenburns;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-duration: 16s;
  animation-duration: 16s;
  opacity: 1;
  transform: scale(1.2);
}

@media screen and (max-width: 768px) {
  .top-img {
    width: 100%;
    height: 70vh;
  }
  .top-img-inner {
    width: 90vw;
    height: 100vh;
  }
  .slideshow {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    margin: 0;
    border-radius: 0 0 150px 0;
  }
  .slideshow-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background: no-repeat 50% 50%;
    background-size: cover;
    -webkit-animation-name: kenburns;
    animation-name: kenburns;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-duration: 16s;
    animation-duration: 16s;
    opacity: 1;
    transform: scale(1.2);
  }
  .top-side {
    width: auto;
    height: auto;
    padding: 10px;
  }
  .top-side-sns-item img {
    width: 20px;
  }
  .scroll-text {
    font-size: 18px; 
  }
}
.slideshow-image:nth-child(1) {
  -webkit-animation-name: kenburns-1;
  animation-name: kenburns-1;
  z-index: 3;
}

.slideshow-image:nth-child(2) {
  -webkit-animation-name: kenburns-2;
  animation-name: kenburns-2;
  z-index: 2;
}

.slideshow-image:nth-child(3) {
  -webkit-animation-name: kenburns-3;
  animation-name: kenburns-3;
  z-index: 1;
}

.slideshow-image:nth-child(4) {
  -webkit-animation-name: kenburns-4;
  animation-name: kenburns-4;
  z-index: 0;
}

@-webkit-keyframes kenburns-1 {
  0% {
    opacity: 1;
    transform: scale(1.2);
  }
  1.5625% {
    opacity: 1;
  }
  23.4375% {
    opacity: 1;
  }
  26.5625% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
  98.4375% {
    opacity: 0;
    transform: scale(1.2117647059);
  }
  100% {
    opacity: 1;
  }
}
@keyframes kenburns-1 {
  0% {
    opacity: 1;
    transform: scale(1.2);
  }
  1.5625% {
    opacity: 1;
  }
  23.4375% {
    opacity: 1;
  }
  26.5625% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
  98.4375% {
    opacity: 0;
    transform: scale(1.2117647059);
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes kenburns-2 {
  23.4375% {
    opacity: 1;
    transform: scale(1.2);
  }
  26.5625% {
    opacity: 1;
  }
  48.4375% {
    opacity: 1;
  }
  51.5625% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
@keyframes kenburns-2 {
  23.4375% {
    opacity: 1;
    transform: scale(1.2);
  }
  26.5625% {
    opacity: 1;
  }
  48.4375% {
    opacity: 1;
  }
  51.5625% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
@-webkit-keyframes kenburns-3 {
  48.4375% {
    opacity: 1;
    transform: scale(1.2);
  }
  51.5625% {
    opacity: 1;
  }
  73.4375% {
    opacity: 1;
  }
  76.5625% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
@keyframes kenburns-3 {
  48.4375% {
    opacity: 1;
    transform: scale(1.2);
  }
  51.5625% {
    opacity: 1;
  }
  73.4375% {
    opacity: 1;
  }
  76.5625% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
@-webkit-keyframes kenburns-4 {
  73.4375% {
    opacity: 1;
    transform: scale(1.2);
  }
  76.5625% {
    opacity: 1;
  }
  98.4375% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
    transform: scale(1);
  }
}
@keyframes kenburns-4 {
  73.4375% {
    opacity: 1;
    transform: scale(1.2);
  }
  76.5625% {
    opacity: 1;
  }
  98.4375% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

/* section */
section { 
  padding: 100px 0; 
  box-sizing: border-box;
}

@media (max-width: 768px) {
    section {
      padding: 50px 0;
    }
  }

/* news */
.news {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 50px;
}
.news-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 1100px;
}
.news h2 {
  font-size: 65px;
  color: #76C0BB;
  font-family: "Outfit", serif;
  font-weight: 500; 
  line-height: 1.3;
}
.news-line {
  background: #76C0BB;
  width: 0; 
  height: 1px;
  transform-origin: left; 
  transition: width 2s ease; 
}
.news-line.active {
  width: 100%;
}
.news-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 1100px;
  margin-top: 20px;
}
.news-text {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 8px;
}
.news-text-link {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.news-text-day {
  background: #76C0BB;
  color: #fff;
  font-family: "Outfit", serif;
  font-weight: 300;
  padding: 0;
  width: 120px;
  text-align: center;
  flex-shrink: 0;
}
.news-img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.news-img-link {
  width: 120px;
  height: 120px;
  overflow: hidden;
  position: relative;
}
.news-img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .news {
    width: 90%;
    margin: 0 auto;
  }
  .news-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 1100px;
  }
  .news h2 {
    font-size: 45px;
  }
  .news-text {
    justify-content: center;
  }
  .news-img {
    display: none;
  }
}

/* page-news */
.page-news {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.page-news-card {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  gap: 30px;
}
.page-news-card-img {
  width: 120px;
  height: 120px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.page-news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-news-card-detail {
  width: 100%;
}
.page-news-card-header {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.page-news-card-day {
  background: #76C0BB;
  color: #fff;
  font-family: "Outfit", serif;
  font-weight: 300;
  padding: 0;
  width: 120px;
  text-align: center;
  flex-shrink: 0;
}
.page-news-card-title {
  font-weight: 500;
}
.page-news-card-btn {
  text-align: right;
  margin-top: 10px;
}
.page-news-card-btn-read {
  display: inline-block;
  padding: 0 46px;
  font-size: 18px;
  font-family: "Outfit", serif;
  font-weight: 400;
  color: #6F6E69;
  text-decoration: none;
  border: 1px solid #6F6E69;
  border-radius: 90px;
  text-align: center;
  transition: all 0.3s ease;
}
.page-news-card-btn-read:hover {
  background-color: #93918A;
  color: #ffffff;
  cursor: pointer;
  border: 1px solid #93918A;
}

@media (max-width: 768px) {
  .page-news {
    width: 90%;
    margin: 0 auto 50px;
    gap: 50px;
  }
  .page-news-card {
    flex-direction: column;
    text-align: left;
    gap: 15px;
  }
  .page-news-card-img {
    width: 100%;
    height: 150px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
  }
  .page-news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .page-news-card-text {
    margin-top: 5px;
  }
  .page-news-card-btn {
    text-align: center;
   }
  .page-news-card-btn-read {
    padding: 3px 0;
    font-size: 18px;
    width: 70%;
  }
}

/* feature */
.feature {
  width: 100%;
  padding-top: 0;
}
.feature-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}
.feature-line {
  width: 140px;
}
.feature-line-animation {
  width: 140px; /* 線の全体幅を固定 */
  height: 1px;
  background: #76C0BB;
  transform: scaleX(0); /* 初期状態で縮小 */
  transform-origin: left; /* 左端を基準に設定 */
  transition: transform 2s ease; /* アニメーションでtransformを使用 */
}
.feature-line-animation.active {
  transform: scaleX(1); /* 左端から右端に拡大 */
}
.feature-title h2 {
  font-size: 85px;
  font-family: "Outfit", serif;
  font-weight: 500;
  color: #76C0BB;
  line-height: 1.3;
}
.feature-description {
  margin-left: 170px;
  width: auto;
}
.feature-description-sub {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 30px;
}
.feature-description-text {
  margin-top: 10px;
}
.feature-box {
  display: flex;
  justify-content: space-between;
}
.feature-detail {
  flex: 1; 
  margin-right: 60px;
}
.feature-container {
  position: relative;
  flex: 0 0 40vw;
  height: calc(40vw * 1.75);
  max-height: 750px;
  overflow: hidden;
  border-radius: 0 0 0 300px; 
  opacity: 0; 
  transition: opacity 0.5s ease-in-out;
}
.feature-bg-animation {
  position: absolute;
  top: 0;
  right: 0;
  width: 200%;
  height: 200%;
  background-color: #76C0BB;
  transform-origin: top right;
  transform: rotate(0deg);
  animation: fan-effect 0.8s ease-in-out forwards paused; 
  z-index: 1;
  visibility: hidden; 
}

@keyframes fan-effect {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(-90deg); 
  }
}

/* 画像 */
.feature-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.2); 
  transition: opacity 0.6s ease-in-out 0.2s, transform 0.6s ease-in-out 0.2s;
  z-index: 0;
}

.feature-image.visible {
  opacity: 1; 
  transform: scale(1); 
}

.feature-container.visible {
  opacity: 1; 
}

.feature-container.visible .feature-bg-animation {
  visibility: visible; 
  animation-play-state: running;
}
@media (max-width: 768px) {
  .feature-title {
    gap: 20px;
  }
  .feature-title h2 {
    font-size: 45px;
  }
  .feature-line {
    width: 40px;
  }
  .feature-line-animation {
    width: 40px;
  }
  .feature-description {
    margin-left: 0vw;
    width: 90%;
    margin: 0 auto;
  }
  .feature-description-sub {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    margin-top: 20px;
  }
  .feature-description-text {
    margin-top: 10px;
  }
  .feature-box {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    gap: 20px;
  }
  .feature-detail {
    flex: 1; 
    margin-right: 0px;
  }
  .feature-container {
    position: relative;
    flex: 0 0 100vw;
    height: calc(100vw * 3);
    max-height: 1000px;
    overflow: hidden;
    border-radius: 0 0 0 200px; 
    opacity: 0; 
    transition: opacity 0.5s ease-in-out;
  }
}
/* Menu */
.feature-description-menu {
  margin-right: 170px;
  width: auto;
}
.feature-title-menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row-reverse;
  gap: 30px;
}
.feature-title-menu h2 {
  font-size: 85px;
  font-family: "Outfit", serif;
  font-weight: 500;
  color: #76C0BB;
  line-height: 1.3;
}
.feature-line-menu {
  width: 140px;
}
.feature-line-animation-menu {
  width: 140px;
  height: 1px;
  background: #76C0BB;
  transform: scaleX(0); 
  transform-origin: right; 
  transition: transform 2s ease; 
}

.feature-line-animation-menu.active {
  transform: scaleX(1); 
}
.feature-box-menu {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.feature-detail-menu {
  flex: 1; 
  margin-left: 60px;
}
.feature-container-menu {
  position: relative;
  flex: 0 0 40vw;
  height: calc(40vw * 1.75);
  max-height: 750px;
  overflow: hidden;
  border-radius: 0 0 300px 0; 
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.feature-bg-animation-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background-color: #76C0BB;
  transform-origin: top left;
  transform: rotate(0deg);
  animation: fan-effect-menu 0.8s ease-in-out forwards paused; 
  visibility: hidden; 
}

@keyframes fan-effect-menu {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(90deg); 
  }
}

/* 画像 */
.feature-image-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.2);
  transition: opacity 0.6s ease-in-out 0.2s, transform 0.6s ease-in-out 0.2s;
  z-index: 0;
}

.feature-image-menu.visible {
  opacity: 1; 
  transform: scale(1); 
}

.feature-container-menu.visible {
  opacity: 1; 
}

.feature-container-menu.visible .feature-bg-animation-menu {
  visibility: visible; 
  animation-play-state: running; 
}
@media (max-width: 768px) {
  .feature-title-menu {
    gap: 20px;
  }
  .feature-title-menu h2 {
    font-size: 45px;
  }
  .feature-line-menu {
    width: 40px;
  }
  .feature-line-animation-menu {
    width: 40px;
  }
  .feature-description-menu {
    margin-right: 0;
    width: 90%;
    margin: 0 auto;
  }
  .feature-box-menu {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    gap: 20px;
  }
  .feature-detail-menu {
    flex: 1; 
    margin-left: 0;
  }
  .feature-container-menu {
    position: relative;
    flex: 0 0 100vw;
    height: calc(100vw * 3);
    max-height: 1000px;
    overflow: hidden;
    border-radius: 0 0 200px 0; 
    opacity: 0; 
    transition: opacity 0.5s ease-in-out;
  }
  .feature-line-animation-menu {
    transform-origin: right; 
  }
}
.feature-btn {
  text-align: right;
  margin-top: 30px;
}
.feature-btn-read {
  display: inline-block;
  padding: 6px 80px;
  font-size: 18px;
  font-family: "Outfit", serif;
  font-weight: 400;
  color: #6F6E69;
  text-decoration: none;
  border: 1px solid #6F6E69;
  border-radius: 90px;
  text-align: center;
  transition: all 0.3s ease;
}
.feature-btn-read:hover {
  background-color: #93918A;
  color: #ffffff;
  cursor: pointer;
  border: 1px solid #93918A;
}
@media (max-width: 768px) {
  .feature-btn {
    text-align: center;
    margin-top: 30px;
  }
  .feature-btn-read {
    padding: 3px 0;
    width: 80%;
  }
}

/* qualities */
.qualities {
  background: #F7F7F7;
  padding-top: 50px;
}
.qualities-title {
  font-size: 85px;
  font-family: "Outfit", serif;
  font-weight: 400;
  color: #76C0BB;
  text-align: center;
  position: relative;
  line-height: 1.5;
}

.qualities-sub {
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.5;
}
.qualities-sub span {
  font-size: 64px;
}
.qualities-box {
  margin: 80px auto;
  display: flex;
}
.qualities-box-left {
  justify-content: flex-start;
}
.qualities-box-right {
  justify-content: flex-end;
}
.qualities-box-item {
  width: 84vw;
  display: flex;
  justify-content: flex-start;
}
.qualities-box-item-right {
  width: 84vw;
  display: flex;
  justify-content: flex-end;
  flex-direction: row-reverse;
}
.qualities-box-img {
  position: relative;
  width: 450px; 
  height: auto; 
  flex-shrink: 0; 
  overflow: hidden;
}
.qualities-box-img img {
  width: 100%; 
  height: 100%; 
  display: block; 
}

.qualities-bg-animation {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #76C0BB; 
  z-index: 2;
  animation: slide-bg 1s ease-in-out forwards, fade-out 1s ease-in-out 0.8s forwards;
  visibility: hidden; 
  animation-play-state: paused;
}

@keyframes slide-bg {
  0% {
      left: -100%;
  }
  100% {
      left: 100%; 
  }
}

@keyframes fade-out {
  0% {
      opacity: 1;
  }
  100% {
      opacity: 0;
  }
}

.qualities-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.2);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  z-index: 1;
}
.qualities-image.visible {
  opacity: 1;
  transform: scale(1);
}
.qualities-box-img.visible .qualities-bg-animation {
  visibility: visible; 
  animation-play-state: running; 
}

.qualities-box-detail {
  background: #fff;
  border-radius: 0 0 150px 0;
  padding: 40px 100px;
  opacity: 0; 
  transform: translateX(-50px); 
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out; 
}
.qualities-box-detail.visible {
  opacity: 1;
  transform: translateX(0);
}
.qualities-box-detail-right {
  border-radius: 0 0 0 150px;
  opacity: 0; 
  transform: translateX(50px); 
}
.qualities-box-title {
  font-family: "Outfit", serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  color: #76C0BB;
}
.qualities-box-title span {
  font-size: 64px;
}
.qualities-box-secondary {
  font-family: "Outfit", serif;
  font-weight: 400;
  font-size: 24px;
  color: #76C0BB;
  line-height: 1;
}
.qualities-box-sub {
  font-size: 32px;
  font-weight: 500;
  margin-top: 0;
}
.qualities-box-text {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .qualities-title {
    font-size: 45px;
  }
  .qualities-sub {
    font-size: 20px;
  }
  .qualities-sub span {
    font-size: 30px;
  }
  .qualities-box {
    margin: 50px auto;
  }
  .qualities-box-item {
    width: 90%;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
  }
  .qualities-box-item-right {
    width: 90%;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
  }
  .qualities-box-img {
    width: 100%; 
    height: 250px; 
  }
  .qualities-box-detail {
    border-radius: 0 0 100px 0;
    padding: 20px 40px 50px;
    transform: none;
  }
  .qualities-box-detail-right {
    border-radius: 0 0 0 100px;
    transform: none;
  }
  .qualities-box-title {
    font-size: 30px;
  }
  .qualities-box-title span {
    font-size: 40px;
  }
  .qualities-box-secondary {
    font-size: 18px;
  }
  .qualities-box-sub {
    font-size: 20px;
  }
}

/* index */
.index-inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
}
.index-title {
  display: flex;
  align-items: center;
  gap: 20px; 
  height: 120px;
}
.index-line {
  width: 1px; 
  height: 100%;
  background: #76C0BB;
  transform: scaleY(0); 
  transform-origin: top; 
  transition: transform 2s ease; 
}
.index-line.active {
  transform: scaleY(1); 
}
.index-title-name {
  font-size: 68px;
  font-family: "Outfit", sans-serif; 
  font-weight: 500; 
  color: #76C0BB;
  line-height: 1.2; 
}
.index-title-name span {
  display: block;
  font-size: 28px;
  font-family: "Outfit", sans-serif; 
  font-weight: 400; 
  color: #76C0BB; 
  line-height: 1.6;
}
@media (max-width: 768px) {
  .index-inner {
    width: 90%;
  }
  .index-title {
    height: 90px;
  }
  .index-line.active {
    transform: scaleY(1); 
  }
  .index-title-name {
    font-size: 45px;
  }
  .index-title-name span {
    font-size: 18px;
  }
}

/* gallery */
.gallery-box {
  width: 100%;
  max-width: 1100px;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  justify-items: center;
  gap: 50px 0;
}
.gallery-box-item {
  width: 320px;
}
.gallery-box-img-link {
  display: block;
  text-decoration: none; 
  color: inherit;
}
.gallery-box-img {
  width: 320px;
  display: flex;
}
.gallery-box-img-before,
.gallery-box-img-after
 {
  width: 160px;
  height: 320px;
  overflow: hidden;
  position: relative;
}
.gallery-box-img-before img,
.gallery-box-img-after img
 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-box-img-before-icon {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #93918A;
  color: #fff;
  padding: 0 20px;
  font-size: 16px;
  font-family: "Outfit", sans-serif; 
  font-weight: 300; 
}
.gallery-box-img-after-icon {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #38B7AE;
  color: #fff;
  padding: 0 20px;
  font-size: 16px;
  font-family: "Outfit", sans-serif; 
  font-weight: 300; 
}
.gallery-box-detail {
  margin-top: 10px;
}
.gallery-box-menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.gallery-box-menu-title {
  font-family: "Outfit", serif;
  font-weight: 400;
  font-size: 24px;
  color: #76C0BB;
}
.gallery-box-menu-line {
  width: 100%; 
  height: 1px;
  background: #76C0BB;
}
.gallery-box-course {
  font-weight: 400;
}
.gallery-btn {
  text-align: right;
  margin-top: 20px;
}
.gallery-btn-view {
  display: inline-block;
  padding: 3px 36px;
  font-size: 18px;
  font-family: "Outfit", serif;
  font-weight: 400;
  color: #6F6E69;
  text-decoration: none;
  border: 1px solid #6F6E69;
  border-radius: 90px;
  text-align: center;
  transition: all 0.3s ease;
}
.gallery-btn-view:hover {
  background-color: #93918A;
  color: #ffffff;
  cursor: pointer;
  border: 1px solid #93918A;
}
@media (max-width: 768px) {
  .gallery-box {
    margin: 30px auto;
    grid-template-columns: 1fr; 
    gap: 50px;
  }
  .gallery-btn {
    text-align: center;
    margin-top: 20px;
  }
  .gallery-btn-view {
    width: 80%;
  }
}


/* blog */
.blog {
  background: #F7F7F7;
}
.blog-list {
  width: 100%;
  max-width: 1100px;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  justify-items: center;
}
.blog-card {
  width: 300px;
}
.blog-card-img {
  width: 300px;
  height: 300px; 
  overflow: hidden;
  border-radius: 50%;
  position: relative;
  transition: transform 0.3s ease;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-img:hover {
  transform: scale(0.9);
}
.blog-card-detail {
  padding: 20px;
}
.blog-card-text {
  line-height: 1.5;
}
.blog-card-day {
  font-size: 14px;
  text-align: right;
  font-family: "Outfit", serif;
  font-weight: 400;
}
.blog-card-btn {
  text-align: center;
  margin: 20px auto;
}
.blog-card-btn-read {
  display: inline-block;
  padding: 0 46px;
  font-size: 18px;
  font-family: "Outfit", serif;
  font-weight: 400;
  color: #6F6E69;
  text-decoration: none;
  border: 1px solid #6F6E69;
  border-radius: 90px;
  text-align: center;
  transition: all 0.3s ease;
}
.blog-card-btn-read:hover {
  background-color: #93918A;
  color: #ffffff;
  cursor: pointer;
  border: 1px solid #93918A;
}
@media (max-width: 768px) {
  .blog  {
    padding-bottom: 30px;
  }
  .blog-list {
    margin: 30px auto 0;
    grid-template-columns: 1fr; 
  }
  .blog-card {
    width: 100%;
  }
  .blog-card-img {
    width: 200px;
    height: 200px; 
    margin: 0 auto;
  }
  .blog-card-btn-read {
    padding: 3px 0;
    width: 70%;
  }
}

/* online */
.online-list {
  width: 100%;
  max-width: 1100px;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  justify-items: center;
  gap: 50px 0;
}
.online-item {
  width: 220px;
}
.online-item-img {
  width: 220px;
  height: 220px; 
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}
.online-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.online-item-img:hover {
  transform: scale(0.9);
}
.online-item-detail {
  padding: 10px;
}
.online-item-text {
  text-align: left;
  line-height: 1.5;
}
.online-item-price {
  text-align: right;
  font-family: "Outfit", serif;
  font-weight: 400;
  margin-top: 6px;
}
.online-item-btn {
  text-align: center;
  margin-top: 20px;
}
.online-item-btn-view {
  display: inline-block;
  padding: 0 36px;
  font-size: 18px;
  font-family: "Outfit", serif;
  font-weight: 400;
  color: #6F6E69;
  text-decoration: none;
  border: 1px solid #6F6E69;
  border-radius: 90px;
  text-align: center;
  transition: all 0.3s ease;
}
.online-item-btn-view:hover {
  background-color: #93918A;
  color: #ffffff;
  cursor: pointer;
  border: 1px solid #93918A;
}
@media (max-width: 768px) {
  .online-list {
    width: 100%;
    max-width: 1100px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    justify-items: center;
    gap: 30px 0;
  }
  .online-item {
    width: 160px;
  }
  .online-item-img {
    width: 160px;
    height: 160px; 
  }
  .online-item-btn-view {
    width: 100%;
    padding: 3px 0;
    font-size: 14px;
  }
}

/* page-online */
.page-online {
  width: 100%;
  max-width: 1000px;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  justify-items: center;
  gap: 50px 0;
}
@media (max-width: 768px) {
  .page-online {
    width: 100%;
    max-width: 1100px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    justify-items: center;
    gap: 30px 0;
  }
}

/* single-online */
.single-online {
  width: 100%;
  max-width: 1000px;
  margin: 50px auto;
  display: flex;
  justify-content: center;
  justify-items: flex-start;
  gap: 50px;
}
.single-online-img {
  width: 500px;
  height: 500px;
  overflow: hidden;
  position: relative;
}
.single-online-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-online-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
}
.single-online-detail {
  flex: 1;
  min-width: 450px;
  box-sizing: border-box;
  text-align: left;
}
.single-online-text {
  margin-top: 20px;
}
.single-online-price {
  text-align: right;
  font-size: 24px;
  margin-top: 20px;
}
.single-online-btn {
  text-align: center;
  margin-top: 50px;
}
.single-online-btn-purchase {
  display: inline-block;
  padding: 10px 100px;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  background-color: #76C0BB;
  border-radius: 90px;
  text-align: center;
  transition: all 0.3s ease;
}
.single-online-btn-purchase:hover {
  background-color: #93918A;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .single-online {
    width: 90%;
    margin: 30px auto;
    flex-direction: column;
    gap: 30px;
  }
  .single-online-img {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }
  .single-online-detail {
    width: 100%;
    min-width: 100%;
  }
  .single-online-title {
    font-size: 20px;
  }
  .single-online-price {
    font-size: 20px;
  }
  .single-online-btn {
    margin-top: 30px;
  }
  .single-online-btn-purchase {
    width: 80%;
    padding: 10px 0;
  }
}

/* recruitment */
.recruitment {
  background-image: url(img/recruitment_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 850px;
  display: flex;
  justify-content: center;
  align-items: center;  
}
.recruitment-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 90%;
  max-width: 700px;
  height: auto;
  color: #fff;
  margin: 0 auto;
}
.recruitment-title {
  font-size: 65px;
  font-family: "Outfit", serif;
  font-weight: 500;
  line-height: 1.3;
}
.recruitment-sub {
  font-size: 24px;
  font-weight: 500;
}
.recruitment-text {
  margin-top: 50px;
}
.recruitment-box-btn {
  text-align: center;
  margin-top: 50px;
}
.recruitment-box-btn-read {
  display: inline-block;
  padding: 3px 80px;
  font-size: 18px;
  font-family: "Outfit", serif;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 90px;
  text-align: center;
  transition: all 0.3s ease;
}
.recruitment-box-btn-read:hover {
  background-color: #93918A;
  color: #ffffff;
  cursor: pointer;
  border: 1px solid #93918A;
}
@media (max-width: 768px) {
  .recruitment {
    height: auto;
  }
  .recruitment-inner {
    width: 80%;
  }
  .recruitment-title {
    font-size: 36px;
  }
  .recruitment-sub {
    font-size: 20px;
    line-height: 1.3;
  }
  .recruitment-text {
    margin-top: 30px;
  }
  .recruitment-box-btn {
    margin-top: 30px;
  }
  .recruitment-box-btn-read {
    font-size: 18px;
  }
}

/* access */
.access-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
}
.access-map {
  width: 50vw;
  height: 600px;
}
.access-text {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 600px;
  margin:  30px auto;
  text-align: left;
}
@media (max-width: 768px) {
  .access-inner {
    width: 90%;
    margin: 0 auto;
    flex-direction: column;
    gap: 30px;
  }
  .access-map {
    width: 90%;
    height: 400px;
  }
}

/* footer */
footer {
  background: #76C0BB;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 50px 0px;
  gap: 50px;
  color: #fff;
}
.footer-inner {
  width: 100%;
  max-width: 1000px;
}
.footer-detail {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
}
.footer-logo img {
  width: 150px;
}
.footer-link {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0px 30px;
  width: 90%;
  font-family: "Outfit", serif;
  font-weight: 400;
  font-size: 18px;
}
.footer-link-item a {
  color: #fff;
  display: flex;
  justify-content: flex-start;
  text-decoration: none;
  position: relative;
  padding: 0;
  transition: color 0.3s ease;
}
.footer-link-item a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  left: 0;
  bottom: 10px;
  opacity: 0; 
  transition: bottom 0.3s ease, opacity 0.3s ease; 
}
.footer-link-item a:hover {
  color: #fff;
}
.footer-link-item a:hover::after {
  bottom: 0px; 
  opacity: 1; 
}
.footer-sns {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 15px;
  margin-left: auto;
}
.footer-sns img {
  vertical-align: middle;
}
.footer-sns-icon img {
  height: 26px;
}
.footer-copy {
  color: #fff;
  font-family: "Outfit", serif;
  font-weight: 400;
  text-align: center;
  margin-top: 50px;
  font-size: 18px;
}
.footer-logo-sp {
  display: none;
}

@media (max-width: 768px) {
  footer {
    background: #fff;
    padding: 0 0 100px;
    color: #fff;
  }
  .footer-detail {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }
  .footer-logo {
    display: none;
  }
  .footer-link-item a {
    position: relative;
    text-decoration: none;
    color: #76C0BB;
    padding: 0;
    transition: color 0.3s ease;
  }
  .footer-link-item a::after {
    background-color: #76C0BB;
  }
  .footer-link-item a:hover {
    color: #76C0BB;
  }
  .footer-sns {
    display: none;
  }
  .footer-copy {
    font-size: 16px;
    color: #76C0BB;
    width: 90%;
    margin: 20px auto;
    text-align: left;
  }
  .footer-logo-sp {
    display: block;
    text-align: left;
    width: 90%;
  }
  .footer-logo-sp img {
    width: 33%;
  }
}

/* page */
.page-head {
  position: relative;
  width: 100%;
  height: 300px;
  background-image: url('./img/page-head.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-head-title {
  display: flex;
  flex-direction: column;
  color: #fff;
  text-align: center;
}
.page-head-title h2 {
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  font-family: "Outfit", serif;
}
.page-head-title h3 {
  font-size: 24px;
  font-weight: 500; 
}
.page-head-title h2,
.page-head-title h3 {
  opacity: 0;
  transform: rotateX(90deg); /* 初期状態で90度回転 */
  animation: rotate-fade-in 1s ease forwards;
}

.page-head-title h3 {
  animation-delay: 0.3s; /* h3を遅らせる */
}

@keyframes rotate-fade-in {
  from {
    opacity: 0;
    transform: rotateX(90deg);
  }
  to {
    opacity: 1;
    transform: rotateX(0);
  }
}

@media (max-width: 768px) {

} 

/* page */
.page {
  padding-top: 80px;
}
.page-inner {
  padding: 80px 0;
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}
.page-inner-title {
  text-align: center;
  font-size: 28px;
  font-weight: 500; 
  margin-bottom: 50px;
  line-height: 1.5;
}
.page-inner-img {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  gap: 50px;
}
.page-inner-text {
  text-align: left;
}
.page-section {
  margin: 80px auto;
  padding: 0;
  text-align: center;
}
.page-section h2 {
  font-size: 64px;
  font-family: "Outfit", serif;
  font-weight: 500;
  color: #76C0BB;
  text-align: center;
  position: relative;
  line-height: 1.5;
}
.page-section-line {
  margin: 0 auto;
  background: #76C0BB;
  width: 0; 
  height: 1px;
  transform-origin: left; 
  transition: width 2s ease; 
}
.page-section-line.active {
  width: 140px;
}
.page-gray {
  background: #F7F7F7;
  margin-bottom: 0;
}
.page-feature {
  padding-bottom: 0px;
}
.page-section-img {
 margin: 30px auto;
}
.page-section-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
}
.page-section-text {
  width: 100%;
  max-width: 1000px;
  margin: 50px auto;
  text-align: left;
}

@media (max-width: 768px) {
  .page-head {
    width: 100%;
    height: 160px;
    background-image: url('./img/page-head.jpg');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .page-head-title h2 {
    font-size: 36px;
  }
  .page-head-title h3 {
    font-size: 16px;
  }   
  .page-section {
    margin: 30px auto;
  }
  .page-inner {
    padding: 30px 0;
    margin: 0 auto;
    max-width: 1000px;
    width: 90%;
  }
  .page-section h2 {
    font-size: 36px;
  }
  .page-section-line.active {
    width: 90px;
  }
  .page {
    width: 90%;
    margin: 0 auto;
    padding-top: 20px;
  }  
  .page-inner-title {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  .page-inner-img {
    margin-bottom: 20px;
    gap: 20px;
  }
  .page-inner-img img {
    width: 100%;
  }
  .page-section-img img {
    width: 90%;
  }
  .page-section-title {
    font-size: 20px;
    text-align: left;
    margin: 0 auto;
    width: 90%;
  }
  .page-section-text {
    margin: 30px auto;
    width: 90%;
  }
}
/* page-concept */
.page-concept {
  width: 100%;
  max-width: 1000px;
  margin: 50px auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.page-concept-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.page-concept-box:nth-child(even) {
  flex-direction: row-reverse;
}
.page-concept-box-detail {
  text-align: left;
}
.page-concept-box-sub {
  font-size: 24px;
  font-weight: 500; 
  margin-bottom: 20px;
  line-height: 1.5;
}
.inside-slider {
  margin: 50px auto 0;
  width: 100%;
  text-align: center;
  padding-bottom: 30px;
  overflow: hidden;
}
.inside-slider li {
  text-align: left;
  display: inline-block;
  margin: 0 20px 20px;
}
.inside-slider li img {
  width: 400px;
  height: 300px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .page-concept {
    margin: 30px auto;
    gap: 50px;
  }
  .page-concept-box {
    flex-direction: column;
    gap: 20px;
  }
  .page-concept-box:nth-child(even) {
    flex-direction: column;
  }
  .page-concept-box-img {
    width: 200px;
    height: 200px;
    overflow: hidden;
  }
  .page-concept-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .page-concept-box-sub {
    font-size: 20px;
    text-align: center;
  }
  .inside-slider {
    margin: 20px auto 0;
    padding-bottom: 20px;
  }
  .inside-slider li {
    text-align: left;
    display: inline-block;
    margin: 0 20px 20px;
  }
  .inside-slider li img {
    width: 200px;
    height: auto;
    object-fit: cover;
  }
}

/* page-menu */
.page-menu {
  width: 100%;
}
.page-menu-box {
  width: 100%;
  max-width: 1000px;
  background-color: #fff;
  padding: 50px;
  margin: 50px auto;
  border-radius: 20px;
}
.page-menu-box h3 {
  font-size: 30px;
  color: #76C0BB;
  font-weight: 400;
  line-height: 1;
}
.page-menu-box h4 {
  font-size: 18px;
  font-weight: 400;
  margin-top: 10px;
}
.page-menu-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: auto 1fr; 
}
.page-menu-grid-item {
  border-bottom: 1px solid #E4E4E4; 
  padding: 10px;
  display: flex; 
  justify-content: flex-start;
  align-items: center; 
  height: auto;   
}
.page-menu-grid-item:nth-child(even) {
  justify-content: flex-end;
}
.page-menu-grid-item:first-child,
.page-menu-grid-item:nth-child(2) 
 {
  border-top: 1px solid #E4E4E4; 
}
.page-menu-grid-item:nth-child(odd) {
  text-align: left;
}
.page-menu-grid-item:nth-child(even) {
  text-align: right; 
}
@media (max-width: 768px) {
  .page-menu-box {
    padding: 30px;
    margin: 30px auto;
  } 
  .page-menu-box h3 {
    font-size: 20px;
  }
  .page-menu-box h4 {
    font-size: 16px;
    line-height: 1.5;
  }
	.page-menu-grid-item:nth-child(even) {
	  min-width: 80px; /* 適宜調整 */
	  text-align: right;
	  white-space: nowrap;
	}	
}

/* page-staff */
.page-staff {
  width: 100%;
}
.page-staff-box {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 100px auto;
  gap: 50px;
}
.page-staff-box:nth-child(even) {
  flex-direction: row-reverse;
}
.page-staff-box-detail {
  text-align: left;
}
.page-staff-box-detail-post {
  display: flex;
  align-items: center;
  gap: 20px; 
  height: 60px;
}
.page-staff-box-detail-line {
  width: 1px; 
  height: 100%;
  background: #76C0BB;
  transform: scaleY(0); 
  transform-origin: top; 
  transition: transform 2s ease; 
}
.page-staff-box-detail-line.active {
  transform: scaleY(1); 
}
.page-staff-box-detail-postname {
  font-size: 45px;
  font-family: "Outfit", sans-serif; 
  font-weight: 500; 
  color: #76C0BB;
  line-height: 1.2; 
}
.page-staff-box-detail-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding: 10px;
}
.page-staff-box-detail-name {
  font-size: 36px;
  font-weight: 400; 
  line-height: 1.3;
}
.page-staff-box-detail-name span {
  font-size: 20px;
  font-weight: 400;
  margin-top: 6px;
  display: block;
}
.page-staff-box-detail-sns {
  line-height: 0;
}
.page-staff-box-detail-sns img {
  width: 36px;
}
.page-staff-box-detail-grid {
  display: grid;
  grid-template-columns: auto 1fr; 
  margin-top: 10px;
}
.page-staff-box-detail-grid-item {
  border-bottom: 1px solid #E4E4E4; 
  padding: 10px;
}
.page-staff-box-detail-grid-item:last-child {
  grid-column: span 2;
  text-align: left;
  border-bottom: 1px solid #E9E9E9;
}
.page-staff-recruitment {
  margin: 0 auto;
  display: block;
}
.page-staff-recruitment-sp {
  display: none;
}

@media (max-width: 768px) {
  .page-staff-box {
    width: 90%;
    max-width: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 50px auto;
    gap: 20px;
  }
  .page-staff-box-img {
    width: 250px;
    height: auto;
    overflow: hidden;
  }
  .page-staff-box-img img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    object-position: top;
  }
  .page-staff-box:nth-child(even) {
    flex-direction: column;
  }
  .page-staff-box-detail-post {
    gap: 15px;
    height: 50px;
  }
  .page-staff-box-detail-postname {
    font-size: 38px;
  }
  .page-staff-box-detail-name {
    font-size: 32px;
  }
  .page-staff-box-detail-name span {
    font-size: 18px;
  }
  .page-staff-box-detail-sns img {
    width: 24px;
  }
  .page-staff-box-detail-grid {
    display: grid;
    grid-template-columns: auto 1fr; 
    margin-top: 10px;
  }
  .page-staff-box-detail-grid-item {
    border-bottom: 1px solid #E9E9E9; 
    padding: 10px;
  }
  .page-staff-box-detail-grid-item:last-child {
    grid-column: span 2;
    text-align: left;
    border-bottom: 1px solid #E9E9E9;
  }
  .page-staff-recruitment {
    display: none;
  }
  .page-staff-recruitment-sp {
    display: block;
  }
  .page-staff-recruitment-sp img {
    width: 90%;
  }
}

/* page-gallery */
.page-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  justify-items: center;
  gap: 50px;
  width: 100%;
  max-width: 1000px;
  margin: 50px auto;
}
.page-gallery .gallery-box-item {
  width: 300px;
}
.page-gallery .gallery-box-img-link {
  display: block;
  text-decoration: none; 
  color: inherit;
}
.page-gallery .gallery-box-img {
  width: 300px;
  display: flex;
}
.page-gallery .gallery-box-img-before,
.page-gallery .gallery-box-img-after
 {
  width: 150px;
  height: 300px;
  overflow: hidden;
  position: relative;
}
.page-gallery .gallery-box-img-before img,
.page-gallery .gallery-box-img-after img
 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-gallery .gallery-box-img-before-icon {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #93918A;
  color: #fff;
  padding: 0 20px;
  font-size: 16px;
  font-family: "Outfit", sans-serif; 
  font-weight: 300; 
}
.page-gallery .gallery-box-img-after-icon {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #38B7AE;
  color: #fff;
  padding: 0 20px;
  font-size: 16px;
  font-family: "Outfit", sans-serif; 
  font-weight: 300; 
}
@media (max-width: 768px) {
  .page-gallery {
    grid-template-columns: repeat(2, 1fr);  
    gap: 15px;
    width: 90%;
    margin: 30px auto;
  }
  .page-gallery .gallery-box-item {
    width: 160px;
  }
  .page-gallery .gallery-box-img-link {
    display: block;
    text-decoration: none; 
    color: inherit;
  }
  .page-gallery .gallery-box-img {
    width: 160px;
    display: flex;
  }
  .page-gallery .gallery-box-img-before,
  .page-gallery .gallery-box-img-after
   {
    width: 80px;
    height: 160px;
    overflow: hidden;
    position: relative;
  }
  .page-gallery .gallery-box-img-before-icon {
    padding: 0 6px;
    font-size: 14px;
  }
  .page-gallery .gallery-box-img-after-icon {
    padding: 0 6px;
    font-size: 14px;
  }
}

/* single-gallery */
.single-gallery {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.single-gallery-title {
  display: flex;
  align-items: center;
  gap: 20px; 
  height: 50px;
}
.single-gallery-line {
  width: 1px; 
  height: 100%;
  background: #76C0BB;
  transform: scaleY(0); 
  transform-origin: top; 
  transition: transform 2s ease; 
}
.single-gallery-line.active {
  transform: scaleY(1); 
}
.single-gallery-title h2 {
  font-size: 40px;
  font-family: "Outfit", sans-serif; 
  font-weight: 500; 
  color: #76C0BB;
  line-height: 1.2; 
}
.single-gallery-img {
  width: 500px;
  flex: 1 1 500px;
  display: flex;
}
.single-gallery-before,
.single-gallery-after
 {
  width: 250px;
  height: 500px;
  overflow: hidden;
  position: relative;
}
.single-gallery-before img,
.single-gallery-after img
 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-gallery-detail {
  text-align: left;
  width: 100%;	
}
.single-gallery-before-icon {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #93918A;
  color: #fff;
  padding: 0 20px;
  font-size: 20px;
  font-family: "Outfit", sans-serif; 
  font-weight: 300; 
}
.single-gallery-after-icon {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #38B7AE;
  color: #fff;
  padding: 0 20px;
  font-size: 20px;
  font-family: "Outfit", sans-serif; 
  font-weight: 300; 
}
.single-gallery-grid {
  display: grid;
  grid-template-columns: auto 1fr; 
  margin-top: 10px;
}
.single-gallery-grid-item {
  border-bottom: 1px solid #E9E9E9; 
  padding: 10px;
}
.single-gallery-voice,
.single-gallery-video
{
  width: 100%;
  max-width: 1000px;
  margin: 50px auto;
  text-align: left;
}
.single-gallery-voice-text {
  margin-top: 20px;
}
.single-gallery-video {
	width: 100%;
	max-width: 1000px;	
	margin: 50px auto;
	text-align: left;
}
.single-gallery-video-file {
	width: 1000px;
  margin-top: 20px;
	display: block;
}

@media (max-width: 768px) {
  .single-gallery {
    flex-direction: column-reverse;
    gap: 30px;
    width: 90%;
  }
  .single-gallery-title {
    display: flex;
    align-items: center;
    gap: 10px; 
    height: 50px;
  }
  .single-gallery-title h2 {
    font-size: 30px;
  }
  .single-gallery-img {
    width: 320px;
    flex: 1 1 320px;
    margin: 0 auto;
    display: flex;
  }
  .single-gallery-before,
  .single-gallery-after
   {
    width: 160px;
    height: 320px;
    overflow: hidden;
    position: relative;
  }
  .single-gallery-before img,
  .single-gallery-after img
   {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .single-gallery-before-icon {
    font-size: 16px;
  }
  .single-gallery-after-icon {
    font-size: 16px;
  }
  .single-gallery-voice,
  .single-gallery-video
  {
    width: 90%;
    margin: 50px auto;
    text-align: left;
  }
  .single-gallery-voice-text {
    margin-top: 20px;
  }
  .single-gallery-video {
    width: 90%;
    margin: 50px auto;
   }
  .single-gallery-video-file {
    width: 100%;
  }
}

/* page-blog*/
.page-blog {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 50px;
}
.page-blog-card {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  text-align: left;
  gap: 30px;
}
.page-blog-card-img {
  flex-shrink: 0; 
  width: 200px;
  height: 200px; 
  overflow: hidden;
  border-radius: 50%;
  position: relative;
  transition: transform 0.3s ease;
}
.page-blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-blog-card-img:hover {
  transform: scale(0.9);
}
.page-blog-card-detail {
  width: 100%;
  margin: 20px auto;
}
.page-blog-card-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}
.page-blog-card-text {
  margin-top: 8px;
  line-height: 1.6;
}
.page-blog-card-day {
  text-align: right;
  font-family: "Outfit", sans-serif; 
  font-weight: 300; 
  font-size: 14px;
}
.page-blog-card-btn {
  text-align: right;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .page-blog {
    width: 90%;
    margin: 0 auto;
  }
  .page-blog-card {
    width: 100%;
    margin: 0 auto;
    flex-direction: column;
    gap: 0px;
  }
  .page-blog-card-img {
    text-align: center;
    margin: 0 auto;
  }
  .page-blog-card-img img {
    width: 100%;
  }
  .page-blog-card-detail .blog-card-title {
    margin-top: 10px;
  }
  .page-blog-card-btn {
    text-align: center;
    margin-top: 10px;
  }
}

/* single-blog */
.single-blog {
  text-align: left;
}
.single-blog-title {
  font-weight: 500;
  font-size: 20px;
}
.single-blog-day {
  font-family: "Outfit", sans-serif; 
  font-weight: 300; 
  text-align: right;
}
.single-blog-img {
  width: 700px;
  height: 450px;
  margin-top: 30px;
}
.single-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-blog-text {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .single-blog {
    width: 90%;
    margin: 0 auto;
  }
  .single-blog-img {
    width: 100%;
    height: auto;
    margin-top: 15px;
  }
  .single-blog-text {
    margin-top: 15px;
  }
}

/* page-recruitment */
.page-recruitment {
  margin-top: 80px;
}
.page-inner-recruitment {
  padding-top: 0;
  padding-bottom: 30px;
}
.page-recruitment-card {
  width: 100%;
  max-width: 1000px;
  margin: 50px auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 50px;
  text-align: left;
}
.page-recruitment-card:nth-child(even) {
  flex-direction: row-reverse; 
}
.page-recruitment-work {
  font-family: "Outfit", sans-serif; 
  font-weight: 500; 
  font-size: 36px;
  color: #76C0BB;
  line-height: 1;
}
.page-recruitment-work span {
  font-size: 48px;
}
.page-recruitment-title {
  font-size: 24px;
  font-weight: 500;
}
.page-recruitment-information {
  background: #fff;
  border-radius: 20px;
  padding: 80px;
  margin-bottom: 50px;
}
.page-recruitment-information-title {
  font-size: 24px;
  font-weight: 500;
}
.page-recruitment-information-sub {
  font-size: 18px;
  font-weight: 500;
}
.page-recruitment-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: stretch;
}
.page-recruitment-item {
  border-bottom: 1px solid #E4E4E4; 
  padding: 10px;
  display: flex; 
  justify-content: flex-start;
  align-items: flex-start; 
  height: auto;  
  text-align: left;
}
.page-recruitment-item:nth-child(even) {
  padding-left: 50px;
}
.page-recruitment-btn {
  text-align: center;
  margin-top: 50px;
}
.page-recruitment-btn-next {
  display: inline-block;
  padding: 10px 80px;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  background-color: #76C0BB;
  border-radius: 90px;
  text-align: center;
  transition: all 0.3s ease;
}
.page-recruitment-btn-next:hover {
  background-color: #93918A;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .page-recruitment {
    margin-top: 50px;
  }
  .page-recruitment-card {
    margin: 30px auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    text-align: left;
  }
  .page-recruitment-card:nth-child(even) {
    flex-direction: column; 
  }
  .page-recruitment-img {
   margin: 0 auto;
  }
  .page-recruitment-img img {
    width: 100%;
  }
  .page-recruitment-work {
    font-size: 24px;
  }
  .page-recruitment-work span {
    font-size: 36px;
  }
  .page-recruitment-title {
    font-size: 20px;
    margin-top: 5px;
  }
  .page-recruitment-text {
    margin-top: 10px;
  }
  .page-recruitment-information {
    padding: 20px;
    margin-bottom: 30px;
  }
  .page-recruitment-information-title {
    font-size: 20px;
    font-weight: 500;
  }
  .page-recruitment-information-sub {
    font-size: 16px;
    text-align: left;
  }
  .page-recruitment-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 80px 1fr;
    font-size: 14px;
  }
  .page-recruitment-item {
    padding: 3px;
  }
  .page-recruitment-item:nth-child(even) {
    padding-left: 20px;
  }
  .page-recruitment-btn {
    margin-top: 30px;
  }
  .page-recruitment-btn-next {
    padding: 10px 0;
    width: 80%;
	display: block;
　}
}

/* page-access */
.page-inner-access {
  padding-top: 0;
  padding-bottom: 30px;
}
.page-access {
  margin: 50px auto;
}
.page-access-map {
  width: 100%;
  max-width: 1000px;
  height: 400px;
}
.page-access-text {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 750px;
  margin: 50px auto;
  text-align: left;
}

@media (max-width: 768px) {
  .page-access {
    margin: 30px auto;
  }
  .page-access-map {
    width: 100%;
    height: 250px;
  }
  .page-access-text {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    margin: 30px auto;
    text-align: left;
  }
}

/* page-reserve */
.page-inner-reserve {
  padding-top: 0;
  padding-bottom: 30px;
}
.page-reserve {
  width: 100%;
  margin: 0 auto;
}
.page-reserve-title {
  text-align: center;
  font-size: 24px;
  font-weight: 500; 
  margin-bottom: 50px;
  line-height: 1.5;
}
.page-reserve-text {
  margin-top: 50px;
  text-align: left;
}
.page-reserve-btn {
  text-align: center;
  margin-top: 50px;
}
.page-reserve-btn img {
  width: 47px;
}
.page-reserve-btn-line {
  width: 400px;
  height: 80px;
  margin: 0 auto;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  background: #38B7AE;
   border-radius: 90px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.page-reserve-btn-line:hover {
  background-color: #93918A;
  color: #ffffff;
  cursor: pointer;
}
.page-reserve-company {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 80px auto 0;
  gap: 30px;
}
.page-reserve-company-detail {
  text-align: left;
  line-height: 1.5;
}
.page-reserve-company-name {
  font-size: 24px;
  font-weight: 500;
  color: #76C0BB;
}
.page-reserve-company-address {
  font-size: 18px;
  font-weight: 500;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .page-reserve {
    gap: 0;
    padding-bottom: 0;
  }
  .page-reserve-title {
    font-size: 20px;
    text-align: left;
    margin-bottom: 20px;
  }
  .page-reserve-img {
    text-align: center;
    margin: 0 auto;
  }
  .page-reserve-img img {
    width: 50%;
  }
  .page-reserve-text {
    margin-top: 20px;
  }
  .page-reserve-btn img {
    width: 47px;
  }
  .page-reserve-btn-line {
    width: 90%;
    height: 64px;
    font-size: 20px;
    background: #38B7AE;
    border-radius: 90px;
  }
  .page-reserve-btn {
    margin-top: 30px;
  }
  .page-reserve-company {
    flex-direction: column;
    margin: 50px auto 0;
    gap: 0;
  }
  .page-reserve-company-logo img {
    width: 50%;
  }
  .page-reserve-company-detail {
    text-align: left;
    line-height: 1.5;
  }
  .page-reserve-company-name {
    font-size: 20px;
  }
  .page-reserve-company-address {
    font-size: 16px;
  }
}

/* page-list */
.page-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  gap: 50px;
}
.page-article {
  flex: 1 1 auto;
}
.page-sidebar {
  flex: 0 0 250px;
  width: 250px;
  text-align: left;
}
.page-sidebar h2 {
  font-size: 36px;
  font-family: "Outfit", serif;
  font-weight: 400;
  text-align: center;
  position: relative;
  display: inline-block;
  padding-left: 16px;
  line-height: 1.3;
}
.page-sidebar h2::after {
  content: "";
  position: absolute;
  width: 1px; 
  height: 0%;
  background-color: #76C0BB;
  left: 0; 
  top: 0;
  transition: height 1.0s ease-out;
}
.page-sidebar  h2.active::after {
  height: 100%;
}
.page-sidebar-list {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}
.page-sidebar-list-day {
  font-size: 14px;
  font-family: "Outfit", serif;
  font-weight: 400;
}
.page-sidebar-list-link {
  font-weight: 400; 
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-list {
    flex-direction: column;
    gap: 30px;
  }
  .page-article {
    flex: 0 0 auto;
    width: 100%;
  }
  .page-sidebar {
    flex: 0 0 90%;
    width: 90%;
    margin: 0 auto;
    text-align: left;
  }
  .page-sidebar h2 {
    font-size: 28px;
    font-weight: 400;
    text-align: center;
    position: relative;
    display: inline-block;
  }
  .page-sidebar-list-item {
    width: 100%;
    display: block;
  }
}

/* bottom-link */
.bottom-link {
  text-align: center;
  margin: 80px auto;
}
.bottom-link-btn-view {
  display: inline-block;
  padding: 3px 80px;
  font-size: 18px;
  font-family: "Outfit", serif;
  font-weight: 400;
  color: #6F6E69;
  text-decoration: none;
  border: 1px solid #6F6E69;
  border-radius: 90px;
  text-align: center;
  transition: all 0.3s ease;
}
.bottom-link-btn-view:hover {
  background-color: #93918A;
  color: #ffffff;
  cursor: pointer;
  border: 1px solid #93918A;
}
@media (max-width: 768px) {
  .bottom-link {
    margin: 50px auto;
  }
  .bottom-link-btn-view {
    padding: 3px 0;
    width: 70%;
  }
}
.slick-dots li {
  width: 20px !important;
}

.slick-dots li button:before {
  font-size: 20px !important;
}

/* animations */
.animation-slide-left
{
	transition-duration:2.5s;
	opacity: 0;
	transform: translateX(-4rem);
}
.animation-slide-left.active
{
	opacity: 1.0;
	transform: translateX(0rem);
}
.animation-slide-right
{
	transition-duration:2.5s;
	opacity: 0;
	transform: translateX(4rem);
}
.animation-slide-right.active
{
	opacity: 1.0;
	transform: translateX(0rem);
}
.animation-fadein
{
	transition-duration:1.5s;
	opacity: 0;
	transform: translateY(4rem);
}
.animation-fadein.active
{
	opacity: 1.0;
	transform: translateY(0rem);
}

@media (max-width: 768px) {
  .animation-slide-left
  {
    transition-duration:2.5s;
    opacity: 0;
    transform: translateY(-1rem);
  }
  .animation-slide-left.active
  {
    opacity: 1.0;
    transform: translateY(0rem);
  }
  .animation-slide-right
  {
    transition-duration:2.5s;
    opacity: 0;
    transform: translateY(1rem);
  }
  .animation-slide-right.active
  {
    opacity: 1.0;
    transform: translateY(0rem);
  }
}

/*--下記は変更後になります。--*/
.wp-pagenavi {
	clear: both;
	text-align: center;
	margin-top: 50px;
}

.wp-pagenavi a, .wp-pagenavi span {
	text-decoration: none;
	padding: 7px 14px;
	margin: 2px;
	color: #000;
	border: 1px solid #000;	
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
	opacity: 0.5;
	transition: 0.5s;
}

.wp-pagenavi span.current {
	color: #fff;
	background: #000;
	border: 1px solid #000;	
}

@media screen and (max-width: 768px) {
	.wp-pagenavi {
		clear: both;
		text-align: center;
		margin-top: 20px;
		margin-bottom: 50px;		
	}
}

/*404*/
/*section_error*/
.section_error {
	margin: 0 auto;
	width: 100%;
	min-height: 30vh;
}
.section_error p {
	text-align: center!important;
}
.section_error_title h2 {
	font-size: 3rem;
	text-align: center;
	margin-bottom: 20px;
}

/* 投稿カスタマイズ */

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* 太字 */
.single-blog strong,
.single-blog b {
    font-weight: bold;
}

/* 斜体 */
.single-blog em, 
.single-blog i {
    font-style: italic;
}

.single-blog a {
	text-decoration: underline;
}

/* 番号なしリスト（ul） */
.single-blog ul {
    list-style-type: disc; /* 丸型のマーカー */
    margin: 20px 0; /* 上下の余白 */
    padding-left: 40px; /* 左余白 */
}

.single-blog ul li {
    color: #333; /* テキストカラー */
    font-size: 16px; /* フォントサイズ */
    line-height: 1.6; /* 行間 */
}

.single-blog ul ul {
    list-style-type: circle; /* サブリストのマーカー */
    margin-top: 10px;
}

/* 番号付きリスト（ol） */
.single-blog ol {
    list-style-type: decimal; /* 数字のスタイル */
    margin: 20px 0;
    padding-left: 40px;
}

.single-blog ol li {
    color: #444; /* テキストカラー */
    font-size: 16px;
    line-height: 1.8; /* 行間 */
}

.single-blog ol ol {
    list-style-type: lower-alpha; /* サブリストのスタイル（アルファベット） */
    margin-top: 10px;
}

/* 引用（blockquote） */
.single-blog blockquote {
    font-style: italic; /* 斜体 */
    color: #666; /* テキストカラー */
    border-left: 4px solid #ccc; /* 左側の線 */
    margin: 20px 0; /* 上下の余白 */
    padding: 10px 20px; /* 内側の余白 */
    background-color: #f9f9f9; /* 背景色 */
}

.single-blog blockquote p {
    margin: 0; /* 段落の余白を削除 */
}

.single-blog blockquote cite {
    display: block;
    text-align: right;
    font-size: 14px;
    color: #888;
    margin-top: 10px;
}
