@charset "UTF-8";
/*----------------------------------------
	reset
----------------------------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
article, aside, dialog, figure, footer, header, hgroup, main, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  vertical-align: baseline;
}

header, footer, article, section, aside, hgroup, nav, menu, figure, figcaption, time {
  display: block;
}

li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

img {
  border: 0;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

hr {
  margin: 1em 0;
  padding: 0;
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
}

input, select {
  vertical-align: middle;
}

img,
svg {
  vertical-align: bottom;
  width: 100%;
  height: auto;
  line-height: 1;
}

svg {
  fill: currentColor;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  width: 100%;
  background-color: #fff;
  font-size: 62.5%;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #222;
  scroll-behavior: smooth;
  scroll-padding-top: 9rem;
}
@media screen and (min-width: 769px) and (max-width: 1440px) {
  html {
    font-size: 0.65vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 60px;
  }
}

body {
  position: relative;
  width: 100%;
  margin: 0;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}

a {
  color: #222;
  transition: 0.2s all;
  text-decoration: none;
}
a:hover {
  color: #EF7538;
}

button {
  color: #00497E;
  cursor: pointer;
  transition: 0.3s all;
}
button:hover {
  opacity: 0.6;
}

sup {
  vertical-align: super;
  font-size: 0.6em;
  top: 0.1em;
  position: relative;
}

.l-wrapper {
  display: flex;
  flex-direction: column;
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-height: 100vh;
  width: 100%;
  position: relative;
}

.l-wrapper__inner {
  width: 90%;
  margin: auto;
  padding-inline: 4rem;
}
@media screen and (max-width: 768px) {
  .l-wrapper__inner {
    padding-inline: 2.5%;
  }
}
.l-wrapper__inner._s {
  max-width: 1120px;
}
.l-wrapper__inner._m {
  max-width: 1400px;
}
.l-wrapper__inner._l {
  max-width: 1480px;
}
.l-wrapper__inner._xl {
  max-width: 1680px;
}

.l-main {
  width: 100%;
  position: relative;
}

@media screen and (min-width: 769px) {
  .l-header {
    position: fixed;
    width: 100%;
    z-index: 20;
    padding-inline: 4rem;
  }
  .l-header__inner {
    max-width: 156rem;
    width: 100%;
    margin: 2rem auto;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(2px);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 4rem 2.6rem;
  }
  .l-header__logo {
    width: 20.8rem;
  }
  .l-header__gnav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 2.4rem;
  }
  .l-header__gnav__list {
    display: flex;
    gap: 1.6rem;
  }
  .l-header__gnav__list > li {
    height: 8.8rem;
    display: flex;
    align-items: center;
  }
  .l-header__togglenav {
    display: none;
  }
}
.l-header__button {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
.l-header__button li a {
  display: block;
  width: 16.8rem;
  min-height: 4.4rem;
  height: 100%;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.l-header__button li a.button__contact {
  color: #FFF;
  border: 1px solid currentColor;
  background-color: #00497E;
}
.l-header__button li a.button__contact:hover {
  background-color: #EF7538;
}

@media screen and (max-width: 768px) {
  .l-header {
    width: 100%;
    position: fixed;
    z-index: 20;
    background-color: #fff;
    border-bottom: 1px solid #F1F8FA;
  }
  .l-header__inner {
    height: 60px;
    padding-inline: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .l-header__logo a img {
    display: block;
    width: 24%;
    min-width: 150px;
  }
  .l-header__gnav {
    position: absolute;
    top: 60px;
    height: 100vh;
    overflow-y: scroll;
    left: 100%;
    z-index: 10;
    width: 100%;
    padding: 5% 5% 100px;
    background-color: #00497E;
    transition: 0.5s;
  }
  .l-header__gnav__list li a {
    font-weight: 400;
    display: block;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    padding: 10px;
  }
  .l-header__gnav__list .lang-bar > a {
    display: flex;
    align-items: center;
  }
  .l-header__gnav__list .lang-bar > a img {
    width: auto;
    height: 14px;
  }
  .l-header__gnav__list .lang-bar .lang-bar_sub-menu {
    padding-left: 20px;
  }
  .l-header__gnav__list .lang-bar .lang-bar_sub-menu > li a {
    display: flex;
    align-items: center;
  }
  .l-header__gnav__list .lang-bar .lang-bar_sub-menu > li a img {
    width: auto;
    height: 14px;
  }
  .l-header__button {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .l-header__button li {
    width: 90%;
    max-width: 400px;
  }
  .l-header__button li a {
    width: 100%;
    font-size: 18px;
    padding: 0.5em;
    display: block;
    margin-inline: auto;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .l-header__button li a.button__contact {
    color: #00497E;
    border: 1px solid currentColor;
    background-color: #fff;
  }
  .l-header__togglenav {
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background-color: #222;
    border: none;
    appearance: none;
  }
  .l-header__togglenav:active {
    opacity: 1;
  }
  .btn-line {
    display: block;
    margin-inline: auto;
    position: relative; /* バーガー線の位置基準として設定 */
    width: 55%; /* 線の長さと高さ */
    height: 2px;
    background-color: #fff; /* バーガー線の色 */
    transition: 0.2s;
  }
  .btn-line::before, .btn-line::after {
    display: block;
    content: "";
    margin-inline: auto;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: 0.3s;
  }
  .btn-line::before {
    transform: translateY(-10px);
  }
  .btn-line::after {
    transform: translateY(10px);
  }
  .js-menu.is-open {
    left: 0;
  }
  .btn-line.is-open {
    background-color: transparent;
  }
  .btn-line.is-open::before {
    transform: rotate(45deg);
  }
  .btn-line.is-open::after {
    transform: rotate(-45deg);
  }
}
.l-footer {
  margin-top: auto;
  border-top: 1px solid #F1F8FA;
  background-color: #002037;
  color: #fff;
}

.l-footer__inner {
  display: flex;
  justify-content: space-between;
  padding: 3.2rem 0;
}
@media screen and (max-width: 768px) {
  .l-footer__inner {
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px 0 10px;
  }
}
.l-footer__inner .inner__01 {
  display: flex;
  gap: 3.4rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .l-footer__inner .inner__01 {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.l-footer__logo img {
  max-width: 18rem;
}

.l-footer__address span {
  display: block;
}
.l-footer__address span:first-of-type {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .l-footer__address span:first-of-type {
    font-size: 14px;
  }
}
.l-footer__address span:nth-of-type(2) {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .l-footer__address span:nth-of-type(2) {
    font-size: 12px;
  }
}

.l-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .l-footer__nav {
    align-items: stretch;
    gap: 10px;
    border-bottom: 1px solid #3f515e;
  }
}
.l-footer__nav a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .l-footer__nav a {
    display: block;
    padding-bottom: 10px;
  }
}
.l-footer__nav a:hover {
  color: #EF7538;
}

.l-footer__nav__list {
  display: flex;
  gap: 1em;
}
@media screen and (max-width: 768px) {
  .l-footer__nav__list {
    flex-direction: column;
    gap: 5px;
    margin-top: 20px;
  }
  .l-footer__nav__list li {
    width: 100%;
    border-bottom: 1px solid #3f515e;
  }
}

.l-footer__copy {
  padding: 3rem;
  background-color: #002037;
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .l-footer__copy {
    padding: 20px;
  }
}

.c-button {
  display: flex;
  padding: 2.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  line-height: 1;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .c-button {
    padding: 22px;
    font-size: 16px;
  }
}
.c-button._primary {
  color: #FFF;
  background: linear-gradient(90deg, #E66603 0%, #F9A25F 100%);
}
.c-button._primary::before {
  content: "";
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  background: url(../images/common/icon_arrow.svg) center center no-repeat;
  background-size: contain;
}
.c-button._primary:hover {
  filter: brightness(1.3);
}
.c-button._secondary {
  background: #FFF;
  color: #E66603;
}
.c-button._secondary::before {
  content: "";
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  background: url(../images/common/icon_arrow_orange.svg) center center no-repeat;
  background-size: contain;
}
.c-button._secondary:hover {
  background-color: #F9A25F;
  color: #FFF;
}

.c-cta {
  padding-block: 8rem;
  background: url(../images/common/cta_bg.jpg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .c-cta {
    padding: 40px 5%;
  }
}

.c-cta__text {
  text-align: center;
  font-weight: bold;
  color: #fff;
  line-height: 1.3;
}
.c-cta__text p:first-of-type {
  font-size: 2.4rem;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 768px) {
  .c-cta__text p:first-of-type {
    font-size: 1.6rem;
  }
}
.c-cta__text p:nth-of-type(2) {
  font-size: 4rem;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 768px) {
  .c-cta__text p:nth-of-type(2) {
    font-size: 2.4rem;
  }
}

.c-cta__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .c-cta__button {
    margin-top: 30px;
    flex-direction: column;
    gap: 10px;
  }
}
.c-cta__button a {
  display: block;
  width: 50.4rem;
  min-height: 8.8rem;
  height: 100%;
  border-radius: 0.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  box-shadow: 0 4px 4.9px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .c-cta__button a {
    font-size: 18px;
    padding: 0.8em 0.5em;
    width: 100%;
    max-width: 420px;
    min-height: auto;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.c-cta__button a.button__contact {
  color: #07A6C3;
  border: 1px solid currentColor;
  background-color: #fff;
}
.c-cta__button a.button__contact:hover {
  background-color: #07A6C3;
  border: 1px solid #07A6C3;
  color: #fff;
}
.c-cta__button a.button__trial {
  color: #fff;
  background-image: linear-gradient(to right, #ffa582, #ec6632);
}
.c-cta__button a.button__trial:hover {
  filter: saturate(1.2) brightness(1.3);
}

.c-header01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  font-weight: bold;
  font-size: 3.2rem;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-header01 {
    font-size: 2rem;
  }
}
.c-header01._s {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .c-header01._s {
    font-size: 1.4rem;
    gap: 8px;
  }
}
.c-header01._col-white {
  color: #fff;
}
.c-header01::after {
  content: "";
  display: block;
  width: 3.2rem;
  height: 0.4rem;
  border-radius: 2px;
  background-color: rgba(0, 255, 229, 0.87);
}
@media screen and (max-width: 768px) {
  .c-header01::after {
    width: 24px;
    height: 3px;
  }
}

.c-readtext01 {
  margin-block: 1.6rem 6rem;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.07em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-readtext01 {
    font-size: 2rem;
    margin-block: 8px 30px;
  }
}
.c-readtext01._col-white {
  color: #fff;
}

.c-page__title {
  width: 100%;
  margin-block: 20rem 8rem;
}

.c-page__title__text {
  font-size: 3.2rem;
  line-height: 1.4;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .c-page__title__text {
    font-size: 2.4rem;
  }
}

.c-poststyle {
  margin-bottom: 12rem;
}
.c-poststyle h1 {
  font-size: 3.2rem;
  line-height: 1.3;
  border-bottom: 3px solid #00497E;
  padding-bottom: 0.3em;
  margin-top: 2.4rem;
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 989px) {
  .c-poststyle h1 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 520px) {
  .c-poststyle h1 {
    font-size: 2.2rem;
    margin-top: 16px;
    margin-bottom: 20px;
  }
}
.c-poststyle h2 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.3;
  border-left: 4px solid #00497E;
  padding-left: 0.5em;
  margin-block: 4rem 2rem;
}
@media screen and (max-width: 768px) {
  .c-poststyle h2 {
    font-size: 2rem;
  }
}
.c-poststyle h3 {
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 1px solid #00497E;
  padding-bottom: 0.5em;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .c-poststyle h3 {
    font-size: 1.8rem;
  }
}
.c-poststyle h4 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .c-poststyle h4 {
    font-size: 1.6rem;
  }
}
.c-poststyle p {
  margin-bottom: 2em;
}
.c-poststyle ul, .c-poststyle ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
.c-poststyle ul li {
  list-style: disc;
}
.c-poststyle ol._list-style01 {
  padding-left: 0;
}
.c-poststyle ol._list-style01 > li {
  list-style-type: none;
  text-indent: -1.5em;
  margin-left: 1.5em;
  counter-increment: cnt;
}
.c-poststyle ol._list-style01 > li::before {
  display: marker;
  content: "(" counter(cnt) ") ";
}
.c-poststyle img {
  width: inherit;
}
.c-poststyle a {
  text-decoration: underline;
}

.c-form_select,
.c-form_text,
.c-form_textarea {
  display: block;
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #C4C4C4;
  background: #FFF;
  padding: 1.6rem 2rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-form_select,
  .c-form_text,
  .c-form_textarea {
    padding: 12px 10px;
  }
}

select.c-form_select {
  appearance: none;
  background: url(../images/common/icon-arrow_b.svg) right 2rem center no-repeat;
  background-size: 1.2rem;
}

.p-top__contact__item dd .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
  margin-top: 0.5rem;
}

.c-form_text:disabled {
  background: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}

/* 「送信する」ボタン */
.wpcf7 input.wpcf7-submit {
  width: 40rem;
  border: none;
  transition: all 0.3s;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .wpcf7 input.wpcf7-submit {
    font-size: 18px;
    padding: 0.8em 0.5em;
    width: 100%;
    max-width: 420px;
    min-height: auto;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.wpcf7 input.wpcf7-submit:hover {
  cursor: pointer;
  opacity: 0.8;
}

.CF7_btn {
  text-align: center;
  margin-top: 2rem;
}

.wpcf7-spinner {
  width: 0;
  margin: 0;
}

select[aria-invalid=true],
input[aria-invalid=true],
textarea[aria-invalid=true] {
  border: 1px solid #dc3232;
}

.p-top__header {
  border-bottom: 1px solid #041724;
  font-size: 2.2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-top__header {
    font-size: 1.6rem;
  }
}
.p-top__header::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  content: attr(data-en);
  color: #003B66;
  font-family: Raleway;
  font-size: 7.1rem;
  font-weight: 600;
  line-height: 100%; /* 71px */
}
@media screen and (max-width: 768px) {
  .p-top__header::before {
    font-size: 3.8rem;
  }
}

.p-top__header01 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-top__header01 {
    font-size: 1.8rem;
  }
}
.p-top__header01::before {
  content: "";
  display: block;
  width: 3rem;
  height: 0.2rem;
  background-color: #E66603;
}
@media screen and (max-width: 768px) {
  .p-top__header01::before {
    width: 20px;
  }
}

.p-top__header02 {
  text-align: center;
  font-family: Raleway;
  font-size: 6.4rem;
  font-weight: 600;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .p-top__header02 {
    font-size: 4.4rem;
  }
}

.p-top___mv__wrapper {
  position: relative;
  background: url(../images/top/mv-img.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.p-top___mv__wrapper::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.p-top__mv__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  padding-block: 20rem 8rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-top__mv__inner {
    flex-direction: column;
    gap: 32px;
    padding-block: 160px 48px;
  }
}

.p-top__mv__catch {
  width: 59.4rem;
}
@media screen and (max-width: 768px) {
  .p-top__mv__catch {
    width: 100%;
    max-width: 500px;
  }
}

.p-top__mv__read {
  margin-top: 4rem;
  color: #FFF;
  font-size: 2.2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-top__mv__read {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.6;
  }
}

.p-top__mv__buttons {
  display: flex;
  gap: 1.2rem;
  margin-top: 3.4rem;
}
@media screen and (max-width: 768px) {
  .p-top__mv__buttons {
    flex-direction: column;
  }
}
.p-top__mv__buttons li {
  width: 28rem;
}
@media screen and (max-width: 768px) {
  .p-top__mv__buttons li {
    width: 100%;
  }
}

.p-top__mv__info {
  flex-shrink: 0;
  width: 67rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 4rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 768px) {
  .p-top__mv__info {
    width: 100%;
    padding: 24px 20px;
  }
}

.p-top__mv__info__head {
  color: #00497E;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top__mv__info__head {
    font-size: 1.6rem;
    width: 100%;
  }
}

.p-top__mv__info__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.p-top__mv__info__item {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 10px 12px 0 rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}
.p-top__mv__info__item::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #E66603 0%, #F9A25F 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
}
.p-top__mv__info__item a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 16.1rem;
  padding: 3rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top__mv__info__item a {
    min-height: auto;
    padding: 20px;
  }
}
.p-top__mv__info__item a .p-top__mv__info__title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #222;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .p-top__mv__info__item a .p-top__mv__info__title {
    font-size: 1.8rem;
  }
}
.p-top__mv__info__item a .p-top__mv__info__title::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../images/common/icon_arrow_orange.svg) center center no-repeat;
  background-size: contain;
}
.p-top__mv__info__item a .p-top__mv__info__text {
  color: #222;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-top__mv__info__item a .p-top__mv__info__text {
    font-size: 1.4rem;
  }
}
.p-top__mv__info__item:hover::before {
  opacity: 1;
}
.p-top__mv__info__item:hover a > * {
  color: #fff;
}
.p-top__mv__info__item:hover a .p-top__mv__info__title::before {
  background: url(../images/common/icon_arrow.svg) center center no-repeat;
  background-size: contain;
}

.p-top__intro {
  padding-block: 37.6rem 14rem;
  background: linear-gradient(180deg, rgba(2, 53, 87, 0) 0%, rgba(2, 53, 87, 0.1) 20%, rgba(2, 53, 87, 0.38) 40%, #023557 100%);
}
@media screen and (max-width: 768px) {
  .p-top__intro {
    padding-block: 240px 60px;
  }
}

.p-top__intro__read {
  color: #FFF;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 210%; /* 50.4px */
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-top__intro__read {
    text-align: left;
    font-size: 1.6rem;
  }
}

.p-top__intro__list {
  margin-top: 8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .p-top__intro__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.p-top__intro__item {
  display: flex;
  padding: 2.8rem 2rem;
  flex-direction: column;
  gap: 2rem;
  border-radius: 10px;
  background: #00497E;
  border: 1px solid rgba(255, 255, 255, 0.43);
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .p-top__intro__item {
    border-width: 1px;
    border-radius: 8px;
    padding: 20px;
    gap: 10px;
  }
}
.p-top__intro__item h3 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-top__intro__item h3 {
    font-size: 18px;
  }
}
.p-top__intro__item p {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 150%; /* 24px */
}
@media screen and (max-width: 768px) {
  .p-top__intro__item p {
    font-size: 14px;
  }
}

.p-top__intro__text {
  margin-top: 16.4rem;
  color: #FFF;
  text-align: center;
  font-size: 3.4rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-top__intro__text {
    margin-top: 120px;
    font-size: 2rem;
  }
}

.p-top__strength {
  padding-block: 12rem;
  background: url(../images/top/strength-bg01.png) center 32rem no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  .p-top__strength {
    padding-block: 60px;
    background-position: center top 480px;
    background-size: 200%;
  }
}
.p-top__strength._bg-none {
  background: none;
}

.p-top__strength__intro {
  padding-top: 8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-top__strength__intro {
    flex-direction: column;
    padding-top: 30px;
    align-items: stretch;
    gap: 10px;
  }
}
.p-top__strength__intro .intro__head {
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 52px */
}
@media screen and (max-width: 768px) {
  .p-top__strength__intro .intro__head {
    font-size: 2.8rem;
  }
}
.p-top__strength__intro .intro__head strong {
  color: #FFF;
  padding: 0.1em 0.3em;
  display: inline-block;
  margin-bottom: 1rem;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  .p-top__strength__intro .intro__head strong {
    margin-bottom: 5px;
  }
}
.p-top__strength__intro .intro__head strong:first-of-type {
  background-color: #00497E;
}
.p-top__strength__intro .intro__head strong:nth-of-type(2) {
  background-color: #E66603;
}
.p-top__strength__intro .intro__text {
  width: 74.5rem;
  flex-shrink: 0;
  font-size: 1.8rem;
  line-height: 200%; /* 36px */
}
@media screen and (max-width: 768px) {
  .p-top__strength__intro .intro__text {
    width: 100%;
    font-size: 1.4rem;
  }
}

.p-top__strength__reason {
  margin-top: 12rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .p-top__strength__reason {
    margin-top: 40px;
  }
}
.p-top__strength__reason .reason__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .p-top__strength__reason .reason__list {
    grid-template-columns: 1fr;
  }
}
.p-top__strength__reason .reason__item {
  display: flex;
  padding: 3rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.2rem;
  flex: 1 0 0;
  border-radius: 1rem;
  background: #FFF;
  box-shadow: 0 1rem 1.2rem 0 rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 768px) {
  .p-top__strength__reason .reason__item {
    border-radius: 8px;
    gap: 10px;
  }
}
.p-top__strength__reason .reason__item dt {
  display: flex;
  height: 9.6rem;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  align-self: stretch;
  color: #00497E;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 130%; /* 32.5px */
}
@media screen and (max-width: 768px) {
  .p-top__strength__reason .reason__item dt {
    font-size: 2rem;
    height: auto;
  }
}
.p-top__strength__reason .reason__item dd {
  align-self: stretch;
  font-size: 1.5rem;
  line-height: 160%; /* 24px */
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .p-top__strength__reason .reason__item dd {
    font-size: 1.4rem;
  }
}

.p-top__strength__summary {
  text-align: center;
  margin-top: 25.3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top__strength__summary {
    margin-top: 40px;
    gap: 10px;
  }
}
.p-top__strength__summary p:first-of-type {
  font-size: 3.4rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-top__strength__summary p:first-of-type {
    font-size: 2.4rem;
  }
}
.p-top__strength__summary p:first-of-type strong {
  color: #fff;
  padding: 0.1em 0.3em;
  display: inline-block;
  margin-right: 0.5rem;
  background-color: #E66603;
}
.p-top__strength__summary p:nth-of-type(2) {
  font-size: 1.8rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .p-top__strength__summary p:nth-of-type(2) {
    font-size: 1.4rem;
  }
}

.p-top__solution {
  padding-block: 12rem;
  background: #F0F3F5;
}
@media screen and (max-width: 768px) {
  .p-top__solution {
    padding-block: 60px;
  }
}

.p-top__solution__read {
  font-size: 1.8rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top__solution__read {
    font-size: 1.4rem;
    margin-top: 20px;
  }
}

.p-top__solution__list {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .p-top__solution__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.p-top__solution__item {
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 2.2rem;
  align-self: stretch;
  border-radius: 1rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-top__solution__item {
    gap: 20px;
    flex-direction: column;
  }
}
.p-top__solution__item .item__inner {
  padding: 3rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2.2rem;
  flex: 0 0 50%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top__solution__item .item__inner {
    padding: 0 20px 20px;
  }
}
.p-top__solution__item .item__logo {
  width: 100%;
  margin-top: -2rem;
}
@media screen and (max-width: 768px) {
  .p-top__solution__item .item__logo {
    margin-top: 0;
  }
}
.p-top__solution__item .item__logo img {
  width: 100%;
  max-width: 40rem;
  text-align: center;
}
.p-top__solution__item .item__text {
  font-size: 1.8rem;
}
.p-top__solution__item .item__link {
  text-align: right;
  width: 100%;
  position: absolute;
  bottom: 4rem;
  right: 3rem;
}
@media screen and (max-width: 768px) {
  .p-top__solution__item .item__link {
    position: relative;
    bottom: auto;
    right: auto;
  }
}
.p-top__solution__item .item__link a {
  display: block;
  color: #E66603;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
}
.p-top__solution__item .item__link a::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background: url(../images/common/icon_arrow_orange.svg) center center no-repeat;
  background-size: contain;
}
.p-top__solution__item .item__link a:hover {
  opacity: 0.7;
}

.p-top__case {
  padding-block: 12rem;
  background: url(../images/top/case-bg.jpg) center top no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .p-top__case {
    padding-block: 60px;
  }
}
.p-top__case .p-top__header {
  color: #FFF;
  border-bottom-color: #FFF;
}
.p-top__case .p-top__header::before {
  color: #FFF;
}

.p-top__case__inner {
  display: grid;
  grid-template-columns: 64rem 1fr;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top__case__inner {
    grid-template-columns: 1fr;
  }
}
.p-top__case__inner .inner__01 {
  position: relative;
  color: #fff;
}
.p-top__case__inner .inner__01 div {
  position: sticky;
  top: 14rem;
}
.p-top__case__inner .inner__01 p {
  margin-block: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top__case__inner .inner__01 p {
    margin-block: 20px;
  }
}
.p-top__case__inner .inner__01 .p-top__case__button {
  max-width: 28rem;
}
.p-top__case__inner .inner__02 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
  flex: 1 0 0;
}

.p-top__case__item {
  display: flex;
  width: 100%;
  padding: 3.4rem 2.6rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.2rem;
  border-radius: 0.5rem;
  background: rgba(34, 34, 34, 0.7);
}
@media screen and (max-width: 768px) {
  .p-top__case__item {
    padding: 15px;
    gap: 15px;
  }
}
.p-top__case__item .item__title {
  color: #FFF;
  font-size: 2.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-top__case__item .item__title {
    font-size: 2rem;
  }
}
.p-top__case__item .item__title span {
  color: #FFF;
  font-size: 1.6rem;
  background-color: #E66603;
  padding: 0 0.3em;
}
@media screen and (max-width: 768px) {
  .p-top__case__item .item__title span {
    font-size: 1.4rem;
  }
}
.p-top__case__item .item__problem {
  display: flex;
  padding: 3rem 2rem;
  align-items: center;
  gap: 2rem;
  align-self: stretch;
  border-radius: 0.5rem;
  background: #FFF;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top__case__item .item__problem {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 10px;
  }
}
.p-top__case__item .item__problem h4 {
  width: 13rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #00497E;
  font-size: 2rem;
  font-weight: 700;
}
.p-top__case__item .item__problem h4::before {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  background: url(../images/top/icon-edit.svg) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-top__case__item .item__problem h4 {
    font-size: 16px;
  }
  .p-top__case__item .item__problem h4::before {
    width: 20px;
    height: 20px;
  }
}
.p-top__case__item .item__problem p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%; /* 24px */
}
@media screen and (max-width: 768px) {
  .p-top__case__item .item__problem p {
    font-size: 1.4rem;
  }
}
.p-top__case__item .item__problem::after {
  content: "";
  display: block;
  width: 6.8rem;
  height: 7.4rem;
  background: url(../images/top/case-img_arrow.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(100% - 2rem);
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .p-top__case__item .item__problem::after {
    width: 60px;
    height: 60px;
  }
}
.p-top__case__item .item__result {
  display: flex;
  padding: 3rem 2rem;
  align-items: center;
  gap: 2rem;
  align-self: stretch;
  border-radius: 0.5rem;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .p-top__case__item .item__result {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 10px;
  }
}
.p-top__case__item .item__result h4 {
  width: 13rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #E66603;
  font-size: 2rem;
  font-weight: 700;
}
.p-top__case__item .item__result h4::before {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  background: url(../images/top/icon-graph.svg) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-top__case__item .item__result h4 {
    font-size: 16px;
  }
  .p-top__case__item .item__result h4::before {
    width: 20px;
    height: 20px;
  }
}
.p-top__case__item .item__result ul {
  padding-left: 1em;
}
.p-top__case__item .item__result ul li {
  list-style: disc;
}
@media screen and (max-width: 768px) {
  .p-top__case__item .item__result ul li {
    font-size: 1.4rem;
  }
}
.p-top__case__item .item__result ul {
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .p-top__case__item .item__result ul {
    margin-bottom: 10px;
  }
}

.p-top__faq {
  padding-block: 12rem;
  background: #F0F3F5;
}
@media screen and (max-width: 768px) {
  .p-top__faq {
    padding-block: 60px;
  }
}

.p-top__faq__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 4rem;
}

.p-top__faq__item {
  padding: 2.4rem 3.2rem;
  border-radius: 0.5rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-top__faq__item {
    padding: 15px 5%;
  }
}
.p-top__faq__item dt {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top__faq__item dt {
    font-size: 1.6rem;
    padding-right: 8%;
  }
}
.p-top__faq__item dt span {
  font-family: Raleway;
  font-size: 2.4rem;
  font-weight: 700;
}
.p-top__faq__item dt::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../images/top/faq-icon_arrow.svg) center center no-repeat;
  background-size: cover;
  position: absolute;
  top: 1rem;
  right: 0;
  transform: rotate(180deg);
}
.p-top__faq__item dt.active::after {
  transform: rotate(0deg);
}
.p-top__faq__item dt:hover {
  cursor: pointer;
  color: #E66603;
}
.p-top__faq__item dd {
  margin-top: 2rem;
  display: none;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .p-top__faq__item dd {
    padding: 20px;
    margin-top: 0;
  }
}

.p-top__partner {
  padding-block: 12rem;
}
@media screen and (max-width: 768px) {
  .p-top__partner {
    padding-block: 60px;
  }
}

@media screen and (max-width: 768px) {
  .p-top__partner__mv {
    height: 140px;
    object-fit: cover;
  }
}

.p-top__partner__read {
  margin-block: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top__partner__read {
    margin-block: 20px;
  }
}

.p-top__partner__flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .p-top__partner__flow {
    gap: 10px;
  }
}

.p-top__partner__flow__list {
  padding: 3rem;
  border-radius: 0.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  background: #F0F3F5 url(../images/top/partner-flow-img.svg) center center no-repeat;
  background-size: 121.6rem auto;
}
@media screen and (max-width: 768px) {
  .p-top__partner__flow__list {
    flex-direction: column;
    background-image: none;
    padding: 20px;
    gap: 20px;
  }
}
.p-top__partner__flow__list li {
  display: flex;
  width: 19.4rem;
  padding: 2rem 3rem;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  border-radius: 1rem;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .p-top__partner__flow__list li {
    width: 100%;
    padding: 16px;
  }
}
.p-top__partner__flow__list li h4 {
  color: #00497E;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-top__partner__flow__list li h4 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top__partner__flow__list li img {
    width: 90px;
    height: auto;
  }
}

.p-top__partner__button {
  margin-top: 4rem;
}
.p-top__partner__button a {
  width: 28rem;
  margin-inline: auto;
}

.p-top__about {
  padding-block: 16rem;
  color: #fff;
  background: #00497E url(../images/top/about-bg.png) center center no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  .p-top__about {
    padding-block: 60px;
    background-position: center top 410px;
    background-size: 200%;
  }
}

.p-top__about__intro {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top__about__intro {
    padding-right: 0;
  }
}
.p-top__about__intro .p-top__header {
  color: #fff;
  border-bottom-color: #fff;
  margin-bottom: 4rem;
}
.p-top__about__intro .p-top__header::before {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-top__about__intro .p-top__header {
    margin-bottom: 20px;
  }
}

.p-top__about__list {
  width: 120rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.2rem;
  margin-top: 10rem;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-top__about__list {
    width: 100%;
    margin-top: 40px;
  }
}

.p-top__about__item {
  display: flex;
  padding: 3rem;
  align-items: center;
  gap: 6rem;
  align-self: stretch;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .p-top__about__item {
    padding: 10px 20px;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
}
.p-top__about__item dt {
  width: 19.6rem;
  color: #00497E;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-top__about__item dt {
    font-size: 16px;
  }
}
.p-top__about__item dd {
  color: #222;
}
@media screen and (max-width: 768px) {
  .p-top__about__item dd {
    font-size: 1.4rem;
  }
}

.p-top__contact {
  background-color: #F0F3F5;
  padding-block: 12rem;
}
@media screen and (max-width: 768px) {
  .p-top__contact {
    padding-block: 60px;
  }
}

.p-top__contact__read {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top__contact__read {
    margin-top: 20px;
  }
}

.p-top__contact__buttons {
  margin-top: 4rem;
  padding: 7.6rem;
  border-radius: 5px;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .p-top__contact__buttons {
    margin-top: 24px;
    padding: 30px 20px;
  }
}

.p-top__contact__buttons__list {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top__contact__buttons__list {
    flex-direction: column;
    gap: 20px;
  }
}

.p-top__contact__buttons__item {
  flex: 1 1 0;
  min-width: 0;
}

.p-top__contact__buttons__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  width: 100%;
  padding: 2.5rem;
  border-radius: 10px;
  background: linear-gradient(90deg, #E66603 0%, #F9A25F 100%);
  color: #FFF;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: filter 0.3s;
  box-shadow: 0 1rem 1.2rem 0 rgba(0, 0, 0, 0.04);
}
.p-top__contact__buttons__link:hover {
  filter: brightness(1.3);
  color: #fff;
}

.p-top__contact__buttons__title {
  font-size: 2.4rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .p-top__contact__buttons__title {
    font-size: 1.8rem;
  }
}

.p-top__contact__buttons__lead {
  font-size: 1.6rem;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .p-top__contact__buttons__lead {
    font-size: 1.4rem;
  }
}

.p-contact__products__wrap {
  width: 100%;
  max-width: 93rem;
  margin-inline: auto;
  padding: 6rem;
}
.p-contact__products__wrap .wpcf7 {
  width: 100%;
}

.p-top__contact__list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2rem;
  align-items: start;
}
@media screen and (max-width: 768px) {
  .p-top__contact__list {
    gap: 10px;
  }
}

@media screen and (max-width: 768px) {
  .p-top__contact__item {
    grid-column: 1/-1;
  }
}
.p-top__contact__item._span-2 {
  grid-column: 1/-1;
}
.p-top__contact__item dt {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-top__contact__item dt {
    margin-bottom: 5px;
    font-size: 16px;
  }
}
.p-top__contact__item dt ._required {
  color: #E66603;
  font-size: 1.4rem;
  font-weight: 500;
}

.u-align_left {
  text-align: left;
}

.u-align_right {
  text-align: right;
}

.u-align_center {
  text-align: center;
}

.u-col_red {
  color: #CC0101;
}

.u-col_main {
  color: #222;
}

.u-col_keycol {
  color: #EF7538;
}

.u-col_white {
  color: #fff;
}

.u-fw_bold {
  font-weight: bold;
}

.u-fw_400 {
  font-weight: 400;
}

.u-fw_500 {
  font-weight: 500;
}

.u-fw_700 {
  font-weight: 700;
}

.u-fw_900 {
  font-weight: 900;
}

.u-fz_xsm {
  font-size: 1.2rem;
}

.u-fz_sm {
  font-size: 1.4rem;
}

.u-fz_md {
  font-size: 1.6rem;
}

.u-fz_lg {
  font-size: 1.8rem;
}

.u-fz_xlg {
  font-size: 2rem;
}

.u-fz_xxlg {
  font-size: 2.4rem;
}

.u-fz_10 {
  font-size: 1rem;
}
.u-fz_10 var-mixin.tb {
  font-size: 0.8rem;
}

.u-fz_11 {
  font-size: 1.1rem;
}
.u-fz_11 var-mixin.tb {
  font-size: 0.88rem;
}

.u-fz_12 {
  font-size: 1.2rem;
}
.u-fz_12 var-mixin.tb {
  font-size: 0.96rem;
}

.u-fz_13 {
  font-size: 1.3rem;
}
.u-fz_13 var-mixin.tb {
  font-size: 1.04rem;
}

.u-fz_14 {
  font-size: 1.4rem;
}
.u-fz_14 var-mixin.tb {
  font-size: 1.12rem;
}

.u-fz_15 {
  font-size: 1.5rem;
}
.u-fz_15 var-mixin.tb {
  font-size: 1.2rem;
}

.u-fz_16 {
  font-size: 1.6rem;
}
.u-fz_16 var-mixin.tb {
  font-size: 1.28rem;
}

.u-fz_17 {
  font-size: 1.7rem;
}
.u-fz_17 var-mixin.tb {
  font-size: 1.36rem;
}

.u-fz_18 {
  font-size: 1.8rem;
}
.u-fz_18 var-mixin.tb {
  font-size: 1.44rem;
}

.u-fz_19 {
  font-size: 1.9rem;
}
.u-fz_19 var-mixin.tb {
  font-size: 1.52rem;
}

.u-fz_20 {
  font-size: 2rem;
}
.u-fz_20 var-mixin.tb {
  font-size: 1.6rem;
}

.u-fz_21 {
  font-size: 2.1rem;
}
.u-fz_21 var-mixin.tb {
  font-size: 1.68rem;
}

.u-fz_22 {
  font-size: 2.2rem;
}
.u-fz_22 var-mixin.tb {
  font-size: 1.76rem;
}

.u-fz_23 {
  font-size: 2.3rem;
}
.u-fz_23 var-mixin.tb {
  font-size: 1.84rem;
}

.u-fz_24 {
  font-size: 2.4rem;
}
.u-fz_24 var-mixin.tb {
  font-size: 1.92rem;
}

.u-fz_25 {
  font-size: 2.5rem;
}
.u-fz_25 var-mixin.tb {
  font-size: 2rem;
}

.u-fz_26 {
  font-size: 2.6rem;
}
.u-fz_26 var-mixin.tb {
  font-size: 2.08rem;
}

.u-fz_27 {
  font-size: 2.7rem;
}
.u-fz_27 var-mixin.tb {
  font-size: 2.16rem;
}

.u-fz_28 {
  font-size: 2.8rem;
}
.u-fz_28 var-mixin.tb {
  font-size: 2.24rem;
}

.u-fz_29 {
  font-size: 2.9rem;
}
.u-fz_29 var-mixin.tb {
  font-size: 2.32rem;
}

.u-fz_30 {
  font-size: 3rem;
}
.u-fz_30 var-mixin.tb {
  font-size: 2.4rem;
}

.u-fz_31 {
  font-size: 3.1rem;
}
.u-fz_31 var-mixin.tb {
  font-size: 2.48rem;
}

.u-fz_32 {
  font-size: 3.2rem;
}
.u-fz_32 var-mixin.tb {
  font-size: 2.56rem;
}

.u-mt_0:not(:root) {
  margin-top: 0rem;
}
@media screen and (max-width: 768px) {
  .u-mt_0:not(:root) {
    margin-top: calc(0px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mt_0:not(:root) {
    margin-top: calc(0px * 10 * 0.4);
  }
}

.u-mt_1:not(:root) {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .u-mt_1:not(:root) {
    margin-top: calc(1px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mt_1:not(:root) {
    margin-top: calc(1px * 10 * 0.4);
  }
}

.u-mt_2:not(:root) {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .u-mt_2:not(:root) {
    margin-top: calc(2px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mt_2:not(:root) {
    margin-top: calc(2px * 10 * 0.4);
  }
}

.u-mt_3:not(:root) {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .u-mt_3:not(:root) {
    margin-top: calc(3px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mt_3:not(:root) {
    margin-top: calc(3px * 10 * 0.4);
  }
}

.u-mt_4:not(:root) {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .u-mt_4:not(:root) {
    margin-top: calc(4px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mt_4:not(:root) {
    margin-top: calc(4px * 10 * 0.4);
  }
}

.u-mt_5:not(:root) {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .u-mt_5:not(:root) {
    margin-top: calc(5px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mt_5:not(:root) {
    margin-top: calc(5px * 10 * 0.4);
  }
}

.u-mt_6:not(:root) {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .u-mt_6:not(:root) {
    margin-top: calc(6px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mt_6:not(:root) {
    margin-top: calc(6px * 10 * 0.4);
  }
}

.u-mt_7:not(:root) {
  margin-top: 7rem;
}
@media screen and (max-width: 768px) {
  .u-mt_7:not(:root) {
    margin-top: calc(7px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mt_7:not(:root) {
    margin-top: calc(7px * 10 * 0.4);
  }
}

.u-mt_8:not(:root) {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .u-mt_8:not(:root) {
    margin-top: calc(8px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mt_8:not(:root) {
    margin-top: calc(8px * 10 * 0.4);
  }
}

.u-mt_9:not(:root) {
  margin-top: 9rem;
}
@media screen and (max-width: 768px) {
  .u-mt_9:not(:root) {
    margin-top: calc(9px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mt_9:not(:root) {
    margin-top: calc(9px * 10 * 0.4);
  }
}

.u-mt_10:not(:root) {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .u-mt_10:not(:root) {
    margin-top: calc(10px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mt_10:not(:root) {
    margin-top: calc(10px * 10 * 0.4);
  }
}

.u-mb_0:not(:root) {
  margin-bottom: 0rem;
}
@media screen and (max-width: 768px) {
  .u-mb_0:not(:root) {
    margin-bottom: calc(0px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mb_0:not(:root) {
    margin-bottom: calc(0px * 10 * 0.4);
  }
}

.u-mb_1:not(:root) {
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .u-mb_1:not(:root) {
    margin-bottom: calc(1px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mb_1:not(:root) {
    margin-bottom: calc(1px * 10 * 0.4);
  }
}

.u-mb_2:not(:root) {
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .u-mb_2:not(:root) {
    margin-bottom: calc(2px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mb_2:not(:root) {
    margin-bottom: calc(2px * 10 * 0.4);
  }
}

.u-mb_3:not(:root) {
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .u-mb_3:not(:root) {
    margin-bottom: calc(3px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mb_3:not(:root) {
    margin-bottom: calc(3px * 10 * 0.4);
  }
}

.u-mb_4:not(:root) {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .u-mb_4:not(:root) {
    margin-bottom: calc(4px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mb_4:not(:root) {
    margin-bottom: calc(4px * 10 * 0.4);
  }
}

.u-mb_5:not(:root) {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .u-mb_5:not(:root) {
    margin-bottom: calc(5px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mb_5:not(:root) {
    margin-bottom: calc(5px * 10 * 0.4);
  }
}

.u-mb_6:not(:root) {
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .u-mb_6:not(:root) {
    margin-bottom: calc(6px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mb_6:not(:root) {
    margin-bottom: calc(6px * 10 * 0.4);
  }
}

.u-mb_7:not(:root) {
  margin-bottom: 7rem;
}
@media screen and (max-width: 768px) {
  .u-mb_7:not(:root) {
    margin-bottom: calc(7px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mb_7:not(:root) {
    margin-bottom: calc(7px * 10 * 0.4);
  }
}

.u-mb_8:not(:root) {
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .u-mb_8:not(:root) {
    margin-bottom: calc(8px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mb_8:not(:root) {
    margin-bottom: calc(8px * 10 * 0.4);
  }
}

.u-mb_9:not(:root) {
  margin-bottom: 9rem;
}
@media screen and (max-width: 768px) {
  .u-mb_9:not(:root) {
    margin-bottom: calc(9px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mb_9:not(:root) {
    margin-bottom: calc(9px * 10 * 0.4);
  }
}

.u-mb_10:not(:root) {
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .u-mb_10:not(:root) {
    margin-bottom: calc(10px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mb_10:not(:root) {
    margin-bottom: calc(10px * 10 * 0.4);
  }
}

.u-mr_0:not(:root) {
  margin-right: 0rem;
}
@media screen and (max-width: 768px) {
  .u-mr_0:not(:root) {
    margin-right: calc(0px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mr_0:not(:root) {
    margin-right: calc(0px * 10 * 0.4);
  }
}

.u-mr_1:not(:root) {
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  .u-mr_1:not(:root) {
    margin-right: calc(1px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mr_1:not(:root) {
    margin-right: calc(1px * 10 * 0.4);
  }
}

.u-mr_2:not(:root) {
  margin-right: 2rem;
}
@media screen and (max-width: 768px) {
  .u-mr_2:not(:root) {
    margin-right: calc(2px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mr_2:not(:root) {
    margin-right: calc(2px * 10 * 0.4);
  }
}

.u-mr_3:not(:root) {
  margin-right: 3rem;
}
@media screen and (max-width: 768px) {
  .u-mr_3:not(:root) {
    margin-right: calc(3px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mr_3:not(:root) {
    margin-right: calc(3px * 10 * 0.4);
  }
}

.u-mr_4:not(:root) {
  margin-right: 4rem;
}
@media screen and (max-width: 768px) {
  .u-mr_4:not(:root) {
    margin-right: calc(4px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mr_4:not(:root) {
    margin-right: calc(4px * 10 * 0.4);
  }
}

.u-mr_5:not(:root) {
  margin-right: 5rem;
}
@media screen and (max-width: 768px) {
  .u-mr_5:not(:root) {
    margin-right: calc(5px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mr_5:not(:root) {
    margin-right: calc(5px * 10 * 0.4);
  }
}

.u-mr_6:not(:root) {
  margin-right: 6rem;
}
@media screen and (max-width: 768px) {
  .u-mr_6:not(:root) {
    margin-right: calc(6px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mr_6:not(:root) {
    margin-right: calc(6px * 10 * 0.4);
  }
}

.u-mr_7:not(:root) {
  margin-right: 7rem;
}
@media screen and (max-width: 768px) {
  .u-mr_7:not(:root) {
    margin-right: calc(7px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mr_7:not(:root) {
    margin-right: calc(7px * 10 * 0.4);
  }
}

.u-mr_8:not(:root) {
  margin-right: 8rem;
}
@media screen and (max-width: 768px) {
  .u-mr_8:not(:root) {
    margin-right: calc(8px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mr_8:not(:root) {
    margin-right: calc(8px * 10 * 0.4);
  }
}

.u-mr_9:not(:root) {
  margin-right: 9rem;
}
@media screen and (max-width: 768px) {
  .u-mr_9:not(:root) {
    margin-right: calc(9px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mr_9:not(:root) {
    margin-right: calc(9px * 10 * 0.4);
  }
}

.u-mr_10:not(:root) {
  margin-right: 10rem;
}
@media screen and (max-width: 768px) {
  .u-mr_10:not(:root) {
    margin-right: calc(10px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mr_10:not(:root) {
    margin-right: calc(10px * 10 * 0.4);
  }
}

.u-ml_0:not(:root) {
  margin-left: 0rem;
}
@media screen and (max-width: 768px) {
  .u-ml_0:not(:root) {
    margin-left: calc(0px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-ml_0:not(:root) {
    margin-left: calc(0px * 10 * 0.4);
  }
}

.u-ml_1:not(:root) {
  margin-left: 1rem;
}
@media screen and (max-width: 768px) {
  .u-ml_1:not(:root) {
    margin-left: calc(1px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-ml_1:not(:root) {
    margin-left: calc(1px * 10 * 0.4);
  }
}

.u-ml_2:not(:root) {
  margin-left: 2rem;
}
@media screen and (max-width: 768px) {
  .u-ml_2:not(:root) {
    margin-left: calc(2px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-ml_2:not(:root) {
    margin-left: calc(2px * 10 * 0.4);
  }
}

.u-ml_3:not(:root) {
  margin-left: 3rem;
}
@media screen and (max-width: 768px) {
  .u-ml_3:not(:root) {
    margin-left: calc(3px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-ml_3:not(:root) {
    margin-left: calc(3px * 10 * 0.4);
  }
}

.u-ml_4:not(:root) {
  margin-left: 4rem;
}
@media screen and (max-width: 768px) {
  .u-ml_4:not(:root) {
    margin-left: calc(4px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-ml_4:not(:root) {
    margin-left: calc(4px * 10 * 0.4);
  }
}

.u-ml_5:not(:root) {
  margin-left: 5rem;
}
@media screen and (max-width: 768px) {
  .u-ml_5:not(:root) {
    margin-left: calc(5px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-ml_5:not(:root) {
    margin-left: calc(5px * 10 * 0.4);
  }
}

.u-ml_6:not(:root) {
  margin-left: 6rem;
}
@media screen and (max-width: 768px) {
  .u-ml_6:not(:root) {
    margin-left: calc(6px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-ml_6:not(:root) {
    margin-left: calc(6px * 10 * 0.4);
  }
}

.u-ml_7:not(:root) {
  margin-left: 7rem;
}
@media screen and (max-width: 768px) {
  .u-ml_7:not(:root) {
    margin-left: calc(7px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-ml_7:not(:root) {
    margin-left: calc(7px * 10 * 0.4);
  }
}

.u-ml_8:not(:root) {
  margin-left: 8rem;
}
@media screen and (max-width: 768px) {
  .u-ml_8:not(:root) {
    margin-left: calc(8px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-ml_8:not(:root) {
    margin-left: calc(8px * 10 * 0.4);
  }
}

.u-ml_9:not(:root) {
  margin-left: 9rem;
}
@media screen and (max-width: 768px) {
  .u-ml_9:not(:root) {
    margin-left: calc(9px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-ml_9:not(:root) {
    margin-left: calc(9px * 10 * 0.4);
  }
}

.u-ml_10:not(:root) {
  margin-left: 10rem;
}
@media screen and (max-width: 768px) {
  .u-ml_10:not(:root) {
    margin-left: calc(10px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-ml_10:not(:root) {
    margin-left: calc(10px * 10 * 0.4);
  }
}

.u-my_0:not(:root) {
  margin-block: 0rem;
}
@media screen and (max-width: 768px) {
  .u-my_0:not(:root) {
    margin-block: calc(0px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-my_0:not(:root) {
    margin-block: calc(0px * 10 * 0.4);
  }
}

.u-my_1:not(:root) {
  margin-block: 1rem;
}
@media screen and (max-width: 768px) {
  .u-my_1:not(:root) {
    margin-block: calc(1px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-my_1:not(:root) {
    margin-block: calc(1px * 10 * 0.4);
  }
}

.u-my_2:not(:root) {
  margin-block: 2rem;
}
@media screen and (max-width: 768px) {
  .u-my_2:not(:root) {
    margin-block: calc(2px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-my_2:not(:root) {
    margin-block: calc(2px * 10 * 0.4);
  }
}

.u-my_3:not(:root) {
  margin-block: 3rem;
}
@media screen and (max-width: 768px) {
  .u-my_3:not(:root) {
    margin-block: calc(3px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-my_3:not(:root) {
    margin-block: calc(3px * 10 * 0.4);
  }
}

.u-my_4:not(:root) {
  margin-block: 4rem;
}
@media screen and (max-width: 768px) {
  .u-my_4:not(:root) {
    margin-block: calc(4px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-my_4:not(:root) {
    margin-block: calc(4px * 10 * 0.4);
  }
}

.u-my_5:not(:root) {
  margin-block: 5rem;
}
@media screen and (max-width: 768px) {
  .u-my_5:not(:root) {
    margin-block: calc(5px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-my_5:not(:root) {
    margin-block: calc(5px * 10 * 0.4);
  }
}

.u-my_6:not(:root) {
  margin-block: 6rem;
}
@media screen and (max-width: 768px) {
  .u-my_6:not(:root) {
    margin-block: calc(6px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-my_6:not(:root) {
    margin-block: calc(6px * 10 * 0.4);
  }
}

.u-my_7:not(:root) {
  margin-block: 7rem;
}
@media screen and (max-width: 768px) {
  .u-my_7:not(:root) {
    margin-block: calc(7px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-my_7:not(:root) {
    margin-block: calc(7px * 10 * 0.4);
  }
}

.u-my_8:not(:root) {
  margin-block: 8rem;
}
@media screen and (max-width: 768px) {
  .u-my_8:not(:root) {
    margin-block: calc(8px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-my_8:not(:root) {
    margin-block: calc(8px * 10 * 0.4);
  }
}

.u-my_9:not(:root) {
  margin-block: 9rem;
}
@media screen and (max-width: 768px) {
  .u-my_9:not(:root) {
    margin-block: calc(9px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-my_9:not(:root) {
    margin-block: calc(9px * 10 * 0.4);
  }
}

.u-my_10:not(:root) {
  margin-block: 10rem;
}
@media screen and (max-width: 768px) {
  .u-my_10:not(:root) {
    margin-block: calc(10px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-my_10:not(:root) {
    margin-block: calc(10px * 10 * 0.4);
  }
}

.u-mx_0:not(:root) {
  margin-inline: 0rem;
}
@media screen and (max-width: 768px) {
  .u-mx_0:not(:root) {
    margin-inline: calc(0px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mx_0:not(:root) {
    margin-inline: calc(0px * 10 * 0.4);
  }
}

.u-mx_1:not(:root) {
  margin-inline: 1rem;
}
@media screen and (max-width: 768px) {
  .u-mx_1:not(:root) {
    margin-inline: calc(1px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mx_1:not(:root) {
    margin-inline: calc(1px * 10 * 0.4);
  }
}

.u-mx_2:not(:root) {
  margin-inline: 2rem;
}
@media screen and (max-width: 768px) {
  .u-mx_2:not(:root) {
    margin-inline: calc(2px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mx_2:not(:root) {
    margin-inline: calc(2px * 10 * 0.4);
  }
}

.u-mx_3:not(:root) {
  margin-inline: 3rem;
}
@media screen and (max-width: 768px) {
  .u-mx_3:not(:root) {
    margin-inline: calc(3px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mx_3:not(:root) {
    margin-inline: calc(3px * 10 * 0.4);
  }
}

.u-mx_4:not(:root) {
  margin-inline: 4rem;
}
@media screen and (max-width: 768px) {
  .u-mx_4:not(:root) {
    margin-inline: calc(4px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mx_4:not(:root) {
    margin-inline: calc(4px * 10 * 0.4);
  }
}

.u-mx_5:not(:root) {
  margin-inline: 5rem;
}
@media screen and (max-width: 768px) {
  .u-mx_5:not(:root) {
    margin-inline: calc(5px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mx_5:not(:root) {
    margin-inline: calc(5px * 10 * 0.4);
  }
}

.u-mx_6:not(:root) {
  margin-inline: 6rem;
}
@media screen and (max-width: 768px) {
  .u-mx_6:not(:root) {
    margin-inline: calc(6px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mx_6:not(:root) {
    margin-inline: calc(6px * 10 * 0.4);
  }
}

.u-mx_7:not(:root) {
  margin-inline: 7rem;
}
@media screen and (max-width: 768px) {
  .u-mx_7:not(:root) {
    margin-inline: calc(7px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mx_7:not(:root) {
    margin-inline: calc(7px * 10 * 0.4);
  }
}

.u-mx_8:not(:root) {
  margin-inline: 8rem;
}
@media screen and (max-width: 768px) {
  .u-mx_8:not(:root) {
    margin-inline: calc(8px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mx_8:not(:root) {
    margin-inline: calc(8px * 10 * 0.4);
  }
}

.u-mx_9:not(:root) {
  margin-inline: 9rem;
}
@media screen and (max-width: 768px) {
  .u-mx_9:not(:root) {
    margin-inline: calc(9px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mx_9:not(:root) {
    margin-inline: calc(9px * 10 * 0.4);
  }
}

.u-mx_10:not(:root) {
  margin-inline: 10rem;
}
@media screen and (max-width: 768px) {
  .u-mx_10:not(:root) {
    margin-inline: calc(10px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-mx_10:not(:root) {
    margin-inline: calc(10px * 10 * 0.4);
  }
}

.u-pt_1:not(:root) {
  padding-top: 1em;
}
@media screen and (max-width: 768px) {
  .u-pt_1:not(:root) {
    padding-top: calc(1px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-pt_1:not(:root) {
    padding-top: calc(1px * 10 * 0.4);
  }
}

.u-pt_2:not(:root) {
  padding-top: 2em;
}
@media screen and (max-width: 768px) {
  .u-pt_2:not(:root) {
    padding-top: calc(2px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-pt_2:not(:root) {
    padding-top: calc(2px * 10 * 0.4);
  }
}

.u-pt_3:not(:root) {
  padding-top: 3em;
}
@media screen and (max-width: 768px) {
  .u-pt_3:not(:root) {
    padding-top: calc(3px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-pt_3:not(:root) {
    padding-top: calc(3px * 10 * 0.4);
  }
}

.u-pt_4:not(:root) {
  padding-top: 4em;
}
@media screen and (max-width: 768px) {
  .u-pt_4:not(:root) {
    padding-top: calc(4px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-pt_4:not(:root) {
    padding-top: calc(4px * 10 * 0.4);
  }
}

.u-pt_5:not(:root) {
  padding-top: 5em;
}
@media screen and (max-width: 768px) {
  .u-pt_5:not(:root) {
    padding-top: calc(5px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-pt_5:not(:root) {
    padding-top: calc(5px * 10 * 0.4);
  }
}

.u-pt_6:not(:root) {
  padding-top: 6em;
}
@media screen and (max-width: 768px) {
  .u-pt_6:not(:root) {
    padding-top: calc(6px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-pt_6:not(:root) {
    padding-top: calc(6px * 10 * 0.4);
  }
}

.u-pt_7:not(:root) {
  padding-top: 7em;
}
@media screen and (max-width: 768px) {
  .u-pt_7:not(:root) {
    padding-top: calc(7px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-pt_7:not(:root) {
    padding-top: calc(7px * 10 * 0.4);
  }
}

.u-pt_8:not(:root) {
  padding-top: 8em;
}
@media screen and (max-width: 768px) {
  .u-pt_8:not(:root) {
    padding-top: calc(8px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-pt_8:not(:root) {
    padding-top: calc(8px * 10 * 0.4);
  }
}

.u-pt_9:not(:root) {
  padding-top: 9em;
}
@media screen and (max-width: 768px) {
  .u-pt_9:not(:root) {
    padding-top: calc(9px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-pt_9:not(:root) {
    padding-top: calc(9px * 10 * 0.4);
  }
}

.u-pt_10:not(:root) {
  padding-top: 10em;
}
@media screen and (max-width: 768px) {
  .u-pt_10:not(:root) {
    padding-top: calc(10px * 10 * 0.6);
  }
}
@media screen and (max-width: 520px) {
  .u-pt_10:not(:root) {
    padding-top: calc(10px * 10 * 0.4);
  }
}

.u-pb_1:not(:root) {
  padding-bottom: 1em;
}

.u-pb_2:not(:root) {
  padding-bottom: 2em;
}

.u-pb_3:not(:root) {
  padding-bottom: 3em;
}

.u-pb_4:not(:root) {
  padding-bottom: 4em;
}

.u-pb_5:not(:root) {
  padding-bottom: 5em;
}

.u-pb_6:not(:root) {
  padding-bottom: 6em;
}

.u-pb_7:not(:root) {
  padding-bottom: 7em;
}

.u-pb_8:not(:root) {
  padding-bottom: 8em;
}

.u-pb_9:not(:root) {
  padding-bottom: 9em;
}

.u-pb_10:not(:root) {
  padding-bottom: 10em;
}

.u-pr_1:not(:root) {
  padding-right: 1em;
}

.u-pr_2:not(:root) {
  padding-right: 2em;
}

.u-pr_3:not(:root) {
  padding-right: 3em;
}

.u-pr_4:not(:root) {
  padding-right: 4em;
}

.u-pr_5:not(:root) {
  padding-right: 5em;
}

.u-pr_6:not(:root) {
  padding-right: 6em;
}

.u-pr_7:not(:root) {
  padding-right: 7em;
}

.u-pr_8:not(:root) {
  padding-right: 8em;
}

.u-pr_9:not(:root) {
  padding-right: 9em;
}

.u-pr_10:not(:root) {
  padding-right: 10em;
}

.u-pl_1:not(:root) {
  padding-left: 1em;
}

.u-pl_2:not(:root) {
  padding-left: 2em;
}

.u-pl_3:not(:root) {
  padding-left: 3em;
}

.u-pl_4:not(:root) {
  padding-left: 4em;
}

.u-pl_5:not(:root) {
  padding-left: 5em;
}

.u-pl_6:not(:root) {
  padding-left: 6em;
}

.u-pl_7:not(:root) {
  padding-left: 7em;
}

.u-pl_8:not(:root) {
  padding-left: 8em;
}

.u-pl_9:not(:root) {
  padding-left: 9em;
}

.u-pl_10:not(:root) {
  padding-left: 10em;
}

.u-py_1:not(:root) {
  padding-block: 1em;
}

.u-py_2:not(:root) {
  padding-block: 2em;
}

.u-py_3:not(:root) {
  padding-block: 3em;
}

.u-py_4:not(:root) {
  padding-block: 4em;
}

.u-py_5:not(:root) {
  padding-block: 5em;
}

.u-py_6:not(:root) {
  padding-block: 6em;
}

.u-py_7:not(:root) {
  padding-block: 7em;
}

.u-py_8:not(:root) {
  padding-block: 8em;
}

.u-py_9:not(:root) {
  padding-block: 9em;
}

.u-py_10:not(:root) {
  padding-block: 10em;
}

.u-px_1:not(:root) {
  padding-inline: 1em;
}

.u-px_2:not(:root) {
  padding-inline: 2em;
}

.u-px_3:not(:root) {
  padding-inline: 3em;
}

.u-px_4:not(:root) {
  padding-inline: 4em;
}

.u-px_5:not(:root) {
  padding-inline: 5em;
}

.u-px_6:not(:root) {
  padding-inline: 6em;
}

.u-px_7:not(:root) {
  padding-inline: 7em;
}

.u-px_8:not(:root) {
  padding-inline: 8em;
}

.u-px_9:not(:root) {
  padding-inline: 9em;
}

.u-px_10:not(:root) {
  padding-inline: 10em;
}

@media screen and (min-width: 769px) {
  .u-sp_only {
    display: none;
  }
}
@media screen and (max-width: 768px) and (min-width: 426px) {
  .u-sp_only {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  .u-sp_only {
    display: block !important;
  }
}

@media screen and (min-width: 769px) {
  .u-tb_only {
    display: none;
  }
}
@media screen and (max-width: 768px) and (min-width: 426px) {
  .u-tb_only {
    display: block !important;
  }
}
@media screen and (max-width: 520px) {
  .u-tb_only {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .u-pc_only {
    display: block !important;
  }
}
@media screen and (max-width: 768px) and (min-width: 426px) {
  .u-pc_only {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  .u-pc_only {
    display: none;
  }
}

.u-display_i {
  display: inline;
}

.u-display_b {
  display: block;
}

.u-display_ib {
  display: inline-block;
}

.u-list01 {
  padding-left: 1.5em;
}
.u-list01 li {
  list-style: url(../images/common/icon/icon-arrow-b.svg);
}

.u-list_disc {
  padding-left: 1.5em;
}
.u-list_disc li {
  list-style: disc;
}

.u-hover_opacity {
  transition: opacity 0.3s;
}
.u-hover_opacity:hover {
  opacity: 0.8;
}

/*# sourceMappingURL=style.css.map */
