@charset "UTF-8";
/* -----------------------
Common
----------------------- */
/* -----------------------
Reset css
------------------------ */
*,
*::after,
*::before {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}

pre,
textarea {
  overflow: auto;
}

[hidden],
template {
  display: none;
}

details,
main,
summary {
  display: block;
}

input[type=number] {
  width: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

progress {
  display: inline-block;
}

small {
  font-size: 75%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

textarea {
  resize: vertical;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

audio:not([controls]) {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

button,
input,
select,
textarea {
  min-height: 1.5em;
  color: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-family: inherit;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

input {
  line-height: normal;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  border-style: none;
  background-color: transparent;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace;
}

ol,
ul {
  list-style: none;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

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

fieldset {
  border: 0;
}

/* -----------------------
Mixin
 - ブレイクポイント定義ファイル
----------------------- */
/*------------------------------------------
   1025 ~   - デスクトップ（デフォルトのグリッド）
   1024-768    - タブレット横長
   768-480     - タブレット縦長
   480-less    - スマホ
--------------------------------------------*/
/* -----------------------
Valiables.scss
 - 変数定義ファイル
----------------------- */
/* Base
-----------------------------*/
/* Color
-----------------------------*/
/* fontFamily
-----------------------------*/
/* css3 easing
-----------------------------*/
/* -----------------------
Function
 - 計算式の関数など設定
----------------------- */
/* ------------------------
  Utility
------------------------ */
.pc-none {
  display: block;
}
@media screen and (min-width: 768px) {
  .pc-none {
    display: none;
  }
}

.sp-none {
  display: none;
}
@media screen and (min-width: 768px) {
  .sp-none {
    display: block;
  }
}

.t-just {
  text-align-last: left; /* Chrome・Firefox用 */
  text-align: justify; /* IE・Edge用 */
}

.ta-c {
  text-align: center;
}

.cant-click {
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .fade {
    opacity: 1;
    transition: opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  .fade:hover {
    opacity: 0.6;
  }
}

.dp-ib {
  display: inline-block;
}

.tc-black {
  color: #000;
}

.tc-gray {
  color: #4d4d4d;
}

.f-palt {
  font-feature-settings: "palt";
}

.fw-n {
  font-weight: normal;
}

.fw-b {
  font-weight: bold;
}

.font-en {
  font-family: "Oswald", sans-serif;
}

.sp-fs-1 {
  font-size: 1px;
}

.sp-fs-2 {
  font-size: 2px;
}

.sp-fs-3 {
  font-size: 3px;
}

.sp-fs-4 {
  font-size: 4px;
}

.sp-fs-5 {
  font-size: 5px;
}

.sp-fs-6 {
  font-size: 6px;
}

.sp-fs-7 {
  font-size: 7px;
}

.sp-fs-8 {
  font-size: 8px;
}

.sp-fs-9 {
  font-size: 9px;
}

.sp-fs-10 {
  font-size: 10px;
}

.sp-fs-11 {
  font-size: 11px;
}

.sp-fs-12 {
  font-size: 12px;
}

.sp-fs-13 {
  font-size: 13px;
}

.sp-fs-14 {
  font-size: 14px;
}

.sp-fs-15 {
  font-size: 15px;
}

.sp-fs-16 {
  font-size: 16px;
}

.sp-fs-17 {
  font-size: 17px;
}

.sp-fs-18 {
  font-size: 18px;
}

.sp-fs-19 {
  font-size: 19px;
}

.sp-fs-20 {
  font-size: 20px;
}

.sp-fs-21 {
  font-size: 21px;
}

.sp-fs-22 {
  font-size: 22px;
}

.sp-fs-23 {
  font-size: 23px;
}

.sp-fs-24 {
  font-size: 24px;
}

.sp-fs-25 {
  font-size: 25px;
}

.sp-fs-26 {
  font-size: 26px;
}

.sp-fs-27 {
  font-size: 27px;
}

.sp-fs-28 {
  font-size: 28px;
}

.sp-fs-29 {
  font-size: 29px;
}

.sp-fs-30 {
  font-size: 30px;
}

.sp-fs-31 {
  font-size: 31px;
}

.sp-fs-32 {
  font-size: 32px;
}

.sp-fs-33 {
  font-size: 33px;
}

.sp-fs-34 {
  font-size: 34px;
}

.sp-fs-35 {
  font-size: 35px;
}

.sp-fs-36 {
  font-size: 36px;
}

.sp-fs-37 {
  font-size: 37px;
}

.sp-fs-38 {
  font-size: 38px;
}

.sp-fs-39 {
  font-size: 39px;
}

.sp-fs-40 {
  font-size: 40px;
}

.sp-fs-41 {
  font-size: 41px;
}

.sp-fs-42 {
  font-size: 42px;
}

.sp-fs-43 {
  font-size: 43px;
}

.sp-fs-44 {
  font-size: 44px;
}

.sp-fs-45 {
  font-size: 45px;
}

.sp-fs-46 {
  font-size: 46px;
}

.sp-fs-47 {
  font-size: 47px;
}

.sp-fs-48 {
  font-size: 48px;
}

.sp-fs-49 {
  font-size: 49px;
}

.sp-fs-50 {
  font-size: 50px;
}

@media screen and (min-width: 768px) {
  .pc-fs-1 {
    font-size: 1px;
  }
  .pc-fs-2 {
    font-size: 2px;
  }
  .pc-fs-3 {
    font-size: 3px;
  }
  .pc-fs-4 {
    font-size: 4px;
  }
  .pc-fs-5 {
    font-size: 5px;
  }
  .pc-fs-6 {
    font-size: 6px;
  }
  .pc-fs-7 {
    font-size: 7px;
  }
  .pc-fs-8 {
    font-size: 8px;
  }
  .pc-fs-9 {
    font-size: 9px;
  }
  .pc-fs-10 {
    font-size: 10px;
  }
  .pc-fs-11 {
    font-size: 11px;
  }
  .pc-fs-12 {
    font-size: 12px;
  }
  .pc-fs-13 {
    font-size: 13px;
  }
  .pc-fs-14 {
    font-size: 14px;
  }
  .pc-fs-15 {
    font-size: 15px;
  }
  .pc-fs-16 {
    font-size: 16px;
  }
  .pc-fs-17 {
    font-size: 17px;
  }
  .pc-fs-18 {
    font-size: 18px;
  }
  .pc-fs-19 {
    font-size: 19px;
  }
  .pc-fs-20 {
    font-size: 20px;
  }
  .pc-fs-21 {
    font-size: 21px;
  }
  .pc-fs-22 {
    font-size: 22px;
  }
  .pc-fs-23 {
    font-size: 23px;
  }
  .pc-fs-24 {
    font-size: 24px;
  }
  .pc-fs-25 {
    font-size: 25px;
  }
  .pc-fs-26 {
    font-size: 26px;
  }
  .pc-fs-27 {
    font-size: 27px;
  }
  .pc-fs-28 {
    font-size: 28px;
  }
  .pc-fs-29 {
    font-size: 29px;
  }
  .pc-fs-30 {
    font-size: 30px;
  }
  .pc-fs-31 {
    font-size: 31px;
  }
  .pc-fs-32 {
    font-size: 32px;
  }
  .pc-fs-33 {
    font-size: 33px;
  }
  .pc-fs-34 {
    font-size: 34px;
  }
  .pc-fs-35 {
    font-size: 35px;
  }
  .pc-fs-36 {
    font-size: 36px;
  }
  .pc-fs-37 {
    font-size: 37px;
  }
  .pc-fs-38 {
    font-size: 38px;
  }
  .pc-fs-39 {
    font-size: 39px;
  }
  .pc-fs-40 {
    font-size: 40px;
  }
  .pc-fs-41 {
    font-size: 41px;
  }
  .pc-fs-42 {
    font-size: 42px;
  }
  .pc-fs-43 {
    font-size: 43px;
  }
  .pc-fs-44 {
    font-size: 44px;
  }
  .pc-fs-45 {
    font-size: 45px;
  }
  .pc-fs-46 {
    font-size: 46px;
  }
  .pc-fs-47 {
    font-size: 47px;
  }
  .pc-fs-48 {
    font-size: 48px;
  }
  .pc-fs-49 {
    font-size: 49px;
  }
  .pc-fs-50 {
    font-size: 50px;
  }
}
.sp-lh-10 {
  line-height: 1;
}

.sp-lh-11 {
  line-height: 1.1;
}

.sp-lh-12 {
  line-height: 1.2;
}

.sp-lh-13 {
  line-height: 1.3;
}

.sp-lh-14 {
  line-height: 1.4;
}

.sp-lh-15 {
  line-height: 1.5;
}

.sp-lh-16 {
  line-height: 1.6;
}

.sp-lh-17 {
  line-height: 1.7;
}

.sp-lh-18 {
  line-height: 1.8;
}

.sp-lh-19 {
  line-height: 1.9;
}

.sp-lh-20 {
  line-height: 2;
}

.sp-lh-21 {
  line-height: 2.1;
}

.sp-lh-22 {
  line-height: 2.2;
}

.sp-lh-23 {
  line-height: 2.3;
}

.sp-lh-24 {
  line-height: 2.4;
}

.sp-lh-25 {
  line-height: 2.5;
}

.sp-lh-26 {
  line-height: 2.6;
}

.sp-lh-27 {
  line-height: 2.7;
}

.sp-lh-28 {
  line-height: 2.8;
}

.sp-lh-29 {
  line-height: 2.9;
}

.sp-lh-30 {
  line-height: 3;
}

.sp-lh-31 {
  line-height: 3.1;
}

.sp-lh-32 {
  line-height: 3.2;
}

.sp-lh-33 {
  line-height: 3.3;
}

.sp-lh-34 {
  line-height: 3.4;
}

.sp-lh-35 {
  line-height: 3.5;
}

.sp-lh-36 {
  line-height: 3.6;
}

.sp-lh-37 {
  line-height: 3.7;
}

.sp-lh-38 {
  line-height: 3.8;
}

.sp-lh-39 {
  line-height: 3.9;
}

.sp-lh-40 {
  line-height: 4;
}

@media screen and (min-width: 768px) {
  .pc-lh-10 {
    line-height: 1;
  }
  .pc-lh-11 {
    line-height: 1.1;
  }
  .pc-lh-12 {
    line-height: 1.2;
  }
  .pc-lh-13 {
    line-height: 1.3;
  }
  .pc-lh-14 {
    line-height: 1.4;
  }
  .pc-lh-15 {
    line-height: 1.5;
  }
  .pc-lh-16 {
    line-height: 1.6;
  }
  .pc-lh-17 {
    line-height: 1.7;
  }
  .pc-lh-18 {
    line-height: 1.8;
  }
  .pc-lh-19 {
    line-height: 1.9;
  }
  .pc-lh-20 {
    line-height: 2;
  }
  .pc-lh-21 {
    line-height: 2.1;
  }
  .pc-lh-22 {
    line-height: 2.2;
  }
  .pc-lh-23 {
    line-height: 2.3;
  }
  .pc-lh-24 {
    line-height: 2.4;
  }
  .pc-lh-25 {
    line-height: 2.5;
  }
  .pc-lh-26 {
    line-height: 2.6;
  }
  .pc-lh-27 {
    line-height: 2.7;
  }
  .pc-lh-28 {
    line-height: 2.8;
  }
  .pc-lh-29 {
    line-height: 2.9;
  }
  .pc-lh-30 {
    line-height: 3;
  }
  .pc-lh-31 {
    line-height: 3.1;
  }
  .pc-lh-32 {
    line-height: 3.2;
  }
  .pc-lh-33 {
    line-height: 3.3;
  }
  .pc-lh-34 {
    line-height: 3.4;
  }
  .pc-lh-35 {
    line-height: 3.5;
  }
  .pc-lh-36 {
    line-height: 3.6;
  }
  .pc-lh-37 {
    line-height: 3.7;
  }
  .pc-lh-38 {
    line-height: 3.8;
  }
  .pc-lh-39 {
    line-height: 3.9;
  }
  .pc-lh-40 {
    line-height: 4;
  }
}
.ls-75 {
  letter-spacing: 0.075em;
}

.sp-mgt-0 {
  margin-top: 0px;
}

.sp-mgt-1 {
  margin-top: 1px;
}

.sp-mgt-2 {
  margin-top: 2px;
}

.sp-mgt-3 {
  margin-top: 3px;
}

.sp-mgt-4 {
  margin-top: 4px;
}

.sp-mgt-5 {
  margin-top: 5px;
}

.sp-mgt-6 {
  margin-top: 6px;
}

.sp-mgt-7 {
  margin-top: 7px;
}

.sp-mgt-8 {
  margin-top: 8px;
}

.sp-mgt-9 {
  margin-top: 9px;
}

.sp-mgt-10 {
  margin-top: 10px;
}

.sp-mgt-11 {
  margin-top: 11px;
}

.sp-mgt-12 {
  margin-top: 12px;
}

.sp-mgt-13 {
  margin-top: 13px;
}

.sp-mgt-14 {
  margin-top: 14px;
}

.sp-mgt-15 {
  margin-top: 15px;
}

.sp-mgt-16 {
  margin-top: 16px;
}

.sp-mgt-17 {
  margin-top: 17px;
}

.sp-mgt-18 {
  margin-top: 18px;
}

.sp-mgt-19 {
  margin-top: 19px;
}

.sp-mgt-20 {
  margin-top: 20px;
}

.sp-mgt-21 {
  margin-top: 21px;
}

.sp-mgt-22 {
  margin-top: 22px;
}

.sp-mgt-23 {
  margin-top: 23px;
}

.sp-mgt-24 {
  margin-top: 24px;
}

.sp-mgt-25 {
  margin-top: 25px;
}

.sp-mgt-26 {
  margin-top: 26px;
}

.sp-mgt-27 {
  margin-top: 27px;
}

.sp-mgt-28 {
  margin-top: 28px;
}

.sp-mgt-29 {
  margin-top: 29px;
}

.sp-mgt-30 {
  margin-top: 30px;
}

.sp-mgt-31 {
  margin-top: 31px;
}

.sp-mgt-32 {
  margin-top: 32px;
}

.sp-mgt-33 {
  margin-top: 33px;
}

.sp-mgt-34 {
  margin-top: 34px;
}

.sp-mgt-35 {
  margin-top: 35px;
}

.sp-mgt-36 {
  margin-top: 36px;
}

.sp-mgt-37 {
  margin-top: 37px;
}

.sp-mgt-38 {
  margin-top: 38px;
}

.sp-mgt-39 {
  margin-top: 39px;
}

.sp-mgt-40 {
  margin-top: 40px;
}

.sp-mgt-41 {
  margin-top: 41px;
}

.sp-mgt-42 {
  margin-top: 42px;
}

.sp-mgt-43 {
  margin-top: 43px;
}

.sp-mgt-44 {
  margin-top: 44px;
}

.sp-mgt-45 {
  margin-top: 45px;
}

.sp-mgt-46 {
  margin-top: 46px;
}

.sp-mgt-47 {
  margin-top: 47px;
}

.sp-mgt-48 {
  margin-top: 48px;
}

.sp-mgt-49 {
  margin-top: 49px;
}

.sp-mgt-50 {
  margin-top: 50px;
}

.sp-mgt-51 {
  margin-top: 51px;
}

.sp-mgt-52 {
  margin-top: 52px;
}

.sp-mgt-53 {
  margin-top: 53px;
}

.sp-mgt-54 {
  margin-top: 54px;
}

.sp-mgt-55 {
  margin-top: 55px;
}

.sp-mgt-56 {
  margin-top: 56px;
}

.sp-mgt-57 {
  margin-top: 57px;
}

.sp-mgt-58 {
  margin-top: 58px;
}

.sp-mgt-59 {
  margin-top: 59px;
}

.sp-mgt-60 {
  margin-top: 60px;
}

.sp-mgt-61 {
  margin-top: 61px;
}

.sp-mgt-62 {
  margin-top: 62px;
}

.sp-mgt-63 {
  margin-top: 63px;
}

.sp-mgt-64 {
  margin-top: 64px;
}

.sp-mgt-65 {
  margin-top: 65px;
}

.sp-mgt-66 {
  margin-top: 66px;
}

.sp-mgt-67 {
  margin-top: 67px;
}

.sp-mgt-68 {
  margin-top: 68px;
}

.sp-mgt-69 {
  margin-top: 69px;
}

.sp-mgt-70 {
  margin-top: 70px;
}

.sp-mgt-71 {
  margin-top: 71px;
}

.sp-mgt-72 {
  margin-top: 72px;
}

.sp-mgt-73 {
  margin-top: 73px;
}

.sp-mgt-74 {
  margin-top: 74px;
}

.sp-mgt-75 {
  margin-top: 75px;
}

.sp-mgt-76 {
  margin-top: 76px;
}

.sp-mgt-77 {
  margin-top: 77px;
}

.sp-mgt-78 {
  margin-top: 78px;
}

.sp-mgt-79 {
  margin-top: 79px;
}

.sp-mgt-80 {
  margin-top: 80px;
}

.sp-mgt-81 {
  margin-top: 81px;
}

.sp-mgt-82 {
  margin-top: 82px;
}

.sp-mgt-83 {
  margin-top: 83px;
}

.sp-mgt-84 {
  margin-top: 84px;
}

.sp-mgt-85 {
  margin-top: 85px;
}

.sp-mgt-86 {
  margin-top: 86px;
}

.sp-mgt-87 {
  margin-top: 87px;
}

.sp-mgt-88 {
  margin-top: 88px;
}

.sp-mgt-89 {
  margin-top: 89px;
}

.sp-mgt-90 {
  margin-top: 90px;
}

.sp-mgt-91 {
  margin-top: 91px;
}

.sp-mgt-92 {
  margin-top: 92px;
}

.sp-mgt-93 {
  margin-top: 93px;
}

.sp-mgt-94 {
  margin-top: 94px;
}

.sp-mgt-95 {
  margin-top: 95px;
}

.sp-mgt-96 {
  margin-top: 96px;
}

.sp-mgt-97 {
  margin-top: 97px;
}

.sp-mgt-98 {
  margin-top: 98px;
}

.sp-mgt-99 {
  margin-top: 99px;
}

.sp-mgt-100 {
  margin-top: 100px;
}

.sp-mgt-101 {
  margin-top: 101px;
}

.sp-mgt-102 {
  margin-top: 102px;
}

.sp-mgt-103 {
  margin-top: 103px;
}

.sp-mgt-104 {
  margin-top: 104px;
}

.sp-mgt-105 {
  margin-top: 105px;
}

.sp-mgt-106 {
  margin-top: 106px;
}

.sp-mgt-107 {
  margin-top: 107px;
}

.sp-mgt-108 {
  margin-top: 108px;
}

.sp-mgt-109 {
  margin-top: 109px;
}

.sp-mgt-110 {
  margin-top: 110px;
}

.sp-mgt-111 {
  margin-top: 111px;
}

.sp-mgt-112 {
  margin-top: 112px;
}

.sp-mgt-113 {
  margin-top: 113px;
}

.sp-mgt-114 {
  margin-top: 114px;
}

.sp-mgt-115 {
  margin-top: 115px;
}

.sp-mgt-116 {
  margin-top: 116px;
}

.sp-mgt-117 {
  margin-top: 117px;
}

.sp-mgt-118 {
  margin-top: 118px;
}

.sp-mgt-119 {
  margin-top: 119px;
}

.sp-mgt-120 {
  margin-top: 120px;
}

.sp-mgt-121 {
  margin-top: 121px;
}

.sp-mgt-122 {
  margin-top: 122px;
}

.sp-mgt-123 {
  margin-top: 123px;
}

.sp-mgt-124 {
  margin-top: 124px;
}

.sp-mgt-125 {
  margin-top: 125px;
}

.sp-mgt-126 {
  margin-top: 126px;
}

.sp-mgt-127 {
  margin-top: 127px;
}

.sp-mgt-128 {
  margin-top: 128px;
}

.sp-mgt-129 {
  margin-top: 129px;
}

.sp-mgt-130 {
  margin-top: 130px;
}

.sp-mgt-131 {
  margin-top: 131px;
}

.sp-mgt-132 {
  margin-top: 132px;
}

.sp-mgt-133 {
  margin-top: 133px;
}

.sp-mgt-134 {
  margin-top: 134px;
}

.sp-mgt-135 {
  margin-top: 135px;
}

.sp-mgt-136 {
  margin-top: 136px;
}

.sp-mgt-137 {
  margin-top: 137px;
}

.sp-mgt-138 {
  margin-top: 138px;
}

.sp-mgt-139 {
  margin-top: 139px;
}

.sp-mgt-140 {
  margin-top: 140px;
}

.sp-mgt-141 {
  margin-top: 141px;
}

.sp-mgt-142 {
  margin-top: 142px;
}

.sp-mgt-143 {
  margin-top: 143px;
}

.sp-mgt-144 {
  margin-top: 144px;
}

.sp-mgt-145 {
  margin-top: 145px;
}

.sp-mgt-146 {
  margin-top: 146px;
}

.sp-mgt-147 {
  margin-top: 147px;
}

.sp-mgt-148 {
  margin-top: 148px;
}

.sp-mgt-149 {
  margin-top: 149px;
}

.sp-mgt-150 {
  margin-top: 150px;
}

.sp-mgt-151 {
  margin-top: 151px;
}

.sp-mgt-152 {
  margin-top: 152px;
}

.sp-mgt-153 {
  margin-top: 153px;
}

.sp-mgt-154 {
  margin-top: 154px;
}

.sp-mgt-155 {
  margin-top: 155px;
}

.sp-mgt-156 {
  margin-top: 156px;
}

.sp-mgt-157 {
  margin-top: 157px;
}

.sp-mgt-158 {
  margin-top: 158px;
}

.sp-mgt-159 {
  margin-top: 159px;
}

.sp-mgt-160 {
  margin-top: 160px;
}

.sp-mgt-161 {
  margin-top: 161px;
}

.sp-mgt-162 {
  margin-top: 162px;
}

.sp-mgt-163 {
  margin-top: 163px;
}

.sp-mgt-164 {
  margin-top: 164px;
}

.sp-mgt-165 {
  margin-top: 165px;
}

.sp-mgt-166 {
  margin-top: 166px;
}

.sp-mgt-167 {
  margin-top: 167px;
}

.sp-mgt-168 {
  margin-top: 168px;
}

.sp-mgt-169 {
  margin-top: 169px;
}

.sp-mgt-170 {
  margin-top: 170px;
}

.sp-mgt-171 {
  margin-top: 171px;
}

.sp-mgt-172 {
  margin-top: 172px;
}

.sp-mgt-173 {
  margin-top: 173px;
}

.sp-mgt-174 {
  margin-top: 174px;
}

.sp-mgt-175 {
  margin-top: 175px;
}

.sp-mgt-176 {
  margin-top: 176px;
}

.sp-mgt-177 {
  margin-top: 177px;
}

.sp-mgt-178 {
  margin-top: 178px;
}

.sp-mgt-179 {
  margin-top: 179px;
}

.sp-mgt-180 {
  margin-top: 180px;
}

.sp-mgt-181 {
  margin-top: 181px;
}

.sp-mgt-182 {
  margin-top: 182px;
}

.sp-mgt-183 {
  margin-top: 183px;
}

.sp-mgt-184 {
  margin-top: 184px;
}

.sp-mgt-185 {
  margin-top: 185px;
}

.sp-mgt-186 {
  margin-top: 186px;
}

.sp-mgt-187 {
  margin-top: 187px;
}

.sp-mgt-188 {
  margin-top: 188px;
}

.sp-mgt-189 {
  margin-top: 189px;
}

.sp-mgt-190 {
  margin-top: 190px;
}

.sp-mgt-191 {
  margin-top: 191px;
}

.sp-mgt-192 {
  margin-top: 192px;
}

.sp-mgt-193 {
  margin-top: 193px;
}

.sp-mgt-194 {
  margin-top: 194px;
}

.sp-mgt-195 {
  margin-top: 195px;
}

.sp-mgt-196 {
  margin-top: 196px;
}

.sp-mgt-197 {
  margin-top: 197px;
}

.sp-mgt-198 {
  margin-top: 198px;
}

.sp-mgt-199 {
  margin-top: 199px;
}

.sp-mgt-200 {
  margin-top: 200px;
}

.sp-mgb-0 {
  margin-bottom: 0px;
}

.sp-mgb-1 {
  margin-bottom: 1px;
}

.sp-mgb-2 {
  margin-bottom: 2px;
}

.sp-mgb-3 {
  margin-bottom: 3px;
}

.sp-mgb-4 {
  margin-bottom: 4px;
}

.sp-mgb-5 {
  margin-bottom: 5px;
}

.sp-mgb-6 {
  margin-bottom: 6px;
}

.sp-mgb-7 {
  margin-bottom: 7px;
}

.sp-mgb-8 {
  margin-bottom: 8px;
}

.sp-mgb-9 {
  margin-bottom: 9px;
}

.sp-mgb-10 {
  margin-bottom: 10px;
}

.sp-mgb-11 {
  margin-bottom: 11px;
}

.sp-mgb-12 {
  margin-bottom: 12px;
}

.sp-mgb-13 {
  margin-bottom: 13px;
}

.sp-mgb-14 {
  margin-bottom: 14px;
}

.sp-mgb-15 {
  margin-bottom: 15px;
}

.sp-mgb-16 {
  margin-bottom: 16px;
}

.sp-mgb-17 {
  margin-bottom: 17px;
}

.sp-mgb-18 {
  margin-bottom: 18px;
}

.sp-mgb-19 {
  margin-bottom: 19px;
}

.sp-mgb-20 {
  margin-bottom: 20px;
}

.sp-mgb-21 {
  margin-bottom: 21px;
}

.sp-mgb-22 {
  margin-bottom: 22px;
}

.sp-mgb-23 {
  margin-bottom: 23px;
}

.sp-mgb-24 {
  margin-bottom: 24px;
}

.sp-mgb-25 {
  margin-bottom: 25px;
}

.sp-mgb-26 {
  margin-bottom: 26px;
}

.sp-mgb-27 {
  margin-bottom: 27px;
}

.sp-mgb-28 {
  margin-bottom: 28px;
}

.sp-mgb-29 {
  margin-bottom: 29px;
}

.sp-mgb-30 {
  margin-bottom: 30px;
}

.sp-mgb-31 {
  margin-bottom: 31px;
}

.sp-mgb-32 {
  margin-bottom: 32px;
}

.sp-mgb-33 {
  margin-bottom: 33px;
}

.sp-mgb-34 {
  margin-bottom: 34px;
}

.sp-mgb-35 {
  margin-bottom: 35px;
}

.sp-mgb-36 {
  margin-bottom: 36px;
}

.sp-mgb-37 {
  margin-bottom: 37px;
}

.sp-mgb-38 {
  margin-bottom: 38px;
}

.sp-mgb-39 {
  margin-bottom: 39px;
}

.sp-mgb-40 {
  margin-bottom: 40px;
}

.sp-mgb-41 {
  margin-bottom: 41px;
}

.sp-mgb-42 {
  margin-bottom: 42px;
}

.sp-mgb-43 {
  margin-bottom: 43px;
}

.sp-mgb-44 {
  margin-bottom: 44px;
}

.sp-mgb-45 {
  margin-bottom: 45px;
}

.sp-mgb-46 {
  margin-bottom: 46px;
}

.sp-mgb-47 {
  margin-bottom: 47px;
}

.sp-mgb-48 {
  margin-bottom: 48px;
}

.sp-mgb-49 {
  margin-bottom: 49px;
}

.sp-mgb-50 {
  margin-bottom: 50px;
}

.sp-mgb-51 {
  margin-bottom: 51px;
}

.sp-mgb-52 {
  margin-bottom: 52px;
}

.sp-mgb-53 {
  margin-bottom: 53px;
}

.sp-mgb-54 {
  margin-bottom: 54px;
}

.sp-mgb-55 {
  margin-bottom: 55px;
}

.sp-mgb-56 {
  margin-bottom: 56px;
}

.sp-mgb-57 {
  margin-bottom: 57px;
}

.sp-mgb-58 {
  margin-bottom: 58px;
}

.sp-mgb-59 {
  margin-bottom: 59px;
}

.sp-mgb-60 {
  margin-bottom: 60px;
}

.sp-mgb-61 {
  margin-bottom: 61px;
}

.sp-mgb-62 {
  margin-bottom: 62px;
}

.sp-mgb-63 {
  margin-bottom: 63px;
}

.sp-mgb-64 {
  margin-bottom: 64px;
}

.sp-mgb-65 {
  margin-bottom: 65px;
}

.sp-mgb-66 {
  margin-bottom: 66px;
}

.sp-mgb-67 {
  margin-bottom: 67px;
}

.sp-mgb-68 {
  margin-bottom: 68px;
}

.sp-mgb-69 {
  margin-bottom: 69px;
}

.sp-mgb-70 {
  margin-bottom: 70px;
}

.sp-mgb-71 {
  margin-bottom: 71px;
}

.sp-mgb-72 {
  margin-bottom: 72px;
}

.sp-mgb-73 {
  margin-bottom: 73px;
}

.sp-mgb-74 {
  margin-bottom: 74px;
}

.sp-mgb-75 {
  margin-bottom: 75px;
}

.sp-mgb-76 {
  margin-bottom: 76px;
}

.sp-mgb-77 {
  margin-bottom: 77px;
}

.sp-mgb-78 {
  margin-bottom: 78px;
}

.sp-mgb-79 {
  margin-bottom: 79px;
}

.sp-mgb-80 {
  margin-bottom: 80px;
}

.sp-mgb-81 {
  margin-bottom: 81px;
}

.sp-mgb-82 {
  margin-bottom: 82px;
}

.sp-mgb-83 {
  margin-bottom: 83px;
}

.sp-mgb-84 {
  margin-bottom: 84px;
}

.sp-mgb-85 {
  margin-bottom: 85px;
}

.sp-mgb-86 {
  margin-bottom: 86px;
}

.sp-mgb-87 {
  margin-bottom: 87px;
}

.sp-mgb-88 {
  margin-bottom: 88px;
}

.sp-mgb-89 {
  margin-bottom: 89px;
}

.sp-mgb-90 {
  margin-bottom: 90px;
}

.sp-mgb-91 {
  margin-bottom: 91px;
}

.sp-mgb-92 {
  margin-bottom: 92px;
}

.sp-mgb-93 {
  margin-bottom: 93px;
}

.sp-mgb-94 {
  margin-bottom: 94px;
}

.sp-mgb-95 {
  margin-bottom: 95px;
}

.sp-mgb-96 {
  margin-bottom: 96px;
}

.sp-mgb-97 {
  margin-bottom: 97px;
}

.sp-mgb-98 {
  margin-bottom: 98px;
}

.sp-mgb-99 {
  margin-bottom: 99px;
}

.sp-mgb-100 {
  margin-bottom: 100px;
}

.sp-mgb-101 {
  margin-bottom: 101px;
}

.sp-mgb-102 {
  margin-bottom: 102px;
}

.sp-mgb-103 {
  margin-bottom: 103px;
}

.sp-mgb-104 {
  margin-bottom: 104px;
}

.sp-mgb-105 {
  margin-bottom: 105px;
}

.sp-mgb-106 {
  margin-bottom: 106px;
}

.sp-mgb-107 {
  margin-bottom: 107px;
}

.sp-mgb-108 {
  margin-bottom: 108px;
}

.sp-mgb-109 {
  margin-bottom: 109px;
}

.sp-mgb-110 {
  margin-bottom: 110px;
}

.sp-mgb-111 {
  margin-bottom: 111px;
}

.sp-mgb-112 {
  margin-bottom: 112px;
}

.sp-mgb-113 {
  margin-bottom: 113px;
}

.sp-mgb-114 {
  margin-bottom: 114px;
}

.sp-mgb-115 {
  margin-bottom: 115px;
}

.sp-mgb-116 {
  margin-bottom: 116px;
}

.sp-mgb-117 {
  margin-bottom: 117px;
}

.sp-mgb-118 {
  margin-bottom: 118px;
}

.sp-mgb-119 {
  margin-bottom: 119px;
}

.sp-mgb-120 {
  margin-bottom: 120px;
}

.sp-mgb-121 {
  margin-bottom: 121px;
}

.sp-mgb-122 {
  margin-bottom: 122px;
}

.sp-mgb-123 {
  margin-bottom: 123px;
}

.sp-mgb-124 {
  margin-bottom: 124px;
}

.sp-mgb-125 {
  margin-bottom: 125px;
}

.sp-mgb-126 {
  margin-bottom: 126px;
}

.sp-mgb-127 {
  margin-bottom: 127px;
}

.sp-mgb-128 {
  margin-bottom: 128px;
}

.sp-mgb-129 {
  margin-bottom: 129px;
}

.sp-mgb-130 {
  margin-bottom: 130px;
}

.sp-mgb-131 {
  margin-bottom: 131px;
}

.sp-mgb-132 {
  margin-bottom: 132px;
}

.sp-mgb-133 {
  margin-bottom: 133px;
}

.sp-mgb-134 {
  margin-bottom: 134px;
}

.sp-mgb-135 {
  margin-bottom: 135px;
}

.sp-mgb-136 {
  margin-bottom: 136px;
}

.sp-mgb-137 {
  margin-bottom: 137px;
}

.sp-mgb-138 {
  margin-bottom: 138px;
}

.sp-mgb-139 {
  margin-bottom: 139px;
}

.sp-mgb-140 {
  margin-bottom: 140px;
}

.sp-mgb-141 {
  margin-bottom: 141px;
}

.sp-mgb-142 {
  margin-bottom: 142px;
}

.sp-mgb-143 {
  margin-bottom: 143px;
}

.sp-mgb-144 {
  margin-bottom: 144px;
}

.sp-mgb-145 {
  margin-bottom: 145px;
}

.sp-mgb-146 {
  margin-bottom: 146px;
}

.sp-mgb-147 {
  margin-bottom: 147px;
}

.sp-mgb-148 {
  margin-bottom: 148px;
}

.sp-mgb-149 {
  margin-bottom: 149px;
}

.sp-mgb-150 {
  margin-bottom: 150px;
}

.sp-mgb-151 {
  margin-bottom: 151px;
}

.sp-mgb-152 {
  margin-bottom: 152px;
}

.sp-mgb-153 {
  margin-bottom: 153px;
}

.sp-mgb-154 {
  margin-bottom: 154px;
}

.sp-mgb-155 {
  margin-bottom: 155px;
}

.sp-mgb-156 {
  margin-bottom: 156px;
}

.sp-mgb-157 {
  margin-bottom: 157px;
}

.sp-mgb-158 {
  margin-bottom: 158px;
}

.sp-mgb-159 {
  margin-bottom: 159px;
}

.sp-mgb-160 {
  margin-bottom: 160px;
}

.sp-mgb-161 {
  margin-bottom: 161px;
}

.sp-mgb-162 {
  margin-bottom: 162px;
}

.sp-mgb-163 {
  margin-bottom: 163px;
}

.sp-mgb-164 {
  margin-bottom: 164px;
}

.sp-mgb-165 {
  margin-bottom: 165px;
}

.sp-mgb-166 {
  margin-bottom: 166px;
}

.sp-mgb-167 {
  margin-bottom: 167px;
}

.sp-mgb-168 {
  margin-bottom: 168px;
}

.sp-mgb-169 {
  margin-bottom: 169px;
}

.sp-mgb-170 {
  margin-bottom: 170px;
}

.sp-mgb-171 {
  margin-bottom: 171px;
}

.sp-mgb-172 {
  margin-bottom: 172px;
}

.sp-mgb-173 {
  margin-bottom: 173px;
}

.sp-mgb-174 {
  margin-bottom: 174px;
}

.sp-mgb-175 {
  margin-bottom: 175px;
}

.sp-mgb-176 {
  margin-bottom: 176px;
}

.sp-mgb-177 {
  margin-bottom: 177px;
}

.sp-mgb-178 {
  margin-bottom: 178px;
}

.sp-mgb-179 {
  margin-bottom: 179px;
}

.sp-mgb-180 {
  margin-bottom: 180px;
}

.sp-mgb-181 {
  margin-bottom: 181px;
}

.sp-mgb-182 {
  margin-bottom: 182px;
}

.sp-mgb-183 {
  margin-bottom: 183px;
}

.sp-mgb-184 {
  margin-bottom: 184px;
}

.sp-mgb-185 {
  margin-bottom: 185px;
}

.sp-mgb-186 {
  margin-bottom: 186px;
}

.sp-mgb-187 {
  margin-bottom: 187px;
}

.sp-mgb-188 {
  margin-bottom: 188px;
}

.sp-mgb-189 {
  margin-bottom: 189px;
}

.sp-mgb-190 {
  margin-bottom: 190px;
}

.sp-mgb-191 {
  margin-bottom: 191px;
}

.sp-mgb-192 {
  margin-bottom: 192px;
}

.sp-mgb-193 {
  margin-bottom: 193px;
}

.sp-mgb-194 {
  margin-bottom: 194px;
}

.sp-mgb-195 {
  margin-bottom: 195px;
}

.sp-mgb-196 {
  margin-bottom: 196px;
}

.sp-mgb-197 {
  margin-bottom: 197px;
}

.sp-mgb-198 {
  margin-bottom: 198px;
}

.sp-mgb-199 {
  margin-bottom: 199px;
}

.sp-mgb-200 {
  margin-bottom: 200px;
}

.sp-mgr-0 {
  margin-right: 0px;
}

.sp-mgr-1 {
  margin-right: 1px;
}

.sp-mgr-2 {
  margin-right: 2px;
}

.sp-mgr-3 {
  margin-right: 3px;
}

.sp-mgr-4 {
  margin-right: 4px;
}

.sp-mgr-5 {
  margin-right: 5px;
}

.sp-mgr-6 {
  margin-right: 6px;
}

.sp-mgr-7 {
  margin-right: 7px;
}

.sp-mgr-8 {
  margin-right: 8px;
}

.sp-mgr-9 {
  margin-right: 9px;
}

.sp-mgr-10 {
  margin-right: 10px;
}

.sp-mgr-11 {
  margin-right: 11px;
}

.sp-mgr-12 {
  margin-right: 12px;
}

.sp-mgr-13 {
  margin-right: 13px;
}

.sp-mgr-14 {
  margin-right: 14px;
}

.sp-mgr-15 {
  margin-right: 15px;
}

.sp-mgr-16 {
  margin-right: 16px;
}

.sp-mgr-17 {
  margin-right: 17px;
}

.sp-mgr-18 {
  margin-right: 18px;
}

.sp-mgr-19 {
  margin-right: 19px;
}

.sp-mgr-20 {
  margin-right: 20px;
}

.sp-mgr-21 {
  margin-right: 21px;
}

.sp-mgr-22 {
  margin-right: 22px;
}

.sp-mgr-23 {
  margin-right: 23px;
}

.sp-mgr-24 {
  margin-right: 24px;
}

.sp-mgr-25 {
  margin-right: 25px;
}

.sp-mgr-26 {
  margin-right: 26px;
}

.sp-mgr-27 {
  margin-right: 27px;
}

.sp-mgr-28 {
  margin-right: 28px;
}

.sp-mgr-29 {
  margin-right: 29px;
}

.sp-mgr-30 {
  margin-right: 30px;
}

.sp-mgr-31 {
  margin-right: 31px;
}

.sp-mgr-32 {
  margin-right: 32px;
}

.sp-mgr-33 {
  margin-right: 33px;
}

.sp-mgr-34 {
  margin-right: 34px;
}

.sp-mgr-35 {
  margin-right: 35px;
}

.sp-mgr-36 {
  margin-right: 36px;
}

.sp-mgr-37 {
  margin-right: 37px;
}

.sp-mgr-38 {
  margin-right: 38px;
}

.sp-mgr-39 {
  margin-right: 39px;
}

.sp-mgr-40 {
  margin-right: 40px;
}

.sp-mgr-41 {
  margin-right: 41px;
}

.sp-mgr-42 {
  margin-right: 42px;
}

.sp-mgr-43 {
  margin-right: 43px;
}

.sp-mgr-44 {
  margin-right: 44px;
}

.sp-mgr-45 {
  margin-right: 45px;
}

.sp-mgr-46 {
  margin-right: 46px;
}

.sp-mgr-47 {
  margin-right: 47px;
}

.sp-mgr-48 {
  margin-right: 48px;
}

.sp-mgr-49 {
  margin-right: 49px;
}

.sp-mgr-50 {
  margin-right: 50px;
}

.sp-mgr-51 {
  margin-right: 51px;
}

.sp-mgr-52 {
  margin-right: 52px;
}

.sp-mgr-53 {
  margin-right: 53px;
}

.sp-mgr-54 {
  margin-right: 54px;
}

.sp-mgr-55 {
  margin-right: 55px;
}

.sp-mgr-56 {
  margin-right: 56px;
}

.sp-mgr-57 {
  margin-right: 57px;
}

.sp-mgr-58 {
  margin-right: 58px;
}

.sp-mgr-59 {
  margin-right: 59px;
}

.sp-mgr-60 {
  margin-right: 60px;
}

.sp-mgr-61 {
  margin-right: 61px;
}

.sp-mgr-62 {
  margin-right: 62px;
}

.sp-mgr-63 {
  margin-right: 63px;
}

.sp-mgr-64 {
  margin-right: 64px;
}

.sp-mgr-65 {
  margin-right: 65px;
}

.sp-mgr-66 {
  margin-right: 66px;
}

.sp-mgr-67 {
  margin-right: 67px;
}

.sp-mgr-68 {
  margin-right: 68px;
}

.sp-mgr-69 {
  margin-right: 69px;
}

.sp-mgr-70 {
  margin-right: 70px;
}

.sp-mgr-71 {
  margin-right: 71px;
}

.sp-mgr-72 {
  margin-right: 72px;
}

.sp-mgr-73 {
  margin-right: 73px;
}

.sp-mgr-74 {
  margin-right: 74px;
}

.sp-mgr-75 {
  margin-right: 75px;
}

.sp-mgr-76 {
  margin-right: 76px;
}

.sp-mgr-77 {
  margin-right: 77px;
}

.sp-mgr-78 {
  margin-right: 78px;
}

.sp-mgr-79 {
  margin-right: 79px;
}

.sp-mgr-80 {
  margin-right: 80px;
}

.sp-mgr-81 {
  margin-right: 81px;
}

.sp-mgr-82 {
  margin-right: 82px;
}

.sp-mgr-83 {
  margin-right: 83px;
}

.sp-mgr-84 {
  margin-right: 84px;
}

.sp-mgr-85 {
  margin-right: 85px;
}

.sp-mgr-86 {
  margin-right: 86px;
}

.sp-mgr-87 {
  margin-right: 87px;
}

.sp-mgr-88 {
  margin-right: 88px;
}

.sp-mgr-89 {
  margin-right: 89px;
}

.sp-mgr-90 {
  margin-right: 90px;
}

.sp-mgr-91 {
  margin-right: 91px;
}

.sp-mgr-92 {
  margin-right: 92px;
}

.sp-mgr-93 {
  margin-right: 93px;
}

.sp-mgr-94 {
  margin-right: 94px;
}

.sp-mgr-95 {
  margin-right: 95px;
}

.sp-mgr-96 {
  margin-right: 96px;
}

.sp-mgr-97 {
  margin-right: 97px;
}

.sp-mgr-98 {
  margin-right: 98px;
}

.sp-mgr-99 {
  margin-right: 99px;
}

.sp-mgr-100 {
  margin-right: 100px;
}

.sp-mgr-101 {
  margin-right: 101px;
}

.sp-mgr-102 {
  margin-right: 102px;
}

.sp-mgr-103 {
  margin-right: 103px;
}

.sp-mgr-104 {
  margin-right: 104px;
}

.sp-mgr-105 {
  margin-right: 105px;
}

.sp-mgr-106 {
  margin-right: 106px;
}

.sp-mgr-107 {
  margin-right: 107px;
}

.sp-mgr-108 {
  margin-right: 108px;
}

.sp-mgr-109 {
  margin-right: 109px;
}

.sp-mgr-110 {
  margin-right: 110px;
}

.sp-mgr-111 {
  margin-right: 111px;
}

.sp-mgr-112 {
  margin-right: 112px;
}

.sp-mgr-113 {
  margin-right: 113px;
}

.sp-mgr-114 {
  margin-right: 114px;
}

.sp-mgr-115 {
  margin-right: 115px;
}

.sp-mgr-116 {
  margin-right: 116px;
}

.sp-mgr-117 {
  margin-right: 117px;
}

.sp-mgr-118 {
  margin-right: 118px;
}

.sp-mgr-119 {
  margin-right: 119px;
}

.sp-mgr-120 {
  margin-right: 120px;
}

.sp-mgr-121 {
  margin-right: 121px;
}

.sp-mgr-122 {
  margin-right: 122px;
}

.sp-mgr-123 {
  margin-right: 123px;
}

.sp-mgr-124 {
  margin-right: 124px;
}

.sp-mgr-125 {
  margin-right: 125px;
}

.sp-mgr-126 {
  margin-right: 126px;
}

.sp-mgr-127 {
  margin-right: 127px;
}

.sp-mgr-128 {
  margin-right: 128px;
}

.sp-mgr-129 {
  margin-right: 129px;
}

.sp-mgr-130 {
  margin-right: 130px;
}

.sp-mgr-131 {
  margin-right: 131px;
}

.sp-mgr-132 {
  margin-right: 132px;
}

.sp-mgr-133 {
  margin-right: 133px;
}

.sp-mgr-134 {
  margin-right: 134px;
}

.sp-mgr-135 {
  margin-right: 135px;
}

.sp-mgr-136 {
  margin-right: 136px;
}

.sp-mgr-137 {
  margin-right: 137px;
}

.sp-mgr-138 {
  margin-right: 138px;
}

.sp-mgr-139 {
  margin-right: 139px;
}

.sp-mgr-140 {
  margin-right: 140px;
}

.sp-mgr-141 {
  margin-right: 141px;
}

.sp-mgr-142 {
  margin-right: 142px;
}

.sp-mgr-143 {
  margin-right: 143px;
}

.sp-mgr-144 {
  margin-right: 144px;
}

.sp-mgr-145 {
  margin-right: 145px;
}

.sp-mgr-146 {
  margin-right: 146px;
}

.sp-mgr-147 {
  margin-right: 147px;
}

.sp-mgr-148 {
  margin-right: 148px;
}

.sp-mgr-149 {
  margin-right: 149px;
}

.sp-mgr-150 {
  margin-right: 150px;
}

.sp-mgr-151 {
  margin-right: 151px;
}

.sp-mgr-152 {
  margin-right: 152px;
}

.sp-mgr-153 {
  margin-right: 153px;
}

.sp-mgr-154 {
  margin-right: 154px;
}

.sp-mgr-155 {
  margin-right: 155px;
}

.sp-mgr-156 {
  margin-right: 156px;
}

.sp-mgr-157 {
  margin-right: 157px;
}

.sp-mgr-158 {
  margin-right: 158px;
}

.sp-mgr-159 {
  margin-right: 159px;
}

.sp-mgr-160 {
  margin-right: 160px;
}

.sp-mgr-161 {
  margin-right: 161px;
}

.sp-mgr-162 {
  margin-right: 162px;
}

.sp-mgr-163 {
  margin-right: 163px;
}

.sp-mgr-164 {
  margin-right: 164px;
}

.sp-mgr-165 {
  margin-right: 165px;
}

.sp-mgr-166 {
  margin-right: 166px;
}

.sp-mgr-167 {
  margin-right: 167px;
}

.sp-mgr-168 {
  margin-right: 168px;
}

.sp-mgr-169 {
  margin-right: 169px;
}

.sp-mgr-170 {
  margin-right: 170px;
}

.sp-mgr-171 {
  margin-right: 171px;
}

.sp-mgr-172 {
  margin-right: 172px;
}

.sp-mgr-173 {
  margin-right: 173px;
}

.sp-mgr-174 {
  margin-right: 174px;
}

.sp-mgr-175 {
  margin-right: 175px;
}

.sp-mgr-176 {
  margin-right: 176px;
}

.sp-mgr-177 {
  margin-right: 177px;
}

.sp-mgr-178 {
  margin-right: 178px;
}

.sp-mgr-179 {
  margin-right: 179px;
}

.sp-mgr-180 {
  margin-right: 180px;
}

.sp-mgr-181 {
  margin-right: 181px;
}

.sp-mgr-182 {
  margin-right: 182px;
}

.sp-mgr-183 {
  margin-right: 183px;
}

.sp-mgr-184 {
  margin-right: 184px;
}

.sp-mgr-185 {
  margin-right: 185px;
}

.sp-mgr-186 {
  margin-right: 186px;
}

.sp-mgr-187 {
  margin-right: 187px;
}

.sp-mgr-188 {
  margin-right: 188px;
}

.sp-mgr-189 {
  margin-right: 189px;
}

.sp-mgr-190 {
  margin-right: 190px;
}

.sp-mgr-191 {
  margin-right: 191px;
}

.sp-mgr-192 {
  margin-right: 192px;
}

.sp-mgr-193 {
  margin-right: 193px;
}

.sp-mgr-194 {
  margin-right: 194px;
}

.sp-mgr-195 {
  margin-right: 195px;
}

.sp-mgr-196 {
  margin-right: 196px;
}

.sp-mgr-197 {
  margin-right: 197px;
}

.sp-mgr-198 {
  margin-right: 198px;
}

.sp-mgr-199 {
  margin-right: 199px;
}

.sp-mgr-200 {
  margin-right: 200px;
}

.sp-mgl-0 {
  margin-left: 0px;
}

.sp-mgl-1 {
  margin-left: 1px;
}

.sp-mgl-2 {
  margin-left: 2px;
}

.sp-mgl-3 {
  margin-left: 3px;
}

.sp-mgl-4 {
  margin-left: 4px;
}

.sp-mgl-5 {
  margin-left: 5px;
}

.sp-mgl-6 {
  margin-left: 6px;
}

.sp-mgl-7 {
  margin-left: 7px;
}

.sp-mgl-8 {
  margin-left: 8px;
}

.sp-mgl-9 {
  margin-left: 9px;
}

.sp-mgl-10 {
  margin-left: 10px;
}

.sp-mgl-11 {
  margin-left: 11px;
}

.sp-mgl-12 {
  margin-left: 12px;
}

.sp-mgl-13 {
  margin-left: 13px;
}

.sp-mgl-14 {
  margin-left: 14px;
}

.sp-mgl-15 {
  margin-left: 15px;
}

.sp-mgl-16 {
  margin-left: 16px;
}

.sp-mgl-17 {
  margin-left: 17px;
}

.sp-mgl-18 {
  margin-left: 18px;
}

.sp-mgl-19 {
  margin-left: 19px;
}

.sp-mgl-20 {
  margin-left: 20px;
}

.sp-mgl-21 {
  margin-left: 21px;
}

.sp-mgl-22 {
  margin-left: 22px;
}

.sp-mgl-23 {
  margin-left: 23px;
}

.sp-mgl-24 {
  margin-left: 24px;
}

.sp-mgl-25 {
  margin-left: 25px;
}

.sp-mgl-26 {
  margin-left: 26px;
}

.sp-mgl-27 {
  margin-left: 27px;
}

.sp-mgl-28 {
  margin-left: 28px;
}

.sp-mgl-29 {
  margin-left: 29px;
}

.sp-mgl-30 {
  margin-left: 30px;
}

.sp-mgl-31 {
  margin-left: 31px;
}

.sp-mgl-32 {
  margin-left: 32px;
}

.sp-mgl-33 {
  margin-left: 33px;
}

.sp-mgl-34 {
  margin-left: 34px;
}

.sp-mgl-35 {
  margin-left: 35px;
}

.sp-mgl-36 {
  margin-left: 36px;
}

.sp-mgl-37 {
  margin-left: 37px;
}

.sp-mgl-38 {
  margin-left: 38px;
}

.sp-mgl-39 {
  margin-left: 39px;
}

.sp-mgl-40 {
  margin-left: 40px;
}

.sp-mgl-41 {
  margin-left: 41px;
}

.sp-mgl-42 {
  margin-left: 42px;
}

.sp-mgl-43 {
  margin-left: 43px;
}

.sp-mgl-44 {
  margin-left: 44px;
}

.sp-mgl-45 {
  margin-left: 45px;
}

.sp-mgl-46 {
  margin-left: 46px;
}

.sp-mgl-47 {
  margin-left: 47px;
}

.sp-mgl-48 {
  margin-left: 48px;
}

.sp-mgl-49 {
  margin-left: 49px;
}

.sp-mgl-50 {
  margin-left: 50px;
}

.sp-mgl-51 {
  margin-left: 51px;
}

.sp-mgl-52 {
  margin-left: 52px;
}

.sp-mgl-53 {
  margin-left: 53px;
}

.sp-mgl-54 {
  margin-left: 54px;
}

.sp-mgl-55 {
  margin-left: 55px;
}

.sp-mgl-56 {
  margin-left: 56px;
}

.sp-mgl-57 {
  margin-left: 57px;
}

.sp-mgl-58 {
  margin-left: 58px;
}

.sp-mgl-59 {
  margin-left: 59px;
}

.sp-mgl-60 {
  margin-left: 60px;
}

.sp-mgl-61 {
  margin-left: 61px;
}

.sp-mgl-62 {
  margin-left: 62px;
}

.sp-mgl-63 {
  margin-left: 63px;
}

.sp-mgl-64 {
  margin-left: 64px;
}

.sp-mgl-65 {
  margin-left: 65px;
}

.sp-mgl-66 {
  margin-left: 66px;
}

.sp-mgl-67 {
  margin-left: 67px;
}

.sp-mgl-68 {
  margin-left: 68px;
}

.sp-mgl-69 {
  margin-left: 69px;
}

.sp-mgl-70 {
  margin-left: 70px;
}

.sp-mgl-71 {
  margin-left: 71px;
}

.sp-mgl-72 {
  margin-left: 72px;
}

.sp-mgl-73 {
  margin-left: 73px;
}

.sp-mgl-74 {
  margin-left: 74px;
}

.sp-mgl-75 {
  margin-left: 75px;
}

.sp-mgl-76 {
  margin-left: 76px;
}

.sp-mgl-77 {
  margin-left: 77px;
}

.sp-mgl-78 {
  margin-left: 78px;
}

.sp-mgl-79 {
  margin-left: 79px;
}

.sp-mgl-80 {
  margin-left: 80px;
}

.sp-mgl-81 {
  margin-left: 81px;
}

.sp-mgl-82 {
  margin-left: 82px;
}

.sp-mgl-83 {
  margin-left: 83px;
}

.sp-mgl-84 {
  margin-left: 84px;
}

.sp-mgl-85 {
  margin-left: 85px;
}

.sp-mgl-86 {
  margin-left: 86px;
}

.sp-mgl-87 {
  margin-left: 87px;
}

.sp-mgl-88 {
  margin-left: 88px;
}

.sp-mgl-89 {
  margin-left: 89px;
}

.sp-mgl-90 {
  margin-left: 90px;
}

.sp-mgl-91 {
  margin-left: 91px;
}

.sp-mgl-92 {
  margin-left: 92px;
}

.sp-mgl-93 {
  margin-left: 93px;
}

.sp-mgl-94 {
  margin-left: 94px;
}

.sp-mgl-95 {
  margin-left: 95px;
}

.sp-mgl-96 {
  margin-left: 96px;
}

.sp-mgl-97 {
  margin-left: 97px;
}

.sp-mgl-98 {
  margin-left: 98px;
}

.sp-mgl-99 {
  margin-left: 99px;
}

.sp-mgl-100 {
  margin-left: 100px;
}

.sp-mgl-101 {
  margin-left: 101px;
}

.sp-mgl-102 {
  margin-left: 102px;
}

.sp-mgl-103 {
  margin-left: 103px;
}

.sp-mgl-104 {
  margin-left: 104px;
}

.sp-mgl-105 {
  margin-left: 105px;
}

.sp-mgl-106 {
  margin-left: 106px;
}

.sp-mgl-107 {
  margin-left: 107px;
}

.sp-mgl-108 {
  margin-left: 108px;
}

.sp-mgl-109 {
  margin-left: 109px;
}

.sp-mgl-110 {
  margin-left: 110px;
}

.sp-mgl-111 {
  margin-left: 111px;
}

.sp-mgl-112 {
  margin-left: 112px;
}

.sp-mgl-113 {
  margin-left: 113px;
}

.sp-mgl-114 {
  margin-left: 114px;
}

.sp-mgl-115 {
  margin-left: 115px;
}

.sp-mgl-116 {
  margin-left: 116px;
}

.sp-mgl-117 {
  margin-left: 117px;
}

.sp-mgl-118 {
  margin-left: 118px;
}

.sp-mgl-119 {
  margin-left: 119px;
}

.sp-mgl-120 {
  margin-left: 120px;
}

.sp-mgl-121 {
  margin-left: 121px;
}

.sp-mgl-122 {
  margin-left: 122px;
}

.sp-mgl-123 {
  margin-left: 123px;
}

.sp-mgl-124 {
  margin-left: 124px;
}

.sp-mgl-125 {
  margin-left: 125px;
}

.sp-mgl-126 {
  margin-left: 126px;
}

.sp-mgl-127 {
  margin-left: 127px;
}

.sp-mgl-128 {
  margin-left: 128px;
}

.sp-mgl-129 {
  margin-left: 129px;
}

.sp-mgl-130 {
  margin-left: 130px;
}

.sp-mgl-131 {
  margin-left: 131px;
}

.sp-mgl-132 {
  margin-left: 132px;
}

.sp-mgl-133 {
  margin-left: 133px;
}

.sp-mgl-134 {
  margin-left: 134px;
}

.sp-mgl-135 {
  margin-left: 135px;
}

.sp-mgl-136 {
  margin-left: 136px;
}

.sp-mgl-137 {
  margin-left: 137px;
}

.sp-mgl-138 {
  margin-left: 138px;
}

.sp-mgl-139 {
  margin-left: 139px;
}

.sp-mgl-140 {
  margin-left: 140px;
}

.sp-mgl-141 {
  margin-left: 141px;
}

.sp-mgl-142 {
  margin-left: 142px;
}

.sp-mgl-143 {
  margin-left: 143px;
}

.sp-mgl-144 {
  margin-left: 144px;
}

.sp-mgl-145 {
  margin-left: 145px;
}

.sp-mgl-146 {
  margin-left: 146px;
}

.sp-mgl-147 {
  margin-left: 147px;
}

.sp-mgl-148 {
  margin-left: 148px;
}

.sp-mgl-149 {
  margin-left: 149px;
}

.sp-mgl-150 {
  margin-left: 150px;
}

.sp-mgl-151 {
  margin-left: 151px;
}

.sp-mgl-152 {
  margin-left: 152px;
}

.sp-mgl-153 {
  margin-left: 153px;
}

.sp-mgl-154 {
  margin-left: 154px;
}

.sp-mgl-155 {
  margin-left: 155px;
}

.sp-mgl-156 {
  margin-left: 156px;
}

.sp-mgl-157 {
  margin-left: 157px;
}

.sp-mgl-158 {
  margin-left: 158px;
}

.sp-mgl-159 {
  margin-left: 159px;
}

.sp-mgl-160 {
  margin-left: 160px;
}

.sp-mgl-161 {
  margin-left: 161px;
}

.sp-mgl-162 {
  margin-left: 162px;
}

.sp-mgl-163 {
  margin-left: 163px;
}

.sp-mgl-164 {
  margin-left: 164px;
}

.sp-mgl-165 {
  margin-left: 165px;
}

.sp-mgl-166 {
  margin-left: 166px;
}

.sp-mgl-167 {
  margin-left: 167px;
}

.sp-mgl-168 {
  margin-left: 168px;
}

.sp-mgl-169 {
  margin-left: 169px;
}

.sp-mgl-170 {
  margin-left: 170px;
}

.sp-mgl-171 {
  margin-left: 171px;
}

.sp-mgl-172 {
  margin-left: 172px;
}

.sp-mgl-173 {
  margin-left: 173px;
}

.sp-mgl-174 {
  margin-left: 174px;
}

.sp-mgl-175 {
  margin-left: 175px;
}

.sp-mgl-176 {
  margin-left: 176px;
}

.sp-mgl-177 {
  margin-left: 177px;
}

.sp-mgl-178 {
  margin-left: 178px;
}

.sp-mgl-179 {
  margin-left: 179px;
}

.sp-mgl-180 {
  margin-left: 180px;
}

.sp-mgl-181 {
  margin-left: 181px;
}

.sp-mgl-182 {
  margin-left: 182px;
}

.sp-mgl-183 {
  margin-left: 183px;
}

.sp-mgl-184 {
  margin-left: 184px;
}

.sp-mgl-185 {
  margin-left: 185px;
}

.sp-mgl-186 {
  margin-left: 186px;
}

.sp-mgl-187 {
  margin-left: 187px;
}

.sp-mgl-188 {
  margin-left: 188px;
}

.sp-mgl-189 {
  margin-left: 189px;
}

.sp-mgl-190 {
  margin-left: 190px;
}

.sp-mgl-191 {
  margin-left: 191px;
}

.sp-mgl-192 {
  margin-left: 192px;
}

.sp-mgl-193 {
  margin-left: 193px;
}

.sp-mgl-194 {
  margin-left: 194px;
}

.sp-mgl-195 {
  margin-left: 195px;
}

.sp-mgl-196 {
  margin-left: 196px;
}

.sp-mgl-197 {
  margin-left: 197px;
}

.sp-mgl-198 {
  margin-left: 198px;
}

.sp-mgl-199 {
  margin-left: 199px;
}

.sp-mgl-200 {
  margin-left: 200px;
}

@media screen and (min-width: 768px) {
  .pc-mgt-0 {
    margin-top: 0px;
  }
  .pc-mgt-1 {
    margin-top: 1px;
  }
  .pc-mgt-2 {
    margin-top: 2px;
  }
  .pc-mgt-3 {
    margin-top: 3px;
  }
  .pc-mgt-4 {
    margin-top: 4px;
  }
  .pc-mgt-5 {
    margin-top: 5px;
  }
  .pc-mgt-6 {
    margin-top: 6px;
  }
  .pc-mgt-7 {
    margin-top: 7px;
  }
  .pc-mgt-8 {
    margin-top: 8px;
  }
  .pc-mgt-9 {
    margin-top: 9px;
  }
  .pc-mgt-10 {
    margin-top: 10px;
  }
  .pc-mgt-11 {
    margin-top: 11px;
  }
  .pc-mgt-12 {
    margin-top: 12px;
  }
  .pc-mgt-13 {
    margin-top: 13px;
  }
  .pc-mgt-14 {
    margin-top: 14px;
  }
  .pc-mgt-15 {
    margin-top: 15px;
  }
  .pc-mgt-16 {
    margin-top: 16px;
  }
  .pc-mgt-17 {
    margin-top: 17px;
  }
  .pc-mgt-18 {
    margin-top: 18px;
  }
  .pc-mgt-19 {
    margin-top: 19px;
  }
  .pc-mgt-20 {
    margin-top: 20px;
  }
  .pc-mgt-21 {
    margin-top: 21px;
  }
  .pc-mgt-22 {
    margin-top: 22px;
  }
  .pc-mgt-23 {
    margin-top: 23px;
  }
  .pc-mgt-24 {
    margin-top: 24px;
  }
  .pc-mgt-25 {
    margin-top: 25px;
  }
  .pc-mgt-26 {
    margin-top: 26px;
  }
  .pc-mgt-27 {
    margin-top: 27px;
  }
  .pc-mgt-28 {
    margin-top: 28px;
  }
  .pc-mgt-29 {
    margin-top: 29px;
  }
  .pc-mgt-30 {
    margin-top: 30px;
  }
  .pc-mgt-31 {
    margin-top: 31px;
  }
  .pc-mgt-32 {
    margin-top: 32px;
  }
  .pc-mgt-33 {
    margin-top: 33px;
  }
  .pc-mgt-34 {
    margin-top: 34px;
  }
  .pc-mgt-35 {
    margin-top: 35px;
  }
  .pc-mgt-36 {
    margin-top: 36px;
  }
  .pc-mgt-37 {
    margin-top: 37px;
  }
  .pc-mgt-38 {
    margin-top: 38px;
  }
  .pc-mgt-39 {
    margin-top: 39px;
  }
  .pc-mgt-40 {
    margin-top: 40px;
  }
  .pc-mgt-41 {
    margin-top: 41px;
  }
  .pc-mgt-42 {
    margin-top: 42px;
  }
  .pc-mgt-43 {
    margin-top: 43px;
  }
  .pc-mgt-44 {
    margin-top: 44px;
  }
  .pc-mgt-45 {
    margin-top: 45px;
  }
  .pc-mgt-46 {
    margin-top: 46px;
  }
  .pc-mgt-47 {
    margin-top: 47px;
  }
  .pc-mgt-48 {
    margin-top: 48px;
  }
  .pc-mgt-49 {
    margin-top: 49px;
  }
  .pc-mgt-50 {
    margin-top: 50px;
  }
  .pc-mgt-51 {
    margin-top: 51px;
  }
  .pc-mgt-52 {
    margin-top: 52px;
  }
  .pc-mgt-53 {
    margin-top: 53px;
  }
  .pc-mgt-54 {
    margin-top: 54px;
  }
  .pc-mgt-55 {
    margin-top: 55px;
  }
  .pc-mgt-56 {
    margin-top: 56px;
  }
  .pc-mgt-57 {
    margin-top: 57px;
  }
  .pc-mgt-58 {
    margin-top: 58px;
  }
  .pc-mgt-59 {
    margin-top: 59px;
  }
  .pc-mgt-60 {
    margin-top: 60px;
  }
  .pc-mgt-61 {
    margin-top: 61px;
  }
  .pc-mgt-62 {
    margin-top: 62px;
  }
  .pc-mgt-63 {
    margin-top: 63px;
  }
  .pc-mgt-64 {
    margin-top: 64px;
  }
  .pc-mgt-65 {
    margin-top: 65px;
  }
  .pc-mgt-66 {
    margin-top: 66px;
  }
  .pc-mgt-67 {
    margin-top: 67px;
  }
  .pc-mgt-68 {
    margin-top: 68px;
  }
  .pc-mgt-69 {
    margin-top: 69px;
  }
  .pc-mgt-70 {
    margin-top: 70px;
  }
  .pc-mgt-71 {
    margin-top: 71px;
  }
  .pc-mgt-72 {
    margin-top: 72px;
  }
  .pc-mgt-73 {
    margin-top: 73px;
  }
  .pc-mgt-74 {
    margin-top: 74px;
  }
  .pc-mgt-75 {
    margin-top: 75px;
  }
  .pc-mgt-76 {
    margin-top: 76px;
  }
  .pc-mgt-77 {
    margin-top: 77px;
  }
  .pc-mgt-78 {
    margin-top: 78px;
  }
  .pc-mgt-79 {
    margin-top: 79px;
  }
  .pc-mgt-80 {
    margin-top: 80px;
  }
  .pc-mgt-81 {
    margin-top: 81px;
  }
  .pc-mgt-82 {
    margin-top: 82px;
  }
  .pc-mgt-83 {
    margin-top: 83px;
  }
  .pc-mgt-84 {
    margin-top: 84px;
  }
  .pc-mgt-85 {
    margin-top: 85px;
  }
  .pc-mgt-86 {
    margin-top: 86px;
  }
  .pc-mgt-87 {
    margin-top: 87px;
  }
  .pc-mgt-88 {
    margin-top: 88px;
  }
  .pc-mgt-89 {
    margin-top: 89px;
  }
  .pc-mgt-90 {
    margin-top: 90px;
  }
  .pc-mgt-91 {
    margin-top: 91px;
  }
  .pc-mgt-92 {
    margin-top: 92px;
  }
  .pc-mgt-93 {
    margin-top: 93px;
  }
  .pc-mgt-94 {
    margin-top: 94px;
  }
  .pc-mgt-95 {
    margin-top: 95px;
  }
  .pc-mgt-96 {
    margin-top: 96px;
  }
  .pc-mgt-97 {
    margin-top: 97px;
  }
  .pc-mgt-98 {
    margin-top: 98px;
  }
  .pc-mgt-99 {
    margin-top: 99px;
  }
  .pc-mgt-100 {
    margin-top: 100px;
  }
  .pc-mgt-101 {
    margin-top: 101px;
  }
  .pc-mgt-102 {
    margin-top: 102px;
  }
  .pc-mgt-103 {
    margin-top: 103px;
  }
  .pc-mgt-104 {
    margin-top: 104px;
  }
  .pc-mgt-105 {
    margin-top: 105px;
  }
  .pc-mgt-106 {
    margin-top: 106px;
  }
  .pc-mgt-107 {
    margin-top: 107px;
  }
  .pc-mgt-108 {
    margin-top: 108px;
  }
  .pc-mgt-109 {
    margin-top: 109px;
  }
  .pc-mgt-110 {
    margin-top: 110px;
  }
  .pc-mgt-111 {
    margin-top: 111px;
  }
  .pc-mgt-112 {
    margin-top: 112px;
  }
  .pc-mgt-113 {
    margin-top: 113px;
  }
  .pc-mgt-114 {
    margin-top: 114px;
  }
  .pc-mgt-115 {
    margin-top: 115px;
  }
  .pc-mgt-116 {
    margin-top: 116px;
  }
  .pc-mgt-117 {
    margin-top: 117px;
  }
  .pc-mgt-118 {
    margin-top: 118px;
  }
  .pc-mgt-119 {
    margin-top: 119px;
  }
  .pc-mgt-120 {
    margin-top: 120px;
  }
  .pc-mgt-121 {
    margin-top: 121px;
  }
  .pc-mgt-122 {
    margin-top: 122px;
  }
  .pc-mgt-123 {
    margin-top: 123px;
  }
  .pc-mgt-124 {
    margin-top: 124px;
  }
  .pc-mgt-125 {
    margin-top: 125px;
  }
  .pc-mgt-126 {
    margin-top: 126px;
  }
  .pc-mgt-127 {
    margin-top: 127px;
  }
  .pc-mgt-128 {
    margin-top: 128px;
  }
  .pc-mgt-129 {
    margin-top: 129px;
  }
  .pc-mgt-130 {
    margin-top: 130px;
  }
  .pc-mgt-131 {
    margin-top: 131px;
  }
  .pc-mgt-132 {
    margin-top: 132px;
  }
  .pc-mgt-133 {
    margin-top: 133px;
  }
  .pc-mgt-134 {
    margin-top: 134px;
  }
  .pc-mgt-135 {
    margin-top: 135px;
  }
  .pc-mgt-136 {
    margin-top: 136px;
  }
  .pc-mgt-137 {
    margin-top: 137px;
  }
  .pc-mgt-138 {
    margin-top: 138px;
  }
  .pc-mgt-139 {
    margin-top: 139px;
  }
  .pc-mgt-140 {
    margin-top: 140px;
  }
  .pc-mgt-141 {
    margin-top: 141px;
  }
  .pc-mgt-142 {
    margin-top: 142px;
  }
  .pc-mgt-143 {
    margin-top: 143px;
  }
  .pc-mgt-144 {
    margin-top: 144px;
  }
  .pc-mgt-145 {
    margin-top: 145px;
  }
  .pc-mgt-146 {
    margin-top: 146px;
  }
  .pc-mgt-147 {
    margin-top: 147px;
  }
  .pc-mgt-148 {
    margin-top: 148px;
  }
  .pc-mgt-149 {
    margin-top: 149px;
  }
  .pc-mgt-150 {
    margin-top: 150px;
  }
  .pc-mgt-151 {
    margin-top: 151px;
  }
  .pc-mgt-152 {
    margin-top: 152px;
  }
  .pc-mgt-153 {
    margin-top: 153px;
  }
  .pc-mgt-154 {
    margin-top: 154px;
  }
  .pc-mgt-155 {
    margin-top: 155px;
  }
  .pc-mgt-156 {
    margin-top: 156px;
  }
  .pc-mgt-157 {
    margin-top: 157px;
  }
  .pc-mgt-158 {
    margin-top: 158px;
  }
  .pc-mgt-159 {
    margin-top: 159px;
  }
  .pc-mgt-160 {
    margin-top: 160px;
  }
  .pc-mgt-161 {
    margin-top: 161px;
  }
  .pc-mgt-162 {
    margin-top: 162px;
  }
  .pc-mgt-163 {
    margin-top: 163px;
  }
  .pc-mgt-164 {
    margin-top: 164px;
  }
  .pc-mgt-165 {
    margin-top: 165px;
  }
  .pc-mgt-166 {
    margin-top: 166px;
  }
  .pc-mgt-167 {
    margin-top: 167px;
  }
  .pc-mgt-168 {
    margin-top: 168px;
  }
  .pc-mgt-169 {
    margin-top: 169px;
  }
  .pc-mgt-170 {
    margin-top: 170px;
  }
  .pc-mgt-171 {
    margin-top: 171px;
  }
  .pc-mgt-172 {
    margin-top: 172px;
  }
  .pc-mgt-173 {
    margin-top: 173px;
  }
  .pc-mgt-174 {
    margin-top: 174px;
  }
  .pc-mgt-175 {
    margin-top: 175px;
  }
  .pc-mgt-176 {
    margin-top: 176px;
  }
  .pc-mgt-177 {
    margin-top: 177px;
  }
  .pc-mgt-178 {
    margin-top: 178px;
  }
  .pc-mgt-179 {
    margin-top: 179px;
  }
  .pc-mgt-180 {
    margin-top: 180px;
  }
  .pc-mgt-181 {
    margin-top: 181px;
  }
  .pc-mgt-182 {
    margin-top: 182px;
  }
  .pc-mgt-183 {
    margin-top: 183px;
  }
  .pc-mgt-184 {
    margin-top: 184px;
  }
  .pc-mgt-185 {
    margin-top: 185px;
  }
  .pc-mgt-186 {
    margin-top: 186px;
  }
  .pc-mgt-187 {
    margin-top: 187px;
  }
  .pc-mgt-188 {
    margin-top: 188px;
  }
  .pc-mgt-189 {
    margin-top: 189px;
  }
  .pc-mgt-190 {
    margin-top: 190px;
  }
  .pc-mgt-191 {
    margin-top: 191px;
  }
  .pc-mgt-192 {
    margin-top: 192px;
  }
  .pc-mgt-193 {
    margin-top: 193px;
  }
  .pc-mgt-194 {
    margin-top: 194px;
  }
  .pc-mgt-195 {
    margin-top: 195px;
  }
  .pc-mgt-196 {
    margin-top: 196px;
  }
  .pc-mgt-197 {
    margin-top: 197px;
  }
  .pc-mgt-198 {
    margin-top: 198px;
  }
  .pc-mgt-199 {
    margin-top: 199px;
  }
  .pc-mgt-200 {
    margin-top: 200px;
  }
  .pc-mgb-0 {
    margin-bottom: 0px;
  }
  .pc-mgb-1 {
    margin-bottom: 1px;
  }
  .pc-mgb-2 {
    margin-bottom: 2px;
  }
  .pc-mgb-3 {
    margin-bottom: 3px;
  }
  .pc-mgb-4 {
    margin-bottom: 4px;
  }
  .pc-mgb-5 {
    margin-bottom: 5px;
  }
  .pc-mgb-6 {
    margin-bottom: 6px;
  }
  .pc-mgb-7 {
    margin-bottom: 7px;
  }
  .pc-mgb-8 {
    margin-bottom: 8px;
  }
  .pc-mgb-9 {
    margin-bottom: 9px;
  }
  .pc-mgb-10 {
    margin-bottom: 10px;
  }
  .pc-mgb-11 {
    margin-bottom: 11px;
  }
  .pc-mgb-12 {
    margin-bottom: 12px;
  }
  .pc-mgb-13 {
    margin-bottom: 13px;
  }
  .pc-mgb-14 {
    margin-bottom: 14px;
  }
  .pc-mgb-15 {
    margin-bottom: 15px;
  }
  .pc-mgb-16 {
    margin-bottom: 16px;
  }
  .pc-mgb-17 {
    margin-bottom: 17px;
  }
  .pc-mgb-18 {
    margin-bottom: 18px;
  }
  .pc-mgb-19 {
    margin-bottom: 19px;
  }
  .pc-mgb-20 {
    margin-bottom: 20px;
  }
  .pc-mgb-21 {
    margin-bottom: 21px;
  }
  .pc-mgb-22 {
    margin-bottom: 22px;
  }
  .pc-mgb-23 {
    margin-bottom: 23px;
  }
  .pc-mgb-24 {
    margin-bottom: 24px;
  }
  .pc-mgb-25 {
    margin-bottom: 25px;
  }
  .pc-mgb-26 {
    margin-bottom: 26px;
  }
  .pc-mgb-27 {
    margin-bottom: 27px;
  }
  .pc-mgb-28 {
    margin-bottom: 28px;
  }
  .pc-mgb-29 {
    margin-bottom: 29px;
  }
  .pc-mgb-30 {
    margin-bottom: 30px;
  }
  .pc-mgb-31 {
    margin-bottom: 31px;
  }
  .pc-mgb-32 {
    margin-bottom: 32px;
  }
  .pc-mgb-33 {
    margin-bottom: 33px;
  }
  .pc-mgb-34 {
    margin-bottom: 34px;
  }
  .pc-mgb-35 {
    margin-bottom: 35px;
  }
  .pc-mgb-36 {
    margin-bottom: 36px;
  }
  .pc-mgb-37 {
    margin-bottom: 37px;
  }
  .pc-mgb-38 {
    margin-bottom: 38px;
  }
  .pc-mgb-39 {
    margin-bottom: 39px;
  }
  .pc-mgb-40 {
    margin-bottom: 40px;
  }
  .pc-mgb-41 {
    margin-bottom: 41px;
  }
  .pc-mgb-42 {
    margin-bottom: 42px;
  }
  .pc-mgb-43 {
    margin-bottom: 43px;
  }
  .pc-mgb-44 {
    margin-bottom: 44px;
  }
  .pc-mgb-45 {
    margin-bottom: 45px;
  }
  .pc-mgb-46 {
    margin-bottom: 46px;
  }
  .pc-mgb-47 {
    margin-bottom: 47px;
  }
  .pc-mgb-48 {
    margin-bottom: 48px;
  }
  .pc-mgb-49 {
    margin-bottom: 49px;
  }
  .pc-mgb-50 {
    margin-bottom: 50px;
  }
  .pc-mgb-51 {
    margin-bottom: 51px;
  }
  .pc-mgb-52 {
    margin-bottom: 52px;
  }
  .pc-mgb-53 {
    margin-bottom: 53px;
  }
  .pc-mgb-54 {
    margin-bottom: 54px;
  }
  .pc-mgb-55 {
    margin-bottom: 55px;
  }
  .pc-mgb-56 {
    margin-bottom: 56px;
  }
  .pc-mgb-57 {
    margin-bottom: 57px;
  }
  .pc-mgb-58 {
    margin-bottom: 58px;
  }
  .pc-mgb-59 {
    margin-bottom: 59px;
  }
  .pc-mgb-60 {
    margin-bottom: 60px;
  }
  .pc-mgb-61 {
    margin-bottom: 61px;
  }
  .pc-mgb-62 {
    margin-bottom: 62px;
  }
  .pc-mgb-63 {
    margin-bottom: 63px;
  }
  .pc-mgb-64 {
    margin-bottom: 64px;
  }
  .pc-mgb-65 {
    margin-bottom: 65px;
  }
  .pc-mgb-66 {
    margin-bottom: 66px;
  }
  .pc-mgb-67 {
    margin-bottom: 67px;
  }
  .pc-mgb-68 {
    margin-bottom: 68px;
  }
  .pc-mgb-69 {
    margin-bottom: 69px;
  }
  .pc-mgb-70 {
    margin-bottom: 70px;
  }
  .pc-mgb-71 {
    margin-bottom: 71px;
  }
  .pc-mgb-72 {
    margin-bottom: 72px;
  }
  .pc-mgb-73 {
    margin-bottom: 73px;
  }
  .pc-mgb-74 {
    margin-bottom: 74px;
  }
  .pc-mgb-75 {
    margin-bottom: 75px;
  }
  .pc-mgb-76 {
    margin-bottom: 76px;
  }
  .pc-mgb-77 {
    margin-bottom: 77px;
  }
  .pc-mgb-78 {
    margin-bottom: 78px;
  }
  .pc-mgb-79 {
    margin-bottom: 79px;
  }
  .pc-mgb-80 {
    margin-bottom: 80px;
  }
  .pc-mgb-81 {
    margin-bottom: 81px;
  }
  .pc-mgb-82 {
    margin-bottom: 82px;
  }
  .pc-mgb-83 {
    margin-bottom: 83px;
  }
  .pc-mgb-84 {
    margin-bottom: 84px;
  }
  .pc-mgb-85 {
    margin-bottom: 85px;
  }
  .pc-mgb-86 {
    margin-bottom: 86px;
  }
  .pc-mgb-87 {
    margin-bottom: 87px;
  }
  .pc-mgb-88 {
    margin-bottom: 88px;
  }
  .pc-mgb-89 {
    margin-bottom: 89px;
  }
  .pc-mgb-90 {
    margin-bottom: 90px;
  }
  .pc-mgb-91 {
    margin-bottom: 91px;
  }
  .pc-mgb-92 {
    margin-bottom: 92px;
  }
  .pc-mgb-93 {
    margin-bottom: 93px;
  }
  .pc-mgb-94 {
    margin-bottom: 94px;
  }
  .pc-mgb-95 {
    margin-bottom: 95px;
  }
  .pc-mgb-96 {
    margin-bottom: 96px;
  }
  .pc-mgb-97 {
    margin-bottom: 97px;
  }
  .pc-mgb-98 {
    margin-bottom: 98px;
  }
  .pc-mgb-99 {
    margin-bottom: 99px;
  }
  .pc-mgb-100 {
    margin-bottom: 100px;
  }
  .pc-mgb-101 {
    margin-bottom: 101px;
  }
  .pc-mgb-102 {
    margin-bottom: 102px;
  }
  .pc-mgb-103 {
    margin-bottom: 103px;
  }
  .pc-mgb-104 {
    margin-bottom: 104px;
  }
  .pc-mgb-105 {
    margin-bottom: 105px;
  }
  .pc-mgb-106 {
    margin-bottom: 106px;
  }
  .pc-mgb-107 {
    margin-bottom: 107px;
  }
  .pc-mgb-108 {
    margin-bottom: 108px;
  }
  .pc-mgb-109 {
    margin-bottom: 109px;
  }
  .pc-mgb-110 {
    margin-bottom: 110px;
  }
  .pc-mgb-111 {
    margin-bottom: 111px;
  }
  .pc-mgb-112 {
    margin-bottom: 112px;
  }
  .pc-mgb-113 {
    margin-bottom: 113px;
  }
  .pc-mgb-114 {
    margin-bottom: 114px;
  }
  .pc-mgb-115 {
    margin-bottom: 115px;
  }
  .pc-mgb-116 {
    margin-bottom: 116px;
  }
  .pc-mgb-117 {
    margin-bottom: 117px;
  }
  .pc-mgb-118 {
    margin-bottom: 118px;
  }
  .pc-mgb-119 {
    margin-bottom: 119px;
  }
  .pc-mgb-120 {
    margin-bottom: 120px;
  }
  .pc-mgb-121 {
    margin-bottom: 121px;
  }
  .pc-mgb-122 {
    margin-bottom: 122px;
  }
  .pc-mgb-123 {
    margin-bottom: 123px;
  }
  .pc-mgb-124 {
    margin-bottom: 124px;
  }
  .pc-mgb-125 {
    margin-bottom: 125px;
  }
  .pc-mgb-126 {
    margin-bottom: 126px;
  }
  .pc-mgb-127 {
    margin-bottom: 127px;
  }
  .pc-mgb-128 {
    margin-bottom: 128px;
  }
  .pc-mgb-129 {
    margin-bottom: 129px;
  }
  .pc-mgb-130 {
    margin-bottom: 130px;
  }
  .pc-mgb-131 {
    margin-bottom: 131px;
  }
  .pc-mgb-132 {
    margin-bottom: 132px;
  }
  .pc-mgb-133 {
    margin-bottom: 133px;
  }
  .pc-mgb-134 {
    margin-bottom: 134px;
  }
  .pc-mgb-135 {
    margin-bottom: 135px;
  }
  .pc-mgb-136 {
    margin-bottom: 136px;
  }
  .pc-mgb-137 {
    margin-bottom: 137px;
  }
  .pc-mgb-138 {
    margin-bottom: 138px;
  }
  .pc-mgb-139 {
    margin-bottom: 139px;
  }
  .pc-mgb-140 {
    margin-bottom: 140px;
  }
  .pc-mgb-141 {
    margin-bottom: 141px;
  }
  .pc-mgb-142 {
    margin-bottom: 142px;
  }
  .pc-mgb-143 {
    margin-bottom: 143px;
  }
  .pc-mgb-144 {
    margin-bottom: 144px;
  }
  .pc-mgb-145 {
    margin-bottom: 145px;
  }
  .pc-mgb-146 {
    margin-bottom: 146px;
  }
  .pc-mgb-147 {
    margin-bottom: 147px;
  }
  .pc-mgb-148 {
    margin-bottom: 148px;
  }
  .pc-mgb-149 {
    margin-bottom: 149px;
  }
  .pc-mgb-150 {
    margin-bottom: 150px;
  }
  .pc-mgb-151 {
    margin-bottom: 151px;
  }
  .pc-mgb-152 {
    margin-bottom: 152px;
  }
  .pc-mgb-153 {
    margin-bottom: 153px;
  }
  .pc-mgb-154 {
    margin-bottom: 154px;
  }
  .pc-mgb-155 {
    margin-bottom: 155px;
  }
  .pc-mgb-156 {
    margin-bottom: 156px;
  }
  .pc-mgb-157 {
    margin-bottom: 157px;
  }
  .pc-mgb-158 {
    margin-bottom: 158px;
  }
  .pc-mgb-159 {
    margin-bottom: 159px;
  }
  .pc-mgb-160 {
    margin-bottom: 160px;
  }
  .pc-mgb-161 {
    margin-bottom: 161px;
  }
  .pc-mgb-162 {
    margin-bottom: 162px;
  }
  .pc-mgb-163 {
    margin-bottom: 163px;
  }
  .pc-mgb-164 {
    margin-bottom: 164px;
  }
  .pc-mgb-165 {
    margin-bottom: 165px;
  }
  .pc-mgb-166 {
    margin-bottom: 166px;
  }
  .pc-mgb-167 {
    margin-bottom: 167px;
  }
  .pc-mgb-168 {
    margin-bottom: 168px;
  }
  .pc-mgb-169 {
    margin-bottom: 169px;
  }
  .pc-mgb-170 {
    margin-bottom: 170px;
  }
  .pc-mgb-171 {
    margin-bottom: 171px;
  }
  .pc-mgb-172 {
    margin-bottom: 172px;
  }
  .pc-mgb-173 {
    margin-bottom: 173px;
  }
  .pc-mgb-174 {
    margin-bottom: 174px;
  }
  .pc-mgb-175 {
    margin-bottom: 175px;
  }
  .pc-mgb-176 {
    margin-bottom: 176px;
  }
  .pc-mgb-177 {
    margin-bottom: 177px;
  }
  .pc-mgb-178 {
    margin-bottom: 178px;
  }
  .pc-mgb-179 {
    margin-bottom: 179px;
  }
  .pc-mgb-180 {
    margin-bottom: 180px;
  }
  .pc-mgb-181 {
    margin-bottom: 181px;
  }
  .pc-mgb-182 {
    margin-bottom: 182px;
  }
  .pc-mgb-183 {
    margin-bottom: 183px;
  }
  .pc-mgb-184 {
    margin-bottom: 184px;
  }
  .pc-mgb-185 {
    margin-bottom: 185px;
  }
  .pc-mgb-186 {
    margin-bottom: 186px;
  }
  .pc-mgb-187 {
    margin-bottom: 187px;
  }
  .pc-mgb-188 {
    margin-bottom: 188px;
  }
  .pc-mgb-189 {
    margin-bottom: 189px;
  }
  .pc-mgb-190 {
    margin-bottom: 190px;
  }
  .pc-mgb-191 {
    margin-bottom: 191px;
  }
  .pc-mgb-192 {
    margin-bottom: 192px;
  }
  .pc-mgb-193 {
    margin-bottom: 193px;
  }
  .pc-mgb-194 {
    margin-bottom: 194px;
  }
  .pc-mgb-195 {
    margin-bottom: 195px;
  }
  .pc-mgb-196 {
    margin-bottom: 196px;
  }
  .pc-mgb-197 {
    margin-bottom: 197px;
  }
  .pc-mgb-198 {
    margin-bottom: 198px;
  }
  .pc-mgb-199 {
    margin-bottom: 199px;
  }
  .pc-mgb-200 {
    margin-bottom: 200px;
  }
  .pc-mgr-0 {
    margin-right: 0px;
  }
  .pc-mgr-1 {
    margin-right: 1px;
  }
  .pc-mgr-2 {
    margin-right: 2px;
  }
  .pc-mgr-3 {
    margin-right: 3px;
  }
  .pc-mgr-4 {
    margin-right: 4px;
  }
  .pc-mgr-5 {
    margin-right: 5px;
  }
  .pc-mgr-6 {
    margin-right: 6px;
  }
  .pc-mgr-7 {
    margin-right: 7px;
  }
  .pc-mgr-8 {
    margin-right: 8px;
  }
  .pc-mgr-9 {
    margin-right: 9px;
  }
  .pc-mgr-10 {
    margin-right: 10px;
  }
  .pc-mgr-11 {
    margin-right: 11px;
  }
  .pc-mgr-12 {
    margin-right: 12px;
  }
  .pc-mgr-13 {
    margin-right: 13px;
  }
  .pc-mgr-14 {
    margin-right: 14px;
  }
  .pc-mgr-15 {
    margin-right: 15px;
  }
  .pc-mgr-16 {
    margin-right: 16px;
  }
  .pc-mgr-17 {
    margin-right: 17px;
  }
  .pc-mgr-18 {
    margin-right: 18px;
  }
  .pc-mgr-19 {
    margin-right: 19px;
  }
  .pc-mgr-20 {
    margin-right: 20px;
  }
  .pc-mgr-21 {
    margin-right: 21px;
  }
  .pc-mgr-22 {
    margin-right: 22px;
  }
  .pc-mgr-23 {
    margin-right: 23px;
  }
  .pc-mgr-24 {
    margin-right: 24px;
  }
  .pc-mgr-25 {
    margin-right: 25px;
  }
  .pc-mgr-26 {
    margin-right: 26px;
  }
  .pc-mgr-27 {
    margin-right: 27px;
  }
  .pc-mgr-28 {
    margin-right: 28px;
  }
  .pc-mgr-29 {
    margin-right: 29px;
  }
  .pc-mgr-30 {
    margin-right: 30px;
  }
  .pc-mgr-31 {
    margin-right: 31px;
  }
  .pc-mgr-32 {
    margin-right: 32px;
  }
  .pc-mgr-33 {
    margin-right: 33px;
  }
  .pc-mgr-34 {
    margin-right: 34px;
  }
  .pc-mgr-35 {
    margin-right: 35px;
  }
  .pc-mgr-36 {
    margin-right: 36px;
  }
  .pc-mgr-37 {
    margin-right: 37px;
  }
  .pc-mgr-38 {
    margin-right: 38px;
  }
  .pc-mgr-39 {
    margin-right: 39px;
  }
  .pc-mgr-40 {
    margin-right: 40px;
  }
  .pc-mgr-41 {
    margin-right: 41px;
  }
  .pc-mgr-42 {
    margin-right: 42px;
  }
  .pc-mgr-43 {
    margin-right: 43px;
  }
  .pc-mgr-44 {
    margin-right: 44px;
  }
  .pc-mgr-45 {
    margin-right: 45px;
  }
  .pc-mgr-46 {
    margin-right: 46px;
  }
  .pc-mgr-47 {
    margin-right: 47px;
  }
  .pc-mgr-48 {
    margin-right: 48px;
  }
  .pc-mgr-49 {
    margin-right: 49px;
  }
  .pc-mgr-50 {
    margin-right: 50px;
  }
  .pc-mgr-51 {
    margin-right: 51px;
  }
  .pc-mgr-52 {
    margin-right: 52px;
  }
  .pc-mgr-53 {
    margin-right: 53px;
  }
  .pc-mgr-54 {
    margin-right: 54px;
  }
  .pc-mgr-55 {
    margin-right: 55px;
  }
  .pc-mgr-56 {
    margin-right: 56px;
  }
  .pc-mgr-57 {
    margin-right: 57px;
  }
  .pc-mgr-58 {
    margin-right: 58px;
  }
  .pc-mgr-59 {
    margin-right: 59px;
  }
  .pc-mgr-60 {
    margin-right: 60px;
  }
  .pc-mgr-61 {
    margin-right: 61px;
  }
  .pc-mgr-62 {
    margin-right: 62px;
  }
  .pc-mgr-63 {
    margin-right: 63px;
  }
  .pc-mgr-64 {
    margin-right: 64px;
  }
  .pc-mgr-65 {
    margin-right: 65px;
  }
  .pc-mgr-66 {
    margin-right: 66px;
  }
  .pc-mgr-67 {
    margin-right: 67px;
  }
  .pc-mgr-68 {
    margin-right: 68px;
  }
  .pc-mgr-69 {
    margin-right: 69px;
  }
  .pc-mgr-70 {
    margin-right: 70px;
  }
  .pc-mgr-71 {
    margin-right: 71px;
  }
  .pc-mgr-72 {
    margin-right: 72px;
  }
  .pc-mgr-73 {
    margin-right: 73px;
  }
  .pc-mgr-74 {
    margin-right: 74px;
  }
  .pc-mgr-75 {
    margin-right: 75px;
  }
  .pc-mgr-76 {
    margin-right: 76px;
  }
  .pc-mgr-77 {
    margin-right: 77px;
  }
  .pc-mgr-78 {
    margin-right: 78px;
  }
  .pc-mgr-79 {
    margin-right: 79px;
  }
  .pc-mgr-80 {
    margin-right: 80px;
  }
  .pc-mgr-81 {
    margin-right: 81px;
  }
  .pc-mgr-82 {
    margin-right: 82px;
  }
  .pc-mgr-83 {
    margin-right: 83px;
  }
  .pc-mgr-84 {
    margin-right: 84px;
  }
  .pc-mgr-85 {
    margin-right: 85px;
  }
  .pc-mgr-86 {
    margin-right: 86px;
  }
  .pc-mgr-87 {
    margin-right: 87px;
  }
  .pc-mgr-88 {
    margin-right: 88px;
  }
  .pc-mgr-89 {
    margin-right: 89px;
  }
  .pc-mgr-90 {
    margin-right: 90px;
  }
  .pc-mgr-91 {
    margin-right: 91px;
  }
  .pc-mgr-92 {
    margin-right: 92px;
  }
  .pc-mgr-93 {
    margin-right: 93px;
  }
  .pc-mgr-94 {
    margin-right: 94px;
  }
  .pc-mgr-95 {
    margin-right: 95px;
  }
  .pc-mgr-96 {
    margin-right: 96px;
  }
  .pc-mgr-97 {
    margin-right: 97px;
  }
  .pc-mgr-98 {
    margin-right: 98px;
  }
  .pc-mgr-99 {
    margin-right: 99px;
  }
  .pc-mgr-100 {
    margin-right: 100px;
  }
  .pc-mgr-101 {
    margin-right: 101px;
  }
  .pc-mgr-102 {
    margin-right: 102px;
  }
  .pc-mgr-103 {
    margin-right: 103px;
  }
  .pc-mgr-104 {
    margin-right: 104px;
  }
  .pc-mgr-105 {
    margin-right: 105px;
  }
  .pc-mgr-106 {
    margin-right: 106px;
  }
  .pc-mgr-107 {
    margin-right: 107px;
  }
  .pc-mgr-108 {
    margin-right: 108px;
  }
  .pc-mgr-109 {
    margin-right: 109px;
  }
  .pc-mgr-110 {
    margin-right: 110px;
  }
  .pc-mgr-111 {
    margin-right: 111px;
  }
  .pc-mgr-112 {
    margin-right: 112px;
  }
  .pc-mgr-113 {
    margin-right: 113px;
  }
  .pc-mgr-114 {
    margin-right: 114px;
  }
  .pc-mgr-115 {
    margin-right: 115px;
  }
  .pc-mgr-116 {
    margin-right: 116px;
  }
  .pc-mgr-117 {
    margin-right: 117px;
  }
  .pc-mgr-118 {
    margin-right: 118px;
  }
  .pc-mgr-119 {
    margin-right: 119px;
  }
  .pc-mgr-120 {
    margin-right: 120px;
  }
  .pc-mgr-121 {
    margin-right: 121px;
  }
  .pc-mgr-122 {
    margin-right: 122px;
  }
  .pc-mgr-123 {
    margin-right: 123px;
  }
  .pc-mgr-124 {
    margin-right: 124px;
  }
  .pc-mgr-125 {
    margin-right: 125px;
  }
  .pc-mgr-126 {
    margin-right: 126px;
  }
  .pc-mgr-127 {
    margin-right: 127px;
  }
  .pc-mgr-128 {
    margin-right: 128px;
  }
  .pc-mgr-129 {
    margin-right: 129px;
  }
  .pc-mgr-130 {
    margin-right: 130px;
  }
  .pc-mgr-131 {
    margin-right: 131px;
  }
  .pc-mgr-132 {
    margin-right: 132px;
  }
  .pc-mgr-133 {
    margin-right: 133px;
  }
  .pc-mgr-134 {
    margin-right: 134px;
  }
  .pc-mgr-135 {
    margin-right: 135px;
  }
  .pc-mgr-136 {
    margin-right: 136px;
  }
  .pc-mgr-137 {
    margin-right: 137px;
  }
  .pc-mgr-138 {
    margin-right: 138px;
  }
  .pc-mgr-139 {
    margin-right: 139px;
  }
  .pc-mgr-140 {
    margin-right: 140px;
  }
  .pc-mgr-141 {
    margin-right: 141px;
  }
  .pc-mgr-142 {
    margin-right: 142px;
  }
  .pc-mgr-143 {
    margin-right: 143px;
  }
  .pc-mgr-144 {
    margin-right: 144px;
  }
  .pc-mgr-145 {
    margin-right: 145px;
  }
  .pc-mgr-146 {
    margin-right: 146px;
  }
  .pc-mgr-147 {
    margin-right: 147px;
  }
  .pc-mgr-148 {
    margin-right: 148px;
  }
  .pc-mgr-149 {
    margin-right: 149px;
  }
  .pc-mgr-150 {
    margin-right: 150px;
  }
  .pc-mgr-151 {
    margin-right: 151px;
  }
  .pc-mgr-152 {
    margin-right: 152px;
  }
  .pc-mgr-153 {
    margin-right: 153px;
  }
  .pc-mgr-154 {
    margin-right: 154px;
  }
  .pc-mgr-155 {
    margin-right: 155px;
  }
  .pc-mgr-156 {
    margin-right: 156px;
  }
  .pc-mgr-157 {
    margin-right: 157px;
  }
  .pc-mgr-158 {
    margin-right: 158px;
  }
  .pc-mgr-159 {
    margin-right: 159px;
  }
  .pc-mgr-160 {
    margin-right: 160px;
  }
  .pc-mgr-161 {
    margin-right: 161px;
  }
  .pc-mgr-162 {
    margin-right: 162px;
  }
  .pc-mgr-163 {
    margin-right: 163px;
  }
  .pc-mgr-164 {
    margin-right: 164px;
  }
  .pc-mgr-165 {
    margin-right: 165px;
  }
  .pc-mgr-166 {
    margin-right: 166px;
  }
  .pc-mgr-167 {
    margin-right: 167px;
  }
  .pc-mgr-168 {
    margin-right: 168px;
  }
  .pc-mgr-169 {
    margin-right: 169px;
  }
  .pc-mgr-170 {
    margin-right: 170px;
  }
  .pc-mgr-171 {
    margin-right: 171px;
  }
  .pc-mgr-172 {
    margin-right: 172px;
  }
  .pc-mgr-173 {
    margin-right: 173px;
  }
  .pc-mgr-174 {
    margin-right: 174px;
  }
  .pc-mgr-175 {
    margin-right: 175px;
  }
  .pc-mgr-176 {
    margin-right: 176px;
  }
  .pc-mgr-177 {
    margin-right: 177px;
  }
  .pc-mgr-178 {
    margin-right: 178px;
  }
  .pc-mgr-179 {
    margin-right: 179px;
  }
  .pc-mgr-180 {
    margin-right: 180px;
  }
  .pc-mgr-181 {
    margin-right: 181px;
  }
  .pc-mgr-182 {
    margin-right: 182px;
  }
  .pc-mgr-183 {
    margin-right: 183px;
  }
  .pc-mgr-184 {
    margin-right: 184px;
  }
  .pc-mgr-185 {
    margin-right: 185px;
  }
  .pc-mgr-186 {
    margin-right: 186px;
  }
  .pc-mgr-187 {
    margin-right: 187px;
  }
  .pc-mgr-188 {
    margin-right: 188px;
  }
  .pc-mgr-189 {
    margin-right: 189px;
  }
  .pc-mgr-190 {
    margin-right: 190px;
  }
  .pc-mgr-191 {
    margin-right: 191px;
  }
  .pc-mgr-192 {
    margin-right: 192px;
  }
  .pc-mgr-193 {
    margin-right: 193px;
  }
  .pc-mgr-194 {
    margin-right: 194px;
  }
  .pc-mgr-195 {
    margin-right: 195px;
  }
  .pc-mgr-196 {
    margin-right: 196px;
  }
  .pc-mgr-197 {
    margin-right: 197px;
  }
  .pc-mgr-198 {
    margin-right: 198px;
  }
  .pc-mgr-199 {
    margin-right: 199px;
  }
  .pc-mgr-200 {
    margin-right: 200px;
  }
  .pc-mgl-0 {
    margin-left: 0px;
  }
  .pc-mgl-1 {
    margin-left: 1px;
  }
  .pc-mgl-2 {
    margin-left: 2px;
  }
  .pc-mgl-3 {
    margin-left: 3px;
  }
  .pc-mgl-4 {
    margin-left: 4px;
  }
  .pc-mgl-5 {
    margin-left: 5px;
  }
  .pc-mgl-6 {
    margin-left: 6px;
  }
  .pc-mgl-7 {
    margin-left: 7px;
  }
  .pc-mgl-8 {
    margin-left: 8px;
  }
  .pc-mgl-9 {
    margin-left: 9px;
  }
  .pc-mgl-10 {
    margin-left: 10px;
  }
  .pc-mgl-11 {
    margin-left: 11px;
  }
  .pc-mgl-12 {
    margin-left: 12px;
  }
  .pc-mgl-13 {
    margin-left: 13px;
  }
  .pc-mgl-14 {
    margin-left: 14px;
  }
  .pc-mgl-15 {
    margin-left: 15px;
  }
  .pc-mgl-16 {
    margin-left: 16px;
  }
  .pc-mgl-17 {
    margin-left: 17px;
  }
  .pc-mgl-18 {
    margin-left: 18px;
  }
  .pc-mgl-19 {
    margin-left: 19px;
  }
  .pc-mgl-20 {
    margin-left: 20px;
  }
  .pc-mgl-21 {
    margin-left: 21px;
  }
  .pc-mgl-22 {
    margin-left: 22px;
  }
  .pc-mgl-23 {
    margin-left: 23px;
  }
  .pc-mgl-24 {
    margin-left: 24px;
  }
  .pc-mgl-25 {
    margin-left: 25px;
  }
  .pc-mgl-26 {
    margin-left: 26px;
  }
  .pc-mgl-27 {
    margin-left: 27px;
  }
  .pc-mgl-28 {
    margin-left: 28px;
  }
  .pc-mgl-29 {
    margin-left: 29px;
  }
  .pc-mgl-30 {
    margin-left: 30px;
  }
  .pc-mgl-31 {
    margin-left: 31px;
  }
  .pc-mgl-32 {
    margin-left: 32px;
  }
  .pc-mgl-33 {
    margin-left: 33px;
  }
  .pc-mgl-34 {
    margin-left: 34px;
  }
  .pc-mgl-35 {
    margin-left: 35px;
  }
  .pc-mgl-36 {
    margin-left: 36px;
  }
  .pc-mgl-37 {
    margin-left: 37px;
  }
  .pc-mgl-38 {
    margin-left: 38px;
  }
  .pc-mgl-39 {
    margin-left: 39px;
  }
  .pc-mgl-40 {
    margin-left: 40px;
  }
  .pc-mgl-41 {
    margin-left: 41px;
  }
  .pc-mgl-42 {
    margin-left: 42px;
  }
  .pc-mgl-43 {
    margin-left: 43px;
  }
  .pc-mgl-44 {
    margin-left: 44px;
  }
  .pc-mgl-45 {
    margin-left: 45px;
  }
  .pc-mgl-46 {
    margin-left: 46px;
  }
  .pc-mgl-47 {
    margin-left: 47px;
  }
  .pc-mgl-48 {
    margin-left: 48px;
  }
  .pc-mgl-49 {
    margin-left: 49px;
  }
  .pc-mgl-50 {
    margin-left: 50px;
  }
  .pc-mgl-51 {
    margin-left: 51px;
  }
  .pc-mgl-52 {
    margin-left: 52px;
  }
  .pc-mgl-53 {
    margin-left: 53px;
  }
  .pc-mgl-54 {
    margin-left: 54px;
  }
  .pc-mgl-55 {
    margin-left: 55px;
  }
  .pc-mgl-56 {
    margin-left: 56px;
  }
  .pc-mgl-57 {
    margin-left: 57px;
  }
  .pc-mgl-58 {
    margin-left: 58px;
  }
  .pc-mgl-59 {
    margin-left: 59px;
  }
  .pc-mgl-60 {
    margin-left: 60px;
  }
  .pc-mgl-61 {
    margin-left: 61px;
  }
  .pc-mgl-62 {
    margin-left: 62px;
  }
  .pc-mgl-63 {
    margin-left: 63px;
  }
  .pc-mgl-64 {
    margin-left: 64px;
  }
  .pc-mgl-65 {
    margin-left: 65px;
  }
  .pc-mgl-66 {
    margin-left: 66px;
  }
  .pc-mgl-67 {
    margin-left: 67px;
  }
  .pc-mgl-68 {
    margin-left: 68px;
  }
  .pc-mgl-69 {
    margin-left: 69px;
  }
  .pc-mgl-70 {
    margin-left: 70px;
  }
  .pc-mgl-71 {
    margin-left: 71px;
  }
  .pc-mgl-72 {
    margin-left: 72px;
  }
  .pc-mgl-73 {
    margin-left: 73px;
  }
  .pc-mgl-74 {
    margin-left: 74px;
  }
  .pc-mgl-75 {
    margin-left: 75px;
  }
  .pc-mgl-76 {
    margin-left: 76px;
  }
  .pc-mgl-77 {
    margin-left: 77px;
  }
  .pc-mgl-78 {
    margin-left: 78px;
  }
  .pc-mgl-79 {
    margin-left: 79px;
  }
  .pc-mgl-80 {
    margin-left: 80px;
  }
  .pc-mgl-81 {
    margin-left: 81px;
  }
  .pc-mgl-82 {
    margin-left: 82px;
  }
  .pc-mgl-83 {
    margin-left: 83px;
  }
  .pc-mgl-84 {
    margin-left: 84px;
  }
  .pc-mgl-85 {
    margin-left: 85px;
  }
  .pc-mgl-86 {
    margin-left: 86px;
  }
  .pc-mgl-87 {
    margin-left: 87px;
  }
  .pc-mgl-88 {
    margin-left: 88px;
  }
  .pc-mgl-89 {
    margin-left: 89px;
  }
  .pc-mgl-90 {
    margin-left: 90px;
  }
  .pc-mgl-91 {
    margin-left: 91px;
  }
  .pc-mgl-92 {
    margin-left: 92px;
  }
  .pc-mgl-93 {
    margin-left: 93px;
  }
  .pc-mgl-94 {
    margin-left: 94px;
  }
  .pc-mgl-95 {
    margin-left: 95px;
  }
  .pc-mgl-96 {
    margin-left: 96px;
  }
  .pc-mgl-97 {
    margin-left: 97px;
  }
  .pc-mgl-98 {
    margin-left: 98px;
  }
  .pc-mgl-99 {
    margin-left: 99px;
  }
  .pc-mgl-100 {
    margin-left: 100px;
  }
  .pc-mgl-101 {
    margin-left: 101px;
  }
  .pc-mgl-102 {
    margin-left: 102px;
  }
  .pc-mgl-103 {
    margin-left: 103px;
  }
  .pc-mgl-104 {
    margin-left: 104px;
  }
  .pc-mgl-105 {
    margin-left: 105px;
  }
  .pc-mgl-106 {
    margin-left: 106px;
  }
  .pc-mgl-107 {
    margin-left: 107px;
  }
  .pc-mgl-108 {
    margin-left: 108px;
  }
  .pc-mgl-109 {
    margin-left: 109px;
  }
  .pc-mgl-110 {
    margin-left: 110px;
  }
  .pc-mgl-111 {
    margin-left: 111px;
  }
  .pc-mgl-112 {
    margin-left: 112px;
  }
  .pc-mgl-113 {
    margin-left: 113px;
  }
  .pc-mgl-114 {
    margin-left: 114px;
  }
  .pc-mgl-115 {
    margin-left: 115px;
  }
  .pc-mgl-116 {
    margin-left: 116px;
  }
  .pc-mgl-117 {
    margin-left: 117px;
  }
  .pc-mgl-118 {
    margin-left: 118px;
  }
  .pc-mgl-119 {
    margin-left: 119px;
  }
  .pc-mgl-120 {
    margin-left: 120px;
  }
  .pc-mgl-121 {
    margin-left: 121px;
  }
  .pc-mgl-122 {
    margin-left: 122px;
  }
  .pc-mgl-123 {
    margin-left: 123px;
  }
  .pc-mgl-124 {
    margin-left: 124px;
  }
  .pc-mgl-125 {
    margin-left: 125px;
  }
  .pc-mgl-126 {
    margin-left: 126px;
  }
  .pc-mgl-127 {
    margin-left: 127px;
  }
  .pc-mgl-128 {
    margin-left: 128px;
  }
  .pc-mgl-129 {
    margin-left: 129px;
  }
  .pc-mgl-130 {
    margin-left: 130px;
  }
  .pc-mgl-131 {
    margin-left: 131px;
  }
  .pc-mgl-132 {
    margin-left: 132px;
  }
  .pc-mgl-133 {
    margin-left: 133px;
  }
  .pc-mgl-134 {
    margin-left: 134px;
  }
  .pc-mgl-135 {
    margin-left: 135px;
  }
  .pc-mgl-136 {
    margin-left: 136px;
  }
  .pc-mgl-137 {
    margin-left: 137px;
  }
  .pc-mgl-138 {
    margin-left: 138px;
  }
  .pc-mgl-139 {
    margin-left: 139px;
  }
  .pc-mgl-140 {
    margin-left: 140px;
  }
  .pc-mgl-141 {
    margin-left: 141px;
  }
  .pc-mgl-142 {
    margin-left: 142px;
  }
  .pc-mgl-143 {
    margin-left: 143px;
  }
  .pc-mgl-144 {
    margin-left: 144px;
  }
  .pc-mgl-145 {
    margin-left: 145px;
  }
  .pc-mgl-146 {
    margin-left: 146px;
  }
  .pc-mgl-147 {
    margin-left: 147px;
  }
  .pc-mgl-148 {
    margin-left: 148px;
  }
  .pc-mgl-149 {
    margin-left: 149px;
  }
  .pc-mgl-150 {
    margin-left: 150px;
  }
  .pc-mgl-151 {
    margin-left: 151px;
  }
  .pc-mgl-152 {
    margin-left: 152px;
  }
  .pc-mgl-153 {
    margin-left: 153px;
  }
  .pc-mgl-154 {
    margin-left: 154px;
  }
  .pc-mgl-155 {
    margin-left: 155px;
  }
  .pc-mgl-156 {
    margin-left: 156px;
  }
  .pc-mgl-157 {
    margin-left: 157px;
  }
  .pc-mgl-158 {
    margin-left: 158px;
  }
  .pc-mgl-159 {
    margin-left: 159px;
  }
  .pc-mgl-160 {
    margin-left: 160px;
  }
  .pc-mgl-161 {
    margin-left: 161px;
  }
  .pc-mgl-162 {
    margin-left: 162px;
  }
  .pc-mgl-163 {
    margin-left: 163px;
  }
  .pc-mgl-164 {
    margin-left: 164px;
  }
  .pc-mgl-165 {
    margin-left: 165px;
  }
  .pc-mgl-166 {
    margin-left: 166px;
  }
  .pc-mgl-167 {
    margin-left: 167px;
  }
  .pc-mgl-168 {
    margin-left: 168px;
  }
  .pc-mgl-169 {
    margin-left: 169px;
  }
  .pc-mgl-170 {
    margin-left: 170px;
  }
  .pc-mgl-171 {
    margin-left: 171px;
  }
  .pc-mgl-172 {
    margin-left: 172px;
  }
  .pc-mgl-173 {
    margin-left: 173px;
  }
  .pc-mgl-174 {
    margin-left: 174px;
  }
  .pc-mgl-175 {
    margin-left: 175px;
  }
  .pc-mgl-176 {
    margin-left: 176px;
  }
  .pc-mgl-177 {
    margin-left: 177px;
  }
  .pc-mgl-178 {
    margin-left: 178px;
  }
  .pc-mgl-179 {
    margin-left: 179px;
  }
  .pc-mgl-180 {
    margin-left: 180px;
  }
  .pc-mgl-181 {
    margin-left: 181px;
  }
  .pc-mgl-182 {
    margin-left: 182px;
  }
  .pc-mgl-183 {
    margin-left: 183px;
  }
  .pc-mgl-184 {
    margin-left: 184px;
  }
  .pc-mgl-185 {
    margin-left: 185px;
  }
  .pc-mgl-186 {
    margin-left: 186px;
  }
  .pc-mgl-187 {
    margin-left: 187px;
  }
  .pc-mgl-188 {
    margin-left: 188px;
  }
  .pc-mgl-189 {
    margin-left: 189px;
  }
  .pc-mgl-190 {
    margin-left: 190px;
  }
  .pc-mgl-191 {
    margin-left: 191px;
  }
  .pc-mgl-192 {
    margin-left: 192px;
  }
  .pc-mgl-193 {
    margin-left: 193px;
  }
  .pc-mgl-194 {
    margin-left: 194px;
  }
  .pc-mgl-195 {
    margin-left: 195px;
  }
  .pc-mgl-196 {
    margin-left: 196px;
  }
  .pc-mgl-197 {
    margin-left: 197px;
  }
  .pc-mgl-198 {
    margin-left: 198px;
  }
  .pc-mgl-199 {
    margin-left: 199px;
  }
  .pc-mgl-200 {
    margin-left: 200px;
  }
}
/* ------------------------
Animation
 - アニメーション定義
------------------------ */
/* -----------------------
Base
 - 初期設定ファイル
----------------------- */
html {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Noto Sans JP", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body {
  color: #333;
}

a {
  text-decoration: none;
}

/* -----------------------
Component
 - 最小のパーツの設定
----------------------- */
.btnA {
  background-color: #014099;
  background-image: url(../img/common/btna_bg.png);
  background-size: 5rem auto;
  background-position: top right;
  background-repeat: no-repeat;
  display: inline-block;
  color: #fff;
  text-align: center;
  font-weight: 700;
  overflow: hidden;
  position: relative;
  font-size: 1.7rem;
  padding: 1.5rem;
}
@media screen and (min-width: 768px) {
  .btnA {
    transition: all 0.5s;
    background-size: 7rem auto;
    padding: 3rem;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1441px) {
  .btnA {
    font-size: 2.8rem;
  }
}
.btnA > span {
  position: relative;
  z-index: 2;
}
.btnA::after {
  content: "";
  background-color: #00306e;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 7rem;
  width: 7rem;
}
@media screen and (min-width: 768px) {
  .btnA::after {
    height: 14.5rem;
    width: 14.5rem;
  }
}
.btnA:hover {
  background-color: #2172e3;
}

.btnB {
  display: inline-block;
  color: #fff;
  text-align: center;
  font-weight: 700;
  position: relative;
}
.btnB::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 1.3rem 1.3rem 0;
  border-color: transparent #ffff00 transparent transparent;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .btnB::after {
    border-width: 0 2.6rem 2.6rem 0;
    right: 1rem;
    top: 1rem;
  }
}
.btnB .btnB__bg {
  content: "";
  background-color: #ffff00;
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  right: -0.5rem;
  top: -0.5rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .btnB .btnB__bg {
    right: -1rem;
    top: -1rem;
  }
}
.btnB .btnB__text {
  background-color: #014099;
  display: inline-block;
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  padding: 0.75rem 8rem 0.75rem 4rem;
}
@media screen and (min-width: 768px) {
  .btnB .btnB__text {
    padding: 2rem 16rem 2rem 8rem;
    font-size: 2rem;
    transition: all 0.3s ease;
  }
}
@media screen and (min-width: 1441px) {
  .btnB .btnB__text {
    font-size: 3rem;
  }
}
.btnB .btnB__text::before {
  content: "";
  background-color: #014099;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  mix-blend-mode: multiply;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  right: 5rem;
  height: 2rem;
  width: 2rem;
}
@media screen and (min-width: 768px) {
  .btnB .btnB__text::before {
    right: 10rem;
    height: 4rem;
    width: 4rem;
  }
}
.btnB .btnB__text::after {
  content: "";
  display: block;
  border-bottom: 0.15rem solid #fff;
  border-right: 0.15rem solid #fff;
  position: absolute;
  z-index: 2;
  top: 42%;
  right: 4.2rem;
  transform: translateY(-50%) skew(30deg);
  transition: all 0.3s ease;
  height: 1rem;
  width: 1.5rem;
}
@media screen and (min-width: 768px) {
  .btnB .btnB__text::after {
    border-width: 0.3rem;
    height: 1.8rem;
    right: 8.5rem;
    width: 4.2rem;
  }
}
@media screen and (min-width: 768px) {
  .btnB:hover .btnB__text::after {
    transform: translate(1rem, -50%) skew(30deg);
  }
}

.btnPlay {
  background-color: #fff;
  display: block;
  border-radius: 50%;
  border: 2px solid #014099;
  height: 5rem;
  width: 5rem;
  position: relative;
  transition: opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media screen and (min-width: 768px) {
  .btnPlay {
    border: 5px solid #014099;
    height: 8rem;
    width: 8rem;
  }
}
.btnPlay::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.75rem 0 0.75rem 1.25rem;
  border-color: transparent transparent transparent #014099;
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .btnPlay::after {
    border-width: 1.5rem 0 1.5rem 2.5rem;
  }
}
.btnPlay.is-active {
  opacity: 0;
}

.circleBadge {
  align-items: center;
  background-color: #0082d8;
  border-radius: 50%;
  color: #ffff00;
  display: flex;
  justify-content: center;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .circleBadge {
    height: 6rem;
    width: 6rem;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .circleBadge {
    height: 8rem;
    width: 8rem;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1441px) {
  .circleBadge {
    height: 9rem;
    width: 9rem;
    font-size: 1.8rem;
  }
}
.circleBadge.second {
  background-color: #39b54a;
}
.circleBadge.mid {
  background-color: #c40018;
}

.breadcrumb a {
  color: #333333;
}
@media screen and (min-width: 768px) {
  .breadcrumb a:hover {
    text-decoration: underline;
  }
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  .breadcrumb__list {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1441px) {
  .breadcrumb__list {
    font-size: 1.5rem;
  }
}
.breadcrumb__list > li:nth-child(n+2)::before {
  content: ">";
  margin: 0 0.5em;
}

.postPager {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 3rem;
  gap: 3rem;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .postPager {
    gap: 8rem;
    font-size: 1.8rem;
    max-width: 70rem;
    margin: 3rem auto 0;
  }
}
@media screen and (min-width: 1441px) {
  .postPager {
    font-size: 2.4rem;
    max-width: 86rem;
  }
}
.postPager::after {
  background-color: #333;
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .postPager::after {
    height: 1em;
  }
}

.postPager__item {
  width: 50%;
  flex: 1;
  word-break: break-all;
}
.postPager__item.prev a {
  padding-left: 2rem;
}
@media screen and (min-width: 768px) {
  .postPager__item.prev a {
    padding-left: 3rem;
  }
}
.postPager__item.prev a::before {
  border-left: 1px solid #333;
  border-bottom: 1px solid #333;
  content: "";
  display: block;
  width: 0.75em;
  height: 0.75em;
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .postPager__item.prev a::before {
    left: 0;
  }
}
.postPager__item.next a {
  padding-right: 2rem;
}
@media screen and (min-width: 768px) {
  .postPager__item.next a {
    padding-right: 3rem;
  }
}
.postPager__item.next a::after {
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  content: "";
  display: block;
  width: 0.75em;
  height: 0.75em;
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translate(0, -50%) rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .postPager__item.next a::after {
    right: 0;
  }
}
.postPager__item a {
  color: #333;
  display: block;
  position: relative;
}
@media screen and (min-width: 768px) {
  .postPager__item a:hover {
    text-decoration: underline;
  }
}

.postPagerB {
  background-color: #dae3f0;
  padding: 2.5rem 1.5rem;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .postPagerB {
    font-size: 1.6rem;
    padding: 3.5rem 1.5rem;
  }
}
@media screen and (min-width: 1441px) {
  .postPagerB {
    font-size: 2.4rem;
    padding: 5rem 1.5rem;
  }
}

.postPagerB__inr {
  display: flex;
  margin: 0 auto;
  max-width: 580px;
}

.postPagerB__item {
  width: 50%;
}
.postPagerB__item + .postPagerB__item {
  text-align: right;
  border-left: 1px solid #000;
}
.postPagerB__item + .postPagerB__item a {
  padding: 0 1.5em 0 1em;
}
@media screen and (min-width: 768px) {
  .postPagerB__item + .postPagerB__item a {
    padding: 0 2em 0 0.5em;
  }
}
.postPagerB__item + .postPagerB__item a::before {
  left: initial;
  right: 0;
  transform: translate(0, -50%) rotate(225deg);
}
.postPagerB__item a {
  color: #000;
  display: inline-block;
  position: relative;
  padding: 0 1em 0 1.5em;
}
@media screen and (min-width: 768px) {
  .postPagerB__item a {
    padding: 0 0.5em 0 2em;
  }
}
.postPagerB__item a::before {
  content: "";
  height: 1.1em;
  width: 1.1em;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
}

.titleA {
  position: relative;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .titleA {
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 1441px) {
  .titleA {
    margin-bottom: 6rem;
  }
}
.titleA span {
  color: #014099;
  font-weight: 700;
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .titleA span {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1441px) {
  .titleA span {
    font-size: 4rem;
  }
}
.titleA span i {
  font-style: normal;
  font-size: 0.75em;
}
.titleA::before {
  content: "";
  background-color: #ffff00;
  display: block;
  mix-blend-mode: multiply;
  position: relative;
  transform: skew(40deg);
  z-index: 1;
  height: 6.3rem;
  width: 5.8rem;
}
@media screen and (min-width: 768px) {
  .titleA::before {
    height: 14.4rem;
    width: 13.3rem;
  }
}

.titleB {
  position: relative;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .titleB {
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 1441px) {
  .titleB {
    margin-bottom: 6rem;
  }
}
.titleB span {
  color: #014099;
  font-weight: 700;
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .titleB span {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1441px) {
  .titleB span {
    font-size: 4rem;
  }
}
.titleB span i {
  font-style: normal;
  font-size: 0.75em;
}
.titleB::before {
  content: "";
  background-color: #00ffff;
  display: block;
  mix-blend-mode: multiply;
  position: relative;
  transform: skew(-40deg) translate(-20%, 0);
  z-index: 1;
  transform-origin: left bottom;
  height: 6.3rem;
  width: 5.8rem;
}
@media screen and (min-width: 768px) {
  .titleB::before {
    height: 14.4rem;
    width: 13.3rem;
  }
}

.titleC {
  text-align: center;
}
.titleC .titleC__inr {
  display: inline-block;
  position: relative;
}
.titleC .titleC__inr .text {
  color: #014099;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  white-space: nowrap;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .titleC .titleC__inr .text {
    padding-top: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .titleC .titleC__inr .text {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1441px) {
  .titleC .titleC__inr .text {
    font-size: 3.2rem;
  }
}
.titleC .titleC__inr .circle {
  position: relative;
}
@media screen and (max-width: 767px) {
  .titleC .titleC__inr .circle {
    display: block;
    height: 7rem;
    overflow: hidden;
  }
}
.titleC .titleC__inr .circle::after {
  background-color: #d5dfee;
  content: "";
  display: block;
  z-index: 0;
  border-radius: 50%;
  height: 14.4rem;
  width: 14.4rem;
}
@media screen and (min-width: 768px) {
  .titleC .titleC__inr .circle::after {
    border-radius: 50%;
    height: 14rem;
    width: 14rem;
  }
}
@media screen and (min-width: 1441px) {
  .titleC .titleC__inr .circle::after {
    height: 19.8rem;
    width: 19.8rem;
  }
}

.titleD {
  color: #014099;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .titleD {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1441px) {
  .titleD {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1921px) {
  .titleD {
    font-size: 3.2rem;
  }
}
.titleD span {
  position: relative;
  padding-left: 5rem;
}
@media screen and (min-width: 768px) {
  .titleD span {
    padding-left: 5rem;
  }
}
@media screen and (min-width: 1441px) {
  .titleD span {
    padding-left: 6.7164179104vw;
  }
}
@media screen and (min-width: 1921px) {
  .titleD span {
    padding-left: 33rem;
  }
}
.titleD span::before, .titleD span::after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  height: 0.6rem;
}
@media screen and (min-width: 768px) {
  .titleD span::before, .titleD span::after {
    height: 0.6rem;
  }
}
@media screen and (min-width: 1441px) {
  .titleD span::before, .titleD span::after {
    height: 1.2rem;
  }
}
.titleD span::before {
  content: "";
  display: block;
  background-color: #014099;
  z-index: 2;
  width: 3.3rem;
}
@media screen and (min-width: 768px) {
  .titleD span::before {
    max-width: 29.2rem;
    width: 3rem;
  }
}
@media screen and (min-width: 1441px) {
  .titleD span::before {
    width: 5.223880597vw;
  }
}
@media screen and (min-width: 1921px) {
  .titleD span::before {
    width: 29.2rem;
  }
}
.titleD span::after {
  content: "";
  display: block;
  background-color: #c40018;
  z-index: 1;
  width: 4rem;
}
@media screen and (min-width: 768px) {
  .titleD span::after {
    max-width: 31.6rem;
    width: 4rem;
  }
}
@media screen and (min-width: 1441px) {
  .titleD span::after {
    width: 5.9701492537vw;
  }
}
@media screen and (min-width: 1921px) {
  .titleD span::after {
    width: 31.6rem;
  }
}

.titleE {
  background-color: #014099;
  background-image: url(../img/common/titleb_bg.webp);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: right top;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .titleE {
    padding: 1.5rem;
    font-size: 2.1rem;
  }
}
@media screen and (min-width: 1441px) {
  .titleE {
    font-size: 4rem;
  }
}

.tableA {
  width: 100%;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .tableA {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1441px) {
  .tableA {
    font-size: 2rem;
  }
}
.tableA table {
  border-bottom: 1px solid #808080;
  width: 100%;
}
.tableA table th {
  border-top: 1px solid #808080;
  color: #014099;
  background-color: #e3e9f1;
  text-align: left;
  white-space: nowrap;
  vertical-align: top;
  padding: 1.5rem 0.8rem;
}
@media screen and (min-width: 768px) {
  .tableA table th {
    padding: 3rem 1rem;
  }
}
.tableA table td {
  font-feature-settings: "palt";
  border-top: 1px solid #808080;
  padding: 1.5rem;
}
@media screen and (min-width: 768px) {
  .tableA table td {
    padding: 3rem 2rem;
  }
}
.tableA table td .fc-blue {
  color: #014099;
}
.tableA table td .text-underline a {
  color: #4089c5;
  text-decoration: underline;
}
.tableA table td .text-underline a:hover {
  text-decoration: none;
}
.tableA table td .indexBox p {
  text-indent: -1em;
  padding-left: 1em;
}
.tableA table td .addressList > li + li {
  margin-top: 2em;
}

/* -----------------------
Project
 - 各ページ共通のプロジェクト単位のスタイル
----------------------- */
.pager {
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .pager {
    margin-top: 8rem;
  }
}
@media screen and (min-width: 1441px) {
  .pager {
    margin-top: 10rem;
  }
}
.pager ul {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .pager ul {
    gap: 2.5rem;
  }
}
.pager .pager__arrow::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #014099 transparent transparent;
  border-width: 0.8rem 1.6rem 0.8rem 0;
}
@media screen and (min-width: 768px) {
  .pager .pager__arrow::after {
    border-width: 1.3rem 2.4rem 1.3rem 0;
  }
}
.pager .pager__arrow.next::after {
  transform: rotate(180deg);
}
.pager .pager__num, .pager .page-numbers {
  color: #808080;
  border: 0.1rem solid #808080;
  border-radius: 0.2em;
  display: inline-block;
  line-height: 1;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 0.3em 0.4em;
}
@media screen and (min-width: 768px) {
  .pager .pager__num, .pager .page-numbers {
    border-width: 0.2rem;
    font-size: 1.4rem;
    padding: 0.4em 0.5em;
  }
}
@media screen and (min-width: 1441px) {
  .pager .pager__num, .pager .page-numbers {
    font-size: 2.6rem;
  }
}
.pager .pager__num.prev, .pager .pager__num.next, .pager .page-numbers.prev, .pager .page-numbers.next {
  padding: 0;
  border: 0;
}
.pager .pager__num.prev:hover, .pager .pager__num.next:hover, .pager .page-numbers.prev:hover, .pager .page-numbers.next:hover {
  background-color: initial;
  border: 0;
  color: #014099;
}
.pager .pager__num:hover, .pager .pager__num.current, .pager .page-numbers:hover, .pager .page-numbers.current {
  background-color: #014099;
  border-color: #014099;
  color: #fff;
}

.archiveList__item {
  align-items: center;
  display: flex;
  font-size: 1rem;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .archiveList__item {
    font-size: 1.6rem;
    gap: 2rem;
  }
}
@media screen and (min-width: 1441px) {
  .archiveList__item {
    font-size: 2.5rem;
    gap: 4rem;
  }
}
.archiveList__item + .archiveList__item {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .archiveList__item + .archiveList__item {
    margin-top: 5rem;
  }
}
@media screen and (min-width: 1441px) {
  .archiveList__item + .archiveList__item {
    margin-top: 10rem;
  }
}

.archiveList__body {
  flex: 1;
  width: 100%;
}

.archiveList__thum {
  width: 14.4rem;
  aspect-ratio: 460/289;
}
@media screen and (min-width: 768px) {
  .archiveList__thum {
    width: 36rem;
  }
}
@media screen and (min-width: 1441px) {
  .archiveList__thum {
    width: 46rem;
  }
}
.archiveList__thum img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.archiveList__date {
  margin-bottom: 0.1em;
}
@media screen and (min-width: 768px) {
  .archiveList__date {
    margin-bottom: 0.25em;
  }
}

.archiveList__title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 1.2rem;
  margin-bottom: 0.7em;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .archiveList__title {
    font-size: 2rem;
    margin-bottom: 0.5em;
  }
}
@media screen and (min-width: 1441px) {
  .archiveList__title {
    font-size: 3rem;
  }
}
.archiveList__title a {
  color: #014099;
}

.archiveList__text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.clear-reset-style * {
  margin: revert;
  padding: revert;
  font-size: revert;
  line-height: revert;
}
.clear-reset-style h1, .clear-reset-style h2, .clear-reset-style h3, .clear-reset-style h4, .clear-reset-style h5 {
  display: block;
  font-weight: bold;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}
.clear-reset-style h1 {
  font-size: 2em;
  margin-block-start: 0.67em;
  margin-block-end: 0.67em;
}
.clear-reset-style h2 {
  font-size: 1.8em;
  margin-block-start: 0.83em;
  margin-block-end: 0.6em;
}
.clear-reset-style h3 {
  font-size: 1.6em;
  margin-block-start: 2em;
  margin-block-end: 0.5em;
}
.clear-reset-style h4 {
  margin-block-start: 1.33em;
  margin-block-end: 1.33em;
}
.clear-reset-style h5 {
  font-size: 1.2em;
  margin-block-start: 1.67em;
  margin-block-end: 1.67em;
}
.clear-reset-style p {
  margin-block-start: 0;
  margin-block-end: 1.5em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}
@media screen and (min-width: 768px) {
  .clear-reset-style p {
    margin-block-end: 1.5em;
  }
}
.clear-reset-style a:not(.wp-block-button__link) {
  color: #5cd5fa;
  text-decoration: underline;
}
.clear-reset-style a:not(.wp-block-button__link):hover {
  text-decoration: none;
}
.clear-reset-style img {
  height: auto;
  max-width: 100%;
  width: auto;
}
.clear-reset-style ol, .clear-reset-style ul {
  list-style: revert;
}
.clear-reset-style .wp-block-quote {
  border-left: 4px solid #000;
  margin-left: 0;
  padding-left: 30px;
}
.clear-reset-style .wp-block-buttons {
  margin-bottom: 2em;
}
.clear-reset-style .wp-block-pullquote {
  border-bottom: 3px solid #000;
  border-top: 3px solid #000;
  margin-bottom: 40px;
}
.clear-reset-style .wp-block-table {
  margin-bottom: 40px;
}
.clear-reset-style .wp-block-table table th, .clear-reset-style .wp-block-table table td {
  border: 1px solid #000;
  padding: 10px;
}
.clear-reset-style .wp-block-table.is-style-stripes table th, .clear-reset-style .wp-block-table.is-style-stripes table td {
  border: 0;
}
.clear-reset-style .wp-block-image {
  margin: 0 0 2em;
  width: 100%;
}
.clear-reset-style .wp-block-image figcaption {
  color: #494949;
  font-size: 12px;
}
.clear-reset-style .wp-block-image .aligncenter {
  text-align: center;
}
.clear-reset-style .wp-block-cover {
  margin-bottom: 40px;
}
.clear-reset-style .wp-block-separator {
  margin: 40px 0;
}

.informationCard__item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .informationCard__item {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .informationCard__item + .informationCard__item {
    margin-top: 15rem;
  }
}
@media screen and (min-width: 1441px) {
  .informationCard__item + .informationCard__item {
    margin-top: 20rem;
  }
}
.informationCard__item.green .informationCard__title__text {
  background-color: rgba(57, 181, 74, 0.75);
}
.informationCard__item.green .informationCard__baroon ul li > div:nth-child(1) {
  background-color: #39b54a;
}
.informationCard__item.red .informationCard__title__text {
  background-color: rgba(196, 0, 24, 0.75);
}
.informationCard__item.red .informationCard__baroon ul li > div:nth-child(1) {
  background-color: #c40018;
}

.informationCard__title {
  position: relative;
  width: 100%;
}
.informationCard__title img {
  object-fit: cover;
  object-position: top center;
  height: 18rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .informationCard__title img {
    height: 45rem;
  }
}
@media screen and (min-width: 1441px) {
  .informationCard__title img {
    height: 50rem;
  }
}

.informationCard__title__text {
  background-color: rgba(1, 64, 153, 0.75);
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.25em;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .informationCard__title__text {
    font-size: 3.8rem;
  }
}
@media screen and (min-width: 1441px) {
  .informationCard__title__text {
    font-size: 5rem;
  }
}

.informationCard__baroon {
  background-color: #fff;
  padding: 1.5rem 2.8rem 6rem;
  z-index: 2;
  position: relative;
}
@media screen and (min-width: 768px) {
  .informationCard__baroon {
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
    padding: 5rem 10rem 5rem 3rem;
    margin: -3rem 5rem 0 0;
    width: 65rem;
  }
}
@media screen and (min-width: 1441px) {
  .informationCard__baroon {
    padding: 5rem 12rem 5rem 5rem;
    margin: -10rem 15rem 0 0;
    width: 83.3rem;
  }
}
.informationCard__baroon .note {
  color: #000;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  font-weight: 400;
  padding: 0.5em 0 0 0;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .informationCard__baroon .note {
    font-size: 1.2rem;
  }
}
.informationCard__baroon ul {
  position: relative;
  line-height: 1.2;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .informationCard__baroon ul {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1441px) {
  .informationCard__baroon ul {
    font-size: 2rem;
  }
}
.informationCard__baroon ul li {
  align-items: center;
  display: flex;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .informationCard__baroon ul li {
    gap: 3rem;
  }
}
.informationCard__baroon ul li + li {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .informationCard__baroon ul li + li {
    margin-top: 2.5rem;
  }
}
.informationCard__baroon ul li > div:nth-child(1) {
  background-color: #014099;
  border-radius: 0 0.5rem 0 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  height: 3.5rem;
  width: 7rem;
}
@media screen and (min-width: 768px) {
  .informationCard__baroon ul li > div:nth-child(1) {
    border-radius: 0 1rem 0 0;
    height: 7rem;
    width: 14rem;
  }
}
@media screen and (min-width: 1441px) {
  .informationCard__baroon ul li > div:nth-child(1) {
    border-radius: 0 1rem 0 0;
    height: 7rem;
    width: 14rem;
  }
}
.informationCard__baroon ul li > div:nth-child(2) {
  flex: 1;
  padding-top: 0.1em;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .informationCard__baroon ul li > div:nth-child(2) {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1441px) {
  .informationCard__baroon ul li > div:nth-child(2) {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .informationCard__baroon .informationCard__baroon__badge {
    display: flex;
    gap: 0.5em;
    margin: -6rem 0 1rem 0;
  }
}
@media screen and (min-width: 768px) {
  .informationCard__baroon .informationCard__baroon__badge {
    display: flex;
    gap: 0.5em;
    position: absolute;
    left: 3.2rem;
    top: -4rem;
  }
}
@media screen and (min-width: 1441px) {
  .informationCard__baroon .informationCard__baroon__badge {
    left: 4rem;
    top: -5rem;
  }
}
.informationCard__baroon__btn {
  text-align: right;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .informationCard__baroon__btn {
    margin-top: 2.5rem;
  }
}
.informationCard__baroon__btn img {
  width: 8.2rem;
}
@media screen and (min-width: 768px) {
  .informationCard__baroon__btn img {
    width: 14rem;
  }
}
@media screen and (min-width: 1441px) {
  .informationCard__baroon__btn img {
    width: 15rem;
  }
}

.informationDetailCard__item {
  position: relative;
}
.informationDetailCard__item.green .informationDetailCard__title__text {
  background-color: rgba(57, 181, 74, 0.75);
}
.informationDetailCard__item.green .informationDetailCard__baroon ul li > div:nth-child(1) {
  background-color: #39b54a;
}
.informationDetailCard__item.red .informationDetailCard__title__text {
  background-color: rgba(196, 0, 24, 0.75);
}
.informationDetailCard__item.red .informationDetailCard__baroon ul li > div:nth-child(1) {
  background-color: #c40018;
}

.informationDetailCard__title {
  position: relative;
}
.informationDetailCard__title img {
  object-fit: cover;
  object-position: top center;
  height: 21rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .informationDetailCard__title img {
    height: 45rem;
  }
}
@media screen and (min-width: 1441px) {
  .informationDetailCard__title img {
    height: 50rem;
  }
}

.informationDetailCard__title__text {
  background-color: rgba(1, 64, 153, 0.75);
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translate(0, -50%);
  padding: 0.25em;
  text-align: center;
  font-size: 2.3rem;
}
@media screen and (min-width: 768px) {
  .informationDetailCard__title__text {
    font-size: 3.6rem;
  }
}
@media screen and (min-width: 1441px) {
  .informationDetailCard__title__text {
    font-size: 6rem;
  }
}

.informationDetailCard__baroon {
  background-color: #fff;
  z-index: 2;
  padding: 2.5rem 2.8rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .informationDetailCard__baroon {
    margin: 6rem auto 0;
    max-width: 120rem;
    padding: 0 5.6rem;
  }
}
@media screen and (min-width: 1441px) {
  .informationDetailCard__baroon {
    max-width: 120rem;
    padding: 0;
  }
}
.informationDetailCard__baroon .note {
  color: #000;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  font-weight: 400;
  padding: 0.5em 0 0 0;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .informationDetailCard__baroon .note {
    font-size: 1.2rem;
  }
}
.informationDetailCard__baroon ul {
  position: relative;
  line-height: 1.2;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .informationDetailCard__baroon ul {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1441px) {
  .informationDetailCard__baroon ul {
    font-size: 2.4rem;
  }
}
.informationDetailCard__baroon ul li {
  align-items: center;
  display: flex;
  position: relative;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .informationDetailCard__baroon ul li {
    gap: 2rem;
  }
}
.informationDetailCard__baroon ul li + li {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .informationDetailCard__baroon ul li + li {
    margin-top: 4rem;
  }
}
.informationDetailCard__baroon ul li > div {
  position: relative;
}
.informationDetailCard__baroon ul li > div:nth-child(1) {
  background-color: #014099;
  border-radius: 0 0.5rem 0 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  height: 3.1rem;
  width: 7.5rem;
}
@media screen and (min-width: 768px) {
  .informationDetailCard__baroon ul li > div:nth-child(1) {
    border-radius: 0 1rem 0 0;
    height: 7.8rem;
    width: 16.8rem;
  }
}
.informationDetailCard__baroon ul li > div:nth-child(2) {
  flex: 1;
  padding-top: 0.1em;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .informationDetailCard__baroon ul li > div:nth-child(2) {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1441px) {
  .informationDetailCard__baroon ul li > div:nth-child(2) {
    font-size: 2.4rem;
  }
}

.informationDetailCard__table {
  font-size: 1.2rem;
  width: 100%;
  padding: 0 2.8rem;
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .informationDetailCard__table {
    max-width: 120rem;
    margin: 5rem auto 0;
    font-size: 1.6rem;
    padding: 0 5.6rem;
  }
}
@media screen and (min-width: 1441px) {
  .informationDetailCard__table {
    font-size: 2rem;
    padding: 0;
    width: 100%;
  }
}
.informationDetailCard__table > ul {
  border: 0.15rem solid #000;
  display: table;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .informationDetailCard__table > ul {
    border-width: 0.3rem;
  }
}
.informationDetailCard__table > ul > li {
  display: table-row;
  vertical-align: middle;
}
.informationDetailCard__table > ul > li > div {
  border-bottom: 0.15rem solid #000;
  display: table-cell;
  font-weight: 700;
  padding: 1rem;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .informationDetailCard__table > ul > li > div {
    border-width: 0.3rem;
    padding: 3rem 2rem;
  }
}
.informationDetailCard__table > ul > li > div:nth-child(1) {
  align-items: center;
  background-color: #e3e9f1;
  color: #014099;
  width: 7.8rem;
}
@media screen and (min-width: 768px) {
  .informationDetailCard__table > ul > li > div:nth-child(1) {
    width: 17.5rem;
  }
}
.informationDetailCard__table > ul > li:last-child > div {
  border-bottom: 0;
}

.informationDetailCard__btn {
  text-align: center;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .informationDetailCard__btn {
    margin-top: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .voiceList > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem 4rem;
  }
}
@media screen and (min-width: 1441px) {
  .voiceList > ul {
    gap: 10rem 8rem;
  }
}
@media screen and (min-width: 768px) {
  .voiceList > ul > li {
    width: calc(50% - 2rem);
  }
}
@media screen and (min-width: 1441px) {
  .voiceList > ul > li {
    width: calc(50% - 4rem);
  }
}

.voiceList__item {
  position: relative;
}
@media screen and (max-width: 767px) {
  .voiceList__item {
    padding-right: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .voiceList__item:nth-child(even) {
    padding-right: 0;
    padding-left: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .voiceList__item:nth-child(even) .voiceList__baroon {
    margin: -2rem auto 0 0;
    right: initial;
    left: -2rem;
  }
}
@media screen and (max-width: 767px) {
  .voiceList__item:nth-child(even) .voiceList__baroon .voiceList__baroon__bg {
    mask-image: url(../img/voice/baroon_bg_2.webp);
    -webkit-mask-image: url(../img/voice/baroon_bg_2.webp);
  }
}
@media screen and (max-width: 767px) {
  .voiceList__item + .voiceList__item {
    padding-top: 2.5rem;
  }
}
.voiceList__item.green .voiceList__baroon .voiceList__baroon__bg {
  background-color: #39b54a;
}
.voiceList__item.red .voiceList__baroon .voiceList__baroon__bg {
  background-color: #c40018;
}

.voiceList__thum {
  aspect-ratio: 755/467;
}
.voiceList__thum img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.voiceList__baroon {
  color: #fff;
  display: block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .voiceList__baroon {
    margin: -2rem 0 0 auto;
    right: -2rem;
    width: 26rem;
  }
}
@media screen and (min-width: 768px) {
  .voiceList__baroon {
    margin: -2rem auto 0;
    width: 31rem;
  }
}
@media screen and (min-width: 1441px) {
  .voiceList__baroon {
    margin: -4rem auto 0;
    width: 47.7rem;
  }
}
.voiceList__baroon::after {
  content: "";
  display: block;
  background: url(../img/voice/baroon_arrow.webp) 0 0/100% 100% no-repeat;
  position: absolute;
  transform: translate(0, -50%);
  height: 2.1rem;
  width: 3.8rem;
  right: -2.25rem;
  top: 55%;
}
@media screen and (min-width: 768px) {
  .voiceList__baroon::after {
    height: 3rem;
    width: 5rem;
    right: -3.5rem;
  }
}
@media screen and (min-width: 1441px) {
  .voiceList__baroon::after {
    height: 6rem;
    width: 10.6rem;
    right: -6.5rem;
  }
}

.voiceList__baroon__bg {
  display: block;
  background-color: #00afff;
  mask-image: url(../img/voice/baroon_bg.webp);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  mask-size: 100% 90%;
  -webkit-mask-image: url(../img/voice/baroon_bg.webp);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  -webkit-mask-size: 100% 90%;
  position: relative;
  mix-blend-mode: multiply;
  height: 13.5rem;
  width: 26rem;
}
@media screen and (min-width: 768px) {
  .voiceList__baroon__bg {
    margin: 0 auto;
    height: 16rem;
    width: 31rem;
  }
}
@media screen and (min-width: 1441px) {
  .voiceList__baroon__bg {
    height: 23.4rem;
    width: 47.7rem;
  }
}

.voiceList__baroon__inr {
  position: absolute;
  z-index: 2;
  text-align: center;
  width: 100%;
  mix-blend-mode: initial;
  line-height: 1.25;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 1.1rem;
  padding-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .voiceList__baroon__inr {
    font-size: 1.3rem;
    padding-top: 1.5rem;
  }
}
@media screen and (min-width: 1441px) {
  .voiceList__baroon__inr {
    font-size: 1.8rem;
    padding-top: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .voiceList__baroon__inr .voiceList__baroon__text {
    padding: 0 1em;
  }
}
.voiceList__baroon__inr .voiceList__baroon__title {
  font-size: 1.2em;
}
@media screen and (min-width: 768px) {
  .voiceList__baroon__inr .voiceList__baroon__title {
    font-size: 1.1em;
  }
}
@media screen and (min-width: 1441px) {
  .voiceList__baroon__inr .voiceList__baroon__title {
    font-size: 1.3em;
  }
}
.voiceList__baroon__inr .voiceList__baroon__title::after {
  background-color: #fff;
  content: "";
  display: block;
  margin: 0.5rem auto;
  height: 0.1rem;
  width: 1.3rem;
}
@media screen and (min-width: 768px) {
  .voiceList__baroon__inr .voiceList__baroon__title::after {
    margin: 0.85rem auto;
    width: 2rem;
  }
}
@media screen and (min-width: 1441px) {
  .voiceList__baroon__inr .voiceList__baroon__title::after {
    margin: 1.5rem auto;
    width: 3.8rem;
  }
}

.faqList__item + .faqList__item {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .faqList__item + .faqList__item {
    margin-top: 4.5rem;
  }
}

.faqList__q {
  color: #014099;
  background-color: #ecf1f8;
  border: 0.15rem solid #014099;
  justify-content: space-between;
  font-weight: 700;
  position: relative;
  text-align: left;
  width: 100%;
  font-size: 1.4rem;
  padding: 1.5rem 4.5rem 1.5rem 3.5rem;
}
@media screen and (min-width: 768px) {
  .faqList__q {
    display: flex;
    gap: 1em;
    border-width: 0;
    font-size: 1.8rem;
    padding: 3rem 11rem 3rem 6.5rem;
  }
}
@media screen and (min-width: 1441px) {
  .faqList__q {
    font-size: 2.4rem;
  }
}
.faqList__q::before {
  content: "";
  display: block;
  background: url(../img/faq/icon_q.webp) 0 0/100% 100% no-repeat;
  position: absolute;
  height: 1.2rem;
  width: 1rem;
  left: 2rem;
  top: 2rem;
}
@media screen and (min-width: 768px) {
  .faqList__q::before {
    height: 2.5rem;
    width: 2.1rem;
    left: 3rem;
    top: 3rem;
  }
}
@media screen and (min-width: 1441px) {
  .faqList__q::before {
    top: 3.5rem;
  }
}
.faqList__q .status {
  background-color: #014099;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  height: 2.2rem;
  width: 2.2rem;
}
@media screen and (min-width: 768px) {
  .faqList__q .status {
    top: 50%;
    transform: translate(0, -50%);
    right: 3rem;
    height: 4.4rem;
    width: 4.4rem;
  }
}
.faqList__q .status::before, .faqList__q .status::after {
  content: "";
  background-color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}
.faqList__q .status::before {
  height: 1rem;
  width: 0.15rem;
}
@media screen and (min-width: 768px) {
  .faqList__q .status::before {
    height: 2.2rem;
    width: 0.3rem;
  }
}
.faqList__q .status::after {
  height: 0.15rem;
  width: 1rem;
}
@media screen and (min-width: 768px) {
  .faqList__q .status::after {
    height: 0.3rem;
    width: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .faqList__q.is-active {
    background-color: #fff;
  }
}
.faqList__q.is-active .status::before {
  opacity: 0;
}
.faqList__q .hash {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .faqList__q .hash {
    font-size: 0.85em;
    margin-top: 0.25em;
    gap: 1rem;
  }
}
.faqList__q .hash .is-blue {
  color: #0082d8;
}
.faqList__q .hash .is-green {
  color: #39b54a;
}
.faqList__q .hash .is-red {
  color: #c40018;
}

.faqList__a {
  background-color: #fef3f3;
  position: relative;
  line-height: 1.7;
  height: 0;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  margin: 0 auto;
  font-size: 1.3rem;
  padding: 0 1.5rem 0 3.5rem;
  width: calc(100% - 2rem);
}
@media screen and (min-width: 768px) {
  .faqList__a {
    font-size: 1.6rem;
    padding: 0 4rem 0 7rem;
  }
}
@media screen and (min-width: 1441px) {
  .faqList__a {
    font-size: 2rem;
  }
}
.faqList__a::before {
  content: "";
  display: block;
  background: url(../img/faq/icon_a.webp) 0 0/100% 100% no-repeat;
  position: absolute;
  left: 1.7rem;
  top: 2.1rem;
  height: 1.2rem;
  width: 1rem;
}
@media screen and (min-width: 768px) {
  .faqList__a::before {
    left: 3rem;
    top: 3.5rem;
    height: 2.5rem;
    width: 2.1rem;
  }
}
.faqList__a.is-active {
  height: initial;
  padding: 1.5rem 1.5rem 1.5rem 3.5rem;
}
@media screen and (min-width: 768px) {
  .faqList__a.is-active {
    padding: 2.5rem 4rem 2.5rem 7rem;
  }
}

.notFound .notFound__image {
  margin: 0 auto 2rem;
  width: 18rem;
}
@media screen and (min-width: 768px) {
  .notFound .notFound__image {
    margin: 0 auto 2rem;
    max-width: 500px;
    width: 100%;
  }
}
.notFound p {
  text-align: center;
  line-height: 1.6;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .notFound p {
    font-size: 1.5rem;
  }
}

.privacyContent {
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .privacyContent {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1441px) {
  .privacyContent {
    font-size: 2.4rem;
  }
}

.movieBox {
  margin: 0 auto;
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .movieBox {
    display: block;
    max-width: 700px;
  }
}
@media screen and (min-width: 1441px) {
  .movieBox {
    max-width: 1200px;
  }
}

.movieBox__iframe {
  aspect-ratio: 16/9;
}
.movieBox__iframe iframe {
  height: 100%;
  width: 100%;
}

.movieBox__capture {
  color: #014099;
  font-weight: 700;
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .movieBox__capture {
    font-size: 1.6rem;
    margin-bottom: 0;
    margin-top: 0.5em;
  }
}
@media screen and (min-width: 1441px) {
  .movieBox__capture {
    font-size: 3.2rem;
  }
}

.scheduleList > li {
  align-items: flex-start;
  display: flex;
  position: relative;
  gap: 1.5rem;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .scheduleList > li {
    gap: 4.3rem;
    padding-bottom: 9.5rem;
  }
}
.scheduleList > li::before {
  background: url(../img/schedule/dot_line.webp) 0 0/100% auto repeat-y;
  content: "";
  display: block;
  position: absolute;
  left: 2.5rem;
  top: 6rem;
  height: calc(100% - 7rem);
  width: 0.8rem;
}
@media screen and (min-width: 768px) {
  .scheduleList > li::before {
    left: 6rem;
    top: 18.4rem;
    height: calc(100% - 18.4rem);
    width: 2.1rem;
  }
}
.scheduleList > li + li {
  margin-top: 0rem;
}
@media screen and (min-width: 768px) {
  .scheduleList > li + li {
    margin-top: 3rem;
  }
}
.scheduleList > li:last-child {
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .scheduleList > li:last-child {
    padding-bottom: 3rem;
  }
}
.scheduleList > li:last-child::before {
  display: none;
}

.scheduleList__label {
  height: 100%;
  position: relative;
  font-weight: 700;
}
.scheduleList__label span {
  align-items: center;
  background-color: #014099;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  font-size: 1.3rem;
  height: 5.8rem;
  width: 5.8rem;
}
@media screen and (min-width: 768px) {
  .scheduleList__label span {
    font-size: 2.8rem;
    height: 14.6rem;
    width: 14.6rem;
  }
}
@media screen and (min-width: 1441px) {
  .scheduleList__label span {
    font-size: 2.8rem;
    height: 14.6rem;
    width: 14.6rem;
  }
}

.scheduleList__body {
  flex: 1;
  padding-top: 0.8rem;
}
@media screen and (min-width: 768px) {
  .scheduleList__body {
    padding-top: 3rem;
  }
}
.scheduleList__title {
  color: #014099;
  border-bottom: 1px solid #014099;
  border-top: 1px solid #014099;
  padding: 0.5em 0;
  font-size: 1.5rem;
  font-feature-settings: "palt";
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .scheduleList__title {
    border-width: 2px;
    font-size: 2.2rem;
    margin-bottom: 1em;
  }
}
@media screen and (min-width: 1441px) {
  .scheduleList__title {
    font-size: 3.2rem;
  }
}
.scheduleList__title span {
  font-size: 0.9em;
}

.scheduleList__word {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1em 1em;
  font-weight: 500;
  font-size: 1.3rem;
  flex-direction: column;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .scheduleList__word {
    flex-direction: row;
    font-size: 1.8rem;
    margin-bottom: 1.5em;
  }
}
@media screen and (min-width: 1441px) {
  .scheduleList__word {
    font-size: 2.8rem;
  }
}
.scheduleList__word span {
  color: #c40018;
  display: inline-block;
  position: relative;
}
.scheduleList__word span::before {
  background-color: #ffff00;
  content: "";
  display: block;
  height: 0.5em;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.scheduleList__gallery {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .scheduleList__gallery {
    gap: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .scheduleList__gallery > li {
    width: calc(50% - 2rem);
  }
}

.scheduleList__bottom {
  text-align: right;
}
.scheduleList__bottom a {
  color: #333;
  font-weight: 600;
  text-decoration: underline;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .scheduleList__bottom a {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1441px) {
  .scheduleList__bottom a {
    font-size: 2.8rem;
  }
}

.pageAnchor {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1200px;
  gap: 1rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .pageAnchor {
    justify-content: center;
    gap: 3rem 3rem;
  }
}
@media screen and (min-width: 1441px) {
  .pageAnchor {
    gap: 3rem 6rem;
  }
}
.pageAnchor > li {
  text-align: center;
  width: calc(50% - 0.8rem);
}
@media screen and (min-width: 768px) {
  .pageAnchor > li {
    width: calc(33.333% - 2rem);
  }
}
@media screen and (min-width: 1441px) {
  .pageAnchor > li {
    width: calc(33.333% - 4rem);
  }
}
.pageAnchor > li a {
  font-weight: 700;
  color: #014099;
  display: inline-block;
  font-size: 1.2rem;
  border: 1px solid #014099;
  padding: 0.5em 1em 0.5em 0;
  width: 100%;
  letter-spacing: 0;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .pageAnchor > li a {
    padding: 0.25em 1em;
    border-width: 3px;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1441px) {
  .pageAnchor > li a {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 768px) {
  .pageAnchor > li a:hover {
    background-color: #014099;
    color: #fff;
  }
}
.pageAnchor > li a span {
  display: inline-block;
  position: relative;
}
.pageAnchor > li a span::before {
  content: "";
  display: block;
  border-right: 1px solid #014099;
  border-bottom: 1px solid #014099;
  transform: rotate(45deg) translate(0, -50%);
  position: absolute;
  top: 40%;
  left: calc(100% + 0.8em);
  z-index: 2;
  height: 0.5rem;
  width: 0.5rem;
}
@media screen and (min-width: 768px) {
  .pageAnchor > li a span::before {
    border-width: 2px;
    height: 1rem;
    width: 1rem;
    left: calc(100% + 0.7em);
    top: 40%;
  }
}
@media screen and (min-width: 1441px) {
  .pageAnchor > li a span::before {
    left: calc(100% + 0.8em);
    top: 50%;
  }
}
.pageAnchor > li a span::after {
  content: "";
  border-radius: 50%;
  background-color: #ffff00;
  display: block;
  position: absolute;
  top: 50%;
  left: calc(100% + 0.5em);
  transform: translate(0, -50%);
  height: 1.7rem;
  width: 1.7rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .pageAnchor > li a span::after {
    height: 2.4rem;
    width: 2.4rem;
  }
}
@media screen and (min-width: 1441px) {
  .pageAnchor > li a span::after {
    height: 3.5rem;
    width: 3.5rem;
  }
}

.jobList > li {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .jobList > li {
    flex-direction: row;
    gap: 5rem;
    align-items: center;
  }
}
.jobList > li + li {
  border-top: 1px solid #808080;
  margin-top: 3rem;
  padding-top: 3rem;
}
@media screen and (min-width: 768px) {
  .jobList > li + li {
    border-width: 2px;
    margin-top: 4rem;
    padding-top: 4rem;
  }
}
@media screen and (min-width: 1441px) {
  .jobList > li + li {
    margin-top: 6rem;
    padding-top: 6rem;
  }
}

@media screen and (min-width: 768px) {
  .jobList__image {
    max-width: 50rem;
    width: 41.6666666667%;
  }
}
@media screen and (min-width: 1441px) {
  .jobList__image {
    max-width: 75rem;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .jobList__inr {
    text-align: right;
    margin: -2.5rem -1rem 0 0;
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 768px) {
  .jobList__inr {
    flex: 1;
    text-align: center;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1441px) {
  .jobList__inr {
    font-size: 2rem;
  }
}
.jobList__inr p {
  text-align: left;
}
.jobList__inr p small {
  display: block;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .jobList__inr p small {
    text-align: right;
  }
}

.jobList__title {
  display: inline-block;
  text-align: center;
  position: relative;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .jobList__title {
    margin-bottom: 1em;
  }
}
@media screen and (min-width: 1441px) {
  .jobList__title {
    margin-bottom: 4rem;
  }
}
.jobList__title::after {
  content: "";
  background-color: #014099;
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: -0.2rem;
  top: -0.2rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .jobList__title::after {
    left: -0.5rem;
    top: -0.5rem;
  }
}
.jobList__title span {
  background-color: #fff;
  color: #014099;
  display: inline-block;
  position: relative;
  z-index: 2;
  border: 1px solid #014099;
  padding: 0.25em 0.75em;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .jobList__title span {
    border-width: 3px;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1441px) {
  .jobList__title span {
    font-size: 3.2rem;
  }
}

.bannerLinks {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .bannerLinks {
    margin-top: 8rem;
  }
}
@media screen and (min-width: 768px) {
  .bannerLinks ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6rem 4rem;
  }
}
.bannerLinks ul li {
  position: relative;
}
@media screen and (min-width: 768px) {
  .bannerLinks ul li {
    width: calc(50% - 34px);
  }
}
@media screen and (max-width: 767px) {
  .bannerLinks ul li:nth-child(n+2) {
    margin-top: 2rem;
  }
}
.bannerLinks ul li::after {
  background-color: #ffff00;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 0;
  right: -0.5rem;
  top: -0.5rem;
}
@media screen and (min-width: 768px) {
  .bannerLinks ul li::after {
    right: -1rem;
    top: -1rem;
  }
}
.bannerLinks ul li a {
  display: block;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .bannerLinks ul li a:hover {
    transform: translate(1rem, -1rem);
  }
}

.carrierPlanList > li {
  display: flex;
  gap: 1rem;
  position: relative;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .carrierPlanList > li {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}
@media screen and (min-width: 1441px) {
  .carrierPlanList > li {
    gap: 4rem;
  }
}
.carrierPlanList > li + li {
  padding-top: 8rem;
}
@media screen and (min-width: 768px) {
  .carrierPlanList > li + li {
    padding-top: 0;
    margin-top: 10rem;
  }
}
@media screen and (min-width: 1441px) {
  .carrierPlanList > li + li {
    margin-top: 23rem;
  }
}

.carrierPlanList__thum {
  position: relative;
}
@media screen and (min-width: 768px) {
  .carrierPlanList__thum {
    max-width: 50rem;
    width: 41.6666666667%;
  }
}
@media screen and (min-width: 1441px) {
  .carrierPlanList__thum {
    max-width: 75rem;
    width: 100%;
  }
}
.carrierPlanList__thum .arrow {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #ffd600 transparent transparent transparent;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: calc(100% + 3.5rem);
  border-width: 1.2rem 1.2rem 0 1.2rem;
}
@media screen and (min-width: 768px) {
  .carrierPlanList__thum .arrow {
    border-width: 1.5rem 1.6rem 0 1.6rem;
    bottom: calc(100% + 4rem);
  }
}
@media screen and (min-width: 1441px) {
  .carrierPlanList__thum .arrow {
    border-width: 3rem 3.5rem 0 3.5rem;
    bottom: calc(100% + 9rem);
  }
}
.carrierPlanList__thum .arrow::before, .carrierPlanList__thum .arrow::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #ffd600 transparent transparent transparent;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  border-width: 1.2rem 1.2rem 0 1.2rem;
}
@media screen and (min-width: 768px) {
  .carrierPlanList__thum .arrow::before, .carrierPlanList__thum .arrow::after {
    border-width: 1.5rem 1.6rem 0 1.6rem;
  }
}
@media screen and (min-width: 1441px) {
  .carrierPlanList__thum .arrow::before, .carrierPlanList__thum .arrow::after {
    border-width: 3rem 3.5rem 0 3.5rem;
  }
}
.carrierPlanList__thum .arrow::before {
  top: -2.8rem;
}
@media screen and (min-width: 768px) {
  .carrierPlanList__thum .arrow::before {
    top: -3.5rem;
  }
}
@media screen and (min-width: 1441px) {
  .carrierPlanList__thum .arrow::before {
    top: -7rem;
  }
}
.carrierPlanList__thum .arrow::after {
  bottom: -1.5rem;
}
@media screen and (min-width: 768px) {
  .carrierPlanList__thum .arrow::after {
    bottom: -2rem;
  }
}
@media screen and (min-width: 1441px) {
  .carrierPlanList__thum .arrow::after {
    bottom: -4rem;
  }
}
.carrierPlanList__thum .carrierPlanList__thum__label {
  background-color: #ffff00;
  border-top: 0.8rem solid #014099;
  display: inline-block;
  border-radius: 0 0 0.5rem 0.5rem;
  color: #014099;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 0.45em 1em 0.25em;
  font-size: 1.4rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .carrierPlanList__thum .carrierPlanList__thum__label {
    border-radius: 0 0 1rem 1rem;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1441px) {
  .carrierPlanList__thum .carrierPlanList__thum__label {
    font-size: 3.2rem;
  }
}

.carrierPlanList__inr {
  flex: 1;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .carrierPlanList__inr {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1441px) {
  .carrierPlanList__inr {
    font-size: 2rem;
  }
}

.featureList {
  color: #014099;
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .featureList {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1441px) {
  .featureList {
    font-size: 2.8rem;
  }
}
.featureList > li {
  position: relative;
  padding: 0 0 1.5rem;
}
@media screen and (min-width: 768px) {
  .featureList > li {
    padding: 0 0 4rem;
  }
}
.featureList > li::before {
  border: 1px solid #014099;
  content: "";
  display: block;
  height: 0.4rem;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .featureList > li::before {
    height: 0.7rem;
  }
}
.featureList > li:nth-child(n+2) {
  padding: 1.5rem 0;
}
@media screen and (min-width: 768px) {
  .featureList > li:nth-child(n+2) {
    padding: 4rem 0;
  }
}

.gHeader {
  background-color: #014099;
  padding: 1.5rem 2rem 1.5rem 1.5rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .gHeader {
    padding: 2rem 1rem 0;
  }
}
@media screen and (min-width: 1441px) {
  .gHeader {
    padding: 2rem 5rem 0;
  }
}
@media screen and (min-width: 768px) {
  .gHeader::after {
    background-color: #002666;
    border-radius: 50%;
    content: "";
    display: block;
    height: 183px;
    width: 183px;
    position: absolute;
    top: -91px;
    left: 50%;
    transform: translate(-50%, 0);
    transition: all 0.3s ease;
    z-index: 1;
  }
}
.gHeader a {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .gHeader.is-scroll::after {
    height: 15rem;
    width: 15rem;
  }
}
.gHeader.is-scroll .gHeader__logo {
  width: 16rem;
}
@media screen and (min-width: 768px) {
  .gHeader.is-scroll .gHeader__logo {
    margin: 0 auto 0.5rem;
    width: 20rem;
  }
}

.gHeader__trg {
  height: 1.5rem;
  width: 2.5rem;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 2rem;
}
@media screen and (min-width: 768px) {
  .gHeader__trg {
    display: none;
  }
}
.gHeader__trg > span {
  background-color: #fff;
  display: block;
  height: 0.15rem;
  width: 2.5rem;
  position: absolute;
}
.gHeader__trg > span:nth-child(1) {
  top: 0;
}
.gHeader__trg > span:nth-child(2) {
  transform: translate(0, -50%);
  top: 50%;
}
.gHeader__trg > span:nth-child(3) {
  bottom: 0;
}

.gHeader__bg {
  background-color: rgba(0, 0, 0, 0.6);
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all 0.3s ease;
}
.gHeader__bg.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

@media screen and (max-width: 767px) {
  .gHeader__nav {
    background-color: #014099;
    font-size: 1.2rem;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 102;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .gHeader__nav.is-active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
}
@media screen and (min-width: 768px) {
  .gHeader__nav {
    font-size: 1.4rem;
    margin: 0 auto;
    max-width: 1620px;
    position: relative;
    z-index: 2;
    white-space: nowrap;
  }
}
@media screen and (min-width: 1441px) {
  .gHeader__nav {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .gHeader__nav > ul {
    font-weight: 700;
    display: table;
    text-align: center;
    width: 100%;
  }
}
.gHeader__nav > ul > li {
  position: relative;
}
@media screen and (max-width: 767px) {
  .gHeader__nav > ul > li {
    border-top: 1px solid #001462;
    padding: 1rem 3.5rem;
  }
}
@media screen and (min-width: 768px) {
  .gHeader__nav > ul > li {
    text-align: center;
    display: table-cell;
    vertical-align: bottom;
    padding-top: 2rem;
  }
  .gHeader__nav > ul > li:hover::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, #c40018, rgba(196, 0, 24, 0));
  }
  .gHeader__nav > ul > li:hover .gHeader__nav__child {
    opacity: 1;
    pointer-events: auto;
  }
}
@media screen and (min-width: 768px) {
  .gHeader__nav > ul > li:first-child > a {
    border-left: 1px solid #fff;
  }
}
.gHeader__nav > ul > li > a {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .gHeader__nav > ul > li > a {
    display: block;
    border-right: 1px solid #fff;
    line-height: 1.1;
    height: 100%;
    padding: 0 1.5rem 1.5rem;
    position: relative;
    z-index: 2;
  }
}
@media screen and (min-width: 1441px) {
  .gHeader__nav > ul > li > a {
    padding: 0 3.5rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .gHeader__nav > ul > li.gHeader__nav--hasChild {
    align-items: flex-start;
    display: flex;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .gHeader__nav > ul > li.gHeader__nav--hasChild:hover::before {
    content: "";
    background: #01145e;
    display: block;
    height: 11.2583302492px;
    width: 28px;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 2;
  }
}
@media screen and (max-width: 767px) {
  .gHeader__nav > ul > li.gHeader__nav--hasChild > a {
    padding: 2rem 0 0 3.5rem;
    width: 12.5rem;
  }
}

.gHeader__nav__bottom {
  border-top: 1px solid #001462;
  font-size: 1rem;
  text-align: center;
  padding: 1rem;
}
.gHeader__nav__bottom a {
  margin: 0 1em;
  font-weight: 700;
}

.gHeader__nav__spHead {
  position: relative;
  padding: 1.5rem;
  line-height: 1;
}
.gHeader__nav__spHead .logo {
  display: block;
  margin: 0 auto;
  width: 16rem;
}
.gHeader__nav__spHead .logo img {
  height: auto;
  width: 100%;
}
.gHeader__nav__spHead .trg {
  display: block;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  height: 1.3rem;
  width: 1.3rem;
  transform: rotate(45deg);
}
.gHeader__nav__spHead .trg span {
  background-color: #fff;
  display: block;
  position: absolute;
  transform-origin: center;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  height: 0.1rem;
  width: 1.9rem;
}
.gHeader__nav__spHead .trg span:nth-child(1) {
  height: 1.9rem;
  width: 0.1rem;
}
.gHeader__logo {
  position: relative;
  z-index: 2;
  width: 22rem;
  transition: all 0.5s ease;
}
@media screen and (min-width: 768px) {
  .gHeader__logo {
    margin: 0 auto 2rem;
    width: 33rem;
  }
}
.gHeader__logo img {
  width: 100%;
  transform: all 0.5s ease;
}

@media screen and (max-width: 767px) {
  .gHeader__nav__child {
    background-color: #001462;
    font-size: 1.2rem;
    width: 25rem;
    position: relative;
    padding: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .gHeader__nav__child {
    opacity: 0;
    pointer-events: none;
    background-color: rgba(1, 64, 153, 0.8);
    font-size: 1.2rem;
    position: absolute;
    padding: 1rem 1rem;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 2;
  }
}
@media screen and (min-width: 1441px) {
  .gHeader__nav__child {
    font-size: 1.6rem;
    padding: 1rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .gHeader__nav__child.gHeader__nav__child--has-border:before {
    background-color: #014099;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .gHeader__nav__child > li {
    border-bottom: 1px solid #fff;
  }
}
@media screen and (max-width: 767px) {
  .gHeader__nav__child > li:nth-child(n+2) {
    margin-top: 1.5em;
  }
}
.gHeader__nav__child > li:last-child {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .gHeader__nav__child > li a {
    display: block;
    text-align: center;
    padding: 1rem 0;
  }
}
@media screen and (min-width: 768px) {
  .gHeader__nav__child > li a:hover {
    background-color: rgba(0, 0, 0, 0.2);
  }
}

.btnTop {
  position: fixed;
  bottom: 7rem;
  right: 1rem;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 4rem;
}
@media screen and (min-width: 768px) {
  .btnTop {
    bottom: 2rem;
    right: 2rem;
    width: 4rem;
  }
}
@media screen and (min-width: 1441px) {
  .btnTop {
    width: 5rem;
  }
}
.btnTop.is-active {
  pointer-events: all;
  opacity: 1;
}

.gFooter {
  background-color: #014099;
  margin-top: 3.5rem;
  padding: 2rem 2.8rem 8rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .gFooter {
    margin-top: 5rem;
    padding: 5rem 5rem 4rem;
  }
}
.gFooter a {
  color: #fff;
}

.gFooter__inr {
  margin: 0 auto;
  max-width: 120rem;
}
.gFooter__links {
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .gFooter__links {
    display: flex;
    gap: 1.5em;
    font-size: 1.4rem;
    margin-bottom: 6rem;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1441px) {
  .gFooter__links {
    font-size: 1.6rem;
    gap: 6rem;
  }
}

.gFooter__links__1 {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 0;
}
@media screen and (min-width: 768px) {
  .gFooter__links__1 {
    gap: 2rem;
    width: 83.3333333333%;
  }
}
@media screen and (min-width: 1441px) {
  .gFooter__links__1 {
    gap: 2em 3rem;
  }
}
.gFooter__links__1 > li {
  width: 60%;
}
@media screen and (min-width: 768px) {
  .gFooter__links__1 > li {
    width: calc(25% - 1.5rem);
  }
}
@media screen and (min-width: 1441px) {
  .gFooter__links__1 > li {
    width: calc(25% - 2.4rem);
  }
}
@media screen and (max-width: 767px) {
  .gFooter__links__1 > li.is_order_1, .gFooter__links__1 > li.is_order_3, .gFooter__links__1 > li.is_order_5, .gFooter__links__1 > li.is_order_7, .gFooter__links__1 > li.is_order_9, .gFooter__links__1 > li.is_order_11 {
    width: 40%;
  }
  .gFooter__links__1 > li.is_order_1 {
    order: 1;
  }
  .gFooter__links__1 > li.is_order_2 {
    order: 2;
  }
  .gFooter__links__1 > li.is_order_3 {
    order: 3;
  }
  .gFooter__links__1 > li.is_order_4 {
    order: 4;
  }
  .gFooter__links__1 > li.is_order_5 {
    order: 5;
  }
  .gFooter__links__1 > li.is_order_6 {
    order: 6;
  }
  .gFooter__links__1 > li.is_order_7 {
    order: 7;
  }
  .gFooter__links__1 > li.is_order_8 {
    order: 8;
  }
  .gFooter__links__1 > li.is_order_9 {
    order: 9;
  }
  .gFooter__links__1 > li.is_order_10 {
    order: 10;
  }
  .gFooter__links__1 > li.is_order_11 {
    order: 11;
  }
  .gFooter__links__1 > li.is_order_12 {
    order: 12;
  }
}
.gFooter__links__1 .is_small {
  display: inline-block;
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .gFooter__links__1 .is_small {
    font-size: 1.4rem;
    padding: 1rem 0.5rem;
  }
}
@media screen and (min-width: 1441px) {
  .gFooter__links__1 .is_small {
    font-size: 1.7rem;
    padding: 1rem 0.5rem;
  }
}

.gFooter__links__3 {
  display: flex;
  margin-top: 2rem;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .gFooter__links__3 {
    flex-direction: column;
    gap: 1em 0;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .gFooter__links__3 > li {
    width: calc(33.333% - 0.7rem);
  }
}
.gFooter__links__3 a {
  background-color: #fff;
  color: #014099;
  display: block;
  font-weight: 700;
  text-align: center;
  padding: 0.4em 0.25em 0.25em;
}
@media screen and (min-width: 768px) {
  .gFooter__links__3 a {
    min-width: 20rem;
    padding: 0.5em;
  }
}
@media screen and (min-width: 1441px) {
  .gFooter__links__3 a {
    min-width: 20rem;
  }
}

.gFooter__privacy {
  border-top: 1px solid #fff;
  text-align: center;
  margin-top: 1.5em;
  font-size: 1.1rem;
  padding: 0.5em;
}

.gFooter__bottom {
  border-top: 0.1rem solid #fff;
  padding-top: 2rem;
}
@media screen and (min-width: 768px) {
  .gFooter__bottom {
    padding-top: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .gFooter__bottom__inr {
    font-size: 1.3rem;
    text-align: center;
    margin: 0 auto;
    width: 25rem;
  }
}
@media screen and (min-width: 768px) {
  .gFooter__bottom__inr {
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1441px) {
  .gFooter__bottom__inr {
    font-size: 1.8rem;
  }
}

.gFooter__bottom__logo {
  display: inline-block;
  width: 22rem;
}
@media screen and (min-width: 768px) {
  .gFooter__bottom__logo {
    margin-right: 4rem;
    padding-right: 4rem;
    border-right: 1px solid #fff;
    width: 33.5rem;
  }
}
@media screen and (max-width: 767px) {
  .gFooter__bottom__official {
    border-top: 1px dashed #fff;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    display: inline-block;
    width: 100%;
  }
}
.gFooter__bottom__official img {
  margin-right: 0.5rem;
  width: 1.6rem;
}
@media screen and (min-width: 768px) {
  .gFooter__bottom__official img {
    width: 2.4rem;
  }
}

.floatingBanner {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 98;
}
@media screen and (max-width: 767px) {
  .floatingBanner {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .floatingBanner {
    overflow: hidden;
    top: 25rem;
  }
}
@media screen and (max-width: 767px) {
  .floatingBanner ul {
    align-items: center;
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .floatingBanner ul {
    transform: translate(1rem, 0);
  }
}
@media screen and (min-width: 1441px) {
  .floatingBanner ul {
    transform: translate(2rem, 0);
  }
}
@media screen and (max-width: 767px) {
  .floatingBanner ul li {
    flex: 1;
    width: 100%;
  }
}
.floatingBanner ul li a {
  color: #000;
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .floatingBanner ul li a {
    height: 6rem;
  }
}
@media screen and (min-width: 768px) {
  .floatingBanner ul li a {
    border: 0.2rem solid #fff;
    border-radius: 50%;
    margin: 1.5rem 0;
    height: 12rem;
    width: 12rem;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1441px) {
  .floatingBanner ul li a {
    border: 0.4rem solid #fff;
    height: 15rem;
    width: 15rem;
    font-size: 1.8rem;
  }
}
.floatingBanner ul li a.is-blue {
  background-color: #a4bbd6;
}
.floatingBanner ul li a.is-red {
  background-color: #e8b2b8;
}

/* ------------------------
Layout Page
 - 子ページ レイアウト 共通
------------------------ */
.l-breadcrumb {
  margin: 0 auto;
  padding: 0 1.5rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .l-breadcrumb {
    box-sizing: content-box;
    max-width: 1620px;
    padding: 0 5rem 3rem;
  }
}
@media screen and (min-width: 1441px) {
  .l-breadcrumb {
    padding: 0 15rem 3rem;
  }
}

@media screen and (min-width: 768px) {
  .l-pageKv {
    margin: 0 auto;
    max-width: 1920px;
  }
}

.l-pageWrap {
  padding: 1rem 0 0;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .l-pageWrap {
    padding: 3rem 0 0;
  }
}
.l-pageWrap.l-pageWrap--breadcrumbOverlap {
  padding-top: 0;
  position: relative;
}
.l-pageWrap.l-pageWrap--breadcrumbOverlap .l-breadcrumb {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  padding-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .l-pageWrap.l-pageWrap--breadcrumbOverlap .l-breadcrumb {
    padding-top: 3rem;
  }
}
.l-pageWrap.l-pageWrap--breadcrumbOverlap .breadcrumb {
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
  color: #fff;
}
.l-pageWrap.l-pageWrap--breadcrumbOverlap .breadcrumb a {
  color: #fff;
}

.l-pageInner {
  margin: 0 auto;
  padding: 0 2.8rem;
}
@media screen and (min-width: 768px) {
  .l-pageInner {
    box-sizing: content-box;
    max-width: 1620px;
    padding: 0 5rem 4rem;
  }
}
@media screen and (min-width: 1441px) {
  .l-pageInner {
    padding: 0 15rem 8rem;
  }
}
.l-pageInner.is_full {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .l-pageInner.is_full {
    margin: 0 auto;
    max-width: 1920px;
    padding: 0 0 10rem;
  }
}
@media screen and (min-width: 1441px) {
  .l-pageInner.is_full {
    padding: 0 0 15rem;
  }
}
.l-pageInner.is_1200 {
  padding: 0 2.8rem 2rem;
}
@media screen and (min-width: 768px) {
  .l-pageInner.is_1200 {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 5rem 10rem;
  }
}
@media screen and (min-width: 1441px) {
  .l-pageInner.is_1200 {
    padding: 0 0 15rem;
  }
}

.l-404 {
  padding-top: 4rem;
}
@media screen and (min-width: 768px) {
  .l-404 {
    padding-top: 10rem;
  }
}
@media screen and (min-width: 1441px) {
  .l-404 {
    padding-top: 15rem;
  }
}

/* ------------------------
Home
 - トップページ
------------------------ */
.kv {
  position: relative;
  overflow: hidden;
  width: 100%;
  z-index: 1;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .kv {
    margin-bottom: 4rem;
  }
}
.kv .swiper-pagination {
  position: initial;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .kv .swiper-pagination {
    margin-top: 2rem;
  }
}
.kv .swiper-pagination-bullet {
  opacity: 1;
  margin: 0 0.5rem !important;
  background-color: #fff;
  border: 1px solid #b2b2b2;
  height: 1rem;
  width: 1rem;
}
@media screen and (min-width: 768px) {
  .kv .swiper-pagination-bullet {
    height: 1.5rem;
    margin: 0 1rem !important;
    width: 1.5rem;
  }
}
.kv .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #b2b2b2;
}
@media screen and (min-width: 768px) {
  .kv .swiper-slide img {
    height: auto;
    width: 100%;
  }
}
.banners {
  padding: 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .banners {
    display: flex;
    gap: 4rem;
    justify-content: center;
    padding: 0 5rem;
  }
}
@media screen and (min-width: 1441px) {
  .banners {
    gap: 8rem;
    padding: 0 15rem;
  }
}
.banners a {
  display: block;
  max-width: 770px;
}
@media screen and (max-width: 767px) {
  .banners a + a {
    margin-top: 2em;
  }
}

.listen-og {
  margin-top: 5.6rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .listen-og {
    max-width: 1920px;
    margin: 8.5rem auto 0;
  }
}
@media screen and (min-width: 768px) {
  .listen-og::before {
    background-color: #014099;
    content: "";
    display: block;
    height: 1.8rem;
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 1;
  }
}

.homeIndex {
  position: relative;
  overflow: hidden;
  width: 100%;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .homeIndex {
    margin: -5rem auto 0;
  }
}
.homeIndex::after {
  content: "";
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  z-index: -1;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.homeIndex__bottom {
  margin-top: 10rem;
  padding: 0 2.8rem;
}
@media screen and (min-width: 768px) {
  .homeIndex__bottom {
    margin: 9rem auto 0;
    padding: 0 2rem;
    max-width: 124rem;
  }
}

.homeIndex__btns::before, .homeIndex__btns::after {
  content: "";
  display: block;
  height: 0.35rem;
  width: 100%;
  border: 0.1rem solid #4d4d4d;
}
@media screen and (min-width: 768px) {
  .homeIndex__btns::before, .homeIndex__btns::after {
    height: 0.7rem;
    border: 0.2rem solid #4d4d4d;
  }
}
.homeIndex__btns ul {
  display: flex;
  gap: 1.5rem 2rem;
  padding: 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .homeIndex__btns ul {
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 768px) {
  .homeIndex__btns ul {
    gap: 5rem;
    padding: 6rem 0;
  }
}
.homeIndex__btns ul > li {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .homeIndex__btns ul > li {
    width: calc(33.333% - 34px);
  }
}
@media screen and (max-width: 767px) {
  .homeIndex__btns ul > li:nth-child(1) {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .homeIndex__btns ul > li:nth-child(1) .btnA::after {
    height: 10rem;
    width: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .homeIndex__btns ul > li:nth-child(n+2) {
    width: calc(50% - 1rem);
  }
}
.homeIndex__btns ul .btnA {
  display: block;
  flex: 1;
}

.homeIndex__internship {
  padding-top: 2rem;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .homeIndex__internship {
    padding-top: 6rem;
  }
}
.homeIndex__internship::after {
  content: "";
  display: block;
  height: 0.35rem;
  width: 100%;
  border: 0.1rem solid #4d4d4d;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .homeIndex__internship::after {
    border-radius: 0.2rem;
    height: 0.7rem;
    margin-top: 6rem;
  }
}
.homeIndex__internship a {
  display: block;
}
@media screen and (min-width: 768px) {
  .homeIndex__internship a {
    padding: 0 2rem;
    margin: 0 auto;
    max-width: 56rem;
  }
}
@media screen and (min-width: 1441px) {
  .homeIndex__internship a {
    max-width: 72rem;
  }
}

.homeIndex__links {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .homeIndex__links {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .homeIndex__links::after {
    content: "";
    display: block;
    height: 0.35rem;
    width: 100%;
    border: 0.1rem solid #4d4d4d;
    margin-top: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .homeIndex__links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6rem 4rem;
  }
}
.homeIndex__links ul li {
  position: relative;
}
@media screen and (min-width: 768px) {
  .homeIndex__links ul li {
    width: calc(50% - 34px);
  }
}
@media screen and (max-width: 767px) {
  .homeIndex__links ul li:nth-child(n+2) {
    margin-top: 2rem;
  }
}
.homeIndex__links ul li::after {
  background-color: #ffff00;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 0;
  right: -0.5rem;
  top: -0.5rem;
}
@media screen and (min-width: 768px) {
  .homeIndex__links ul li::after {
    right: -1rem;
    top: -1rem;
  }
}
.homeIndex__links ul li a {
  display: block;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .homeIndex__links ul li a:hover {
    transform: translate(1rem, -1rem);
  }
}

.anchorFix {
  margin-top: -10rem;
  padding-top: 10rem;
}

.homeInformation {
  padding-top: 1.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .homeInformation {
    border-bottom: 0.2rem solid #4d4d4d;
    border-top: 0.2rem solid #4d4d4d;
    padding-top: 0;
    margin-top: 8rem;
  }
}
@media screen and (min-width: 768px) {
  .homeInformation::before {
    background-color: #4d4d4d;
    content: "";
    display: block;
    position: absolute;
    top: 1rem;
    left: 0;
    height: 0.1rem;
    width: 100%;
  }
  .homeInformation::after {
    background-color: #4d4d4d;
    content: "";
    display: block;
    position: absolute;
    bottom: 1rem;
    left: 0;
    height: 0.1rem;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .homeInformation__inr {
    align-items: stretch;
    display: flex;
    justify-content: center;
  }
}

.homeInformation__title {
  border-bottom: 1px solid #4d4d4d;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .homeInformation__title {
    height: 9.2rem;
    padding: 0 0 0 6rem;
  }
}
@media screen and (min-width: 1441px) {
  .homeInformation__title {
    height: 13.8rem;
    padding: 0 0 0 14rem;
  }
}

@media screen and (min-width: 768px) {
  .homeInformation__item {
    padding-top: 3rem;
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .homeInformation__item:nth-child(2) {
    border-left: 1px solid #4d4d4d;
  }
}
.homeInformation__item.is_event {
  padding: 0 2.8rem;
}
@media screen and (min-width: 768px) {
  .homeInformation__item.is_event {
    background-color: #ecf1f7;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .homeInformation__item.is_event .homeInformation__title {
    margin-bottom: 1rem;
    border-bottom: 0;
  }
}
.homeInformation__item.is_event .homeInformation__title img {
  max-width: 15rem;
}
@media screen and (min-width: 768px) {
  .homeInformation__item.is_event .homeInformation__title img {
    max-width: 22rem;
    transform: translate(0, 0.7rem);
  }
}
@media screen and (min-width: 1441px) {
  .homeInformation__item.is_event .homeInformation__title img {
    max-width: 33rem;
    transform: translate(0, 1rem);
  }
}
@media screen and (min-width: 768px) {
  .homeInformation__item.is_event .homeInformation__content {
    padding: 5rem 4rem 5rem 6rem;
  }
}
@media screen and (min-width: 1441px) {
  .homeInformation__item.is_event .homeInformation__content {
    padding: 7rem 10rem 7rem 14rem;
  }
}
.homeInformation__item.is_news {
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .homeInformation__item.is_news {
    background-color: #fbeff0;
    padding-top: 0;
  }
}
.homeInformation__item.is_news .homeInformation__title {
  padding-left: 2.8rem;
}
@media screen and (min-width: 768px) {
  .homeInformation__item.is_news .homeInformation__title {
    padding-left: 6rem;
  }
}
@media screen and (min-width: 1441px) {
  .homeInformation__item.is_news .homeInformation__title {
    padding-left: 8.4rem;
  }
}
.homeInformation__item.is_news .homeInformation__title img {
  max-width: 15rem;
}
@media screen and (min-width: 768px) {
  .homeInformation__item.is_news .homeInformation__title img {
    max-width: 22rem;
  }
}
@media screen and (min-width: 1441px) {
  .homeInformation__item.is_news .homeInformation__title img {
    max-width: 33rem;
  }
}

@media screen and (min-width: 768px) {
  .homeInformation__archive {
    position: relative;
    padding: 3rem 17rem 4rem 6rem;
  }
}
@media screen and (min-width: 1441px) {
  .homeInformation__archive {
    padding: 3rem 30rem 4rem 8.4rem;
  }
}
.homeInformation__archive ul li {
  border-bottom: 1px solid #4d4d4d;
  padding: 1rem 2.8rem 1rem;
}
@media screen and (min-width: 768px) {
  .homeInformation__archive ul li {
    padding: 1rem 0;
  }
}
@media screen and (min-width: 1441px) {
  .homeInformation__archive ul li {
    padding: 1.5rem 0;
  }
}
.homeInformation__archive ul li .date {
  background-color: #ffff00;
  display: inline-block;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .homeInformation__archive ul li .date {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1441px) {
  .homeInformation__archive ul li .date {
    font-size: 1.9rem;
  }
}
.homeInformation__archive ul li .title {
  color: #014099;
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin: 0.25em 0;
  font-size: 1.2rem;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .homeInformation__archive ul li .title {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1441px) {
  .homeInformation__archive ul li .title {
    font-size: 2.2rem;
  }
}
.homeInformation__archive ul li .title:hover {
  text-decoration: underline;
}
.homeInformation__archive ul li .text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .homeInformation__archive ul li .text {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1441px) {
  .homeInformation__archive ul li .text {
    font-size: 1.7rem;
  }
}
.homeInformation__archive .homeInformation__archive__btn {
  display: block;
  margin: 2rem auto 0;
  width: 7.5rem;
}
@media screen and (min-width: 768px) {
  .homeInformation__archive .homeInformation__archive__btn {
    margin: 0;
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translate(0, -50%);
    width: 10rem;
  }
}
@media screen and (min-width: 1441px) {
  .homeInformation__archive .homeInformation__archive__btn {
    right: 13rem;
    width: 14rem;
  }
}

.homeInformation__eventList {
  display: flex;
  gap: 2.6rem;
}
@media screen and (min-width: 768px) {
  .homeInformation__eventList {
    justify-content: flex-start;
    gap: 2rem;
  }
}
@media screen and (min-width: 1441px) {
  .homeInformation__eventList {
    gap: 7rem;
  }
}
.homeInformation__eventList > li {
  width: calc(50% - 1.3rem);
}
@media screen and (min-width: 768px) {
  .homeInformation__eventList > li {
    width: calc(50% - 1rem);
  }
}
@media screen and (min-width: 1441px) {
  .homeInformation__eventList > li {
    width: calc(50% - 3.5rem);
  }
}
.homeInformation__eventList a {
  color: #333;
}
.homeInformation__eventList .date {
  font-weight: 500;
  font-size: 1rem;
  margin: 0.5rem 0 0.5rem;
}
@media screen and (min-width: 768px) {
  .homeInformation__eventList .date {
    margin: 1rem 0 0.5rem;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1441px) {
  .homeInformation__eventList .date {
    font-size: 1.7rem;
  }
}
.homeInformation__eventList .title {
  color: #014099;
  font-weight: bold;
  line-height: 1.3;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .homeInformation__eventList .title {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1441px) {
  .homeInformation__eventList .title {
    font-size: 2.2rem;
  }
}

.indexList {
  padding-top: 6.2rem;
}
@media screen and (min-width: 768px) {
  .indexList {
    padding-top: 15rem;
  }
}
.indexList > li {
  position: relative;
  width: 100%;
}
.indexList > li:nth-child(n+2) {
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .indexList > li:nth-child(n+2) {
    margin-top: -2rem;
  }
}
@media screen and (min-width: 1441px) {
  .indexList > li:nth-child(n+2) {
    margin-top: -5rem;
  }
}
.indexList > li:nth-child(even) {
  text-align: right;
}
.indexList > li:nth-child(even) .indexList__image {
  margin-left: auto;
  padding-right: 0;
  padding-left: 2rem;
}
@media screen and (min-width: 768px) {
  .indexList > li:nth-child(even) .indexList__image {
    padding-left: 4rem;
  }
}
@media screen and (min-width: 1441px) {
  .indexList > li:nth-child(even) .indexList__image {
    padding-left: 6.8rem;
  }
}
.indexList > li:nth-child(even) .indexList__image__en {
  right: initial;
  left: 0;
}
@media screen and (min-width: 768px) {
  .indexList > li:nth-child(even) .indexList__image__en {
    left: 0;
  }
}
.indexList > li:nth-child(even) .indexList__title {
  right: initial;
  left: -1.2rem;
}
@media screen and (min-width: 768px) {
  .indexList > li:nth-child(even) .indexList__title {
    left: -1rem;
  }
}
@media screen and (min-width: 768px) {
  .indexList > li a:hover .indexList__image {
    transform: scale(1.1);
  }
}
@media screen and (min-width: 1441px) {
  .indexList > li a:hover .indexList__image {
    max-width: 1000px;
  }
}
@media screen and (min-width: 768px) {
  .indexList > li:nth-child(even) .indexList__image {
    transform-origin: right center;
    left: initial;
    right: -10rem;
  }
}

@media screen and (min-width: 768px) {
  .indexList__inr {
    max-width: 192rem;
    margin: 0 auto;
  }
}

.indexList__image {
  transition: left 0.5s 1s, right 0.5s 1s, opacity 0.5s 1s, transform 0.5s;
  opacity: 0;
  left: -10rem;
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  width: 72.9333333333%;
}
@media screen and (min-width: 768px) {
  .indexList__image {
    box-sizing: content-box;
    padding-right: 4rem;
    width: 44.0104166667%;
    transform-origin: left center;
  }
}
@media screen and (min-width: 1441px) {
  .indexList__image {
    padding-right: 6.8rem;
    max-width: 845px;
    width: 35.2083333333%;
  }
}

.indexList__image__en {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0.5rem;
  width: 2.5rem;
}
@media screen and (min-width: 768px) {
  .indexList__image__en {
    top: 1rem;
    width: 5rem;
  }
}
@media screen and (min-width: 1441px) {
  .indexList__image__en {
    top: 1rem;
    width: 8rem;
  }
}

.indexList__title {
  color: #014099;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  text-orientation: upright;
  position: absolute;
  font-size: 1.8rem;
  right: -1.2rem;
  top: 2rem;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .indexList__title {
    font-size: 2.4rem;
    margin-top: 4rem;
    top: 0;
    right: -1rem;
  }
}
@media screen and (min-width: 1441px) {
  .indexList__title {
    font-size: 4rem;
    margin-top: 6rem;
    right: -1rem;
  }
}

.lineStamp {
  padding: 3rem 2rem 0;
}
@media screen and (min-width: 768px) {
  .lineStamp {
    margin-top: 6rem;
    padding: 0 10rem;
  }
}
@media screen and (min-width: 1441px) {
  .lineStamp {
    margin-top: 8rem;
    padding: 0;
  }
}
.lineStamp a {
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .lineStamp a {
    max-width: 81.4rem;
  }
}
/* ------------------------
// 菱形の要素のアニメーション
------------------------ */
.indexList > li.is-active::before {
  opacity: 1;
  left: 0;
}
.indexList > li.is-active::after {
  opacity: 1;
  left: 0;
}
.indexList > li.is-active .indexList__image {
  opacity: 1;
  left: 0;
}
.indexList > li::before {
  opacity: 0;
  left: -100%;
  display: block;
  content: "";
  position: absolute;
  top: -6rem;
  width: 90%;
  height: 38vw;
  transform: skew(0, 17.6deg);
  mix-blend-mode: multiply;
  transition: all 1s;
  transform-origin: left top;
}
@media screen and (min-width: 768px) {
  .indexList > li::before {
    top: -15rem;
    width: 71%;
    height: 16.6666666667vw;
  }
}
.indexList > li::after {
  left: -100%;
  opacity: 0;
  transition: all 1s;
  transform-origin: left top;
}
.indexList > li:nth-child(even)::before {
  left: initial;
  right: -100%;
  transform: skew(0, -15deg);
  transform-origin: right top;
}
.indexList > li:nth-child(even).is-active .indexList__image {
  left: initial;
  right: 0;
}
.indexList > li:nth-child(even).is-active::before {
  right: 0;
}
.indexList > li:nth-child(1)::before, .indexList > li:nth-child(4)::before {
  background-color: #ffff00;
}
.indexList > li:nth-child(2)::before, .indexList > li:nth-child(5)::before {
  background-color: #00ffff;
}
.indexList > li:nth-child(2)::before {
  top: -3rem;
  width: 92%;
  height: 17rem;
  transform: skew(0, -17deg);
}
@media screen and (min-width: 768px) {
  .indexList > li:nth-child(2)::before {
    height: 18.2291666667vw;
    top: -14rem;
    transform: skew(0, -17deg);
    width: 75%;
  }
}
.indexList > li:nth-child(3)::before {
  background-color: #ff007d;
}
@media screen and (min-width: 768px) {
  .indexList > li:nth-child(3)::before {
    top: 7rem;
    height: 20.3125vw;
    width: 59.6%;
  }
}
.indexList > li:nth-child(4)::before {
  background-color: #ffff00;
  height: 18rem;
  top: -2rem;
  width: 92%;
}
@media screen and (min-width: 768px) {
  .indexList > li:nth-child(4)::before {
    top: 3rem;
    transform: skew(0, -17deg);
    width: 69%;
    height: 20.8333333333vw;
  }
}
.indexList > li:nth-child(4)::after {
  display: block;
  content: "";
  position: absolute;
  top: 22rem;
  width: 90%;
  background-color: #00ffff;
  height: 48vw;
  transform: skew(0, 17.6deg);
  mix-blend-mode: multiply;
}
@media screen and (min-width: 768px) {
  .indexList > li:nth-child(4)::after {
    top: 70rem;
    height: 18.2291666667vw;
    width: 52%;
  }
}

/* ------------------------
Page
 - 子ページ
------------------------ */
.pageTitle {
  border-bottom: 1px solid #4d4d4d;
  margin-bottom: 2.8rem;
}
@media screen and (min-width: 768px) {
  .pageTitle {
    margin-bottom: 7rem;
  }
}
@media screen and (min-width: 1441px) {
  .pageTitle {
    margin-bottom: 9rem;
  }
}
.pageTitle.is_news img {
  transform: translate(0, 0.1rem);
  width: 12.3rem;
}
@media screen and (min-width: 768px) {
  .pageTitle.is_news img {
    transform: translate(0, 0.4rem);
    width: 30rem;
  }
}
.pageTitle.is_full {
  border: 0;
}
.pageTitle.is_full .pageTitle__inr {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .pageTitle.is_full .pageTitle__inr {
    margin: 0 auto 10rem;
    max-width: 1920px;
  }
}
.pageTitle__inr {
  margin: 0 auto;
  padding: 0 2.8rem;
}
@media screen and (min-width: 768px) {
  .pageTitle__inr {
    box-sizing: content-box;
    max-width: 1620px;
    padding: 0 5rem;
  }
}
@media screen and (min-width: 1441px) {
  .pageTitle__inr {
    padding: 0 15rem;
  }
}

.singleContent__body {
  background-color: #e3eaf3;
  padding: 1.5rem 2rem;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .singleContent__body {
    padding: 3.5rem 5rem;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1441px) {
  .singleContent__body {
    padding: 7rem 10rem;
    font-size: 1.8rem;
  }
}
.singleContent__body p {
  line-height: 1.5;
}

.singleContent__head {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .singleContent__head {
    margin-bottom: 3.5rem;
  }
}
@media screen and (min-width: 1441px) {
  .singleContent__head {
    margin-bottom: 5rem;
  }
}
.singleContent__head .date {
  margin-bottom: 0.5em;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .singleContent__head .date {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1441px) {
  .singleContent__head .date {
    font-size: 2.7rem;
  }
}
.singleContent__head .title {
  color: #014099;
  font-weight: 700;
  line-height: 1.2;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .singleContent__head .title {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1441px) {
  .singleContent__head .title {
    font-size: 3.3rem;
  }
}

.pageKv {
  position: relative;
}
.pageKv::after {
  background-color: #014099;
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 0.8rem;
}
@media screen and (min-width: 768px) {
  .pageKv::after {
    height: 1.7rem;
  }
}

.l-pageInner.pageVoice {
  background: url(../img/voice/voice_bg_sp.svg) center top/100% auto no-repeat;
  padding-top: 3rem;
}
@media screen and (min-width: 768px) {
  .l-pageInner.pageVoice {
    padding-top: 12.6rem;
    background: url(../img/voice/voice_bg.svg) center -30rem/100% auto no-repeat;
  }
}

.single-voice.green .voiceKv__catch {
  color: #39b54a;
}
.single-voice.green .voiceKv__baroon__bg {
  background-color: #39b54a;
}
.single-voice.green .voiceContent__item__body .title {
  color: #39b54a;
}
.single-voice.red .voiceKv__catch {
  color: #c40018;
}
.single-voice.red .voiceKv__baroon__bg {
  background-color: #c40018;
}
.single-voice.red .voiceContent__item__body .title {
  color: #c40018;
}

.voiceKv {
  position: relative;
  margin: 0 auto 11.3rem;
}
@media screen and (min-width: 768px) {
  .voiceKv {
    border-bottom: 1.7rem solid #014099;
    margin: 0 auto 12rem;
    max-width: 1920px;
  }
}

.voiceKv__inr {
  position: absolute;
}
@media screen and (max-width: 767px) {
  .voiceKv__inr {
    top: 4rem;
    left: 2rem;
    width: calc(100% - 2rem);
    min-height: 29rem;
  }
}
@media screen and (min-width: 768px) {
  .voiceKv__inr {
    top: 10rem;
    left: 2rem;
  }
}
@media screen and (min-width: 1441px) {
  .voiceKv__inr {
    top: 20rem;
    left: 14rem;
  }
}
@media screen and (min-width: 768px) {
  .voiceKv__inr.right {
    left: initial;
    right: 2rem;
  }
}
@media screen and (min-width: 1441px) {
  .voiceKv__inr.right {
    right: 14rem;
  }
}

@media screen and (max-width: 767px) {
  .voiceKv__baroon {
    position: absolute;
    bottom: 0;
    left: 3.5rem;
    width: 26.3rem;
  }
}
@media screen and (min-width: 768px) {
  .voiceKv__baroon {
    position: relative;
    margin: 3.5rem 0 0 2.8rem;
    width: 35rem;
  }
}
@media screen and (min-width: 1441px) {
  .voiceKv__baroon {
    margin: 5rem 0 0 4rem;
    width: 52.7rem;
  }
}

.voiceKv__baroon__inr {
  color: #fff;
  text-align: center;
  position: absolute;
  width: 100%;
  z-index: 2;
  font-size: 1.5rem;
  left: 0;
  top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .voiceKv__baroon__inr {
    font-size: 1.8rem;
    top: 6rem;
  }
}
@media screen and (min-width: 1441px) {
  .voiceKv__baroon__inr {
    font-size: 2.8rem;
    top: 8rem;
  }
}
.voiceKv__baroon__inr .title {
  font-weight: 700;
  font-size: 1.3em;
}
@media screen and (min-width: 768px) {
  .voiceKv__baroon__inr .title {
    font-size: 1.1em;
  }
}
@media screen and (min-width: 1441px) {
  .voiceKv__baroon__inr .title {
    font-size: 1.2em;
  }
}
.voiceKv__baroon__inr .title::after {
  background-color: #fff;
  content: "";
  display: block;
  height: 0.1rem;
  width: 1.9rem;
  margin: 0.5rem auto;
}
@media screen and (min-width: 768px) {
  .voiceKv__baroon__inr .title::after {
    width: 2.1rem;
    margin: 0.5rem auto;
  }
}
@media screen and (min-width: 1441px) {
  .voiceKv__baroon__inr .title::after {
    width: 3rem;
    margin: 1rem auto;
  }
}

.voiceKv__baroon__bg {
  background-color: #00afff;
  mix-blend-mode: multiply;
  mask-image: url(../img/voice/voice_kv_baroon.svg);
  mask-repeat: no-repeat;
  mask-position: 0 0;
  mask-size: 100%;
  -webkit-mask-image: url(../img/voice/voice_kv_baroon.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  -webkit-mask-size: 100%;
  height: 12.9rem;
  width: 26.3rem;
}
@media screen and (min-width: 768px) {
  .voiceKv__baroon__bg {
    height: 18rem;
    width: 35rem;
  }
}
@media screen and (min-width: 1441px) {
  .voiceKv__baroon__bg {
    height: 25.8rem;
    width: 52.7rem;
  }
}

.voiceKv__catch {
  line-height: 1.67;
  color: #00afff;
  mix-blend-mode: multiply;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .voiceKv__catch {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 1441px) {
  .voiceKv__catch {
    font-size: 5rem;
  }
}

.voiceKv__image {
  width: 100%;
  height: 24.5rem;
}
@media screen and (min-width: 768px) {
  .voiceKv__image {
    height: 60rem;
  }
}
@media screen and (min-width: 1441px) {
  .voiceKv__image {
    height: 90rem;
  }
}
.voiceKv__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.voiceContent {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.8rem;
}
@media screen and (min-width: 768px) {
  .voiceContent {
    padding: 0 5rem;
  }
}
@media screen and (min-width: 1441px) {
  .voiceContent {
    padding: 0;
  }
}

.voiceContent__item {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .voiceContent__item {
    flex-direction: row-reverse;
    gap: 3rem;
  }
}
@media screen and (min-width: 1441px) {
  .voiceContent__item {
    gap: 6rem;
  }
}
.voiceContent__item + .voiceContent__item {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .voiceContent__item + .voiceContent__item {
    margin-top: 11rem;
  }
}
@media screen and (min-width: 768px) {
  .voiceContent__item:nth-child(3n+1) {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .voiceContent__item:nth-child(3n+2) {
    flex-direction: column;
    gap: 3rem;
  }
}
@media screen and (min-width: 1441px) {
  .voiceContent__item:nth-child(3n+2) {
    gap: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .voiceContent__item:nth-child(3n+2) .voiceContent__item__image {
    width: 100%;
  }
}
.voiceContent__item:nth-child(3n+2) .voiceContent__item__body .title {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .voiceContent__item:nth-child(3n+3) {
    flex-direction: row;
  }
}

.voiceContent__item__body {
  flex: 1;
  width: 100%;
}
.voiceContent__item__body .title {
  align-items: flex-start;
  display: flex;
  color: #00afff;
  margin-bottom: 0.5em;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .voiceContent__item__body .title {
    font-size: 2.2rem;
    margin-bottom: 1em;
  }
}
@media screen and (min-width: 1441px) {
  .voiceContent__item__body .title {
    font-size: 3.2rem;
    margin-bottom: 1.5em;
  }
}
.voiceContent__item__body .title::before {
  content: "ー";
  display: block;
  margin-right: 0.25em;
}
.voiceContent__item__body p {
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .voiceContent__item__body p {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1441px) {
  .voiceContent__item__body p {
    font-size: 2rem;
  }
}

.voiceContent__item__image {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .voiceContent__item__image {
    width: 57.1428571429%;
  }
}
@media screen and (min-width: 1441px) {
  .voiceContent__item__image {
    width: 80rem;
  }
}

.voiceContent__bottom {
  margin-top: 4rem;
  margin-bottom: -4rem;
}
@media screen and (min-width: 768px) {
  .voiceContent__bottom {
    margin-top: 10rem;
    margin-bottom: -5rem;
  }
}

.voiceKvImage {
  margin: 0 auto 11.3rem;
  border-bottom: 0.7rem solid #014099;
}
@media screen and (min-width: 768px) {
  .voiceKvImage {
    border-bottom: 1.7rem solid #014099;
    margin: 0 auto 12rem;
    max-width: 1920px;
  }
}
.voiceKvImage img {
  width: 100%;
  height: auto;
}

.message .pageTitle {
  margin-bottom: 0;
}
.message .pageTitle .pageTitle__inr {
  margin-bottom: 0;
  position: relative;
}
.message .pageTitle .pageTitle__note {
  color: #fff;
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  z-index: 2;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .message .pageTitle .pageTitle__note {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1441px) {
  .message .pageTitle .pageTitle__note {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .message .l-pageInner.is_1200 {
    padding-left: 0;
    padding-right: 0;
  }
}

.messageContent__bottom {
  max-width: 1920px;
  margin: 0 auto;
}

.messageContent__bottom__title {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .messageContent__bottom__title {
    padding: 0 5rem;
  }
}

@media screen and (min-width: 768px) {
  .messageContent__sec + .messageContent__sec {
    padding-bottom: 7rem;
  }
}
.messageContent__sec + .messageContent__sec::before {
  content: "";
  display: block;
  border-bottom: 1px solid #014099;
  border-top: 1px solid #014099;
  height: 1rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .messageContent__sec + .messageContent__sec::before {
    border-width: 2px;
  }
}

@media screen and (max-width: 767px) {
  .messageContent__sec__inr {
    padding: 0 2.8rem 3rem;
  }
}

.messageBox {
  position: relative;
}

.messageBox__child {
  max-width: 1025px;
}
@media screen and (min-width: 768px) {
  .messageBox__child {
    width: 53.3854166667%;
  }
}
.messageBox__inr {
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .messageBox__inr {
    background-color: #d2dded;
    font-size: 1.6rem;
    max-width: 102.5rem;
    padding: 50px 120px 50px 50px;
  }
}
@media screen and (min-width: 1441px) {
  .messageBox__inr {
    font-size: 2rem;
    padding: 70px 190px 70px 150px;
  }
}

.messageBox__title {
  color: #014099;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .messageBox__title {
    font-size: 1.6em;
    margin-bottom: 1em;
  }
}
.messageBox__word p {
  text-indent: 1em;
}

.messageBox__name {
  text-align: right;
  padding-top: 1em;
}
@media screen and (min-width: 768px) {
  .messageBox__name {
    font-size: 1.3em;
  }
}
.messageBox__image {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .messageBox__image {
    position: absolute;
    right: 0;
    top: -6rem;
  }
}
@media screen and (min-width: 1441px) {
  .messageBox__image {
    top: -9rem;
  }
}

.work .pageTitle {
  margin-bottom: 0;
}
.work .pageTitle .pageTitle__inr {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .work .l-pageInner.is_1200 {
    padding-left: 0;
    padding-right: 0;
  }
}

.workContent__bottom {
  background-color: #e3e9f1;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 2.8rem 6rem;
}
@media screen and (min-width: 768px) {
  .workContent__bottom {
    padding: 0 5rem 15rem;
  }
}

.workContent__bottom__title {
  max-width: 1200px;
  margin: 0 auto;
}

.workContent__sec + .workContent__sec {
  margin-bottom: -3.5rem;
}
@media screen and (min-width: 768px) {
  .workContent__sec + .workContent__sec {
    margin-bottom: -5rem;
  }
}
.workContent__sec + .workContent__sec::before {
  content: "";
  display: block;
  border-bottom: 1px solid #014099;
  border-top: 1px solid #014099;
  height: 1rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .workContent__sec + .workContent__sec::before {
    border-width: 2px;
  }
}
@media screen and (max-width: 767px) {
  .workContent__sec + .workContent__sec .workContent__sec__inr {
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .workContent__sec__inr {
    padding: 0 2.8rem 3rem;
  }
}

@media screen and (max-width: 767px) {
  .workInformation__list > li {
    position: relative;
    padding-top: 7rem;
  }
}
@media screen and (min-width: 768px) {
  .workInformation__list > li {
    display: flex;
    gap: 5rem;
  }
}
@media screen and (min-width: 1441px) {
  .workInformation__list > li {
    gap: 7rem;
  }
}
.workInformation__list > li + li {
  position: relative;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .workInformation__list > li + li {
    margin-top: 0;
    padding-top: 30rem;
  }
}
@media screen and (min-width: 1441px) {
  .workInformation__list > li + li {
    padding-top: 41rem;
  }
}
@media screen and (min-width: 768px) {
  .workInformation__list > li + li::before {
    background-color: #ccc;
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    left: 0;
    transform-origin: top left;
    transform: skew(0, 10deg);
    top: 9rem;
  }
}
@media screen and (min-width: 1441px) {
  .workInformation__list > li + li::before {
    top: 13rem;
  }
}

.workInformation__image {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .workInformation__image {
    margin-bottom: 0;
    width: 58.3333333333%;
  }
}
@media screen and (min-width: 1441px) {
  .workInformation__image {
    width: 63.5833333333%;
  }
}

.workInformation__inr {
  flex: 1;
}
.workInformation__inr p {
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .workInformation__inr p {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1441px) {
  .workInformation__inr p {
    font-size: 2rem;
  }
}

.workInformation__title {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .workInformation__title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }
}

.projectContent {
  margin: 0 auto;
  max-width: 1200px;
}

.projectContent__sec + .projectContent__sec {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .projectContent__sec + .projectContent__sec {
    margin-top: 7rem;
  }
}
@media screen and (min-width: 1441px) {
  .projectContent__sec + .projectContent__sec {
    margin-top: 10rem;
  }
}

.projectContent__title {
  background-color: #fff;
  color: #014099;
  text-align: center;
  padding: 0.25em;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .projectContent__title {
    font-size: 2rem;
    margin-bottom: 2.8rem;
  }
}
@media screen and (min-width: 1441px) {
  .projectContent__title {
    font-size: 3.2rem;
    margin-bottom: 4rem;
  }
}

@media screen and (min-width: 768px) {
  .projectContent__list {
    display: flex;
    gap: 9rem;
  }
}
@media screen and (min-width: 1441px) {
  .projectContent__list {
    gap: 13rem;
  }
}
.projectContent__list > li {
  text-align: center;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .projectContent__list > li {
    width: calc(50% - 4.5rem);
  }
}
@media screen and (min-width: 1441px) {
  .projectContent__list > li {
    width: calc(50% - 6.5rem);
  }
}
@media screen and (max-width: 767px) {
  .projectContent__list > li + li {
    margin-top: 3rem;
  }
}
.projectContent__list > li .projectContent__list__title {
  color: #014099;
  margin-top: 0.5em;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .projectContent__list > li .projectContent__list__title {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1441px) {
  .projectContent__list > li .projectContent__list__title {
    font-size: 2.8rem;
  }
}

.projectContent__list__thum .swiper-container {
  position: relative;
}
.projectContent__list__thum .btnPlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.scheduleContent__bottom {
  background-color: #e3e9f1;
}
@media screen and (max-width: 767px) {
  .scheduleContent__bottom {
    padding-top: 2.5rem;
    margin: 2rem auto 0;
    width: calc(100% - 5.6rem);
  }
}
@media screen and (min-width: 768px) {
  .scheduleContent__bottom {
    padding-top: 9rem;
    margin-bottom: -5rem;
  }
}

.facilityContent {
  position: relative;
  padding-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .facilityContent {
    align-items: center;
    display: flex;
    gap: 4rem;
    padding-top: 0;
  }
}
@media screen and (min-width: 1441px) {
  .facilityContent {
    gap: 8rem;
  }
}

.facilityContent__image {
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .facilityContent__image {
    margin-bottom: 0;
    width: 42rem;
  }
}
@media screen and (min-width: 1441px) {
  .facilityContent__image {
    width: 68rem;
  }
}

.facilityContent__info {
  flex: 1;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .facilityContent__info {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1441px) {
  .facilityContent__info {
    font-size: 2.6rem;
  }
}

.facilityContent__title {
  color: #014099;
  display: inline-block;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .facilityContent__title {
    white-space: nowrap;
    font-size: 1.5rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 2;
  }
}
@media screen and (min-width: 768px) {
  .facilityContent__title {
    font-size: 2.1rem;
  }
}
@media screen and (min-width: 1441px) {
  .facilityContent__title {
    font-size: 3.2rem;
  }
}
.facilityContent__title::after {
  border: 1px solid #014099;
  content: "";
  display: block;
  margin: 0.5rem 0 2rem;
  height: 0.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .facilityContent__title::after {
    height: 0.6rem;
  }
}

@media screen and (min-width: 768px) {
  .about-us .pageTitle.is_full {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .about-us .pageTitle.is_full .pageTitle__inr {
    margin-bottom: 0;
  }
}

.about-usContent__banner {
  padding: 0 2.8rem 2rem;
}
@media screen and (min-width: 768px) {
  .about-usContent__banner {
    padding: 5rem;
  }
}
.about-usContent__banner a {
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about-usContent__banner a {
    margin: 0 auto;
    max-width: 77rem;
  }
}

.about-usContent__section::before {
  content: "";
  display: block;
  border-bottom: 1px solid #014099;
  border-top: 1px solid #014099;
  height: 0.7rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about-usContent__section::before {
    border-width: 2px;
    height: 1rem;
  }
}
.about-usContent__section + .about-usContent__section {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .about-usContent__section + .about-usContent__section {
    margin-top: 16rem;
  }
}

.about-usContent__section__inr {
  margin: 0 auto;
  padding: 0 2.8rem;
}
@media screen and (min-width: 768px) {
  .about-usContent__section__inr {
    padding: 0 5rem;
    max-width: 120rem;
  }
}

.iwakiFc {
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .iwakiFc {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1441px) {
  .iwakiFc {
    font-size: 2rem;
  }
}

.iwakiFc__title {
  color: #014099;
  text-align: center;
  margin: 1em 0 0.5em;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .iwakiFc__title {
    margin: 1em 0 0.5em;
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1441px) {
  .iwakiFc__title {
    font-size: 3.2rem;
  }
}

.iwakiFc__banner {
  display: block;
  max-width: 20.8rem;
  margin: 2rem auto 3rem;
}
@media screen and (min-width: 768px) {
  .iwakiFc__banner {
    max-width: 62.6rem;
    margin: 5rem auto 9rem;
  }
}

.iwakiFc__word {
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .iwakiFc__word {
    display: flex;
    flex-direction: row-reverse;
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .iwakiFc__word figure {
    float: right;
    margin: 0.5rem 0 0 0.5rem;
    width: 33.333%;
  }
}
@media screen and (min-width: 768px) {
  .iwakiFc__word figure {
    width: 100%;
  }
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.internship-reviewContent {
  margin: 0 auto;
  max-width: 120rem;
}
@media screen and (min-width: 768px) {
  .internship-reviewContent {
    padding: 0 5rem;
  }
}

.internship-reviewContent__kv {
  margin-top: -1rem;
  margin-bottom: 3rem;
  padding: 0 2.8rem;
}
@media screen and (min-width: 768px) {
  .internship-reviewContent__kv {
    margin-top: -4rem;
    margin-bottom: 6rem;
    padding: 0;
  }
}
.internship-reviewContent__kv img {
  display: block;
}
@media screen and (min-width: 768px) {
  .internship-reviewContent__kv img {
    margin: 0 auto 4rem;
    max-width: 50rem;
  }
}
@media screen and (min-width: 1441px) {
  .internship-reviewContent__kv img {
    max-width: 83.5rem;
  }
}
.internship-reviewContent__kv p {
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .internship-reviewContent__kv p {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .internship-reviewContent__section {
    padding: 0 2.8rem;
  }
}
.internship-reviewContent__section + .internship-reviewContent__section {
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .internship-reviewContent__section + .internship-reviewContent__section {
    padding-top: 10rem;
  }
}

.internship-reviewContent__contents {
  margin: 0 0 0 -1.2rem;
}
@media screen and (min-width: 768px) {
  .internship-reviewContent__contents {
    margin: 0;
    padding: 0 9rem;
  }
}

.internship-reviewContent__title {
  background-color: #014099;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  padding: 0.4em;
}
@media screen and (min-width: 768px) {
  .internship-reviewContent__title {
    margin-bottom: 5rem;
    font-size: 2.4rem;
    padding: 0.25em;
  }
}
@media screen and (min-width: 1441px) {
  .internship-reviewContent__title {
    font-size: 3.2rem;
  }
}

.internship-reviewContent__btn {
  margin: 2rem -2.8rem 0;
  width: calc(100% + 5.6rem);
}
@media screen and (min-width: 768px) {
  .internship-reviewContent__btn {
    margin: 2rem auto 0;
    max-width: 74.3rem;
    width: 61.9166666667%;
  }
}

.curriculumList {
  margin-top: 3rem;
  gap: 3rem;
  padding: 0 2rem;
}
@media screen and (min-width: 768px) {
  .curriculumList {
    align-items: flex-start;
    display: flex;
    margin-top: 5rem;
    padding: 0;
  }
}

.curriculumList__title {
  color: #014099;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .curriculumList__title {
    text-align: center;
    border-bottom: 1px solid #014099;
    border-top: 1px solid #014099;
    padding: 0.15em;
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .curriculumList__title {
    border: 2px solid #014099;
    text-align: center;
    padding: 1.5rem 2rem;
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1441px) {
  .curriculumList__title {
    padding: 3rem 4rem;
    font-size: 3rem;
  }
}
.curriculumList__title span {
  font-size: 0.8em;
}
@media screen and (min-width: 768px) {
  .curriculumList__title span {
    display: block;
  }
}

.curriculumList__items {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  font-feature-settings: "palt";
  gap: 0 1em;
  font-weight: 600;
  font-size: 1.3rem;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .curriculumList__items {
    color: #014099;
    flex-direction: row;
    font-size: 2rem;
  }
}
@media screen and (min-width: 1441px) {
  .curriculumList__items {
    font-size: 2.4rem;
  }
}

.internshipVoices {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 0;
  padding-top: 1rem;
}
@media screen and (min-width: 768px) {
  .internshipVoices {
    padding-top: 0;
    padding-bottom: 6rem;
    gap: 8rem 6rem;
  }
}
@media screen and (min-width: 1441px) {
  .internshipVoices {
    gap: 8rem 10rem;
  }
}
.internshipVoices > li {
  position: relative;
  padding-right: 7.4rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .internshipVoices > li {
    padding-right: 10rem;
    width: calc(50% - 3rem);
  }
}
@media screen and (min-width: 1441px) {
  .internshipVoices > li {
    padding-right: 12rem;
    width: calc(50% - 5rem);
  }
}
.internshipVoices > li::after {
  content: "";
  border: 1px solid #014099;
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  height: 0.7rem;
  width: 100%;
  box-shadow: 0 4px 4px -1px rgba(0, 0, 0, 0.4);
}
.internshipVoices > li.is_red::after {
  border-color: #c40018;
}
.internshipVoices > li.is_red .internshipVoices__inr {
  background-color: #fef3f3;
}
.internshipVoices > li.is_red .square {
  background-color: #fef3f3;
}
.internshipVoices > li.is_red .square::before, .internshipVoices > li.is_red .square::after {
  background-color: #fef3f3;
}

.internshipVoices__inr {
  background-color: #ecf1f8;
  border-radius: 1rem 1rem 0 0;
  position: relative;
  font-feature-settings: "palt";
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 1.2rem;
  padding: 1.5rem 2.5rem 1rem;
  min-height: 22rem;
}
@media screen and (min-width: 768px) {
  .internshipVoices__inr {
    border-radius: 1rem 1rem 0 0;
    font-size: 1.4rem;
    min-height: 30rem;
    padding: 2rem 3rem;
  }
}
@media screen and (min-width: 1441px) {
  .internshipVoices__inr {
    font-size: 2rem;
  }
}
.internshipVoices__inr .name {
  text-align: right;
  margin-top: 1em;
}
.internshipVoices__inr .square {
  background-color: #ecf1f8;
  display: block;
  position: absolute;
  left: 100%;
  height: 1.8rem;
  width: 1.8rem;
  top: 5rem;
}
@media screen and (min-width: 768px) {
  .internshipVoices__inr .square {
    height: 3rem;
    width: 3rem;
    top: 9rem;
  }
}
.internshipVoices__inr .square::before, .internshipVoices__inr .square::after {
  background-color: #ecf1f8;
  content: "";
  display: block;
  position: absolute;
}
.internshipVoices__inr .square::before {
  right: -2rem;
  top: 1.8rem;
  height: 1.4rem;
  width: 1.4rem;
}
@media screen and (min-width: 768px) {
  .internshipVoices__inr .square::before {
    right: -4rem;
    top: 3.5rem;
    height: 2.3rem;
    width: 2.3rem;
  }
}
.internshipVoices__inr .square::after {
  right: -0.5rem;
  top: 4rem;
  height: 0.9rem;
  width: 0.9rem;
}
@media screen and (min-width: 768px) {
  .internshipVoices__inr .square::after {
    right: -2rem;
    top: 7rem;
    height: 1.5rem;
    width: 1.5rem;
  }
}

.internshipVoices__deco {
  position: absolute;
  z-index: 2;
  bottom: 0rem;
  right: -2.5rem;
  width: 10.8rem;
}
@media screen and (min-width: 768px) {
  .internshipVoices__deco {
    bottom: -5.6rem;
    right: -3rem;
    width: 16rem;
  }
}
@media screen and (min-width: 1441px) {
  .internshipVoices__deco {
    bottom: -8rem;
    right: -9rem;
    width: 24.6rem;
  }
}
.internshipVoices__deco.is_1 {
  bottom: -4rem;
}
@media screen and (min-width: 768px) {
  .internshipVoices__deco.is_1 {
    bottom: -5.6rem;
  }
}
@media screen and (min-width: 1441px) {
  .internshipVoices__deco.is_1 {
    bottom: -8rem;
  }
}
@media screen and (min-width: 768px) {
  .internshipVoices__deco.is_2 {
    bottom: 0.7rem;
  }
}
@media screen and (min-width: 1441px) {
  .internshipVoices__deco.is_2 {
    bottom: 1rem;
  }
}
.internshipVoices__deco.is_3 {
  bottom: -2.1rem;
}
@media screen and (min-width: 768px) {
  .internshipVoices__deco.is_3 {
    bottom: -2.1rem;
  }
}
@media screen and (min-width: 1441px) {
  .internshipVoices__deco.is_3 {
    bottom: -3rem;
  }
}
.internshipVoices__deco.is_4 {
  bottom: -2.4rem;
}
@media screen and (min-width: 768px) {
  .internshipVoices__deco.is_4 {
    bottom: -1.4rem;
  }
}
@media screen and (min-width: 1441px) {
  .internshipVoices__deco.is_4 {
    bottom: -2rem;
  }
}

@media screen and (max-width: 767px) {
  .dataContent {
    padding: 0 2.8rem 2rem;
  }
}
@media screen and (min-width: 768px) {
  .dataContent {
    padding-bottom: 10rem;
  }
}

.dataContent__catch {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 4.5rem;
}
@media screen and (min-width: 768px) {
  .dataContent__catch {
    font-size: 2rem;
    margin-bottom: 9rem;
  }
}
@media screen and (min-width: 1441px) {
  .dataContent__catch {
    font-size: 2.6rem;
    margin-bottom: 12rem;
  }
}

.dataContent__section + .dataContent__section {
  padding-top: 4rem;
}
@media screen and (min-width: 768px) {
  .dataContent__section + .dataContent__section {
    padding-top: 10rem;
  }
}
@media screen and (min-width: 1441px) {
  .dataContent__section + .dataContent__section {
    padding-top: 15rem;
  }
}

@media screen and (min-width: 768px) {
  .dataContent__section__inr {
    padding: 0 5rem;
    max-width: 1200px;
    margin: 0 auto;
  }
}
.dataContent__section__inr.is__full {
  max-width: initial;
  padding: 0;
}

.dataContent__section__title {
  background: url(../img/data/title_bg_sp.webp) 0 0/100% 100% no-repeat;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 1.8rem;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .dataContent__section__title {
    background-image: url(../img/data/title_bg.webp);
    font-size: 2.5714285714vw;
    padding: 1.4rem 6rem;
    margin-bottom: 3.5rem;
  }
}
@media screen and (min-width: 1441px) {
  .dataContent__section__title {
    font-size: 3.6rem;
    padding: 2rem;
    margin-bottom: 5rem;
  }
}
.dataContent__section__title span {
  font-size: 0.75em;
}
@media screen and (min-width: 768px) {
  .dataContent__section__title.dataContent__section__title--2 {
    background-image: url(../img/data/title_bg_2.webp);
  }
}

.dataContent__section__title__deco {
  position: absolute;
  top: 50%;
  left: -1rem;
  transform: translate(0, -50%);
  width: 10rem;
}
@media screen and (min-width: 768px) {
  .dataContent__section__title__deco {
    left: 0;
    width: 15rem;
  }
}
@media screen and (min-width: 1441px) {
  .dataContent__section__title__deco {
    width: 25rem;
  }
}
.dataContent__section__title__deco.is_2 {
  left: -0.5rem;
}
@media screen and (min-width: 768px) {
  .dataContent__section__title__deco.is_2 {
    left: -2rem;
  }
}
@media screen and (min-width: 1441px) {
  .dataContent__section__title__deco.is_2 {
    left: -2rem;
  }
}
@media screen and (min-width: 768px) {
  .dataContent__section__title__deco.is_3 {
    left: -2rem;
  }
}
@media screen and (min-width: 1441px) {
  .dataContent__section__title__deco.is_3 {
    left: -2rem;
  }
}
.dataContent__section__title__deco.is_4 {
  left: 0rem;
}
@media screen and (min-width: 768px) {
  .dataContent__section__title__deco.is_4 {
    left: -2rem;
  }
}
@media screen and (min-width: 1441px) {
  .dataContent__section__title__deco.is_4 {
    left: -2rem;
  }
}
@media screen and (min-width: 768px) {
  .dataContent__section__title__deco.is_5 {
    left: -4rem;
  }
}
@media screen and (min-width: 1441px) {
  .dataContent__section__title__deco.is_5 {
    left: -10rem;
  }
}
@media screen and (min-width: 768px) {
  .dataContent__section__title__deco.is_6 {
    left: -2rem;
  }
}
@media screen and (min-width: 1441px) {
  .dataContent__section__title__deco.is_6 {
    left: -6.5rem;
  }
}
.dataContent__section__title__deco.is_7 {
  left: -2rem;
}
@media screen and (min-width: 768px) {
  .dataContent__section__title__deco.is_7 {
    left: -2rem;
  }
}
@media screen and (min-width: 1441px) {
  .dataContent__section__title__deco.is_7 {
    left: -2rem;
  }
}

.data__01__01 {
  margin: 0 auto;
  max-width: 22.5rem;
}
@media screen and (min-width: 768px) {
  .data__01__01 {
    margin: 5rem auto 0;
    max-width: 40rem;
  }
}
@media screen and (min-width: 1441px) {
  .data__01__01 {
    max-width: 56rem;
  }
}

.data__02__01 {
  background: url(../img/data/data_02_bg.webp) center bottom/100% auto no-repeat;
  text-align: center;
  line-height: 1.75;
  font-weight: 600;
  font-size: 1.1rem;
  padding-bottom: 5%;
}
@media screen and (min-width: 768px) {
  .data__02__01 {
    background-position: center;
    background-size: 400px auto;
    font-size: 1.6rem;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1441px) {
  .data__02__01 {
    background-size: 565px auto;
    font-size: 2rem;
  }
}
.data__02__01 .fs-m {
  font-weight: 700;
  color: #ff007d;
  display: inline-block;
  margin-top: 0.5em;
}

.data__03 .dataContent__section__title {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .data__03 .dataContent__section__title {
    margin-bottom: 8rem;
  }
}

@media screen and (min-width: 768px) {
  .data__03__list {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid #b2b2b2;
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .data__03__list::before {
    background-color: #b2b2b2;
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 2px;
  }
}

@media screen and (min-width: 768px) {
  .data__03__list__item {
    border-top: 2px solid #b2b2b2;
    display: flex;
    justify-content: center;
    padding: 10rem 2rem;
    width: 50%;
  }
}
@media screen and (min-width: 1441px) {
  .data__03__list__item {
    justify-content: flex-end;
    padding: 14.5rem 12rem 15rem 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .data__03__list__item:nth-child(2n) {
    padding: 10rem 2rem;
  }
}
@media screen and (min-width: 1441px) {
  .data__03__list__item:nth-child(2n) {
    justify-content: flex-start;
    padding: 14.5rem 1.5rem 15rem 12rem;
  }
}
@media screen and (max-width: 767px) {
  .data__03__list__item + .data__03__list__item {
    padding-top: 7.5rem;
  }
}

@media screen and (min-width: 768px) {
  .data__03__list__item__inr {
    max-width: 56.3rem;
    width: 100%;
  }
}

.numImage {
  margin: 0 auto;
  text-align: right;
}

.data__03__01 .numImage {
  max-width: 23rem;
}
@media screen and (min-width: 768px) {
  .data__03__01 .numImage {
    max-width: 28rem;
  }
}
@media screen and (min-width: 1441px) {
  .data__03__01 .numImage {
    max-width: 42rem;
  }
}

.data__03__02 .numImage {
  max-width: 27rem;
}
@media screen and (min-width: 768px) {
  .data__03__02 .numImage {
    max-width: 36rem;
  }
}
@media screen and (min-width: 1441px) {
  .data__03__02 .numImage {
    max-width: 55rem;
  }
}

.data__03__03 .numImage {
  max-width: 25rem;
}
@media screen and (min-width: 768px) {
  .data__03__03 .numImage {
    max-width: 40rem;
  }
}
@media screen and (min-width: 1441px) {
  .data__03__03 .numImage {
    max-width: 53.5rem;
  }
}

.data__03__04 .numImage {
  margin-top: 10rem;
  margin-bottom: 0;
  max-width: 18rem;
}
@media screen and (min-width: 768px) {
  .data__03__04 .numImage {
    margin-top: 10rem;
    margin-bottom: 0rem;
    max-width: 28rem;
  }
}
@media screen and (min-width: 1441px) {
  .data__03__04 .numImage {
    margin-top: 13rem;
    margin-bottom: 0;
    max-width: 45rem;
  }
}
.data__03__04 .note {
  font-size: 1.4rem;
  margin-top: 10rem;
}
@media screen and (min-width: 768px) {
  .data__03__04 .note {
    font-size: 1.6rem;
    margin-top: 10rem;
    margin-left: -5em;
    margin-right: -5em;
  }
}
@media screen and (min-width: 1441px) {
  .data__03__04 .note {
    font-size: 1.8rem;
    margin-top: 15rem;
  }
}

.count-num {
  color: #000;
  font-weight: 500;
}

.count-num__num {
  line-height: 1;
  white-space: nowrap;
  flex: 1;
  width: 100%;
}
.count-num__num .fs-s {
  font-size: 0.7em;
}

.count-num__other {
  font-weight: 800;
}

.count-num--01 {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  line-height: 1;
  font-size: 12.4rem;
}
@media screen and (min-width: 768px) {
  .count-num--01 {
    font-size: 16rem;
  }
}
@media screen and (min-width: 1441px) {
  .count-num--01 {
    font-size: 24.8rem;
  }
}
.count-num--01 .count-num__other {
  font-size: 4.4rem;
  margin-bottom: 0.5rem;
  margin-left: 0.5rem;
}
@media screen and (min-width: 768px) {
  .count-num--01 .count-num__other {
    margin-bottom: 0rem;
    margin-left: 1rem;
    font-size: 6rem;
  }
}
@media screen and (min-width: 1441px) {
  .count-num--01 .count-num__other {
    font-size: 8.8rem;
  }
}

.count-num--02 {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  line-height: 1;
  font-size: 12.4rem;
}
@media screen and (min-width: 768px) {
  .count-num--02 {
    font-size: 16rem;
  }
}
@media screen and (min-width: 1441px) {
  .count-num--02 {
    font-size: 24.8rem;
  }
}
.count-num--02 .count-num__other {
  margin-left: 0.5rem;
  margin-bottom: -0.5rem;
  width: 9rem;
}
@media screen and (min-width: 768px) {
  .count-num--02 .count-num__other {
    width: 12rem;
    margin-left: 1rem;
    margin-bottom: -1rem;
  }
}
@media screen and (min-width: 1441px) {
  .count-num--02 .count-num__other {
    width: 18.3rem;
  }
}

.count-num--03 {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  line-height: 1;
  font-size: 12rem;
  margin-bottom: -1rem;
}
@media screen and (min-width: 768px) {
  .count-num--03 {
    margin-bottom: 0;
    font-size: 16rem;
  }
}
@media screen and (min-width: 1441px) {
  .count-num--03 {
    font-size: 24.5rem;
  }
}
.count-num--03 .count-num__other {
  margin-left: 1rem;
  width: 7rem;
  margin-bottom: -2%;
}
@media screen and (min-width: 768px) {
  .count-num--03 .count-num__other {
    margin-bottom: -2%;
    width: 10rem;
  }
}
@media screen and (min-width: 1441px) {
  .count-num--03 .count-num__other {
    width: 14.4rem;
  }
}

.count-num--04 {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 1;
  position: relative;
  font-size: 9rem;
}
@media screen and (min-width: 768px) {
  .count-num--04 {
    font-size: 14rem;
  }
}
@media screen and (min-width: 1441px) {
  .count-num--04 {
    font-size: 20rem;
  }
}
.count-num--04::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  width: 24rem;
  height: 24rem;
  transform: translate(-50%, -50%);
  border: 2rem solid #ff9bb1;
}
@media screen and (min-width: 768px) {
  .count-num--04::after {
    border: 5rem solid #ff9bb1;
    width: 30rem;
    height: 30rem;
  }
}
@media screen and (min-width: 1441px) {
  .count-num--04::after {
    width: 42rem;
    height: 42rem;
  }
}
.count-num--04 .count-num__num {
  position: relative;
  z-index: 2;
}
.count-num--04 .count-num__other {
  position: relative;
  z-index: 2;
  margin-right: 1rem;
  font-size: 0.35em;
}
@media screen and (min-width: 768px) {
  .count-num--04 .count-num__other {
    font-size: 0.5em;
  }
}

/* グラフ部分の指定 */
.circle-graph {
  position: relative;
}

.circle-graph__text {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 2;
  opacity: 0;
}
.circle-graph__text img {
  height: auto;
  width: 100%;
}

.pie-container {
  position: relative;
  aspect-ratio: 1/1;
  text-align: center;
  width: 100%;
}

.pie-svg-mask {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.1);
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .pie-svg-mask {
    width: 40rem;
    height: 40rem;
  }
}
@media screen and (min-width: 1441px) {
  .pie-svg-mask {
    width: 55rem;
    height: 55rem;
  }
}

.pie-mask {
  display: block;
  fill: transparent;
  cx: 32;
  cy: 32;
  r: 16;
  stroke-width: 32;
  stroke-dashoffset: 25;
  stroke: #fff;
  stroke-dasharray: 100 0;
  transform-origin: center top;
  transform: scale(-1, 1);
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .pie-mask {
    top: 15rem;
    left: 15rem;
    width: 30rem;
    height: 30rem;
  }
}
@media screen and (min-width: 1441px) {
  .pie-mask {
    top: 27.5rem;
    left: 27.5rem;
    width: 55rem;
    height: 55rem;
  }
}

.pie-svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 0;
}

.circle-1 {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .circle-1 {
    width: 40rem;
  }
}
@media screen and (min-width: 1441px) {
  .circle-1 {
    width: 55rem;
  }
}
.circle-1 .circle-graph__text {
  width: 73.7931034483%;
}
.circle-1 .pieA {
  fill: transparent;
  cx: 32;
  cy: 32;
  r: 16;
  stroke-width: 32;
  stroke-dashoffset: 25;
  transition: opacity 0s;
}
.circle-1 .pieA1 {
  stroke: #ffff4d;
  stroke-dasharray: 19 81;
}
.circle-1 .pieA2 {
  stroke: #77bfff;
  stroke-dasharray: 0 19 20 61;
}
.circle-1 .pieA3 {
  stroke: #7294b3;
  stroke-dasharray: 0 39 19 42;
}
.circle-1 .pieA4 {
  stroke: #3a6a96;
  stroke-dasharray: 0 58 24 18;
}
.circle-1 .pieA5 {
  stroke: #014099;
  stroke-dasharray: 0 82 18 0;
}

.circle-2 {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .circle-2 {
    width: 40rem;
  }
}
@media screen and (min-width: 1441px) {
  .circle-2 {
    width: 55rem;
  }
}
.circle-2 .circle-graph__text {
  width: 81.724137931%;
  margin: -7% 0 0 -2%;
}
.circle-2 .pieB {
  fill: transparent;
  cx: 32;
  cy: 32;
  r: 16;
  stroke-width: 32;
  stroke-dashoffset: 25;
  transition: opacity 0s;
}
.circle-2 .pieB1 {
  stroke: #c2dce6;
  stroke-dasharray: 80.9 19.1;
}
.circle-2 .pieB2 {
  stroke: #e9b3b5;
  stroke-dasharray: 0 80.9 17.8 1.3;
}
.circle-2 .pieB3 {
  stroke: #a6a6a6;
  stroke-dasharray: 0 98.7 1.3 0;
}

.is-active .pie-mask {
  animation: circleMask 1s 0.5s forwards;
}
.is-active .circle-graph__text {
  animation: circleText 0.5s 1.5s forwards;
}

@keyframes circleMask {
  0% {
    stroke-dasharray: 100 0;
  }
  100%, to {
    stroke-dasharray: 0 100;
  }
}
@keyframes circleText {
  0% {
    opacity: 0;
  }
  100%, to {
    opacity: 1;
  }
}
.trainingContent {
  margin: 0 auto;
  max-width: 192rem;
}
@media screen and (min-width: 768px) {
  .trainingContent {
    padding-bottom: 5rem;
  }
}

.trainingContent__section + .trainingContent__section {
  padding-top: 4rem;
}
@media screen and (min-width: 768px) {
  .trainingContent__section + .trainingContent__section {
    padding-top: 7rem;
  }
}
.trainingContent__section .titleD {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .trainingContent__section .titleD {
    margin-bottom: 3rem;
  }
}

.trainingContent__section__inr {
  position: relative;
  z-index: 3;
  padding: 0 2.8rem;
}
@media screen and (min-width: 768px) {
  .trainingContent__section__inr {
    max-width: 120rem;
    padding: 0 5rem;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1441px) {
  .trainingContent__section__inr {
    padding: 0;
  }
}

.hasThumBox {
  display: flex;
  flex-direction: column-reverse;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .hasThumBox {
    gap: 0;
    flex-direction: column;
  }
}

.hasThumBox__thum img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hasThumBox__thum img {
    width: 80%;
  }
}

.hasThumBox__text {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .hasThumBox__text {
    margin-top: -3rem;
    max-width: 700px;
    width: 52.2388059701vw;
  }
}
@media screen and (min-width: 1441px) {
  .hasThumBox__text {
    margin-top: -10rem;
    width: 70rem;
  }
}

.shadowBox {
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .shadowBox {
    background-color: #fff;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
    font-size: 1.6rem;
    padding: 3rem 4rem;
  }
}
@media screen and (min-width: 1441px) {
  .shadowBox {
    font-size: 2rem;
    padding: 3rem 4rem;
  }
}

.shadowBox__title {
  color: #014099;
  position: relative;
}
@media screen and (max-width: 767px) {
  .shadowBox__title {
    font-size: 1.6rem;
    padding-top: 1.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
  }
}
@media screen and (min-width: 768px) {
  .shadowBox__title {
    margin-bottom: 1rem;
    font-size: 2rem;
    padding-left: 5.8rem;
    padding-top: 0;
  }
}
@media screen and (min-width: 1441px) {
  .shadowBox__title {
    font-size: 2.8rem;
  }
}
.shadowBox__title::before, .shadowBox__title::after {
  position: absolute;
  transform: translate(0, -50%);
  top: 0;
  left: 50%;
  height: 0.7rem;
}
@media screen and (min-width: 768px) {
  .shadowBox__title::before, .shadowBox__title::after {
    left: 0;
    top: 50%;
    height: 1rem;
  }
}
@media screen and (min-width: 1441px) {
  .shadowBox__title::before, .shadowBox__title::after {
    height: 1.5rem;
  }
}
.shadowBox__title::before {
  content: "";
  display: block;
  background-color: #014099;
  z-index: 2;
  width: 1rem;
}
@media screen and (max-width: 767px) {
  .shadowBox__title::before {
    margin-left: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .shadowBox__title::before {
    width: 2.1rem;
  }
}
.shadowBox__title::after {
  content: "";
  display: block;
  background-color: #c40018;
  z-index: 1;
  width: 1rem;
}
@media screen and (max-width: 767px) {
  .shadowBox__title::after {
    margin-right: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .shadowBox__title::after {
    width: 4.2rem;
  }
}

.shadowBox__title__2 {
  align-items: center;
  display: flex;
  color: #014099;
  margin-bottom: 1rem;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .shadowBox__title__2 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1441px) {
  .shadowBox__title__2 {
    font-size: 2.8rem;
  }
}
.shadowBox__title__2::before {
  content: "▶";
  margin-right: 0.5em;
  color: #c40018;
  display: inline-block;
  font-size: 0.6em;
  vertical-align: middle;
}
.shadowBox__title__2 .box {
  border: 1px solid #014099;
  display: inline-block;
  padding: 0.05em 1em;
  font-size: 0.75em;
  vertical-align: middle;
  margin-left: 0.5em;
}

.shadowBox__list {
  display: flex;
  font-size: 1.1em;
  flex-wrap: wrap;
  gap: 0.25em 1em;
}
@media screen and (min-width: 768px) {
  .shadowBox__list {
    font-size: 1.3em;
  }
}
.shadowBox__list > li > span {
  color: #c40018;
}

.commentBox {
  position: relative;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .commentBox {
    margin-top: 0;
    padding-left: 12rem;
  }
}
@media screen and (min-width: 1441px) {
  .commentBox {
    padding-left: 35.8rem;
  }
}

.commentBox__inr {
  background-color: #e3e9f1;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .commentBox__inr {
    margin: 0 auto;
    padding: 1.5rem 2rem 2rem;
    width: calc(100% - 5.6rem);
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .commentBox__inr {
    font-size: 1.6rem;
    padding: 11.7rem 5rem 4rem 8rem;
    margin: -9rem 0 0 -8rem;
  }
}
@media screen and (min-width: 1441px) {
  .commentBox__inr {
    font-size: 2rem;
    padding: 11.7rem 5rem 4rem 8rem;
    margin: -9rem 0 0 -30rem;
  }
}
@media screen and (min-width: 1921px) {
  .commentBox__inr {
    margin: -9rem 0 0 -8rem;
  }
}
.commentBox__inr .shikaku {
  line-height: 2;
  color: #014099;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .commentBox__inr .shikaku {
    gap: 0.25em 0.4em;
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .commentBox__inr .shikaku {
    gap: 0.25em 1em;
    margin: 0 auto;
    max-width: 120rem;
  }
}
@media screen and (max-width: 767px) {
  .commentBox__inr .shikaku > li {
    width: calc(50% - 0.2em);
  }
}

@media screen and (max-width: 767px) {
  .trainingContent__others {
    padding-top: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .trainingContent__others .shadowBox:nth-child(n+2) {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #808080;
  }
}
@media screen and (min-width: 768px) {
  .trainingContent__others .shadowBox:nth-child(n+2) {
    margin-top: 10rem;
  }
}

.trainingContent__bottom {
  border-top: 1px solid #808080;
  padding-top: 4rem;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .trainingContent__bottom {
    border-top: 2px solid #808080;
    padding-top: 10rem;
    margin-top: 11rem;
  }
}
.trainingContent__bottom .shadowBox {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .trainingContent__bottom .shadowBox {
    margin: -2rem auto 0;
    width: calc(100% - 10rem);
    max-width: 120rem;
  }
}
@media screen and (min-width: 1441px) {
  .trainingContent__bottom .shadowBox {
    margin: -3rem auto 0;
    max-width: 120rem;
  }
}

@media screen and (max-width: 767px) {
  .trainingContent__gallery {
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
    padding: 1.5rem 2.8rem 0;
  }
}
.trainingContent__gallery + .trainingContent__gallery {
  margin-top: 11rem;
}
@media screen and (max-width: 767px) {
  .trainingContent__gallery + .trainingContent__gallery {
    margin-top: 2rem;
  }
}

.trainingContent__gallery__inr {
  display: flex;
  position: relative;
  z-index: 0;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .trainingContent__gallery__inr {
    flex-direction: row;
    gap: 0;
  }
}

@media screen and (min-width: 768px) {
  .recruitmentContent {
    background: url(../img/recruitment/recruitment_bg.webp) center 10rem/100% auto repeat-y;
    padding-bottom: 7rem;
  }
}
@media screen and (min-width: 1441px) {
  .recruitmentContent {
    padding-bottom: 10rem;
  }
}

.recruitmentContent__anchor {
  padding: 0 2.8rem;
}
@media screen and (min-width: 768px) {
  .recruitmentContent__anchor {
    padding: 0 5rem;
  }
}

.recruitmentContent__section {
  padding-top: 3rem;
}
@media screen and (min-width: 768px) {
  .recruitmentContent__section {
    padding-top: 7rem;
  }
}
@media screen and (min-width: 1441px) {
  .recruitmentContent__section {
    padding-top: 11rem;
  }
}
.recruitmentContent__section + .recruitmentContent__section {
  padding-top: 6rem;
}
@media screen and (min-width: 768px) {
  .recruitmentContent__section + .recruitmentContent__section {
    padding-top: 10rem;
  }
}
@media screen and (min-width: 1441px) {
  .recruitmentContent__section + .recruitmentContent__section {
    padding-top: 15rem;
  }
}

.recruitmentContent__section__inr {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.8rem;
}
@media screen and (min-width: 768px) {
  .recruitmentContent__section__inr {
    padding: 0 5rem;
  }
}
@media screen and (min-width: 1441px) {
  .recruitmentContent__section__inr {
    padding: 0;
  }
}
.recruitmentContent__section__inr .titleE {
  margin: 0 -2.8rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .recruitmentContent__section__inr .titleE {
    margin: 0 auto 1.5em;
  }
}

.recruitmentContent__circleGraph {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.8rem;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .recruitmentContent__circleGraph {
    flex-direction: row;
    padding: 0;
    gap: 3rem;
  }
}
@media screen and (min-width: 1441px) {
  .recruitmentContent__circleGraph {
    gap: 6rem;
  }
}

.recruitmentContent__circleGraph__title {
  color: #014099;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .recruitmentContent__circleGraph__title {
    border: 3px solid #014099;
    font-size: 2.1rem;
    padding: 0.5em 1em;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1441px) {
  .recruitmentContent__circleGraph__title {
    font-size: 3rem;
    padding: 0.5em 2em;
  }
}
@media screen and (max-width: 767px) {
  .recruitmentContent__circleGraph__title::after {
    content: "";
    border: 1px solid #014099;
    display: block;
    width: 100%;
    height: 0.4rem;
  }
}

.recruitmentContent__circleGraph__image {
  max-width: 26rem;
}
@media screen and (min-width: 768px) {
  .recruitmentContent__circleGraph__image {
    max-width: 35rem;
  }
}
@media screen and (min-width: 1441px) {
  .recruitmentContent__circleGraph__image {
    max-width: 48.6rem;
  }
}

.recruitmentContent__scheduleBtn {
  margin: 2.5rem auto 0;
  max-width: 25rem;
}
@media screen and (min-width: 768px) {
  .recruitmentContent__scheduleBtn {
    margin: 5.6rem auto 0;
    max-width: 35rem;
  }
}
@media screen and (min-width: 1441px) {
  .recruitmentContent__scheduleBtn {
    margin: 8rem auto 0;
    max-width: 50rem;
  }
}

.recruitmentContent__flow__info {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .recruitmentContent__flow__info {
    flex-direction: row;
    gap: 4rem;
    margin-top: 4rem;
  }
}
@media screen and (min-width: 1441px) {
  .recruitmentContent__flow__info {
    margin-top: 7rem;
  }
}

.srecruitmentContent__flow__info__title {
  color: #014099;
  font-weight: 700;
  display: inline-block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .srecruitmentContent__flow__info__title {
    border-bottom: 1px solid #014099;
    border-top: 1px solid #014099;
    font-size: 1.5rem;
    padding: 0.25em 2em;
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .srecruitmentContent__flow__info__title {
    border: 3px solid #014099;
    font-size: 2.1rem;
    padding: 1em 1em;
    width: 31rem;
  }
}
@media screen and (min-width: 1441px) {
  .srecruitmentContent__flow__info__title {
    font-size: 3rem;
    padding: 1em 2em;
    width: 40rem;
  }
}

.recruitmentContent__flow__info__inr {
  flex: 1;
  text-align: center;
  font-size: 1.3rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .recruitmentContent__flow__info__inr {
    width: initial;
    text-align: left;
    font-size: 2rem;
  }
}
@media screen and (min-width: 1441px) {
  .recruitmentContent__flow__info__inr {
    font-size: 2.6rem;
  }
}

.recruitmentContent__flow__info__list {
  display: flex;
  color: #014099;
  font-weight: 700;
  flex-wrap: wrap;
  gap: 0.25em 1em;
  margin-top: 0.25em;
}
@media screen and (max-width: 767px) {
  .recruitmentContent__flow__info__list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}

.recruitmentContent__entry {
  text-align: center;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .recruitmentContent__entry {
    margin-top: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .humanList {
    padding-top: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .humanList > li {
    align-items: center;
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .humanList > li + li {
    border-top: 0.1rem solid #808080;
    margin-top: 3rem;
    padding-top: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .humanList > li + li {
    margin-top: 6rem;
  }
}
@media screen and (min-width: 1441px) {
  .humanList > li + li {
    margin-top: 8rem;
  }
}
.humanList > li > div:nth-child(1) {
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .humanList > li > div:nth-child(1) {
    padding-right: 2rem;
    width: 31.6666666667%;
  }
}
@media screen and (min-width: 1441px) {
  .humanList > li > div:nth-child(1) {
    width: 38.3333333333%;
  }
}
.humanList > li > div:nth-child(2) {
  flex: 1;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .humanList > li > div:nth-child(2) {
    border-left: 0.1rem solid #000;
    padding-left: 4rem;
  }
}
@media screen and (min-width: 1441px) {
  .humanList > li > div:nth-child(2) {
    padding-left: 8rem;
  }
}

.humanList__title {
  color: #e50012;
  font-size: 2.5rem;
}
@media screen and (min-width: 768px) {
  .humanList__title {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1441px) {
  .humanList__title {
    font-size: 4rem;
  }
}

.humanList__title__bottom {
  font-weight: 700;
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  .humanList__title__bottom {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1441px) {
  .humanList__title__bottom {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .humanList__title__bottom::after {
    content: "";
    height: 0.1rem;
    width: 2.3rem;
    background: #000;
    display: block;
    margin: 1rem auto;
  }
}

.humanList__text {
  line-height: 1.7;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .humanList__text {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1441px) {
  .humanList__text {
    font-size: 2rem;
  }
}