body, html {
      height:100%;
 margin: 0;
  padding: 0;
}

body {
  font-family: 'Noto Sans','Noto Sans JP',  sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  background-color: #f9f5ef;
  color: #333;
 text-align: center;
}

h1, h2, h5, h6 {
  font-weight: 400;
  color: #3a2e2e;
}

h1, h2 {
  font-family: 'Dela Gothic One', sans-serif;	
}

h2 {
  font-size: 2.2rem;
  padding: 0 0.5rem 1.5rem 0.5rem;
}

h5 {
 font-weight: 700;
 font-size: 1.2rem;
  padding: 0 0 1rem 0;
}

section {
  padding: 4rem 0;
  margin: 0;
}

.bg-beige {
  background-color: #f5f1ea;
}

.bg-light {
  background-color: #fdfdfd !important;
}
.bg-yellow {
  background-color: #F9C200;
}

.bg-accent {
  background: linear-gradient(rgba(255, 242, 229, 0.9), rgba(255, 242, 229, 0.9)), url('background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.btn-primary {
  background-color: #d94f04;
  border: none;
  color: #fff;
}

.btn-primary:hover {
  background-color: #b53d00;
}


.btn-secondary {
  background-color: #B00928;
  border: none;
  color: #fff;
}

.btn-secondary:hover {
  background-color: #88090B;
  border: none;
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.hr1 {
  border-top: 2px solid #333333;
  width:20vw;
  text-align: center;
  margin: auto;

}
a {
	color: #d94f04;
}
a hover{
	color: #853802;
}
/******* ナビゲーション ***********************/

.navbar {
  font-size: 80%;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  min-height: 60px;
  padding-top: 0;
  padding-bottom: 0;
  align-items: center;
  display: flex;
  flex-wrap: wrap; /* 2段まで自動で折り返す */
  gap: 0.5rem 1rem;
  overflow: hidden;
}

.nav-link {
  color: #3a2e2e !important;
}

.nav-link:hover {
  color: #d94f04 !important;
}

.nav-item {
  white-space: nowrap; /* 各メニューが途中で折り返されないようにする */
}

.navbar-nav .nav-link,
.navbar-nav .btn {
  display: flex;
  align-items: center;
  height: 100%;
}

.navbar-brand img.logo-pc {
  max-height: 35px;
  height: auto;
}

.navbar-brand img.logo-sp {
  max-height: 40px;
  height: auto;
}

ul.navbar-nav img {
  height: 24px;
}

.navbar-toggler {
  padding: 0.25rem 0.5rem;
  font-size: 1.25rem;
}



/* 初期状態：ロゴB（スマホ用）は非表示 */
.logo-sp {
  display: none;
}

/* PC用ロゴの基本スタイル */
.logo-pc,
.logo-sp {
  max-height: 40px;
  height: auto;
}

.apply-btn {
  height: 36px;
  padding: 0 1rem;
  line-height: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.side-tab {
  position: fixed;
  top: 20%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 0;
  z-index: 1000;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  border-radius: 8px 0 0 8px;
}

.side-tab a {
  color: #333;
  padding: 0.5rem 0.5rem;
  text-align: center;
  border-radius: 8px 0 0 8px;
  white-space: nowrap;
}

.side-tab a:hover {
  background-color: #eee;
}

.side-tab img{
  max-width: 100%;
  max-height: 100%;
  border-radius: 0;
}



/******** ヒーローセクション ***********************/

/*----------------------------------
  共通設定（モバイル基準）
----------------------------------*/
#hero {
  background-color: #F9C200;
  background-image: url("../images/back_camera.png");
  background-repeat: repeat;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* ← 中央寄せ */
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;         /* ← モバイルの余白調整 */
  box-sizing: border-box;
}

.hero h1 {
  font-size: 2rem;
  color: #000;
}

.hero img.top {
  max-height: 60vh;
}

.hero-btn {
  display: flex;
  flex-direction: column;      /* ← モバイルでは縦並び */
  align-items: center;         /* ← 中央揃え */
  gap: 1rem;
  margin-top: 1rem;
}

.btn-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;   /* ボタンと同じ幅にする */
}

.btn-hero-academy,
.btn-hero-workshop {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
  width: 220px;
  height: 60px;
  border-radius: 30px;
  color: #fff;
  background-color: #d94f04;
  line-height: 1.2;
  white-space: nowrap;
}

.btn-hero-workshop {
  background-color: #B00928;
}
.btn-hero-academy:hover {
  background-color: #b84200;
}
.btn-hero-workshop:hover {
  background-color: #88090B;
}

/* ボタン内のラベル */
.label-new {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 900;
  font-size: 0.9rem;
  color: yellow;
  margin-bottom: 0.1rem;
  line-height: 1;
}
.label-title {
  font-size: 1rem;
}

/* 吹き出し */
.fukidashi {
  position: absolute;
  top: -30px;
  right: -45px;
  width: 60px;
  z-index: 10;
  pointer-events: none;
}

/*----------------------------------
  PCサイズ調整（768px以上）
----------------------------------*/
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-btn {
    flex-direction: row;
    align-items: stretch;
  }

  .btn-wrapper {
    width: 300px;
  }

  .btn-hero-academy,
  .btn-hero-workshop {
    width: 300px;
    height: 90px;
   border-radius: 45px;
   font-size: 1.5rem;
  }

  .label-new {
    font-size: 1.3rem;
  }

  .label-title {
    font-size: 1.5rem;
  }

  .fukidashi {
    top: -50px;
    right: -50px;
    width: 100px;
  }
}




footer {
  background-color: #3a2e2e;
  color: #fff;
  text-align: center;
  padding: 2rem 0;
}

img.aida{
	width:100px;
}

img.aidapittari{
	width:200px;
  height: auto;
  margin: 0 auto;
  display: block;
  margin-bottom: -48px;
}

img.aidahamidashi{
	width:80px;
  height: auto;
  margin: 0 auto;
  display: block;
  margin-top: -170px;
}

/******* アバウト ***********************/

#about h1{
  font-size: 2rem;	
}
#about img.logo {
	width:80vw;
	max-width: 500px;
	margin:0 0 30px 0;
	
}
.maincopy {
	font-size: 1.1rem;
	font-weight: 400;
	font-style: Italic;
}

.maincopy2 {
	font-size: 1.3rem;
	font-weight: 600;
	font-style: Italic;
	color: #d94f04;
}

/******* おすすめ ***********************/

#recomend .custom-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.frame01 {
  display: flex;
  flex-direction: column;
  height: 100%;
	padding: 0.5rem 2rem 0 2rem;
  border: 1px solid #ffffff;
	background-color: rgb(255 255 255  / 20%); 
  border-radius: 8px;
}

.case {
	font-size: 1rem;
    color: #d94f04;
	text-decoration: underline;
    text-underline-offset: 0.5rem;
	font-family: 'Oswald';
}

.frame01 h5 {
	font-size: 1rem;
	  line-height: 1.5;
	font-weight: 400;
	color:#333333;
	/*text-decoration: underline yellow 1rem;
   	text-underline-offset: -1rem;*/
}

.frame01 .beginer{
	font-size: 1.5rem;
	margin:-0.5rem 0 0 0;
	padding:0;	
}
/******* 受講者の声 ***********************/

#voices .video-wrapper {
   background-color: #666666; 
	  background-image: url('assets/videos/voice_01.jpg'); 
 position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 9 / 15;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px; 
}


#voices .video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

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

#voices .tab-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap; /* ここを追加して折り返し可能に */
  max-width: 500px; /* 幅を制限して折り返しを起こしやすく */
  margin-left: auto;
  margin-right: auto;
}
#voices .tab-button {
 background: #F9C200;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
	  white-space: nowrap; 
	color: #000;
}

#voices .tab-button a{
	color: #000;
}

#voices .tab-button:hover {
  background: #d6a900;
}
#voices .tab-button.active {
  background: #d6a900;
  color: #fff;
}

#voices .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center; 
  height: auto;  
  padding: 2rem 0;
}
blockquote.instagram-media {
  margin-left: auto !important;
  margin-right: auto !important;
}
.video-box {
  background-color: #cccccc; 
  width: 100%;
  max-width: 500px;
  border-radius: 12px; /* 角丸がほしい場合 */
}

/******* 講師 ***********************/

.profile {
	max-width: 750px;
	margin: 0 auto;
}

#instructor img.inst{
	width:100%;
	max-width: 400px;
}
span.koumoku{
	font-weight: 600;
}

.hover-img {
  width:300px;
	max-width: 80vw;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0 0 2rem 0;
}

.hover-img:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

/******* ギャラリー ***********************/

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
	max-width: 750px;
	margin: 0 auto;
	
}

.gallery-item {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s;
}

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

/* モーダル */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  display: block;
  max-width: 80vw;
  max-height: 80vh;
  width: auto;
  height: auto;	
	margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

/******** メッセージ　***********************/

#message h5{
	color: #fff;
	font-size: 1.5rem;
	padding: 1rem 0 1rem 0;
	line-height: 1.6;
}

.message-box {
  max-width: 900px;
  margin: 0 auto 0 auto;
}

.speaker-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

/* PC表示：アイコンと吹き出しを上下中央に */
@media (min-width: 768px) {
  .message-box {
    display: flex;
    align-items: center;
  }
}

/* 吹き出し */
.speech-bubble {
  position: relative;
  background: #F9C200;
  border: 2px solid #F9C200;
  border-radius: 16px;
  padding: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.05);
	  text-align: left;

}

/* デフォルト（三角：左） */
.speech-bubble::after,
.speech-bubble::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 30px;
  border: 10px solid transparent;
  border-right-color: #F9C200;
}

.speech-bubble::before {
  left: -22px;
  border: 11px solid transparent;
  border-right-color: #F9C200;
}

/* モバイル時（三角：上） */
@media (max-width: 767.98px) {
  .speech-bubble::after,
  .speech-bubble::before {
    left: 50%;
    top: -20px;
    bottom: auto;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-bottom-color: #F9C200;
    border-top-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
  }

  .speech-bubble::before {
    top: -22px;
    border: 11px solid transparent;
    border-bottom-color: #F9C200;
  }

  .message-box {
    flex-direction: column;
    align-items: center;
  }

  .speech-bubble {
    margin-top: 1rem;
    margin-left: 0;
    margin-right: 0;
  }
  .speech-bubble {
    text-align: center;
  }
	
}

/******** 講座内容　***********************/

#academy　.container {
}

#academy h3 {
	font-size: 1.1rem;
	line-height: 1.5;
  padding-bottom: 1.5rem;
}

#academy .lead {
	color: #d94f04;		
	font-size: 1rem;
	font-weight: 600;
	font-style: Italic;
}

.frame02 {
  position: relative;
  border: 1px solid #d94f04;
  border-radius: 8px;
  padding: 2rem 1.5rem 1rem;
  background-color: #fff;
  height: 100%;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.05);
}

.frame02 h5 {
  margin-top: 1.5rem; 
}

.frame02 img {
  margin: 0 0 1rem 0; 
}

.day {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 40px;
  background-color: #d94f04;
  color: #fff;
  font-family: "oswald";
  font-weight: 600;
  font-size: 1.25rem;
  border-radius: 24px;
  white-space: nowrap;
}

.kouzatext {
	text-align: left;
}

#academy .komoji {
	font-size: 0.9rem;
}

#academy .tab-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
#academy .tab-button {
  position: relative;
  background: #F9C200;
  color: #3a2e2e;
  border: none;
  padding: 0.75rem 5rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 0;
}
#academy .tab-button::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #F9C200;
}
#academy .tab-button:not(.active)::after {
  display: none;
}
#academy .tab-button.active {
  background-color: #d94f04;
  color: #fff;
}
#academy .tab-button.active::after {
  border-top-color: #d94f04;
}
#academy .tab-content {
  display: none;
}
#academy .tab-content.active {
  display: block;
}

/******* アカデミー概要　***********************/

#academy-summary .section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #3a2e2e;
}
.summarybox {
	max-width: 900px;
	margin: 0 auto;
}
.feature-box {
  background-color: #F9C200;
  border-radius: 8px;
  padding: 1.2rem;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.05);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #d94f04;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.feature-text {
  font-size: 1rem;
  line-height: 1.8;
}
.feature-note {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}


 .location-time {
  font-size: 1rem;
  color: #3a2e2e;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

 .komoji {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 1rem;
}

.info-box {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  color: #3a2e2e;
}

.info-box .icon {
  margin-right: 0.5rem;
  font-size: 1.2rem;
  vertical-align: middle;
}

.komoji {
  font-size: 0.9rem;
  color: #555;
}
.pre-application-info .lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: #3a2e2e;
}

.btn-line {
  background-color: #00b900;
  color: #fff;
  font-weight: bold;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-line:hover {
  background-color: #009d00;
  color: #fff;
}

.btn-apply {
  background-color: #d94f04;
  color: #fff;
  font-weight: bold;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-apply:hover {
  background-color: #b84200;
  color: #fff;
}

.caution-box {
  background-color: #fff4d9;
  border-left: 4px solid #f9c200;
  padding: 1rem;
  font-size:1rem;
  color: #3a2e2e;
  line-height: 1.6;
  display: inline-block;
  text-align: left;
  max-width: 500px;
  border-radius: 4px;
}

.flow-box {
  padding: 1rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.flow-step {
  background: #fff;
   border: 2px solid #F9C200;
 border-radius: 16px;
  padding: 0.75rem 1rem 1.5rem; /* 下に余白追加 */
  margin: 0.5rem 0;
  font-weight: bold;
  color: #3a2e2e;
  position: relative;
}

.flow-step p {
  font-weight: normal;
  font-size: 1rem;
  margin-top: 0.5rem;
  line-height: 1.5;
  color: #3a2e2e;
}
.flow-step p.flow-title{
  font-size: 1.1rem;
  font-weight: 700;
  color: #d94f04;
}

#application-flow .red{
	color: crimson;
}

.flow-step-box {
  border: 2px solid #F9C200;
  border-radius: 8px;
  overflow: hidden;
  margin: 0rem auto;
  max-width: 600px;
  background-color: #fff;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.05);
text-align: center;
}

.flow-step-title {
  background-color: #F9C200;
  color: #3a2e2e;
  font-weight: 700;
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
}

.flow-step-detail {
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #3a2e2e;
}

.flow-step-detail p {
  margin-bottom: 0;
}

.flow-arrow {
  font-size: 1.2rem;
  color: #d94f04;
  margin: 0;
  padding: 0;
  text-align: center;
}

/******* 料金・特典 ***********************/


#benefits .container{
	padding: 1rem;
}

#benefits .price{
	font-family: 'oswald';
	font-size: 2.2rem;
	font-weight: 700;
	color:#d94f04;
	margin:0 0 -0.5rem 0;
}

#benefits .zeikomi{
	font-family: 'oswald';
	font-size: 1.2rem;
	font-weight: 700;
}

#benefits .gaiyou{
	font-size: 1.2rem;
	font-weight: 700;
	margin:0 0 0.5rem 0;
	text-decoration: underline #d94f04 3px;;
    text-underline-offset: 0.5rem;
}

#benefits .pay{
  font-size: 1rem;
	font-weight: 500;
}

#benefits .kaisuu{
	font-family: 'oswald';
	font-size: 1.6rem;
	font-weight: 700;
	color:#d94f04;
	margin:0 0 -0.5rem 0;	
}
.gakuwari-box {
  border: 2px solid #F9C200;
  border-radius: 8px;
  overflow: hidden;
  max-width: 330px;
  margin: 0 auto;
}

.gakuwari {
  background-color: #F9C200;
  color: #333;
	font-weight: 700;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
}

.gakuwari-detail {
  padding: 1rem;
  background-color: #fff;
  font-size: 1rem;
	font-weight: 500;
}

/******** ワークショップ ***********************/

#workshop h3 {
	font-size: 1.6rem;
	font-weight: 700;
	color: #d94f04;
}
#workshop h4 {
	font-size: 1.2rem;
	font-weight: 500;
	color: #d94f04;
}
.workshop-tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-bottom: 3px solid #ccc;
  padding-bottom: 0;
  margin-bottom: 1rem;
}

.workshop-tab-buttons .nav-link {
  background-color: #f5f5f5; 
  color: #777;
  border-top: 2px solid #f9c200;
  border-left: 2px solid #f9c200;
  border-right: 2px solid #f9c200;
  border-bottom: 2px solid #ccc;
  border-radius: 12px 12px 0 0;
  padding: 0.75rem 1.5rem;
  min-width: 130px;
  text-align: center;
  font-weight: bold;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 2px;
  opacity: 0.8;
}
.workshop-tab-buttons .nav-link:hover {
  background-color: #fff8cc;
  opacity: 1;
}

.workshop-tab-buttons .nav-link .tab-date {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: #999;
  line-height: 1.6;
}
.workshop-tab-buttons .nav-link .tab-title {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0.3rem;
  color: #777;
}


.workshop-tab-buttons .nav-link.active {
  background-color: #f9c200;
	border-color: #f9c200;
  color: #d94f04;
  z-index: 2;
  opacity: 1;
}

.workshop-tab-buttons .nav-link.active .tab-date {
  color: #d94f04;
}

.workshop-tab-buttons .nav-link.active .tab-title {
  color: #3a2e2e;
}

@media (max-width: 576px) {
  .workshop-tab-buttons {
    justify-content: center;
    gap: 0.5rem;
  }

  .workshop-tab-buttons .nav-link {
    flex: 1 1 45%;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    min-width: auto;
  }
}

/* 共通ボックス */
.workshop-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

.image-container {
  position: relative;
  display: inline-block;
  max-width: 400px;
}

.main-image {
  display: block;
  width: 100%;
  height: auto;
}

.text-box {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fdfdfd;
  color: #3a2e2e;
  padding: 1rem 1.5rem 0 1rem;
  font-weight: bold;
  text-align: center;
  width: 80%;
}

/* リード文 */
.workshop-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: #3a2e2e;
  line-height: 1.6;
}

/* 概要 */
.workshop-outline p {
  font-size: 1rem;
  line-height: 1.6;
  color: #3a2e2e;
}
.workshop-note {
  font-size: 1rem;
  color: #666;
}

/* 講座内容ボックス */
.workshop-feature-box {
  border-radius: 8px;
  background: #fff;
  padding: 1.5rem;
}

.workshop-feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #d94f04;
  margin-bottom: 1rem;
  border-bottom: 2px solid #f9c200;
  display: inline-block;
  padding-bottom: 0.25rem;
}

.workshop-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.workshop-feature-list li {
  font-size: 1rem;
  font-weight: 500;
  color: #3a2e2e;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid #f9c200;
  display: inline-block;
}

.workshop-feature-subtext {
  font-size: 1rem;
  color: #666;
}

/* 推奨対象者 */
.workshop-recommend-box {
  background: #fff4d9;
  border-radius: 8px;
  padding: 1.5rem;
}

.workshop-recommend-item {
  background: #fff;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #3a2e2e;
  box-shadow: 1px 1px 4px rgba(0,0,0,0.05);
}

/* 補足 */
.workshop-note-box {
  font-size: 1rem;
  line-height: 1.8;
  color: #3a2e2e;
}

.workshop-highlight {
   font-size: 1.1rem;
 font-weight: 700;
  color: #d94f04;
	text-decoration: underline;
    text-underline-offset: 0.5rem;
  margin: 1rem 0;
}

.workshop-note-box .komoji{
   font-size: 1rem;
  line-height: 1.6;

}

.workshop-instructor-box {
  background-color: #fff;
  border: 2px solid #f9c200;
  border-radius: 8px;
  padding: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.instructor-photo {
  width: 220px;
  max-width: 90%;
  height: auto;
  border-radius: 8px;
  border: 2px solid #f9c200;
  margin: 0 auto;
}

.workshop-instructor-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #3a2e2e;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}


.btn-apply2 {
  background-color: #B00928;
  color: #fff;
  font-weight: bold;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-apply2:hover {
  background-color: #88090B;
  color: #fff;
}

#workshop .flow-box {
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

#workshop .flow-step {
  background: #fff;
   border: 2px solid #F9C200;
 border-radius: 16px;
  padding: 0.75rem 1rem 1.5rem; /* 下に余白追加 */
  margin: 0.5rem 0;
  font-weight: bold;
  color: #3a2e2e;
  position: relative;
}

#workshop .flow-step p {
  font-weight: normal;
  font-size: 1rem;
  margin-top: 0.5rem;
  line-height: 1.5;
  color: #3a2e2e;
}
#workshop .flow-step p.flow-title{
  font-size: 1.1rem;
  font-weight: 700;
  color: #d94f04;
}

#application-flow .red{
	color: crimson;
}

#workshop .flow-step-box {
  border: 2px solid #F9C200;
  border-radius: 8px;
  overflow: hidden;
  margin: 0rem auto;
  max-width: 600px;
  background-color: #fff;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.05);
text-align: center;
}

#workshop .flow-step-title {
  background-color: #F9C200;
  color: #3a2e2e;
  font-weight: 700;
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
}

#workshop .flow-step-detail {
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #3a2e2e;
}

#workshop .flow-step-detail p {
  margin-bottom: 0;
}

#workshop .flow-arrow {
  font-size: 1.2rem;
  color: #d94f04;
  margin: 0;
  padding: 0;
  text-align: center;
}
/******** Q&A ***********************/
#qa h5{
	line-height: 1.8;
	text-decoration: underline white;
    text-underline-offset: 0.5rem;	
}

/******** お問い合わせ ***********************/
#contact img{
	height: 60px;
}
/******** 規約など ***********************/
#kiyaku .container{
	text-align: left;
}
.kiyaku {
	font-size: 0.95rem;
	color: #555555;
}

/******** フッター ***********************/


footer {
	font-size: 0.9rem;
  background-color: #3a2e2e;
  color: #fff;
  text-align: center;
  padding: 2rem 0;
}
footer a {
  color: #fff;
  text-decoration: underline;
}

footer a:hover {
  text-decoration: none;
}

footer div{
	margin-bottom: 0 !important; 
}

footer .instagram {
  display: block;
  margin-bottom: 0;
  line-height: 0; /* 画像下の余白対策 */
}


/******** レスポンシブ対応 ***********************/
@media (max-width: 768px) {
  .row > [class*='col-'] {
    margin-bottom: 1rem;
  }
}
	
/* メニューロゴをスマホ用表示に切り替え（768px以下） */
@media (max-width: 768px) {
  .logo-pc {
    display: none;
  }
  .logo-sp {
    display: inline;
  }
  .navbar-collapse {
  padding-bottom: 1rem;
  }
    .navbar-nav .nav-item .apply-btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .navbar-nav .nav-item:last-child .apply-btn {
    margin-bottom: 0; /* 最後のボタンだけ余白ゼロに */
  }
}

@media (max-width: 768px) {
  .custom-grid {
     display: grid !important;
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 768px) {
  .tab-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .tab-button {
    flex: 1 1 auto;
    min-width: 40%;
    margin: 0.25rem;
    white-space: nowrap;
  }
}