/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans JP", sans-serif, 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.txtc {
    text-align: center;
}
.s1 {
    font-family: "Noto Serif JP", serif;
    font-size: 5rem;
    color: #1b8a83;
    line-height: 120%;
}
.s2 {
    font-family: "Noto Serif JP", serif;
    font-size: 4rem;
    color: #1b8a83;
    line-height: 120%;
}
.s3 {
    font-family: "Noto Serif JP", serif;
    font-size: 2.5rem;
}
.s4 {
    color: #1b8a83;
    font-size: 1.25rem;
}
.s5 {
    font-weight: bold;
}
.s_red {
    color:#e53935;
    font-size: 18px;
}
.s_big {
    color: #1b8a83;
    font-size: 2.5rem !important;
}
.s_middle {
    color: #1b8a83;
    font-size: 2rem !important;
}
.mb20 {
    margin-bottom: 20px !important;
}
@media (max-width: 640px) {
    .s1 {
        font-size: 2.5rem;
        line-height: 120%;
    }
    .s2 {
        font-size: 1.75rem;
        line-height: 120%;
    }
    .s3 {
        font-size: 1.25rem;
    }
    .s4 {
        font-size: 1rem;
    }
    .mb0 {
        margin-bottom: 0 !important;
    }
}
@media(max-width:1172px){
    .pc2 {
        display: none !important;
    }
}
@media(max-width:640px){
    .pc {
        display: none !important;
    }
}
@media(min-width:640px){
    .sp {
        display: none !important;
    }
}
@media(max-width:1172px){
    .pc_head {
        display: none !important;
    }
}
/* コンテナ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container_2 {
    max-width: 1000px;
    margin: 0;
    padding: 0;
}

/* ボタン */
.btn {
    display: inline-block;
    padding: 15px 70px;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 28px;
}

.btn-primary {
    background: linear-gradient(135deg, #1b8a83 0%, #50cbc3 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(27, 138, 131, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #50cbc3 0%, #1b8a83 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(27, 138, 131, 0.3);
}

.btn-secondary {
    background: #fff;
    color: #1b8a83;
    border: 2px solid #1b8a83;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(27, 138, 131, 0.3);
}

.btn-secondary:hover {
    background: #1b8a83;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(27, 138, 131, 0.3);
}

.btn-login {
    background: #1b8a83;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
}


/* ヘッダー */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
    padding: 0;
}
/* 非表示状態 */
.header.is-hidden {
    transform: translateY(-100%);
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 10px 0;
}
.nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 0 20px 0 0;
}
.nav a {
    color: #1b8a83;
    font-weight: 500;
    transition: color 0.3s;
}
.nav a:hover {
    font-weight: 500;
    transition: color 0.3s;
    text-decoration: underline;
}
/* メインビジュアル */
.hero {
    padding: 80px 0;
    text-align: center;
    background: url("../img/img_lp-mc_top_01.png") top right no-repeat #eaf9f9;
    background-size: contain;
}
@media (max-width: 1172px) {
    .header-content {
        display: inline;
    }
    .nav {
        position: relative;
    }
    .nav ul {
        position: fixed;
        bottom: 0;
        width: 100%;
        gap: 0;
        background-color: #fff;
        display: flex;
        align-items: normal;
        padding: 0;
    }
    .nav ul li {
        width: 50%;
        display: block;
        text-align: center;
        padding: 1.2rem 0;
        line-height: 120%;
    }
    .tel-head {
        padding: 1.2rem 0 1.2rem 0;
        align-items: normal;
    }
    .reserve-head {
        color: #fff;
        background-color: #1b8a83;
        font-size: 1.5rem;
    }
}
.logo {
    padding: 20px 0 10px 20px;
    display: flex;
    justify-content: center; /* 横中央 */
    align-items: center;     /* 縦中央（不要なら消してOK） */
    text-align: center;
}
.logo p {
    font-size: 20px;
    width: 300px;
    color: #1b8a83;
    font-weight: bold;
    text-align: center;
}

@media (max-width: 640px) {
.hero {
    padding: 40px 0;
    text-align: center;
    background: url("../img/img_lp-mc_top_01.png") top right no-repeat #eaf9f9;
    background-size: cover;
}
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 26px;
}
.logo {
    padding: 12px 0 7px 0;
}
.logo p {
    font-size: 20px;
    width: 60%;
    color: #1b8a83;
    font-weight: bold;
    text-align: center;
}
}

.hero-subtitle {
    display: inline-block;
    background: #666;
    color: #fff;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 20px;
}
@media (max-width: 640px) {
    .hero-subtitle {
        margin-bottom: 10px;
        padding: 6px 12px;
        font-size: 14px;
    }
}

.hero-title {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: bold;
}

.hero-description {
    font-size: 16px;
    color: #333;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* セクションタイトル */
.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

/* お悩みセクション */
.concerns {
    padding: 80px 0;
    background: #fff;
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 25px 0 50px 0;
}

.concerns-grid_2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.concern-item {
    text-align: center;
    padding: 30px;
    background: #f4f4f4;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}
.concern-item .ribon {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 24px;
    background-color: #eaf9f9;
    color: rgb(27, 138, 131);
    padding: 1rem 2rem;
}

.ribon_headline {
    font-size: 24px;
    background: linear-gradient(to right, #fff 0%, #1b8a83 20%, #1b8a83 80%, #fff 100%);
    color: #fff;
    padding: 1rem 2rem;
    text-align: center;
}
.concern-item h3 {
    font-weight: bold;
}
.concern-icon {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.concern-icon img {
    width: 200px;
    height: 200px;
}

.concern-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
}

.concern-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    padding: 0 0 0.5rem 0;
}

/* 解決セクション */
.solution {
    background: linear-gradient(135deg, #1b8a83 0%, #50cbc3 100%);
    padding: 60px 0;
    text-align: center;
}

.solution-title {
    font-size: 36px;
    color: #fff;
    font-weight: bold;
    line-height: 1.6;
}

/* サービス内容 */
.service {
    padding: 80px 0;
    background: #fafafa;
}

.service_2 {
    padding: 80px 0 0 0;
    background: #fafafa;
}

.service-content {
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.service-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin: 0 0 20px 0;
}

.service-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.service-box p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #666;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    background-color: #333333;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin: 0 0 0.25rem 0;
    display: inline-flex;
}

.service-options,
.service-note {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-options h4,
.service-note h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.option-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #1b8a83;
}

.option-item label {
    font-size: 15px;
    color: #333;
}

.service-note p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

/* 実績手順 */
.procedure {
    padding: 80px 0;
    background: #fff;
}

.procedure-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.step-item {
    text-align: center;
    padding: 40px 30px;
    background: #fafafa;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    line-height: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, #1b8a83 0%, #50cbc3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    position: absolute;
    top: 0;
    left: 0;
    border-bottom-right-radius: 20px;
}
.step-number p {
    color: #fff !important;
}
.step-number span {
    font-size: 32px;
    line-height: 100%;
    font-weight: bold;
    color: #fff;
}

.step-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.step-item p {
    font-size: 16px;
    color: #666;
}

.procedure-cta {
    text-align: center;
    margin-top: 50px;
}

/* お問い合わせ */
.contact {
    padding: 80px 0;
    background: #fafafa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-method {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1b8a83 0%, #50cbc3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    vertical-align: middle;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.phone-number {
    font-size: 24px;
    font-weight: bold;
    color: #1b8a83;
    margin-bottom: 5px;
}

.email {
    font-size: 18px;
    color: #1b8a83;
    margin-bottom: 5px;
}

.contact-hours {
    font-size: 16px;
    color: #666;
}

/* フォーム */
.contact-form form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.required {
    color: #e53935;
    font-size: 12px;
    margin-left: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1b8a83;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    margin-top: 10px;
}

/* フッター */
.footer {
    background: url("../img/foot_bg.png") top right no-repeat #eaf9f9;
    background-size: contain;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-company h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1b8a83;
}

.footer-company p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #1b8a83;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #50cbc3;
}

.footer-bottom {
    border-top: 1px solid #fff;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 10px;
    color: #333;
}

/* レスポンシブ */
@media (max-width: 968px) {
    .hero-title {
        font-size: 32px;
    }

    .concerns-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .concerns-grid_2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-content {
        grid-template-columns: 1fr;
    }

    .procedure-steps {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .footer {
        background-size: cover;
    }
    .form-group {
        margin-bottom: 10px;
    }
    .contact-form form {
        background: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .concerns-grid {
        grid-template-columns: 1fr;
    }

    .concerns-grid_2 {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .section-title {
        font-size: 28px;
    }
    .footer-company h2 {
        font-size: 20px;
        margin-bottom: 15px;
        color: #1b8a83;
        padding: 0 1rem;
    }
    .footer-company h2 {
        width: 60%;
    }
    .footer-company p {
        font-size: 14px;
        line-height: 1.8;
        color: #333;
        padding: 0 1rem;
    }
    .footer-links ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0 1rem;
    }
}
.tel-head a {
    color: #1b8a83 !important;
    font-size: 2rem;
}
.tel-head a:hover {
    text-decoration: none;
}
.sv_lcont {
    width: 80%;
    float: left;
}
.sv_rcont {
    width: 15%;
    float: left;
}
.sv_lcont img {
    width: 300px;
}
.sv_rcont img {
    width: 300px;
}
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
@media (max-width: 900px) {
    .service-box {
        position: relative;
    }
    .sv_lcont {
        width: 100%;
        z-index: 10;
    }
    .sv_rcont {
        position: absolute;
        right: 1rem;
        bottom: 0;
        z-index: 0;
    }
}
@media (max-width: 640px) {
    .concern-item .ribon {
        position: absolute;
        top: 0;
        left: 0;
        font-size: 18px;
        background-color: #eaf9f9;
        color: rgb(27, 138, 131);
        padding: 1rem 1.5rem;
    }
    .service-box {
        position: relative;
    }
    .sv_lcont {
        width: 100%;
        z-index: 10;
    }
    .sv_rcont {
        position: absolute;
        right: 1rem;
        bottom: 0;
        z-index: 0;
    }
    .solution {
        background: linear-gradient(135deg, #1b8a83 0%, #50cbc3 100%);
        padding: 30px 0;
        text-align: center;
    }
    .solution-title {
        font-size: 28px;
        color: #fff;
        font-weight: bold;
        line-height: 1.6;
    }
    .concerns {
        padding: 50px 0;
        background: #fff;
    }
    .concern-item {
        text-align: center;
        padding: 20px 30px;
        background: #f4f4f4;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    .service {
        padding: 40px 0;
        background: #fafafa;
    }
    .service_2 {
        padding: 40px 0 0 0;
        background: #fafafa;
    }
    .service-content {
        grid-template-columns: 2fr 1fr;
        gap: 40px;
        margin-top: 0;
    }
    .procedure {
        padding: 50px 0;
        background: #fff;
    }
    .procedure-steps {
        margin-top: 0;
        gap: 20px;
    }
    .procedure-cta {
        text-align: center;
        margin-top: 30px;
    }
    .section-subtitle {
        text-align: center;
        font-size: 16px;
        color: #666;
        margin-bottom: 30px;
    }
    .contact {
        padding: 40px 0 40px 0;
        background: #fafafa;
    }
    .contact-content {
        gap: 40px;
        margin-top: 0;
    }
}
.all-overview {
    padding: 0 0 80px 0;
}
.gr-overview {
    margin: 35px auto 0 auto;
    text-align: center;
}
.gr-overview th {
    font-size: 16px;
    width: 100%;
    padding: 1rem 4rem;
    background-color: #f4f4f4;
}
.gr-overview td {
    font-size: 16px;
    width: 100%;
    padding: 1rem 4rem;
    line-height: 180%;
}
.reserve-head a {
    color: #fff;
}
.reserve-head a:hover {
    color: #fff;
    text-decoration: none;
}
.map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* モダンブラウザ向け */
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.headline_large {
    text-align: center;
    color: #000;
    padding: 0.75rem 1rem;
    background-color: #ffe400;
}
.imgloop {
  overflow: hidden;
  width: 100%;
}

.track {
  display: flex;
  width: max-content;
  animation: imgloop 30s linear infinite;
  transform: translateZ(0); /* 念のため */
}

/* 2セット完全一致 */
.track__set {
  display: flex;
}

.track img {
  width: 200px;
  flex-shrink: 0;
  display: block;
}

@keyframes imgloop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-1200px); /* ← 1セット分を正確に指定 */
  }
}

@media (prefers-reduced-motion: reduce){
  .track { animation: none; }
}

@media (max-width: 640px) {
    .gr-overview {
        margin: 0 auto 0 auto;
    }
    .gr-overview th {
        width: 100%;
        padding: 1rem 1rem;
        background-color: #f4f4f4;
    }
    .gr-overview td {
        width: 100%;
        padding: 1rem 1rem;
        line-height: 180%;
    }
    .gr-overview td img {
        width: 200px !important;
    }
    .all-overview {
        padding: 0 0 40px 0;
    }
    .concern-icon {
        width: 150px;
        height: 150px;
        margin: 0 auto 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .concern-icon img {
        width: 150px;
        height: 150px;
    }
    .headline_large {
        font-size: 1.25rem;
        padding: 1rem 1.25rem;
    }
    .track img {
      width: 150px;
      flex-shrink: 0;
      display: block;
    }
    .header-content {
        display: inline;
    }
    .nav {
        position: relative;
    }
    .nav ul {
        position: fixed;
        bottom: 0;
        width: 100%;
        gap: 0;
        background-color: #fff;
        display: flex;
        align-items: normal;
        padding: 1rem 0 0.5rem 0.75rem;
    }
    .nav ul li {
        width: auto;
        display: block;
        text-align: center;
        padding: 0;
        line-height: 100%;
    }
    .tel-head {
        padding: 0 0 0;
        align-items: normal;
    }
    .reserve-head {
        padding: 0;
        color: #fff;
        background-color: #fff;
    }
}

/* ===== レイアウト ===== */
.medal-wrapper {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  margin: 40px auto;
  flex-wrap: wrap;
}

/* ===== メダル外枠 ===== */
.medal {
  width: 300px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  padding: 0;
  box-shadow:
    20px 20px 40px rgba(27,138,131,.25),
    inset 0 0 18px rgba(255,255,255,.25);
  transition: transform .35s ease, box-shadow .35s ease;
}
/*
.medal:hover {
  transform: translateY(-6px);
  box-shadow:
    40px 40px 80px rgba(27,138,131,.25),
    inset 0 0 18px rgba(255,255,255,.25);
}
*/

/* ===== 内側 ===== */
.medal-core {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at top, #eaf9f9, #eaf9f9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 28px 22px;
  box-sizing: border-box;
}

/* ===== カラー ===== 
.gold {
  background: linear-gradient(145deg, #1b8a83, #50cbc3);
}
.silver {
  background: linear-gradient(145deg, #bfc5cc, #f3f4f6);
}
.bronze {
  background: linear-gradient(145deg, #b87333, #e4b07a);
}
*/
/* ===== テキスト ===== */
.medal-title {
  font-size: 28px;
  letter-spacing: .1em;
  font-weight: 600;
  color: #555;
}

.medal-value {
  font-size: 68px;
  font-weight: 800;
  margin: 0 0 10px 0;
  line-height: 1;
  color: #1b8a83;
}

.medal-value span {
  font-size: 28px;
  margin-left: 2px;
}

.medal-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}
.head-catch {
    background-color: #333;
    color: #fff;
    padding: 0.5rem 1rem;
    line-height: 120%;
    font-size: 1rem;
    text-align: center;
}
/* ===== スマホ最適化 ===== */
@media (max-width: 768px) {
    .medal-wrapper {
        gap: 24px;
    }

    .medal {
        width: 80%;
    }

    .medal-title {
        font-size: 28px;
        letter-spacing: .1em;
        font-weight: 600;
        color: #555;
    }

    .medal-value {
        font-size: 68px;
        font-weight: 800;
        margin: 0 0 10px 0;
        line-height: 1;
        color: #1b8a83;
    }

    .medal-value span {
        font-size: 28px;
        margin-left: 2px;
    }

    .medal-desc {
        font-size: 16px;
        line-height: 1.6;
        color: #444;
    }
    .head-catch {
        padding: 0.5rem 1rem;
        line-height: 120%;
        font-size: 0.75rem;
        text-align: center;
    }
}
