@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 170%;
  font-weight: 300;
}

.inner {
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 40px;
  }
}

.header {
  height: 90px;
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .header {
    height: 100px;
  }
}

.header_inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 5px;
}

.header_logo a {
  display: inline-block;
  padding: 7px 10px;
  background-color: #ffe1e7;
  border-radius: 8px;
  text-align: center;
  line-height: 1.2;
  font-size: 15px;
  font-weight: bold;
  color: #4c4545;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .header_logo a {
    font-size: 18px;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .header_logo a:hover {
    opacity: 0.6;
  }
}

.header_icon {
  all: unset;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .header_icon {
    display: none;
  }
}

.header_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffe1e7;
  width: 270px;
  height: calc(100% - 90px);
  position: fixed;
  right: 0;
  top: 90px;
  padding: 32px 15px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.header_nav.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .header_nav {
    background: transparent;
    width: auto;
    height: auto;
    position: static;
    padding: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.header_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .header_nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}

.header_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .header_lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 46px;
  }
}

.header_link {
  display: inline-block;
  padding-block: 8px;
  color: #4c4545;
  font-size: 18px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .header_link {
    color: #4c4545;
    font-size: 16px;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header_link:hover {
    color: #ffc5e1;
  }
}

.header_link .pc {
  display: none;
}

.header_link .sp {
  display: inline;
}

@media screen and (min-width: 768px) {
  .header_link .pc {
    display: inline;
  }
  .header_link .sp {
    display: none;
  }
}
.drawer-icon {
  width: 30px;
  height: 18px;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon_bar:nth-child(1), .drawer-icon.is-checked .drawer-icon_bar:nth-child(3) {
  top: 9px;
}
.drawer-icon.is-checked .drawer-icon_bar:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon_bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.drawer-icon.is-checked .drawer-icon_bar:nth-child(2) {
  display: none;
}

.drawer-icon_bar {
  position: absolute;
  width: 30px;
  height: 3px;
  left: 0;
  background: #ffc5e1;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, transform 0.4s;
  transition: top 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
.drawer-icon_bar:nth-child(1) {
  top: 0;
}
.drawer-icon_bar:nth-child(2) {
  top: 8px;
}
.drawer-icon_bar:nth-child(3) {
  top: 16px;
}

.drawer-contact {
  margin-top: 40px;
  text-align: center;
  display: block;
}
@media screen and (min-width: 768px) {
  .drawer-contact {
    display: none;
  }
}
.drawer-contact .drawer-contact_btn {
  display: inline-block;
  background-color: #fff;
  color: #4c4545;
  font-weight: bold;
  font-size: 18px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.drawer-contact .drawer-contact_btn:hover {
  background-color: rgb(255, 146, 198.6206896552);
}

.drawer-icon-footer {
  margin-top: 20px;
  text-align: center;
  display: block;
}
@media screen and (min-width: 768px) {
  .drawer-icon-footer {
    display: none;
  }
}
.drawer-icon-footer .drawer-x-icon {
  width: 50px;
  height: auto;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.drawer-icon-footer .drawer-x-icon:hover {
  opacity: 0.7;
}

.drawer-contact,
.drawer-icon-footer {
  display: block;
}
@media screen and (min-width: 768px) {
  .drawer-contact,
  .drawer-icon-footer {
    display: none;
  }
}

.fv {
  margin-top: 40px;
  background: url(../img/background.jpg) no-repeat center center/cover;
  position: relative;
  padding-block: 100px 180px;
  width: 100%;
}

.fv_inner {
  padding: 40px;
}

.fv-title {
  display: block;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-size: 28px;
  background-color: #fff;
  border-radius: 8px;
  font-weight: 600;
  padding: 12px 24px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.4;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-left: 0;
  margin-right: auto;
}
@media screen and (min-width: 375px) and (max-width: 599px) {
  .fv-title {
    font-size: 35px;
  }
}
@media screen and (max-width: 599px) {
  .fv-title {
    margin-inline: auto;
    text-align: center;
  }
}
@media screen and (min-width: 600px) {
  .fv-title {
    font-size: 40px;
    text-align: left;
    margin-inline: 0;
  }
}
@media screen and (min-width: 768px) {
  .fv-title {
    font-size: 36px;
  }
}
@media screen and (min-width: 900px) {
  .fv-title {
    font-size: 42px;
  }
}

.br-sp3,
.br-sm2 {
  display: none;
}

@media screen and (max-width: 599px) {
  .br-sp3,
  .br-sm2 {
    display: inline;
  }
}
@media screen and (min-width: 600px) and (max-width: 767px) {
  .br-sp3 {
    display: inline;
  }
  .br-sm2 {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .br-sp3,
  .br-sm2 {
    display: none;
  }
}
.fv_text-box {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  border: 2px solid #ffc5e1;
  padding: 24px 16px;
  margin-top: 200px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #4c4545;
  line-height: 1.8;
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (min-width: 768px) {
  .fv_text-box {
    font-size: 20px;
    padding: 32px 24px;
  }
}
@media screen and (min-width: 900px) {
  .fv_text-box {
    font-size: 23px;
  }
}

/* セクション全体 */
.works-section {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

/* 日本語タイトル（大きく・太く） */
.section-title .ja-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 27px;
  color: #333;
  letter-spacing: 5px;
  margin-bottom: 10px;
}

/* 英語サブタイトル（飾り・おしゃれ） */
.section-title .en-title {
  font-size: 20px;
  color: #a89f9f;
  letter-spacing: 1.5;
  position: relative;
  display: inline-block;
}

/* 英語タイトルに線をつけて飾る */
.section-title .en-title::before,
.section-title .en-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: #ccc;
}

.section-title .en-title::before {
  left: -50px;
}

.section-title .en-title::after {
  right: -50px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

section {
  scroll-margin-top: 90px;
}

/* スライダー全体の余白とセンタリング */
.works_slider {
  padding: 60px 20px;
  background-color: rgba(248, 247, 247, 0.9725490196);
  max-width: 1200px;
  margin: 0 auto;
}

/* Swiper本体の高さ調整（必要なら） */
.works_swiper {
  padding-bottom: 40px; /* ページネーションの分 */
}

/* 各スライドのスタイル */
.works_slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* カードデザイン */
.works-card {
  width: 300px;
  background-color: #f9f9f9;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  -webkit-transition: width 0.3s, -webkit-transform 0.3s;
  transition: width 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, width 0.3s;
  transition: transform 0.3s, width 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 600px) {
  .works-card {
    width: 380px;
  }
}
@media screen and (min-width: 768px) {
  .works-card {
    width: 480px;
  }
}
@media screen and (min-width: 900px) {
  .works-card {
    width: 600px;
  }
}
.works-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.works-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

/* カード内の画像 */
.works-card_image img {
  width: 100%;
  height: auto;
  display: block;
}

/* カードのテキスト */
.works-card_text {
  padding: 16px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  text-align: center;
}

/* ページネーションのデザイン */
.gallery_pagination {
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 100%;
}

.gallery_pagination .swiper-pagination-bullet {
  background: #999;
  opacity: 1;
}

.gallery_pagination .swiper-pagination-bullet-active {
  background: #333;
}

/* ナビゲーション矢印のカスタム */
.gallery_prev,
.gallery_next {
  color: #333;
  width: 40px;
  height: 40px;
}

/* ↓ デフォルトの矢印を非表示にする */
.gallery_prev::after,
.gallery_next::after {
  display: none;
}

/* 矢印画像の共通スタイル */
.arrow {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 600px) {
  .arrow {
    width: 70px;
    height: 70px;
  }
}
@media screen and (min-width: 768px) {
  .arrow {
    width: 90px;
    height: 90px;
  }
}
@media screen and (min-width: 900px) {
  .arrow {
    width: 110px;
    height: 110px;
  }
}

.arrow-next {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* ナビゲーション位置調整 */
.gallery_prev,
.gallery_next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

/* 左矢印：左側に配置 */
.gallery_prev {
  left: -3px;
}

/* 右矢印：右側に配置 */
.gallery_next {
  right: -3px;
}

.service-plan {
  margin-bottom: 30px;
  font-size: 17px;
}
@media screen and (min-width: 768px) {
  .service-plan {
    font-size: 19px;
  }
}

.service_cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  padding: 20px 0;
}
@media screen and (min-width: 1200px) {
  .service_cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.service_card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  padding: 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .service_card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .service_card.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1200px) {
  .service_card.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.service_card.reverse .service-card_image img {
  margin-top: 20px;
}

.service-card_image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .service-card_image {
    margin-bottom: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
}
.service-card_image img {
  display: inline-block;
  max-width: 300px;
  width: 80%;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .service-card_image img {
    max-width: 100px;
    margin: 0;
    -ms-flex-item-align: center;
        align-self: center;
  }
}

.service_card-text {
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 8px;
  padding: 16px;
  background-color: #feedf5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .service_card-text {
    text-align: left;
  }
}
.service_card-text .service-card_head {
  font-weight: bold;
  border-bottom: 2px solid #E7728E;
  font-size: 20px;
  margin-bottom: 8px;
  text-align: center;
}
.service_card-text .service-card_body {
  font-size: 15px;
  line-height: 1.6;
}

#flow {
  background-color: #fdf6fa;
}

.number {
  font-size: 30px;
  margin-bottom: 8px;
  font-weight: bold;
  border-bottom: 2px solid #E7728E;
}

.flow-card_head {
  font-weight: bold;
  border-bottom: 2px solid #E7728E;
  font-size: 23px;
  margin-top: 30px;
  margin-bottom: 12px;
}

.flow-card_body {
  font-size: 14px;
  line-height: 1.6;
}

.flow_cards {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
}

.flow_card {
  margin-bottom: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

@media screen and (min-width: 768px) {
  .flow_cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 24px;
  }
  .flow_card {
    width: 40%;
  }
}
.flow-card_image img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 200px;
  border-radius: 4px;
}

.about_title {
  margin-top: 30px;
}

.about_name {
  border-bottom: 2px solid #E7728E;
  margin-bottom: 13px;
}
@media screen and (min-width: 768px) {
  .about_name {
    font-size: 20px;
  }
}

.about_text {
  font-size: 14px;
}

.about_profile img {
  width: 300px;
  height: auto;
}

#contact {
  padding-block: 56px;
  background-color: #fdf6fa;
}
@media screen and (min-width: 768px) {
  #contact {
    padding-block: 80px;
  }
}

.concept-title {
  text-align: center;
}

.formrun {
  padding: 32px;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
.formrun > div {
  margin-bottom: 24px;
}

label {
  display: inline-block;
  background: #eeebeb;
  color: #111;
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 8px;
}

input[type=text],
textarea {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
input[type=text]:focus,
textarea:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 2px #e7728e;
          box-shadow: 0 0 0 2px #e7728e;
}

#message {
  min-height: 180px;
  resize: vertical;
}

.privacy-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.privacy-label input[type=checkbox] {
  margin-right: 8px;
}
.privacy-label a {
  text-decoration: underline;
  color: inherit;
}

input[type=checkbox] {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  margin-right: 8px;
  accent-color: #111;
}

[data-formrun-show-if-error] {
  color: #e7728e;
  font-size: 13px;
  margin-top: 4px;
}

.privacy-label {
  font-size: 13px;
}

/* 送信ボタン */
.formrun button[type=submit] {
  display: block;
  margin: 40px auto 0;
  padding: 12px 50px;
  background: rgba(76, 69, 69, 0.7);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: background 0.3s, -webkit-transform 0.2s;
  transition: background 0.3s, -webkit-transform 0.2s;
  transition: background 0.3s, transform 0.2s;
  transition: background 0.3s, transform 0.2s, -webkit-transform 0.2s;
}
.formrun button[type=submit]:hover {
  background: #4c4545;
}
.formrun button[type=submit]:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

#privacy-policy {
  padding-top: 100px;
  padding-bottom: 100px;
}

.privacy-policy_content {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  background-color: #fdf6fa;
  padding: 40px 24px;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.privacy-policy_content h3 {
  font-weight: 700;
}

.highlight-link {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ffe0f0));
  background: linear-gradient(transparent 60%, #ffe0f0 60%);
  color: #e7728e;
  text-decoration: none;
  font-weight: bold;
}

.footer {
  padding-block: 40px 7px;
  background: #F7F7F7;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-bottom: 14px;
  }
}

.footer_logo a img {
  width: 100px;
  display: block;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer_logo a img {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .footer_logo a img:hover {
    opacity: 0.6;
  }
}

.footer_copyright {
  font-size: 15px;
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer_copyright {
    margin-top: 28px;
  }
}
.footer_copyright small {
  color: #4c4545;
  font-size: inherit;
}