@charset "UTF-8";
/* =========================================================
   えひめスクラムプロジェクト  COMMON
   ========================================================= */

/* ---------- Reset (himeboss より) ---------- */
*,
::before,
::after {
    box-sizing: border-box;
    border-style: solid;
    border-width: 0;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    font-feature-settings: "palt";
}

body {
    margin: 0;
}

main {
    display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

dt {
    font-weight: bold;
}

dd {
    margin-left: 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    border-top-width: 1px;
    margin: 0;
    clear: both;
    color: inherit;
}

pre {
    font-family: monospace, monospace;
    font-size: inherit;
}

address {
    font-style: inherit;
}

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

abbr[title] {
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: inherit;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
    vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
    -webkit-appearance: none;
    appearance: none;
    vertical-align: middle;
    color: inherit;
    font: inherit;
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    text-align: inherit;
    text-transform: inherit;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    cursor: pointer;
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
    cursor: default;
}

:-moz-focusring {
    outline: auto;
}

select:disabled {
    opacity: inherit;
}

option {
    padding: 0;
}

fieldset {
    margin: 0;
    padding: 0;
    min-width: 0;
}

legend {
    padding: 0;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

[type="number"] {
    -moz-appearance: textfield;
}

label[for] {
    cursor: pointer;
}

details {
    display: block;
}

summary {
    display: list-item;
}

[contenteditable]:focus {
    outline: auto;
}

table {
    border-color: inherit;
    border-collapse: collapse;
}

caption {
    text-align: left;
}

td,
th {
    vertical-align: top;
    padding: 0;
}

th {
    text-align: left;
    font-weight: bold;
}
/* リセット　ここまで */

/* ---------- Base ---------- */
body {
    font-family: "Zen Maru Gothic", sans-serif;
    color: #333333;
    background-color: #fff9ee;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

/* ---------- Layout helpers ---------- */
.site {
    margin: 0 auto;
    background-color: #fff9ee;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1168px;
    margin: 0 auto;
    padding: 0 24px;
}

.placeholder {
    background-color: #ededed;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52' viewBox='0 0 24 24' fill='none' stroke='%23c9c9c9' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.7' cy='8.7' r='1.6'/%3E%3Cpath d='M21 15.5l-5-5L5 21'/%3E%3C/svg%3E");
    background-position: center;
    background-size: 52px;
    background-repeat: no-repeat;
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
    position: relative;
    height: 100px;
    z-index: 10;
}
/* 下層ページ（body.is-top でない場合）はオリジナルヘッダーを非表示にし、
   固定ヘッダー (.header--fixed) のみを共通ヘッダーとして使用 */
body:not(.is-top) .header:not(.header--fixed) {
    display: none;
}
body:not(.is-top) main {
    padding-top: 100px;
}
@media screen and (max-width: 1024px) {
    body:not(.is-top) main {
        padding-top: 72px;
    }
}
@media screen and (max-width: 680px) {
    body:not(.is-top) main {
        padding-top: 64px;
    }
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    max-width: 1195px;
    width: 90%;
    margin: 0 auto;
    height: 100%;
}

.header__logo {
    width: 345px;
    height: 1px;
    position: relative;
}

.header__logo img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

/* =========================================================
   FIXED HEADER (scroll fade-in on top page, always-on sub pages)
   ========================================================= */
.header--fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-color: #ffffff;
    /* box-shadow: 0 2px 10px rgba(51, 51, 51, 0.06); */
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        visibility 0.4s;
    pointer-events: none;
}
.header--fixed.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.header--fixed .header__inner {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    padding: 0 48px 0 24px;
    max-width: 1440px;
}
.header--fixed .header__logo {
    width: 312px;
    height: auto;
    flex-shrink: 0;
}
.header--fixed .header__logo img {
    position: static;
    width: 100%;
    height: auto;
}

.header__nav ul {
    display: flex;
    align-items: center;
}
.header__nav li {
    position: relative;
}
.header__nav li + li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    background-color: #333333;
    border-radius: 50%;
    transform: translateY(-50%);
}
.header__nav a {
    display: block;
    padding: 6px 20px;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    transition: color 0.2s;
}
.header__nav a:hover {
    color: #ffba3f;
}

/* hamburger (mobile) */
.nav-toggle {
    display: none;
}
.nav-burger {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    position: relative;
    z-index: 70;
}
.nav-burger span {
    display: block;
    height: 3px;
    background-color: #333333;
    border-radius: 3px;
    transition: 0.25s;
}

/* SNS rail (right edge) */
.sns-rail {
    position: fixed;
    top: 125px;
    right: 0;
    width: 70px;
    background-color: #ffba3f;
    border-radius: 10px 0 0 10px;
    padding: 10px 0 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    z-index: 40;
}
.sns-rail img {
    width: 26px;
    height: auto;
}
.sns-rail .sns-rail__sound {
    width: 30px;
    display: block;
    margin: 0 auto;
}
.sns-rail .sound__btn {
    width: 100%;
    padding: 15px 0 0;
    cursor: pointer;
}
.sns-rail__txt {
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    display: block;
    margin-top: 4px;
}
.sns-rail__div {
    width: 38px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.6);
    display: block;
    margin: 15px auto 0;
}
.sns-rail a {
    transition: all 0.3s;
}
.sns-rail a:hover {
    opacity: 0.6;
}

/* Shared drawer (visible on tablet/mobile only) */
.nav-drawer {
    display: none;
}
.nav-drawer__close {
    display: none;
}

/* SNS section inside hamburger menu (visible on tablet/mobile only) */
.nav-sns {
    display: none;
}
.nav-sns__label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-indent: 1px;
    color: #575757;
    margin-bottom: 14px;
}
.nav-sns__links {
    display: flex;
    align-items: center;
    gap: 16px;
}
.nav-sns__links a {
    display: block;
    transition: opacity 0.2s;
}
.nav-sns__links a:hover {
    opacity: 0.7;
}
.nav-sns__links img {
    width: 36px;
    height: 36px;
}

/* =========================================================
   SECTION HEADING (共通)
   ========================================================= */
.sec-head__en {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    color: #575757;
    letter-spacing: 1px;
    text-indent: 1px;
}
.sec-head__en::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #575757;
    border-radius: 50%;
}
.sec-head__ja {
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    text-indent: 2px;
    margin-top: 20px;
}

/* =========================================================
   PAGE HEAD (下層ページ共通: パンくず + 見出し + イラスト)
   ========================================================= */
.page-head {
    padding: 15px 0 20px;
}
.pan__list {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 700;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}
.pan__list .pan__item {
    position: relative;
}
.pan__list .pan__item + .pan__item::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background-image: url(../img/pan_arrow.png);
    background-size: 6px;
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
}
.pan__list .pan__item a {
    white-space: nowrap;
    display: block;
}
.pan__list .pan__item p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.head__content {
    max-width: 1168px;
    width: 100%;
    height: 170px;
    margin: 0 auto;
    padding: 30px 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.head__content .sec-head__en {
    gap: 40px;
    line-height: 1.46;
}
.head__content .sec-head__ja {
    margin-top: 16px;
    line-height: 1.4375;
}

/* =========================================================
   CARD (記事 / イベント 共通)
   ========================================================= */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.card__thumb {
    width: 100%;
    aspect-ratio: 346 / 250;
    border-radius: 10px;
    overflow: hidden;
}
.card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}
a.card:hover .card__thumb img {
    transform: scale(1.1);
}
.card__content {
    width: calc(100% - 26px);
    margin: 0 auto;
}
.card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    line-height: 1;
    padding: 0 12px;
    height: 28px;
}
.card__tag01 {
    background-color: #ffba3f;
}
.card__tag02 {
    background-color: #ffffff;
    border: 1.5px solid #333333;
}
.card__tag03 {
    background-color: #ffe600;
}
.card__tag04 {
    background-color: #c9c9c9;
    color: #ffffff;
}
.card__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 1px;
    text-indent: 1px;
    margin-top: 8px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.card hr {
    border: 0;
    border-top: 1.5px dashed #e3e3e3;
}
.cg--column .card hr {
    margin-top: 8px;
    border-top: dashed 1.5px #e3e3e3;
}
.card__meta {
    font-size: 14px;
    line-height: 2;
    margin-top: 8px;
    font-weight: 500;
    text-align: right;
}
.card__date {
    display: block;
    font-size: 14px;
    color: #575757;
    font-weight: 500;
    letter-spacing: 1px;
    text-indent: 1px;
}
.cg--column .card__date {
    text-align: right;
}
.cg--event .card__date {
    line-height: 1;
    margin: 14px 0 10px;
}

/* "すべて見る" button */
.btn-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: max-content;
    min-width: 320px;
    height: 48px;
    margin: 44px auto 0;
    padding: 0 20px;
    background-color: #ffba3f;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-indent: 1px;
    border-radius: 10px;
    transition: opacity 0.2s;
    position: relative;
}
.btn-all:hover {
    opacity: 0.6;
}
.btn-all img {
    width: 9px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

/* category filter */
.cat-filter {
    margin-bottom: 26px;
    margin-top: 30px;
}
.cat-filter__label {
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}
.cat-filter__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 124px;
    height: 32px;
    gap: 6px;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    background-color: white;
    border: solid 1.5px #d9d9d9;
    position: relative;
    border-radius: 2px;
    padding: 0 16px;
}
.tag::after {
    content: "";
    width: 7px;
    height: 7px;
    position: absolute;
    top: 50%;
    right: 3px;
    transform: translateY(-50%);
    background-image: url(../img/polygon02.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    /* background-color: #333;
    clip-path: polygon(0 0, 100% 50%, 0 100%); */
}
.tag--active {
    background-color: #575757;
    border: solid 1.5px #575757;
    color: #ffffff;
}
.tag--active::after {
    background-image: url(../img/polygon01.svg);
}
.tag img {
    width: 7px;
    height: auto;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background-color: #c1f4ff;
    padding: 66px 0 0;
}
.footer__top {
    display: grid;
    grid-template-columns: 324fr 224fr 320fr;
    gap: 40px;
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
}
.footer__nav li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.footer__nav li::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #575757;
    border-radius: 50%;
    flex-shrink: 0;
}
.footer__nav a {
    font-size: 20px;
    font-weight: 700;
    transition: color 0.2s;
}
.footer__nav a:hover {
    color: #ffba3f;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-box {
    width: 320px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: solid 1.5px #333;
    border-radius: 8px;
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-indent: 1px;
    position: relative;
    transition: all 0.3s;
}
.contact-box:hover {
    opacity: 0.6;
}
.contact-box img {
    width: 7px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}
.sns-box {
    background-color: #ffba3f;
    border: solid 1.5px #333;
    border-radius: 8px;
    padding: 20px 28px;
    width: 320px;
}
.sns-box__ttl {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}
.sns-box__ttl::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #575757;
}
.sns-box__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sns-box__links a {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 20px;
    font-weight: 900;
    color: #575757;
    transition: all 0.3s;
}
.sns-box__links a:hover {
    opacity: 0.6;
}
.sns-box__links img {
    width: 28px;
}

.footer__bottom {
    padding: 0;
    text-align: center;
}
.footer__logo {
    width: 310px;
    height: auto;
    margin: 80px auto 0;
}

.footer__illust {
    width: 100%;
    height: 198px;
    margin: 20px auto 0;
    background-image: url(../img/footer_illust.png);
    background-size: auto 100%;
    background-position: center;
    background-repeat: repeat-x;
}

.sp_menu {
    display: none;
}

/* =========================================================
   RESPONSIVE  -- Tablet
   ========================================================= */
@media screen and (max-width: 1024px) {
    /* sns-rail: keep only sound icon, fixed top-right */
    .sns-rail {
        top: 110px;
        width: 56px;
        padding: 0;
    }
    .sns-rail .sound__btn {
        padding: 14px 0;
    }
    .sns-rail__div,
    .sns-rail > a {
        display: none;
    }

    /* show SNS section inside hamburger menu */
    .nav-sns {
        display: block;
        margin-top: 30px;
    }

    /* hamburger button visible on tablet/mobile */
    .nav-burger {
        display: flex;
    }
    /* hide burger while drawer is open — drawer has its own close button */
    .site:has(.nav-toggle:checked) .nav-burger {
        visibility: hidden;
    }

    /* hide inline nav on tablet/mobile (use shared drawer instead) */
    .header__nav {
        display: none;
    }

    /* shared drawer */
    .nav-drawer {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 380px;
        height: 100dvh;
        background-color: #fff9ee;
        padding: 100px 30px 40px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        z-index: 80;
    }
    .nav-toggle:checked ~ .nav-drawer {
        transform: translateX(0);
    }

    /* close button inside drawer */
    .nav-drawer__close {
        display: block;
        position: absolute;
        top: 28px;
        right: 28px;
        width: 32px;
        height: 32px;
        cursor: pointer;
        z-index: 2;
    }
    .nav-drawer__close span {
        display: block;
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #333333;
        border-radius: 3px;
    }
    .nav-drawer__close span:nth-child(1) {
        transform: translateY(-50%) rotate(45deg);
    }
    .nav-drawer__close span:nth-child(2) {
        transform: translateY(-50%) rotate(-45deg);
    }
    .nav-drawer ul {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    .nav-drawer li + li {
        border-top: dashed 1.5px #d9d9d9;
    }
    .nav-drawer a {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 20px 8px;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 1px;
        text-indent: 1px;
        transition: color 0.2s;
    }
    .nav-drawer > ul a::before {
        content: "";
        width: 8px;
        height: 8px;
        background-color: #ffba3f;
        border-radius: 50%;
        flex-shrink: 0;
    }
    .nav-drawer > ul a::after {
        content: "";
        margin-left: auto;
        width: 9px;
        height: 9px;
        background-image: url(../img/polygon02.svg);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center;
        transition: transform 0.2s;
        flex-shrink: 0;
    }
    .nav-drawer a:hover {
        color: #ffba3f;
    }
    .nav-drawer > ul a:hover::after {
        transform: translateX(4px);
    }

    /* dim backdrop when drawer is open */
    .site::after {
        content: "";
        position: fixed;
        inset: 0;
        background-color: rgba(51, 51, 51, 0.4);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 70;
    }
    .site:has(.nav-toggle:checked)::after {
        opacity: 1;
        pointer-events: auto;
    }

    /* SNS links inside drawer (no dot/arrow decorations) */
    .nav-sns__links a {
        padding: 0;
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
    }
    .footer__contact {
        grid-column: 1 / -1;
    }

    /* card grid: 2 columns on tablet */
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* cat-filter / tag */
    .cat-filter {
        margin-top: 24px;
        margin-bottom: 20px;
    }

    .footer__illust {
        height: 140px;
    }

    /* fixed header (tablet) */
    .header--fixed {
        height: 72px;
    }
    .header--fixed .header__inner {
        padding: 0 24px;
        align-items: center;
    }
    .header--fixed .header__logo {
        width: 240px;
    }
}

/* =========================================================
   RESPONSIVE  -- Mobile
   ========================================================= */
@media screen and (max-width: 680px) {
    body {
        line-height: 1.7;
    }
    .container {
        padding: 0 16px;
    }

    .header {
        height: 72px;
    }
    .header__inner {
        padding: 16px 0;
        align-items: flex-start;
    }
    .header__logo {
        width: 200px;
    }
    .header__logo img {
        width: 100%;
    }
    .nav-burger {
        width: 36px;
        height: 36px;
    }
    .nav-drawer {
        padding: 80px 24px 40px;
        max-width: 320px;
    }
    .nav-drawer a {
        padding: 18px 6px;
        font-size: 15px;
    }
    .nav-drawer__close {
        top: 22px;
        right: 22px;
        width: 28px;
        height: 28px;
    }
    .nav-sns__links a {
        padding: 0;
    }

    /* fixed header (mobile) */
    .header--fixed {
        height: 64px;
    }
    .header--fixed .header__inner {
        padding: 0 16px;
        align-items: center;
    }
    .header--fixed .header__logo {
        width: 180px;
    }

    /* sns-rail (mobile) */
    .sns-rail {
        top: 80px;
        width: 48px;
        padding: 0;
    }
    .sns-rail .sound__btn {
        padding: 10px 0;
    }
    .sns-rail .sns-rail__sound {
        width: 24px;
    }
    .sns-rail__txt {
        font-size: 14px;
    }

    /* page head (mobile) */
    .pan__list {
        font-size: 12px;
        gap: 20px;
    }
    .pan__list .pan__item + .pan__item::before {
        background-size: 5px;
        left: -16px;
    }

    .sec-head__en {
        font-size: 19px;
    }
    .sec-head__ja {
        font-size: 24px;
        margin-top: 14px;
    }

    .card-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    .card-grid + .card-grid {
        margin-top: 26px;
    }
    .card__title {
        font-size: 15px;
        line-height: 1.8;
    }

    .cat-filter__label {
        font-size: 14px;
    }
    .tag {
        min-width: 110px;
        height: 30px;
        font-size: 13px;
    }

    .cat-badge {
        width: 110px;
        height: 26px;
        font-size: 12px;
    }

    .btn-all {
        min-width: 0;
        max-width: 300px;
        width: 100%;
        font-size: 15px;
        margin-top: 32px;
    }

    .footer {
        padding-top: 44px;
        padding-bottom: 45px;
    }
    .footer__top {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer__nav a {
        font-size: 16px;
    }
    .contact-box,
    .sns-box {
        width: 100%;
        max-width: 300px;
    }
    .contact-box {
        font-size: 16px;
        height: 70px;
    }
    .sns-box__links a {
        font-size: 16px;
    }
    .footer__logo {
        width: 220px;
        margin-top: 50px;
    }
    .footer__illust {
        height: 100px;
    }

    .sp_menu {
        display: flex;
        width: 100%;
        height: 45px;
        border-top: solid 1.5px #333;
        border-bottom: solid 1.5px #333;
        position: fixed;
        bottom: 0;
        left: 0;
        /* background-color: #ffba3f; */
        background-color: #fff;
        z-index: 100;
    }

    .sp_menu a {
        width: calc(100% / 3);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        font-weight: 700;
    }

    .sp_menu a + a {
        border-left: solid 1.5px #333;
    }
}

/* =========================================================
   RESPONSIVE  -- Small Mobile (page head)
   ========================================================= */
@media screen and (max-width: 500px) {
    .head__content {
        height: auto;
        padding: 15px 24px 10px;
    }
    .head__content .sec-head__en {
        gap: 25px;
        font-size: 16px;
    }
    .head__content .sec-head__ja {
        font-size: 20px;
        letter-spacing: 0px;
        text-indent: 0px;
    }
}
