@charset "UTF-8";
/* ----------共通部分---------- */
html {
  font-size: 62.5%; /* 1rem=10px */
  scroll-behavior: smooth;
}
body {
  font-family: 'Meiryo', serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  font-variation-settings: 'wdth' 100;
  background-color: #f5f5f5;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #432;
  /* ↓追従ヘッダー分の余白 */
  /* padding-top: 120px; */
}
main h1 h2 h3 h4{
  font-family: 'Playfair' serif;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
a {
  text-decoration: none;
  color: #fff;
}
ul {
  list-style: none;
}
section{
  scroll-margin-top: 8rem; /* ヘッダーの高さぶん */
}

.wrapper {
  margin: auto;
  max-width: 100%;
  padding: 0 1.4rem;
}

iframe {
  width: 100%;
}

/* ----header---- */
.header-top {
  background-color: #2d2315cc; /* 背景のみ半透明 */
  color: #fff;
  height: 7.2rem;
  position: fixed;
  top: 0;
  left: 0;
  max-width: 100%;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3.6rem;
  z-index: 999;
}
.header-logo {
  align-items: center;
  width: 60px;
  height: auto;
  padding: 1.2rem;
}
.main-nav ul li {
  font-size: 2.4rem;
  font-weight: bold;
  float: left;
  padding: 0 1.2rem;
  margin-top: 1.6rem;
}
.main-nav ul li a {
  color: #fff;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .main-nav ul li a:hover {
  color: orange;
}
}
/* --- PCドロップダウン用 --- */
/* 子メニュー - .sub-menu */
nav .sub-menu {
  position: absolute;
  width: 230px;
  background: #432;
  top: 70px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  border-radius: 0 0 10px 10px;
  margin: 0 -1rem;
}
nav .sub-menu a {
  color: #fff;
  padding: 10px 15px;
  display: block;
  font-size: 1.8rem;
  font-weight: normal;
}
@media (hover: hover) and (pointer: fine) {
  nav .sub-menu a:hover {
    color: orange;
    transition: color 0.3s ease;
}
}
/* ホバーで子メニュー表示 */
nav .menu-item-has-children:hover ul {
  opacity: 1;
  visibility: visible;
}
/* ---hum---- */
*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
/* desktop mode */

.navbar input[type='checkbox'],
.navbar .hamburger-lines {
  display: none;
}

.navbar {
  background-color: rgba(45, 35, 21, 0.8); /* 背景のみ半透明 */
  color: #fff;
  width: 100%;
  height: 7.2rem;
  position: fixed;
  z-index: 999;
  padding: 0 4.2rem;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 7.2rem;
  align-items: center;
}

.menu-items {
  order: 2;
  display: flex;
}

.menu-items li {
  list-style: none;
  margin-left: 2rem;
  font-size: 2.4rem;
  font-weight: bold;
}

.menu-items a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .menu-items a:hover {
  color: orange;
  transition: color 0.3s ease;
}
}
.header-logo {
  order: 1;
  font-size: 2.3rem;
  margin-bottom: 0.5rem;
}
@media (hover: hover) and (pointer: fine) {
.menu-item-has-children:hover {
  color: orange;
  transition: color 0.3s ease;
}
}

@media (max-width: 768px) {
  .navbar {
    opacity: 0.95;
  }

  .navbar-container input[type='checkbox'],
  .navbar-container .hamburger-lines {
    display: block;
  }

  .navbar-container {
    display: block;
    margin-top: 1rem;
    position: relative;
    height: 7.2rem;
  }

  .navbar-container input[type='checkbox'] {
    position: absolute;
    display: block;
    height: 23px;
    width: 35px;
    top: 30px;
    left: 10px;
    z-index: 5;
    opacity: 0;
  }

  .navbar-container .hamburger-lines {
    display: block;
    height: 23px;
    width: 35px;
    position: absolute;
    top: 30px;
    left: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .navbar-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background-color: #fff;
  }

  .navbar-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }

  .navbar-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .navbar-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }

  .navbar .menu-items {
    margin-top: -1.2rem;
    padding-top: 100px;
    background-color: rgb(45, 35, 21);
    max-width: 90%;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -50px;
    padding-left: 40px;
    transition: transform 0.5s ease-in-out;
  height: 100vh;
  overflow-y: auto;                 /* メニュー内部をスクロール可能 */
  -webkit-overflow-scrolling: touch; /* iOSでスムーズスクロール */
  z-index: 1000;
  }

  .navbar .menu-items li {
    margin-bottom: 1.5rem;
    font-size: 2.4rem;
    font-weight: bold;
  }

  .header-logo {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 2rem;
    padding: 0;
    margin: 0;
    width: 40px;
    height: auto;
  }

  .navbar-container input[type='checkbox']:checked ~ .menu-items {
    transform: translateX(0);
  }

  .navbar-container input[type='checkbox']:checked ~ .hamburger-lines .line1 {
    transform: rotate(35deg);
  }

  .navbar-container input[type='checkbox']:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .navbar-container input[type='checkbox']:checked ~ .hamburger-lines .line3 {
    transform: rotate(-35deg);
  }
  nav .sub-menu {
    position: static;
    width: 100%;
    background: none;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 1rem;
  }


  nav .sub-menu a {
    font-size: 2rem;
    padding: 0.5rem 1rem;
    border-bottom: #999 1px solid;
    max-width: 250px;
  }

  .menu-item-has-children.open .sub-menu {
    max-height: 60vh; /* 必要に応じて調整 */
    padding-top: 1rem;
    overflow-y: scroll;
  }

  .menu-item-has-children .dropdown-icon {
    margin-left: 1rem;
    font-size: 2rem;
    display: inline-block;
  }

  .menu-item-has-children.open .dropdown-icon::after {
    content: '−';
  }

  .menu-item-has-children:not(.open) .dropdown-icon::after {
    content: '+';
  }

  /* PC hover 無効にする */
  nav .menu-item-has-children:hover ul {
    opacity: 1;
    visibility: visible;
  }

  @media (hover: none) {
    nav .menu-item-has-children:hover ul {
      opacity: 1;
      visibility: visible;
      padding: 0;
    }
  }
}
/* ハンバーガーメニュー開閉時に背景固定用 */
body.menu-open {
  overflow: hidden;
  position: fixed; /* これでスクロール不可 */
  width: 100%;
}

@media (max-width: 500px) {
  .header-logo {
    position: absolute;
    top: 6px;
    right: 15px;
    font-size: 3rem;
  }
  .navbar .menu-items li {
    margin-bottom: 2.5rem;
    font-size: 2.4rem;
    font-weight: bold;
  }
  .navbar {
    padding: 0 1.2rem;
    width: 100%;
  }
}


/* Showcase styling */
.showcase-area {
  width: 100%;
  height: 800px;
  background-image: url(../img/main-02-1.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 500px) {
  .showcase-area {
    width: 100%;
    height: 800px;
    background-image: url(../img/main_phon.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

/* ----Main---- */
.about-wrapper {
  margin: 20rem 9.2rem 7.2rem;
}
.about-contents {
  max-width: 100%;
  position: relative;
  z-index: 2;
  margin-bottom: 5rem;
}
.about-contents h2 {
  font-size: 4.8rem;
  font-weight: bold;
  margin-bottom: 5.2rem;
  z-index: 2;
}
.about-contents p {
  width: 100%; /* 最大幅を設定 */
  z-index: 2;
}
.about-img{
  background-image: url(../img/about_top_img2.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 500px;
}
.about-text {
  margin: 5rem 9.2rem 20rem;
  margin-bottom: 20rem;
  text-align: center;
  z-index: 2;
}

.spacer {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #999;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .about-wrapper {
    margin: 9.6rem 6.2rem 5rem;
  }
  .about-text {
    margin: 3rem 6.2rem 20rem;
    text-align: center;
  }
  .about-contents {
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 5rem;
  }
  .about-contents p {
    width: 100%;
  }
  .about-img{
  background-image: url(../img/about_top_img2.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 300px;
}
}
@media screen and (max-width: 500px) {
  .about-us {
    width: 100%;
  }
  .about-wrapper {
    margin: 7.2rem 2.8rem 5rem;
  }
  .about-contents {
    max-width:100%;
  }
  .about-contents p{
    width: 100%;
  }
.about-img{
  background-image: url(../img/about_top_img2.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 300px;
}
  .about-text {
    margin: 3rem 3.2rem 0;
    margin-bottom: 20rem;
    text-align: center;
  }
}
@media screen and (max-width: 375px) {
.about-img{
  background-image: url(../img/about_top_img2.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 230px;
}
}
/* ------slideshow------- */
.scroll-container {
  display: flex;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  margin: 20rem 0;
}

.scroll-content {
  display: flex;
  animation: scroll 50s linear infinite;
}

.item {
  flex: 0 0 auto;
  width: 300px; /*お好みの幅に調整*/
  height: 400px; /*お好みの高さに調整*/
  margin: 0 10px; /*左右の余白はここを調整*/
  text-align: center;
  line-height: 200px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 500px) {
  .scroll-container{
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .scroll-container{
    margin: 0;
  }
}
/* --------original--------- */
.original-wrapper {
  margin: 20rem 9.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.original-contents {
  max-width: 600px;
}
.original-contents h2 {
  font-size: 4.8rem;
  font-weight: bold;
  margin-bottom: 5.2rem;
}
.original-contents p {
  width: auto;
}
.original-img img{
  width: 600px;
  height: auto;
}
.original-more {
  width: 100px;
  margin-top: 5.8rem;
  margin-left: 2.8rem;
}
.original-more p {
  width: 100px;
}
.original-more a {
  color: #432;
  font-size: 2.4rem;
  display: inline-block;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .original-more a:hover {
  color: orange;
  transition: color 0.3s ease;
}
}
@media (hover: hover) and (pointer: fine) {
  .original-more:hover .original-arrow {
  border-bottom: 1px solid orange;
  border-right: 1px solid orange;
  transition: border-color 0.3s ease;
}
}
.original-arrow {
  width: 120%;
  height: 15px;
  border-bottom: 1px solid #432;
  border-right: 1px solid #432;
  transform: skew(45deg);
  margin: -15px 0 0 -37px;
}
@media screen and (max-width: 1100px) {
  .original-wrapper {
    margin: 20rem 9.2rem;
  }
  .original-contents {
    width: 100%;
  }
  .original-contents p {
    width: 100%;
  }
.original-more {
    width: 100px;
    margin-top: 4rem;
    margin-left: 2.8rem;
  }
  .original-arrow{
    width: 230%;
  }
}
@media screen and (max-width: 1400px) {
.original-wrapper{
  gap: 4.2rem;
  }
}
@media screen and (max-width: 768px) {
    .original-wrapper{
    margin: 20rem 3.2rem;
    display: block;
    align-items: center;
  }
  .original-img{
    margin-top: 3.2rem;
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .original-wrapper{
    margin: 20rem 3.2rem;
  }
}

/* --------lesson-------- */
.lesson {
  margin: 20rem 9.2rem;
}
.lesson-contents h2 {
  font-size: 4.8rem;
  font-weight: bold;
  margin-bottom: 5.2rem;
}
.lesson-basic {
  display: flex;
  justify-content: center;
  gap: 7rem;
  margin-bottom: 15rem;
}
.lesson-basic-img {
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
}
.lesson-basic-text {
  width: 1500px;
}
.lesson-basic-text h3 {
  font-size: 3.6rem;
  font-weight: bold;
  margin-bottom: 2.4rem;
  border-bottom: #432 1px solid;
}
.lesson-pro {
  display: flex;
  justify-content: center;
  gap: 7rem;
  margin-bottom: 7.2rem;
}
.lesson-pro-img {
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
}
.lesson-pro-text {
  width: 1500px;
}
.lesson-pro-text h3 {
  font-size: 3.6rem;
  font-weight: bold;
  margin-bottom: 2.4rem;
  border-bottom: #432 1px solid;
}
.lesson-more {
  width: 100px;
  margin-top: 5.8rem;
  margin-left: 2.8rem;
}
.lesson-more p {
  width: 100px;
}
.lesson-more a {
  color: #432;
  font-size: 2.4rem;
  display: inline-block;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .lesson-more a:hover {
  color: orange;
  transition: color 0.3s ease;
}
}
@media (hover: hover) and (pointer: fine) {
  .lesson-more:hover .lesson-arrow {
  border-bottom: 1px solid orange;
  border-right: 1px solid orange;
  transition: border-color 0.3s ease;
}
}
.lesson-arrow {
  width: 120%;
  height: 15px;
  border-bottom: 1px solid #432;
  border-right: 1px solid #432;
  transform: skew(45deg);
  margin: -15px 0 0 -37px;
}
@media screen and (max-width: 980px) {
  .lesson-basic{
    gap: 4.2rem;
  }
  .lesson-pro{
    gap: 4.2rem;
  }
}
@media screen and (max-width: 768px) {
  .lesson-basic,
  .lesson-pro {
    flex-direction: column;
    align-items: center;
  }
  .lesson-basic-text,
  .lesson-pro-text {
    width: 100%;
  }
  .lesson-basic-img,
  .lesson-pro-img {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .lesson{
    margin: 20rem 3.2rem;
  }
  .lesson-basic{
    gap: 3.2rem;
  }
  .lesson-more{
    margin-top: 3.8rem;
  }
  .lesson-pro{
    gap: 3.2rem;
  }
}
/* ----workshop---- */
.workshop {
  position: relative;
  margin: 20rem 9.2rem;
}
.workshop-contents h2 {
  font-size: 4.8rem;
  font-weight: bold;
  margin-bottom: 5.2rem;
}
.workshop-contents {
  width: 100%;
}
.workshop-contents p {
  width: 45%;
}
.workshop-more {
  width: 100px;
  margin-top: 9.9rem;
  margin-left: 2.8rem;
}
.workshop-more p {
  width: 100px;
}
.workshop-more a {
  color: #432;
  font-size: 2.4rem;
  display: inline-block;
}
@media (hover: hover) and (pointer: fine) {
  .workshop-more a:hover {
  color: orange;
  transition: color 0.3s ease;
}
}
@media (hover: hover) and (pointer: fine) {
  .workshop-more:hover .workshop-arrow {
  border-bottom: 1px solid orange;
  border-right: 1px solid orange;
  transition: border-color 0.3s ease;
}
}
.workshop-arrow {
  width: 120%;
  height: 15px;
  border-bottom: 1px solid #432;
  border-right: 1px solid #432;
  transform: skew(45deg);
  margin: -15px 0 0 -37px;
}
.workshop-img01 {
  width: 300px;
  height: auto;
  position: absolute;
  top: -10px;
  right: 0%;
  z-index: 600;
}
.workshop-img02 {
  width: 300px;
  height: auto;
  position: absolute;
  top: 100px;
  right: 15%;
  z-index: 500;
}
.workshop-img03 {
  width: 300px;
  height: auto;
  position: absolute;
  top: -10px;
  right: 30%;
}
.workshop-img04 {
  width: 300px;
  height: auto;
  position: absolute;
  top: 250px;
  right: 5%;
}
@media screen and (max-width: 1260px) {
.workshop-img01{
  width: 200px;
  height: auto;
  position: absolute;
  top: -10px;
  right: 0%;
  z-index: 600;
}
.workshop-img02 {
  width: 200px;
  height: auto;
  position: absolute;
  top: 100px;
  right: 15%;
  z-index: 500;
}
.workshop-img03 {
  width: 200px;
  height: auto;
  position: absolute;
  top: -10px;
  right: 30%;
}
.workshop-img04 {
  width: 200px;
  height: auto;
  position: absolute;
  top: 250px;
  right: 5%;
}
}
@media screen and (max-width: 980px) {
.workshop-img01{
  width: 200px;
  height: auto;
  position: absolute;
  top: 160px;
  right: 0%;
  z-index: 600;
}
.workshop-img02 {
  width: 200px;
  height: auto;
  position: absolute;
  top: 290px;
  right: 25%;
  z-index: 500;
}
.workshop-img03 {
  width: 200px;
  height: auto;
  position: absolute;
  top: 30px;
  right: 25%;
}
.workshop-img04 {
  width: 200px;
  height: auto;
  position: absolute;
  top: 440px;
  right: 0%;
}
}
@media screen and (max-width: 768px) {
  .workshop {
    margin: 20rem 3.2rem;
  }
  .workshop-more{
    margin-top: 3.8rem;
  }
  .workshop-arrow {
    width: 230%;
    height: 15px;
    border-bottom: 1px solid #432;
    border-right: 1px solid #432;
    transform: skew(45deg);
    margin: -15px 0 0 -37px;
  }
  .workshop-contents p{
    width: 100%;
  }
  .workshop-img01,
  .workshop-img02,
  .workshop-img03,
  .workshop-img04 {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    right: 0;
    margin: 3.2rem auto;
  }
}
@media screen and (max-width: 500px) {
  .workshop-contents {
    width: 100%;
  }
  .workshop-contents p {
    width: 100%;
  }
  .workshop-img01,
  .workshop-img02,
  .workshop-img03,
  .workshop-img04 {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    height: auto;
  }
}
/* -------staff------- */
.staff {
  margin: 23rem 9.2rem 0;
}
.staff-title h2 {
  font-size: 4.8rem;
  font-weight: bold;
  margin-bottom: 3.8rem;
}
.office{
  font-size: 3.2rem;
  font-weight: normal;
}
.area{
  font-size: 3.2rem;
  margin-bottom: 2.8rem;
  font-weight: normal;
}
.staff-container {
  display: flex;
  text-align: center;
  gap: 50px;
  margin-bottom: 5.2rem;
}
.staff-contents {
  width: 1800px;
}
.staff-name {
  padding-top: 2.4rem;
}
.staff-company {
  padding: 1.2rem;
}
.staff-text {
  font-size: 1.2rem;
}
.staff-img {
  width: 60%;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  margin: auto;
  display: block;
}
.staff-img::before {
  content: '';
  display: block;
  padding-top: 160%;
}
.staff-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .staff {
    margin: 20rem 3.2rem 0;
  }
  .staff-container {
    flex-direction: column;
    align-items: center;
    gap: 100px;
    padding: 0 6rem;
  }
  .staff-contents {
    width: 100%;
  }
  .staff-img {
    width: 250px;
    height: auto;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    margin: auto;
    display: block;
  }
  .staff-img::before {
    content: '';
    display: block;
    padding-top: 160%;
  }
}
@media screen and (max-width: 500px) {
  .staff-container {
    flex-direction: column;
    align-items: center;
    gap: 100px;
    padding: 0 6rem;
  }
  .staff-contents {
    width: 100%;
  }
  .staff-img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    margin: auto;
    display: block;
  }
  .staff-img::before {
    content: '';
    display: block;
    padding-top: 160%;
  }
  .staff{
    margin: 20rem 3.2rem 0;
  }
}
/* -------certified------- */
.certified{
  text-align: center;
  margin: 0 auto;
  border-radius: 80px;
  /* background-color:#432; */
  border: #432 1px solid;
  width: 100%;
  max-width: 300px;
}
.certified a{
  color: #432;
  font-size: 1.6rem;
  display: block;
  padding: 1.8rem 0;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .certified:hover{
background-color: orange;
border: orange 1px solid;
transition: color 0.3s ease;
}
}
@media (hover: hover) and (pointer: fine) {
  .certified a:hover{
  color: #fff;
  transition: color 0.3s ease;
}
}
@media screen and (max-width: 768px) {
  .certified{
    margin-top: -200px;
  }
}
@media screen and (max-width: 500px) {
  .certified{
    margin-top: -200px;
  }
}

/* ーーcontactーー */
.contact-top {
  margin: 20rem 9.2rem;
}
.contact-contents {
  max-width: 100%;
  background: #432;
  color: #fff;
  border-radius: 16px;
  text-align: center;
  margin: 0 auto;
  font-size: 2.4rem;
  justify-content: center;
  padding: 4.8rem 7.2rem;
  justify-content: center;
  width: 600px;
}
.contact-text {
  font-size: 1.6rem;
  margin-bottom: 3.2rem;
}
.contact-btn {
  background-color: rgb(147, 120, 95);
  border-radius: 16px;
  text-align: center;
  font-size: 2.4rem;
  margin: 0 auto;
  width: 100%;
}
.contact-btn a {
  color: #fff;
  display: block;
  transition: background-color 0.3s ease;
  padding: 1.2rem 0;
}
@media (hover: hover) and (pointer: fine) {
  .contact-btn a:hover {
  color: #fff;
  transition: color 0.3s ease;
}
}
@media (hover: hover) and (pointer: fine) {
  .contact-btn:hover {
  background-color: orange;
  transition-duration: 0.5s;
  cursor: pointer;
}
}
@media screen and (max-width: 768px) {
.contact-top{
  margin: 20rem 3.2rem;
}
}
@media screen and (max-width: 500px) {
  .contact {
    margin: 20rem 3.2rem;
  }
  .contact-contents {
    max-width: 100%;
    background: #432;
    color: #fff;
    border-radius: 16px;
    text-align: center;
    margin: 0 auto;
    font-size: 2.4rem;
    justify-content: center;
    padding: 4.8rem 3.2rem;
    width: 100%;
  }
  .contact-text {
    font-size: 1.4rem;
    margin-bottom: 3.2rem;
  }
  .contact-btn{
    font-size: 1.6rem;
  }
}
/* ーーーーーーーーーーfooterーーーーーーーーーーー */
.footer-3{
  background-color: #ffd5af2e;
}
.footer-top {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin: 6.8rem auto 2.8rem auto;
  align-items: center;
}
.footer-logo {
  text-align: center;
}
.footer-logo img {
  width: 80px;
  height: 140px;
}
.footer-logo-title {
  font-family: 'Meiryo';
  font-size: 1.2rem;
}
.footer-shop p {
  font-family: 'Meiryo';
  font-size: 1.2rem;
  padding: 0.4rem 0;
  color: #432;
}
@media screen and (max-width: 768px) {
.footer-top{
  margin: 6.8rem 3.2rem 2.8rem;
}
}
@media screen and (max-width: 500px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin: 0 3.2rem 4.8rem;
  }
  .footer-logo img {
    width: 60px;
    height: 100px;
  }
  .footer-logo-title {
    font-size: 1.4rem;
  }
  .footer-shop p {
    font-size: 1.4rem;
  }
}
/* ---footer-sns--- */
.footer-sns {
  font-size: 4.2rem;
  display: flex;
  justify-content: center;
  gap: 64px;
  margin: 0 auto;
  align-items: center;
}
.footer-sns a {
  color: #432;
  display: inline-block;
}
@media (hover: hover) and (pointer: fine) {
  .footer-sns a:hover {
  color: orange;
  transition: color 0.3s ease;
}
}
.footer-sns i {
  font-size: 4.2rem;
  transition: color 0.3s ease;
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .footer-sns i:hover {
  color: orange;
  transition: color 0.3s ease;
}
}
.footer-nav {
  margin: 2.8rem auto 6.8rem auto;
}

/* ---試し--- */
.footer-3 {
    padding: 3rem 2rem 1.5rem;
}

.footer-3__container {
    display: grid;
    grid-template-columns: repeat(7, auto); /* 均等に幅を詰める */
    justify-content: center;
    max-width: 1200px;
    margin: 5rem auto;
    gap: 5rem; /* nav同士の余白 */
}

.footer-3__title,
.footer-3__link {
    color: #432;
    font-size: 1.2rem;
}

.footer-3__title {
    font-weight: bold;
}

.footer-3__list {
    padding: 0;
    list-style-type: none;
}

.footer-3__link {
    display: block;
}

.footer-3__list {
    list-style-type: none;
}

.footer-3__list li {
    display: flex;
    align-items: baseline;
    gap: 0 10px;
    padding: .3em;
}

.footer-3__list li::before {
    transform: rotate(-45deg);
    width: .4em;
    height: .4em;
    border-bottom: 1px solid #65513f;
    border-right: 1px solid #65513f;
    content: '';
}
.footer-3__link:not(:hover) {
    text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .footer-3__list li a:hover {
  color: orange;
  transition: color 0.3s ease;
}
}

@media screen and (max-width: 1000px) {
    .footer-3__container {
        gap: 2rem;
    }
}
@media screen and (max-width: 768px) {
    .footer-3__container {
        grid-template-columns: repeat(4, auto);
    }
}
@media screen and (max-width: 500px) {
    .footer-3__container {
        grid-template-columns: repeat(2, auto);
        gap: 5rem;
    }
}

/* ---ここまで--- */



.footer-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
}
.footer-nav a {
  font-size: 1.6rem;
  color: #432;
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav ul li:hover {
  transition: color 0.3s ease;
}
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav a:hover {
  color: orange;
  transition: color 0.3s ease;
}
}
.copyright {
  background: #2b2315;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  padding: 1rem;
}
@media screen and (max-width: 500px) {
  .footer-sns {
    font-size: 3.2rem;
    gap: 32px;
  }
  .footer-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav ul li {
    font-size: 1.6rem;
    padding: 1.2rem 0;
    display: block;
    width: 100%;
    text-align: center;
  }
  .footer-nav ul li a {
    font-size: 1.8rem;
    color: #fff;
    display: block;
    text-decoration: none;
  }
  .footer-nav{
    margin: 4.8rem auto 0 auto;
    background-color: rgb(147, 120, 95, 0.5); /* 背景のみ半透明 */
  }
  .footer-nav ul li:nth-child(odd) {
  background-color:rgba(68, 51, 34, 0.5);  /* 奇数行の背景色 */
}
}
/* ーーーーーpage topーーーーー */
.page-top {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #432;
  color: #fff;
  cursor: pointer;
  position: fixed;
  right: 5%;
  bottom: 80px;
  z-index: 999;
}
@media (hover: hover) and (pointer: fine) {
  .page-top:hover {
  background: orange;
  transition: 0.3s ease;
}
}
.page-top::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-left: 3px solid #fff;
  border-top: 3px solid #fff;
  transform: rotate(45deg);
  margin: 6px auto 0;
}
.hide {
  display: none;
}

/* ーーーーーーーーーーlesson-basicーーーーーーーーーーー */

/* ーーーーーlesson共通ーーーーー */
.lesson-basic-pro{
  padding: 20rem 9.2rem 7.2rem;
}
.lesson-basic-pro h2{
  font-size: 4.8rem;
  font-weight: bold;
  margin-bottom: 3.8rem;
}
.lesson-list ul {
  display: flex;
  gap: 2.4rem;
  padding: 0;
  list-style: none;
}
/* aをliいっぱいに広げる */
.lesson-list ul li a {
  display: inline-block;
  text-align: center; /* テキスト中央揃え */
  border-radius: 50px;
  text-decoration: none;
  padding: 1.2rem 4rem;
  font-size: 1.6rem;
  color: #fff;
  background-color: #65513f;
  box-shadow: 0 2px 5px rgb(29, 24, 18);
  transition: background-color 0.3s;
}
/* ホバー時 */
@media (hover: hover) and (pointer: fine) {
  .lesson-list ul li a:hover {
  background-color: orange;
}
}
/* 現在のページ */
.lesson-list ul li a.active {
  background-color: orange;
}
/* ーーーーbasicコースーーーーー */
.basic-wrapper{
  margin: 0 9.2rem;
  margin-bottom: 20rem;
}
.basic-title{
  text-align: center;
  font-weight: normal;
  font-size: 2.4rem;
  margin: 2.4rem 0;
  border: #432 1px solid;
  border-radius: 20px;
  padding: 1.2rem 0;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 5rem;
}

.basic-img{
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.basic-text{
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 5rem 0;
  text-align: center;
  margin-bottom: 5rem;
}

/* ーーーーattentionーーーーー */
.attention{
  color: #999;
  text-align: center;
  margin-top: 1.8rem;
  margin-bottom: 6rem;
}

.basic-list-text{
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
  margin-top: 13rem;
}
.basic-list{
  margin-top: 4.8rem;
  margin-bottom: 15rem;
}
/* ーーーーここからmodelーーーーー */
.card-modal-list {
  display: flex;
  justify-content: center;
  gap: 6.2rem;
}

.card-modal {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  position: relative;
  background: #ffd5af2e;
  border-left:4px dotted rgba(0,0,0,.1);
  border-right:4px dotted rgba(0,0,0,.1);
  box-shadow:0 0 5px rgba(0,0,0,.2);
  padding: 1em;
  color: #65513f;
  width: 300px;
  overflow: visible;
}
.tape-modal {
  position: absolute;
  top: -1em;
  left: 33%;
  width:100px;
  height:30px;
  border-left:2px dotted rgba(0,0,0,.1);
  border-right:2px dotted rgba(0,0,0,.1);
  box-shadow:0 0 5px rgba(0,0,0,.2);
  transform: rotate(350deg);
  background: repeating-linear-gradient(
  -45deg,
  rgba(160, 120, 90, 0.3),
  rgba(160, 120, 90, 0.3) 10px,
  #fff 0,
  #fff 20px
);  padding: 1em;
  color: #65513f;
}
@media (hover: hover) and (pointer: fine) {
  .card-modal:hover {
  transform: translateY(-5px);
}
}
.card-modal img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/2;
  margin-bottom: 20px;
}

.card-modal-text {
  padding: 1rem;
  text-align: center;
  font-weight: normal;
  margin-bottom: 10px;
}

.card-modal-text h3 {
  font-size: 1.6rem;
  margin: 0.5rem 0;
  color: #432;
}
.modal-more {
  float: right;
  font-size: 1.4rem;
  color: #999;
}
.card-modal a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit; /* テキスト色継承 */
}

/* モーダル動き */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

.modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 600px;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: -2.5rem;
    right: -3rem;
    font-size: 4rem;
    color: #fff;
    cursor: pointer;
    border-radius: 100%;
    background-color: #432;
    padding: 0rem 1.7rem 0.4rem;
    text-align: center;
    line-height: normal;
    vertical-align: top;
}

.modal-body{
  text-align: center;
}
.modal-body img {
  width: 500px;
  height: auto;
  margin-bottom: 1.6rem;
}
#modal-title{
  margin: 1.2rem;
}

#modal-text {
  max-height: 20vh;        /* テキスト部分の高さ制限 */
  overflow-y: auto;        /* 内容が多い場合に縦スクロール */
  line-height: 1.6;
  padding-right: 1rem;     /* スクロールバーが重ならないように余白 */
}
#modal-text a {
  color: orange;
  text-decoration: underline;
  font-weight: bold;
}

@media (hover: hover) and (pointer: fine) {
  #modal-text a:hover {
  color: darkorange;
  text-decoration: none;
}
}
/* スクロールバーの見た目（オプション） */
#modal-text::-webkit-scrollbar {
  width: 6px;
}
#modal-text::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

/* ーーーーカードーーーーー */
.basic-card-title{
  text-align: center;
  font-weight: normal;
  font-size: 2.4rem;
  margin: 2.4rem 0;
  border-bottom: #432 1px solid;
  padding: 1.2rem 0;
  max-width: 500px;
  margin: 0 auto;
}
.basic-card {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  margin: 0 auto;
  gap: 5rem;
  padding: 1rem;
  max-width: 1000px;
  margin-bottom: 5rem;
}
.basic-card-item {
  position: relative;
  background: #ffd5af2e;
  border-left:4px dotted rgba(0,0,0,.1);
  border-right:4px dotted rgba(0,0,0,.1);
  box-shadow:0 0 5px rgba(0,0,0,.2);
  padding: 1em;
  color: #65513f;
  margin-bottom: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: auto;
}
.tape{
  position: absolute;
  top: -1em;
  left: 33%;
  width:100px;
  height:30px;
  border-left:2px dotted rgba(0,0,0,.1);
  border-right:2px dotted rgba(0,0,0,.1);
  box-shadow:0 0 5px rgba(0,0,0,.2);
  transform: rotate(350deg);
background: repeating-linear-gradient(
  -45deg,
  rgba(160, 120, 90, 0.3),
  rgba(160, 120, 90, 0.3) 10px,
  #fff 0,
  #fff 20px
);  padding: 1em;
  color: #65513f;
}
.basic-card-img {
  aspect-ratio: 3/2;
  margin-bottom: 20px;
}
.basic-card-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.basic-card-text {
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 10px;
}

/* ーーーー申し込みボタンーーーーー */
.basic-btn {
  text-align: center; /* 中央寄せ */
  margin: 2rem 0;      /* 上下に余白（お好みで） */
}
.basic-btn a {
  display: inline-block;
  padding: 2rem 6rem;
  color: white;
  text-decoration: none;
  font-size: 1.6rem;
  border-radius: 50px;
  background-color: #65513f;
  box-shadow: 0 2px 5px rgb(29, 24, 18);
  transition: background-color 0.3s;
}
/* ホバー時 */
@media (hover: hover) and (pointer: fine) {
  .basic-btn a:hover {
  background-color: orange; /* ホバー時の背景色 */
  transition: background-color 0.3s ease; /* ホバー時のアニメーション */
}
}
/* ーーーーアコーディオンーーーーー */
.accordion-section {
  max-width: 800px;
  margin: 10rem auto;
  padding: 1rem;
}

.accordion-item {
  border-bottom: 2px solid #443322;
}

.accordion-header {
  width: 100%;
  padding: 1.2rem 1.5rem;
  font-size: 1.6rem;
  font-weight: normal;
  color: #443322;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-icon {
  font-size: 3.2rem;
  transition: transform 0.3s;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}
.accordion-content p{
  padding: 0 2rem;
}
.out-membership{
  margin: 1rem 0;
}
.out-membership a{
  color: #432;
  text-decoration: underline;
  padding: 0 2rem;
}
@media (hover: hover) and (pointer: fine) {
  .out-membership a:hover{
  transition: background-color 0.3s ease;
  color: orange;
}
}
.accordion-content-border{
  border: #432 1px solid;
  padding: 3.1rem;
  margin: 2rem;
}
.accordion-content-border p{
  padding-bottom: 2rem;
}
.accordion-content-border ul{
  margin-left: 3.7rem;
}
.accordion-content-border ul li{
  list-style: square;
}

.accordion-content.open {
  margin-bottom: 3rem;
}

/* ーーーー表ーーーーー */
.member-benefits {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
}

.member-benefits h2 {
  background-color: #ccc;
  padding: 1rem;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
}

.benefits-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: 1rem;
}

.benefits-table th,
.benefits-table td {
  border: 1px solid #000;
  padding: 0.8rem;
  text-align: center;
  vertical-align: middle;
  font-size: 1.2rem;
}

.benefits-table th:first-child,
.benefits-table td:first-child {
  text-align: left;
  width: 50%;
  font-size: 1.2rem;
}

.note {
  text-align: right;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

@media screen and (max-width: 768px) {
.lesson-basic-pro{
  padding: 20rem 3.2rem 7.2rem;
}
.lesson-basic-pro h2{
  margin-bottom: 5.2rem;
}
.basic-wrapper{
  margin: 0 3.2rem;
  margin-bottom: 20rem;
}
.basic-card{
  margin-bottom: 20rem;
}
}
@media screen and (max-width: 633px) {
  .tape{
    top: -1.5em;
    width: 130px;
    height: 40px;
    left: 38%;
  }
}
@media screen and (max-width: 500px) {
.lesson-basic-pro{
  padding: 7.2rem 2.8rem 7.2rem;
}
.basic-wrapper{
  margin: 0 2.8rem;
}
.card-modal-list{
  flex-direction: column;
  align-items: center;
}
.basic-card-item{
  margin-bottom: 5rem;
}
}
@media screen and (max-width: 450px) {
  .tape{
    left: 31%;
  }
}
/* ーーーーーーーーーーlesson-proーーーーーーーーーーー */
.pro-wrapper{
  margin: 0 9.2rem;
  margin-bottom: 20rem;
}
.pro-lesson-title{
  text-align: center;
  font-weight: normal;
  font-size: 2.4rem;
  margin: 2.4rem 0;
  border: #432 1px solid;
  border-radius: 20px;
  padding: 1.2rem 0;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 5rem;
}

.pro-lesson-img{
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.pro-lesson-text{
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 5rem 0;
  text-align: center;
  margin-bottom: 5rem;
}
.pro-lesson-btn-attention {
  color: #999;
  text-align: center;
  margin-top: 1.8rem;
  margin-bottom: 6rem;
}
.pro-lesson-btn-attention a{
  color: #999;
  text-decoration: underline;
}
/* ーー会員ページボタンーー */
.pro-lesson-btn {
  text-align: center; /* 中央寄せ */
  margin: 2rem 0;      /* 上下に余白（お好みで） */
}
.pro-lesson-btn a {
  display: inline-block;
  padding: 2rem 6rem;
  color: white;
  text-decoration: none;
  font-size: 1.6rem;
  border-radius: 50px;
  background-color: #65513f;
  box-shadow: 0 2px 5px rgb(29, 24, 18);
  transition: background-color 0.3s;
}
/* ホバー時 */
@media (hover: hover) and (pointer: fine) {
  .pro-lesson-btn a:hover {
  background-color: orange; /* ホバー時の背景色 */
  transition: background-color 0.3s ease; /* ホバー時のアニメーション */
}
}
/* フォントオーサム */
.fa-solid{
  margin-left: 1.2rem;
}
/* ーースキルアップ講座カードーー */
.pro-card-title{
  text-align: center;
  font-weight: normal;
  font-size: 2.4rem;
  margin: 2.4rem 0;
  border-bottom: #432 1px solid;
  padding: 1.2rem 0;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 13rem;
}
.pro-card {
  display: flex;
  margin: 0 auto;
  gap: 5rem;
  padding: 1rem;
  max-width: 1800px;
  margin-bottom: 5rem;
  justify-content: center;
}
.pro-card-item {
  position: relative;
  background: #ffd5af2e;
  border-left:4px dotted rgba(0,0,0,.1);
  border-right:4px dotted rgba(0,0,0,.1);
  box-shadow:0 0 5px rgba(0,0,0,.2);
  padding: 1em;
  color: #65513f;
  margin-bottom: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: auto;
  max-width: 437px;
  flex: 1;
  width: 100%;
}
.pro-tape{
  position: absolute;
  top: -1.5em;
  left: 38%;
  width:130px;
  height:40px;
  border-left:2px dotted rgba(0,0,0,.1);
  border-right:2px dotted rgba(0,0,0,.1);
  box-shadow:0 0 5px rgba(0,0,0,.2);
  transform: rotate(350deg);
background: repeating-linear-gradient(
  -45deg,
  rgba(160, 120, 90, 0.3),
  rgba(160, 120, 90, 0.3) 10px,
  #fff 0,
  #fff 20px
);  padding: 1em;
  color: #65513f;
}
.pro-card-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  margin-bottom: 20px;
  overflow: hidden;
  height: auto;
}
.pro-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pro-card-text {
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-height: 430px;
}
.pro-card-text-main{
  flex-grow: 1;
}
.pro-card-text-main h4{
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.pro-card-text-main p{
  font-size: 1.4rem;
}
.pro-card-text-money {
  font-size: 1.8rem;
  margin-top: auto; /* ← これで一番下に張り付きます */
  font-weight: normal;
  padding-top: 3rem;
  border-top: 1px dotted #ccc;
  font-family: 'Meiryo';
}
.pro-card-attention{
  margin-top: 2rem;
  color: #999;
  text-align: center;
}
/* ーーPRO特典ーー */
.pro-gift{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 6rem;
  margin-bottom: 20rem;
}
.pro-gift-img{
  max-width: 400px;
  height: auto;
  margin-right: 5rem;
}
.pro-gift-text{
  text-align: center;
}
.pro-gift-text h4{
font-size: 1.8rem;
font-weight: bold;
margin-bottom: 3rem;
}
@media screen and (max-width: 980px) {
  .pro-tape{
  left: 31%;
}
}
@media screen and (max-width: 768px) {
.pro-wrapper{
  margin: 0 3.2rem;
  margin-bottom: 20rem;
}
.pro-card{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 3rem;
}
.pro-card-item {
  max-width: 90%;
  width: 100%;
}
.pro-card-text {
  height: auto;
  min-height: 430px;
}
.pro-gift{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.pro-gift-img{
  margin-right: 0;
}
.pro-gift-text{
  margin-top: 5rem;
  margin-bottom: 10rem;
}
.pro-tape{
  left: 39%;
}
}
@media screen and (max-width: 500px) {
.pro-wrapper{
  margin: 0 2.8rem;
}
.pro-tape{
  left: 30%;
}
}
/* ーーーーーーーーーーcontactーーーーーーーーーーー */
.contact-wrapper{
  margin: 0 9.2rem;
  margin-bottom: 20rem;
}
.contact-title{
  font-weight: bold;
  font-size: 4.8rem;
  padding: 20rem 9.2rem 7.2rem;
  text-align: center;
}
.contact-text{
  font-size: 1.6rem;
  text-align: center;
}
.Form {
  margin: 5rem auto;
  max-width: 720px;
  padding: 0 1.6rem;
}
.Form-Item {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: normal;
  flex: 0 0 200px;
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
.Form-Item-Label-Any{
  border-radius: 10px;
  margin-right: 1rem;
  padding: 5px 0;
  width: 40px;
  display: inline-block;
  text-align: center;
  background: rgba(68, 51, 34, 0.375);
  color: #fff;
  font-size: 1.2rem;
}
.Form-Item-Label-Required {
  border-radius: 10px;
  margin-right: 1rem;
  padding: 5px 0;
  width: 40px;
  display: inline-block;
  text-align: center;
  background: orange;
  color: #fff;
  font-size: 1.2rem;
}
.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #ffd5af24;
  font-size: 18px;
  padding: 1rem;
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #ffd5af24;
  font-size: 18px;
  height: 200px;
}
.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #65513f;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 6rem;
margin: 4rem auto 10rem;
  text-align: center;
}
.Form-Btn:hover {
  background-color: orange; /* ホバー時の背景色 */
  transition: background-color 0.3s ease; /* ホバー時のアニメーション */
}
#method{
  margin-left: 40px;
  width: 100%;
  max-width: 410px;
  background-color: rgba(68, 51, 34, 0.375);
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #ffd5af24;
  padding: 1rem;
  font-size: 1.8rem;
}
.Form-Privacy-Checkbox{
  margin-right: 10px;
}
.privacy-policy-checkbox{
  text-align: center;
  margin: 4rem 0 6rem;
  display: flex;
  flex-direction: column;
}
.privacy-policy-checkbox a{
  color: #432;
  text-decoration: underline;
  margin-right: 10px;
}
.caution{
  color: red;
  margin-left: 26rem;
}
.caution-privacy-policy{
  color: red;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
.contact-title{
  padding: 20rem 3.2rem 5.2rem;
}
.contact-wrapper{
  margin: 0 3.2rem;
}
.contact-text{
  font-size: 1.6rem;
}
.Form {
  margin-top: 5.2rem;
}
.Form-Item {
  display: grid;
  text-align: center;
  padding: 2.4rem 0 0;
  gap: 1.2rem;
}
.Form-Item-Label {
max-width: none;
text-align: center;
}
.Form-Item-Input {
  margin: 2rem auto;
  text-align: center;
}
#method{
  margin: 2rem auto;
  text-align: center;
}
.Form-Item-Textarea{
  margin: 2rem auto;
  text-align: center;
}
.Form-Btn{
  margin-bottom: 20rem;
}
.caution{
  margin: 0 auto;
  display: block;
  text-align: center;
  padding-bottom: 2.4rem;
}
.caution-privacy-policy{
padding-top: 1rem;
}
}
@media screen and (max-width: 500px) {
.contact-title{
  padding: 7.2rem 2.8rem 5.2rem;
}
.Form-Item{
display: block;
text-align: left;
}
}
/* ーーーーーーー確認ページーーーーーーーー */
.check-text{
  text-align: center;
  font-size: 2rem;
  line-height: 1.8;
  padding: 2rem;
}
.check-contents{
  text-align: center;
  margin: 4rem auto;
}
.check-title{
  font-size: 2rem;
  font-weight: bold;
}
.check-input{
  font-size: 1.8rem;
}
.btn{
  display: flex;
  gap: 4rem;
  justify-content: center;
}
#check-btn {
  border-radius: 6px;
  margin-top: 32px;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 200px;
  display: block;
  letter-spacing: 0.05em;
  background: #65513f;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 6rem;
}
/* ホバー時 */
  #check-btn:hover {
  background-color: orange; /* ホバー時の背景色 */
  transition: background-color 0.3s ease; /* ホバー時のアニメーション */
  }
/* ーーーーーーー完了ページーーーーーーーー */
.thanks{
  text-align: center;
  line-height: 1.8;
  padding: 2rem;
}
.thanks-contact{
  font-weight: bold;
  margin: 5rem 0 0;
}
.thanks-company{
  font-size: 2rem;
}
/* ーーーーーーーーーaccessーーーーーーーーーーー */
.access-wrapper {
  margin: 0 9.2rem;
  margin-bottom: 20rem;
}
.access-title {
  text-align: center;
  font-weight: bold;
  font-size: 4.8rem;
  padding: 20rem 9.2rem 7.2rem;
}
.map-button{
  width: 200px;       /* 任意の幅 */
  height: 50px;       /* 任意の高さ */
  position: relative;
  margin: 5rem auto;    /* 中央寄せ */
}
.map-button-link{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #65513f;
  color: white;
  border-radius: 50px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.access-text {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 3.2rem;
}
.access-info h3{
  font-size: 2.4rem;
max-width: 600px;
margin: 0 auto;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
}
.access-info h3::before,
.access-info h3::after {
  content: '';
  width: 100px;
  height: 3px;
  background-color: #432;
}
.access-info h3::before{
  margin-right: 20px;
}
.access-info h3::after{
  margin-left: 20px;
}
.access-info p{
  margin-top: 4rem;
}
.access-info{
margin: 0 auto;
text-align: center;
margin: 5rem 0;
}
.access-info-location{
  margin-bottom: 8rem;
}
.access-info-access{
  margin-bottom: 8rem;
}
.access-info-contact{
  margin-bottom: 8rem;
}
.access-attention{
  color: #999;
  text-align: center;
  font-size: 1.4rem;
}
.access-video-title{
  text-align: center;
  font-size: 2rem;
}
.access-video-contents-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5rem;
  margin-top: 3.2rem;
}
.access-video{
  margin-top: 12rem;
}
.access-video h3{
  font-size: 2.4rem;
max-width: 600px;
margin: 0 auto;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
}
.access-video h3::before,
.access-video h3::after {
  content: '';
  width: 100px;
  height: 3px;
  background-color: #432;
}
.access-video h3::before{
  margin-right: 20px;
}
.access-video h3::after{
  margin-left: 20px;
}
.access-video-contents{
  text-align: center;
  background-color: #ffd5af2e;
  border-left:4px dotted rgba(0,0,0,.1);
  border-right:4px dotted rgba(0,0,0,.1);
  box-shadow:0 0 5px rgba(0,0,0,.2);
  padding: 1em;
  color: #65513f;
}
.access-video-contents p{
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .access-wrapper {
    margin: 0 3.2rem;
    margin-bottom: 20rem;
  }
  .access-title {
    padding: 20rem 9.2rem 7.2rem;
  }
}
@media screen and (max-width: 500px) {
  .access-wrapper {
  margin: 0 2.8rem;
  margin-bottom: 9.2rem;
  }
  .access-title {
    padding: 7.2rem 2.8rem 5.2rem;
  }
}
/* ーーーーーーーーーworkshopーーーーーーーーーーー */
.workshop-wrapper {
  margin: 0 9.2rem;
  margin-bottom: 20rem;
}
.workshop-title {
  text-align: center;
  font-weight: bold;
  font-size: 4.8rem;
  padding: 20rem 9.2rem 7.2rem;
}
/* ーーーースライドショーーーーーー */
.img-frame {
  position: relative;
  max-width: 800px;
  height: 500px;
  overflow: hidden;
  margin: 0 auto 7.2rem;
}

.img-01, .img-02, .img-03, .img-04, .img-05, .img-06 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  animation: none;
}

.img-01 { background-image: url('../img/workshop-slidshow01.webp'); animation: fadeInOut 12s infinite; animation-delay: 0s; }
.img-02 { background-image: url('../img/workshop-slidshow02.webp'); animation: fadeInOut 12s infinite; animation-delay: 2s; }
.img-03 { background-image: url('../img/workshop-slidshow03.webp'); animation: fadeInOut 12s infinite; animation-delay: 4s; }
.img-04 { background-image: url('../img/workshop-slidshow04.webp'); animation: fadeInOut 12s infinite; animation-delay: 6s; }
.img-05 { background-image: url('../img/workshop-slidshow05.webp'); animation: fadeInOut 12s infinite; animation-delay: 8s; }
.img-06 { background-image: url('../img/workshop-slidshow06.webp'); animation: fadeInOut 12s infinite; animation-delay: 10s; }

@keyframes fadeInOut {
  0% { opacity: 0; transform: scale(1); }
  5% { opacity: 1; transform: scale(1.05); }
  15% { opacity: 1; transform: scale(1.05); }
  20% { opacity: 0; transform: scale(1.02); }
  100% { opacity: 0; transform: scale(0); }
}


.workshop-top-text{
  text-align: center;
  margin-bottom: 7.2rem;
}
/* ーーーー申込みボタンーーーーー */
.workshop-btn {
  text-align: center; /* 中央寄せ */
  margin: 2rem 0;      /* 上下に余白（お好みで） */
}
.workshop-btn a {
  display: inline-block;
  padding: 2rem 6rem;
  color: white;
  text-decoration: none;
  font-size: 1.6rem;
  border-radius: 50px;
  background-color: #65513f;
  box-shadow: 0 2px 5px rgb(29, 24, 18);
  transition: background-color 0.3s;
}
/* ホバー時 */
@media (hover: hover) and (pointer: fine) {
  .workshop-btn a:hover {
  background-color: orange; /* ホバー時の背景色 */
  transition: background-color 0.3s ease; /* ホバー時のアニメーション */
}
}
/* ーーーーカードーーーーー */
.workshop-card-title{
  text-align: center;
  font-weight: normal;
  font-size: 2.4rem;
  margin: 2.4rem 0;
  border-bottom: #432 1px solid;
  padding: 1.2rem 0;
  max-width: 500px;
  margin: 0 auto;
}
.workshop-card {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  margin: 0 auto;
  gap: 2rem;
  padding: 1rem;
  margin: 10rem 0 5rem;
}
.workshop-card-item {
  position: relative;
  background: #ffd5af2e;
  border-left:4px dotted rgba(0,0,0,.1);
  border-right:4px dotted rgba(0,0,0,.1);
  box-shadow:0 0 5px rgba(0,0,0,.2);
  padding: 1em;
  color: #65513f;
  margin-bottom: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: auto;
}
.workshop-tape{
  position: absolute;
  top: -1em;
  left: 31%;
  width:120px;
  height:40px;
  border-left:2px dotted rgba(0,0,0,.1);
  border-right:2px dotted rgba(0,0,0,.1);
  box-shadow:0 0 5px rgba(0,0,0,.2);
  transform: rotate(350deg);
background: repeating-linear-gradient(
  -45deg,
  rgba(160, 120, 90, 0.3),
  rgba(160, 120, 90, 0.3) 10px,
  #fff 0,
  #fff 20px
);  padding: 1em;
  color: #65513f;
}
.workshop-card-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin-bottom: 20px;
}

.workshop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.workshop-card-text {
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 10px;
}
.workshop-card-text h4{
margin-bottom: 1rem;
font-weight: bold;
font-size: 1.6rem;
}
/* ーーinstagramボタンーー */
.workshop-info-contents {
  max-width: 100%;
  background: #432;
  color: #fff;
  border-radius: 16px;
  text-align: center;
  margin: 0 auto;
  font-size: 2.4rem;
  justify-content: center;
  padding: 4.8rem 7.2rem;
  justify-content: center;
  width: 600px;
}
.workshop-info-text {
  font-size: 1.6rem;
  margin-bottom: 3.2rem;
}
.workshop-info-btn {
  background-color: rgb(147, 120, 95);
  border-radius: 16px;
  text-align: center;
  font-size: 2.4rem;
  margin: 0 auto;
  width: 100%;
}
.workshop-info-btn a {
  color: #fff;
  display: block;
  transition: background-color 0.3s ease;
  padding: 1.2rem 0;
}
@media (hover: hover) and (pointer: fine) {
  .workshop-info-btn a:hover {
  color: #fff;
  transition: color 0.3s ease;
}
}
@media (hover: hover) and (pointer: fine) {
  .workshop-info-btn:hover {
  background-color: orange;
  transition-duration: 0.5s;
  cursor: pointer;
}
}
@media screen and (max-width: 1053px) {
.workshop-tape{
  left: 38%;
}
}
@media screen and (max-width: 820px) {
.img-frame{
  height: 400px;
}
.workshop-tape{
  left: 32%;
}
}
@media screen and (max-width: 768px) {
.workshop-title{
  padding: 20rem 3.2rem 5.2rem;
}
.workshop-wrapper{
  margin: 0 3.2rem;
  margin-bottom: 20rem;
}
.img-frame{
  height: 460px;
  margin: 0 auto 4.2rem;
}
.img-01, .img-02, .img-03{
  background-size: contain;
}
.workshop-top-text{
  text-align: center;
  margin-bottom: 4.2rem;
}
.workshop-card{
  grid-template-columns: none;
  gap: 0;
}
.workshop-tape{
  left: 39%;
  width: 160px;
  height: 50px;
}
}
@media screen and (max-width: 600px) {
.img-frame{
  height: 350px;
  margin: 0 auto 4rem;
}
.img-01, .img-02, .img-03{
  background-size: cover;
}
}
@media screen and (max-width: 540px) {
.workshop-title{
  text-align: center;
  padding: 7.2rem 2.8rem 5.2rem;
}
.workshop-wrapper{
  margin: 0 2.8rem;
  margin-bottom: 10rem;
}
.img-frame{
  height: 280px;
  margin: 0 auto 4rem;
}
.img-01, .img-02, .img-03{
  background-size: contain;
}
.workshop-top-text{
  text-align: center;
  margin-bottom: 4rem;
}
.workshop-card{
  grid-template-columns: none;
  gap: 0;
}
.workshop-tape{
  left: 34%;
}
  .workshop-info {
    margin: 20rem 3.2rem;
  }
  .workshop-info-contents {
    max-width: 100%;
    background: #432;
    color: #fff;
    border-radius: 16px;
    text-align: center;
    margin: 0 auto;
    font-size: 2.4rem;
    justify-content: center;
    padding: 4.8rem 3.2rem;
    width: 100%;
  }
  .workshop-info-text {
    font-size: 1.4rem;
    margin-bottom: 3.2rem;
  }
  .workshop-info-btn{
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 440px) {
.workshop-tape{
  left: 35%;
  width: 120px;
  height: 40px;
}
}
@media screen and (max-width: 375px) {
.img-frame{
  height: 200px;
  margin: 0 auto 4rem;
}
.img-01, .img-02, .img-03{
  background-size: cover;
}
.workshop-top-text{
  text-align: center;
  margin-bottom: 4rem;
}
.workshop-tape{
  left: 31%;
  width: 120px;
  height: 40px;
}
}
/* ーーーーーーーーーoriginalーーーーーーーーーーー */
.zagane-wrapper {
  margin: 0 9.2rem;
  margin-bottom: 20rem;
}
.zagane-title {
  text-align: center;
  font-weight: bold;
  font-size: 4.8rem;
  padding: 20rem 9.2rem 7.2rem;
}
.zagane-explanation{
  text-align: center;
  max-width: 800px;
  margin: 0 auto 13rem;
}
.zagane-explanation h3{
  font-size: 2.4rem;
}
.zagane-img{
  margin: 3rem 0;
}
.zagane-img img{
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  height: auto;
}

.zagane-howto{
  margin: 5rem 0;
}
.zagane-howto-title{
  margin-bottom: 3rem;
  text-align: center;
}
.zagane-howto-title h3{
  padding-bottom: 1.2rem;
  font-weight: bold;
  border-bottom: #432 solid 1px;
  max-width: 500px;
  margin: 0 auto;
  font-size: 2.4rem;
}
.zagane-howto-attention{
  color: #999;
}
.zagane-card-wrap{
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;
  margin-top: 7rem;
}
.zagane-card{
  position: relative;
}
.zagane-card-num{
  position: absolute;
  color: #432;
  top: -10%;
  left: -11%;
}
.zagane-card-num p{
  position: relative;
  font-family: 'Noto Serif JP', serif;
  font-size: 64px;
  color: #432;
  font-weight: 400;
  line-height: 1.5;
  display: block;
  box-sizing: border-box;
  text-align: center;
  margin-inline: auto;
  width: fit-content;
}
.zagane-card-num p::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -24px;
  width: 40px;
  height: 80px;
  border-left: 1px solid #432;
  rotate: 45deg;
}
.zagane-card-contents{
  width: 270px;
  height: 380px;
  background: #ffd5af2e;
  border-radius: 20px;
  text-align: center;
  margin: 0 auto;
}
.zagane-card-contents img{
  width: 250px;
  height: 190px;
  border-radius: 20px;
  margin-top: 1rem;
}
.zagane-card-contents-p{
  text-align: center;
  padding: 2rem 2rem 0;
}
.zagane-card-contents-p ul{
  display: inline-block;
}
.zagane-card-contents-p li{
  text-align: left;
}
.zagane-card-arrow{
  display: inline-block;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent #432;
}
.zagane-attention{
  text-align: center;
  margin: 2rem 0 5rem;
}
.zagane-move{
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 15rem;
}

.zagane-work-title{
  padding-bottom: 1.2rem;
  font-weight: bold;
  border-bottom: #432 solid 1px;
  max-width: 500px;
  margin: 0 auto;
  font-size: 2.4rem;
  text-align: center;
}
.zagane-work-contents{
  display: flex;
  gap: 5rem;
  justify-content: center;
  margin-top: 5rem;
}
.zagane-work-img{
  display: flex;
  align-items: center;
}
.zagane-work-img img{
  max-width: 400px;
}
.zagane-work-text{
  max-width: 500px;
  text-align: left;
}
.zagane-work-text-teacher{
  margin-top: 7rem;
}
.zagane-work{
  margin: 15rem 0;
}
.zagane-work-text-img{
  display: flex;
  margin-top: 6rem;
}
.zagane-work-text-img img{
  width: 200px;
  height: auto;
  margin-right: 2rem;
}
.zagane-shop{
  margin: 15rem 0 5rem;
}
.zagane-shop-title{
  padding-bottom: 1.2rem;
  font-weight: bold;
  border-bottom: #432 solid 1px;
  max-width: 500px;
  margin: 0 auto 5rem;
  font-size: 2.4rem;
  text-align: center;
}
.zagane-shop-list{
  display: flex;
  justify-content: center;
  gap: 3rem;
}
.zagane-shop-contents{
  text-align: center;
  position: relative;
  background: #ffd5af2e;
  border-left:4px dotted rgba(0,0,0,.1);
  border-right:4px dotted rgba(0,0,0,.1);
  box-shadow:0 0 5px rgba(0,0,0,.2);
  padding: 1em;
  color: #65513f;
}
.zagane-shop-tape{
  position: absolute;
  top: -1em;
  left: 31%;
  width:120px;
  height:40px;
  border-left:2px dotted rgba(0,0,0,.1);
  border-right:2px dotted rgba(0,0,0,.1);
  box-shadow:0 0 5px rgba(0,0,0,.2);
  transform: rotate(350deg);
background: repeating-linear-gradient(
  -45deg,
  rgba(160, 120, 90, 0.3),
  rgba(160, 120, 90, 0.3) 10px,
  #fff 0,
  #fff 20px
);  padding: 1em;
  color: #65513f;
}
.zagane-shop-subtitle{
  font-size: 1.4rem;
  color: #999;
  padding: 1rem 0 0;
}
.zagane-shop-contents img{
  max-width: 300px;
  height: 200px;
}
.zagane-shop-contents h4{
  font-size: 1.8rem;
  margin: 0 0 1rem;
}
.zagane-shop-contents p{
  margin-bottom: 1rem;
}
.zagane-contents-text{
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.zagane-shop-contents ul{
  margin-bottom: 1rem;
  text-align: left;
  list-style: inside;
}
.zagane-shop-attention{
  color: #999;
  font-size: 1.4rem;
}
/* ーーーー申込みボタンーーーーー */
.zagane-shop-btn {
  text-align: center; /* 中央寄せ */
  margin: 2rem 0;      /* 上下に余白（お好みで） */
}
.zagane-shop-btn a {
  display: inline-block;
  padding: 2rem 6rem;
  color: white;
  text-decoration: none;
  font-size: 1.6rem;
  border-radius: 50px;
  background-color: #65513f;
  box-shadow: 0 2px 5px rgb(29, 24, 18);
  transition: background-color 0.3s;
}
/* ホバー時 */
@media (hover: hover) and (pointer: fine) {
  .zagane-shop-btn a:hover {
  background-color: orange; /* ホバー時の背景色 */
  transition: background-color 0.3s ease; /* ホバー時のアニメーション */
}
}
@media screen and (max-width: 1330px) {
.zagane-card-wrap{
  flex-wrap: wrap;
}
.zagane-shop-list{
  flex-wrap: wrap;
  gap: 5rem;
}
}
@media screen and (max-width: 1127px) {
.zagane-work-img img{
  max-width: 400px;
}
.zagane-work-text{
  max-width: 400px;
}
.zagane-work-text-teacher{
  margin-top: 2rem;
}
.zagane-work-text-img{
  margin-top: 4rem;
}
}
@media screen and (max-width: 972px) {
.zagane-card-wrap{
  flex-wrap: wrap;
}
.zagane-work-text{
  max-width: 350px;
  margin-top: 0;
  text-align: center;
}
.zagane-shop-list{
  flex-wrap: wrap;
  gap: 5rem;
}
.zagane-work-contents{
  flex-direction: column;
  align-items: center;
}
.zagane-work-text-teacher{
  margin-top: 2rem;
}
.zagane-work-text-img{
  justify-content: center;
  gap: 1rem;
}
.zagane-work-text-img img{
  margin-right: 0;
}
}
@media screen and (max-width: 768px) {
.zagane-title{
  padding: 20rem 3.2rem 5.2rem;
}
.zagane-wrapper{
  margin: 0 3.2rem;
  margin-bottom: 20rem;
}
}
@media screen and (max-width: 540px) {
.zagane-title{
  text-align: center;
  padding: 7.2rem 2.8rem 5.2rem;
}
.zagane-wrapper{
  margin: 0 2.8rem;
  margin-bottom: 10rem;
}
.zagane-img{
  flex-wrap: wrap;
}
.zagane-work-contents{
  flex-wrap: wrap;
}
.zagane-work-text{
  text-align: center;
}
.zagane-work-img img{
  max-width: 300px;
}
.zagane-card-wrap{
  gap: 3rem;
}
.zagane-work-text-img{
display: block;
}
.zagane-work-text-img img{
  margin-top: 1rem;
}
}