@charset "UTF-8";
/* ==========================================================================
*
*  Foundation
*  ブラウザのデフォルトスタイルの初期化や基本的なスタイル。
*
*  ========================================================================*/
/* -----------------------------------------------------------------
*  reset
*  ---------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  outline: none;
}

main {
  display: block;
}

img {
  background-color: transparent;
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

ol,
ul {
  list-style: none;
}

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

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  font-size: 100%;
}

input[type=radio],
input[type=checkbox] {
  display: none;
}

select::-ms-expand {
  display: none;
}

/* -----------------------------------------------------------------
*  base
*  ---------------------------------------------------------------*/
:root {
  --color-corporate: #3b5ca9;
  --color-primary: #2477f3;
  --color-secondary: #2371e5;
  --color-text: #303c52;
}

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

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  position: relative;
  font-size: 1.6em;
  font-weight: 400;
  font-style: normal;
  min-width: 1200px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  padding-top: 110px;
  color: var(--color-text);
}
@media (width < 768px) {
  body {
    min-width: 100%;
    padding-top: 66px;
  }
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

sup {
  font-size: 50%;
  vertical-align: super;
}

input::-webkit-input-placeholder {
  color: #cccccc;
}

input::-moz-placeholder {
  color: #cccccc;
}

input:-ms-input-placeholder {
  color: #cccccc;
}

input::-ms-input-placeholder {
  color: #cccccc;
}

input::placeholder {
  color: #cccccc;
}

/* IE */
input:-ms-input-placeholder {
  color: #cccccc;
}

/* Edge */
input::-ms-input-placeholder {
  color: #cccccc;
}

/* ==========================================================================
*
*  Vendor
*  外部提供CSS
*
*  ========================================================================*/
/* ==========================================================================
*
*  Layout
*  ヘッダー、フッター、サイドバー、メインコンテンツエリアなど、サイト全体のブロックに関するもの。
*
*  ========================================================================*/
/* -----------------------------------------------------------------
*  loader
*  ---------------------------------------------------------------*/
.l-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #fff;
}

/* -----------------------------------------------------------------
*  header
*  ---------------------------------------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.l-header__lgContents__holder {
  position: relative;
  width: 100%;
  height: 110px;
  background-color: #fff;
  min-width: 1200px;
}
.l-header__lgContents__holder__logo {
  position: absolute;
  top: 50%;
  left: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 200px;
}
.l-header__lgContents__holder__nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 270px;
}
.l-header__lgContents__holder__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
.l-header__lgContents__holder__nav__list__item {
  position: relative;
}
.l-header__lgContents__holder__nav__list__item__anchor {
  position: relative;
  font-weight: 700;
  font-size: 16px;
  font-size: calc(16 / 10 * 1rem);
  font-weight: 400;
  color: var(--color-text);
  text-decoration: underline;
  padding-bottom: 20px;
}
.l-header__lgContents__holder__nav__list__item__anchor::after {
  position: absolute;
  right: -15px;
  top: 50%;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
  -webkit-transform: translateY(calc(-50% - 10px)) rotate(45deg);
          transform: translateY(calc(-50% - 10px)) rotate(45deg);
}
.l-header__lgContents__holder__nav__list__item__anchor.is-active::after {
  -webkit-transform: translateY(calc(-50% - 6px)) rotate(-135deg);
          transform: translateY(calc(-50% - 6px)) rotate(-135deg);
}
.l-header__lgContents__holder__nav__list__item__panel {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  border-radius: 10px;
  background-color: #ecf5ff;
  padding: 20px;
}
.l-header__lgContents__holder__nav__list__item__panel__list__item {
  margin-bottom: 20px;
}
.l-header__lgContents__holder__nav__list__item__panel__list__item:last-child {
  margin-bottom: 0;
}
.l-header__lgContents__holder__nav__list__item__panel__list__item__anchor {
  font-size: 16px;
  font-size: calc(16 / 10 * 1rem);
  font-weight: 400;
  text-decoration: underline;
  white-space: nowrap;
  color: var(--color-secondary);
}
.l-header__lgContents__holder__entryBtn {
  position: absolute !important;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  width: 210px;
  height: 55px !important;
}
.l-header__xsContents {
  position: relative;
  background-color: #fff;
}
.l-header__xsContents__holder {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 0;
  height: 66px;
}
.l-header__xsContents__holder__logo {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 150px;
  display: block;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-header__xsContents__holder__menuBtn {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 30px;
  height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
.l-header__xsContents__holder__menuBtn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-secondary);
  border-radius: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-header__xsContents__holder__menuBtn.is-clicked span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
          transform: translateY(10px) rotate(45deg);
}
.l-header__xsContents__holder__menuBtn.is-clicked span:nth-child(2) {
  opacity: 0;
}
.l-header__xsContents__holder__menuBtn.is-clicked span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(-45deg);
          transform: translateY(-10px) rotate(-45deg);
}
.l-header__xsContents__navPanel {
  width: 100%;
  height: calc(100vh - 66px);
  overflow: auto;
  padding: 30px 40px;
}
.l-header__xsContents__navPanel__entryBtn {
  margin-bottom: 40px;
}
.l-header__xsContents__navPanel__nav__list__item {
  position: relative;
}
.l-header__xsContents__navPanel__nav__list__item__anchor {
  position: relative;
  font-weight: 700;
  font-size: 16px;
  font-size: calc(16 / 10 * 1rem);
  font-weight: 400;
  color: var(--color-text);
  text-decoration: underline;
  margin-bottom: 15px;
  display: block;
  width: 100%;
}
.l-header__xsContents__navPanel__nav__list__item__anchor::after {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
  -webkit-transform: translateY(calc(-50% - 2px)) rotate(45deg);
          transform: translateY(calc(-50% - 2px)) rotate(45deg);
}
.l-header__xsContents__navPanel__nav__list__item__anchor.is-active::after {
  -webkit-transform: translateY(calc(-50% + 2px)) rotate(-135deg);
          transform: translateY(calc(-50% + 2px)) rotate(-135deg);
}
.l-header__xsContents__navPanel__nav__list__item__panel {
  border-radius: 10px;
  background-color: #ecf5ff;
  padding: 20px;
  margin-bottom: 20px;
}
.l-header__xsContents__navPanel__nav__list__item__panel__list__item {
  margin-bottom: 20px;
}
.l-header__xsContents__navPanel__nav__list__item__panel__list__item:last-child {
  margin-bottom: 0;
}
.l-header__xsContents__navPanel__nav__list__item__panel__list__item__anchor {
  font-size: 16px;
  font-size: calc(16 / 10 * 1rem);
  font-weight: 400;
  text-decoration: underline;
  white-space: nowrap;
  color: var(--color-secondary);
}

/* -----------------------------------------------------------------
*  main
*  ---------------------------------------------------------------*/
/* -----------------------------------------------------------------
*  footer
*  ---------------------------------------------------------------*/
.l-footer__main {
  padding-top: 85px;
  padding-bottom: 55px;
  background-color: #f4f5f9;
}
@media (width < 768px) {
  .l-footer__main {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
.l-footer__main__logo {
  float: left;
  display: block;
  width: 200px;
}
@media (width < 768px) {
  .l-footer__main__logo {
    float: none;
    margin-bottom: 40px;
  }
}
.l-footer__main__navHolder {
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (width < 768px) {
  .l-footer__main__navHolder {
    float: none;
    display: block;
    border-top: 1px solid var(--color-secondary);
  }
}
.l-footer__main__navHolder__eachNavBlock {
  border-left: 1px solid var(--color-secondary);
  padding: 0 60px;
}
@media (width < 768px) {
  .l-footer__main__navHolder__eachNavBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-left: none;
    padding: 0;
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-secondary);
  }
}
.l-footer__main__navHolder__eachNavBlock:last-child {
  padding-right: 0;
}
@media (width < 768px) {
  .l-footer__main__navHolder__eachNavBlock:last-child {
    border-bottom: none;
  }
}
.l-footer__main__navHolder__eachNavBlock__unit {
  margin-bottom: 30px;
}
.l-footer__main__navHolder__eachNavBlock__unit:last-child {
  margin-bottom: 0;
}
@media (width < 768px) {
  .l-footer__main__navHolder__eachNavBlock__unit:first-child {
    min-width: 200px;
  }
}
.l-footer__main__navHolder__eachNavBlock__unit__head {
  font-weight: 700;
  font-size: 16px;
  font-size: calc(16 / 10 * 1rem);
  margin-bottom: 8px;
}
.l-footer__main__navHolder__eachNavBlock__unit__list {
  padding-left: 15px;
}
.l-footer__main__navHolder__eachNavBlock__unit__list__item {
  margin-bottom: 10px;
}
.l-footer__main__navHolder__eachNavBlock__unit__list__item:last-child {
  margin-bottom: 0;
}
.l-footer__main__navHolder__eachNavBlock__unit__list__item__anchor {
  font-size: 14px;
  font-size: calc(14 / 10 * 1rem);
  color: var(--color-text);
  text-decoration: underline;
}
.l-footer__main__navHolder__eachNavBlock__unit__list__item__anchor:hover {
  -webkit-text-decoration: nonw;
          text-decoration: nonw;
}
.l-footer__others {
  background-color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
}
.l-footer__others__holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (width < 768px) {
  .l-footer__others__holder {
    display: block;
  }
}
.l-footer__others__holder__copyright {
  font-size: 12px;
  font-size: calc(12 / 10 * 1rem);
}
.l-footer__others__holder__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (width < 768px) {
  .l-footer__others__holder__list {
    display: block;
    margin-bottom: 20px;
  }
}
@media (width < 768px) {
  .l-footer__others__holder__list__item:nth-child(2) {
    display: inline-block;
  }
}
@media (width < 768px) {
  .l-footer__others__holder__list__item:nth-child(3) {
    display: inline-block;
    margin-left: 20px;
  }
}
.l-footer__others__holder__list__item__anchor {
  color: var(--color-text);
  font-size: 12px;
  font-size: calc(12 / 10 * 1rem);
  text-decoration: underline;
}
.l-footer__others__holder__list__item__anchor[target=_blank] {
  padding-right: 15px;
  background-image: url("/contents/recruit/assets/images/common/icon_blank.svg");
  background-size: 12px auto;
  background-repeat: no-repeat;
  background-position: 100% center;
}
.l-footer__others__holder__list__item__anchor:hover {
  text-decoration: none;
}

/* ==========================================================================
*
*  Object
*  サイト内で繰り返されるパターン。
*
*  ========================================================================*/
/* -----------------------------------------------------------------
*  Component
*  ---------------------------------------------------------------*/
.c-inner {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.c-inner_contents {
  width: 1156px;
}
@media (width < 768px) {
  .c-inner_contents {
    width: 100%;
    padding: 0 20px;
  }
}

.c-hl_type01 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.75;
}
@media (width < 768px) {
  .c-hl_type01 {
    font-size: 24px;
  }
}
.c-hl_type02 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.c-hl_type03 > span {
  position: relative;
  color: #282828;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 0.1em;
  padding-bottom: 10px;
}
@media (width < 768px) {
  .c-hl_type03 > span {
    font-size: 24px;
  }
}
.c-hl_type03 > span:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  display: block;
  width: calc(100% + 20px);
  height: 1px;
  background-color: #282828;
}
.c-hl_type04 {
  font-size: 60px;
  letter-spacing: 0.1em;
  font-family: "Unbounded", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
}
@media (width < 768px) {
  .c-hl_type04 {
    font-size: 30px;
  }
}
.c-hl_type04 > span {
  display: block;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
}
@media (width < 768px) {
  .c-hl_type04 > span {
    font-size: 16px;
  }
}

.c-btn_type01 {
  position: relative;
  border-radius: 70px;
  background-color: var(--color-secondary);
  color: #fff;
  font-size: 16px;
  font-size: calc(16 / 10 * 1rem);
  font-weight: 700;
  text-align: center;
  height: 66px;
  display: block;
  text-align: center;
}
.c-btn_type01 > span:first-child {
  position: relative;
  overflow: hidden;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-btn_type01 > span:first-child > span {
  display: inline-block;
  font-size: 16px;
  font-size: calc(16 / 10 * 1rem);
  white-space: nowrap;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  text-decoration: underline;
}
.c-btn_type01 > span:first-child > span:last-child {
  position: absolute;
  top: 100%;
  left: 0;
}
.c-btn_type01 > span:last-child {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(/contents/recruit/assets/images/common/icon_btnObj-base.png);
  display: block;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  width: 44px;
  height: 44px;
  overflow: hidden;
}
.c-btn_type01 > span:last-child > img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 14px;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-btn_type01 > span:last-child > img:last-child {
  -webkit-transform: translate(-250%, -50%);
          transform: translate(-250%, -50%);
}
.c-btn_type01:hover > span:first-child > span {
  text-decoration: none;
}
.c-btn_type01:hover > span:first-child > span:first-child {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.c-btn_type01:hover > span:first-child > span:last-child {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.c-btn_type01:hover > span:last-child > img:first-child {
  -webkit-transform: translate(150%, -50%);
          transform: translate(150%, -50%);
}
.c-btn_type01:hover > span:last-child > img:last-child {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-btn_type01[data-type=simple] > span:last-child {
  display: none;
}

.c-inputText {
  border: 1px solid #000;
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  font-size: 16px;
}
.c-inputText[data-size=s] {
  width: 230;
}
@media (width < 768px) {
  .c-inputText[data-size=s] {
    width: 100%;
  }
}
.c-inputText[data-size=l] {
  width: 100%;
}

.c-rt_type01 {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2;
}

.c-textarea {
  border: 1px solid #000;
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  font-size: 16px;
}
.c-textarea[data-size=s] {
  width: 230;
}
.c-textarea[data-size=l] {
  width: 100%;
}

.c-anim_fadeInUp {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
.c-anim_fadeInUp.is-animated {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-category {
  display: inline-block;
  padding: 10px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  background-color: #bce4ff;
  border-radius: 30px;
  color: #282828;
}

/* -----------------------------------------------------------------
*  Project
*  ---------------------------------------------------------------*/
.p-pageTitle {
  color: var(--color-secondary);
  font-size: 56px;
  font-size: calc(56 / 10 * 1rem);
  font-weight: 400;
  padding-top: 100px;
  padding-bottom: 60px;
}
@media (width < 768px) {
  .p-pageTitle {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 40px;
    font-size: 36px;
    font-size: calc(36 / 10 * 1rem);
  }
}
.p-pageTitle > span {
  display: block;
  font-size: 20px;
  font-size: calc(20 / 10 * 1rem);
  margin-bottom: 10px;
}

.p-pageIntro {
  padding-top: 80px;
  padding-bottom: 70px;
}
@media (width < 768px) {
  .p-pageIntro {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
.p-pageIntro__category {
  display: block;
  font-size: 20px;
  font-size: calc(20 / 10 * 1rem);
  font-weight: 400;
  color: var(--color-secondary);
  margin-bottom: 20px;
}
@media (width < 768px) {
  .p-pageIntro__category {
    text-align: center;
    font-size: 16px;
    font-size: calc(16 / 10 * 1rem);
  }
}
.p-pageIntro__holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (width < 768px) {
  .p-pageIntro__holder {
    display: block;
  }
}
.p-pageIntro__holder__title {
  font-size: 56px;
  font-size: calc(56 / 10 * 1rem);
  font-weight: 400;
  color: var(--color-secondary);
  padding-right: 100px;
  margin-right: 100px;
  border-right: 1px solid var(--color-secondary);
  white-space: nowrap;
}
@media (width < 768px) {
  .p-pageIntro__holder__title {
    font-size: 36px;
    font-size: calc(36 / 10 * 1rem);
    line-height: 1.3888888889;
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 60px;
    text-align: center;
  }
}
.p-pageIntro__holder__rt {
  font-size: 16px;
  font-size: calc(16 / 10 * 1rem);
  line-height: 2;
}

.p-pageInnerLink {
  position: sticky;
  top: 110px;
  z-index: 10;
  background-color: var(--color-secondary);
  padding: 15px 0;
}
@media (width < 768px) {
  .p-pageInnerLink {
    top: 66px;
  }
}
.p-pageInnerLink__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (width < 768px) {
  .p-pageInnerLink__list {
    gap: 5px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-pageInnerLink__list__item__anchor {
  color: #fff;
  font-size: 16px;
  font-size: calc(16 / 10 * 1rem);
  font-weight: 700;
  text-decoration: underline;
  border-radius: 40px;
  padding: 5px 20px;
  background-color: transparent;
  line-height: 1.75;
}
@media (width < 768px) {
  .p-pageInnerLink__list__item__anchor {
    padding: 5px 10px;
  }
}
.p-pageInnerLink__list__item__anchor.is-active {
  background-color: #fff;
  color: var(--color-secondary);
  text-decoration: none;
}

@media (any-hover: hover) {
  .p-pageInnerLink__list__item__anchor:hover {
    background-color: #fff;
    color: var(--color-secondary);
  }
}
.p-footLinkArea {
  padding-top: 66px;
  padding-bottom: 122px;
  background-color: #ffe641;
}
.p-footLinkArea__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 74px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (width < 768px) {
  .p-footLinkArea__list {
    display: block;
  }
}
.p-footLinkArea__list__item {
  width: 300px;
}
@media (width < 768px) {
  .p-footLinkArea__list__item {
    width: 100%;
    margin-bottom: 20px;
  }
  .p-footLinkArea__list__item:last-child {
    margin-bottom: 0;
  }
}
/* -----------------------------------------------------------------
*  Utility
*  ---------------------------------------------------------------*/
.u-ta_c {
  text-align: center !important;
}

.u-ta_l {
  text-align: left !important;
}

.u-ta_r {
  text-align: right !important;
}

.u-alpha {
  -ms-filter: "alpha(opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
  -webkit-transition: 0.4s opacity ease;
  transition: 0.4s opacity ease;
}

.u-alpha:hover {
  -ms-filter: "alpha( opacity=70 )";
  filter: alpha(opacity=70);
  opacity: 0.7;
}

.u-clearfix:before,
.u-clearfix:after {
  content: " ";
  display: table;
}

.u-clearfix:after {
  clear: both;
}

.u-visible_xs,
.u-visible_lg {
  display: none !important;
}

.u-visible_xs_block,
.u-visible_xs_inline,
.u-visible_xs_inline-block,
.u-visible_lg_block,
.u-visible_lg_inline,
.u-visible_lg_inline-block {
  display: none !important;
}

@media (width < 768px) {
  .u-visible_xs {
    display: block !important;
  }
  table.u-visible_xs {
    display: table !important;
  }
  tr.u-visible_xs {
    display: table-row !important;
  }
  th.u-visible_xs,
  td.u-visible_xs {
    display: table-cell !important;
  }
}
@media (width < 768px) {
  .u-visible_xs_block {
    display: block !important;
  }
}
@media (width < 768px) {
  .u-visible_xs_inline {
    display: inline !important;
  }
}
@media (width < 768px) {
  .u-visible_xs_inline-block {
    display: inline-block !important;
  }
}
@media (768px <= width) {
  .u-visible_lg {
    display: block !important;
  }
  table.u-visible_lg {
    display: table !important;
  }
  tr.u-visible_lg {
    display: table-row !important;
  }
  th.u-visible_lg,
  td.u-visible_lg {
    display: table-cell !important;
  }
}
@media (768px <= width) {
  .u-visible_lg_block {
    display: block !important;
  }
}
@media (768px <= width) {
  .u-visible_lg_inline {
    display: inline !important;
  }
}
@media (768px <= width) {
  .u-visible_lg_inline-block {
    display: inline-block !important;
  }
}
@media (width < 768px) {
  .u-hidden_xs {
    display: none !important;
  }
}
@media (768px <= width) {
  .u-hidden_lg {
    display: none !important;
  }
}
.u-noEvent {
  pointer-events: none;
}

.u-fw_normal {
  font-weight: normal !important;
}

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

.u-fs_normal {
  font-style: normal !important;
}

.u-fs_italic {
  font-style: italic !important;
}

.u-m_auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-m_00 {
  margin: 0 !important;
}

.u-m_05 {
  margin: 5px !important;
}

.u-m_10 {
  margin: 10px !important;
}

.u-m_15 {
  margin: 15px !important;
}

.u-m_20 {
  margin: 20px !important;
}

.u-m_25 {
  margin: 25px !important;
}

.u-m_30 {
  margin: 30px !important;
}

.u-m_35 {
  margin: 35px !important;
}

.u-m_40 {
  margin: 40px !important;
}

.u-m_45 {
  margin: 45px !important;
}

.u-m_50 {
  margin: 50px !important;
}

.u-mt_00 {
  margin-top: 0 !important;
}

.u-mt_05 {
  margin-top: 5px !important;
}

.u-mt_10 {
  margin-top: 10px !important;
}

.u-mt_15 {
  margin-top: 15px !important;
}

.u-mt_20 {
  margin-top: 20px !important;
}

.u-mt_25 {
  margin-top: 25px !important;
}

.u-mt_30 {
  margin-top: 30px !important;
}

.u-mt_35 {
  margin-top: 35px !important;
}

.u-mt_40 {
  margin-top: 40px !important;
}

.u-mt_45 {
  margin-top: 45px !important;
}

.u-mt_50 {
  margin-top: 50px !important;
}

.u-mb_00 {
  margin-bottom: 0 !important;
}

.u-mb_05 {
  margin-bottom: 5px !important;
}

.u-mb_10 {
  margin-bottom: 10px !important;
}

.u-mb_15 {
  margin-bottom: 15px !important;
}

.u-mb_20 {
  margin-bottom: 20px !important;
}

.u-mb_25 {
  margin-bottom: 25px !important;
}

.u-mb_30 {
  margin-bottom: 30px !important;
}

.u-mb_35 {
  margin-bottom: 35px !important;
}

.u-mb_40 {
  margin-bottom: 40px !important;
}

.u-mb_45 {
  margin-bottom: 45px !important;
}

.u-mb_50 {
  margin-bottom: 50px !important;
}

.u-ml_00 {
  margin-left: 0 !important;
}

.u-ml_05 {
  margin-left: 5px !important;
}

.u-ml_10 {
  margin-left: 10px !important;
}

.u-ml_15 {
  margin-left: 15px !important;
}

.u-ml_20 {
  margin-left: 20px !important;
}

.u-ml_25 {
  margin-left: 25px !important;
}

.u-ml_30 {
  margin-left: 30px !important;
}

.u-ml_35 {
  margin-left: 35px !important;
}

.u-ml_40 {
  margin-left: 40px !important;
}

.u-ml_45 {
  margin-left: 45px !important;
}

.u-ml_50 {
  margin-left: 50px !important;
}

.u-mr_00 {
  margin-right: 0 !important;
}

.u-mr_05 {
  margin-right: 5px !important;
}

.u-mr_10 {
  margin-right: 10px !important;
}

.u-mr_15 {
  margin-right: 15px !important;
}

.u-mr_20 {
  margin-right: 20px !important;
}

.u-mr_25 {
  margin-right: 25px !important;
}

.u-mr_30 {
  margin-right: 30px !important;
}

.u-mr_35 {
  margin-right: 35px !important;
}

.u-mr_40 {
  margin-right: 40px !important;
}

.u-mr_45 {
  margin-right: 45px !important;
}

.u-mr_50 {
  margin-right: 50px !important;
}

.u-p_00 {
  padding: 0 !important;
}

.u-p_05 {
  padding: 5px !important;
}

.u-p_10 {
  padding: 10px !important;
}

.u-p_15 {
  padding: 15px !important;
}

.u-p_20 {
  padding: 20px !important;
}

.u-p_25 {
  padding: 25px !important;
}

.u-p_30 {
  padding: 30px !important;
}

.u-p_35 {
  padding: 35px !important;
}

.u-p_40 {
  padding: 40px !important;
}

.u-p_45 {
  padding: 45px !important;
}

.u-p_50 {
  padding: 50px !important;
}

.u-pt_00 {
  padding-top: 0 !important;
}

.u-pt_05 {
  padding-top: 5px !important;
}

.u-pt_10 {
  padding-top: 10px !important;
}

.u-pt_15 {
  padding-top: 15px !important;
}

.u-pt_20 {
  padding-top: 20px !important;
}

.u-pt_25 {
  padding-top: 25px !important;
}

.u-pt_30 {
  padding-top: 30px !important;
}

.u-pt_35 {
  padding-top: 35px !important;
}

.u-pt_40 {
  padding-top: 40px !important;
}

.u-pt_45 {
  padding-top: 45px !important;
}

.u-pt_50 {
  padding-top: 50px !important;
}

.u-pb_00 {
  padding-bottom: 0 !important;
}

.u-pb_05 {
  padding-bottom: 5px !important;
}

.u-pb_10 {
  padding-bottom: 10px !important;
}

.u-pb_15 {
  padding-bottom: 15px !important;
}

.u-pb_20 {
  padding-bottom: 20px !important;
}

.u-pb_25 {
  padding-bottom: 25px !important;
}

.u-pb_30 {
  padding-bottom: 30px !important;
}

.u-pb_35 {
  padding-bottom: 35px !important;
}

.u-pb_40 {
  padding-bottom: 40px !important;
}

.u-pb_45 {
  padding-bottom: 45px !important;
}

.u-pb_50 {
  padding-bottom: 50px !important;
}

.u-pl_00 {
  padding-left: 0 !important;
}

.u-pl_05 {
  padding-left: 5px !important;
}

.u-pl_10 {
  padding-left: 10px !important;
}

.u-pl_15 {
  padding-left: 15px !important;
}

.u-pl_20 {
  padding-left: 20px !important;
}

.u-pl_25 {
  padding-left: 25px !important;
}

.u-pl_30 {
  padding-left: 30px !important;
}

.u-pl_35 {
  padding-left: 35px !important;
}

.u-pl_40 {
  padding-left: 40px !important;
}

.u-pl_45 {
  padding-left: 45px !important;
}

.u-pl_50 {
  padding-left: 50px !important;
}

.u-pr_00 {
  padding-right: 0 !important;
}

.u-pr_05 {
  padding-right: 5px !important;
}

.u-pr_10 {
  padding-right: 10px !important;
}

.u-pr_15 {
  padding-right: 15px !important;
}

.u-pr_20 {
  padding-right: 20px !important;
}

.u-pr_25 {
  padding-right: 25px !important;
}

.u-pr_30 {
  padding-right: 30px !important;
}

.u-pr_35 {
  padding-right: 35px !important;
}

.u-pr_40 {
  padding-right: 40px !important;
}

.u-pr_45 {
  padding-right: 45px !important;
}

.u-pr_50 {
  padding-right: 50px !important;
}

.u-position_relative {
  position: relative !important;
}

.u-position_abs {
  position: absolute !important;
}

.u-position_fixed {
  position: fixed !important;
}

.u-position_static {
  position: static !important;
}

.u-vertical_mid {
  vertical-align: middle !important;
}

.u-vertical_bottom {
  vertical-align: bottom !important;
}

.u-vertical_base {
  vertical-align: baseline !important;
}

.u-vertical_sup {
  vertical-align: super !important;
}

.u-vertical_sub {
  vertical-align: sub !important;
}

.u-vertical_tb {
  vertical-align: text-bottom !important;
}

.u-vertical_tt {
  vertical-align: text-top !important;
}