/* ----------------------------------------------------------------------------------------------------
*  リセット・共通スタイル
* --------------------------------------------------------------------------------------------------*/

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6rem;
  color: #000;
  line-height: 1.6;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

p {
  text-align: justify;
  text-justify: inter-ideograph;
}

.inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .inner {
    padding: 0 4%;
  }
}

.flex_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  --gap: 0px;
}
.flex_box.ai_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex_box.jc_center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flex_box.jc_between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flex_box.ai_end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.flex_box.gap_80 {
  gap: 80px;
  --gap: 80px;
}
.flex_box.gap_50 {
  gap: 50px;
  --gap: 50px;
}
.flex_box.gap_40 {
  gap: 40px;
  --gap: 40px;
}
.flex_box.gap_35 {
  gap: 35px;
  --gap: 35px;
}
.flex_box.gap_30 {
  gap: 30px;
  --gap: 30px;
}
.flex_box.gap_26 {
  gap: 26px;
  --gap: 26px;
}
.flex_box.gap_20 {
  gap: 20px;
  --gap: 20px;
}
.flex_box.gap_14 {
  gap: 14px;
  --gap: 14px;
}
.flex_box.gap_10 {
  gap: 10px;
  --gap: 10px;
}
.flex_box.gap_02 {
  gap: 2px;
  --gap: 2px;
}
@media (max-width: 768px) {
  .flex_box.gap_20_sp {
    gap: 20px !important;
    --gap: 20px !important;
  }
}
@media (max-width: 768px) {
  .flex_box.gap_10_sp {
    gap: 10px !important;
    --gap: 10px !important;
  }
}
@media (max-width: 768px) {
  .flex_box.gap_0_sp {
    gap: 0 !important;
    --gap: 0 !important;
  }
}

.d1 {
  width: 100%;
}

.d2 {
  width: calc((100% - var(--gap, 0px)) / 2);
}

.d3 {
  width: calc((100% - var(--gap, 0px) * 2) / 3);
}

.d4 {
  width: calc((100% - var(--gap, 0px) * 3) / 4);
}

.d5 {
  width: calc((100% - var(--gap, 0px) * 4) / 5);
}

.h100p {
  height: 100%;
}

.w100 {
  width: 100px;
}

.w140 {
  width: 140px;
}

.w260 {
  width: 260px;
}

.w300 {
  width: 300px;
}

.w360 {
  width: 360px;
}

.w560 {
  width: 560px;
}

.w100p {
  width: 100%;
}

@media (max-width: 768px) {
  .w100p_sp {
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .w240p_sp {
    width: 240px !important;
  }
}

.w_auto {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .w_auto {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}

.pad__top1 {
  padding-top: 1em !important;
}

.pad__btm1 {
  padding-bottom: 1em !important;
}

.pad__top2 {
  padding-top: 2em !important;
}

.pad__btm2 {
  padding-bottom: 2em !important;
}

.pad__top3 {
  padding-top: 3em !important;
}

.pad__btm3 {
  padding-bottom: 3em !important;
}

.pad__top4 {
  padding-top: 4em !important;
}

.pad__btm4 {
  padding-bottom: 4em !important;
}

.pad__top5 {
  padding-top: 5em !important;
}

.pad__btm5 {
  padding-bottom: 5em !important;
}

.pad__top6 {
  padding-top: 6em !important;
}

.pad__btm6 {
  padding-bottom: 6em !important;
}

.pad__top7 {
  padding-top: 7em !important;
}

.pad__btm7 {
  padding-bottom: 7em !important;
}

.pad__top8 {
  padding-top: 8em !important;
}

.pad__btm8 {
  padding-bottom: 8em !important;
}

.pad__top9 {
  padding-top: 9em !important;
}

.pad__btm9 {
  padding-bottom: 9em !important;
}

.pad__top10 {
  padding-top: 10em !important;
}

.pad__btm10 {
  padding-bottom: 10em !important;
}

.mrg__top05 {
  margin-top: 0.5em !important;
}

.mrg__top1 {
  margin-top: 1em !important;
}

.mrg__top2 {
  margin-top: 2em !important;
}

.mrg__top3 {
  margin-top: 3em !important;
}

.mrg__top4 {
  margin-top: 4em !important;
}

.mrg__top5 {
  margin-top: 5em !important;
}

.mrg__btm1 {
  margin-bottom: 1em !important;
}

.mrg__btm2 {
  margin-bottom: 2em !important;
}

.mrg__btm3 {
  margin-bottom: 3em !important;
}

.mrg__btm4 {
  margin-bottom: 4em !important;
}

.mrg__left05 {
  margin-left: 0.5em !important;
}

.mrg__left1 {
  margin-left: 1em !important;
}

.mrg__left2 {
  margin-left: 2em !important;
}

.mrg__left3 {
  margin-left: 3em !important;
}

.mrg__right1 {
  margin-right: 1em !important;
}

.mrg__right2 {
  margin-right: 2em !important;
}

.mrg__right3 {
  margin-right: 3em !important;
}

.mrg__right4 {
  margin-right: 4em !important;
}

.mrg__leftn05 {
  margin-left: -0.5em !important;
}

.fs_10 {
  font-size: 1rem;
}

.fs_12 {
  font-size: 1.2rem;
}

.fs_14 {
  font-size: 1.4rem;
}

.fs_16 {
  font-size: 1.6rem;
}

.fs_18 {
  font-size: 1.8rem;
}

.fs_20 {
  font-size: 2rem;
}

.fs_22 {
  font-size: 2.2rem;
}

.fs_24 {
  font-size: 2.4rem;
}

.fs_26 {
  font-size: 2.6rem;
}

.fs_28 {
  font-size: 2.8rem;
}

.fs_30 {
  font-size: 3rem;
}

.fs_32 {
  font-size: 3.2rem;
}

.fs_34 {
  font-size: 3.4rem;
}

.fs_36 {
  font-size: 3.6rem;
}

.fs_38 {
  font-size: 3.8rem;
}

.fs_40 {
  font-size: 4rem;
}

.fs_42 {
  font-size: 4.2rem;
}

.fs_44 {
  font-size: 4.4rem;
}

.fs_46 {
  font-size: 4.6rem;
}

.fs_48 {
  font-size: 4.8rem;
}

.fs_50 {
  font-size: 5rem;
}

.fs_52 {
  font-size: 5.2rem;
}

.fs_54 {
  font-size: 5.4rem;
}

.fs_56 {
  font-size: 5.6rem;
}

.fs_58 {
  font-size: 5.8rem;
}

.fs_60 {
  font-size: 6rem;
}

.fs_62 {
  font-size: 6.2rem;
}

.fs_64 {
  font-size: 6.4rem;
}

.fs_66 {
  font-size: 6.6rem;
}

.fs_68 {
  font-size: 6.8rem;
}

.fs_70 {
  font-size: 7rem;
}

.fs_72 {
  font-size: 7.2rem;
}

.fs_120 {
  font-size: 12rem;
}

.fs_140 {
  font-size: 14rem;
}

.fs_240 {
  font-size: 24rem;
}

.ff_en {
  font-family: "Albert Sans", sans-serif;
}

.lh_1 {
  line-height: 1;
}

.lh_18 {
  line-height: 1.8;
}

.lh_2 {
  line-height: 2;
}

.lh_10 {
  line-height: 1;
}

.lh_11 {
  line-height: 1.1;
}

.lh_12 {
  line-height: 1.2;
}

.lh_13 {
  line-height: 1.3;
}

.lh_14 {
  line-height: 1.4;
}

.lh_15 {
  line-height: 1.5;
}

.lh_16 {
  line-height: 1.6;
}

.lh_17 {
  line-height: 1.7;
}

.lh_18 {
  line-height: 1.8;
}

.lh_19 {
  line-height: 1.9;
}

.lh_20 {
  line-height: 2;
}

.ls_003 {
  letter-spacing: 0.03em;
}

.ls_005 {
  letter-spacing: 0.05em;
}

.ls_008 {
  letter-spacing: 0.08em;
}

.ls_1 {
  letter-spacing: 0.1em;
}

.fw_400 {
  font-weight: 400;
}

.fw_500 {
  font-weight: 500;
}

.fw_600 {
  font-weight: 600;
}

.fw_700 {
  font-weight: 700;
}

.txt_center {
  text-align: center;
}

.txt_center_pc {
  text-align: center;
}
@media (max-width: 768px) {
  .txt_center_pc {
    text-align: left;
  }
}

.img_center {
  margin: 0 auto;
  display: block;
  text-align: center;
}

.block_center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.view_block_sp {
  display: none !important;
}

.fc_main {
  color: #073C96 !important;
}

.fc_sub {
  color: #D0B580 !important;
}

.bg_main {
  background-color: #073C96 !important;
}

.fc_white {
  color: #fff !important;
}

.bg_white {
  background-color: #fff !important;
}

.bg_lgray {
  background-color: #f3f3f3;
}

.fc_black {
  color: #000 !important;
}
@media (max-width: 1200px) {
  .d2_md {
    flex: calc((100% - var(--gap, 0px) * 3) / 2) !important;
  }
}

@media (max-width: 768px) {
  .d1_sp {
    width: 100% !important;
  }
  .d2_sp {
    width: calc((100% - var(--gap, 0px)) / 2) !important;
  }
  .d2_md {
    flex: initial !important;
  }
  .mrg__sp_btm2 {
    margin-bottom: 2em !important;
  }
  .mrg__sp_top05 {
    margin-top: 0.5em !important;
  }
  .mrg__sp_top1 {
    margin-top: 1em !important;
  }
  .mrg__sp_top2 {
    margin-top: 2em !important;
  }
  .mrg__sp_top3 {
    margin-top: 3em !important;
  }
  .mrg__sp_left2 {
    margin-left: 2em !important;
  }
  .fs_10_sp {
    font-size: 1rem !important;
  }
  .fs_12_sp {
    font-size: 1.2rem !important;
  }
  .fs_14_sp {
    font-size: 1.4rem !important;
  }
  .fs_16_sp {
    font-size: 1.6rem !important;
  }
  .fs_18_sp {
    font-size: 1.8rem !important;
  }
  .fs_20_sp {
    font-size: 2rem !important;
  }
  .fs_22_sp {
    font-size: 2.2rem !important;
  }
  .fs_24_sp {
    font-size: 2.4rem !important;
  }
  .fs_26_sp {
    font-size: 2.6rem !important;
  }
  .fs_28_sp {
    font-size: 2.8rem !important;
  }
  .fs_30_sp {
    font-size: 3rem !important;
  }
  .fs_32_sp {
    font-size: 3.2rem !important;
  }
  .fs_34_sp {
    font-size: 3.4rem !important;
  }
  .fs_36_sp {
    font-size: 3.6rem !important;
  }
  .fs_38_sp {
    font-size: 3.8rem !important;
  }
  .fs_40_sp {
    font-size: 4rem !important;
  }
  .fs_42_sp {
    font-size: 4.2rem !important;
  }
  .fs_44_sp {
    font-size: 4.4rem !important;
  }
  .fs_46_sp {
    font-size: 4.6rem !important;
  }
  .fs_48_sp {
    font-size: 4.8rem !important;
  }
  .fs_50_sp {
    font-size: 5rem !important;
  }
  .fs_52_sp {
    font-size: 5.2rem !important;
  }
  .fs_54_sp {
    font-size: 5.4rem !important;
  }
  .fs_56_sp {
    font-size: 5.6rem !important;
  }
  .fs_58_sp {
    font-size: 5.8rem !important;
  }
  .fs_60_sp {
    font-size: 6rem !important;
  }
  .fs_62_sp {
    font-size: 6.2rem !important;
  }
  .fs_64_sp {
    font-size: 6.4rem !important;
  }
  .fs_66_sp {
    font-size: 6.6rem !important;
  }
  .fs_68_sp {
    font-size: 6.8rem !important;
  }
  .fs_70_sp {
    font-size: 7rem !important;
  }
  .fs_72_sp {
    font-size: 7.2rem !important;
  }
  .fs_60_sp {
    font-size: 6rem !important;
  }
  .view_block_sp {
    display: block !important;
  }
  .view_block_pc {
    display: none !important;
  }
}
.u-noscroll {
  overflow: hidden !important;
}

.card_item {
  background: #fff;
  padding: 2rem;
  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);
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.card_item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.card_item img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

/* ----------------------------------------------------------------------------------------------------
*  btn
* --------------------------------------------------------------------------------------------------*/

.btn_1 {
  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;
  gap: 2em;
  width: 100%;
  max-width: 420px;
  height: 80px;
  margin: 0;
  background-color: #073C96;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn_1.btn_center {
  margin-left: auto !important;
  margin-right: auto !important;
}
.btn_1.btn_right {
  margin-left: auto !important;
  margin-right: 0 !important;
}
@media (max-width: 768px) {
  .btn_1 {
    height: 60px;
    gap: 1.2em;
  }
}
.btn_1:hover {
  opacity: 0.8;
}
.btn_1:hover i {
  -webkit-transform: translateX(6px);
          transform: translateX(6px);
}
.btn_1 span {
  color: #fff;
  font-weight: 500;
  font-size: 2rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media (max-width: 768px) {
  .btn_1 span {
    font-size: 1.6rem;
  }
}
.btn_1 i {
  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;
  width: 28px;
  height: 28px;
  background-color: #fff;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 768px) {
  .btn_1 i {
    width: 24px;
    height: 24px;
  }
}
.btn_1 i::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #073C96;
  margin-left: 2px;
}
@media (max-width: 768px) {
  .btn_1 i::after {
    border-width: 4px 0 4px 6px;
  }
}
.btn_1.btn_white {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 2.5em;
  background-color: #fff;
  border: solid 1px #fff;
}
.btn_1.btn_white span {
  color: #073C96;
}
.btn_1.btn_white i {
  background-color: #f3f3f3;
}
.btn_1.btn_white:hover {
  border: solid 1px #073C96;
}
.btn_1.btn_white:hover i {
  -webkit-transform: translateX(6px);
          transform: translateX(6px);
}
.btn_1.btn_wide {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 2.5em;
  max-width: none;
}

.btn_primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #073C96;
  color: #fff;
  padding: 1.5rem 2rem;
  text-decoration: none;
  border-radius: 40px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.btn_primary:hover {
  opacity: 0.7;
}
.btn_primary.btn_arrow {
  position: relative;
}
.btn_primary.btn_arrow i {
  position: absolute;
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* ----------------------------------------------------------------------------------------------------
*  ttl
* --------------------------------------------------------------------------------------------------*/

.ttl_01 {
  position: relative;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.4;
  border-bottom: 2px solid #073C96;
  padding: 0.2em 0 0.4em 35px;
  display: block;
}
.ttl_01::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 15px;
  background-color: #073C96;
  border-right: 5px solid #D0B580;
}
@media (max-width: 768px) {
  .ttl_01 {
    font-size: 2.4rem;
    padding-left: 28px;
  }
  .ttl_01::before {
    width: 10px;
    border-right-width: 3px;
  }
}

/* ----------------------------------------------------------------------------------------------------
*  table
* --------------------------------------------------------------------------------------------------*/
.table_01 {
  width: 100%;
}
.table_01 table {
  width: 100%;
  border-collapse: collapse;
}
.table_01 table tr:nth-child(odd) {
  background-color: #f3f3f3;
}
.table_01 table th,
.table_01 table td {
  padding: 1em 2em;
  vertical-align: top;
}
@media (max-width: 768px) {
  .table_01 table th,
  .table_01 table td {
    padding: 1.5em 1em;
  }
}
.table_01 table th {
  width: 240px;
  text-align: left;
  vertical-align: middle;
  font-weight: 600;
  color: #073C96;
}
@media (max-width: 768px) {
  .table_01 table th {
    width: 100%;
    display: block;
    padding-bottom: 0.5em;
  }
}
.table_01 table td {
  border-left: 1px solid #ddd;
}
@media (max-width: 768px) {
  .table_01 table td {
    width: 100%;
    display: block;
    padding-top: 0;
    border-left: none;
  }
}

/* ----------------------------------------------------------------------------------------------------
*  header
* --------------------------------------------------------------------------------------------------*/

.header {
  width: 100%;
  height: 100px;
}
@media (max-width: 768px) {
  .header {
    height: 60px;
  }
}
.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transition: background-color 0.4s ease, border-color 0.4s ease;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}
.header.is-transparent {
  background-color: transparent;
  border-bottom-color: transparent;
}
.header.is-transparent .header__nav > ul > li > a {
  color: #ffffff;
}
.header.is-transparent .header__logo img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.header.is-transparent.is-scrolled, .header.is-transparent.is-active {
  background-color: #ffffff;
  border-bottom-color: #e0e0e0;
}
.header.is-transparent.is-scrolled .header__inner, .header.is-transparent.is-active .header__inner {
  background-color: #ffffff;
}
.header.is-transparent.is-scrolled .header__nav > ul > li > a, .header.is-transparent.is-active .header__nav > ul > li > a {
  color: #000000;
}
.header.is-transparent.is-scrolled .header__logo img, .header.is-transparent.is-active .header__logo img {
  -webkit-filter: none;
          filter: none;
}
.header__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 1100;
}
.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.header__global {
  width: 100px;
  height: 100%;
  background-color: #ffffff;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  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;
}
@media (max-width: 768px) {
  .header__global {
    width: 60px !important;
    border-left: none;
    border-right: none;
  }
}
.header__global:hover {
  opacity: 0.6;
}
.header__global img {
  width: 56px;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .header__global img {
    width: 32px;
  }
}
.header__logo {
  width: 300px;
  margin-left: 3rem;
}
@media screen and (max-width: 1450px) {
  .header__logo {
    width: 280px !important;
    margin-left: 2rem !important;
  }
}
@media screen and (max-width: 1300px) {
  .header__logo {
    width: 260px !important;
  }
}
@media (max-width: 768px) {
  .header__logo {
    margin-left: 1.5rem;
    width: 160px !important;
  }
}
.header__logo img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: -webkit-filter 0.4s ease;
  transition: -webkit-filter 0.4s ease;
  transition: filter 0.4s ease;
  transition: filter 0.4s ease, -webkit-filter 0.4s ease;
}
.header__toggle {
  width: 100px;
  height: 100%;
  background-color: #000000;
  border: none;
  cursor: pointer;
  padding: 0;
  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;
}
@media (max-width: 768px) {
  .header__toggle {
    width: 60px !important;
  }
}
.header__toggle {
  position: relative;
  z-index: 1001;
}
.header__toggle_icon {
  position: relative;
  width: 36px;
  height: 22px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .header__toggle_icon {
    width: 24px;
    height: 16px;
  }
}
.header__toggle_icon span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  -webkit-transition: opacity 0.3s ease, top 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, top 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease, -webkit-transform 0.3s ease;
  left: 0;
}
.header__toggle_icon span:nth-child(1) {
  top: 0;
}
.header__toggle_icon span:nth-child(2) {
  top: 10px;
}
@media (max-width: 768px) {
  .header__toggle_icon span:nth-child(2) {
    top: 7px;
  }
}
.header__toggle_icon span:nth-child(3) {
  top: 20px;
}
@media (max-width: 768px) {
  .header__toggle_icon span:nth-child(3) {
    top: 14px;
  }
}
.header__toggle.is-active .header__toggle_icon span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width: 768px) {
  .header__toggle.is-active .header__toggle_icon span:nth-child(1) {
    top: 7px;
  }
}
.header__toggle.is-active .header__toggle_icon span:nth-child(2) {
  opacity: 0;
}
.header__toggle.is-active .header__toggle_icon span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (max-width: 768px) {
  .header__toggle.is-active .header__toggle_icon span:nth-child(3) {
    top: 7px;
  }
}
.header.is-active .g_nav {
  opacity: 1;
  visibility: visible;
}
.header .g_nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .header .g_nav {
    display: block;
  }
}
.header .g_nav__inner {
  width: 100%;
  margin: 0 auto;
  padding: 6rem 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .header .g_nav__inner {
    padding: 80px 4% 60px;
    display: block;
  }
}
.header .g_nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
@media (max-width: 768px) {
  .header .g_nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    background-color: transparent;
    border: none;
  }
}
.header .g_nav__group {
  position: relative;
  width: 25%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 0 20px 0px;
}
.header .g_nav__group::after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .header .g_nav__group {
    width: 100%;
    padding: 0;
    margin-bottom: 4rem;
  }
  .header .g_nav__group::after {
    display: none;
  }
  .header .g_nav__group:last-child {
    margin-bottom: 0;
  }
}
.header .g_nav__group_ttl {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding: 0.2em 0 0.2em 1.2em;
  color: #000;
  border: none;
}
.header .g_nav__group_ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: #073C96;
}
@media (max-width: 768px) {
  .header .g_nav__group_ttl::before {
    top: 10px;
    height: calc(100% - 10px);
  }
}
@media (max-width: 768px) {
  .header .g_nav__group_ttl {
    display: block;
    text-align: left;
    padding-top: 10px;
    border-top: solid 1px #ccc;
  }
}
.header .g_nav__group_ttl a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header .g_nav__group_ttl a:hover {
  opacity: 0.7;
}
.header .g_nav__group_ttl.nttl_recruit {
  margin-bottom: 2em;
}
.header .g_nav__group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 2;
  padding-left: 1.6em;
}
@media (max-width: 768px) {
  .header .g_nav__group ul {
    padding-left: 0;
    font-size: 1.6rem;
  }
}
.header .g_nav__group ul li {
  margin-bottom: 0;
}
.header .g_nav__group ul li a {
  position: relative;
  padding-left: 14px;
  display: inline-block;
  color: #000;
  text-decoration: none;
  -webkit-transition: color 0.3s, opacity 0.3s;
  transition: color 0.3s, opacity 0.3s;
}
.header .g_nav__group ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent rgba(0, 0, 0, 0.2);
}
.header .g_nav__group ul li a:hover {
  opacity: 0.7;
  color: #073C96;
  padding-left: 14px;
}
.header_bottom {
  display: none;
}
.header__bottom {
  margin-top: 8rem;
  padding-top: 4rem;
  border-top: 1px solid #e5e5e5;
  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;
}
@media (max-width: 768px) {
  .header__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
    text-align: center;
  }
}
.header__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logos img {
  max-width: 200px;
  height: auto;
}
@media (max-width: 768px) {
  .header__logos img {
    max-width: 160px;
  }
}
.header__cp {
  font-size: 1.2rem;
  color: #999;
}
.header__nav {
  height: 100%;
  margin-right: 4rem;
}
@media screen and (max-width: 1450px) {
  .header__nav {
    margin-right: 2rem !important;
  }
}
@media screen and (max-width: 1300px) {
  .header__nav {
    margin-right: 1rem !important;
  }
}
@media (max-width: 980px) {
  .header__nav {
    display: none;
  }
}
.header__nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__nav > ul > li {
  height: 100%;
}
.header__nav > ul > li:hover .header__mega {
  opacity: 1;
  visibility: visible;
}
.header__nav > ul > li:hover > a {
  color: #073C96 !important;
  font-weight: 700;
}
.header__nav > ul > li:hover > a::after {
  opacity: 1;
}
.header__nav > ul > li > a {
  height: 100%;
  color: #000000;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  position: relative;
  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;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 0 15px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1450px) {
  .header__nav > ul > li > a {
    font-size: 1.6rem !important;
    padding: 0 10px !important;
  }
}
@media screen and (max-width: 1300px) {
  .header__nav > ul > li > a {
    padding: 0 8px !important;
  }
}
.header__nav > ul > li > a::before {
  display: block;
  content: attr(data-text);
  font-weight: 700;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.header__nav > ul > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #073C96;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header__mega {
  position: absolute;
  top: 100px;
  right: 0;
  width: 1200px;
  background-color: #ffffff;
  -webkit-box-shadow: -2px 2px 4px rgba(153, 153, 153, 0.1);
          box-shadow: -2px 2px 4px rgba(153, 153, 153, 0.1);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 100;
}
.header__mega_inner {
  padding: 0px 0 10px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__mega_img {
  width: 520px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 768px) {
  .header__mega_img {
    display: none;
  }
}
.header__mega_img img {
  width: 100%;
  height: auto;
  display: block;
}
.header__mega_contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.header__mega_ttl {
  background-color: #D0B580;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 2.4rem;
  font-weight: 600;
  margin-left: -30px;
}
.header__mega_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 2em 2.4em;
}
.header__mega_list li {
  width: 50%;
  padding-right: 20px;
  margin-bottom: 1.5rem;
}
.header__mega_list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333;
  text-decoration: none;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #e5e5e5;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__mega_list a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #ccc;
  margin-right: 10px;
}
.header__mega_list a:hover {
  color: #073C96;
}
.header__login_wrapper {
  position: relative;
  height: 100%;
}
@media (max-width: 768px) {
  .header__login_wrapper {
    width: 60px;
  }
}
.header__login_wrapper:hover .header__login_dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}
.header__login_wrapper.is-logged-in .header__login {
  background-color: #e65a1e;
}
.header__login_wrapper.is-logged-in .header__login:hover {
  background-color: rgb(232.55, 106.83, 52.95);
}
.header__login_wrapper.is-logged-in .header__login_dropdown {
  background-color: #073C96;
  width: 280px;
  padding: 2.5rem 2rem;
}
@media (max-width: 768px) {
  .header__login_wrapper.is-logged-in .header__login_dropdown {
    width: 240px;
    padding: 2rem 1.5rem;
  }
}
.header__login_wrapper.is-logged-in .header__login_dropdown::before {
  border-bottom-color: #073C96;
}
.header__login_wrapper.is-logged-in .header__login_info {
  text-align: center;
  margin-bottom: 2rem;
  color: #ffffff;
}
.header__login_wrapper.is-logged-in .header__login_greeting {
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  margin-bottom: 1.2rem;
  text-align: center;
}
.header__login_wrapper.is-logged-in .header__login_name {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 500;
  word-break: break-all;
}
.header__login_wrapper.is-logged-in .header__login_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.header__login_wrapper.is-logged-in .header__login_btn {
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.2rem 1.5rem;
  border-radius: 4px;
  font-size: 1.4rem;
  font-weight: 700;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .header__login_wrapper.is-logged-in .header__login_btn {
    padding: 1rem 1.2rem;
  }
}
.header__login_wrapper.is-logged-in .header__login_btn:hover {
  opacity: 0.8;
}
.header__login_wrapper.is-logged-in .header__login_btn::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #ccc;
  margin-right: 10px;
}
.header__login_dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(20px);
          transform: translateX(-50%) translateY(20px);
  background-color: #ffffff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 100;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .header__login_dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    top: 65px;
    width: 200px;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(10px);
            transform: translateX(-50%) translateY(10px);
    background-color: #ffffff;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1000;
  }
  .header__login_dropdown.is-active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
}
.header__login_dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #ffffff transparent;
}
.header__login_item {
  text-decoration: none;
  color: #073C96;
  border-bottom: 1px solid #073C96;
  padding: 1.8rem 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fff;
  width: 100%;
  letter-spacing: 0.1em;
  position: relative;
  text-align: center;
}
@media (max-width: 768px) {
  .header__login_item {
    padding: 1.2rem;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }
}
.header__login_item:hover {
  background-color: #073C96;
  color: #fff;
}
.header__login {
  width: 140px;
  height: 100%;
  background-color: #073C96;
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  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;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 1450px) {
  .header__login {
    width: 110px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1300px) {
  .header__login {
    width: 100px;
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .header__login {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 60px;
    font-size: 1rem;
  }
}
.header__login:hover {
  background-color: rgb(8.1369426752, 69.7452229299, 174.3630573248);
}

/* ------------------------------
    パンクズ
------------------------------ */
.page_header__breadcrumb {
  background-color: #D0B580;
  position: relative;
  z-index: 2;
  line-height: 1.2;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .page_header__breadcrumb {
    height: auto;
    padding: 0.5em 0;
  }
}
.page_header__breadcrumb ul.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0 1em 0 0;
  background: none;
}
@media (max-width: 768px) {
  .page_header__breadcrumb ul.breadcrumb {
    font-size: 1.2rem;
    padding: 0 1em;
    flex-wrap: wrap;
    justify-content: left;
  }
}
.page_header__breadcrumb ul.breadcrumb li::after {
  content: "＞";
  margin: 0 1rem;
  color: #ffffff;
  font-size: 80%;
}
.page_header__breadcrumb ul.breadcrumb li:last-child::after {
  display: none;
}
.page_header__breadcrumb ul.breadcrumb li a {
  color: #ffffff;
  text-decoration: none;
}
.page_header__breadcrumb ul.breadcrumb li a:hover {
  text-decoration: underline;
}
.page_header__breadcrumb ul.breadcrumb li span {
  color: #ffffff;
}

/* ----------------------------------------------------------------------------------------------------
*  footer
* --------------------------------------------------------------------------------------------------*/

.footer {
  background-color: #073C96;
  color: #fff;
}
.footer a {
  color: #fff;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  text-decoration: none;
}
.footer a:hover {
  opacity: 0.7;
}
.footer li {
  list-style: none;
}
.footer__main {
  padding: 4.5rem 0 2.5rem;
}
@media (max-width: 768px) {
  .footer__main {
    padding: 5rem 0 3rem;
  }
}
.footer__logos {
  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;
  gap: 60px;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .footer__logos {
    -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;
    margin-bottom: 4rem;
  }
}
.footer__logos img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .footer__logos img {
    max-width: 80%;
  }
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 10px 20px 10px 0px;
  }
}
.footer__nav_group {
  position: relative;
  width: 25%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 0;
}
.footer__nav_group::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
  .footer__nav_group {
    width: 100%;
    padding-left: 0;
  }
  .footer__nav_group::after {
    display: none;
  }
  .footer__nav_group:last-child {
    margin-bottom: 0;
  }
}
.footer__nav_group p {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding: 0.2em 0 0.2em 1.2em;
}
@media (max-width: 768px) {
  .footer__nav_group p {
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
  }
}
.footer__nav_group p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: #D0B580;
}
.footer__nav_group p.nttl_recruit {
  margin-bottom: 2em;
}
.footer__nav_group ul {
  line-height: 2;
  padding-left: 1em;
}
.footer__nav_group ul li a {
  position: relative;
  padding-left: 14px;
  display: inline-block;
}
.footer__nav_group ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.3);
}
.footer__links {
  text-align: center;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .footer__links {
    margin-top: 2rem;
  }
}
.footer__links ul {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 1em;
}
@media (max-width: 768px) {
  .footer__links ul {
    font-size: 1.4rem;
  }
}
.footer__links span {
  margin: 0 1rem;
}
@media (max-width: 768px) {
  .footer__links span {
    display: none;
  }
}
@media (max-width: 768px) {
  .footer__links a {
    margin: 0 1rem;
  }
}
.footer__cp {
  background-color: #fff;
  color: #000;
  padding: 2rem 0;
  text-align: center;
  font-family: "Albert Sans", sans-serif;
}
.footer__cp p {
  margin: 0;
  text-align: center;
}