@charset "utf-8";

html {
  scroll-behavior: smooth;
}

:root {
  --font-color: #3b4043;
  --base-color: #18538a;
  --color-red: #bf1b1b;
  --base-color-rgb: 24 83 138;
  --header-size: 300px;
  --font-montserrat: 'Montserrat', sans-serif;
  --font-lato: 'Lato', sans-serif;
  --font-noto-sans-jp: 'Noto Sans JP', sans-serif;
}

*,
::before,
::after {
  --clamp-root-font-size: 16;
  --clamp-slope: calc(
    (var(--clamp-max) - var(--clamp-min)) / (var(--clamp-viewport-max) - var(--clamp-viewport-min))
  );
  --clamp-y-axis-intersection: calc(
    var(--clamp-min) - (var(--clamp-slope) * var(--clamp-viewport-min))
  );
  --clamp-preffered-value: calc(
    var(--clamp-y-axis-intersection) * (1rem / var(--clamp-root-font-size)) +
      (var(--clamp-slope) * 100vi)
  );
  --clamp: clamp(
    calc(var(--clamp-min) * (1rem / var(--clamp-root-font-size))),
    var(--clamp-preffered-value),
    calc(var(--clamp-max) * (1rem / var(--clamp-root-font-size)))
  );
  font-size: var(--clamp);
}

/* bodyにデフォルト値を設定する */
body {
  --clamp-viewport-min: 375;
  --clamp-viewport-max: 1200;
  --clamp-min: 14;
  --clamp-max: 16;
  line-height: 1.75;
  letter-spacing: 0.05em;
  background: #fff;
  color: var(--font-color);
  font-family: var(--font-noto-sans-jp);
}

a {
  text-decoration: none;
}

.m-link {
  transition: color 0.3s;
}
.m-link:focus-visible {
  color: var(--base-color);
}
@media (any-hover: hover) {
  .m-link:hover {
    color: var(--base-color);
  }
}

.pc-only {
  display: block;
  @media (max-width: 1245px) {
    display: none;
  }
}

.pc-only--inline {
  display: inline;
  @media (max-width: 1245px) {
    display: none;
  }
}

.sp-only {
  display: none;
  @media (max-width: 1245px) {
    display: block;
  }
}

/*------------------
header
------------------*/

.l-wrapper {
  padding-inline-start: var(--header-size);
  @media (max-width: 1245px) {
    padding-inline-start: 0;
  }
}

.l-header {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  border-right: 1px solid #e5e1db;
  block-size: 100%;
  inline-size: 100%;
  max-inline-size: var(--header-size);
  padding: 3em;
  @media (max-width: 1245px) {
    display: none;
  }
}

.l-header__top {
  margin-block-end: 8em;
}

.l-header__logo {
  display: block;
  inline-size: 70%;
  margin-inline: auto;
  margin-block-end: 3em;
}

.l-header__navItem + .l-header__navItem {
  margin-block-start: 1.5em;
}

.l-header__navLink {
  font-weight: 500;
}

.l-header__bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap:20px;
  a {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-weight: 500;
  }
}

.header-instagram {
  transition: 0.3s;
  &:hover {
    opacity: 0.6;
  }
  img {
    inline-size: 20px;
  }
}

.header-note {
  transition: 0.3s;
  &:hover {
    opacity: 0.6;
  }
  img {
    inline-size: 80px;
  }
}

/*------------------
sp-header
------------------*/
.sp-header {
  display: none;
}

@media (max-width: 1245px) {
  .sp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
  }

  .sp-header__logo {
    inline-size: 130px;
    display: block;
  }

  /* 開閉メニューのスタイル */
  .button {
    position: relative;
    z-index: 100;
    right: 0;
    height: 24px;
    width: 30px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
  }

  .button-bar {
    display: block;
    content: '';
    width: 100%;
    height: 1px;
    background: var(--base-color);
  }

  .button-bar::before,
  .button-bar::after {
    display: block;
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: var(--base-color);
    transition: 0.3s ease;
  }

  .button-bar::before {
    top: 0;
  }

  .button-bar::after {
    bottom: 0;
  }

  .button.is-active .button-bar {
    height: 0;
  }

  /* ボタンをクリックしたときにバツに変える */
  .button.is-active .button-bar::before {
    opacity: 1;
    top: 50%;
    transform: rotate(45deg) translateY(-50%);
    transition: 0.3s ease;
  }

  .button.is-active .button-bar::after {
    opacity: 1;
    top: 50%;
    transform: rotate(-45deg) translateY(-50%);
    transition: 0.3s ease;
  }

  .menu {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    inset: 0;
    transition: 0.3s ease;
  }

  .menu.is-active {
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100vh;
    transition: 0.5s ease;
  }

  .overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    background-image: url('../img/common/bg.png');
    background-repeat: repeat;
    background-size: contain;
  }

  .list {
    display: flex;
    z-index: 100;
    align-items: center;
    justify-content: center;
    height: 100vh;
    height: 100dvh;
    gap: 24px;
    font-size: 20px;
    flex-direction: column;
    list-style-type: none;
    position: relative;
    z-index: 9999;
  }

  .item a {
    text-decoration: none;
    color: var(--font-color);
    --clamp-min: 16;
    --clamp-max: 16;
  }
}

/*------------------
kv
------------------*/
.l-kv {
  position: relative;
  width: 100%;
  height: 70vh;
  @media (max-width: 768px) {
    height: 50vh;
  }
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center  30%;
    @media (max-width: 768px) {
      object-position: center center;
    }
  }
}

.l-kv-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
  p {
    background: #fff;
    inline-size: fit-content;
    padding: 0.5em;
    @media (max-width: 768px) {
      inline-size: 65%;
    }
  }
  p:nth-child(1) {
    width: 210px;
  }
  p:nth-child(2) {
    margin-inline-start: 1.75em;
  }
  p:nth-child(3) {
    margin-inline-start: 3.5em;
    width: 280px;
  }
  p + p {
    margin-block-start: 4em;
    @media (max-width: 768px) {
      margin-block-start: 2em;
    }
  }
}

/*------------------
container
------------------*/
.l-container {
  background-image: url('../img/common/bg.png');
  background-repeat: repeat;
  background-size: contain;
}

/*------------------
section
------------------*/
.l-section {
  --size: 980px;
  --gutter: max(5vi, 20px);

  box-sizing: revert;
  max-inline-size: var(--size);
  padding-inline: var(--gutter);
  margin-inline: auto;
}

/*------------------
main
------------------*/
.l-main {
  overflow: hidden;
}

/*============================
m-tit
============================*/
.m-tit {
  margin-block-end: 3em;
}

.m-tit__jp {
  --clamp-min: 30;
  --clamp-max: 56;
  font-weight: bold;
}

.m-tit__en {
  --clamp-min: 20;
  --clamp-max: 25;
  color: var(--base-color);
  font-weight: normal;
  display: block;
  margin-block-end: 1em;
  display: flex;
  align-items: center;
}
.m-tit__en::after {
  content: '';
  display: inline-block;
  margin-inline-start: 0.5em;
  margin-block-start: 0.2em;
  width: 30px;
  height: 1px;
  background-color: var(--base-color);
}

.m-tit-sub {
  --clamp-min: 24;
  --clamp-max: 30;
  color: var(--base-color);
  font-weight: 500;
  margin-block-end: 1em;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 12px;
  text-align: center;
  @media (max-width: 768px) {
    text-underline-offset: 2px;
  }
}

/*------------------
js-beforeafter
------------------*/
.js-beforeafter {
  margin-block: 3em 6em;
}

.twentytwenty-handle {
  background: var(--base-color);
}

/*------------------
lead
------------------*/
.p-top-lead {
  padding-block: 8em 20em;
  position: relative;
  @media (max-width: 768px) {
    padding-block: 4em;
  }
}
.p-top-lead__text {
  inline-size: 42vw;
  @media (max-width: 768px) {
    inline-size: 100%;
  }
  p {
    --clamp-min: 18;
    --clamp-max: 20;
    line-height: 3.0;
    @media (max-width: 768px) {
      line-height: 2;
    }
  }
  p + p {
    margin-block-start: 2em;
  }
}

.p-top-icon {
  position: absolute;
  z-index: 1;
  @media (max-width: 768px) {
    position: static;
  }
}

.p-top-icon01 {
  top: -3%;
  right: -5%;
  inline-size: 400px;
  @media (max-width: 768px) {
    display: none;
  }
}

.p-top-icon02 {
  top: 45%;
  right: 10%;
  inline-size: 300px;
  @media (max-width: 768px) {
    display: none;
  }
}

.p-top-icon03 {
  top: 73%;
  right: 26%;
  inline-size: 230px;
  @media (max-width: 768px) {
    display: none;
  }
}

.p-top-spIcon,
.p-top-spIcon-bottom {
  display: none;
}

@media (max-width: 768px) {
  .p-top-spIcon {
    display: flex;
    justify-content: space-between;
    gap: 2em;
    margin-block-start: 5em;
    margin-block-end: 1em;
    padding-inline: 2em;
  }
  .p-top-spIcon01 {
    width: 43%;
    margin-top: -8em;
  }
  .p-top-spIcon02 {
    width: 40%;
  }
  .p-top-spIcon-bottom {
    display: block;
    padding-inline: 2em;
  }
  .p-top-spIcon03 {
    width: 45%;
    margin-block-start: 3em;
    margin-inline-start: auto;
  }
}

/*------------------
service
------------------*/

@media (max-width: 768px) {
  .p-top-service {
    margin-block-start: -7em;
  }
}

.p-top-service__contents + .p-top-service__contents {
  margin-block-start: 4em;
}

.p-top-service__head {
  position: relative;
  height: 400px;
  @media (max-width: 768px) {
    height: 250px;
  }
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.p-top-service__headSubText {
  position: absolute;
  bottom: 0;
  right: 0;
  @media (max-width: 768px) {
    display: none;
  }
}

.p-top-service__headSubText--img03 {
  bottom: -16%;
}

.p-top-service__headContainer {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translate(0%, -50%);
  --size: 980px;
  inline-size: var(--size);
  margin-inline: auto;
  @media (max-width: 768px) {
    left: 0;
    transform: translate(0, -50%);
  }
}

.p-top-service__headInner {
  inline-size: 40vw;
  @media (max-width: 768px) {
    inline-size: 100vw;
    padding-inline: 1.5em;
  }
  p {
    color: #fff;
  }
}

.p-top-service__headTitle {
  background-color: rgb(var(--base-color-rgb) / 0.6);
  padding: 0.5em 0.5em;
  --clamp-min: 24;
  --clamp-max: 32;
  inline-size: fit-content;
  line-height: 1;
  font-weight: bold;
  margin-block-end: 0.8em;
}

.p-top-service__headText {
  --clamp-min: 16;
  --clamp-max: 18;
}

.p-top-service__main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15%, 1fr));
  gap: 2em;
  margin-block: 4em;
}

.p-top-service__mainBlock {
  display: flex;
  flex-direction: column;
  p {
    text-align: center;
  }
}

.p-top-service__mainAfter {
  position: relative;
  margin-block-start: 4em;
  margin-block-end: 0.5em;
}

.p-top-service__mainAfter::after {
  content: '';
  position: absolute;
  top: -3em;
  left: 0;
  right: 0;
  margin-inline: auto;
  background-image: url(../img/service/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  inline-size: 60px;
  block-size: 29px;
}

.p-top-service__mainBlock--sp {
  display: none;
}

@media (max-width: 768px) {
  .p-top-service__mainBlock--sp {
    display: flex;
  }
  .p-top-service__mainBlock--pc {
    display: none;
  }
}

/*------------------
able
------------------*/
.p-top-able {
  margin-block: 6em;
  .illust-tit {
    display: flex;
    justify-content: space-between;
    @media (max-width: 768px) {
      flex-direction: column-reverse;
      img {
        inline-size: 40%;
        margin-inline: auto;
      }
    }
  }
}

.p-top-able__contents + .p-top-able__contents {
  margin-block-start: 8em;
  @media (max-width: 768px) {
    margin-block-start: 4em;
  }
}

.p-top-able__lead {
  margin-block-end: 3em;
}

.p-top-able__lead--01 {
  margin-block-start: -10em;
  @media (max-width: 768px) {
    margin-block-start: 0;
  }
}

.p-top-able__leadFlex {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
}

.p-top-able__leadFlexText {
  order: 1;
  @media (max-width: 768px) {
    order: 2;
  }
  .p-top-able__leadSub {
    margin-block-end: 0;
  }
}

.p-top-able__leadText {
  order: 3;
  inline-size: 100%;
  margin-block-start: 2em;
}

.p-top-able__leadFlexImg {
  order: 2;
  inline-size: 170px;
  @media (max-width: 768px) {
    order: 1;
    margin-inline: auto;
    img {
      margin-inline: auto;
      inline-size: 80%;
      margin-block-end: 2em;
    }
  }
}

.p-top-able__leadFlexImg02 {
  inline-size: 280px;
}

.p-top-able__leadTitle {
  background-color: var(--base-color);
  color: #fff;
  line-height: 1;
  padding: 0.3em 0.5em;
  margin-block-end: 0.5em;
  inline-size: fit-content;
  font-weight: 500;
  --clamp-min: 20;
  --clamp-max: 26;
}

.p-top-able__leadSub {
  --clamp-min: 18;
  --clamp-max: 22;
  font-weight: 500;
  margin-block-end: 0.5em;
}

.p-top-able__block {
  background-color: #fff;
  padding: 3em 4em;
  @media (max-width: 768px) {
    padding: 2em 1.5em;
  }
}

.p-top-able__blockContents + .p-top-able__blockContents {
  margin-block-start: 3em;
}

.p-top-able__blockContentsTitle {
  --clamp-min: 22;
  --clamp-max: 30;
  color: var(--base-color);
  font-weight: 500;
  margin-block-end: 1em;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 12px;
}

.p-top-able__blockContentsText + .p-top-able__blockContentsText {
  margin-block-start: 1em;
}

.p-top-able__blockContentsImg {
  display: flex;
  gap: 1.5em;
  margin-block-start: 2em;
  @media (max-width: 768px) {
    flex-wrap: wrap;
  }
  img {
    inline-size: 100%;
  }
}
.p-top-able__blockContentsImgText {
  --clamp-min: 28;
  --clamp-max: 37;
  text-align: center;
  span {
    font-family: var(--font-lato);
    --clamp-min: 60;
    --clamp-max: 83;
    margin-inline: 0.1em;
    color: var(--color-red);
  }
}

.p-top-able__galleryList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 2em 1em;
  margin-block-end: 4em;
}

.p-top-able__galleryItem {
  figcaption {
    text-align: center;
  }
}

.p-top-able__thumbnail {
  margin-block: 4em;
  @media (max-width: 768px) {
    margin-block: 2em;
  }
}

.p-top-able__contentsImgBlock {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
  margin-block-end: 4em;
}

.p-top-able__contentsImgBlock02 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30px, 1fr));
  gap: 2em;
  margin-block-end: 4em;
}

/*------------------
able
------------------*/

.p-top-about {
  max-inline-size: 980px;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 10px;
  padding: 5em;
  position: relative;
  margin-block-end: 8em;
  @media (max-width: 768px) {
    padding: 3em 2em;
  }
}

.p-top-about__deco {
  position: absolute;
  bottom: -5%;
  left: 0;
  inline-size: 10em;
  @media (max-width: 768px) {
    bottom: -3%;
    left: 0;
    inline-size: 8em;
  }
}

.p-top-about__lead {
  background-color: rgb(24 83 138 / 10%);
  border-radius: 20px;
  padding: 5em 4em;
  @media (max-width: 768px) {
    border-radius: 10px;
    padding: 2.5em 2em;
  }
}

.p-top-about__leadImg {
  inline-size: 50%;
  margin-inline: auto;
  margin-block-end: 3em;
  @media (max-width: 768px) {
    inline-size: 100%;
  }
}

.p-top-about__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}

.p-top-about__listTitle {
  width: 15em;
  position: relative;
}

.p-top-about__listTitle::before {
  content: '';
  width: 2em;
  height: 1px;
  background-color: var(--font-color);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .p-top-about__listTitle::before {
    display: none;
  }
}

.p-top-about__listItem {
  width: calc(100% - 15em - 2em);
  @media (max-width: 768px) {
    width: 100%;
  }
}

.p-top-about__profile {
  display: flex;
  gap: 2em;
  margin-block: 4em;
  @media (max-width: 768px) {
    flex-wrap: wrap;
    gap: 4em;
  }
}

.p-top-about__profileText {
  inline-size: 55%;
  @media (max-width: 768px) {
    inline-size: 100%;
    order: 2;
  }
  p {
    --clamp-min: 16;
    --clamp-max: 18;
  }
}

.p-top-about__profileText p + p {
  margin-block-start: 1.5em;
}

.p-top-about__profileName {
  margin-block-start: 3em !important;
  text-align: right;
  img {
    margin-inline-start: auto;
  }
}

.p-top-about__profileImg {
  position: relative;
  inline-size: 45%;
  @media (max-width: 768px) {
    inline-size: 100%;
    order: 1;
  }
}

.p-top-about__profileImgDeco {
  position: absolute;
}

.p-top-about__profileImgDeco01 {
  top: -5%;
  right: -10%;
  inline-size: 8em;
}

.p-top-about__profileImgDeco02 {
  bottom: -8%;
  left: -8%;
  inline-size: 7em;
}

.p-top-about__table {
  border-collapse: collapse;
  width: 100%;
}
.p-top-about__table tr {
  background-color: #fff;
}
.p-top-about__table tr:nth-child(odd) {
  background-color: #f5f5f5;
}
.p-top-about__table th,
.p-top-about__table td {
  padding: 1em 2em;
  @media (max-width: 768px) {
    display: block;
    width: 100%;
  }
}
.p-top-about__table th {
  font-weight: 500;
  text-align: left;
  width: 20%;
  min-width: 4em;
  vertical-align: top;
  @media (max-width: 768px) {
    width: 100%;
    padding-bottom: 0;
    font-weight: 600;
  }
}

/*------------------
map
------------------*/
.p-top-map {
  margin-block: -2em 6em;
  position: relative;
  z-index: 1;
}
.p-top-map iframe {
  width: 100%;
  height: 400px;
}

/*------------------
news
------------------*/
.p-top-news {
  margin-block-end: 8em;
  @media (max-width: 768px) {
    margin-block-end: 4em;
  }
  .illust-tit {
    display: flex;
    justify-content: space-between;
  }
}

.p-top-news__deco {
  @media (max-width: 768px) {
    inline-size: 120px;
  }
}

/* ===================
アコーディオン details/summary
====================== */
/* アコーディオン全体 */
.details {
}

/* アコーディオンの間隔 */
.details + .details {
  margin-top: 1em;
}

/* 三角アイコン削除（Safari） */
summary::-webkit-details-marker {
  display: none;
}

/* タイトル */
.summary {
  cursor: pointer;
  background-color: #fff;
  padding: 1.5em 2em;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1em;
  font-weight: 600;
  --clamp-min: 16;
  --clamp-max: 20;
  /* アイコンのはみ出し防止 */
  overflow: hidden;
}

/* アイコン共通 */
.summary::before,
.summary::after {
  /* アイコンの位置:1or2 */
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  content: '';
  width: 18px;
  border-bottom: 1px solid #333;
}

/* アイコン（クローズ時） */
.summary::before {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}

/* アイコン（オープン時） */
.is-open > .summary::before {
  transform: rotate(0deg);
}

.date {
  display: block;
  font-family: var(--font-montserrat);
  color: #6f7579;
  --clamp-min: 14;
  --clamp-max: 14;
}

/* コンテンツ */
.details-content {
  background-color: #fff;
  box-sizing: content-box;
  overflow: hidden;
  margin: 0;
  opacity: 0;
  min-height: 0.1px; /* 高さが0になるとスクリーンリーダーに認識されなくなるため */
  transition: padding 0.2s ease 0.1s, max-height 0.3s, opacity 0.7s;
}

/* コンテンツ（オープン時） */
.is-open > .details-content {
  padding: 0 40px 40px;
  opacity: 1;
  transition: padding 0.3s, max-height 0.3s, opacity 0.7s;
}

/*------------------
contact
------------------*/

.p-top-contact {
  background: #18538a;
  padding-block: 4em;
  .m-tit {
    span {
      color: #fff;
    }
  }
  .m-tit__en::after {
    content: '';
    background-color: #fff;
  }
}

.p-top-contact__contents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
  gap: 2em;
}

.p-top-contact__contentsLink {
  border-radius: 7px;
  p {
    color: #fff;
    text-align: center;
  }
  a {
    display: block;
    padding: 3em 2em;
    background: #174a7b;
    height: 100%;
    transition: 0.3s;
    @media (max-width: 768px) {
      padding: 2em;
    }
  }
  a:hover {
    opacity: 0.6;
  }
}

.p-top-contact__contentsTelMain {
  display: flex;
  gap: 0.5em;
  align-items: center;
  justify-content: center;
  --clamp-min: 30;
  --clamp-max: 40;
  font-family: var(--font-montserrat);
  margin-block-end: 15px;
  color: #fff;
  p {
    color: #fff;
  }
}

.p-top-contact__contentsMailMain {
  display: flex;
  gap: 0.5em;
  align-items: center;
  justify-content: center;
  --clamp-min: 30;
  --clamp-max: 36;
  margin-block-end: 15px;
  p {
    color: #fff;
  }
}

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

.l-footer {
  padding-block: 6em 3em;
  background-image: url('../img/common/bg.png');
  background-repeat: repeat;
  background-size: contain;
  @media (max-width: 768px) {
    padding-block: 3em;
  }
}

.l-footer__logo {
  inline-size: 250px;
  margin-block-end: 2em;
  a {
    transition: 0.3s;
    &:hover {
      opacity: 0.6;
    }
  }
}

.l-footer__block {
  display: flex;
  justify-content: space-between;
  align-items: end;
  @media (max-width: 768px) {
    flex-wrap: wrap;
  }
}

.l-footer__blockAddress {
  p + p {
    margin-block-start: 1em;
  }
}

.l-footer__blockInfo {
  text-align: right;
  @media (max-width: 768px) {
    inline-size: 100%;
  }
}

.l-footer__link {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 1em;
  margin-block-end: 1em;
}

.l-footer-instagram {
  transition: 0.3s;
  &:hover {
    opacity: 0.6;
  }
  img {
    inline-size: 20px;
  }
}

.l-footer-note {
  transition: 0.3s;
  &:hover {
    opacity: 0.6;
  }
  img {
    inline-size: 80px;
  }
}

.l-footer__copyright {
  --clamp-min: 12;
  --clamp-max: 12;
  @media (max-width: 768px) {
    inline-size: 100%;
  }
}
