@charset "UTF-8";
/* ========================================
  functions.scss 関数 rem / vw
======================================== */
/* ========================================
   components.scss
======================================== */
.c-heading {
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.c-heading__bar {
  position: relative;
  width: 24px;
  height: 5px;
  display: inline-block;
  background-color: #3265AC;
}
.c-heading__bar::before {
  position: absolute;
  left: 0;
  content: "";
  width: 8px;
  height: 100%;
  background-color: #fff;
}
.c-heading__bar--red {
  background-color: #B12D25;
}
.c-heading__bar--white::before {
  border: 1px solid #429ABD;
}
.c-heading__en {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
}
@media (max-width: 1024px) {
  .c-heading__en {
    font-size: 1.75rem;
  }
}
@media (max-width: 767px) {
  .c-heading__en {
    font-size: 1.5rem;
  }
}
.c-heading__ja {
  display: block;
  font-size: 3.25rem;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .c-heading__ja {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .c-heading__ja {
    font-size: 2rem;
  }
}
.c-heading--blue {
  color: #429ABD;
}

/* ========================================
  reset - base.scss
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ========================================
  base.scss ユーティリティ「全体で使う基本ルール」
======================================== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  line-height: 1.8;
}

main {
  background-color: #F4F9FC;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.onlySP {
  display: none;
}
@media (max-width: 767px) {
  .onlySP {
    display: block;
  }
}

.onlyPC {
  display: block;
}
@media (max-width: 767px) {
  .onlyPC {
    display: none;
  }
}

.in-br {
  display: inline-block;
}

.fadeIn {
  opacity: 0;
}
.fadeIn.is-view {
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ========================================
   layout.scss 構造（コンテナ/セクション/グリッド）
======================================== */
/* header */
.l-header {
  position: sticky;
  top: 16px;
  z-index: 1000;
  margin-bottom: -90px;
}
.l-header__inner {
  margin: 0 auto;
  padding: 10px 24px;
  width: calc(100% - 60px);
  max-width: 1380px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 4px 4px 4px rgba(10, 74, 111, 0.16);
  border-radius: 5px;
}
.l-header__logo {
  display: flex;
  font-size: 40px;
  font-weight: 700;
  color: #3265AC;
  line-height: 1;
}
.l-header__logo .ruby {
  position: relative;
  display: block;
}
.l-header__logo .ruby .rt {
  display: block;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .l-header__logo {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .l-header__logo {
    padding-left: 8px;
    color: #fff;
  }
  .l-header__logo .rt {
    font-size: 10px;
  }
}
.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
}
.l-header__nav-item {
  font-size: 18px;
  font-weight: 500;
}
.l-header__nav-link {
  transition: color 0.3s;
}
@media (hover: hover) {
  .l-header__nav-link:hover {
    color: #3265AC;
  }
}
@media (max-width: 1024px) {
  .l-header__nav-list {
    gap: 30px;
  }
  .l-header__nav-item {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .l-header {
    top: 0;
    margin-bottom: 0;
  }
  .l-header__inner {
    padding: 0;
    width: 100%;
    height: 64px;
    background-color: #3265AC;
    border-radius: 0;
  }
}
.l-header__burger {
  display: none;
}
@media (max-width: 767px) {
  .l-header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 60px;
    height: 64px;
    cursor: pointer;
    z-index: 1000;
  }
}
.l-header__burger-line {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background-color: #fff;
  transition: transform 0.3s, opacity 0.3s;
}
.l-header__burger.is-active .l-header__burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.l-header__burger.is-active .l-header__burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.l-header__burger.is-active .l-header__burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.l-header__nav-sp {
  display: none;
}
@media (max-width: 767px) {
  .l-header__nav-sp {
    display: block;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background-color: #F4F9FC;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 999;
  }
  .l-header__nav-sp.is-menu-open {
    opacity: 1;
    visibility: visible;
  }
}
.l-header__nav-sp-list {
  padding: 40px 20px;
}
.l-header__nav-sp-item {
  border-bottom: 1px solid #429ABD;
}
.l-header__nav-sp-link {
  display: block;
  padding: 20px 0;
  color: #333333;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

/* main */
.hero {
  padding: 140px max((100% - 1198px) / 2, 50px) 0;
  display: flex;
  background-image: url(/assets/img/hero_bg.jpg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .hero {
    padding: 64px 0 0;
  }
}
@media (max-width: 549px) {
  .hero {
    display: block;
    position: relative;
    background-image: url(/assets/img/hero_bg_sp.jpg);
  }
}
.hero__img {
  width: 50%;
}
@media (max-width: 549px) {
  .hero__img {
    display: block;
    width: 100%;
    max-width: 350px;
  }
}
.hero__wrap {
  width: 50%;
}
@media (max-width: 549px) {
  .hero__wrap {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
  }
}
.hero__title {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 549px) {
  .hero__title {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
  }
}
.hero__subtitle {
  color: #fff;
  line-height: 1.5;
  font-size: clamp(14px, 2vw, 28px);
}
@media (max-width: 549px) {
  .hero__subtitle {
    position: absolute;
    bottom: 40px;
    left: 20px;
    font-size: 1.25rem;
    font-weight: 600;
    text-shadow: 4px 4px 4px rgba(10, 74, 111, 0.16);
  }
}
.hero__label {
  margin-top: 24px;
  color: #3265AC;
  font-size: clamp(28px, 4vw, 56px);
  -webkit-text-stroke: 6px #fff;
  paint-order: stroke fill;
}
@media (max-width: 1024px) {
  .hero__label {
    -webkit-text-stroke: 4px #fff;
  }
}
@media (max-width: 549px) {
  .hero__label {
    position: absolute;
    right: 102px;
    font-size: 32px;
    -webkit-text-stroke: 4px #fff;
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.05em;
  }
  .hero__label .num {
    text-combine-upright: all;
    display: inline-block;
    transform: translateX(-0.1em);
  }
}
.hero__name {
  display: flex;
  color: #3265AC;
  margin-top: 0.2em;
  font-size: clamp(48px, 8.3vw, 120px);
  -webkit-text-stroke: 18px #fff;
  paint-order: stroke fill;
}
.hero__name .ruby {
  position: relative;
  display: block;
}
.hero__name .ruby .rt {
  position: absolute;
  top: -28%;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(10px, 1.67vw, 24px);
  -webkit-text-stroke: 8px #fff;
}
@media (max-width: 1024px) {
  .hero__name {
    -webkit-text-stroke: 14px #fff;
  }
}
@media (max-width: 549px) {
  .hero__name {
    position: absolute;
    right: 30px;
    margin-top: 20px;
    font-size: 60px;
    -webkit-text-stroke: 8px #fff;
    writing-mode: vertical-rl;
  }
  .hero__name .ruby {
    margin-top: 0.3em;
  }
  .hero__name .ruby .rt {
    left: 100%;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 20px;
    line-height: 1;
    display: block;
    letter-spacing: 0.1em;
    white-space: nowrap;
    -webkit-text-stroke: 6px #fff;
  }
}
.hero__sns {
  width: fit-content;
  margin-top: 54px;
  display: flex;
  box-shadow: 4px 4px 4px rgba(10, 74, 111, 0.66);
}
@media (max-width: 767px) {
  .hero__sns {
    display: none;
  }
}
.hero__sns-title {
  padding: 24px;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  background-color: #3265AC;
  border-radius: 3px 0 0 3px;
}
@media (max-width: 1024px) {
  .hero__sns-title {
    padding: 20px;
  }
}
.hero__sns-list {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 24px;
  background-color: #fff;
  border-radius: 0 3px 3px 0;
}
@media (max-width: 1024px) {
  .hero__sns-list {
    gap: 20px;
  }
}
.hero__sns-item {
  width: 32px;
}
.hero__sns-link {
  display: block;
  transition: opacity 0.3s;
}
.hero__sns-link:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .hero__sns-link:hover {
    opacity: inherit;
  }
}

.l-container {
  padding: 80px max((100% - 1200px) / 2, 50px) 120px;
}
@media (max-width: 767px) {
  .l-container {
    padding: 40px 20px 60px;
  }
}

.philosophy {
  padding: 70px max((100% - 1400px) / 2, 20px) 78px;
}
@media (max-width: 767px) {
  .philosophy {
    padding: 50px 20px;
  }
}
.philosophy__heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 1em;
  font-size: 80px;
  color: #3265AC;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .philosophy__heading {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .philosophy__heading {
    font-size: 40px;
  }
}
.philosophy__main {
  display: inline-block;
}

.support {
  background: linear-gradient(140deg, #EF4132 0%, #B01617 100%);
}
.support__content {
  display: flex;
  gap: 80px;
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .support__content {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .support__content {
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
  }
}
.support__left {
  flex: 0 0 36%;
  max-width: 440px;
  padding: 40px 0 0 40px;
  position: relative;
}
@media (max-width: 1024px) {
  .support__left {
    flex: 0 0 30%;
    padding: 30px 0 0 30px;
  }
}
@media (max-width: 767px) {
  .support__left {
    width: 60%;
  }
}
.support__left::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: block;
  width: 66%;
  max-height: 560px;
  aspect-ratio: 30/36;
  background-color: #B12D25;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .support__left {
    flex: none;
    max-width: 100%;
  }
}
.support__left-inner {
  position: relative;
  z-index: 1;
  border-radius: 5px;
  overflow: hidden;
}
.support__right {
  width: fit-content;
  color: #fff;
}
.support__catch {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .support__catch {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .support__catch {
    font-size: 2rem;
  }
}
.support__message {
  margin-top: 58px;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .support__message {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .support__message {
    margin-top: 30px;
    font-size: 1.25rem;
  }
}
.support__name {
  margin-top: 60px;
  font-size: 2.25rem;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .support__name {
    font-size: 1.875rem;
  }
}
@media (max-width: 767px) {
  .support__name {
    margin-top: 30px;
    font-size: 1.5rem;
  }
}

.profile {
  background-color: #429ABD;
}
.profile__content {
  display: flex;
  gap: 80px;
  margin-top: 48px;
}
@media (max-width: 1024px) {
  .profile__content {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .profile__content {
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
  }
}
.profile__slider {
  flex: 0 0 50%;
  max-width: 600px;
  padding: 40px 0 0 40px;
  position: relative;
}
.profile__slider::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: block;
  width: 66%;
  max-height: 560px;
  aspect-ratio: 40/56;
  background-color: #3265AC;
  border-radius: 5px;
}
@media (max-width: 1024px) {
  .profile__slider {
    flex: 0 0 40%;
    padding: 30px 0 0 30px;
  }
}
@media (max-width: 767px) {
  .profile__slider {
    flex: none;
    width: 70%;
  }
}
.profile__info {
  flex: 1;
  color: #fff;
}
@media (max-width: 767px) {
  .profile__info {
    flex: none;
    width: fit-content;
  }
}
.profile__name {
  display: flex;
  align-items: baseline;
  gap: 0;
  flex-wrap: wrap;
}
.profile__name-kanji {
  font-size: 3.25rem;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .profile__name-kanji {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .profile__name-kanji {
    font-size: 2rem;
  }
}
.profile__name-kana {
  font-size: 1.25rem;
}
@media (max-width: 1024px) {
  .profile__name-kana {
    font-size: 1.125rem;
  }
}
@media (max-width: 767px) {
  .profile__name-kana {
    font-size: 1rem;
  }
}
.profile__data {
  margin-top: 24px;
}
.profile__data-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .profile__data-row {
    font-size: 0.875rem;
  }
}
.profile__data-row dt {
  padding: 6px 8px;
  color: #429ABD;
  background-color: #fff;
  border-radius: 4px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .profile__data-row dt {
    font-size: 0.75rem;
  }
}
.profile__timeline {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .profile__timeline {
    margin-top: 20px;
  }
}
.profile__timeline li {
  position: relative;
  padding: 12px 0 12px 42px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .profile__timeline li {
    font-size: 0.875rem;
  }
}
.profile__timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50%;
}
.profile__timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 9px;
  width: 1px;
  height: calc(100% - 1px);
  background-color: #fff;
}
.profile__career {
  margin-top: 8px;
  padding-left: 20px;
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .profile__career {
    font-size: 0.875rem;
  }
}
.profile__career li {
  padding: 8px 0;
}
.profile__career li::before, .profile__career li::after {
  display: none;
}
.profile .splide {
  position: relative;
  padding-bottom: 70px;
}
@media (max-width: 1024px) {
  .profile .splide {
    padding-bottom: 0;
  }
}
.profile .splide__slide img {
  width: 100%;
  height: auto;
  display: block;
}
.profile__slider-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-top: 8px;
}
.profile .splide__pagination {
  position: static !important;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
}
.profile .splide__pagination__page {
  width: 32px !important;
  height: 4px !important;
  margin: 0 4px;
  border-radius: 2px;
  background-color: #fff !important;
  opacity: 1 !important;
  transform: none !important;
}
.profile .splide__pagination__page.is-active {
  background-color: #3265AC !important;
  transform: none !important;
}
.profile .splide__arrows {
  position: static !important;
  display: flex;
  gap: 8px;
}
.profile .splide__arrow {
  position: static;
  transform: none;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border: 2px solid #3265AC;
  border-radius: 50%;
  opacity: 1;
}
@media (max-width: 767px) {
  .profile .splide__arrow {
    width: 40px;
    height: 40px;
  }
}
.profile .splide__arrow svg {
  fill: #3265AC;
  width: 16px;
  height: 16px;
}
@media (hover: hover) {
  .profile .splide__arrow:hover {
    background-color: #3265AC;
  }
  .profile .splide__arrow:hover svg {
    fill: #fff;
  }
}

.message__lead {
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .message__lead {
    font-size: 0.875rem;
    text-align: justify;
  }
}
.message__lead:first-child {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .message__lead:first-child {
    margin-top: 40px;
  }
}
.message__lead:not(:first-child) {
  margin-top: 1em;
}
.message__lead .strong {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .message__lead .strong {
    font-size: 1.5rem;
  }
}

.message-card {
  margin-top: 40px;
  padding: 48px 40px 90px 40px;
  position: relative;
  overflow: hidden;
  background-color: #429ABD;
  border-radius: 10px;
}
@media (max-width: 1024px) {
  .message-card {
    padding: 40px 30px 90px 30px;
  }
}
@media (max-width: 767px) {
  .message-card {
    padding: 30px 20px 40px 20px;
  }
}
.message-card::after {
  content: attr(data-label);
  position: absolute;
  right: 20px;
  bottom: -0.14em;
  font-family: "Montserrat", sans-serif;
  font-size: 120px;
  font-weight: bold;
  line-height: 1;
  color: #68AECA;
  line-height: 1;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .message-card::after {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  .message-card::after {
    content: none;
  }
}
.message-card--blue {
  background-color: #3265AC;
}
.message-card--blue::after {
  color: #537CB5;
  left: 20px;
  right: auto;
}
.message-card__image {
  width: calc(50% - 60px);
  display: block;
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}
.message-card__image--reverse {
  left: auto;
  right: 40px;
}
@media (max-width: 1024px) {
  .message-card__image {
    width: calc(40% - 60px);
  }
}
@media (max-width: 767px) {
  .message-card__image {
    position: static;
    width: 35%;
    max-width: 160px;
    float: left;
    margin: 0 0.5em 0.1em 0;
    transform: none;
  }
  .message-card__image--reverse {
    float: right;
    margin: 0 0 0.1em 0.5em;
  }
}
.message-card__content {
  padding-left: calc(50% + 20px);
  color: #fff;
}
.message-card__content--reverse {
  padding-left: 0;
  padding-right: calc(50% + 20px);
}
@media (max-width: 1024px) {
  .message-card__content {
    padding-left: 40%;
  }
  .message-card__content--reverse {
    padding-left: 0;
    padding-right: 40%;
  }
}
@media (max-width: 767px) {
  .message-card__content {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .message-card__wrap {
    margin-top: 1em;
  }
}
.message-card__title {
  font-size: 2.25rem;
  font-weight: 700;
  border-bottom: 2px solid #68AECA;
}
@media (max-width: 1024px) {
  .message-card__title {
    font-size: 1.875rem;
  }
}
.message-card__lead {
  margin-top: 24px;
  font-size: 1.75rem;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .message-card__lead {
    margin-top: 20px;
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .message-card__lead {
    margin-top: 20px;
    font-size: 1.25rem;
  }
}
.message-card__text {
  margin-top: 16px;
  font-size: 1.25rem;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .message-card__text {
    margin-top: 12px;
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .message-card__text {
    margin-top: 0;
    text-align: justify;
  }
}

/* footer */
.l-footer {
  padding: 48px max((100% - 1200px) / 2, 50px) 16px;
  font-weight: 500;
  background-color: #fff;
}
@media (max-width: 767px) {
  .l-footer {
    padding: 40px 20px 10px;
  }
}
.l-footer__name {
  color: #3265AC;
  font-size: 3.25rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .l-footer__name {
    font-size: 2rem;
  }
}
.l-footer__main {
  margin-top: 27px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 1024px) {
  .l-footer__main {
    margin-top: 20px;
    justify-content: flex-start;
  }
}
.l-footer__info {
  font-size: 1.25rem;
}
.l-footer__address span {
  display: inline-block;
}
.l-footer__nav {
  margin-left: auto;
}
@media (max-width: 767px) {
  .l-footer__nav {
    width: 100%;
  }
}
.l-footer__copyright {
  margin-top: 36px;
  font-size: 0.875rem;
  color: #ACACAC;
}

.footer-nav__list {
  display: flex;
  gap: 40px;
}
@media (max-width: 767px) {
  .footer-nav__list {
    justify-content: center;
    gap: 10px 30px;
    flex-wrap: wrap;
  }
}
.footer-nav__item {
  font-size: 1.125rem;
}
@media (max-width: 767px) {
  .footer-nav__item {
    font-size: 1rem;
  }
}
.footer-nav__link {
  transition: color 0.3s;
}
@media (hover: hover) {
  .footer-nav__link:hover {
    color: #3265AC;
  }
}

.footer-sns {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .footer-sns {
    justify-content: center;
    gap: 30px;
  }
}
.footer-sns__item {
  width: 32px;
}
.footer-sns__link {
  display: block;
  transition: opacity 0.3s;
}
.footer-sns__link:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .footer-sns__link:hover {
    opacity: inherit;
  }
}/*# sourceMappingURL=style.css.map */