/* shop_about */
.shop_about h2{
  font-size:6rem;
  font-weight:bold;
  margin:96px auto;
  text-align: center;
}
.shop_about h2 span{
  font-size:2.4rem;
  font-family:var(--english-font);
  display: block;
}

.shop_about_content{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.shop_about_detail{
  padding:1.6rem 3.2rem;
}
.shop_about_detail h3{
  font-size:3.6rem;
}
.shop_about_detail p{
  font-size:1.6rem;
  margin-top:1.5em;
  line-height: 2;
}
/* shop_menu */
.shop_menu {
  margin-top: 96px;
  padding-top:96px;
  padding-bottom:96px;
  background-color: #fcf9ee;
}

.shop-title {
  margin:0 auto 1rem;
  font-size:4.8rem;
  width:100%;
  max-width: 1280px;
  line-height: 1.5;
}
.shop-title span{
  font-size:2.4rem;
  display: block;
  font-family: var(--english-font);
}
.tab-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width:100%;
  max-width: 1180px;
  margin:48px auto 0;
}

.tab-button {
  width:25%;
  background: #eee;
  border: none;
  padding: 1.2rem 1.2rem;
  cursor: pointer;
  font-size: 3rem;
  font-family: "Zen Maru Gothic", sans-serif;
  transition: background 0.3s;
}

.tab-button:hover {
  background: #fcf9ee;
}

.tab-button.active {
  background: #fff;
  font-weight:bold;
  color:#df4144;
  text-decoration: underline;
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
  margin:0 auto;
}

.tab-content.active {
  display: block;
  width:100%;
  max-width: 1180px;
  padding:4.8rem 2.4rem;
  background-color: #fff;
  
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.tab-content ul li{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:2rem 0;
  border-bottom:1px solid #3e3e3e;
}
.tab-content ul li p{
  font-size:2.6rem;
  text-align: left;
  display: block;
  width:100%;
}
.tab-content ul li p.menu_name{
  padding-left:2em;
}
.tab-content ul li p.price{
  color:#df4144;
  text-align: right;
  padding-right:1em;
}

/* shop_gallery */
.shop_gallery{
  display: flex;
  margin:96px auto;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.shop_gallery img{
  width:calc((100% - 60px)/ 3);
}

/* shop_info */
.shop_infomation{
  margin-top:144px;
}
.shop_map{
  height:500px;
  margin-top:48px;
}
.shop_map iframe{
  width:100%;
  height:100%;
  display: block;
}
.shop_infomation_detail{
  display: flex;
  margin:48px auto;
  justify-content: space-between;
  align-items: center;
  font-size:2.4rem;
  padding:3.2rem;
  background-color: rgba(209, 207, 207, 0.2);
}
.shop_infomation_detail ul{
  display: flex;
  gap:2rem;
}
.shop_infomation_detail p{
  position:relative;
  padding-left:2em;
}
.shop_infomation_detail p::before{
  content:"";
  position:absolute;
  width:20px;
  height:28px;
  background: url(../images/toyosu/address_icon.png) top center no-repeat;
  top:50%;
  transform: translateY(-50%);
  left:0;
}
.shop_infomation_detail p.tel::before{
  width:30px;
  height:23px;
  background: url(../images/toyosu/tel_icon.png) top center no-repeat;
}

/* ---flow--- */
.flow{
  background-color: #fcf9ee;
  margin-top:96px;
  margin-bottom:96px;
  padding-top:96px;
  padding-bottom:96px;
}
.flow h2{
  text-align: left;
  font-size:4.8rem;
  font-weight:bold;
  width:100%;
  max-width: 1280px;
  margin:0 auto;
  margin-bottom:36px;
}
.flow h2 span{
  font-size:2.4rem;
  font-family: var(--english-font);
  display: block;
}
/* 全体のコンテナ */
.flow-section {
  position: relative;
  max-width: 900px; /* 最大幅を設定 */
  margin: 0 auto;
  padding: 50px 0;
  display: flex; /* 各ステップを縦に並べる */
  flex-direction: column;
}

/* 縦の点線を作成 */
.flow-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 100px; /* STEP番号の位置に合わせる */
  width: 2px;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    #ddd,
    #ddd 4px,
    transparent 4px,
    transparent 10px
  );
}

/* 各ステップのコンテナ */
/* .flow-step {
  display: flex; 
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
} */
.flow-step {
  position:relative;
  height:210px;
  width:100%;
  max-width: 1080px;
  margin:0 auto;
}
/* STEP番号のスタイル */
.flow-number-container {
  flex-shrink: 0; /* 幅を固定 */
  width: 100px;
  position: relative;
  z-index: 10;
}

.flow-number {
  position:relative;
  background-color: #dfb843; /* 背景色 */
  color: #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 50px;
  white-space: nowrap;
  font-size:3.6rem;
  align-items: center;
  height:100px;
  width:100px;
  padding-top:20px;
  line-height: 1.2;
}
.flow-number span{
  font-size:1.6rem;
  display: block;
}
.flow-number.line::after{
  content:"";
  position:absolute;
  width:2px;
  height:250px;
  left:50%;
  transform: translateX(-50%);
  bottom:-200px;
  background-color: #dfb843; /* 背景色 */
  z-index: 0;
}
/* コンテンツ部分のコンテナ */
.flow-content-container {
  display: flex; /* テキストと画像を横に並べる */
  width:100%;
  align-items: flex-start;
  height:100%;
  position:absolute;
  top:0;
  left:130px;
}

.flow-text {
  width:calc(100% - 350px);
  padding:0 30px;
}

.flow-text h3 {
  font-size: 3rem;
  color: #333;
  font-weight: var(--font-bold);
}

.flow-text p {
  font-size: 1.6rem;
  color: #666;
  margin-top: 22px;
}

.flow-image {
  flex-shrink: 0; /* 画像の幅を固定 */
  width: 300px;
}

.flow-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  display: block;
}
