* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

body {
    background: var(--baseColor);
}

button {
    cursor: pointer;
}

/*------------------------------*/
/* 変数 */
/*------------------------------*/

:root {
    --accentColor: #FF9E42;
    --bluePrimary: #0E94C3;
    --blueSecondary: #005C80;
    --baseColor: #FFFFFA; 
    --textColor: #1A6784; 
    --h2FontSize: clamp(1.5rem, 1.273rem + 0.97vw, 2rem); 
    --h3FontSize: clamp(1rem, 0.773rem + 0.97vw, 1.5rem);
    --pFontSize: clamp(0.813rem, 0.727rem + 0.36vw, 1rem);
    --buttonPadding: 16px 40px;
    --notoSansJp: 'Noto Sans JP';
    --barlowCondensed: 'Barlow Condensed';
    --letterSpace: 0.08em;
}


/*------------------------------*/
/* layout */
/*------------------------------*/

.layout {
    display: grid;
    grid-template-columns: 78.75vw 1fr;
}


/*------------------------------*/
/* sidebar */
/*------------------------------*/

/* サイドバー（常時追従） */
.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, -1.25rem + 3.13vw, 2.5rem);
    padding: clamp(1.5rem, -1.5rem + 3.75vw, 3rem);
    background-color: #F2FCFF;
    overflow-y: auto;
}

/* PCヘッダー */
.header h1 a img{
    width: 100%;
    height: auto;
}

/* LINEボタン */
.button__line {
    width: 100%;
    padding-block: clamp(0.5rem, -0.5rem + 1.25vw, 1rem);
    background-color: #20D058;
    border: none;
    border-radius: 6px;
}

.button__line a {
    font-family: var(--notoSansJp);
    font-size: 16px;
    font-weight: bold;
    color: var(--baseColor);
}

/* PC nav */

.nav {
    background-color: var(--bluePrimary);
    padding: clamp(1.25rem, -1.25rem + 3.13vw, 2.5rem) clamp(1rem, -1rem + 2.5vw, 2rem);
    border-radius: 6px;
}

.nav ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav ul li a {
    color: var(--baseColor);
    font-family: var(--notoSansJp);
    font-weight: normal;
    font-size: 16px;
    letter-spacing: var(--letterSpace);
}

.btn-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-links li:first-of-type {
    display: flex;
    gap: 12px;
}

.button__blue,
.button__blue2,
.button__orange {
    width: 100%;
    padding-block: clamp(0.5rem, -0.5rem + 1.25vw, 1rem);
    font-size: 16px;
    font-family: var(--notoSansJp);
    border: none;
    border-radius: 6px;
}

.button__blue {
    background-color: var(--bluePrimary);
}

.button__blue2 {
    background-color: var(--blueSecondary);
}

.button__orange {
    background-color: var(--accentColor);
}

.btn-links button a {
    color: var(--baseColor);
}

small {
    display: flex;
    justify-content: center;
    color: var(--blueSecondary);
    font-size: 16px;
    font-family: var(--notoSansJp);
}

/* モバイルメニュー（非表示） */
.mobile-nav-toggle,
.mobile-nav {
    display: none;
}

/* ヘッダー＆ナビ（共通） */
.header {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.nav ul {
    list-style: none;
    padding: 0;
}
.nav li {
    margin: 0.5rem 0;
}
.nav a {
    text-decoration: none;
    color: #333;
}

/* --- レスポンシブ（768px以下） --- */
@media (max-width: 768px) {
    .layout {
        grid-template-columns: 1fr; /* 1カラムに */
    }

    .sidebar {
        display: none; /* PC用サイドバー非表示 */
    }

    #brand-logo {
        display: none;
    }

    #toggleButton {
        display: flex;
        gap: 8px;
        align-items: center;
        justify-content: center;
        font-family: var(--barlowCondensed);
        font-size:20px;
        color: var(--blueSecondary);
        background-color: #F2FCFF;
    }

    #toggleButton img {
        width: 48px;
    }
        
    .mobile-nav-toggle {
        width: 100%;
        display: flex;
        position: fixed;
        bottom: 0;
        font-size: 2rem;
        background: none;
        border: none;
        z-index: 1000;
        cursor: pointer;
    }

    .mobile-nav-toggle > button {
        width: 50%;
        padding: 8px;
        border: none;
    }

    .mobile-nav-toggle button:last-of-type {
        font-size: clamp(0.813rem, 0.634rem + 0.76vw, 1rem);
        background-color: var(--accentColor);
    }

    .mobile-nav-toggle button:last-of-type a {
        font-family: var(--notoSansJp);
        font-weight: 500;
        color: var(--baseColor);
    }

    .mobile-nav {
        width: 85vw;
        height: auto;
        display: none;
        position: fixed;
        top: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
        background: #F2FCFF;
        box-shadow: -2px 0 10px rgba(0,0,0,0.2);
        padding: 1rem;
        z-index: 999;
        flex-direction: column;
    }

    .mobile-nav.active {
        display: flex;
    }

    #closeNav {
        align-self: flex-end;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        margin-bottom: 1rem;
    }

    .button__line {
        margin-bottom: clamp(1rem, 0.046rem + 4.07vw, 2rem);
    }

    .global-nav-list {
        display: flex;
        flex-direction: column;
        gap: clamp(0.5rem, -1.408rem + 8.14vw, 2.5rem);
        background-color: var(--bluePrimary);
        padding-block: 40px;
        padding-inline: 32px;
        border-radius: 6px;
        margin-bottom: clamp(1rem, 0.046rem + 4.07vw, 2rem);
    }

    .global-nav-list li {
        font-family: var(--notoSansJp);
    }

    .global-nav-list li a {
        color: var(--baseColor);
    }

    .global-buttons {
        display: flex;
        flex-direction: column;
        gap: clamp(1rem, 0.046rem + 4.07vw, 2rem);
    }

    .global-buttons li {
        font-family: var(--notoSansJp);
    }

    .global-buttons li a {
        color: var(--baseColor);
    }

    .global-buttons li:first-of-type {
        display: flex;
        gap: 16px;
    }
}


/*------------------------------*/
/* main area FV */
/*------------------------------*/

.main_visual {
    height: 100vh;
    background-image: url(/assets/images/locoloco_fv.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.main_copy {
    padding: 224px 0 0 24px;
}

.main_copy img {
    position: absolute;
    top: 25%;
    left: 0;
}

.main_copy p:first-of-type {
    font-family: 'Barlow Condensed';
    font-size: clamp(2.5rem, 1.165rem + 5.7vw, 8rem);
    font-weight: 600;
    font-style: italic;
    color: var(--accentColor);
    letter-spacing: 0.08em;
    transform: rotate(-4.6deg);
    margin-bottom: 80px;
}

.main_copy p:last-of-type {
    font-family: 'Noto sans JP';
    font-weight: 900;
    font-size: clamp(1.25rem, 0.825rem + 1.81vw, 3rem);
    color: var(--accentColor);
    margin-left: clamp(2rem, 0.544rem + 6.21vw, 8rem);
}

.scroll-indicator {
    position: absolute;
    right: 4vw;
    bottom: 5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll_down {
    font-family: 'Barlow Condensed';
    font-weight: 500;
    font-size: clamp(1rem, 0.545rem + 1.94vw, 2rem);
    color: var(--baseColor);
    margin-bottom: 7rem;
    letter-spacing: 0.08em;
    transform: translateX(1px) rotate(90deg);
}

.arrow {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.arrow:not(:first-of-type) {
    margin-top: -24px;
}

.arrow svg {
    width: 40px;
    height: 40px;
}

@media (max-width: 768px) {
    .main_copy img {
        width: 40vw;
    }

    .main_copy p:first-of-type {
        margin-bottom: 32px;
    }
}

/*------------------------------*/
/* about us */
/*------------------------------*/

.about-us {
    height: 720px;
    background-image: url(/assets/images/about\ us.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-block: clamp(3.375rem, 3.102rem + 1.17vw, 4.5rem);
    padding-inline: clamp(2rem, -2.976rem + 21.23vw, 22.5rem);
}

.about-us h2 {
    font-family: var(--notoSansJp);
    font-weight: bold;
    font-size: clamp(1rem, 0.586rem + 1.77vw, 2rem);
    letter-spacing: var(--letterSpace);
    color: var(--accentColor);
    margin-bottom: clamp(1rem, 0.378rem + 2.65vw, 2.5rem);
    will-change: transform;
}

.about-us p {
    font-size: clamp(0.75rem, 0.646rem + 0.44vw, 1rem);
    letter-spacing: var(--letterSpace);
    line-height: 200%;
    margin-bottom: clamp(2.25rem, 1.939rem + 1.33vw, 3rem);
    color: var(--baseColor);
    will-change: transform;
}

.split * {
    will-change: transform;
}


/*------------------------------*/
/* what do */
/*------------------------------*/

.texture-bg {
    background-image: url(/assets/images/texture_rectangle.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-block: clamp(6.063rem, 5.107rem + 4.08vw, 10rem);
}

.what-do {
    text-align: center;
    margin-bottom: clamp(6.25rem, 3.66rem + 11.05vw, 12.5rem);
}

.what-do h2 {
    font-family: var(--notoSansJp);
    font-weight: bold;
    font-size: clamp(1rem, 0.586rem + 1.77vw, 2rem);
    letter-spacing: var(--letterSpace);
    color: var(--bluePrimary);
    margin-bottom: clamp(2rem, 1.393rem + 2.59vw, 4.5rem);
}

.what-do ul li {
    width: 90%;
    max-width: 1046px;
    display: flex;
    justify-content: center;
    padding-block: 36px;
    border: solid 3px var(--blueSecondary);
    position: relative;
    margin: 0 auto 54px;
    background-color: var(--baseColor);
}

.what-do ul li::before {
    content: "";
    display: inline;
    border-left: 3px solid var(--blueSecondary);
    height: clamp(1.5rem, 0.723rem + 3.31vw, 3.375rem);
    transform: rotate(45deg);
    position: absolute;
    top: -13%;
    left: -0.5%;
}

.what-do ul li::after {
    content: "";
    display: inline;
    border-left: 3px solid var(--blueSecondary);
    height: clamp(1.5rem, 0.723rem + 3.31vw, 3.375rem);
    transform: rotate(45deg);
    position: absolute;
    right: -.5%;
    bottom: -13%;
}

.number {
    display: flex;
    align-items: center;
    padding: 45px 115px;
    border-right: 3px solid var(--blueSecondary);
}

.what-do ul li img {
    width: 50px;
    height: auto;
}

.what-do h3 {
    font-size: clamp(1rem, 0.793rem + 0.88vw, 1.5rem);
    margin-bottom: 24px;
}

.what-do p {
    font-size: clamp(0.813rem, 0.735rem + 0.33vw, 1rem);
    line-height: 200%;
    letter-spacing: var(--letterSpace);
}

.what-do h3,
.what-do p {
    color: var(--blueSecondary);
}

.what-do-description {
    text-align: left;
    padding: 0 28px 0 115px;
}

@media (max-width: 1280px) {
    .what-do ul li::before {
        top: -11%;
        left: -0.5%;
    }
    
    .what-do ul li::after {
        right: -.5%;
        bottom: -11%;
    }
}


@media (max-width: 768px) {
    .what-do {
        padding-inline: 20px;
    }

    .what-do ul li {
        flex-direction: column;
        padding: 36px 12px;
    }

    .number {
        width: 100%;
        display: flex;
        justify-content: center;
        border-right: none;
        border-bottom: 3px solid var(--blueSecondary);
        padding: 0;
        margin-bottom: 24px;
    }

    .number img {
        margin-bottom: 32px;
    }

    .what-do-description {
        padding: 0;
    }

    .what-do ul li::before {
        top: -6%;
        left: -0.3%;
    }
    
    .what-do ul li::after {
        right: -.3%;
        bottom: -6%;
    }

    .what-do h3 {
        margin-bottom: 12px;
    }
}


@media (max-width: 560px) {
    .what-do ul li::before {
        top: -5%;
        left: -1%;
    }
    
    .what-do ul li::after {
        right: -1%;
        bottom: -5%;
    }
}

/*------------------------------*/
/* time schedule */
/*------------------------------*/

.time-schedule {
  text-align: center;
  margin-bottom: clamp(6.25rem, 3.66rem + 11.05vw, 12.5rem);
}

.time-schedule h2 {
  font-family: var(--notoSansJp);
  font-weight: bold;
  font-size: clamp(1rem, 0.586rem + 1.77vw, 2rem);
  letter-spacing: var(--letterSpace);
  color: var(--bluePrimary);
  margin-bottom: clamp(2rem, 1.393rem + 2.59vw, 4.5rem);
}

.time-schedule ul {
  width: auto;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 0.378rem + 2.65vw, 2.5rem);
}

.time-schedule li {
  display: flex;
  width: clamp(16.75rem, 15.961rem + 3.37vw, 20rem);
  max-width: 426px;
  padding-block: clamp(0.75rem, 0.646rem + 0.44vw, 1rem);
  padding-inline: clamp(1.5rem, 0.671rem + 3.54vw, 3.5rem);
  border: 4px solid var(--blueSecondary);
  background-color: var(--baseColor);
  font-size: clamp(1.5rem, 1.293rem + 0.88vw, 2rem);
  font-weight: 500;
  font-family: var(--notoSansJp);
  letter-spacing: var(--letterSpace);
  color: var(--blueSecondary);
  text-align: left;
}

.time-schedule img {
  position: absolute;
}

.time-schedule img:first-of-type {
  width: clamp(7.75rem, 2.311rem + 23.2vw, 20.875rem);
  height: auto;
  top: 0;
  left: 6%;
}

.time-schedule img:last-of-type {
  width: clamp(7.75rem, 2.311rem + 23.2vw, 20.875rem);
  height: auto;
  right: 6%;
  bottom: 50%;
}


@media (max-width: 768px) {
    .time-schedule img {
        display: none;
    }
}


/*------------------------------*/
/* review */
/*------------------------------*/

.review {
  text-align: center;
  padding-inline: clamp(4.688rem, 2.952rem + 7.4vw, 8.875rem);
}

.review h2 {
  font-family: var(--notoSansJp);
  font-weight: bold;
  font-size: clamp(1rem, 0.586rem + 1.77vw, 2rem);
  letter-spacing: var(--letterSpace);
  color: var(--bluePrimary);
  margin-bottom: clamp(2rem, 1.393rem + 2.59vw, 4.5rem);
}

.review__user--review {
  display: grid;
  grid-template-columns: repeat(3,minmax(224px,1fr));
  column-gap: clamp(1.125rem, -0.458rem + 3.3vw, 3.5rem);
}

/* 吹き出し */
.user__comment {
  height: 100%;
  max-height: 96px;
  position: relative;
  padding: 1rem 1rem 1rem 1.5rem;
  border-radius: 5px;
  border: 3px solid var(--blueSecondary);
  box-shadow: -3px 3px 0 0 var(--blueSecondary);
  font-size: clamp(0.75rem, 0.646rem + 0.44vw, 1rem);
  line-height: 200%;
  letter-spacing: var(--letterSpace);
  background-color: var(--baseColor);
  text-align: left;
  margin-bottom: clamp(1rem, 0.515rem + 2.07vw, 3rem);
}

.user__comment:before,
.user__comment:after {
  position: absolute;
  left: 30px;
  height: 0;
  width: 0;
  border: solid transparent;
  content: "";
}

.user__comment:before {
  top: 100%;
  margin-left: -12px;
  border-color: transparent;
  border-top-color: var(--blueSecondary);
  border-right-color: var(--blueSecondary);
  border-width: 10px;
}

.user__comment:after {
  top: 99%;
  margin-left: -7px;
  border-color: transparent;
  border-top-color: white;
  border-right-color: white;
  border-width: 6.5px;
}

.user__img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-color: var(--bluePrimary);
  padding-top: clamp(1.875rem, 1.723rem + 0.65vw, 2.5rem);
}

.user__img img {
  width: 90%;
}


@media (max-width: 768px) {
    .review__user--review{
        grid-template-columns: repeat(1,minmax(224px,1fr));
        row-gap: 64px;
    }

    .user__comment {
        max-height: 64px;
        margin-bottom: 32px;
        font-size: 13px;
    }
}

/*------------------------------*/
/* stuff */
/*------------------------------*/

.stuff {
  display: flex;
  background-image: url(/assets/images/stuff-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: clamp(2rem, 0.908rem + 4.66vw, 6.5rem);
  padding-inline: clamp(2rem, 0.544rem + 6.21vw, 8rem);
  margin-bottom: clamp(6.25rem, 3.66rem + 11.05vw, 12.5rem);
}

.stuff__text {
  width: 40%;
  padding-bottom: clamp(6.5rem, 0.25rem + 7.81vw, 9.625rem);
}

.stuff h2 {
  font-family: var(--notoSansJp);
  font-weight: bold;
  font-size: clamp(1rem, 0.586rem + 1.77vw, 2rem);
  letter-spacing: var(--letterSpace);
  color: var(--baseColor);
  margin-bottom: 16px;
}

.stuff p {
  font-family: var(--notoSansJp);
  font-size: clamp(0.813rem, 0.735rem + 0.33vw, 1rem);
  letter-spacing: var(--letterSpace);
  line-height: 200%;
  color: var(--baseColor);
  margin-bottom: 16px;
}

.stuff__img {
  width: 60%;
  display: flex;
  align-items: flex-end;
  gap: clamp(1rem, 0.586rem + 1.77vw, 2rem);
}

.stuff__img img {
  width: 100%;
  max-width: 350px;
}


@media (max-width: 1280px) {
    .stuff {
        flex-direction: column;
    }

    .stuff__text {
        width: 75%;
    }

    .stuff__img {
        width: 100%;
        justify-content: flex-end;
    }
}


@media (max-width: 768px) {
    .stuff__text {
        width: 100%;
    }

    .stuff__img {
        justify-content: center;
    }

    .stuff__img img {
        max-width: 148px;
    }
}


/*------------------------------*/
/* access */
/*------------------------------*/

.access {
  text-align: center;
  padding-inline: clamp(1rem, -1.427rem + 10.36vw, 11rem);
  margin-bottom: clamp(6.25rem, 3.66rem + 11.05vw, 12.5rem);
}

.access h2 {
  font-family: var(--notoSansJp);
  font-weight: bold;
  font-size: clamp(1rem, 0.586rem + 1.77vw, 2rem);
  letter-spacing: var(--letterSpace);
  color: var(--bluePrimary);
  margin-bottom: clamp(2rem, 1.393rem + 2.59vw, 4.5rem);
}

.access__map {
  width: 100%;
  height: clamp(20rem, 18.786rem + 5.18vw, 25rem);
  margin: 0 auto clamp(1.5rem, 1.136rem + 1.55vw, 3rem);
}

.access__map iframe {
  width: 100%;
  height: 100%;
}

.address {
  display: flex;
  gap: 134px;
}

.address ul li {
  text-align: left;
  font-family: var(--notoSansJp);
  font-size: clamp(0.813rem, 0.631rem + 0.77vw, 1.25rem);
  letter-spacing: var(--letterSpace);
  color: var(--blueSecondary);
}

.address ul li:first-child {
  margin-bottom: 24px;
}


/* カバー画像 */
.cover {
  width: 100%;
  height: clamp(12.5rem, 6.432rem + 25.89vw, 37.5rem);
  background-image: url(/assets/images/locoloco_inner.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: clamp(6.25rem, 3.66rem + 11.05vw, 12.5rem);
}


@media (max-width: 768px) {
    .address {
        flex-direction: column;
        gap: 24px;
    }
}

/*------------------------------*/
/* Q&A */
/*------------------------------*/

.qa {
  text-align: center;
  margin-bottom: clamp(6.25rem, 3.66rem + 11.05vw, 12.5rem);
  padding-inline: clamp(1rem, -3.46rem + 19.03vw, 19.375rem);
}

.qa h2 {
  font-family: var(--notoSansJp);
  font-weight: bold;
  font-size: clamp(1rem, 0.586rem + 1.77vw, 2rem);
  letter-spacing: var(--letterSpace);
  color: var(--bluePrimary);
  margin-bottom: clamp(2rem, 1.393rem + 2.59vw, 4.5rem);
}

.qa__list--outer {
  display: block;
  max-width: 892px;
  margin: 0 auto;
}

.qa__list {
  width: 100%;
  margin: 0 auto;
  text-align: left;
  font-family: var(--notoSansJp);
  margin-bottom: 40px;
}

.qa__list:last-of-type {
  margin-bottom: 0;
}

.question,
.answer {
  padding: 15px;
  margin: 0 auto;
  font-size: clamp(0.813rem, 0.735rem + 0.33vw, 1rem);
  font-weight: 500;
  background-color: #F2FCFF;
  color: var(--blueSecondary);
  margin-bottom: 16px;
  letter-spacing: var(--letterSpace);
  border-radius: 6px;
}

.answer {
  font-weight: normal;
  line-height: 200%;
}


/*------------------------------*/
/* form */
/*------------------------------*/

.inquiry {
  text-align: center;
  margin-bottom: clamp(6.25rem, 3.66rem + 11.05vw, 12.5rem);
  padding-inline: clamp(1rem, -3.46rem + 19.03vw, 19.375rem);
}

form {
  max-width: 892px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-block: clamp(2rem, 1.515rem + 2.07vw, 4rem);
  background-color: var(--blueSecondary);
  margin: 0 auto;
  border-radius: 8px;
}

form h2 {
  font-family: var(--notoSansJp);
  font-weight: bold;
  font-size: clamp(1rem, 0.586rem + 1.77vw, 2rem);
  letter-spacing: var(--letterSpace);
  color: var(--baseColor);
  margin-bottom: clamp(2rem, 1.393rem + 2.59vw, 4.5rem);
}

input, select, textarea {
  font-size: clamp(1rem, 0.896rem + 0.44vw, 1.25rem);
  font-family: var(--notoSansJp);
  font-weight: 500;
  padding: 15px;
  margin-inline: clamp(1rem, 0.15rem + 3.62vw, 4.5rem);
  border: none;
  background-color: var(--baseColor);
  border-radius: 6px;
  letter-spacing: var(--letterSpace);
}

select {
  appearance: none;             /* 矢印を消す（共通） */
  -webkit-appearance: none;     /* Safari対応 */
  -moz-appearance: none;        /* Firefox対応 */
  background: 
    url(/assets/images/arrow.svg) 
    no-repeat right 1rem 
    center;
  background-size: 1rem;
  padding-right: 2rem;          /* 矢印分の余白を確保 */
  background-color: var(--baseColor);
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #757575;
}

textarea {
  height: 400px;
}

input[type=submit] {
  width: 212px;
  background-color: var(--accentColor);
  margin: 0 auto;
  color: var(--baseColor);
}


/*------------------------------*/
/* footer */
/*------------------------------*/

footer {
    display: flex;
    align-items: center;
    padding-right: clamp(5.75rem, 1.583rem + 8.68vw, 12rem);
    padding-left: clamp(2rem, -2rem + 8.33vw, 8rem);
    margin-bottom: 100px;
}

.footer__credit {
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer__credit--detail {
    display: flex;
    gap: 32px;
}

.footer__corpname ,
.footer__credit--detail small,
.footer__credit--detail a {
  color: var(--blueSecondary);
  font-size: clamp(0.813rem, 0.767rem + 0.19vw, 1rem);
  font-family: var(--notoSansJp);
}

.footer__info {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: clamp(1.75rem, -1.417rem + 6.6vw, 6.5rem);
}

.footer__address h4 {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
    font-family: var(--notoSansJp);
    font-weight: 600;
    font-size: clamp(1.5rem, 1.379rem + 0.52vw, 2rem);
    color: var(--blueSecondary);
    margin-bottom: clamp(1rem, 0.879rem + 0.52vw, 1.5rem);
}

.footer__address--number {
    display: flex;
    gap: clamp(1rem, 0.879rem + 0.52vw, 1.5rem);
}

.footer__address--number a,
.footer__address--number > span {
    color: var(--blueSecondary);
}

.footer__address p {
  font-family: var(--notoSansJp);
  font-size: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
  color: var(--blueSecondary);
  margin-bottom: 12px;
}

.footer__address p:last-child {
  margin-bottom: clamp(2rem, 1.879rem + 0.52vw, 2.5rem);
}

.footer__links {
  display: flex;
  gap: 32px;
}

.footer__links > .button__blue a,
.footer__links > .button__blue2 a {
  font-weight: 500;
  font-size: clamp(1rem, 0.879rem + 0.52vw, 1.5rem);
  color: var(--baseColor);
}


@media (max-width: 768px) {
    footer {
        flex-direction: column-reverse;
        gap: 48px;
        padding-right: 0;
        padding-left: 0;
    }

    .footer__credit--logo {
        width: 90%;
    }

    .footer__credit--logo img {
        width: 100%;
    }

    .footer__credit--detail {
        justify-content: space-between;
    }

    .footer__info {
        width: auto;
        padding-left: 0;
    }

    .footer__links {
        flex-direction: column;
        gap: 16px;
    }
}