/* 
共通
*/

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif, "Helvetica Neue", "Helvetica",
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo",
    sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
  letter-spacing: 0.02em;
}

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

.sp,
.sp__br {
  display: none;
}

/* ボタン */

.button {
  display: block;
  width: 100%;
  padding: 20px;
  margin: 0 auto;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  border-radius: 8px;
  cursor: pointer; /*hrefが入らない場合*/
  transition-duration: 0.2s;
}

.button__primary {
  color: #fff;
  background-color: #fa8200;
}

@media (hover: hover) {
  .button__primary:hover {
    background-color: #f47100;
  }
}

.button__secondary {
  color: #fa8200;
  background-color: #fff;
  border: #fa8200 1px solid;
}

@media (hover: hover) {
  .button__secondary:hover {
    background-color: #fff4e0;
  }
}

.text-link {
  color: #fa8200;
  text-decoration: underline;
}

@media (hover: hover) {
  .text-link:hover {
    opacity: 0.8;
  }
}

.note {
  font-size: 14px;
  padding-left: 1em;
  text-indent: -1em;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-top: 8px;
}

.note > li {
  margin-top: 2px;
}

@media only screen and (max-width: 768px) {
  .pc,
  .pc__br {
    display: none;
  }
  .sp,
  .sp__br {
    display: block;
  }
}

/*
テーブル
*/

table,
tr,
th,
td {
  border: #d8d8db 1px solid;
  padding: 8px;
  vertical-align: middle;
}

table {
  table-layout: fixed;
  width: 100%;
}

tr {
  height: 80px;
}

th {
  background-color: #fafafa;
}

/*
フォーム
*/

input:not([type="radio"]),
textarea,
select {
  width: 100%;
  height: 56px;
  padding: 16px 12px;
  line-height: 1;
  border-radius: 8px;
  border: 1px solid #1c1c1c;
}

input:not([type="radio"]):focus,
textarea:focus,
select:focus {
  outline: solid 2px #0017c1;
}

.input__half {
  max-width: 172px;
}

.input__cap {
  font-weight: 500;
  padding-left: 8px;
}

.select__wrap {
  position: relative;
}

.select__wrap::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 28px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #1a1a1a;
  border-left: 1px solid #1a1a1a;
  transform: translateY(-50%) rotate(-135deg);
  pointer-events: none;
}

/* ラジオボタン */

.radio-button {
  position: relative;
  display: block;
  height: 56px;
  cursor: pointer;
}

.radio-button:nth-of-type(n + 2) {
  margin-top: 6px;
}

.radio-button input {
  position: absolute;
  appearance: none;
}

.radio-button span {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  border: 1px solid #1a1a1c;
  border-radius: 8px;
  font-weight: 500;
  padding-left: 54px;
}

@media (hover: hover) {
  .radio-button span:hover {
    background-color: #e8f1fe;
  }
}

.radio-button span {
  font-weight: 500;
  padding-left: 54px; /* 左側のボタン設置スペース確保のための設定 */
}

.radio-button span::before,
.radio-button input:checked + span::before {
  content: "";
  width: 20px; /* 白い丸の横の長さ */
  height: 20px; /* 白い丸の縦の長さ */
  border-radius: 50%; /* 丸くするための設定 */
  border: #1a1a1a 1px solid;
  position: absolute; /* 位置調整の起点をlabelの左上の角とするための設定 */
  top: 50%;
  left: 26px;
  transform: translate(
    -50%,
    -50%
  ); /* topとleftが丸の中心を基準とするための設定 */
}

.radio-button input:checked + span {
  border: 1px solid #0017c1;
  outline: 1px solid #0017c1;
}

.radio-button input:focus + span {
  outline: 2px solid #0017c1;
}

.radio-button input:checked + span::before {
  border: #0017c1 2px solid;
}

.radio-button input:checked + span::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #0017c1;
  position: absolute;
  top: 50%;
  left: 26px;
  transform: translate(-50%, -50%);
}

.radio-button input:checked + span {
  outline: solid 2px #0017c1;
}

/* チェックボックス */

.checkbox__label {
  display: flex;
  align-items: center;
  padding: 18px;
  cursor: pointer;
  border: 1px solid #1a1a1c;
  border-radius: 8px;
}

@media (hover: hover) {
  .checkbox__label:hover {
    background-color: #e8f1fe;
  }
}

input[type="checkbox"] {
  width: inherit;
  height: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  padding: inherit;
  border: inherit;
  border-radius: inherit;
  box-sizing: inherit;
  min-width: 20px;
  min-height: 20px;
  accent-color: #0017c1;
  cursor: pointer;
  outline: none;
}

.checkbox__label__text {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  padding-left: 16px;
}

@media only screen and (max-width: 768px) {
  .checkbox__label {
    padding: 15px 20px;
  }

  .checkbox__label__text {
    font-size: 16px;
  }
}

/* タブ - 全体 */

.tab-container {
  margin: 0 auto;
}

/* タブ - ボタン */

.tab-buttons {
  display: flex;
  border-bottom: 1px solid #ccc;
}

.tab-btn {
  flex: 0 0 50%;
  padding: 16px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.4;
  background: #fff;
  border-bottom: 3px solid transparent;
  text-align: center;
}

.tab-btn:not(.active):hover {
  background: #f2f2f2;
}

.tab-btn.active {
  border-bottom: 3px solid #fa8200;
  color: #fa8200;
  cursor: default;
}

/* タブ - 中身 */

.tab-content {
}

.tab-content-item {
  display: none;
}

.tab-content-item.active {
  display: block;
}

.tab-heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 24px;
  margin-bottom: 4px;
}

.tab-text {
  margin-bottom: 16px;
}

/*
ヘッダー
*/

header {
  width: 100%;
  padding: 0 24px;
}

.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.header__logo {
  display: block;
  width: auto;
  height: 40px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
}

.header__text {
  padding: 0 4px;
  transition-duration: 0.2s;
}

@media (hover: hover) {
  .header__text:hover {
    opacity: 0.8;
  }
}

.header__button {
  font-size: 14px;
  padding: 16px;
  min-width: 136px;
}

.header__button--contact {
  margin-left: 2px;
}

.hamburger {
  display: none;
}
@media only screen and (max-width: 1200px) {
  header {
    width: 100%;
    padding: 0 16px;
  }

  .header__wrap {
    height: 72px;
  }

  .header__logo {
    height: 40px;
  }

  header nav {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    padding-top: 72px;
    background-color: #fff;
    transition: all 0.6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }

  .header__button {
    font-size: 16px;
    padding: 20px;
  }

  .header__button--contact {
    margin-left: inherit;
    margin-top: 32px;
  }

  .hamburger {
    display: initial;
    position: absolute;
    right: 0;
    top: 0;
    width: 72px; /* クリックしやすい幅 */
    height: 72px; /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
  }

  .hamburger__border {
    position: absolute;
    left: 24px;
    width: 24px;
    height: 2px;
    transition: all 0.2s;
    background-color: #333;
  }
  .hamburger__border--top {
    top: 29px;
  }
  .hamburger__border--center {
    top: 35px;
  }
  .hamburger__border--bottom {
    top: 41px;
  }

  /* 表示された時用のCSS */
  .nav-open nav {
    display: block;
    right: 0;
    z-index: 4;
  }
  .nav-open .hamburger__border--top {
    transform: rotate(45deg);
    top: 35px;
    background-color: #333333;
  }
  .nav-open .hamburger__border--center {
    width: 0;
    left: 50%;
    background-color: #333333;
  }
  .nav-open .hamburger__border--bottom {
    transform: rotate(-45deg);
    top: 35px;
    background-color: #333333;
    margin-bottom: 15px;
  }

  .nav-open header nav ul {
    display: block;
    text-align: left;
    padding: 0 16px;
  }

  .nav-open header nav ul li {
    margin-bottom: 16px;
  }
}

/*
タイトル
*/

.title__section {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  padding: 40px;
  background-color: #f8f8f8;
  text-align: center;
}

.title__caption {
  font-size: 24px;
}

@media only screen and (max-width: 768px) {
  .title__section {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    padding: 24px;
  }

  .title__caption {
    font-size: 18px;
  }
}

/*
ステップバー
 */

.timeline__section {
  padding: 0 24px;
  margin-top: 40px;
}

.timeline__wrap {
  max-width: 544px;
  margin: 0 auto;
}

.timeline__list {
  display: flex;
  justify-content: center;
}

.timeline__list li {
  display: flex;
  flex: 1 1;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  color: #b8b8b8;
  font-size: 14px;
  font-weight: 700;
}

.timeline__list li.prev,
.timeline__list li.current {
  color: #fa8200;
}

.timeline__list li::before {
  content: ""; /*何も入れない*/
  display: inline-block;
  width: 24px; /*画像の幅*/
  height: 24px; /*画像の高さ*/
  background-image: url(../images/timeline.png);
  background-size: contain;
  vertical-align: middle;
}

.timeline__list li.prev::before {
  background-image: url(../images/timeline-prev.png);
}

.timeline__list li.current::before {
  background-image: url(../images/timeline-current.png);
}

.timeline__list li:not(:last-child)::after {
  position: absolute;
  top: 11px;
  left: 50%;
  z-index: -1;
  width: 100%;
  height: 2px;
  background-color: #b8b8b8;
  content: "";
}

.timeline__list li.prev::after {
  background-color: #fa8200;
}

@media only screen and (max-width: 768px) {
  .timeline__section {
    padding: 0 8px;
    margin-top: 32px;
  }
  .timeline__list li {
    font-size: 13px;
    font-weight: 500;
  }
}

/* ノティス */

.form__notice {
  padding: 16px;
  border: solid 3px #d52103;
  border-radius: 12px;
  margin-top: 40px;
}
.form__notice__heading {
  font-size: 17px;
  font-weight: 700;
}
.form__notice__heading::before {
  content: url("../images/form-notice-img1.svg"); /* アイコン画像を指定 */
  display: inline-block;
  width: 24px; /* アイコンのサイズ */
  height: 24px;
  margin-right: 8px; /* 見出しとの間隔 */
  vertical-align: -5px; /* 2px 上に調整 */
}
.form__notice__text {
  margin-top: 8px;
}

.form__image {
  display: block;
  margin-top: 40px;
}

/* 種別選択画面 */

.entrance__section {
  padding: 0 24px;
  margin-top: 40px;
}

.entrance__wrap {
  max-width: 736px;
  margin: 0 auto;
}

.entrance__heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin: 32px 0 16px;
}

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

.entrance__column__item {
  flex: 1;
  background-color: #fff6e8;
  border-radius: 8px;
  padding: 32px;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}

.entrance__button {
  margin-top: 16px;
  margin-bottom: 8px;
}

.entrance__tel {
  font-size: 42px;
  font-weight: 700;
  color: #fa8200;
  line-height: 1.2;
  margin-top: 8px;
}

@media (hover: hover) {
  .entrance__tel > a:hover {
    color: #f47100;
  }
}

.entrance__tel__note {
  font-size: 14px;
  font-weight: 700;
  margin-top: 12px;
}
.entrance__tel__note > span {
  font-size: 13px;
}

@media only screen and (max-width: 768px) {
  .entrance__section {
    padding: 0 16px;
    margin-top: 24px;
  }

  .entrance__heading {
    font-size: 20px;
    margin: 42px 0 16px;
  }

  .entrance__column {
    display: block;
  }

  .entrance__column__item {
    padding: 32px 16px;
  }

  .entrance__column__item:nth-child(2) {
    margin-top: 16px;
  }
}

/* 
入力（共通）
*/

/* バリデーションエラー */

.error-message {
  display: block;
}

.formError {
  z-index: 1 !important;
}

form#form .formErrorContent {
  min-width: initial;
  color: #ec0000;
  font-size: 14px;
  padding: 0;
  margin-top: 8px;
  background-color: initial;
  cursor: auto;
}

/* JavaScript無効時 */
.message__section {
  padding: 0 24px;
  margin-top: 40px;
}

.message__wrap {
  max-width: 544px;
  margin: 0 auto;
  color: #ec0000;
  font-weight: 700;
  background-color: #ffdada;
  padding: 24px;
}

#js-form__button--submit {
  display: none;
}

.button:disabled {
  pointer-events: none;
  color: #fff;
  background-color: #b3b3b3;
}

/* フォーム */

.form__section {
  padding: 0 24px;
  margin-top: 40px;
}
.form__wrap {
  max-width: 544px;
  margin: 0 auto;
}

.form__heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin: 42px 0 24px;
}

.form__list__item {
  margin-bottom: 32px;
}

.form__list__item__label {
  display: block;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 2px;
}

.form__list__item__label > span {
  font-size: 16px;
  font-weight: 500;
  padding-left: 8px;
  color: #ec0000;
}

.form__button--submit {
  margin-top: 48px;
}

.form__button--return {
  text-align: center;
  margin-top: 24px;
}

.return__text-link {
  color: #7f7f7f;
  font-weight: 700;
}

/* モーダル用リンク */

.form__list__text-link__wrap {
  text-align: right;
  margin-top: 4px;
}

.form__list__text-link {
  font-size: 14px;
  color: #0017c1;
  text-decoration: none;
  text-align: right;
}

.form__list__text-link::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 3px;
  background-image: url("../images/form-info.svg");
  background-position: center;
  background-size: contain;
  vertical-align: -2px;
}

@media only screen and (max-width: 768px) {
  .form__section {
    padding: 0 16px;
  }
  .form__heading {
    font-size: 20px;
  }

  .form__list__item {
    margin-bottom: 28px;
  }

  .form__list__item__label {
    margin-bottom: 4px;
  }

  .form__button--submit {
    margin-top: 40px;
  }
}

/* モーダル - 全体 */

body.nav-open {
  overflow: hidden;
}

.modalArea {
  display: none;
  position: fixed;
  z-index: 20; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: calc(100% - 48px);
  max-width: 624px;
  height: 90%;
  padding: 64px 40px 40px 40px;
  background-color: #fff;
  overflow: auto;
  overflow-y: scroll;
}

.closeModal {
  font-size: 40px;
  font-weight: lighter;
  position: absolute;
  top: 0;
  right: 16px;
  cursor: pointer;
}

/* 電力エリア - モーダル - コンテンツ */

.modal__heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 24px;
  margin-bottom: 8px;
}

@media only screen and (max-width: 768px) {
  /* モーダルCSS */
  .modalArea {
    display: none;
    position: fixed;
    z-index: 10; /*サイトによってここの数値は調整 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .modalBg {
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 30, 0.9);
  }

  .modalWrapper {
    width: calc(100% - 32px);
    padding: 52px 16px 16px;
    height: 90%;
  }

  .closeModal {
    position: absolute;
    top: 0.5;
    right: 1;
    cursor: pointer;
    font-size: 30px;
  }
}

/* モーダル - タブ */

.modal__tab__wrap {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  padding: 0 0 20px;
}

.modal__tab__label {
  line-height: 1.4;
  color: #333333;
  cursor: pointer;
  flex: 1;
  font-weight: 700;
  order: -1;
  padding: 16px 0;
  position: relative;
  text-align: center;
  border-bottom: #949494 1px solid;
}

.modal__tab__label:hover {
  background: #f2f2f2;
}

.modal__tab__switch:checked + .modal__tab__label {
  color: #fa8200;
}

.modal__tab__label::after {
  background: #fa8200;
  bottom: 0;
  content: "";
  display: block;
  height: 3px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.modal__tab__switch:checked ~ .modal__tab__label::after {
  transform: translateX(-100%);
}

.modal__tab__switch:checked + .modal__tab__label::after {
  opacity: 1;
  transform: translateX(0);
}

.modal__tab__content {
  height: 0;
  opacity: 0;
  pointer-events: none;
  width: 100%;
}

.modal__tab__switch:checked ~ .modal__tab__content {
  transform: translateX(30%);
}

.modal__tab__switch:checked + .modal__tab__label + .modal__tab__content {
  height: auto;
  opacity: 1;
  order: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.modal__tab__switch {
  display: none;
}

/* モーダル - コンテンツ */

.modal__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}

.modal__heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 32px;
  margin-bottom: 12px;
}

.modal__text {
  margin-top: -4px;
  margin-bottom: 16px;
}

/* 
入力 1
*/

.form__lead {
  background-color: #fff6e8;
  border-radius: 8px;
  padding: 40px 24px;
  text-align: center;
  margin-top: -16px;
  margin-bottom: 12px;
}

.form__lead__heading {
  font-size: 18px;
  font-weight: 700;
}

.form__lead__column {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-top: 24px;
}

.form__lead__column__item > p {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 8px;
  margin-bottom: 8px;
}

.form__lead__column__item:nth-child(2n + 1) {
  flex: 1;
}

.form__lead__text {
  margin: -4px 0 24px;
}
.form__lead__text > span {
  color: #fa8200;
}

.form__lead__note {
  margin-top: 12px;
}

@media only screen and (max-width: 768px) {
  .form__lead {
    padding: 32px 16px;
  }

  .form__lead__heading {
    font-size: 17px;
  }

  .form__lead__column {
    margin-top: 16px;
  }
}

/* 
入力 3
*/

.form__list__item__note--caution {
  color: #ec0000;
}

.form__tel__column {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.input-tel__hyphen {
  padding-top: 12px;
}

/* 
入力 4
*/

.important__text {
  margin-top: -8px;
  margin-bottom: 24px;
}

.important__list {
  margin-top: 40px;
}

.important__button {
  margin-top: 12px;
  line-height: 1.5;
}

/* 
確認
*/

.confirm__section {
  padding: 0 24px;
  margin-top: 40px;
}
.confirm__wrap {
  max-width: 544px;
  margin: 0 auto;
}

.confirm__heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin: 42px 0 32px;
}

.confirm__list {
  margin-bottom: 40px;
}

.confirm__list__item {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: #d8d8db 1px solid;
}

.confirm__list__item:has(p:empty, a:empty) {
  padding-bottom: 52px;
}

.confirm__label {
  font-weight: 500;
  color: #636363;
}

.confirm__value {
  font-size: 17px;
  font-weight: 500;
  margin-top: 2px;
}

.confirm__list__item__mail {
  font-size: 24px !important;
  word-break: break-all;
}

@media only screen and (max-width: 768px) {
  .confirm__section {
    padding: 0 16px;
  }

  .confirm__heading {
    margin: 42px 0 24px;
  }

  .confirm__list {
    margin-bottom: 40px;
  }
}

/* 
完了画面
*/

.thanks__section {
  padding: 0 24px;
  margin-top: 52px;
}

.thanks__wrap {
  max-width: 544px;
  margin: 0 auto;
}

.thanks__heading {
  padding: 40px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #fa8200;
  background-color: #fff6e8;
  margin-top: 40px;
  margin-bottom: 24px;
}

.thanks__text > p {
  margin-bottom: 16px;
}

.thanks__button {
  margin-top: 40px;
}

@media only screen and (max-width: 768px) {
  .thanks__section {
    padding: 0 16px;
    margin-top: 48px;
  }
}

/*
コンタクト
*/

.contact__section {
  background-color: #f8f8f8;
  padding: 40px 24px;
  margin-top: 80px;
}

.contact__culumn {
  display: flex;
  gap: 16px;
}

.contact__culumn__item {
  width: 100%;
  background-color: #fff;
  padding: 40px;
  margin: 0 auto;
  text-align: center;
  border-radius: 8px;
}
.contact__heading {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.contact__tel {
  font-size: 46px;
  font-weight: 700;
  color: #fa8200;
  line-height: 1.2;
}

@media (hover: hover) {
  .contact__tel > a:hover {
    color: #f47100;
  }
}

.contact__tel__note {
  font-size: 14px;
  font-weight: 700;
  margin-top: 8px;
}

.contact__button {
  max-width: 356px;
  margin-top: 8px;
  margin-bottom: 8px;
  line-height: 1.2;
}
.contact__button > span {
  font-size: 14px;
}

@media only screen and (max-width: 768px) {
  .contact__section {
    padding: 40px 16px;
    margin-top: 64px;
  }
  .contact__culumn {
    display: block;
  }
  .contact__culumn__item {
    padding: 40px 16px;
  }
  .contact__culumn__item:nth-child(2) {
    margin-top: 16px;
  }
  .contact__tel {
    font-size: 40px;
  }
  .contact__tel__note {
    font-size: 14px;
  }

  .contact__button {
    max-width: inherit;
  }
}

/* 
フッター
*/

.footer__section {
  background-color: #424242;
  padding: 0 16px;
}

.footer__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.footer__sns {
  display: flex;
  gap: 16px;
}

.footer__sns img {
  display: block;
  width: 24px;
  height: 24px;
  transition: 0.2s;
}

@media (hover: hover) {
  .footer__sns img:hover {
    opacity: 0.8;
  }
}

.footer__sitemap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__sitemap__item {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  transition: 0.2s;
}

.footer__sitemap__item__text__link {
  text-decoration: none;
}

@media (hover: hover) {
  .footer__sitemap__item:hover {
    opacity: 0.8;
  }
}

.footer__copyright {
  font-size: 10px;
  color: #fafafa;
}

@media only screen and (max-width: 768px) {
  .footer__wrap {
    display: block;
    padding: 64px 0;
  }

  .footer__sitemap {
    display: block;
    margin-top: 40px;
  }

  .footer__sitemap__item {
    margin-top: 16px;
  }

  .footer__sns {
    gap: 20px;
  }

  .footer__sns img {
    width: 32px;
    height: 32px;
  }

  .footer__copyright {
    margin-top: 40px;
  }
}
