@charset "UTF-8";
/* =======================================

	reset CSS

========================================== */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
p,
blockquote,
table,
th,
td {
  padding: 0;
  margin: 0;
}
img {
  border: 0;
  vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 600;
}
ul,
dl,
ol {
  text-indent: 0;
}
li {
  list-style: none;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: inherit;
  font-weight: inherit;
}
b,
strong {
  font-weight: bold;
}
sup {
  vertical-align: text-top;
}
sub {
  vertical-align: text-bottom;
}
input,
textarea,
select,
b {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
* html input,
* html textarea,
* html select {
  font-size: 100%;
}
textarea.message {
  width: 100%;
  height: 20rem;
}
*:first-child + html + input,
*:first-child html + textarea,
*:first-child + html select {
  font-size: 100%;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
}
th,
td {
  text-align: left;
  vertical-align: top;
}
caption {
  text-align: left;
}
pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
}
* html pre,
* html code,
* html kbd,
* html samp,
* html tt {
  font-size: 100%;
  line-height: 100%;
}
*:first-child + html pre,
*:first-child html + code,
*:first-child html + kbd,
*:first-child + html + samp,
*:first-child + html tt {
  font-size: 108%;
  line-height: 100%;
}
input,
select,
textarea {
  font-size: 100%;
  font-family: Verdana, Helvetica, sans-serif;
}
input.w100,
textarea {
  width: 100%;
  border: 1px solid #353750;
  border-radius: 0.23em;
  padding: 5px 5px;
  background: #ffffff;
}
input.file {
  display: inline-block;
  padding: 10px 10px;
  vertical-align: middle;
  border: solid 1px #353750;
  border-radius: 0.23em;
  background: #ffffff;
}
::placeholder {
  font-weight: normal;
}

.nini {
  padding: 3px 4px 2px 4px;
  background: #efefef;
  border: 1px solid #ccc;
  border-radius: 4px;
  display: block;
  width: 40px;
  text-align: center;
  float: right;
  color: #222;
  font-weight: bold;
  font-size: 11px;
}
.fW500 {
  font-weight: 500;
}
.fW100 {
  font-weight: 100;
}
.fW300 {
  font-weight: 300;
}
.ls0 {
  letter-spacing: 0;
}
.ls1 {
  letter-spacing: 0.1em;
}
.ls2 {
  letter-spacing: 0.2em;
}
.ls4 {
  letter-spacing: 0.4em;
}
.lh0 {
  line-height: 0%;
}
.lh100 {
  line-height: 100%;
}
.lh120 {
  line-height: 120%;
}
.lh140 {
  line-height: 140%;
}
.lh160 {
  line-height: 160%;
}
.lh200 {
  line-height: 200%;
}
.lh230 {
  line-height: 230%;
}
.lh240 {
  line-height: 240%;
}
.lh250 {
  line-height: 250%;
}
.lh255 {
  line-height: 255%;
}

/* cf
========================================== */
.cf:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
}

* html .cf {
  zoom: 1;
}
/* =======================================

	Structure CSS

========================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.center {
  text-align: center !important;
  vertical-align: middle;
}
.right {
  text-align: right !important;
}
.left {
  text-align: left !important;
}
.indent {
  padding-left: 1em;
  text-indent: -1em;
}

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

.floatL {
  float: left;
}
.floatR {
  float: right;
}

.rela {
  position: relative;
}

.kome li {
  text-indent: -1em;
  padding-left: 1em;
  line-height: 140%;
  margin-bottom: 10px;
}

.c_c_c {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}
.c_y0_xc {
  position: absolute;
  top: 0%;
  left: 50%;
  -webkit-transform: translateY(0%) translateX(-50%);
  transform: translateY(0%) translateX(-50%);
}
.c_yc_x0 {
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(50%) translateX(0%);
  transform: translateY(50%) translateX(0%);
}

.imgR {
  float: right;
  width: 40%;
  margin-left: 30px;
}

.imgL {
  float: left;
  width: 40%;
  margin-right: 30px;
}

/*flex
========================================== */
.flex {
  display: flex;
}
.flexNowrap {
  display: flex;
  flex-wrap: nowrap;
}
.flexWrap {
  display: flex;
  flex-wrap: wrap;
}

.flexSpaceBetween {
  justify-content: space-between;
}

.flexCenter {
  justify-content: center;
}
.flexLeft {
  justify-content: left;
}
.flexRight {
  justify-content: right;
}
.flexEnd {
  justify-content: flex-end;
}
.flexRowReverse {
  flex-flow: row-reverse;
}
.alignItemsC {
  align-items: center;
}
.alignItemsSt {
  align-items: flex-start;
}
.alignItemsEnd {
  align-items: flex-end;
}

.dBlock {
  display: block;
}
.poevNone {
  pointer-events: none;
}

.ofHidden {
  overflow: hidden;
}
.ofAuto {
  overflow: auto;
}
.ofY {
  overflow-y: auto;
}
.ofXHidden {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  transition: 0.3s;
}

figure {
  display: block;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  margin: 0;
  padding: 0;
}

.w4em {
  width: 4em;
}
.w45em {
  width: 4.5em;
}
.w5em {
  width: 5em;
}
.w6em {
  width: 6em;
}
.w7em {
  width: 7em;
}
.w8em {
  width: 8em;
}
.w9em {
  width: 9em;
}
.w10em {
  width: 10em;
}

.f10 {
  font-size: 1rem !important;
}
.f11 {
  font-size: 1.1rem !important;
}
.f12 {
  font-size: 1.2rem !important;
}
.f13 {
  font-size: 1.3rem !important;
}
.f14 {
  font-size: 1.4rem !important;
}
.f15 {
  font-size: 1.5rem !important;
}
.f16 {
  font-size: 1.6rem !important;
}
.f17 {
  font-size: 1.7rem !important;
}
.f18 {
  font-size: 1.8rem !important;
}
.f19 {
  font-size: 1.9rem !important;
}
.f20 {
  font-size: 2rem !important;
}
.f21 {
  font-size: 2.1rem !important;
}
.f22 {
  font-size: 2.2rem !important;
}
.f23 {
  font-size: 2.3rem !important;
}
.f24 {
  font-size: 2.4rem !important;
}
.f25 {
  font-size: 2.5rem !important;
}
.f26 {
  font-size: 2.6rem !important;
}
.f27 {
  font-size: 2.7rem !important;
}
.f28 {
  font-size: 2.8rem !important;
}
.f29 {
  font-size: 2.9rem !important;
}
.f30 {
  font-size: 3rem !important;
}
.f40 {
  font-size: 4rem !important;
}

.fps40 {
  font-size: 40% !important;
}
.fps60 {
  font-size: 60% !important;
}
.fps65 {
  font-size: 65% !important;
}
.fps70 {
  font-size: 70% !important;
}
.fps75 {
  font-size: 75% !important;
}
.fps80 {
  font-size: 80% !important;
}
.fps85 {
  font-size: 85% !important;
}
.fps90 {
  font-size: 90% !important;
}
.fps95 {
  font-size: 95% !important;
}
.fps100 {
  font-size: 100% !important;
}
.fps105 {
  font-size: 105% !important;
}
.fps110 {
  font-size: 110% !important;
}
.fps115 {
  font-size: 115% !important;
}
.fps120 {
  font-size: 120% !important;
}
.fps125 {
  font-size: 125% !important;
}
.fps130 {
  font-size: 130% !important;
}
.fps135 {
  font-size: 135% !important;
}
.fps140 {
  font-size: 140% !important;
}
.fps145 {
  font-size: 145% !important;
}
.fps150 {
  font-size: 150% !important;
}

.inner {
  max-width: 1286px !important;
  position: relative;
  width: 96%;
  margin: 0 auto;
}
.inner01 {
  max-width: 1200px !important;
  position: relative;
  width: 96%;
  margin: 0 auto;
}
.inner02 {
  max-width: 1050px !important;
  position: relative;
  width: 96%;
  margin: 0 auto;
}
.inner500 {
  max-width: 500px !important;
  position: relative;
  width: 96%;
  margin: 0 auto;
}
.inner600 {
  max-width: 600px !important;
  position: relative;
  width: 96%;
  margin: 0 auto;
}
.inner700 {
  max-width: 700px !important;
  position: relative;
  width: 96%;
  margin: 0 auto;
}
.inner800 {
  max-width: 800px !important;
  position: relative;
  width: 96%;
  margin: 0 auto;
}
.inner880 {
  max-width: 880px !important;
  position: relative;
  width: 96%;
  margin: 0 auto;
}
.inner900 {
  max-width: 900px !important;
  position: relative;
  width: 96%;
  margin: 0 auto;
}
.inner1000 {
  max-width: 1000px !important;
  position: relative;
  width: 96%;
  margin: 0 auto;
}
.inner1100 {
  max-width: 1100px !important;
  position: relative;
  width: 96%;
  margin: 0 auto;
}
.inner1200 {
  max-width: 1200px !important;
  position: relative;
  width: 96%;
  margin: 0 auto;
}
.inner1300 {
  max-width: 1300px !important;
  position: relative;
  width: 96%;
  margin: 0 auto;
}
.inner1400 {
  max-width: 1400px !important;
  position: relative;
  width: 96%;
  margin: 0 auto;
}
.inner1500 {
  max-width: 1500px !important;
  position: relative;
  width: 96%;
  margin: 0 auto;
}
.inner1600 {
  max-width: 1600px !important;
  position: relative;
  width: 96%;
  margin: 0 auto;
}
.inner1700 {
  max-width: 1700px !important;
  position: relative;
  width: 96%;
  margin: 0 auto;
}
.inner1800 {
  max-width: 1800px !important;
  position: relative;
  width: 96%;
  margin: 0 auto;
}

/* =======================================

	margin / padding

========================================== */
/*! mb */
.mA {
  margin-left: auto;
  margin-right: auto;
}

.mA0 {
  margin: 0px !important;
}
.mA5 {
  margin: 5px !important;
}
.mA10 {
  margin: 10px !important;
}
.mA15 {
  margin: 15px !important;
}
.mA20 {
  margin: 20px !important;
}
.mA25 {
  margin: 25px !important;
}
.mA30 {
  margin: 30px !important;
}
.mA35 {
  margin: 35px !important;
}
.mA40 {
  margin: 40px !important;
}
.mA45 {
  margin: 45px !important;
}
.mA50 {
  margin: 50px !important;
}
.mA55 {
  margin: 55px !important;
}
.mA60 {
  margin: 60px !important;
}
.mA65 {
  margin: 65px !important;
}
.mA70 {
  margin: 70px !important;
}
.mA75 {
  margin: 75px !important;
}
.mA80 {
  margin: 80px !important;
}
.mA85 {
  margin: 85px !important;
}
.mA90 {
  margin: 90px !important;
}
.mA95 {
  margin: 95px !important;
}
.mA100 {
  margin: 100px !important;
}
.mA105 {
  margin: 105px !important;
}
.mA110 {
  margin: 110px !important;
}
.mA115 {
  margin: 115px !important;
}
.mA120 {
  margin: 120px !important;
}
.mA125 {
  margin: 125px !important;
}
.mA130 {
  margin: 130px !important;
}
.mA135 {
  margin: 135px !important;
}
.mA140 {
  margin: 140px !important;
}
.mA145 {
  margin: 145px !important;
}
.mA150 {
  margin: 150px !important;
}

.mT0 {
  margin-top: 0px !important;
}
.mT5 {
  margin-top: 5px !important;
}
.mT10 {
  margin-top: 10px !important;
}
.mT15 {
  margin-top: 15px !important;
}
.mT20 {
  margin-top: 20px !important;
}
.mT25 {
  margin-top: 25px !important;
}
.mT30 {
  margin-top: 30px !important;
}
.mT35 {
  margin-top: 35px !important;
}
.mT40 {
  margin-top: 40px !important;
}
.mT45 {
  margin-top: 45px !important;
}
.mT50 {
  margin-top: 50px !important;
}
.mT55 {
  margin-top: 55px !important;
}
.mT60 {
  margin-top: 60px !important;
}
.mT65 {
  margin-top: 65px !important;
}
.mT70 {
  margin-top: 70px !important;
}
.mT75 {
  margin-top: 75px !important;
}
.mT80 {
  margin-top: 80px !important;
}
.mT85 {
  margin-top: 85px !important;
}
.mT90 {
  margin-top: 90px !important;
}
.mT95 {
  margin-top: 95px !important;
}
.mT100 {
  margin-top: 100px !important;
}
.mT105 {
  margin-top: 105px !important;
}
.mT110 {
  margin-top: 110px !important;
}
.mT115 {
  margin-top: 115px !important;
}
.mT120 {
  margin-top: 120px !important;
}
.mT125 {
  margin-top: 125px !important;
}
.mT130 {
  margin-top: 130px !important;
}
.mT135 {
  margin-top: 135px !important;
}
.mT140 {
  margin-top: 140px !important;
}
.mT145 {
  margin-top: 145px !important;
}
.mT150 {
  margin-top: 150px !important;
}
.mB0 {
  margin-bottom: 0px !important;
}
.mB5 {
  margin-bottom: 5px !important;
}
.mB10 {
  margin-bottom: 10px !important;
}
.mB15 {
  margin-bottom: 15px !important;
}
.mB20 {
  margin-bottom: 20px !important;
}
.mB25 {
  margin-bottom: 25px !important;
}
.mB30 {
  margin-bottom: 30px !important;
}
.mB35 {
  margin-bottom: 35px !important;
}
.mB40 {
  margin-bottom: 40px !important;
}
.mB45 {
  margin-bottom: 45px !important;
}
.mB50 {
  margin-bottom: 50px !important;
}
.mB55 {
  margin-bottom: 55px !important;
}
.mB60 {
  margin-bottom: 60px !important;
}
.mB65 {
  margin-bottom: 65px !important;
}
.mB70 {
  margin-bottom: 70px !important;
}
.mB75 {
  margin-bottom: 75px !important;
}
.mB80 {
  margin-bottom: 80px !important;
}
.mB85 {
  margin-bottom: 85px !important;
}
.mB90 {
  margin-bottom: 90px !important;
}
.mB95 {
  margin-bottom: 95px !important;
}
.mB100 {
  margin-bottom: 100px !important;
}
.mB105 {
  margin-bottom: 105px !important;
}
.mB110 {
  margin-bottom: 110px !important;
}
.mB115 {
  margin-bottom: 115px !important;
}
.mB120 {
  margin-bottom: 120px !important;
}
.mB125 {
  margin-bottom: 125px !important;
}
.mB130 {
  margin-bottom: 130px !important;
}
.mB135 {
  margin-bottom: 135px !important;
}
.mB140 {
  margin-bottom: 140px !important;
}
.mB145 {
  margin-bottom: 145px !important;
}
.mB150 {
  margin-bottom: 150px !important;
}
.mL0 {
  margin-left: 0px !important;
}
.mL5 {
  margin-left: 5px !important;
}
.mL10 {
  margin-left: 10px !important;
}
.mL15 {
  margin-left: 15px !important;
}
.mL20 {
  margin-left: 20px !important;
}
.mL25 {
  margin-left: 25px !important;
}
.mL30 {
  margin-left: 30px !important;
}
.mL35 {
  margin-left: 35px !important;
}
.mL40 {
  margin-left: 40px !important;
}
.mL45 {
  margin-left: 45px !important;
}
.mL50 {
  margin-left: 50px !important;
}
.mL55 {
  margin-left: 55px !important;
}
.mL60 {
  margin-left: 60px !important;
}
.mL65 {
  margin-left: 65px !important;
}
.mL70 {
  margin-left: 70px !important;
}
.mL75 {
  margin-left: 75px !important;
}
.mL80 {
  margin-left: 80px !important;
}
.mL85 {
  margin-left: 85px !important;
}
.mL90 {
  margin-left: 90px !important;
}
.mL95 {
  margin-left: 95px !important;
}
.mL100 {
  margin-left: 100px !important;
}
.mL105 {
  margin-left: 105px !important;
}
.mL110 {
  margin-left: 110px !important;
}
.mL115 {
  margin-left: 115px !important;
}
.mL120 {
  margin-left: 120px !important;
}
.mL125 {
  margin-left: 125px !important;
}
.mL130 {
  margin-left: 130px !important;
}
.mL135 {
  margin-left: 135px !important;
}
.mL140 {
  margin-left: 140px !important;
}
.mL145 {
  margin-left: 145px !important;
}
.mL150 {
  margin-left: 150px !important;
}
.mR0 {
  margin-right: 0px !important;
}
.mR5 {
  margin-right: 5px !important;
}
.mR10 {
  margin-right: 10px !important;
}
.mR15 {
  margin-right: 15px !important;
}
.mR20 {
  margin-right: 20px !important;
}
.mR25 {
  margin-right: 25px !important;
}
.mR30 {
  margin-right: 30px !important;
}
.mR35 {
  margin-right: 35px !important;
}
.mR40 {
  margin-right: 40px !important;
}
.mR45 {
  margin-right: 45px !important;
}
.mR50 {
  margin-right: 50px !important;
}
.mR55 {
  margin-right: 55px !important;
}
.mR60 {
  margin-right: 60px !important;
}
.mR65 {
  margin-right: 65px !important;
}
.mR70 {
  margin-right: 70px !important;
}
.mR75 {
  margin-right: 75px !important;
}
.mR80 {
  margin-right: 80px !important;
}
.mR85 {
  margin-right: 85px !important;
}
.mR90 {
  margin-right: 90px !important;
}
.mR95 {
  margin-right: 95px !important;
}
.mR100 {
  margin-right: 100px !important;
}
.mR105 {
  margin-right: 105px !important;
}
.mR110 {
  margin-right: 110px !important;
}
.mR115 {
  margin-right: 115px !important;
}
.mR120 {
  margin-right: 120px !important;
}
.mR125 {
  margin-right: 125px !important;
}
.mR130 {
  margin-right: 130px !important;
}
.mR135 {
  margin-right: 135px !important;
}
.mR140 {
  margin-right: 140px !important;
}
.mR145 {
  margin-right: 145px !important;
}
.mR150 {
  margin-right: 150px !important;
}
.pB0 {
  padding-bottom: 0px !important;
}
.pB5 {
  padding-bottom: 5px !important;
}
.pB10 {
  padding-bottom: 10px !important;
}
.pB15 {
  padding-bottom: 15px !important;
}
.pB20 {
  padding-bottom: 20px !important;
}
.pB25 {
  padding-bottom: 25px !important;
}
.pB30 {
  padding-bottom: 30px !important;
}
.pB35 {
  padding-bottom: 35px !important;
}
.pB40 {
  padding-bottom: 40px !important;
}
.pB45 {
  padding-bottom: 45px !important;
}
.pB50 {
  padding-bottom: 50px !important;
}
.pB55 {
  padding-bottom: 55px !important;
}
.pB60 {
  padding-bottom: 60px !important;
}
.pB65 {
  padding-bottom: 65px !important;
}
.pB70 {
  padding-bottom: 70px !important;
}
.pB75 {
  padding-bottom: 75px !important;
}
.pB80 {
  padding-bottom: 80px !important;
}
.pB85 {
  padding-bottom: 85px !important;
}
.pB90 {
  padding-bottom: 90px !important;
}
.pB95 {
  padding-bottom: 95px !important;
}
.pB100 {
  padding-bottom: 100px !important;
}
.pB105 {
  padding-bottom: 105px !important;
}
.pB110 {
  padding-bottom: 110px !important;
}
.pB115 {
  padding-bottom: 115px !important;
}
.pB120 {
  padding-bottom: 120px !important;
}
.pB125 {
  padding-bottom: 125px !important;
}
.pB130 {
  padding-bottom: 130px !important;
}
.pB135 {
  padding-bottom: 135px !important;
}
.pB140 {
  padding-bottom: 140px !important;
}
.pB145 {
  padding-bottom: 145px !important;
}
.pB150 {
  padding-bottom: 150px !important;
}
.pT0 {
  padding-top: 0px !important;
}
.pT5 {
  padding-top: 5px !important;
}
.pT10 {
  padding-top: 10px !important;
}
.pT15 {
  padding-top: 15px !important;
}
.pT20 {
  padding-top: 20px !important;
}
.pT25 {
  padding-top: 25px !important;
}
.pT30 {
  padding-top: 30px !important;
}
.pT35 {
  padding-top: 35px !important;
}
.pT40 {
  padding-top: 40px !important;
}
.pT45 {
  padding-top: 45px !important;
}
.pT50 {
  padding-top: 50px !important;
}
.pT55 {
  padding-top: 55px !important;
}
.pT60 {
  padding-top: 60px !important;
}
.pT65 {
  padding-top: 65px !important;
}
.pT70 {
  padding-top: 70px !important;
}
.pT75 {
  padding-top: 75px !important;
}
.pT80 {
  padding-top: 80px !important;
}
.pT85 {
  padding-top: 85px !important;
}
.pT90 {
  padding-top: 90px !important;
}
.pT95 {
  padding-top: 95px !important;
}
.pT100 {
  padding-top: 100px !important;
}
.pT105 {
  padding-top: 105px !important;
}
.pT110 {
  padding-top: 110px !important;
}
.pT115 {
  padding-top: 115px !important;
}
.pT120 {
  padding-top: 120px !important;
}
.pT125 {
  padding-top: 125px !important;
}
.pT130 {
  padding-top: 130px !important;
}
.pT135 {
  padding-top: 135px !important;
}
.pT140 {
  padding-top: 140px !important;
}
.pT145 {
  padding-top: 145px !important;
}
.pT150 {
  padding-top: 150px !important;
}
.pL0 {
  padding-left: 0px !important;
}
.pL5 {
  padding-left: 5px !important;
}
.pL10 {
  padding-left: 10px !important;
}
.pL15 {
  padding-left: 15px !important;
}
.pL20 {
  padding-left: 20px !important;
}
.pL25 {
  padding-left: 25px !important;
}
.pL30 {
  padding-left: 30px !important;
}
.pL35 {
  padding-left: 35px !important;
}
.pL40 {
  padding-left: 40px !important;
}
.pL45 {
  padding-left: 45px !important;
}
.pL50 {
  padding-left: 50px !important;
}
.pL55 {
  padding-left: 55px !important;
}
.pL60 {
  padding-left: 60px !important;
}
.pL65 {
  padding-left: 65px !important;
}
.pL70 {
  padding-left: 70px !important;
}
.pL75 {
  padding-left: 75px !important;
}
.pL80 {
  padding-left: 80px !important;
}
.pL85 {
  padding-left: 85px !important;
}
.pL90 {
  padding-left: 90px !important;
}
.pL95 {
  padding-left: 95px !important;
}
.pL100 {
  padding-left: 100px !important;
}
.pL105 {
  padding-left: 105px !important;
}
.pL110 {
  padding-left: 110px !important;
}
.pL115 {
  padding-left: 115px !important;
}
.pL120 {
  padding-left: 120px !important;
}
.pL125 {
  padding-left: 125px !important;
}
.pL130 {
  padding-left: 130px !important;
}
.pL135 {
  padding-left: 135px !important;
}
.pL140 {
  padding-left: 140px !important;
}
.pL145 {
  padding-left: 145px !important;
}
.pL150 {
  padding-left: 150px !important;
}
.pR0 {
  padding-right: 0px !important;
}
.pR5 {
  padding-right: 5px !important;
}
.pR10 {
  padding-right: 10px !important;
}
.pR15 {
  padding-right: 15px !important;
}
.pR20 {
  padding-right: 20px !important;
}
.pR25 {
  padding-right: 25px !important;
}
.pR30 {
  padding-right: 30px !important;
}
.pR35 {
  padding-right: 35px !important;
}
.pR40 {
  padding-right: 40px !important;
}
.pR45 {
  padding-right: 45px !important;
}
.pR50 {
  padding-right: 50px !important;
}
.pR55 {
  padding-right: 55px !important;
}
.pR60 {
  padding-right: 60px !important;
}
.pR65 {
  padding-right: 65px !important;
}
.pR70 {
  padding-right: 70px !important;
}
.pR75 {
  padding-right: 75px !important;
}
.pR80 {
  padding-right: 80px !important;
}
.pR85 {
  padding-right: 85px !important;
}
.pR90 {
  padding-right: 90px !important;
}
.pR95 {
  padding-right: 95px !important;
}
.pR100 {
  padding-right: 100px !important;
}
.pR105 {
  padding-right: 105px !important;
}
.pR110 {
  padding-right: 110px !important;
}
.pR115 {
  padding-right: 115px !important;
}
.pR120 {
  padding-right: 120px !important;
}
.pR125 {
  padding-right: 125px !important;
}
.pR130 {
  padding-right: 130px !important;
}
.pR135 {
  padding-right: 135px !important;
}
.pR140 {
  padding-right: 140px !important;
}
.pR145 {
  padding-right: 145px !important;
}
.pR150 {
  padding-right: 150px !important;
}
.pA0 {
  padding: 0px !important;
}
.pA5 {
  padding: 5px !important;
}
.pA10 {
  padding: 10px !important;
}
.pA15 {
  padding: 15px !important;
}
.pA20 {
  padding: 20px !important;
}
.pA25 {
  padding: 25px !important;
}
.pA30 {
  padding: 30px !important;
}
.pA35 {
  padding: 35px !important;
}
.pA40 {
  padding: 40px !important;
}
.pA45 {
  padding: 45px !important;
}
.pA50 {
  padding: 50px !important;
}
.pA55 {
  padding: 55px !important;
}
.pA60 {
  padding: 60px !important;
}
.pA65 {
  padding: 65px !important;
}
.pA70 {
  padding: 70px !important;
}
.pA75 {
  padding: 75px !important;
}
.pA80 {
  padding: 80px !important;
}
.pA85 {
  padding: 85px !important;
}
.pA90 {
  padding: 90px !important;
}
.pA95 {
  padding: 95px !important;
}
.pA100 {
  padding: 100px !important;
}
.pA105 {
  padding: 105px !important;
}
.pA110 {
  padding: 110px !important;
}
.pA115 {
  padding: 115px !important;
}
.pA120 {
  padding: 120px !important;
}
.pA125 {
  padding: 125px !important;
}
.pA130 {
  padding: 130px !important;
}
.pA135 {
  padding: 135px !important;
}
.pA140 {
  padding: 140px !important;
}
.pA145 {
  padding: 145px !important;
}
.pA150 {
  padding: 150px !important;
}
.mB1em {
  margin-bottom: 1em !important;
}
/*! mb */
.zin0 {
  z-index: 0;
}
.zin1 {
  z-index: 1;
}
.zin2 {
  z-index: 2;
}
.zin3 {
  z-index: 3;
}
.zin4 {
  z-index: 4;
}
.zin5 {
  z-index: 5;
}
.zin6 {
  z-index: 6;
}
.zin7 {
  z-index: 7;
}
.zin8 {
  z-index: 8;
}
.zin9 {
  z-index: 9;
}
.zin10 {
  z-index: 10;
}

.visibilityHidden {
  visibility: hidden;
}

.noLink {
  color: #9a9a9a !important;
  pointer-events: none !important;
}

/* ---------------------------------------------------------------------------
  ★共通
--------------------------------------------------------------------------- */
html {
  font-size: 62.5%;
  background: #fafafa;
  color: #404040;
}
body {
  margin: 0 auto;
  padding: 0;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  box-sizing: border-box;
  line-height: 1.6;
}
main {
  overflow: hidden;
}
object {
  pointer-events: none;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--bk);
}

.js-inview {
  opacity: 0;
}

/*フォントファミリー
========================================== */
.fontG {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.fontSarala {
  font-family: "Sarala", sans-serif;
}

/*色
========================================== */
:root {
  --base: #005ed7; /*ロゴカラー*/
  --base2: rgba(0, 95, 217, 0.25); /*薄いロゴ#BFD7F6*/
  --bk: #404040; /*文字*/
  --bk2: #525252; /*文字2*/
  --wh: #fafafa; /*背景*/
  --red: #fe0000;
  --blue: #2a4c92;
  --Lblue: #bbd3f2;
  --gray: #f3f3f3; /*グレー*/
  --gray2: #e6e6e6; /*灰色*/
  --gray3: #b5b5b5; /*灰色2*/
}

/*文字色
========================================== */
.baseC {
  color: var(--base) !important;
}
.blue {
  color: var(--blue) !important;
}
.bk {
  color: var(--bk) !important;
}
.white {
  color: var(--wh) !important;
}

/*背景
========================================== */
.bgBaseC {
  background: var(--base) !important;
}
.bgBlue {
  background: var(--blue) !important;
}
.bgLblue {
  background: var(--Lblue) !important;
}
.bgGray {
  background: var(--gray) !important;
}
.bgW {
  background: var(--wh) !important;
}
.bgGrd,
.bgGrdLead {
  background: linear-gradient(/*185deg,*/ 215deg, #006fff 0%, #005ed7 44%, #25488f 84%);
}

.bdBox {
  border: 1px solid var(--bk2);
  border-radius: 13px;
}

/*ボタン
========================================== */
.btnWrap {
  text-align: center;
}
.btn {
  background: var(--base);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 4px;
  width: min(100%, 192px);
  padding: 1em 10px;
  color: var(--wh);
  font-weight: 600;
  line-height: 1;
}
.btn.bgW {
  background: #fff;
  color: var(--base);
}
.btn .icArrow {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.btn .icArrow::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/icon_arrow.svg) no-repeat center/100%;
}

.btn.btnLarge {
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  font-weight: 600;
}
.btn.btnLarge {
  justify-content: space-between;
  width: 342px;
  height: 106px;
  padding: 20px 52px 20px 20px;
  text-align: left;
}
.btn.btnLarge > span {
  display: block;
  width: 100%;
}
.btn.btnLarge .en {
  display: block;
  margin-bottom: 0.25em;
  font-size: 0.625em;
  font-weight: 500;
}
.btn.btnLarge .icArrow::after {
  transform: translateY(6px);
}

.btnWrap .btn {
  margin: 0 auto;
}

.btn:hover {
  opacity: 0.7;
}

/*装飾
========================================== */

/*タイトル
========================================== */
.h2Tit {
  margin-bottom: 1em;
  color: var(--bk);
  font-size: 4.3rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.h2Tit .en {
  display: block;
  margin-bottom: 0.5em;
  font-size: 0.4em;
  font-weight: 600;
  letter-spacing: 0;
}
.h2Tit .en::before {
  content: "";
  display: inline-block;
  margin-right: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: url(../images/icon_circle.svg) no-repeat center center / 100%;
  transform: translateY(1px);
}
.h2Tit .titCatch {
  display: block;
  font-size: 0.35em;
  font-weight: 600;
  margin-bottom: 0.5em;
}
.h2Tit .titCatch span {
  display: inline-block;
  background-color: var(--base);
  padding: 0 0.3em;
  color: var(--wh);
}

.h3Tit {
  color: var(--base);
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/*テキスト
========================================== */
.leadTxt {
  font-size: 2rem;
  line-height: 2em;
}

.bgGrdLead {
  display: inline-block;
  padding: 0 0.2em;
  color: var(--wh);
  font-size: min(5.33vw, 6.4rem);
  letter-spacing: 0.03em;
  font-weight: 600;
  line-height: 1.4em;
}
.bgGrdLead + .bgGrdLead,
.bgGrdLeadWrap + .bgGrdLeadWrap {
  margin-top: 12px;
}
.bgGrdLeadWrap {
  display: block;
}

/* box
========================================== */

/*-- list --*/
.basicList li {
  border-bottom: 1px solid var(--grey);
  padding: 15px 40px;
}
.basicList li li {
  border-bottom: none;
  padding: 5px 20px;
}
/**/

/*-- table --*/
.basicTable {
  border-top: 2px solid #b5b5b5;
}
.basicTable dt {
  padding: 27px 0;
  border-bottom: 2px solid #b5b5b5;
  color: var(--gray3);
  display: flex;
  font-weight: 800;
  letter-spacing: 0.03em;
  align-items: center;
}
.basicTable dd {
  padding: 27px 0;
  letter-spacing: 0.03em;
  border-bottom: 2px solid #b5b5b5;
}

/* =======================================
	header
========================================== */
header {
  position: fixed;
  width: 100%;
  background: var(--wh);
  left: 0;
  top: 0;
  z-index: 100;
  padding: 35px 0;
}
header .inner1200 {
  display: flex;
  justify-content: space-between;
  padding-right: 63px;
}
header #logo {
  display: flex;
  justify-content: start;
  align-items: end;
  margin-bottom: 10px;
}
header #logo a {
  display: inline-block;
  min-width: 100px;
  border-radius: 3px;
  border: 1px solid var(--gray2);
  margin-left: 0.8em;
  padding: 0.1em 0;
  font-size: 1.5rem;
  text-align: center;
}
header #logo img {
  width: 281px;
  height: auto;
}
header .headerLinks {
  height: 100%;
}
header .headerLinks li {
  height: 100%;
}
header .headerLinks a {
  display: grid;
  place-content: center;
  width: 192px;
  height: 100%;
  font-weight: 700;
  transition: 0.3s;
}

.headerRight {
}

.headerLinks a:hover {
  opacity: 0.7;
}

/* =======================================
	.menu
========================================== */
.menu {
  position: absolute;
  right: 0;
  top: 0;
  width: 55px;
  height: 55px;
  cursor: pointer;
  z-index: 101;
  background: var(--bk);
  border-radius: 4px;
}
.menu span {
  position: absolute;
  left: 16px;
  width: 24px;
  height: 2px;
  background-color: #fefefe;
  transition: all 0.6s;
  border-radius: calc(infinity * 1px);
}

.menu span.menuLine01 {
  top: 21px;
}
.menu span.menuLine02 {
  top: 28px;
}
.menu span.menuLine03 {
  top: 35px;
}
.menu.active span.menuLine01 {
  transform: rotate(45deg);
  top: 30px;
}
.menu.active span.menuLine02 {
  width: 0;
  left: 50%;
}
.menu.active span.menuLine03 {
  transform: rotate(-45deg);
  top: 30px;
}

.menuBg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
  cursor: pointer;
}
.menuBg.active {
  opacity: 0.8;
  visibility: visible;
}

/* =======================================
	gnavi
========================================== */
.gnavi {
  position: fixed;
  right: -100vw;
  top: 0;
  width: 100vw;
  height: 100vh;
  padding-bottom: 40px;
  transition: all 0.6s;
  z-index: 100;
  overflow-y: auto;
  background: var(--base);
}
.gnavi.active {
  right: 0;
}
#gnaviList {
  padding: 60px 0 0 0;
  width: 100vw;
}
#gnaviList li {
  border-bottom: 1px solid #fff;
}
#gnaviList li a {
  display: block;
  padding: 0.8em 4%;
  font-size: 16px;
  color: #fff;
}

/* =======================================
	footer
========================================== */
footer {
  position: relative;
  background: inherit;
  padding: 50px 0 33px;
}
#footerLogo {
  display: flex;
  justify-content: start;
  align-items: end;
  margin: 0 auto 25px;
}
#footerLogo img {
  width: 282px;
}
#footerLogo a {
  display: inline-block;
  min-width: 100px;
  border-radius: 3px;
  border: 1px solid var(--gray2);
  margin-left: 0.8em;
  padding: 0.1em 0;
  font-size: 1.5rem;
  text-align: center;
}
footer .address {
  margin-bottom: 1em;
}
footer .tel {
  font-size: 2rem;
  line-height: 1.8em;
}
footer .tel .icFreeTel {
  display: block;
}
footer .tel .icFreeTel::before {
  content: "";
  display: inline-block;
  transform: translateY(2px);
  margin-right: 7px;
  width: 30px;
  height: 20px;
  background: url("../images/icon_freetell.svg") no-repeat center center/ 100% auto;
}
footer .copy {
  display: block;
  margin-top: 56px;
  text-align: center;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: min(90%, 1200px);
  height: 90%;
  margin: auto;
  padding: 54px 60px;
  border-radius: 13px;
  background: var(--wh);
  border: 1px solid var(--gray2);
  overflow-y: scroll;
}
.modal-head figure {
  width: min(100%, 266px);
  border-radius: 10px;
  overflow: hidden;
}
.modal-head .txts {
  flex: 1;
}
#popupMessage .modal-head h3 {
  margin-bottom: 0.9em;
  width: min(100%, 732px);
}
#popupMessage .modal-head p + p {
  margin-top: 1em;
}

.modal-profile {
  margin-top: 48px;
  padding-top: 56px;
  border-top: 1px solid var(--base2);
}
.modal-profile figcaption {
  font-size: 3.2rem;
  font-weight: 600;
}
.modal-profile img {
  border-radius: 5px;
}

.modal-boxs {
  margin-top: 48px;
  padding-top: 56px;
  border-top: 1px solid var(--base2);
}
.modal-box h4 {
  margin-bottom: 0.3em;
  font-size: 2rem;
  font-weight: 800;
  color: var(--base);
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 24px;
}

#popupMessage .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

#popupMessage .modal-content {
  position: relative;
  background-color: #fff;
  margin: 5% auto;
  max-width: 1000px;
  width: 90%;
  max-height: 80vh;
  overflow: hidden;
}

#popupMessage .close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 32px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  z-index: 100;
}

#popupMessage .close:hover {
  color: #666;
}

#popupMessage .modal-background {
  position: absolute;
  top: 0;
  right: -15%; /* 0から変更して右に少しはみ出す */
  width: 80%;
  height: 100%;
  overflow: hidden;
}

#popupMessage .modal-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 400px; /* 30%から固定幅に変更 */
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

#popupMessage .modal-background img {
  width: auto;
  height: 100%;
  object-fit: contain;
  position: absolute;
  object-position: right center;
}

/* テキストオーバーレイ */
#popupMessage .modal-overlay {
  position: relative;
  z-index: 10;
  padding: 20px;
  width: 72%;
  background: transparent;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

#popupMessage .modal-text {
  max-width: 100%;
  flex: 1;
}

#popupMessage .h3Tit {
  font-size: 28px;
  font-weight: bold;
  color: #0066ff;
  line-height: 1.6;
  margin-bottom: 30px;
}

#popupMessage .modal-body {
  font-size: 12px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
}

#popupMessage .modal-body p {
  margin-bottom: 20px;
}

/* 代表名（テキストの下） */
#popupMessage .modal-profile {
  margin: 0;
  align-self: flex-start;
}

#popupMessage .modal-profile figcaption {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 0px 30px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
  display: inline-block;
}

/* =======================================
	tab
========================================== */
#tabArea {
}
.tabBtn.flex {
}
.tabBtn li {
  width: 198px;
}
.tabBtn a.btn {
  display: block;
  padding: 1em 1.625em;
  border: 1px solid var(--base);
  line-height: 1em;
}
.tabBtn li:not(.active) a.btn {
  background-color: var(--wh);
  color: var(--base);
}
.tabBtn li:not(.active) a.btn .icArrow::after {
  background-image: url(../images/icon_arrow_reverse.svg);
} /*
.tabConts > div {
  display: none;
}
.tabConts > div.active {
  display: block;
}*/

/* =======================================
	top
========================================== */
#top {
}

/*		main
-----------------------------*/
main {
  margin-top: 125px;
}

/*		#mv
-----------------------------*/
#mv {
  position: relative;
}
#mvTxts {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 56px;
  width: 100%;
  align-items: end;
}
#mvSlider figure {
  padding: 0 13px;
}

/*		#topMessage
-----------------------------*/
#topMessage {
  padding: 77px 0 86px;
}
#topMessage .imgs {
  display: grid;
  grid-template-columns: calc(356 / 636 * 100%) 1fr;
  grid-template-rows: auto auto auto auto;
  gap: 15px;
}
#topMessage .imgs figure {
  border-radius: 16px;
  overflow: hidden;
}
#topMessage .imgs figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#topMessage .imgs #topMessageImgs01 {
  grid-row: 1;
  grid-column: 1;
}
#topMessage .imgs #topMessageImgs02 {
  grid-row: 2 / 5;
  grid-column: 1;
}
#topMessage .imgs #topMessageImgs03 {
  grid-row: 1 / 3;
  grid-column: 2;
}
#topMessage .imgs #topMessageImgs04 {
  grid-row: 3;
  grid-column: 2;
}
#topMessage .imgs #topMessageImgs05 {
  grid-row: 4;
  grid-column: 2;
}
#topMessage .imgs div.bgGrd {
  display: grid;
  align-items: center;
  color: #ffffff;
  border-radius: 16px;
  padding: 3.375em 0 3.375em 1.875em;
  line-height: 1.4em;
}
#topMessage .imgs div.bgGrd#topMessageImgs01 {
  font-size: 2rem;
}
#topMessage .imgs div.bgGrd#topMessageImgs02 {
  font-size: 1.6rem;
  line-height: 1.4em;
}
#topMessage .btnWrap {
  margin-top: 52px;
}
#topMessage .btnWrap .btn {
  width: 192px;
  margin: 0 auto 0 0;
}

/*		#topHistory
-----------------------------*/
#topHistory {
  padding: 71px 0 90px;
  overflow: hidden;
}

#timeline {
  margin-top: 24px;
  position: relative;
  display: grid;
  grid-template-columns: 50% 1fr;
  grid-template-rows: auto 170px auto;
  width: min(100%, 1200px);
  gap: 10px;
  z-index: 1;
}
#timeline::before {
  position: relative;
  grid-row: 2;
  grid-column: 1;
  content: "";
  display: block;
  margin-left: calc(50% - 50vw);
  transform: translateY(94px) rotate(-6deg);
  transform-origin: center center;
  width: 160vw;
  height: 27px;
  background-color: var(--base);
  z-index: -1;
  transition: transform 0.3s;
}
.timelineBox {
  position: relative;
}
.timelineBox::before {
  /*タイムライン上の白丸*/
  position: absolute;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
}
.timelineBox:not(#timelineHeisei)::after {
  /*タイムラインから伸びる青線*/
  position: absolute;
  content: "";
  display: inline-block;
  width: 2px;
  height: 68px;
  background: var(--base);
}
.timelineBox h3.h3Tit {
  font-size: 4.8rem;
}
.timelineBox h3.h3Tit .titCatch {
  display: inline-block;
  background-color: var(--base);
  margin-left: 0.6em;
  padding: 0 0.3em;
  font-size: 0.35em;
  font-weight: 600;
  color: var(--wh);
}
#timelineShowa {
  grid-row: 1;
  grid-column: 1;
  transform: translateY(106px);
}
#timelineShowa.timelineBox::before {
  left: 4.8rem;
  bottom: -88px;
}
#timelineShowa.timelineBox::after {
  left: calc(4.8rem + 8px);
  top: 100%;
}
#timelineShowa .timelineBoxInner {
  width: 354px;
}
#timelineShowa figure {
  margin-bottom: 6px;
}
#timelineHeisei {
  grid-row: 3;
  grid-column: 1;
  transform: translate(10px, 65px);
}
#timelineHeisei.timelineBox::before {
  left: 30.3rem;
  top: -104px;
}
#timelineHeisei.timelineBox::after {
  position: absolute;
  left: calc(30.3rem + 2px);
  bottom: 100%;
  content: "";
  display: inline-block;
  width: 12px;
  height: 90px;
  background: var(--base);
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
#timelineHeisei .timelineBoxInner {
  width: 376px;
}
#timelineHeisei .timelineBoxInner {
  padding: 13px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#timelineHeisei .h3Tit {
  margin-right: 17px;
  padding-right: 17px;
  border-right: 2px solid #ffffff;
  color: #fff;
}
#timelineHeisei p {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
}
#timelineReiwa {
  grid-row: 1;
  grid-column: 2;
}
#timelineReiwa.timelineBox::before {
  left: calc(4.8rem + 8px);
  bottom: -130px;
}
#timelineReiwa.timelineBox::after {
  left: calc(4.8rem + 14px);
  top: calc(100% + 10px);
}
#timelineReiwa .timelineBoxInner::after {
  position: absolute;
  left: calc(4.8rem - 12px);
  top: calc(100% + 66px);
  content: "";
  display: block;
  width: 55px;
  height: 55px;
  background: url("../images/icon_ping.svg") no-repeat center bottom / 100%;
  z-index: 1;
}
#timelineReiwa .timelineBoxInner {
  width: 354px;
}
#timelineReiwa figure {
  margin-bottom: 6px;
}
#timelineMirai {
  grid-row: 3;
  grid-column: 2;
}
#timelineMirai.timelineBox::before {
  left: 50%;
  top: -102px;
}
#timelineMirai.timelineBox::after {
  left: calc(50% + 8px);
  bottom: calc(100% + 16px);
}
#timelineMirai .timelineBoxInner {
  width: in(48.33vw, 580px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  gap: 18px;
}
#timelineMirai figure {
  width: 214px;
}
#timelineMirai .txts {
  flex: 1;
}
#timelineMirai h3 {
  margin-bottom: 6px;
}

/* .pcReverse */
.timelineBox.pcReverse .timelineBoxInner {
  display: flex;
  flex-direction: column;
}
.timelineBox.pcReverse h3.h3Tit {
  order: 3;
  font-size: 4.8rem;
}
.timelineBox.pcReverse p {
  order: 2;
}
.timelineBox.pcReverse figure {
  order: 1;
  border-radius: 10px;
  overflow: hidden;
}

.topHistoryLead {
  margin-top: 102px;
  text-align: center;
}

/*		#topChallenge
-----------------------------*/
#topChallenge {
  padding: 240px 0 84px;
  background: var(--Lblue) url("../images/top_challenge_bg.jpg") no-repeat center top / auto 625px;
}
#topChallenge .leadTxt {
  margin-bottom: 82px;
  max-width: 748px;
}
.topChallengeList {
  counter-reset: item 0;
}
.topChallengeList li {
  position: relative;
  background: #ffffff;
  border-radius: 5px;
  border: 1px solid var(--bk2);
  padding: 65px 28px 28px;
  z-index: 1;
}
.topChallengeList li::before {
  position: absolute;
  bottom: 12px;
  right: 20px;
  display: inline-block;
  counter-increment: item;
  content: counter(item, decimal-leading-zero);
  font-size: 9.6rem;
  letter-spacing: 0.03em;
  line-height: 1em;
  color: var(--gray2);
  font-family: "Sarala", sans-serif;
  z-index: 1;
}
.topChallengeList li figure {
  margin: 0 auto 23px;
  text-align: center;
}
.topChallengeList li figure img {
  margin: 0 auto;
}
.topChallengeList li h3 {
  margin-bottom: 12px;
  color: var(--base);
  font-size: 2.4rem;
  font-weight: 800;
}
.topChallengeList li p {
  position: relative;
  z-index: 2;
}

.topChallengeList li:has(.topChallengeData) {
  padding: 41px 45px 62px;
}
.topChallengeList li div > .topChallengeData {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3%;
}
.topChallengeData > div {
  line-height: 1;
}
.topChallengeData .year {
  display: block;
  font-weight: 800;
  font-size: min(3vw, 3.6rem);
  text-align: center;
}
.topChallengeData .sales {
  font-weight: 700;
  font-size: min(4vw, 4.8rem);
  white-space: nowrap;
}
.topChallengeData .sales span {
  font-weight: 400;
  font-size: min(10.67vw, 12.8rem);
  letter-spacing: -0.03em;
}

/*		#topCatch
-----------------------------*/
#topCatch {
  position: relative;
  padding-bottom: 150px;
}
#topCatch .txts {
  position: absolute;
  bottom: 0;
  right: 15%;
}
#topCatch .txts p {
  display: flex;
  flex-direction: row-reverse;
  align-items: end;
  gap: 8px;
}
#topCatch .bgGrdLead {
  padding: 0.2em;
  font-size: min(3vw, 3.6rem);
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl; /* iOS Safari対応 */
  text-orientation: upright;
  -webkit-text-orientation: upright; /* iOS Safari対応 */
}
#topCatch .bgGrdLead:nth-of-type(2) {
  transform: translateY(0.4em);
}

/*		#topWork
-----------------------------*/
#topCatch + #topWork {
  margin-top: -105px;
  padding-top: 0;
}
#topWork {
}
#topWork .leadTxt {
  max-width: 763px;
}

h3:has(+ .topWorkBox) {
  margin-top: 1.35em;
  margin-bottom: 0.4em;
}
.topWorkBox {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.topWorkBox .txts {
  position: absolute;
  inset: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 0 0 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.topWorkBox:nth-of-type(even) .txts {
  padding-left: 50%;
}
.topWorkBox .txts .subLead {
  font-size: 2.9rem;
  color: #ffffff;
  line-height: 1.4em;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.topWorkBox .txts p.subLead span {
  padding-bottom: 7px;
  display: inline-block;
  background: linear-gradient(rgba(64, 64, 64, 0) 90%, var(--base) 90%, var(--base) 100%);
}
.topWorkBox .txts p:not(.subLead) {
  margin-top: 24px;
  width: min(100%, 530px);
  color: #ffffff;
  font-weight: 700;
}

/*		#topInterview
-----------------------------*/
#topInterview {
}
#topInterview.bgGrd {
  background: linear-gradient(-45deg, #006fff 0%, #005ed7 44%, #25488f 84%);
  padding-top: 50px;
}
.topInterviewListWrap {
}
.topInterviewList.flex {
  padding-bottom: 78px;
}
.topInterviewList li {
  position: relative;
  background: var(--wh);
  border-radius: 13px;
  overflow: hidden;
}
.topInterviewList li figcaption {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 0 4px 0;
  width: 99px;
  height: 36px;
  background: var(--base);
  display: grid;
  place-content: center;
  font-weight: 600;
  color: #ffffff;
}
.topInterviewList li .bgW {
  position: relative;
  border-radius: 13px;
  margin-top: -20px;
  padding: 21px 22px;
}
.topInterviewList li h3 {
  margin-bottom: 1em;
  color: var(--base);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: normal;
}

.topInterviewListWrap.scroll-area {
  position: relative;
  width: 100%;
  max-width: 100%;
}
.topInterviewList.scroll-wrap {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}
.topInterviewList.scroll-wrap::-webkit-scrollbar {
  display: none; /* Chrome / Safari / Edge */
}

/* topInterviewControler */
.topInterviewControler {
  display: flex;
  align-items: center;
  gap: 0 min(3.8%, 53px);
}
.topInterviewControler .scrollBtn {
  width: 155px;
  display: flex;
  justify-content: space-between;
  gap: 17px;
}
.topInterviewControler .scrollBar {
  flex: 1;
}

/* スクロールボタン */
.scroll-btn {
  background: var(--wh);
  color: var(--base);
  border: none;
  font-size: 0;
  width: 69px;
  height: 69px;
  cursor: pointer;
  border-radius: 3px;
  user-select: none;
  z-index: 2;
  transition: opacity 0.2s;
}
.scroll-btn.left {
  background: var(--wh) url(../images/ic_bg_arrow_l.svg) no-repeat center center / 100%;
}
.scroll-btn.right {
  background: var(--wh) url(../images/ic_bg_arrow_r.svg) no-repeat center center / 100%;
}
.scroll-btn:hover {
  opacity: 0.8;
}

/* スクロールバー */
.scrollBar {
  position: relative;
  height: 5px;
  background: var(--wh);
  margin-top: 10px;
}
.scroll-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100px;
  background: var(--blue);
  cursor: pointer;
}

/*		#topStyle
-----------------------------*/
#topStyle {
  padding-top: 0;
}
#topStyle > .bgGray {
  padding-top: 85px;
  position: relative;
}
#topStyle > .bgGray::after {
  position: absolute;
  top: 100%;
  left: 50%;
  content: "";
  transform: translateX(-50%);
  display: block;
  border-left: 700px solid transparent;
  border-right: 700px solid transparent;
  border-top: 86px solid var(--gray);
}
#topStyle .h2Tit {
  margin-bottom: 58px;
  text-align: center;
}
.topStyleList {
  position: relative;
  margin-bottom: 44px;
  padding-bottom: 68px;
}
.topStyleList::after {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  margin: 0 auto;
  width: 17px;
  height: 49px;
  background: url("../images/icon_dotted_arrow.svg") no-repeat center bottom / 100% auto;
}
.topStyleList li {
  padding: 0 19px;
}
.topStyleList li .bgCircle {
  width: 296px;
  height: 296px;
  border-radius: 50%;
  background: var(--wh);
  padding-top: 60px;
}
.topStyleList li .bgCircle h3 {
  display: grid;
  align-items: center;
  min-height: 6.1rem;
  color: var(--base);
  font-size: 2.4rem;
  line-height: 1.5em;
  font-weight: 800;
  text-align: center;
}
.topStyleList li .bgCircle figure {
  margin: 32px auto 0;
  width: 148px;
  height: 162px;
}
.topStyleList li .bgCircle figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.topStyleList li .bgCircle + p {
  margin-top: 32px;
  width: min(100%, 282px);
  font-weight: 600;
  line-height: 1.5em;
  letter-spacing: 0.03em;
}

.topStyleList img {
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  transition: all 0.6s ease;
}
.topStyleList img.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@keyframes popUp {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
  }
  60% {
    opacity: 1;
    transform: translateY(-15px) scale(1.05);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.topStyleList img {
  opacity: 0;
  transform: translateY(50px) scale(0.9);
}

.topStyleList img.active {
  animation: popUp 0.8s ease-out forwards;
}

#topStyle h3:has(.bgGrdLead) {
  margin-bottom: 78px;
  text-align: center;
}
.topStyleBox {
  padding: 62px 27px 52px;
  width: min(48.35%, 510px);
}
.topStyleBox h4 {
  margin-bottom: 33px;
  font-size: 2.9rem;
  letter-spacing: 0.03em;
  font-weight: 600;
  text-align: center;
}
.topStyleBox h4 span {
  display: inline-block;
  padding: 0 0.3em;
  color: var(--wh);
}
.topStyleBox .bgW {
  padding: 42px 21px 26px;
  box-shadow: 2.76px 2.76px 4.61px 0 rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
#topStyleYes.topStyleBox {
  background-color: var(--Lblue);
}
#topStyleYes.topStyleBox h4 span {
  background-color: var(--base);
}
#topStyleNo.topStyleBox {
  background-color: var(--gray2);
}
#topStyleNo.topStyleBox h4 span {
  background-color: var(--bk2);
}

.topStyleBox .checkList {
  padding: 0 11px;
}
.checkList li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 24px;
  font-size: 1.8rem;
  font-weight: 700;
}
.checkList li::before {
  position: absolute;
  top: 5px;
  left: 0;
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  background: url("../images/icon_check.svg") no-repeat center center / 100%;
}

.topStyleBox .checkList + p {
  margin-top: 24px;
  font-weight: 500;
  line-height: 1.8em;
}

#topStyleSlider figure {
  margin-left: 17px;
  margin-right: 17px;
  border-radius: 10px;
  overflow: hidden;
}
#topStyleSlider figure:nth-of-type(odd) {
  /* padding: 0 17px; */
  margin-top: 53px;
}
#topStyleSlider figure:nth-of-type(even) {
  /* padding: 0 17px; */
  margin-bottom: 53px;
}

/*		#topData
-----------------------------*/
#topData {
}
#topDataList {
  margin-top: 70px;
}
.topDataBox {
  display: flex;
  flex-direction: column;
}
#topDataBox02 {
}
#topDataBox03 {
}
#topDataBox04 {
}
#topDataBox05 {
}
#topDataBox06 {
}
#topDataBox07 {
}
.topDataBox h3 span {
  display: inline-block;
  background-color: var(--base);
  border-radius: 1px;
  padding: 0.25em 1em;
  color: var(--wh);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: 0.03em;
}
.topDataBox .bgW {
  flex: 1;
  border: 1px solid var(--bk2);
  border-radius: 7px;

  padding: 20px 10px 25px;
}
.topDataBox .bgW figure {
}
#topDataBox01 figure {
}
#topDataBox02 .bgW {
  padding: 13px min(2vw, 42px) 18px 9px;
}
#topDataBox03 .bgW {
  padding: 44px 10px 17px 1px;
}
#topDataBox04 .bgW {
  padding: 29px 20px 17px 58px;
}
#topDataBox04 .bgW .txts li {
  display: flex;
  align-items: center;
  color: var(--base);
  font-size: min(2vw, 2.7rem);
  font-weight: 700;
}
#topDataBox04 .bgW .txts p {
  margin-top: 23px;
  padding-bottom: 25px;
  font-size: 2rem;
}
#topDataBox04 .bgW.pcFlex .txts li + li {
  margin-top: 5px;
}
#topDataBox04 .bgW .txts li:nth-of-type(1) {
  font-size: min(3.14vw, 4.4rem);
}
#topDataBox04 .bgW .txts li > figure {
  width: 5.7rem;
  margin-right: 2rem;
  text-align: center;
}
#topDataBox04 .bgW .txts li > figure img {
  margin: 0 auto;
}
#topDataBox05 figure {
  padding: 19px 0 16px 12px;
}
#topDataBox06 {
  position: relative;
}
#topDataBox06 .bgW {
  padding: 29px 24px 27px 13px;
}
#topDataBox06 .bgW ul {
  display: grid;
  grid-template-columns: 78px 65px 30px 100px;
  grid-template-rows: 142px 50px 100px 94px;
  justify-content: center;
}
#topDataBox06 .bgW li {
  display: grid;
  place-content: center;
  background-color: var(--wh);
  border: 1px solid var(--base);
  border-radius: 50%;
  color: var(--base);
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
}
#topDataBox06 .bgW li:nth-of-type(1) {
  grid-column: 2 / 5;
  grid-row: 1 / 3;
  margin-left: auto;
  background-color: var(--base);
  color: var(--wh);

  --diameter06-1: 175px;
  width: var(--diameter06-1);
  height: var(--diameter06-1);
}
#topDataBox06 .bgW li:nth-of-type(2) {
  grid-column: 1 / 3;
  grid-row: 2 / 4;

  --diameter06-2: 148px;
  width: var(--diameter06-2);
  height: var(--diameter06-2);
}
#topDataBox06 .bgW li:nth-of-type(3) {
  grid-column: 3 / 5;
  grid-row: 3 / 5;
  margin-left: auto;

  --diameter06-3: 118px;
  width: var(--diameter06-3);
  height: var(--diameter06-3);
}
#topDataBox06 .bgW li:nth-of-type(4) {
  grid-column: 2 / 4;
  grid-row: 4 / 5;

  --diameter06-4: 99px;
  width: var(--diameter06-4);
  height: var(--diameter06-4);
}
#topDataBox06::after {
  position: absolute;
  top: calc(100% - 80px);
  left: calc(100% - 73px);
  content: "";
  display: inline-block;
  width: 188px;
  height: 155px;
  background: url(../images/top_data_img00.png) no-repeat center center / 100%;
  z-index: 10;
}
#topDataBox07 {
  position: relative;
  z-index: 1;
}
#topDataBox07 .bgW {
  padding: 50px 32px 40px 47px;
}
#topDataBox07 .bgW ul {
}
#topDataBox07 .bgW li {
  display: inline-block;
  padding: 15px 10px;
  border: 1px solid var(--base);
  background-color: var(--base);
  color: var(--wh);
  font-size: 2.4rem;
  font-weight: 500;
  float: left;
}
#topDataBox07 .bgW li.bgRevers {
  background-color: var(--wh);
  color: var(--base);
}
#topDataBox07 .bgW li#topDataBox07_1 {
  margin: 0 0 15px;
}
#topDataBox07 .bgW li#topDataBox07_2 {
  margin: 0 0 15px 18px;
}
#topDataBox07 .bgW li#topDataBox07_4 {
  margin: 0 0 12px;
  width: min(100%, 440px);
}
#topDataBox07 .bgW li#topDataBox07_5 {
  margin: 0 0 12px 24px;
  font-size: 6.4rem;
  line-height: 1em;
}
#topDataBox07 .bgW li#topDataBox07_6 {
  margin: 0 0 12px 24px;
  font-size: 6.4rem;
  line-height: 1em;
}
#topDataBox07 .bgW li#topDataBox07_7 {
  float: right;
  font-size: 4.8rem;
  line-height: 1em;
}

#topDataList + figure {
  clear: both;
  margin-top: -80px;
  margin-left: 240px;
  width: 188px;
  height: 155px;
}

/*		#topTraining
-----------------------------*/
#topTraining.bgGrd {
  background: linear-gradient(-118deg, #006fff 0%, #005ed7 44%, #25488f 84%);
  padding-top: 60px;
}
#topTraining .bgW {
  margin-top: 78px;
  padding: 56px min(14%, 163px) 71px;
  border-radius: 13px;
}
#topTraining .bgW h3 {
  margin-bottom: 1.35em;
  font-size: 4.3rem;
  text-align: center;
}
#topTraining .tabBtn.flex {
  justify-content: center;
  gap: 20px min(3vw, 25px);
  margin-bottom: 30px;
}
#topTraining .stepList {
  padding: 18px 0 0 0;
  border-top: 1px solid var(--base2);
}
#topTraining .stepList > li {
  display: flex;
  align-items: center;
  gap: 0 2.9%;
  overflow: hidden;
}
#topTraining .stepList > li h4 {
  position: relative;
  width: 5em;
  font-size: 2.4rem;
  color: var(--base);
  letter-spacing: 0.03em;
  line-height: 1.5em;
  font-weight: 700;
  text-align: center;
}
#topTraining .stepList > li h4::before,
#topTraining .stepList > li h4::after {
  position: absolute;
  right: 0;
  left: 0;
  content: "";
  display: block;
  width: 9px;
  height: 200px;
  background-color: var(--base2);
  margin: 0 auto;
}
#topTraining .stepList > li h4::before {
  bottom: 100%;
}
#topTraining .stepList > li h4::after {
  top: 100%;
}
#topTraining .stepList > li:last-child h4::after {
  content: none;
}
#topTraining .stepList .stepTxts {
  flex: 1;
  padding: 17px 0;
  border-bottom: 1px solid var(--base2);
}
#topTraining .stepList .stepTxts h5 {
  margin-bottom: 0.3em;
  color: var(--base);
  font-size: 2rem;
  line-height: 2em;
  letter-spacing: 0.03em;
  font-weight: 800;
}

/*		#topAllowance
-----------------------------*/
#topAllowance {
  background-color: var(--Lblue);
}
#topAllowance h2 {
  margin-bottom: 1em;
  font-size: 4.3rem;
  text-align: center;
}
#topAllowanceHead {
  padding: 23px min(4.17%, 50px) 35px;
}
#topAllowanceHead dl {
  padding: 25px 7.9% 25px 3.5%;
}
#topAllowanceHead dl + dl {
  border-top: 1px solid var(--gray2);
}
#topAllowanceHead dt {
  font-size: 2.4rem;
  color: var(--base);
  letter-spacing: 0.03em;
  line-height: 1.7em;
  font-weight: 800;
}
#topAllowanceHead dd {
}
#topAllowanceHead dd p {
  letter-spacing: 0.03em;
}

#topAllowance h3.h2Tit {
  margin-top: 84px;
  margin-bottom: 0.56em;
}

.topAllowanceList {
  margin-top: 65px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0.83%;
}
.topAllowanceList li {
  padding: 66px 0 0 0;
  width: calc(92.68% / 5);
  border: 1px solid var(--bk2);
  background-color: var(--wh);
  border-radius: 5px;
}
.topAllowanceList li figure {
  display: grid;
  align-items: start;
  margin: auto;
  width: 98px;
  height: 79px;
  text-align: center;
}
.topAllowanceList li figure img {
  margin: 0 auto;
}
.topAllowanceList li p {
  display: grid;
  place-content: center;
  padding: 0.25em 0 0.75em;
  height: 4.2em;
  color: var(--base);
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
}
#topAllowanceBottom {
  margin-top: 86px;
  padding: 30px 5% 34px;
}
#topAllowanceBottom h3 {
  margin-bottom: 20px;
  font-size: 3.2rem;
  text-align: center;
}
#topAllowanceBottom p {
  width: min(100%, 708px);
  margin: 0 auto;
  text-align: center;
  letter-spacing: 0.03em;
}
#topAllowanceBottom .btn {
  margin-top: 40px;
  width: min(100%, 315px);
}

/*		#topEsg
-----------------------------*/
#topEsg {
}
#topEsg .bgGrdLead {
  padding: 0.14em 0.2em;
  font-size: min(4vw, 4.8rem);
}
#topEsgBoxs {
  margin-top: 84px;
}
#topEsgBoxs .bdBox {
  padding: 18px 18px 24px;
}
#topEsgBoxs .bdBox figure {
  margin-bottom: 18px;
}
#topEsgBoxs .bdBox h3 .en {
  display: block;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--base);
}
#topEsgBoxs .bdBox h3 .fontSarala {
  margin-bottom: 18px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.6em;
}
#topEsgBoxs .bdBox h3 .fontSarala > span {
  font-size: 1.5em;
  color: var(--base);
}
#topEsg .btnWrap {
  margin-top: 66px;
}

/*		#topEsgSlider
-----------------------------*/
#topEsgSlider {
  padding: 0 0 114px;
}
#topEsgSlider figure {
  margin: 0 17px;
  border-radius: 10px;
  overflow: hidden;
}

/*		#topRecruitment
-----------------------------*/
#topRecruitment {
  background: #ffffff;
}
#recruitTabArea .tabBtn.flex {
}
#recruitTabArea .tabBtn li {
  width: 153px;
}
#recruitTabArea .tabBtn li a {
  display: block;
  background-color: var(--gray2);
  color: var(--bk2);
  padding: 0.6em 1em;
  font-size: 2rem;
  line-height: 1em;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}
#recruitTabArea .tabBtn li.active a {
  background-color: var(--base);
  color: var(--wh);
}
#recruitTabArea .tabConts {
}
#recruitTabArea .tabConts .recruitContTab:has(.center) {
  display: grid;
  place-content: center;
  min-height: 400px;
}
#recruitTabArea .tabConts .recruitContTab p.center {
}
#recruitTabArea .basicTable dd {
  font-weight: 800;
}

#topRecruitment .btn {
  font-size: 3.4rem;
}
#topRecruitment .btn span {
  font-size: 1.6rem;
}

#topRecruitment .btn.disable {
  pointer-events: none;
  color: #7c7c7c;
  font-size: 2rem;
}

/*		#topContact
-----------------------------*/
/*
#topContact {
  padding: 0 0 100px;
}*/

#topContact h2:has(.bgGrdLead) {
  position: relative;
  transform: translateY(calc(-3.2rem - 12px));
  width: min(100%, 820px);
  z-index: 2;
}
#topContact .formArea {
  position: relative;
  z-index: 1;
}

#topContact input[type="radio" i] {
  margin: 5px 3px 7px 5px;
}
#topContact input[type="text" i] {
  margin-bottom: 8px;
}

/*		#
-----------------------------*/

/* =======================================
	form
========================================== */
.formArea {
  position: relative;
  padding: 79px 12.67% 77px;
  z-index: 1;
}
.formArea h4 {
}
.formArea form {
  max-width: 1000px;
  margin: 0 auto;
}

.formArea .basicTable {
  border: none;
  background: none;
  gap: 0 38px;
}
form#mailformpro dl dt {
  position: relative;

  border: 0;
  float: none;
  width: auto;
  font-size: inherit;
  color: var(--bk);
}

form#mailformpro dl dt .hissu {
  position: absolute;
  top: calc(50% - 10px);
  right: 0;
  background: #fe0000;
  width: 48px;
  padding: 3px 5px 3px 5px;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1em;
  text-align: center;
  border-radius: 2px;
}
form#mailformpro dl dd {
  border: 0;
  padding: 26px 0;
  font-size: inherit;
}

form#mailformpro dl dd input[type="text"],
form#mailformpro dl dd input[type="email"] {
  border-radius: 3px;
}

form#mailformpro dl dd input[type="text"],
form#mailformpro dl dd input[type="email"] {
  width: 100%;
  height: 36px;
  max-width: 100% !important;
}
form#mailformpro dl dd input[type="text"].short {
  width: 10rem;
  margin-right: 5px;
}
form#mailformpro dl dd input[type="text"].short + .short {
  margin-left: 20px;
}
form#mailformpro dl dd input[type="file"] {
  max-width: 100% !important;
  width: 100%;
  background-color: inherit;
  box-shadow: none;
  border: none;
  font-size: inherit;
}
form#mailformpro dl dd textarea {
  width: 100% !important;
  height: 8em !important;
  max-width: 100% !important;
}
.confirm a {
  text-decoration: underline;
}

.footForm {
  display: inline-block;
  margin: auto;
  text-align: left;
}
.footForm p {
  margin-bottom: 10px;
}

.footForm .txtLink {
  text-decoration: none;
  transition: 0.3s;
  background: linear-gradient(rgba(64, 64, 64, 0) 90%, var(--base) 90%, var(--base) 100%);
}
.footForm .txtLink:hover {
  opacity: 0.7;
}

#mailformpro input.btn {
  border: none;
  background: url("../images/icon_arrow.svg") no-repeat 90% center var(--base);
  margin: 0 auto;
  padding: 1em 36px 1em 22px;
  width: 213px;
  text-align: left;
  cursor: pointer;
}

/* =======================================
	thanks
========================================== */

#thanks p {
  color: #fff;
  font-size: 1.8rem;
}
/* =======================================
追加
========================================== */

#mv .bgGrdLead {
  background: none;
  text-shadow: 2px 2px 4px rgba(0, 50, 150, 0.6), 4px 4px 8px rgba(0, 50, 150, 0.4);
}

#topHistory .bgGrdLead {
  background-color: none;
  background: linear-gradient(215deg, #006fff 0%, #005ed7 44%, #25488f 84%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#topCatch .bgGrdLead {
  background-color: none;
  background: linear-gradient(215deg, #006fff 0%, #005ed7 44%, #25488f 84%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#topContact .bgGrdLead {
  background: none;
}

@media (max-width: 768px) {
  #popupMessage .modal-content {
    display: block !important;
    overflow-y: auto;
  }

  #popupMessage .modal-background {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    height: 400px !important;
    right: 0 !important;
    left: 0 !important;
    top: 0 !important;
  }

  #popupMessage .modal-background::before {
    display: none !important;
  }

  #popupMessage .modal-background img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    position: static !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  #popupMessage .modal-overlay {
    position: relative !important;
    width: 100% !important;
    padding: 40px 20px !important;
    background: #fff !important;
    min-height: auto !important;
  }

  #popupMessage .modal-text {
    max-width: 100% !important;
    width: 100% !important;
  }

  #popupMessage .h3Tit {
    font-size: 20px !important;
  }

  #popupMessage .modal-profile figcaption {
    width: 100% !important;
    text-align: center !important;
  }
  #topCatch .txts {
    right: 8%;
  }
  #topCatch figure img {
    object-position: 44% center;
  }

  #topCatch .txts {
    top: 125px;
  }
  #topCatch {
    padding-bottom: 100px;
  }
}
