/* ---------------------------------------------
*   Custom Properties
--------------------------------------------- */
:root {
  --design-width: 1280;
  --contents-width: 1000;
  --contents-side-padding: 10;
  --minwidth: calc(var(--contents-width) + var(--contents-side-padding) * 2);
  --fixed-header-height: 80;
  --root-fz: 16;
  --line-height: 1.5;
  --hover-opacity-ratio: 0.8;
  --hover-duration: 0.3s;
  --color-base-1: #333333;
  --color-base-1-rgb: 51, 51, 51;
  --color-black-1: #000;
  --color-black-1-rgb: 0, 0, 0;
  --color-black-2: #333333;
  --color-black-2-rgb: 51, 51, 51;
  --color-white-1: #fff;
  --color-white-1-rgb: 255, 255, 255;
  --color-white-2: #fefefe;
  --color-white-2-rgb: 254, 254, 254;
  --color-gray-1: #cbcbcb;
  --color-gray-1-rgb: 203, 203, 203;
  --color-gray-2: #f9f9f9;
  --color-gray-2-rgb: 249, 249, 249;
  --color-gray-3: #cacaca;
  --color-gray-3-rgb: 202, 202, 202;
  --color-gray-4: #ededeb;
  --color-gray-4-rgb: 237, 237, 235;
  --color-gray-5: #a8a8a8;
  --color-gray-5-rgb: 168, 168, 168;
  --color-gray-6: #cfcfcf;
  --color-gray-6-rgb: 207, 207, 207;
  --color-red-1: #c51d1d;
  --color-red-1-rgb: 197, 29, 29;
  --ff-root: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "meiryo", sans-serif;
  --ff-noto: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  :root {
    --design-width: 750;
    --contents-width: 730;
    --contents-side-padding: 10;
    --minwidth: 320;
    --fixed-header-height: 58;
    --root-fz: 16;
    --line-height: 1.5;
  }
}

/* ---------------------------------------------
*   menu-btn-wrp
--------------------------------------------- */
.sustainability--mgm .menu-btn-wrp {
  box-shadow: none;
}
@media screen and (max-width: 768px) {
  .sustainability--mgm .menu-btn-wrp {
    height: 50px;
    top: 5px;
    background-color: var(--color-white-1);
  }
}
@media screen and (max-width: 768px) {
  .sustainability .menu-btn-wrp.on {
    background-color: transparent;
  }
}
.sustainability--mgm.hidemenu .menu-btn-wrp {
  background-color: transparent;
  height: 50px;
  top: 5px;
}

/* ---------------------------------------------
*   c-block
--------------------------------------------- */
/* ---------------------------------------------
*   c-box
--------------------------------------------- */
/* ---------------------------------------------
*   c-btn
--------------------------------------------- */
/* ---------------------------------------------
*   c-card
--------------------------------------------- */
/* ---------------------------------------------
*   c-cassette
--------------------------------------------- */
/* ---------------------------------------------
*   c-figure
--------------------------------------------- */
/* ---------------------------------------------
*   c-form
--------------------------------------------- */
/* ---------------------------------------------
*   c-img
--------------------------------------------- */
/* ---------------------------------------------
*   c-kv
--------------------------------------------- */
/* ---------------------------------------------
*   c-link-1
--------------------------------------------- */
.c-link-1 {
  display: block;
  position: relative;
  text-decoration: none;
  padding-left: 20px;
}
.c-link-1::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  top: 9px;
  left: 0;
  border-top: 1px solid var(--color-red-1);
  border-right: 1px solid var(--color-red-1);
  transform: rotate(45deg);
}
@media (hover: hover) and (pointer: fine) {
  .c-link-1:hover .c-link-1__txt {
    color: var(--color-red-1);
  }
}
.c-link-1__txt {
  display: block;
  color: var(--color-black-2);
  font-size: calc(16 / var(--root-fz) * 1rem);
  font-weight: 400;
  line-height: 1.5;
  transition: color 0.3s;
}

/* ---------------------------------------------
*   c-list-nav1
--------------------------------------------- */
.c-list-nav1 {
  -webkit-text-size-adjust: 100%;
  position: sticky;
  z-index: 10;
  top: 0;
  height: 82px;
  width: 100%;
  padding: 0 8vw 0;
  margin-inline: auto;
  border-top: 1px solid var(--color-gray-1);
  border-bottom: 1px solid var(--color-gray-1);
  background-color: var(--color-white-1);
  transition: height 0.3s;
  overflow-x: hidden;
}
@media screen and (max-width: 1024px) {
  .c-list-nav1 {
    padding: 0;
    z-index: 29;
  }
}
@media screen and (max-width: 768px) {
  .c-list-nav1 {
    /* padding: 0 calc(10 / var(--design-width) * 100vw) 0; */
    height: 75px;
    overflow-x: auto;
  }
}
.c-list-nav1.is-narrow {
  height: 70px;
}
@media screen and (max-width: 768px) {
  .c-list-nav1.is-narrow {
    height: 63px;
  }
}
.c-list-nav1__list {
  max-width: 1000px;
  margin-inline: auto;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding-right: 80px;
}
@media screen and (max-width: 1024px) {
  .c-list-nav1__list {
    /* -moz-column-gap: calc(30 / var(--design-width) * 100vw);
             column-gap: calc(30 / var(--design-width) * 100vw); */
    text-align: center;
    justify-content: center;
    width: 100%;
    padding-right: 0;
    /* transform: translateX(45px); */
  }
}
@media screen and (max-width: 768px) {
  .c-list-nav1__list {
    /* -moz-column-gap: 10px;
             column-gap: 10px; */
    width: 650px;
    transform: none;
    justify-content: center;
  }
}
.c-list-nav1__item {
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .c-list-nav1__item {
    padding: 0 1.5em;
  }
}
@media screen and (max-width: 768px) {
  .c-list-nav1__item {
    /* width: auto; */
    min-width: 8em;
    padding: 0 0 0 0.5em;
  }
}
.c-list-nav1__link {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--color-black-2);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.4;
  height: 100%;
  transition: color 0.3s;
  text-align: center;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .c-list-nav1__link {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .c-list-nav1__link {
    padding-left: 10px;
    justify-content: center;
    font-size: 13px;
  }
}
.c-list-nav1__link::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--color-black-1);
  border-top: 1px solid var(--color-black-1);
  display: inline-block;
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
  left: -25px;
}
@media screen and (max-width: 768px) {
  .c-list-nav1__link::before {
    width: 4px;
    height: 4px;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .c-list-nav1__link--2 {
    padding-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .c-list-nav1__link--2::before {
    left: 29px;
  }
}
@media screen and (min-width: 751px) {
  .c-list-nav1__link:hover {
    color: var(--color-red-1);
    transition: color 0.3s;
  }
}

/* ---------------------------------------------
*   c-section-lead
--------------------------------------------- */
.c-section-lead {
  -webkit-text-size-adjust: 100%;
  padding: 70px 20px 120px;
  background-color: var(--color-gray-2);
}
@media screen and (max-width: 768px) {
  .c-section-lead {
    padding: calc(70 / var(--design-width) * 100vw) 20px calc(120 / var(--design-width) * 100vw);
  }
}
.c-section-lead__container {
  max-width: 1000px;
  margin-inline: auto;
}
.c-section-lead__ttl {
  text-align: center;
}
.c-section-lead__ttl-en {
  color: var(--color-red-1);
  font-weight: 500;
  font-size: calc(14 / var(--root-fz) * 1rem);
  letter-spacing: 0.02em;
}
.c-section-lead__ttl-jp {
  position: relative;
  font-weight: 400;
  font-size: calc(29 / var(--root-fz) * 1rem);
  font-size: 29px;
  text-align: center;
  margin-top: 12px;
  padding-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .c-section-lead__ttl-jp {
    font-size: 22px;
  }
}
.c-section-lead__ttl-jp::after {
  position: absolute;
  content: "";
  width: 38px;
  height: 1px;
  background-color: var(--color-red-1);
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.c-section-lead__body {
  margin-top: 1.8em;
}
.c-section-lead__txt {
  font-size: calc(16 / var(--root-fz) * 1rem);
  font-size: 16px;
  line-height: 2.1875;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .c-section-lead__txt {
    font-size: calc(16 / var(--root-fz) * 1rem);
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
  }
}
.c-section-lead--top {
  padding-block: 94px 109px;
}
@media screen and (max-width: 768px) {
  .c-section-lead--top {
    padding-block: 50px 60px;
  }
}
.c-section-lead--top .c-section-lead__body {
  margin-top: 65px;
}
@media screen and (max-width: 768px) {
  .c-section-lead--top .c-section-lead__body {
    margin-top: 40px;
  }
}
.c-section-lead--message {
  padding-block: 27px 73px;
}
.c-section-lead--message .c-section-lead__ttl-en {
  display: block;
}
.c-section-lead--message .c-section-lead__ttl-jp {
  display: block;
  margin-top: 15px;
}
.c-section-lead--message .c-section-lead__head {
  text-align: center;
  margin-top: 43px;
  color: #333;
  font-size: calc(22 / var(--root-fz) * 1rem);
  font-weight: 400;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .c-section-lead--message .c-section-lead__head {
    line-height: 1.7;
    font-size: 18px;
  }
}
.c-section-lead--message .c-section-lead__txt {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-section-lead--message .c-section-lead__txt {
    text-align: left;
    line-height: 1.7;
    font-size: 15px;
  }
}

/* ---------------------------------------------
*   c-section-sdgs
--------------------------------------------- */
.c-section-sdgs {
  -webkit-text-size-adjust: 100%;
}
.c-section-sdgs--bg {
  background-color: var(--color-gray-2);
  padding: 5.859375% 0 11.484375%;
  margin-top: 10%;
}
@media screen and (max-width: 768px) {
  .c-section-sdgs--bg {
    padding: calc(25 / var(--design-width) * 100vw) 0 2em;
  }
}
.c-section-sdgs:last-child {
  padding-bottom: 5em;
}
.c-section-sdgs li {
  list-style: none;
}
.c-section-sdgs__container {
  max-width: 1040px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (max-width: 768px) {
  .c-section-sdgs__head {
    margin-top: 50px !important;
  }
}
.c-section-sdgs__head .office_title span {
  font-weight: 400 !important;
  font-size: calc(22 / var(--root-fz) * 1rem);
}
@media screen and (max-width: 768px) {
  .c-section-sdgs__head .office_title span {
    font-size: calc(19 / var(--root-fz) * 1rem);
  }
}
.c-section-sdgs__head .office_title span::before {
  left: -2em;
}
.c-section-sdgs__head .office_title span::after {
  right: -2em;
}
.c-section-sdgs__head--2 .office_title {
  margin: 0 0 16px !important;
}
.c-section-sdgs__head .office_title {
  margin: 8.4% 0 3.9%;
}
.c-section-sdgs__txt {
  font-weight: 300;
  font-size: calc(16 / var(--root-fz) * 1rem);
  letter-spacing: 0.02em;
  line-height: 2;
}
.c-section-sdgs__txt2 {
  font-weight: 300;
  font-size: calc(16 / var(--root-fz) * 1rem);
  letter-spacing: 0.02em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .c-section-sdgs__txt2 {
    font-size: calc(15 / var(--root-fz) * 1rem);
    line-height: 1.8;
    margin-top: 1em;
  }
}

.c-section-sdgs__txt--mgt {
  margin-top: 25px;
}
.c-section-sdgs__txt-content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .c-section-sdgs__txt-content {
    flex-direction: column;
    row-gap: calc(20 / var(--design-width) * 100vw);
  }
}
.c-section-sdgs__txt-content .c-section-sdgs__txt {
  width: 51.4%;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .c-section-sdgs__txt-content .c-section-sdgs__txt {
    width: 100%;
  }
}
.c-section-sdgs__txt-content .c-section-sdgs__img {
  width: 33.3%;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .c-section-sdgs__txt-content .c-section-sdgs__img {
    width: 100%;
    margin-right: 0;
  }
}
.c-section-sdgs__txt-content .c-section-sdgs__img2 {
  width: 33.3%;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .c-section-sdgs__txt-content .c-section-sdgs__img2 {
    width: 100%;
    margin-right: 0;
  }
}
.c-section-sdgs__body--bg {
  padding: 51px 56px 44px;
  background-color: var(--color-gray-2);
}
@media screen and (max-width: 768px) {
  .c-section-sdgs__body--bg {
    padding: calc(25 / var(--design-width) * 100vw);
  }
}
.c-section-sdgs__body--mgt {
  margin-top: 3em;
}
@media screen and (max-width: 768px) {
  .c-section-sdgs__body--mgt {
    padding: 0;
  }
}
.c-section-sdgs__body-ttl {
  display: block;
  font-weight: 500;
  font-size: calc(16 / var(--root-fz) * 1rem);
  text-align: left;
}
@media screen and (max-width: 768px) {
  .c-section-sdgs__body-ttl {
    width: 100%;
  }
}
.c-section-sdgs__body-note {
  margin-top: 20px;
  display: block;
  font-weight: 300;
  font-size: calc(16 / var(--root-fz) * 1rem);
  letter-spacing: 0.02em;
  line-height: 1.625;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .c-section-sdgs__body-note {
    width: 100%;
  }
}
.c-section-sdgs__img {
  max-width: 673px;
  width: 100%;
  margin: 0 auto 1em;
}
@media screen and (max-width: 768px) {
  .c-section-sdgs__img {
    max-width: none;
    width: 100%;
  }
}
.c-section-sdgs__img2 {
  max-width: 673px;
  width: 100%;
  margin: 1em auto 1em;
}
@media screen and (max-width: 768px) {
  .c-section-sdgs__img2 {
    max-width: none;
    width: 100%;
  }
}
.c-section-sdgs__date {
  margin-top: 1.2%;
  display: block;
  font-weight: 300;
  font-size: calc(16 / var(--root-fz) * 1rem);
  font-size: 16px;
  line-height: 2.0625;
  text-align: right;
}
.c-section-sdgs__table-wrap {
  overflow: auto;
}

/* ---------------------------------------------
*   c-slider
--------------------------------------------- */
/* ---------------------------------------------
*   c-table
--------------------------------------------- */
/* ---------------------------------------------
*   c-tile
--------------------------------------------- */
/* ---------------------------------------------
*   c-ttl-1
--------------------------------------------- */
.c-ttl-1 {
  -webkit-text-size-adjust: 100%;
  position: relative;
  display: block;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  padding-bottom: 14px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .c-ttl-1 {
    font-size: 18px;
  }
}

.c-ttl-1--2::after {
  left: calc(50% - 12px);
}
.c-ttl-1::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  background-color: var(--color-red-1);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* ---------------------------------------------
*   c-ttl-2
--------------------------------------------- */
.c-ttl-2 {
  -webkit-text-size-adjust: 100%;
  display: block;
  position: relative;
  font-weight: 500;
  font-size: calc(18 / var(--root-fz) * 1rem);
  font-size: 18px;
  line-height: 1.4444444444;
  text-align: left;
  padding-left: 18px;
}
.c-ttl-2::after {
  position: absolute;
  display: block;
  content: "";
  width: 2px;
  height: 23px;
  background-color: var(--color-red-1);
  bottom: 0;
  left: 0;
}

/* ---------------------------------------------
*   c-ttl-3
--------------------------------------------- */
.c-ttl-3 {
  -webkit-text-size-adjust: 100%;
}
.c-ttl-3__ttl {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 21px;
  text-align: left;
  padding-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .c-ttl-3__ttl {
    font-size: 18px;
  }
}
.c-ttl-3__ttl::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  background-color: var(--color-red-1);
  left: 0;
  bottom: 0;
}

/* ---------------------------------------------
*   c-ttl-4
--------------------------------------------- */
.c-ttl-4 {
  position: relative;
  margin-right: 70px;
  padding-bottom: 11px;
}
@media screen and (max-width: 768px) {
  .c-ttl-4 {
    margin-right: auto;
  }
}
.c-ttl-4::after {
  position: absolute;
  display: inline-block;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 49px;
  height: 1px;
  background-color: var(--color-red-1);
}
.c-ttl-4__ttl {
  text-align: center;
  color: var(--color-black-2);
  font-size: calc(20 / var(--root-fz) * 1rem);
  font-weight: 400;
}

/* ---------------------------------------------
*   c-txt
--------------------------------------------- */
/* ---------------------------------------------
*   p-top-kv
--------------------------------------------- */
@media screen and (max-width: 768px) {
  .p-top-kv {
    height: 70vw;
  }
}
@media screen and (max-width: 768px) {
  .p-top-kv__img {
    height: 100%;
  }
  .p-top-kv__img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

/* ---------------------------------------------
*   p-top-section-1
--------------------------------------------- */
.p-top-section-1__inner {
  margin-inline: auto;
  padding: 117px 20px 111px;
  max-width: 1040px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-top-section-1__inner {
    padding: 80px 20px 80px;
  }
}
.p-top-section-1 .office_title span {
  font-weight: 400;
  font-size: 19px;
}
@media screen and (max-width: 768px) {
  .p-top-section-1 .office_title span::before {
    left: -1.5em;
  }
}
@media screen and (max-width: 768px) {
  .p-top-section-1 .office_title span::after {
    right: -1.5em;
  }
}

/* ---------------------------------------------
*   p-top-section-2
--------------------------------------------- */
.p-top-section-2 {
  background-color: var(--color-gray-2);
}
.p-top-section-2__inner {
  margin-inline: auto;
  padding: 115px 20px 113px;
  max-width: 1040px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-top-section-2__inner {
    padding: 50px 20px 80px;
  }
}
.p-top-section-2 .office_title span {
  font-weight: 400;
  font-size: 19px;
}
@media screen and (max-width: 768px) {
  .p-top-section-2 .office_title span::before {
    left: -25px;
  }
}
@media screen and (max-width: 768px) {
  .p-top-section-2 .office_title span::after {
    right: -25px;
  }
}

/* ---------------------------------------------
*   p-top-section-3
--------------------------------------------- */
.p-top-section-3 .office_title span {
  font-weight: 400;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .p-top-section-3 .office_title span::before {
    left: -1.5em;
  }
}
@media screen and (max-width: 768px) {
  .p-top-section-3 .office_title span::after {
    right: -1.5em;
  }
}
.p-top-section-3__inner {
  margin-inline: auto;
  padding: 0 20px 136px;
  max-width: 1040px;
  width: 100%;
}
.p-top-section-3__txt {
  display: block;
  text-align: center;
  color: var(--color-black-2);
  font-size: calc(16 / var(--root-fz) * 1rem);
  font-weight: 300;
  line-height: 2.5625;
}
@media screen and (max-width: 768px) {
  .p-top-section-3__txt {
    line-height: 1.8666666667;
  }
}
.p-top-section-3__list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 36px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-top-section-3__list {
    gap: 30px 36px;
  }
}
.p-top-section-3__item {
  list-style: none;
  width: calc(50% - 18px);
}
@media screen and (max-width: 768px) {
  .p-top-section-3__item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-top-section-3 .office_title span::before {
    left: -1.5em;
  }
}
@media screen and (max-width: 768px) {
  .p-top-section-3 .office_title span::after {
    right: -1.5em;
  }
}

/* ---------------------------------------------
*   p-top-block-1
--------------------------------------------- */
.p-top-block-1__container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border: 1px solid var(--color-gray-6);
}
@media screen and (max-width: 768px) {
  .p-top-block-1__container {
    flex-direction: column-reverse;
  }
}
.p-top-block-1__box {
  padding: 50px 50px 0;
  width: 51.5%;
}
/* @media screen and (max-width: 1023px) {
    .p-top-block-1__box {
        padding: 20px auto 0 ;
    }
} */
@media screen and (max-width: 768px) {
  .p-top-block-1__box {
    padding: 20px 20px 40px;
    width: 100%;
  }
}
.p-top-block-1__lead {
  display: block;
  margin-top: 40px;
  color: var(--color-black-2);
  font-size: calc(17 / var(--root-fz) * 1rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.95;
}
@media screen and (max-width: 1023px) {
  .p-top-block-1__lead {
    margin-top: 20px;
    font-size: calc(16 / var(--root-fz) * 1rem);
    line-height: 1.7;
  }
}
.p-top-block-1__list {
  margin-top: 46px;
}
@media screen and (max-width: 1023px) {
  .p-top-block-1__list {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-top-block-1__list {
    margin-top: 20px;
  }
}
.p-top-block-1__item {
  list-style: none;
}
.p-top-block-1__item + .p-top-block-1__item {
  margin-top: 15px;
}
.p-top-block-1__item .c-link-1::after {
  left: -4px;
}
.p-top-block-1__img {
  width: 48.5%;
}
@media screen and (max-width: 768px) {
  .p-top-block-1__img {
    width: 100%;
  }
  .p-top-block-1__img img {
    display: block;
    width: 100%;
  }
}

/* ---------------------------------------------
*   p-top-block-2
--------------------------------------------- */
.p-top-block-2__list {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 40px;
  column-gap: 40px;
  width: 100%;
}
.p-top-block-2__item {
  list-style: none;
  padding: 32px 20px 22px 33px;
  width: calc(50% - 20px);
  border-bottom: 1px solid var(--color-gray-6);
}
@media screen and (max-width: 768px) {
  .p-top-block-2__item {
    padding: 22px 20px 18px 18px;
    width: 100%;
  }
}
.sus_title {
  margin: 100px 0 30px 0;
}
@media screen and (max-width: 768px) {
  .sus_title {
    margin: 50px 0 20px 0;
  }
}
/* ---------------------------------------------
*   p-top-block-3
--------------------------------------------- */
.p-top-block-3 {
  margin-top: 20px;
  padding: 73px 20px 21px;
  width: 100%;
  background-color: var(--color-white-1);
}
@media screen and (max-width: 768px) {
  .p-top-block-3 {
    padding: 40px 20px 10px;
  }
}
.p-top-block-3__container {
  display: flex;
  justify-content: center;
  -moz-column-gap: 33px;
  column-gap: 33px;
  margin-inline: auto;
  max-width: 881px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-top-block-3__container {
    display: block;
    max-width: none;
  }
}
.p-top-block-3__box {
  flex-shrink: 0;
  width: 289px;
}
@media screen and (max-width: 768px) {
  .p-top-block-3__box {
    margin-inline: auto;
  }
}

.p-top-block-3__img img {
  border: 1px solid #dcdcdc;
}

@media screen and (max-width: 768px) {
  .p-top-block-3__img {
    margin-inline: auto;
    width: 100%;
  }
  .p-top-block-3__img img {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-top-block-3__list {
    margin-top: 40px;
  }
}
.p-top-block-3__item {
  list-style: none;
  padding-block: 26px 48px;
  border-bottom: 1px solid var(--color-gray-6);
}
@media screen and (max-width: 768px) {
  .p-top-block-3__item {
    padding-block: 20px 22px;
  }
}
.p-top-block-3__item:first-of-type {
  padding-top: 0;
}
.p-top-block-3__item:last-of-type {
  border-bottom: none;
}
.p-top-block-3__txt {
  display: inline-block;
  margin: 14px 0 0 15px;
  color: var(--color-black-2);
  font-size: calc(15 / var(--root-fz) * 1rem);
  line-height: 1.8666666667;
}

/* ---------------------------------------------
*   p-top-block-4
--------------------------------------------- */
.p-top-block-4 {
  padding: 67px 20px 52px;
  background-color: var(--color-white-1);
}
@media screen and (max-width: 768px) {
  .p-top-block-4 {
    padding: 40px 20px 52px;
  }
}
.p-top-block-4__container {
  display: flex;
  -moz-column-gap: 35px;
  column-gap: 35px;
  margin-inline: auto;
  max-width: 922px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-top-block-4__container {
    flex-direction: column;
  }
}
.p-top-block-4__img {
  display: block;
  width: 423px;
}
@media screen and (max-width: 768px) {
  .p-top-block-4__img {
    margin-inline: auto;
    width: 90%;
  }
}
.p-top-block-4__txt {
  display: block;
  margin-top: 30px;
  color: var(--color-black-2);
  font-weight: 400;
  font-size: calc(16 / var(--root-fz) * 1rem);
  line-height: 2.5625;
}
@media screen and (max-width: 768px) {
  .p-top-block-4__txt {
    line-height: 1.8666666667;
  }
}
.p-top-block-4__link-outer {
  display: block;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-top-block-4__link-outer {
    margin-top: 20px;
  }
}
.p-top-block-4__link {
  position: relative;
  text-decoration: none;
  display: block;
  color: var(--color-black-2);
  font-size: calc(16 / var(--root-fz) * 1rem);
  font-weight: 400;
  line-height: 1.5;
  transition: color 0.3s;
  padding-left: 27px;
}
.p-top-block-4__link::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  top: 9px;
  left: 0;
  border-top: 1px solid var(--color-red-1);
  border-right: 1px solid var(--color-red-1);
  transform: rotate(45deg);
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .p-top-block-4__link:hover {
    color: var(--color-red-1);
  }
}

/* ---------------------------------------------
*   p-top-box-1
--------------------------------------------- */
.p-top-box-1 {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .p-top-box-1 {
    margin-top: 0;
  }
}
.p-top-box-1__txt {
  display: block;
  text-align: center;
  color: var(--color-black-2);
  font-size: calc(16 / var(--root-fz) * 1rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 2.5625;
}
.p-top-box-1__link-outer {
  margin-top: 5px;
  text-align: center;
}
.p-top-box-1__link {
  text-decoration: none;
  display: inline-block;
  text-align: center;
  color: var(--color-red-1);
  font-size: calc(17 / var(--root-fz) * 1rem);
  font-weight: 400;
}
@media (hover: hover) and (pointer: fine) {
  .p-top-box-1__link {
    transition: opacity var(--hover-duration);
  }
  .p-top-box-1__link:hover {
    opacity: var(--hover-opacity-ratio);
  }
}

/* ---------------------------------------------
*   p-top-list-1
--------------------------------------------- */
.p-top-list-1 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  gap: 24px 8px;
}
.p-top-list-1__item {
  list-style: none;
  width: calc(50% - 20px);
}
@media screen and (max-width: 768px) {
  .p-top-list-1__item {
    width: 100%;
  }
}

/* ---------------------------------------------
*   p-top-link-1
--------------------------------------------- */
.p-top-link-1 {
  display: block;
  position: relative;
  text-decoration: none;
  padding-left: 17px;
}
.p-top-link-1::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  top: 9px;
  left: 0;
  border-top: 1px solid var(--color-black-1);
  border-right: 1px solid var(--color-black-1);
  transform: rotate(45deg);
  transition: border 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .p-top-link-1:hover::after {
    border-top: 1px solid var(--color-red-1);
    border-right: 1px solid var(--color-red-1);
  }
  .p-top-link-1:hover .p-top-link-1__txt {
    color: var(--color-red-1);
  }
}
.p-top-link-1__txt {
  display: block;
  color: var(--color-black-2);
  font-size: calc(16 / var(--root-fz) * 1rem);
  font-weight: 400;
  line-height: 1.5;
  transition: color 0.3s;
}
.p-top-link-1__txt span {
  margin-left: 14px;
  color: var(--color-red-1);
  font-size: calc(14 / var(--root-fz) * 1rem);
  font-weight: 400;
}

/* ---------------------------------------------
*   p-top-link-2
--------------------------------------------- */
.p-top-link-2 {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 371px;
  border: 1px solid var(--color-gray-6);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-top-link-2 {
    padding-bottom: 30px;
    height: auto;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-top-link-2:hover .p-top-link-2__img img {
    transform: scale(1.075);
  }
}
.p-top-link-2__img {
  display: block;
  overflow: hidden;
}
.p-top-link-2__img img {
  transition: transform 0.3s;
  height: 100%;
}
.p-top-link-2__box {
  padding-inline: 35px;
}
.p-top-link-2__ttl {
  display: block;
  position: relative;
  margin-top: 27px;
  padding-left: 27px;
  color: var(--color-black-2);
  font-size: calc(16 / var(--root-fz) * 1rem);
  font-weight: 400;
  line-height: 1.5;
}
.p-top-link-2__ttl::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  top: 9px;
  left: 0;
  border-top: 1px solid var(--color-red-1);
  border-right: 1px solid var(--color-red-1);
  transform: rotate(45deg);
}
.p-top-link-2__txt {
  display: block;
  margin-top: 16px;
  color: var(--color-black-2);
  font-size: calc(15 / var(--root-fz) * 1rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .p-top-link-2__txt {
    margin-top: 10px;
    line-height: 1.7;
  }
}
/* ---------------------------------------------
*   p-message-cassette-1
--------------------------------------------- */
.p-message-cassette-1__inner {
  margin-inline: auto;
  padding: 53px 20px 100px;
  max-width: 1040px;
  width: 100%;
}

/* ---------------------------------------------
*   p-message-cassette-2
--------------------------------------------- */
.p-message-cassette-2 {
  padding-block: 83px 100px;
  background-color: var(--color-gray-2);
}
.p-message-cassette-2__inner {
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 1040px;
  width: 100%;
}

/* ---------------------------------------------
*   p-message-section-1
--------------------------------------------- */
.p-message-section-1:nth-of-type(n + 2) {
  margin-top: 53px;
}
.p-message-section-1__ttl {
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
}
.p-message-section-1__ttl::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: var(--color-red-1);
  left: 0;
  bottom: 0;
}
.p-message-section-1__ttl-txt {
  color: var(--color-black-2);
  font-size: calc(20 / var(--root-fz) * 1rem);
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .p-message-section-1__ttl-txt {
    font-size: calc(16 / var(--root-fz) * 1rem);
  }
}
.p-message-section-1__txt-outer {
  margin-top: 17px;
}
.p-message-section-1__txt {
  color: var(--color-black-2);
  font-size: calc(16 / var(--root-fz) * 1rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 2;
}
.p-message-section-1__txt + .p-message-section-1__txt {
  margin-top: 21px;
}
.p-message-section-1__box {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 34px;
  column-gap: 34px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-message-section-1__box {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }
}
.p-message-section-1__box .p-message-section-1__txt-outer {
  margin-top: 0;
}

/* ---------------------------------------------
*   p-message-section-2
--------------------------------------------- */
.p-message-section-2 .office_title {
  margin-top: 0;
  color: var(--color-red-1);
}
.p-message-section-2 .office_title span::before,
.p-message-section-2 .office_title span::after {
  background-color: var(--color-red-1);
}
@media screen and (max-width: 768px) {
  .p-message-section-2 .office_title span::before {
    left: -1em;
  }
}
@media screen and (max-width: 768px) {
  .p-message-section-2 .office_title span::after {
    right: -1em;
  }
}
.p-message-section-2__ttl {
  display: block;
  text-align: center;
  color: var(--color-black-2);
  font-size: calc(20 / var(--root-fz) * 1rem);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-message-section-2__ttl {
    font-size: calc(17 / var(--root-fz) * 1rem);
  }
}
.p-message-section-2__txt {
  display: block;
  text-align: center;
  margin-top: 35px;
  color: var(--color-black-2);
  font-size: calc(16 / var(--root-fz) * 1rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-message-section-2__txt {
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
    font-weight: 300;
  }
}
.p-message-section-2__list-outer {
  margin-top: 65px;
  padding: 47px 20px 44px;
  border: 1px solid var(--color-gray-6);
}
@media screen and (max-width: 768px) {
  .p-message-section-2__list-outer {
    margin-top: 30px;
    padding: 27px 20px 24px;
    border: 1px solid var(--color-gray-6);
  }
}
.p-message-section-2__list {
  margin-inline: auto;
  max-width: 792px;
}
.p-message-section-2__list-ttl {
  display: block;
  color: var(--color-black-2);
  font-weight: 500;
  font-size: calc(18 / var(--root-fz) * 1rem);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-message-section-2__list-ttl {
    font-size: calc(16 / var(--root-fz) * 1rem);
  }
}
.p-message-section-2 .office_title span {
  font-weight: 400;
}

/* ---------------------------------------------
*   p-message-section-3
--------------------------------------------- */
.p-message-section-3 {
  margin-top: 81px;
  padding: 59px 20px 50px;
  background-color: var(--color-white-1);
}
@media screen and (max-width: 768px) {
  .p-message-section-3 {
    padding: 59px 20px 30px;
  }
}
.p-message-section-3__inner {
  margin-inline: auto;
  max-width: 760px;
  width: 100%;
}
.p-message-section-3__ttl {
  position: relative;
  padding-bottom: 12px;
}
.p-message-section-3__ttl::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: var(--color-red-1);
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.p-message-section-3__ttl-txt {
  display: block;
  text-align: center;
  color: var(--color-black-2);
  font-size: calc(21 / var(--root-fz) * 1rem);
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .p-message-section-3__ttl-txt {
    font-size: calc(18 / var(--root-fz) * 1rem);
  }
}
.p-message-section-3__txt {
  display: block;
  text-align: center;
  margin-top: 40px;
  color: var(--color-black-2);
  font-size: calc(19 / var(--root-fz) * 1rem);
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .p-message-section-3__txt {
    font-size: calc(16 / var(--root-fz) * 1rem);
  }
}

/* ---------------------------------------------
*   p-message-box-1
--------------------------------------------- */
.p-message-box-1 {
  flex-shrink: 0;
  width: 46.6%;
}
@media screen and (max-width: 768px) {
  .p-message-box-1 {
    width: 100%;
  }
}
.p-message-box-1--w597 {
  width: 50.7%;
}
@media screen and (max-width: 768px) {
  .p-message-box-1--w597 {
    width: 100%;
  }
}
.p-message-box-1__txt {
  display: block;
  text-align: center;
  margin-top: 24px;
  color: var(--color-black-2);
  font-size: calc(16 / var(--root-fz) * 1rem);
  font-weight: 300;
  letter-spacing: 0.01em;
}
.p-message-box-1__name {
  display: block;
  text-align: center;
  margin-top: 17px;
  color: var(--color-black-2);
  font-weight: 400;
  font-size: calc(19 / var(--root-fz) * 1rem);
}

/* ---------------------------------------------
*   p-message-list-1
--------------------------------------------- */
.p-message-list-1 {
  margin-top: 30px;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .p-message-list-1 {
    padding-left: 1rem;
    margin-top: 20px;
  }
}
.p-message-list-1__item {
  color: var(--color-black-2);
  font-size: calc(16 / var(--root-fz) * 1rem);
  font-weight: 400;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .p-message-list-1__item {
    text-indent: -3px;
    padding-left: 3px;
    font-weight: 300;
    font-size: calc(15 / var(--root-fz) * 1rem);
  }
}
.p-message-list-1__item + .p-message-list-1__item {
  margin-top: 20px;
}
.p-message-list-1__item::marker {
  color: var(--color-red-1);
  font-family: "Noto Sans CJK JP";
  font-weight: 500;
}
.p-message-list-1__item span {
  margin-left: 3px;
}

/* ---------------------------------------------
*   p-message-list-2
--------------------------------------------- */
.p-message-list-2 {
  margin-top: 52px;
}
.p-message-list-2__item {
  list-style: none;
  padding-bottom: 33px;
  border-bottom: 1px solid var(--color-gray-1);
}
.p-message-list-2__item:nth-of-type(n + 2) {
  padding-top: 33px;
}
.p-message-list-2__item:last-of-type {
  border-bottom: none;
}
.p-message-list-2__head {
  display: flex;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-message-list-2__head {
    flex-direction: column;
    row-gap: 10px;
  }
}
.p-message-list-2__cat-outer {
  padding-inline: 11px 8px;
  border: 1px solid var(--color-red-1);
}
.windows.firefox .p-message-list-2__cat-outer {
  padding-bottom: 2px;
}

@media screen and (max-width: 768px) {
  .p-message-list-2__cat-outer {
    width: -moz-max-content;
    width: max-content;
  }
}
.p-message-list-2__cat {
  display: inline-block;
  color: var(--color-red-1);
  font-size: calc(16 / var(--root-fz) * 1rem);
  font-weight: 500;
  letter-spacing: 0.08em;
}
.p-message-list-2__ttl {
  color: var(--color-black-2);
  font-size: calc(16 / var(--root-fz) * 1rem);
  font-weight: 500;
}

/* ---------------------------------------------
*   p-message-list-3
--------------------------------------------- */
.p-message-list-3 {
  margin-top: 23px;
  padding-left: 1rem;
}
.p-message-list-3__item {
  color: var(--color-black-2);
  font-size: calc(16 / var(--root-fz) * 1rem);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .p-message-list-3__item {
    text-indent: -7px;
    padding-left: 7px;
  }
}
.p-message-list-3__item + .p-message-list-3__item {
  margin-top: 12px;
}
.p-message-list-3__item::marker {
  color: var(--color-red-1);
  font-family: "Noto Sans CJK JP";
  font-weight: 500;
}
.p-message-list-3__item span {
  margin-left: 7px;
}

/* ---------------------------------------------
*   p-mgm-anchor-nav
--------------------------------------------- */
.p-mgm-anchor-nav {
  border-bottom: 1px solid var(--color-gray-1);
  overflow: auto;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
  .p-mgm-anchor-nav {
    padding: 18px 0;
  }
}
.p-mgm-anchor-nav__list {
  max-width: 1000px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 20px;
}
/* @media screen and (max-width: 1024px) {
    .p-mgm-anchor-nav__list {
        max-width: none;
        width: 850px;
        -moz-column-gap: calc(45 / var(--design-width) * 100vw);
             column-gap: calc(45 / var(--design-width) * 100vw);
    }
} */
.p-mgm-anchor-nav__item {
  list-style: none;
  padding: 31px 0 20px;
}
@media screen and (max-width: 768px) {
  .p-mgm-anchor-nav__item {
    padding: calc(20 / var(--design-width) * 100vw) calc(5 / var(--design-width) * 100vw);
  }
}
.p-mgm-anchor-nav__item a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-weight: normal;
  font-size: calc(15 / var(--root-fz) * 1rem);
  line-height: 1.4;
  font-size: calc(15 / var(--root-fz) * 1rem);
  color: var(--color-base-1);
  padding-bottom: 16px;
  transition: color 0.3s;
}
.p-mgm-anchor-nav__item a::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--color-red-1);
  border-top: 1px solid var(--color-red-1);
  display: inline-block;
  transform: rotate(135deg) translateX(-50%);
  bottom: 0;
  right: 50%;
}
@media screen and (min-width: 751px) {
  .p-mgm-anchor-nav__item a:hover {
    color: var(--color-red-1);
    transition: color 0.3s;
  }
}

@media screen and (max-width: 768px) {
  .p-mgm-anchor-nav__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .p-mgm-anchor-nav__item {
    width: calc(33.33% - 10px);
    text-align: center;
  }
}

@media screen and (max-width: 600px) {
  .p-mgm-anchor-nav__list {
    justify-content: space-between;
  }
  .p-mgm-anchor-nav__item {
    width: calc(50% - 10px);
  }
}

/* ---------------------------------------------
*   p-mgm-policy-list
--------------------------------------------- */
.p-mgm-policy-list {
  margin-top: 2em;
  -webkit-text-size-adjust: 100%;
}
.p-mgm-policy-list__item {
  display: flex;
  -moz-column-gap: 7px;
  column-gap: 7px;
  list-style-type: none;
  font-weight: 300;
  font-size: calc(16 / var(--root-fz) * 1rem);
  letter-spacing: 0.01em;
  line-height: 2.0625;
  border-bottom: 1px solid var(--color-gray-3);
  padding: 1em 0;
  align-items: start;
}
@media screen and (max-width: 768px) {
  .p-mgm-policy-list__item {
    font-size: calc(14 / var(--root-fz) * 1rem);
    line-height: 1.8;
  }
}
.p-mgm-policy-list__item:first-child {
  padding-top: 0;
}
.p-mgm-policy-list__item-number {
  display: block;
  font-weight: normal;
  color: var(--color-red-1);
  font-size: calc(16 / var(--root-fz) * 1rem);
  text-align: right;
  flex-shrink: 0;
  white-space: nowrap;
}

/* ---------------------------------------------
*   p-mgm-section
--------------------------------------------- */
.p-mgm-section {
  -webkit-text-size-adjust: 100%;
  margin-top: 11.8%;
}
@media screen and (max-width: 768px) {
  .p-mgm-section {
    margin-top: calc(70 / var(--design-width) * 100vw);
  }
}
.p-mgm-section:first-child {
  margin-top: 12%;
}
@media screen and (max-width: 768px) {
  .p-mgm-section:first-child {
    margin-top: calc(70 / var(--design-width) * 100vw);
  }
}
.p-mgm-section:nth-of-type(n + 2) {
  margin-top: 4.8%;
}
@media screen and (max-width: 768px) {
  .p-mgm-section:nth-of-type(n + 2) {
    margin-top: calc(70 / var(--design-width) * 100vw);
  }
}
.p-mgm-section__ttl {
  display: inline-block;
  position: relative;
  font-weight: 400;
  font-size: calc(20 / var(--root-fz) * 1rem);
  text-align: left;
  padding-left: 18px;
  line-height: 1.45;
}
@media screen and (max-width: 768px) {
  .p-mgm-section__ttl {
    font-size: calc(17 / var(--root-fz) * 1rem);
  }
}
.p-mgm-section__ttl::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 23px;
  background-color: var(--color-red-1);
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.p-mgm-section__ttl span {
  display: inline-block;
}
.p-mgm-section__item {
  border-bottom: 1px solid var(--color-gray-1);
  padding: 3.1% 0 5.3%;
}
@media screen and (max-width: 768px) {
  .p-mgm-section__item:nth-of-type(1) {
    padding-top: calc(100 / var(--design-width) * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .p-mgm-section__item {
    padding: 2em 0;
  }
}
.p-mgm-section__item--bg {
  padding: 2.4% 0 5.3%;
}

/* ---------------------------------------------
*   p-mgm-casette
--------------------------------------------- */
.p-mgm-casette {
  -webkit-text-size-adjust: 100%;
  display: flex;
  -moz-column-gap: 8.6%;
  column-gap: 8.6%;
  align-items: start;
  margin-top: 4%;
}
@media screen and (max-width: 768px) {
  .p-mgm-casette {
    flex-direction: column;
    margin-top: 2em;
  }
}
.p-mgm-casette li {
  list-style: none;
}
.p-mgm-casette__head {
  width: 29%;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-mgm-casette__head {
    width: 100%;
    flex-shrink: 1;
  }
}
.p-mgm-casette__head-ttl {
  display: inline-block;
  font-weight: 500;
  font-size: calc(15 / var(--root-fz) * 1rem);
  font-size: 15px;
  letter-spacing: 0.01em;
  text-align: left;
}
.p-mgm-casette__body {
  width: 63.7%;
}
@media screen and (max-width: 768px) {
  .p-mgm-casette__body {
    width: 100%;
    margin-top: calc(20 / var(--design-width) * 100vw);
  }
}
.p-mgm-casette__body-item:nth-of-type(2) {
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .p-mgm-casette__body-item:nth-of-type(2) {
    margin-top: 1.5em;
  }
}
.p-mgm-casette__body-item:nth-of-type(3) {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .p-mgm-casette__body-item:nth-of-type(3) {
    margin-top: 1.5em;
  }
}
.p-mgm-casette__body-ttl {
  display: inline-block;
  font-weight: 500;
  font-size: calc(15 / var(--root-fz) * 1rem);
  font-size: 15px;
  letter-spacing: 0.01em;
  text-align: left;
  padding-bottom: 7px;
}
@media screen and (max-width: 768px) {
  .p-mgm-casette__body-ttl {
    padding-bottom: 0;
  }
}
.p-mgm-casette__body-txt {
  display: block;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.625;
  text-align: left;
  margin-left: 8px;
}
@media screen and (max-width: 768px) {
  .p-mgm-casette__body-txt {
    margin-left: 0;
  }
}
.p-mgm-casette__body-txt:nth-of-type(n + 2) {
  margin-top: 20px;
}

/* ---------------------------------------------
*   p-mgm-img-list
--------------------------------------------- */
.p-mgm-img-list {
  -webkit-text-size-adjust: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 11.0344827586%;
}
@media screen and (max-width: 768px) {
  .p-mgm-img-list {
    margin-top: 1em;
    gap: calc(15 / var(--design-width) * 100vw);
    margin-bottom: 0.8em;
  }
}
.p-mgm-img-list__item {
  width: 29.3103448276%;
}
@media screen and (max-width: 768px) {
  .p-mgm-img-list__item {
    width: calc(150 / var(--design-width) * 100vw);
  }
}

/* ---------------------------------------------
*   p-mgm-list-1
--------------------------------------------- */
.p-mgm-list-1 {
  -webkit-text-size-adjust: 100%;
}
.p-mgm-list-1__item {
  font-weight: 300;
  font-size: calc(15 / var(--root-fz) * 1rem);
  letter-spacing: 0.02em;
  line-height: 1.7333333333;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-mgm-list-1__item {
    margin-top: calc(10 / var(--design-width) * 100vw);
    margin-left: 0;
  }
}

/* ---------------------------------------------
*   p-mgm-table-1
--------------------------------------------- */
.p-mgm-table-1 {
  -webkit-text-size-adjust: 100%;
  width: 100%;
  margin-top: 19px;
}
@media screen and (max-width: 768px) {
  .p-mgm-table-1 {
    width: 600px;
    margin-top: calc(30 / var(--design-width) * 100vw);
  }
}
.p-mgm-table-1__head {
  background-color: var(--color-gray-4);
}
.p-mgm-table-1__head td {
  font-weight: 500;
}
.p-mgm-table-1__head .p-mgm-table-1__row {
  border-bottom: none;
}
.p-mgm-table-1 td {
  width: 20%;
  font-weight: 400;
  font-size: calc(15 / var(--root-fz) * 1rem);
  font-size: 15px;
  line-height: 2;
  text-align: center;
  padding: 14px 5px;
  vertical-align: middle;
}
.p-mgm-table-1__row {
  border-bottom: 1px solid var(--color-gray-5);
}
.p-mgm-table-1__row span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .p-mgm-table-1 td {
    width: 20%;
    font-weight: 400;
    font-size: calc(15 / var(--root-fz) * 1rem);
    font-size: 14px;
    line-height: 2;
    text-align: center;
    padding: 8px 5px;
    vertical-align: middle;
  }
}

/* ---------------------------------------------
*   p-mgm-cassette-2
--------------------------------------------- */
.p-mgm-cassette-2 {
  -webkit-text-size-adjust: 100%;
  display: flex;
  -moz-column-gap: 3.6%;
  column-gap: 3.6%;
  margin-top: 1.5%;
  border-bottom: 1px solid var(--color-gray-4);
}
@media screen and (max-width: 768px) {
  .p-mgm-cassette-2 {
    flex-direction: column;
    margin-top: calc(70 / var(--design-width) * 100vw);
  }
}
.p-mgm-cassette-2__headline-box {
  width: 37.6%;
  background-color: var(--color-gray-4);
  padding: 5.3191489362% 5.3191489362% 7.9787234043%;
  padding: 50px 30px 90px 35px;
}
@media screen and (max-width: 768px) {
  .p-mgm-cassette-2__headline-box {
    width: 100%;
    padding: 1.2em;
  }
}
.p-mgm-cassette-2__headline-box-note {
  display: block;
  font-weight: 300;
  font-size: calc(16 / var(--root-fz) * 1rem);
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.625;
  text-align: left;
  margin-top: 21px;
}
@media screen and (max-width: 768px) {
  .p-mgm-cassette-2__headline-box-note {
    margin-top: 0.5em;
  }
}
.p-mgm-cassette-2__desc-box {
  width: 54.8%;
  padding-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .p-mgm-cassette-2__desc-box {
    width: 100%;
  }
}
.p-mgm-cassette-2__desc-box-ttl {
  display: block;
  font-weight: 500;
  font-size: calc(15 / var(--root-fz) * 1rem);
  font-size: 15px;
  line-height: 1.7333333333;
  text-align: left;
  margin-top: 22px;
}
.p-mgm-cassette-2__desc-box-txt {
  font-weight: 300;
  font-size: calc(16 / var(--root-fz) * 1rem);
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.7333333333;
  text-align: left;
}

/* ---------------------------------------------
*   p-mgm-block
--------------------------------------------- */
.p-mgm-block {
  -webkit-text-size-adjust: 100%;
  margin-top: 7.6%;
}
@media screen and (max-width: 768px) {
  .p-mgm-block {
    -webkit-text-size-adjust: 100%;
    margin-top: 3em;
  }
}
.p-mgm-block__item:nth-of-type(n + 2) {
  margin-top: 56px;
}

/* ---------------------------------------------
*   p-mgm-card-1
--------------------------------------------- */
.p-mgm-card-1 {
  -webkit-text-size-adjust: 100%;
  display: flex;
  -moz-column-gap: 3.3%;
  column-gap: 3.3%;
  justify-content: space-between;
  margin-top: 3%;
}
@media screen and (max-width: 768px) {
  .p-mgm-card-1 {
    flex-direction: column;
    margin-top: calc(30 / var(--design-width) * 100vw);
  }
}
.p-mgm-card-1__img-box {
  max-width: 359px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-mgm-card-1__img-box {
    max-width: none;
    width: 100%;
  }
}
.p-mgm-card-1__desc {
  font-weight: 300;
  font-size: calc(16 / var(--root-fz) * 1rem);
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.8125;
  margin-top: 3.4482758621%;
}
.p-mgm-card-1__desc-box {
  width: 60.9%;
}
@media screen and (max-width: 768px) {
  .p-mgm-card-1__desc-box {
    width: 100%;
    margin-top: calc(75 / var(--design-width) * 100vw);
  }
}
.p-mgm-card-1__desc-ttl {
  display: block;
  font-weight: 500;
  font-size: 16px;
  text-align: left;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--color-gray-4);
}
.p-mgm-card-1__note {
  margin-top: 8px;
  display: block;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1.625;
  text-align: center;
}

/* ---------------------------------------------
*   p-mgm-card-2
--------------------------------------------- */
.p-mgm-card-2 {
  -webkit-text-size-adjust: 100%;
  margin-top: 6.6%;
}
.p-mgm-card-2__desc-ttl {
  display: block;
  font-weight: 500;
  font-size: 16px;
  text-align: left;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--color-gray-4);
}
.p-mgm-card-2__desc {
  display: block;
  font-weight: 300;
  font-size: calc(16 / var(--root-fz) * 1rem);
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.8125;
  margin-top: 16px;
}
.p-mgm-card-2__note {
  margin-top: 14px;
  display: block;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1.625;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-mgm-card-2__note {
    white-space: initial;
  }
}
.p-mgm-card-2__img-box {
  display: flex;
  -moz-column-gap: 22px;
  column-gap: 22px;
  justify-content: center;
  margin-top: 35px;
}
@media screen and (max-width: 800px) {
  .p-mgm-card-2__img-box {
    -moz-column-gap: 36px;
    column-gap: 36px;
  }
}
@media screen and (max-width: 768px) {
  .p-mgm-card-2__img-box {
    flex-direction: column;
    row-gap: calc(30 / var(--design-width) * 100vw);
  }
}
.p-mgm-card-2__img-inner {
  display: grid;
  grid-template-rows: 1fr auto;
  width: 46.9%;
}
@media screen and (max-width: 768px) {
  .p-mgm-card-2__img-inner {
    max-width: none;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .p-mgm-card-2__img-inner--2 {
    max-width: none;
    width: 100%;
  }
}
.p-mgm-card-2__img-inner--2 img {
  height: 100%;
}

/* ---------------------------------------------
*   background-color
--------------------------------------------- */
.bg-white {
  background-color: var(--color-white-1) !important;
}

/* ---------------------------------------------
*   font-wight
--------------------------------------------- */
.fw-normal {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

/* ---------------------------------------------
*   text-align
--------------------------------------------- */
.txt-al-center {
  text-align: center !important;
}

.txt-al-right {
  text-align: right !important;
}

.txt-al-left {
  text-align: left !important;
}

/* ---------------------------------------------
*   hr
--------------------------------------------- */
hr[id^="anchor-"] {
  display: block;
  width: auto;
  height: 0;
  padding: 0 0 0 0;
  border: 0;
  margin: 0 0 0 0;
  background: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  hr[id^="anchor-"] {
    padding-top: 50px;
    margin-top: -50px;
  }
}

#anchor-03 {
  padding-top: 150px;
  margin-top: -150px;
}
@media screen and (max-width: 768px) {
  #anchor-03 {
    padding-top: 110px;
    margin-top: -110px;
  }
}

/*  js-scroll-threshold
--------------------------------------------- */
.js-scroll-threshold {
  position: absolute;
  top: 0;
  height: 300px;
}

@media print and (min-width: 769px), screen and (min-width: 769px) {
  .pc-hide {
    display: none !important;
  }
}
@media print and (max-width: 768px), screen and (max-width: 768px) {
  .sp-hide {
    display: none !important;
  }
}
/* ---------------------------------------------
*   margin-top
--------------------------------------------- */
.mgt-pc--0 {
  margin-top: 0 !important;
}

.mgt-pc--5 {
  margin-top: 5px !important;
}

.mgt-pc--10 {
  margin-top: 10px !important;
}

.mgt-pc--15 {
  margin-top: 15px !important;
}

.mgt-pc--20 {
  margin-top: 20px !important;
}

.mgt-pc--25 {
  margin-top: 25px !important;
}

.mgt-pc--30 {
  margin-top: 30px !important;
}

.mgt-pc--35 {
  margin-top: 35px !important;
}

.mgt-pc--40 {
  margin-top: 40px !important;
}

.mgt-pc--45 {
  margin-top: 45px !important;
}

.mgt-pc--50 {
  margin-top: 50px !important;
}

.mgt-pc--55 {
  margin-top: 55px !important;
}

.mgt-pc--60 {
  margin-top: 60px !important;
}

.mgt-pc--65 {
  margin-top: 65px !important;
}

.mgt-pc--70 {
  margin-top: 70px !important;
}

.mgt-pc--75 {
  margin-top: 75px !important;
}

.mgt-pc--80 {
  margin-top: 80px !important;
}

.mgt-pc--85 {
  margin-top: 85px !important;
}

.mgt-pc--90 {
  margin-top: 90px !important;
}

.mgt-pc--95 {
  margin-top: 95px !important;
}

.mgt-pc--100 {
  margin-top: 100px !important;
}

.mgt-pc--105 {
  margin-top: 105px !important;
}

.mgt-pc--110 {
  margin-top: 110px !important;
}

.mgt-pc--115 {
  margin-top: 115px !important;
}

.mgt-pc--120 {
  margin-top: 120px !important;
}

.mgt-pc--125 {
  margin-top: 125px !important;
}

.mgt-pc--130 {
  margin-top: 130px !important;
}

.mgt-pc--135 {
  margin-top: 135px !important;
}

.mgt-pc--140 {
  margin-top: 140px !important;
}

.mgt-pc--145 {
  margin-top: 145px !important;
}

.mgt-pc--150 {
  margin-top: 150px !important;
}

.mgt-pc--155 {
  margin-top: 155px !important;
}

.mgt-pc--160 {
  margin-top: 160px !important;
}

.mgt-pc--165 {
  margin-top: 165px !important;
}

.mgt-pc--170 {
  margin-top: 170px !important;
}

.mgt-pc--175 {
  margin-top: 175px !important;
}

.mgt-pc--180 {
  margin-top: 180px !important;
}

.mgt-pc--185 {
  margin-top: 185px !important;
}

.mgt-pc--190 {
  margin-top: 190px !important;
}

.mgt-pc--195 {
  margin-top: 195px !important;
}

.mgt-pc--200 {
  margin-top: 200px !important;
}

.mgt-pc--205 {
  margin-top: 205px !important;
}

.mgt-pc--210 {
  margin-top: 210px !important;
}

.mgt-pc--215 {
  margin-top: 215px !important;
}

.mgt-pc--220 {
  margin-top: 220px !important;
}

.mgt-pc--225 {
  margin-top: 225px !important;
}

.mgt-pc--230 {
  margin-top: 230px !important;
}

.mgt-pc--235 {
  margin-top: 235px !important;
}

.mgt-pc--240 {
  margin-top: 240px !important;
}

.mgt-pc--245 {
  margin-top: 245px !important;
}

.mgt-pc--250 {
  margin-top: 250px !important;
}

@media screen and (max-width: 768px) {
  .mgt-sp--0 {
    margin-top: 0 !important;
  }
  .mgt-sp--5 {
    margin-top: calc(5 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--10 {
    margin-top: calc(10 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--15 {
    margin-top: calc(15 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--20 {
    margin-top: calc(20 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--25 {
    margin-top: calc(25 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--30 {
    margin-top: calc(30 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--35 {
    margin-top: calc(35 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--40 {
    margin-top: calc(40 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--45 {
    margin-top: calc(45 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--50 {
    margin-top: calc(50 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--55 {
    margin-top: calc(55 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--60 {
    margin-top: calc(60 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--65 {
    margin-top: calc(65 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--70 {
    margin-top: calc(70 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--75 {
    margin-top: calc(75 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--80 {
    margin-top: calc(80 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--85 {
    margin-top: calc(85 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--90 {
    margin-top: calc(90 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--95 {
    margin-top: calc(95 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--100 {
    margin-top: calc(100 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--105 {
    margin-top: calc(105 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--110 {
    margin-top: calc(110 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--115 {
    margin-top: calc(115 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--120 {
    margin-top: calc(120 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--125 {
    margin-top: calc(125 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--130 {
    margin-top: calc(130 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--135 {
    margin-top: calc(135 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--140 {
    margin-top: calc(140 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--145 {
    margin-top: calc(145 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--150 {
    margin-top: calc(150 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--155 {
    margin-top: calc(155 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--160 {
    margin-top: calc(160 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--165 {
    margin-top: calc(165 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--170 {
    margin-top: calc(170 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--175 {
    margin-top: calc(175 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--180 {
    margin-top: calc(180 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--185 {
    margin-top: calc(185 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--190 {
    margin-top: calc(190 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--195 {
    margin-top: calc(195 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--200 {
    margin-top: calc(200 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--205 {
    margin-top: calc(205 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--210 {
    margin-top: calc(210 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--215 {
    margin-top: calc(215 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--220 {
    margin-top: calc(220 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--225 {
    margin-top: calc(225 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--230 {
    margin-top: calc(230 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--235 {
    margin-top: calc(235 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--240 {
    margin-top: calc(240 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--245 {
    margin-top: calc(245 / var(--design-width) * 100vw) !important;
  }
  .mgt-sp--250 {
    margin-top: calc(250 / var(--design-width) * 100vw) !important;
  }
}
/* ---------------------------------------------
*   margin-bottom
--------------------------------------------- */
.mgb-pc--0 {
  margin-bottom: 0 !important;
}

.mgb-pc--5 {
  margin-bottom: 5px !important;
}

.mgb-pc--10 {
  margin-bottom: 10px !important;
}

.mgb-pc--15 {
  margin-bottom: 15px !important;
}

.mgb-pc--20 {
  margin-bottom: 20px !important;
}

.mgb-pc--25 {
  margin-bottom: 25px !important;
}

.mgb-pc--30 {
  margin-bottom: 30px !important;
}

.mgb-pc--35 {
  margin-bottom: 35px !important;
}

.mgb-pc--40 {
  margin-bottom: 40px !important;
}

.mgb-pc--45 {
  margin-bottom: 45px !important;
}

.mgb-pc--50 {
  margin-bottom: 50px !important;
}

.mgb-pc--55 {
  margin-bottom: 55px !important;
}

.mgb-pc--60 {
  margin-bottom: 60px !important;
}

.mgb-pc--65 {
  margin-bottom: 65px !important;
}

.mgb-pc--70 {
  margin-bottom: 70px !important;
}

.mgb-pc--75 {
  margin-bottom: 75px !important;
}

.mgb-pc--80 {
  margin-bottom: 80px !important;
}

.mgb-pc--85 {
  margin-bottom: 85px !important;
}

.mgb-pc--90 {
  margin-bottom: 90px !important;
}

.mgb-pc--95 {
  margin-bottom: 95px !important;
}

.mgb-pc--100 {
  margin-bottom: 100px !important;
}

.mgb-pc--105 {
  margin-bottom: 105px !important;
}

.mgb-pc--110 {
  margin-bottom: 110px !important;
}

.mgb-pc--115 {
  margin-bottom: 115px !important;
}

.mgb-pc--120 {
  margin-bottom: 120px !important;
}

.mgb-pc--125 {
  margin-bottom: 125px !important;
}

.mgb-pc--130 {
  margin-bottom: 130px !important;
}

.mgb-pc--135 {
  margin-bottom: 135px !important;
}

.mgb-pc--140 {
  margin-bottom: 140px !important;
}

.mgb-pc--145 {
  margin-bottom: 145px !important;
}

.mgb-pc--150 {
  margin-bottom: 150px !important;
}

.mgb-pc--155 {
  margin-bottom: 155px !important;
}

.mgb-pc--160 {
  margin-bottom: 160px !important;
}

.mgb-pc--165 {
  margin-bottom: 165px !important;
}

.mgb-pc--170 {
  margin-bottom: 170px !important;
}

.mgb-pc--175 {
  margin-bottom: 175px !important;
}

.mgb-pc--180 {
  margin-bottom: 180px !important;
}

.mgb-pc--185 {
  margin-bottom: 185px !important;
}

.mgb-pc--190 {
  margin-bottom: 190px !important;
}

.mgb-pc--195 {
  margin-bottom: 195px !important;
}

.mgb-pc--200 {
  margin-bottom: 200px !important;
}

.mgb-pc--205 {
  margin-bottom: 205px !important;
}

.mgb-pc--210 {
  margin-bottom: 210px !important;
}

.mgb-pc--215 {
  margin-bottom: 215px !important;
}

.mgb-pc--220 {
  margin-bottom: 220px !important;
}

.mgb-pc--225 {
  margin-bottom: 225px !important;
}

.mgb-pc--230 {
  margin-bottom: 230px !important;
}

.mgb-pc--235 {
  margin-bottom: 235px !important;
}

.mgb-pc--240 {
  margin-bottom: 240px !important;
}

.mgb-pc--245 {
  margin-bottom: 245px !important;
}

.mgb-pc--250 {
  margin-bottom: 250px !important;
}

@media screen and (max-width: 768px) {
  .mgb-sp--0 {
    margin-bottom: 0 !important;
  }
  .mgb-sp--5 {
    margin-bottom: calc(5 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--10 {
    margin-bottom: calc(10 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--15 {
    margin-bottom: calc(15 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--20 {
    margin-bottom: calc(20 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--25 {
    margin-bottom: calc(25 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--30 {
    margin-bottom: calc(30 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--35 {
    margin-bottom: calc(35 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--40 {
    margin-bottom: calc(40 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--45 {
    margin-bottom: calc(45 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--50 {
    margin-bottom: calc(50 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--55 {
    margin-bottom: calc(55 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--60 {
    margin-bottom: calc(60 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--65 {
    margin-bottom: calc(65 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--70 {
    margin-bottom: calc(70 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--75 {
    margin-bottom: calc(75 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--80 {
    margin-bottom: calc(80 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--85 {
    margin-bottom: calc(85 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--90 {
    margin-bottom: calc(90 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--95 {
    margin-bottom: calc(95 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--100 {
    margin-bottom: calc(100 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--105 {
    margin-bottom: calc(105 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--110 {
    margin-bottom: calc(110 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--115 {
    margin-bottom: calc(115 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--120 {
    margin-bottom: calc(120 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--125 {
    margin-bottom: calc(125 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--130 {
    margin-bottom: calc(130 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--135 {
    margin-bottom: calc(135 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--140 {
    margin-bottom: calc(140 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--145 {
    margin-bottom: calc(145 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--150 {
    margin-bottom: calc(150 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--155 {
    margin-bottom: calc(155 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--160 {
    margin-bottom: calc(160 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--165 {
    margin-bottom: calc(165 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--170 {
    margin-bottom: calc(170 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--175 {
    margin-bottom: calc(175 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--180 {
    margin-bottom: calc(180 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--185 {
    margin-bottom: calc(185 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--190 {
    margin-bottom: calc(190 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--195 {
    margin-bottom: calc(195 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--200 {
    margin-bottom: calc(200 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--205 {
    margin-bottom: calc(205 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--210 {
    margin-bottom: calc(210 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--215 {
    margin-bottom: calc(215 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--220 {
    margin-bottom: calc(220 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--225 {
    margin-bottom: calc(225 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--230 {
    margin-bottom: calc(230 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--235 {
    margin-bottom: calc(235 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--240 {
    margin-bottom: calc(240 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--245 {
    margin-bottom: calc(245 / var(--design-width) * 100vw) !important;
  }
  .mgb-sp--250 {
    margin-bottom: calc(250 / var(--design-width) * 100vw) !important;
  }
}
.sus_sfont {
  font-size: 0.8em;
}
.policy_guide_link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2em 1em;
  border: 1px solid var(--color-gray-6);
}
