@charset "utf-8";
.formHead__text {
    margin: 0 auto 5rem;
}
.formHead__text p {
    font-size: 1.8rem;
    display: block;
    line-height: 2;
    text-align: left;
}
.tel {

}
.tel {
  position: relative;
  color: #4d4443;
  line-height: 1;
}
.content {
  max-width: 866px;
  margin: 0 auto;
  color: #4d4443;
  font-size: 2.2rem;
  letter-spacing: .01rem;
}
.center {
    text-align: center!important;
    margin: 0 auto;
}
.resBoxWrap {
    display: flex;
    margin-bottom: 5rem;
    justify-content: space-between;
}
.resBox {
    border: 2px solid #a09484;
    padding: 30px 20px;
    width: 48%;
    margin: 0 1%;
    border-radius: 5px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}
.resBoxTable {
    border: none;
    border-top: 1px solid #817362;
    border-left: 1px solid #817362;
    font-size: 65%;
    width: 100%!important;
}
.resBoxTable th {
    border: none;
    border-right: 1px solid #817362;
    border-bottom: 1px solid #817362;
    vertical-align: middle;
    padding: 5px;
    white-space: nowrap;
    background: #f6f6f6;
}
.resBoxTable td {
    border: none;
    border-right: 1px solid #817362;
    border-bottom: 1px solid #817362;
    vertical-align: middle;
    padding: 5px;
    line-height: 1.5;
}
.resName {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 500;
    color: #4d4443;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.resTxt {
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
    background: #a09484;
    color: #fff;
    padding: 10px 0;
    width: calc(100% + 40px);
    margin-left: -20px;
    position: relative;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.resTxt:before {
    content: "▼";
    color:#a09484;
    font-size: 10px;
    bottom: -8px;
    left: 50%;
    margin-left: -5px;
    position: absolute;
}

.btnRes {
    text-align: center;
    margin: 0 auto 30px;
    max-width: 280px;
}
.btnRes a {
    display: block;
    padding: 12px 20px;
    background-color: #5e534a;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btnRes a:hover {
    opacity: 0.9;
}
.resFormWrap {
    background: #F9F7F2;
    padding: 20px;
    border-radius: 5px;
}
.pageTitle-b__text {
    line-height: 1.3!important;
}
.pageTitle-b__text span {
    font-size: 65%;
}
.p-breadcrumb {
    text-align: left;
}

.pageTitleAttension {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #e60012;
    text-align: center;
}

.storeImageWrapper {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
    height: 300px; /* 固定の高さを設定 */
}

.introImage {
    width: 100%;
    height: 240px; /* 画像の高さを固定 */
    object-fit: cover; /* 画像のアスペクト比を保持しつつ、指定したボックスを埋める */
    object-position: center; /* 画像の中央を表示 */
    transition: transform 0.3s ease;
}

.storeImageWrapper:hover .introImage {
    transform: scale(1.05);
}

@media screen and (max-width: 768px) {  
    .resFormWrap {
        padding: 5px 10px;
        border-radius: 0;
    }
    .p-breadcrumb {
        display: none;   
    }
    .content {
        position: relative;
        text-align: left;
        padding-top: 55px;
        overflow: hidden;
    }
    .pageTitle-b,
    .pageTitle {
        margin: 5rem 0 3.8rem;
        padding: 0;
    } 
    .pageTitle-b__text,
    .pageTitle__text {
        font-size: 2.3rem;
        line-height: 1.5;
        font-weight: normal;
    }
    .page-form p {
        font-size: 1.6rem;
        line-height: 1.8;
    }
    .formHead__text {
        margin: 0 auto 3rem;
    }
    .center {
        text-align: center!important;
    }
    .resBoxWrap {
        display: block;
    }
    .resBox {
        width: calc(100% - 2rem);
        border: none;
        margin-bottom: 40px;
    }
    .resName {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    .resTxt {
        font-size: 13px;
        margin-bottom: 20px;
        padding: 5px 0;
        width: calc(100% + 30px);
        margin-left: -15px;
    }    
    .resTxt:before {
        bottom: -10px;
    }    
    .btnRes {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .btnRes a {
        font-size: 1.6rem;
        padding: 10px 20px;
    }
    .resBoxTable {
        font-size: 55%;   
        width: 100%;   
        box-sizing: border-box;
    }    
    .resBoxTable tr {
        display: block;
        width: 100%;   
        box-sizing: border-box;
    }    
    .resBoxTable th {
        display: block;
        width: 100%;   
        box-sizing: border-box;
    }
    .resBoxTable td {
        display: block;
        width: 100%;   
        box-sizing: border-box;
    }
    
    .pageTitleAttension {
        font-size: 1.2rem;
    }
    
    .storeImageWrapper {
        width: 100vw;
        margin: 0 calc(50% - 50vw) 20px;
        height: auto; /* モバイルでは高さを自動に */
    }
    
    .introImage {
        height: auto; /* モバイルでは高さを自動に */
    }
    
    .resMenu {
        padding: 0 0 0 20px;
    }
    
    .resMenu li.course-item {
        width: 100%;
        padding: 5px 0;
        font-size: 1.3rem;
    }
    
    .resMenu.few-items li.course-item {
        width: 100%;
    }
    
    .reservation-title {
        font-size: 1.4rem;
    }
    
    .reservation-button a {
        font-size: 1.4rem;
        padding: 8px 12px;
    }
    
    .reservation-tel a {
        font-size: 1.6rem;
        padding-left: 22px;
    }
    
    .reservation-tel a:before {
        width: 18px;
        height: 18px;
    }
    .store-cards {
        gap: 20px !important;
        flex-direction: column !important;
    }
    
    .store-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto;
        padding: 15px;
    }
    
    .store-info {
        padding: 15px;
    }
    
    .info-title {
        font-size: 1.1rem;
    }
    
    .info-list li, 
    .info-section p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* 営業時間、電話、住所の表示を調整 */
    .info-section:nth-of-type(2) p,
    .info-section:nth-of-type(3) p,
    .info-section:nth-of-type(4) p {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    .store-button-wrapper {
        padding: 0 15px 20px;
    }
}

.resMenu-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.resMenu {
    margin: 0 0 30px;
    padding: 0 0 0 20px;
    list-style: disc;
    display: block;
}

.resMenu li.course-item {
    width: 100%;
    padding: 5px 0;
    font-size: 1.4rem;
    line-height: 1.5;
    position: relative;
    background: none;
    border: none;
    transition: all 0.2s ease;
}

.resMenu li.course-item:hover {
    color: #a09484;
    transform: none;
    box-shadow: none;
}

.resMenu li.course-item:before {
    display: none;
}

.resMenu li.course-item.one {
    width: 100%;
}

.resMenu.few-items {
    justify-content: flex-start;
}

.resMenu.few-items li.course-item {
    width: 100%;
    margin-bottom: 5px;
    font-size: 1.4rem;
    padding: 5px 0;
}

.resTtl {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* 新しい予約セクションのスタイル */
.reservation-section {
    margin-bottom: 20px;
}

.reservation-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
    text-align: center;
    color: #4d4443;
}

.reservation-button {
    text-align: center;
}

.reservation-button a {
    display: block;
    padding: 10px 15px;
    background-color: #6e645a;
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: normal;
    letter-spacing: 0.05em;
}

.reservation-button a:hover {
    opacity: 0.8;
}

.reservation-tel {
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px;
}

.reservation-tel a {
    display: block;
    font-size: 1.8rem;
    color: #4d4443;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-left: 25px;
}

.reservation-tel a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url('/img/about/icon-feedial.svg') no-repeat center;
    background-size: contain;
}

/* 新しいシンプルなデザイン */
.store-cards {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    padding: 20px 0 !important;
}

.store-card {
    width: 100% !important;
    background-color: #fff !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    padding: 20px !important;
    margin: 0 auto !important;
}

.store-title {
    text-align: center;
    padding: 20px 0;
    font-size: 1.8rem;
    font-weight: 500;
    margin: 0;
    color: #333;
}

.store-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.store-card:hover .store-image img {
    transform: scale(1.05);
}

.store-info {
    padding: 20px;
}

.info-section {
    margin-bottom: 15px;
}

.info-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 0 5px 0;
    color: #333;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 3px 0;
    font-size: 1rem;
}

.info-section p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.inbound-button-wrapper {
    padding-top: 32px;
    text-align: center;
}

.inbound-button-label-s {
    font-size: 1rem;
    margin-bottom: 18px;
    color: #6e645a;
    transition: 0.2s ease;
}

.inbound-button-label {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #6e645a;
    transition: 0.2s ease;
}

.inbound-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6E645A;
    width: 100%;
    max-width: 350px;
    border: 1.6px solid #6E645A;
    border-bottom: 3px solid #6E645A;
    background-color: #EEEBE4;
    padding: 16px 24px;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: 0.2s ease;
}

.inbound-button:hover {
    color: #fff;
    opacity: 1;
    border-bottom: 2px solid #4E4443;
    background-color: #6E645A;
}

.store-button-wrapper {
    padding: 0 20px 25px;
    text-align: center;
}

.store-button-label {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #666;
}

.store-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #6e645a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.2s ease;
}

.store-button:hover {
    opacity: 0.8;
}

.button-icon {
    margin-right: 8px;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 992px) {
    .store-card {
        width: 100%;
        max-width: 580px;
    }
}

@media screen and (max-width: 768px) {
    .store-cards {
        gap: 20px;
    }
    
    .store-card {
        width: 100%;
        max-width: 100%;
    }
    
    .store-title {
        font-size: 1.5rem;
        padding: 15px 0;
    }
    
    .store-image {
        height: 220px;
    }
    
    .store-info {
        padding: 15px;
    }
    
    .info-title {
        font-size: 1.1rem;
    }
    
    .info-list li, 
    .info-section p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* 営業時間、電話、住所の表示を調整 */
    .info-section:nth-of-type(2) p,
    .info-section:nth-of-type(3) p,
    .info-section:nth-of-type(4) p {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    .store-button-wrapper {
        padding: 0 15px 20px;
    }
    
    .store-button-label {
        font-size: 0.95rem;
    }
    
    .store-button {
        font-size: 1rem;
        padding: 8px 15px;
    }
}

.info-list.course-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

.info-list.course-list li {
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.store-tel a {
    color: #6e645a;
    font-weight: 500;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .info-list.course-list li {
        font-size: 0.85rem;
        padding: 4px 8px;
    }
    
    .store-tel a {
        font-size: 1rem;
    }
    .store-tel a:before {
        width: 16px;
        height: 16px;
    }

    .inbound-button {
        width: 100%;
    }
}