@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: 700;
}

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: 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: #ffffff;
  color: #000000;
}

body {
  margin: 0 auto;
  padding: 0;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  box-sizing: border-box;
  line-height: 1.8;
}

main {
  /*overflow: hidden;
  topNewsでposition:stickyを有効にするためコメントアウト
  */
}

object {
  pointer-events: none;
}


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

.js-inview {
  opacity: 0;
}


/*フォントファミリー
========================================== */
.fontG,
.en.fontG {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
}

.fontA,
.en {
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-style: normal;
}


/*色
========================================== */
:root {
  --base: #000000;
  --bk: #000000;
  --wh: #FFFFFF;
  --pink: #AD0081;
  --Lpink: #FFF9FE;
  --gray: #D1D1D1;
  --grd1: linear-gradient(45deg, #CE27A4 0%, #AD0081 75%);
}

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

.pink {
  color: var(--pink) !important;
}

.grd {
  background: linear-gradient(45deg, #CE27A4 0%, #AD0081 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bk {
  color: var(--bk) !important;
}

.white {
  color: var(--wh) !important;
}

/*背景
========================================== */
.bgBaseC {
  background: var(--base) !important;
}

.bgLpink {
  background: var(--Lpink) !important;
}

.bgGray {
  background: var(--gray) !important;
}

.bgW {
  background: var(--wh) !important;
}

.bgGrd {
  background: linear-gradient(45deg, #CE27A4 0%, #AD0081 75%);
}

.bgGrd_30 {
  background: linear-gradient(45deg, rgba(206, 39, 164, 0.3) 0%, rgba(173, 0, 129, 0.3) 75%);
}

.bgGrd_70 {
  background: linear-gradient(45deg, rgba(206, 39, 164, 0.7) 0%, rgba(173, 0, 129, 0.7) 75%);
}

.bgGrd2 {
  background: linear-gradient(180deg, rgba(49, 44, 117, .8) 0%, rgba(173, 0, 129, .8) 57%);
}


/*ボタン
========================================== */
.btnWrap {
  margin-top: 40px;
  text-align: center;
}

.btnWrap .btn,
.btnWrap .btnRound {
  margin: 0 auto;
}

.btnWrap.left .btn {
  margin: 0;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
}

.bgGrd .btn.icArrow,
.bgGrd2 .btn.icArrow {
  gap: 0 16px;
  justify-content: center;
  margin: 0 auto;
  padding: 10px;
  width: 242px;
  background: transparent;
  border: 1px solid var(--wh);
  border-radius: 5px;
  color: var(--wh);
}

.btnRound {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(45deg, #CE27A4 0%, #AD0081 75%);
  color: var(--wh);
  line-height: 1.2;
  text-align: left;
  letter-spacing: 0.05em;
}

.btnRound.bgArrow {
  position: relative;
  border-radius: calc(infinity * 1px);
  width: min(100%, 250px);
  height: 66px;
  padding-left: min(2.9vw, 35px);
}

.btnRound:has(.bgArrow) {
  display: grid;
  place-content: center;
  padding-top: 15px;
}

.btn:hover,
.btnRound:hover {
  opacity: 0.7;
}

.btn.inline {
  display: inline-grid;
  width: auto;
  padding-left: 50px;
  padding-right: 100px;
  font-size: 20px;
}

.icArrow::after {
  content: "";
  display: block;
  background: url("../images/ic_btn_more.svg") no-repeat left top/100% auto;
  width: 4px;
  height: 8px;
}


.bgArrow::after {
  content: "";
  display: block;
  background: url(../images/ic_arrow_cricle_wh.svg) no-repeat left top / 100% auto;
}

.btnRound.bgArrow::after {
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
}

.btnRound .bgArrow::after {
  margin: 15px auto 0;
  width: 38px;
  height: 38px;
}

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

/*タイトル
========================================== */
.h2Tit {
  margin-bottom: 1em;
  font-size: min(3.3vw, 4rem);
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.04em;
  color: #160010;
}

.h2Tit .en {
  position: relative;
  display: block;
  margin-bottom: 20px;
  padding-left: 32px;
  background: linear-gradient(45deg, #CE27A4 0%, #AD0081 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.6em;
  font-weight: 700;
  line-height: 1;
}

.bgGrd .h2Tit .en {
  background: none;
  -webkit-text-fill-color: unset;
}

.h2Tit .en::before {
  position: absolute;
  bottom: 2px;
  left: 10px;
  content: "";
  display: block;
  background-color: var(--pink);
  width: 12px;
  height: 18px;
  border-radius: 1px;
  transform: skewX(41deg);
}

.bgGrd .h2Tit .en {
  color: var(--wh);
}

.bgGrd .h2Tit .en::before {
  background-color: var(--wh);
}

.h3Tit {
  border-bottom: 1px var(--pink) solid;
  padding-bottom: 10px;
  color: var(--base);
  font-size: 3.6rem;
  font-weight: 600;
  text-align: left;
  margin-bottom: 40px;
}

.h3Tit .en {
  position: relative;
  display: block;
  margin-bottom: 10px;
  padding-left: 30px;
  background: linear-gradient(45deg, #CE27A4 0%, #AD0081 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.6em;
  font-weight: 700;
  line-height: 1;
}

.h3Tit .en::before {
  position: absolute;
  bottom: 0;
  left: 10px;
  content: "";
  display: block;
  background-color: var(--pink);
  width: 12px;
  height: 24px;
  border-radius: 1px;
  transform: skewX(20deg);
}

.h4Tit {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.h5Tit {
  font-size: 2rem;
  margin-bottom: 10px;
}

.h6Tit {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

/*テキスト
========================================== */
#leadArea {
  padding: 100px 0 60px;
}

.leadTxt {
  margin-bottom: 20px;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.85;
  text-align: center;
}

/* =======================================
  ページャー
========================================== */
/*-- pageNavi --*/
.pageNavi {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 50px;
}

.pageNavi .current,
.pageNavi .inactive,
.pageNavi a {
  /*border: 1px solid var(--base);*/
  display: grid;
  align-items: center;
  justify-content: center;
  font-optical-sizing: auto;
  color: var(--base);
  font-weight: 500;
  font-style: normal;
}

.pageNavi .current {
  background: var(--base);
  color: #fff;
}

.pageNavi a:hover {
  background: var(--base);
  color: #fff;
}

.pageNavi a.next:hover {
  background: none;
  border: none;
  color: var(--base);
}

/*-- pager --*/
.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  max-width: 800px !important;
  position: relative;
  width: 90%;
  margin: 50px auto 0;
}

.pager a {
  background: var(--base);
  color: var(--wh);
  display: grid;
  align-items: center;
  justify-content: center;
  width: 160px;
  padding: 10px 0;
  border-radius: 3px;
  position: relative;
  font-weight: 700;
  line-height: 1.4;
}

.pager a:last-of-type {
  border-right: none;
}

.pager .pagerPrev::before,
.pager .pagerNext::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3.5px);
}

.pager .pagerPrev::before {
  border-bottom: 2px var(--wh) solid;
  border-left: 2px var(--wh) solid;
  left: 15%;
}

.pager .pagerNext::after {
  border-top: 2px var(--wh) solid;
  border-right: 2px var(--wh) solid;
  right: 15%;
}

/*-- list --*/
.basicList li {
  border-bottom: 1px solid #ccc;
  padding: 15px 40px;
}

.basicList li li {
  border-bottom: none;
  padding: 5px 20px;
}

.discList {
  padding: 0 0 0 18px;
}

.discList li {
  list-style: disc outside;
  padding: 0 0 5px 0;
}

.checkList li {
  background: url("../images/ic_check.svg") no-repeat left top/22px auto;
  padding: 0 0 0 31px;
  margin-bottom: 8px;
  line-height: 1.8;
}

.icList li {
  margin-bottom: 0.5em;
  padding-left: 0.75em;
  position: relative;
}

.icList li::before {
  content: '-';
  color: var(--blue);
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}

/**/

/* =======================================
	header
========================================== */
header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(209, 209, 209, .6);
  width: 100%;
  z-index: 100;
}

header #logo {
  width: 109px;
  font-size: 0;
}

header #logo a {
  display: block;
}

header #logo a img {
  width: 100%;
  height: auto;
}

#gnaviList .tel a {
  font-size: min(2.67vw, 3.2rem);
  color: #000000;
  line-height: 1em;
  white-space: nowrap;
}

#gnaviList .tel .time {
  display: block;
  font-size: min(1.67vw, 1.25em);
  font-weight: 400;
  color: #000000;
  line-height: 1em;
}

/* =======================================
	footer/#footContact
========================================== */
#footContact {
  position: relative;
  padding: 60px 0 100px;
}

#footContact::before,
#footContact::after {
  position: absolute;
  content: "";
  display: block;
}

#footContact::before {
  top: 0;
  right: 0;
  width: 250px;
  height: 125px;
  background: url("../images/bg_para_rt_white.png") no-repeat left bottom / 435px 244px;
}

#footContact::after {
  bottom: 0;
  left: 0;
  width: 270px;
  height: 100px;
  background: url("../images/bg_para_lb_white.png") no-repeat right top / 435px 244px;
}

#footContact h2 {
  color: var(--wh);
}

#footContact h2.h2Tit .en {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 20px;
}

#footContact .btnTel {
  background: url("../images/footcontact_ic_tel.svg") no-repeat left center / 48px;
  padding-left: 60px;
}

#footContact .btnTel a {
  color: var(--wh);
  font-size: 4rem;
  font-weight: 500;
  line-height: 1em;
  white-space: nowrap;
}

#footContact .btnTel>span {
  display: block;
  color: var(--wh);
  font-size: 1.6rem;
  line-height: 1em;
}

#footContact .btnTel span.fontA {
  font-size: 1.8rem;

}

#footContact .btnContact {}

#footContact .btnContact a {
  position: relative;
  border-radius: 5px;
  display: grid;
  place-content: center;
  background: var(--wh);
  width: 422px;
  max-width: 100%;
  padding: 0 40px 0 20px;
  height: 100px;
  color: var(--pink);
  font-size: min(2.3vw, 2.4rem);
  text-align: center;
}

#footContact .btnContact a span.mail {
  display: inline-block;
  background: url("../images/footcontact_ic_mail.svg") no-repeat left center / 50px auto;
  padding-left: 60px;
  font-size: 2.8rem;
}

#footContact .btnContact a::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 22px;
  content: "";
  display: block;
  width: 11px;
  height: 19px;
  background: url("../images/ic_arrow_pink.svg") no-repeat left center / 100%;
}

#footContact .btnContact a:hover {
  opacity: .7;
}

/* =======================================
	footer/#footBottom
========================================== */
footer {
  padding: 96px 0 0;
}

#footBottom {
  position: relative;
  background: linear-gradient(0deg, #333333 0%, #545454 100%);
  background-size: 100% 100%;
  padding: 80px 0 60px;
}

#footerLogo {
  width: 109px;
}

#footerLogo img {
  width: 100%;
  height: auto;
}

#footBottom .footerLeft p,
#footBottom .footerLeft p a {
  color: var(--wh);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
}

footer .address {
  margin-top: 40px;
}

footer .tel a {
  white-space: nowrap;
}

footer .recognized {
  margin-top: 25px;
}

footer .recognized img {
  display: inline;
}

footer .recognized span {
  font-size: 1.2em;
}

#footBottom .footerRight li a {
  color: var(--wh);
  font-size: min(1.84vw, 1.8rem);
}

.footerPR {
  text-align: right;
}

.footerPR a {
  display: inline-block;
  background-color: #ffffff;
  margin-left: auto;
  padding: 19px 0 8px;
  border-radius: 5px;
  text-align: center;

}

.footerPrImg {
  font-size: 0;
}

.footerPrImg a {
  padding: 19px 70px 8px;
}

.footerPR a span.baloon {
  position: relative;
  display: inline-block;
  padding: 0 22px;
  background: linear-gradient(180deg, #CE27A4 0%, #AD0081 75%);
  border-radius: calc(infinity * 1px);
  line-height: 26px;
  font-weight: 900;
  color: white;
}

.footerPR a span.baloon::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 4px;
  background: #CE27A4;

  /* 二等辺三角形を作る */
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}

#footBottomCopy {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--wh);
  margin-top: 56px;
  padding-top: 20px;
}

#footBottomCopy a {
  font-size: 1.6rem;
  color: var(--wh);
}

footer .copy {
  font-family: "Roboto", sans-serif;
  color: var(--wh);
  font-size: 1.2rem;
  text-align: right;
  font-weight: 400;
}


#pageTop {
  position: fixed;
  right: 7.1vw;
  bottom: 100px;
  z-index: 10;
}

#pageTop a {
  display: grid;
  place-content: center;
  color: var(--LLblue);
  font-size: 20px;
  text-align: center;
  line-height: 1.2;
  text-shadow: 0 0 2px var(--blue);
}

#pageTop a::before {
  content: "";
  display: block;
  background: url("../images/ic_pagetop.svg") no-repeat left top/100% auto;
  border: 1px var(--blue) solid;
  border-radius: 50%;
  width: 53px;
  height: 53px;
  margin: 0 auto 13px;
}

/* =======================================
	 common
========================================== */
/*		main
-----------------------------*/
main {
  margin-top: 106px;
}

.pgs #breadcrumb+section {
  position: relative;
}

.pgs section:first-of-type::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

/*タイトル
========================================== */
/*-- mainTitle --*/
.mainTitle {
  color: var(--wh);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.mainTitle h2 {
  position: relative;
  z-index: 1;
  text-align: left;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin: 0 auto;
  width: 96%;
  max-width: 1100px !important;
}

.pgs .h3Tit .en::before {
  left: 10px;
}

.pgs .h5Tit.icC {
  position: relative;
  padding-left: 20px;
}

.pgs .h5Tit.icC::before {
  content: "";
  background: var(--wh);
  display: inline-block;
  border-radius: calc(infinity * 1px);
  border: 4px solid var(--pink);
  width: 6px;
  height: 6px;
  position: absolute;
  left: 0;
  top: calc(50% - 5px);
}

/* パンくず
========================================== */
#breadcrumb {
  border-bottom: 1px solid var(--pink);
  padding: 15px 0;
}

#breadcrumb ul {
  display: flex;
  gap: 0 34px;
  margin: 0 auto;
  width: 96%;
  max-width: 1100px !important;
}

#breadcrumb ul li a {
  color: var(--pink);
}

#breadcrumb ul li:not(:last-child) {
  position: relative;
}

#breadcrumb ul li:not(:last-child)::after {
  content: "";
  display: inline-block;
  border-top: 1px solid var(--gray);
  border-right: 1px solid var(--gray);
  transform: rotate(45deg);
  width: 7px;
  height: 7px;
  position: absolute;
  right: -21px;
  top: calc(50% - 3.5px);
}

/*		leadTxt
-----------------------------*/
.leadWrap,
.leadWrap:has(+ section.bgLpink) {
  padding: 100px 0;
}

.leadWrap:has(+ section) {
  padding: 100px 0 0;
}

.pgs .leadWrap .leadTxt {
  text-align: center;
}

/*-- table --*/
.basicTable {
  background: var(--wh);
  /* border: 1px solid var(--base); */
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}

.basicTable>dt {
  background: var(--Lpink);
  color: var(--pink);
  display: flex;
  font-weight: 700;
  align-items: center;
}

.basicTable>dd {
  display: grid;
  align-items: center;
}

.basicTable>dd:last-of-type {
  border-bottom: none;
}

.basicTable dd dl dd {
  padding-left: 1em;
}

.basicTable dd dl dd+dt {
  padding-top: 15px;
}

.basicTable a {
  text-decoration: underline;
}

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

table.basicTable {
  display: table;
  width: 100%;
}

table.basicTable thead {
  width: 100%;
}

table.basicTable thead th {
  background: var(--base);
  border-right: 1px solid var(--wh);
  border-bottom: 1px solid var(--wh);
  color: var(--wh);
  font-weight: 700;
  text-align: center;
}

table.basicTable thead th span {
  display: block;
  font-size: 88%;
}

table.basicTable tbody th {
  width: 200px;
  background: var(--gray);
  border-right: 1px solid var(--base);
  border-bottom: 1px solid var(--base);
  color: var(--base);
  font-weight: 500;
}

table.basicTable.col50 tbody th {
  width: 50%;
}

table.basicTable tbody td {
  border-right: 1px solid var(--base);
  border-bottom: 1px solid var(--base);
}

table.basicTable tbody tr:last-of-type th,
table.basicTable tbody tr:last-of-type td {
  border-bottom: none;
}

table.basicTable th,
table.basicTable td {
  vertical-align: middle;
  padding: 15px 2.5%;
}

table.basicTable th:last-child,
table.basicTable td:last-child {
  border-right: none;
}


/*		anchorLink
-----------------------------*/
.anchorLink {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.anchorLink a {
  background: var(--grd1);
  border: 1px solid var(--pink);
  display: grid;
  place-content: center;
  position: relative;
  max-width: 100%;
  height: 100%;
  color: var(--wh);
  text-align: center;
}

.anchorLink a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid var(--wh);
  border-right: 1px solid var(--wh);
  position: absolute;
  right: 8%;
  top: calc(50% - 6px);
  transform: rotate(45deg);
}

.anchorLink a:hover {
  background: var(--wh);
  color: var(--base);
}

.anchorLink a:hover::after {
  border-bottom: 1px solid var(--pink);
  border-right: 1px solid var(--pink);
}

.anchorLink li.other a::after {
  display: none;
}

/*----*/

.pageLinks {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.pageLinks li a {
  border-radius: 5px;
  background: var(--grd1);
  border: 1px solid var(--pink);
  color: #fff;
  display: grid;
  place-content: center;
  position: relative;
  max-width: 100%;
  height: 100%;
  text-align: center;
}

.pageLinks li a::before {
  content: "";
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: calc(infinity * 1px);
  position: absolute;
}

.pageLinks li a::after {
  content: "";
  display: inline-block;
  border-top: 1px solid var(--wh);
  border-right: 1px solid var(--wh);
  position: absolute;
  transform: rotate(45deg);
}

.pageLinks .noLink a,
.pageLinks a:hover {
  background: var(--wh);
  color: var(--pink);
}

.pageLinks a:hover::after {
  border-top: 1px solid var(--pink);
  border-right: 1px solid var(--pink);
}

.pageLinks a:hover::before {
  border: 1px solid rgba(173, 0, 129, .5);
}

.btmLinks {
  margin: 0 auto;
  border-top: 1px dotted var(--pink);
}

.btmLinks h3 {
  padding-left: 20px;
  position: relative;
}

.btmLinks h3::before {
  position: absolute;
  left: 0;
  content: "";
  display: block;
  background-color: var(--pink);
  border-radius: 1px;
  transform: skewX(20deg);
}

/* =======================================
	top
========================================== */
#top main {
  margin-top: 0;
}

/*		#mv
-----------------------------*/
#mv {
  position: relative;
  padding: 0;
}

#mvSlider {
  position: relative;
  z-index: 1;
  padding: 0;
}

#mvSlider figure {
  height: 810px;
}

#mvSlider figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 140 / 81;
}

#mvSlider .slick-dots {
  bottom: 48px;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  z-index: 1000;
}

#mvSlider .slick-dots li {
  position: relative;
  width: 10px;
  height: 10px;
  margin: 0 20px;
}

#mvSlider .slick-dots li button {
  width: 10px;
  height: 10px;
}

#mvSlider .slick-dots li button:before {
  line-height: 1;
  background: #EDEDED;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

#mvSlider .slick-dots li.slick-active button:before {
  background: #EDEDED;
}

#mvSlider .slick-dots li.slick-active button::after {
  content: "";
  display: block;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  border: 1px #AFAFAF solid;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


#mv .inner1200 {
  position: absolute;
  inset: 0 0 0 0;
}

#mvTxts {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: min(74vw, 711px);
  z-index: 1;
}

#mvTxts h2 {
  display: inline-block;
  margin-bottom: min(6.2vw, 74px);
  font-size: min(10vw, 74px);
  color: var(--wh);
  line-height: 1.2;
  text-shadow: 0px 0px 8px #000000
}

#mvLinks {
  position: relative;
  border-radius: 5px;
  padding: 18px min(3.2%, 23px);
}

#mvLinks::before, #mvLinks::after {
  position: absolute;
  content: "";
  display: block;
}

#mvLinks::before {
  top: 0;
  right: 0;
  width: 95px;
  height: 45px;
  background: url(../images/bg_para_rt_white.png) no-repeat left bottom / 157px 88px;
}

#mvLinks::after {
  bottom: 0;
  left: 0;
  width: 95px;
  height: 45px;
  background: url(../images/bg_para_lb_white.png) no-repeat right top /157px 88px;
}

#mvLinks ul {
  gap: 0 10px;
}

#mvLinks ul li {
  flex: 1;
}

#mvLinks h3 {
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--wh);
  color: var(--wh);
  font-size: min(4.2vw, 2.6rem);
  letter-spacing: 0.05em;
  text-align: center;
}

#mvLinks ul {
  margin-top: 17px;
}

#mvLinks li a {
  background-color: var(--wh);
  border-radius: 5px;
  padding: 5px;
}

#mvLinks li figure {
  width: 104px;
}

#mvLinks li figure img {
  width: 100%;
  border-radius: 5px;
}

#mvLinks li p {
  flex: 1;
  margin-bottom: 0;
  font-size: min(4vw, 2rem);
  color: var(--pink);
  font-weight: 700;
  line-height: 1.4em;
}

#mvLinks li p span {
  display: block;
  font-size: 0.6em;
  line-height: 1.2em;
}

#mvBtn {
  position: absolute;
  right: 0;
  bottom: 81px;
  z-index: 1;
}

#mvBtn p:has(.slash) {
  margin-bottom: 6px;
  text-align: center;
}

#mvBtn .slash {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 0 0.4em;
  color: var(--wh);
  line-height: 1.3em;
  letter-spacing: 0.05em;
}

#mvBtn .slash::before,
#mvBtn .slash::after {
  content: "";
  display: block;
  background-color: var(--wh);
  width: 2px;
  height: 22px;
  border-radius: calc(infinity * 1px);
}

#mvBtn .slash::before {
  transform: rotate(-30deg);
}

#mvBtn .slash::after {
  transform: rotate(30deg);
}

#mvBtn .slash .fontL {
  font-size: 1.25em;
  font-weight: 700;
}

#mvBtn a.btnRound {
  border-radius: 50%;
  width: 152px;
  height: 152px;
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.2);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/*		#topOpinion
-----------------------------*/
#topOpinion {
  background:
    url("../images/top_opinion_bg.svg") no-repeat 9.4vw center / auto 94%,
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(223, 154, 205, 0.1) 46%, rgba(236, 126, 208, 0.1) 77%, rgba(255, 31, 198, 0.1) 100%);
}

.topOpinionBox {
  gap: 0 4%;
}

.topOpinionBox .txts p:not(.btnWrap) {
  line-height: 2.25em;
}

.topOpinionBox .txts p span {
  font-size: 1.25em;
  font-weight: 600;
}

.topOpinionBox .txts p+p:not(.btnWrap) {
  margin-top: 1em;
}

.topOpinionBox .imgs {
  text-align: center;
}

.topOpinionBox .imgs p {
  font-size: 0;
}

.topOpinionBox .imgs p img {
  margin: 30px auto 0;
  width: min(100%, 493px);
}

/*		#topService
-----------------------------*/
#topService {
  position: relative;

}

#topService::before, #topService::after {
  position: absolute;
  content: "";
  display: block;
  z-index: -2;
}

#topService::before {
  top: 0;
  right: 0;
  width: 334px;
  height: 220px;
  background: url(../images/top_service_bg_right.svg) no-repeat left bottom / 335px auto;
}

#topService::after {
  top: calc(100% - 180px);
  left: 0;
  width: 315px;
  height: 415px;
  background: url(../images/top_service_bg_left.svg) no-repeat right top /316px auto;
}

#topService .h2Tit {
  margin-bottom: 0;
}

.topServiceImg {
  width: min(100%, 862px);
  margin: -30px auto 0;

}

.topServiceText {
  width: min(100%, 1131px);
  margin: -30px auto 0;
  font-size: 20px;
  font-weight: 400;
}

.topServiceText .grd {
  font-weight: 500;
}

.topServiceBoxWrap {
  margin: 40px auto 94px;
}

.topServiceBox {
  position: relative;
  border-radius: 5px;
}

.topServiceBox figure {
  position: absolute;
  inset: 0 0 0 0;
  z-index: -1;
}

.topServiceBox figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.topServiceBox .txts {
  border-radius: 5px;
  padding: 24px 4.68% 53px;
}

.topServiceBoxTi {
  display: block;
  margin-bottom: 28px;
  font-weight: 700;
  color: var(--wh);
}

.topServiceBox .txts h3 {
  margin-bottom: 26px;
  font-size: 1.8rem;
  color: var(--wh);
  font-weight: 500;
}

.topServiceBox .txts h3 .fontL {
  font-size: 1.77em;
  font-weight: 700;
}

.topServiceBox .txts p {
  line-height: 1.56em;
  color: var(--wh);
}

/*prBox*/
.prBox {
  text-align: center;
}

.prBox .slash {
  position: relative;
  display: inline-block;
  padding: 0 2em;
  line-height: 1.3em;
  letter-spacing: 0.05em;
  font-size: 1.8rem;
  font-weight: 600;
}

.prBox .slash::before,
.prBox .slash::after {
  position: absolute;
  bottom: 0;
  display: inline-block;
  font-size: 1.33em;
}

.prBox .slash::before {
  left: 0;
  content: "＼ ";
}

.prBox .slash::after {
  right: 0;
  content: "／ ";
}

.prBox .slash .fontL {
  font-size: 1.33em;
}

.prBox .dot {
  position: relative;
  display: inline-block;
}

.prBox .dot::before {
  content: "●";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 6px;
  line-height: 1;
  color: var(--pink)
}

.prCatch {
  margin-top: 20px;
}

.prCatch span {
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/*		#topCompany
-----------------------------*/
#topCompany.bgGrd {
  background:
    url("../images/top_company_bg.svg") no-repeat left bottom 36px / 80% auto,
    linear-gradient(-45deg, #AD0081 18%, #CE27A4 100%);
  padding: 80px 0;
  border-radius: 5px;
}

.topCompanyBox {
  padding: 0 6.67%;
}

.topCompanyBox .h2Tit {
  color: var(--wh);
}

.topCompanyBox .txts p {
  color: var(--wh);
  font-size: 2rem;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.topCompanyBox .linkBtns {
  width: min(100%, 562px);
  margin: 44px auto 60px;
}

.topCompanyBox .linkBtns li+li {
  margin-top: 17px;
}

.topCompanyBox .linkBtns li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 112px;
  border: 1px solid var(--wh);
  border-radius: 5px;
  padding: 0 min(12.81%, 72px) 0 min(14.23%, 80px);
  color: var(--wh);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.topCompanyBox .linkBtns li a::after {
  content: "";
  display: block;
  background: url("../images/ic_arrow_cricle_border_wh.svg") no-repeat center / 100%;
  width: 46px;
  height: 46px;
}

.topCompanySliderWrap {
  position: relative;
  margin-left: auto;
}

.topCompanySlider .slick-list {
  padding-right: 40px !important;
}

.topCompanySlider.slick-initialized.slick-slider {}

.topCompanySlider figure {
  margin-right: 10px;
}

.topCompanySlider figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 361/304;
}

.topCompanySlider figure.slick-slide:last-child {
  margin-right: 0;
}

/*		#topNews
----------------------------------------*/
#topNews .btnWrap {
  margin-top: 40px;
}

#topNews ul.newsList {
  padding: 0;
}

#topNews ul li {
  border-bottom: 1px #EDEDED solid;
}

#topNews ul li:first-of-type {
  border-top: 1px #EDEDED solid;
}

#topNews ul li a {
  display: flex;
  align-items: flex-start;
  gap: 0 min(3.63%, 30px);
  padding: 32px 22px 32px 14px;
}

#topNews ul li a::after {
  content: "";
  display: block;
  background: url("../images/ic_arrow_cricle_border_pk.svg") no-repeat center / 100%;
  width: 46px;
  height: 46px;
  margin-top: auto;
  margin-bottom: auto;
  /* 縦中央に */
}

#topNews ul li a:hover {
  opacity: .7;
}

#topNews ul li a figure {
  width: min(22.9%, 189px);
}

#topNews ul li a figure img {
  border-radius: 5px;
  width: 100%;
}

#topNews ul li a p {
  flex: 1;
  line-height: 1.575em;
}

#topNews ul li .date {
  display: block;
  color: var(--pink);
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
}

/* =======================================
   message
========================================== */
#messageArea figure.pcFlex {
  justify-content: center;
}

#messageArea figcaption span {
  font-size: 125%;
}

#messageArea p+p {
  margin-top: 1.5em;
}

/* =======================================
   company
========================================== */
#philosophy .philosophyTxt {
  background: url("../images/top_opinion_bg.svg") no-repeat right bottom / auto 100%, linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(223, 154, 205, 0.1) 46%, rgba(236, 126, 208, 0.1) 77%, rgba(255, 31, 198, 0.1) 100%);
  border-radius: 5px;
  text-align: center;
}

#philosophy .philosophyTxt p {
  background: rgba(255, 255, 255, .5);
  line-height: 2.25em;
}

/* =======================================
   esg
========================================== */
#esgSdgs .h4Tit {
  background: var(--grd1);
  border-radius: 3px;
  color: var(--wh);
}

#esgSdgs ul {
  justify-content: space-between;
  gap: 0 2%;
}

#esgSdgs ul li {
  color: var(--wh);
  display: grid;
  font-weight: 700;
  place-content: center;
  border-radius: calc(infinity * 1px);
  background: linear-gradient(to bottom, rgba(153, 233, 139, 1) 0%, rgba(106, 202, 90, 1) 100%);
  position: relative;
}

#esgSdgs ul li:nth-of-type(2) {
  background: linear-gradient(to bottom, rgba(255, 184, 108, 1) 0%, rgba(255, 158, 53, 1) 100%);
}

#esgSdgs ul li:nth-of-type(3) {
  background: linear-gradient(to bottom, rgba(81, 187, 255, 1) 0%, rgba(0, 121, 197, 1) 100%);
}

#esgSdgs ul li::before {
  color: rgba(255, 255, 255, .3);
  display: inline-block;
  font-weight: 300;
  line-height: 1;
  position: absolute;
  top: 0;
}

#esgSdgs ul li:nth-of-type(1)::before {
  content: "E";
}

#esgSdgs ul li:nth-of-type(2)::before {
  content: "S";
}

#esgSdgs ul li:nth-of-type(3)::before {
  content: "G";
}

#esgSdgs div+h4 {
  margin-top: 40px;
}

#esgWorkon ul.pcFlex>li {
  background: var(--grd1);
  border-radius: 6px;
  color: var(--wh);
  text-align: center;
}

#esgWorkon h4 {
  border-bottom: 1px solid var(--wh);
  text-align: center;
  line-height: 1.5;
}

#esgWorkon h4 .en {
  display: block;
  font-size: 180%;
}

#esgWorkon .pcFlex p {
  margin-bottom: 20px;
  font-weight: 400;
}

#esgWorkon .pcFlex ul {
  display: inline-block;
}

#esgWorkon .pcFlex ul li {
  text-align: left;
}

#environment,
#social,
#governance {
  position: relative;
}

#environment::before,
#social::before,
#governance::before {
  content: "";
  background: url(../images/top_service_bg_left.svg) no-repeat right top / 100% auto;
  display: inline-block;
  width: 315px;
  height: 415px;
  position: absolute;
  top: -30px;
  left: 0;
}

#environment .esgTtl .en {
  color: #38c720;
}

#social .esgTtl .en {
  color: #ff8400;
}

#governance .esgTtl .en {
  color: #009bff;
}

.esgTtl {
  margin-bottom: 30px;
}

.esgTtl h3 {
  font-size: 3rem;
  line-height: 1.4;
}

.esgTtl h3 .en {
  display: block;
  font-size: 166%;
}

.sdgsIcons {
  display: flex;
  gap: 5px 5px;
}

/* =======================================
   opinion
========================================== */
#statement {
  padding-bottom: 0;
}

#statement .future {
  /* background: linear-gradient(45deg, rgba(206, 39, 164, 0.3) 0%, rgba(173, 0, 129, 0.3) 75%); */
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(223, 154, 205, 0.1) 46%, rgba(236, 126, 208, 0.1) 77%, rgba(255, 31, 198, 0.1) 100%);
  clip-path: polygon(0 20%, 100% 0%, 100% 80%, 0% 100%);
  padding: 200px 0;
}

#statement .future ul li {
  text-align: center;
}

#statement .future figure {
  border-radius: calc(infinity * 1px);
  overflow: hidden;
  position: relative;
  margin: 0 0 10px;
}

#statement .future figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 340/423;
}

#statement .future figcaption {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translate(-50%, 0);
  color: #fff;
  font-size: 20px;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, .5);
}

.opinionLead {
  margin-bottom: 60px;
}

#opinionPeople .half:not(.numbers)>li {
  background: var(--Lpink);
  border-radius: 5px;
  padding: 20px;
  position: relative;
}

#opinionPeople .half .txt {
  margin-bottom: 15px;
}

#opinionPeople .half:not(.numbers)>li+li::before {
  content: "×";
  color: var(--pink);
  display: block;
  font-weight: 100;
  line-height: 1;
  position: absolute;
}

#opinionPeople .half .kome {
  margin-bottom: 20px;
}

#opinionPeople .half .kome li {
  border-top: 1px dotted var(--pink);
  padding-top: 10px;
}

#opinionPeople .half .kome li:last-child {
  border-bottom: 1px dotted var(--pink);
  padding-bottom: 10px;
}

#opinionPeople .half figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 550/384;
}

#opinionPeople .numbers {
  margin-top: 30px;
}

#opinionPeople .numbers li {
  text-align: center;
}

#opinionPeople .numbers h4 {
  position: relative;
  background: var(--grd1);
  border-radius: 5px;
  border-bottom: 2px var(--pink) solid;
  color: var(--wh);
  padding: 5px 10px;
  margin-bottom: 20px;
  text-align: center;
}

#opinionPeople .numbers h4::before,
#opinionPeople .numbers h4::after {
  content: "";
  display: block;
  background: var(--pink);
  width: 50px;
  height: 20px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
}

#opinionPeople .numbers h4::after {
  background: var(--pink);
  top: calc(100% - 3px);
}

#opinionPeople .numbers p {
  line-height: 1.6;
}

#opinionPeople .numbers p span {
  display: block;
  font-size: 140%;
}

#opinionPeople .numbers .note {
  margin-top: 5px;
}

#opinionJapan .h4Tit,
#opinionSouthAsia .h4Tit {
  background: var(--grd1);
  border-radius: 3px;
  color: var(--wh);
}

#opinionJapan h4:not(:first-of-type) {
  margin-top: 80px;
}

#opinionJapan h5 {
  display: block;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 5px;
  border-bottom: 1px var(--pink) solid;
  text-align: center;
}

#opinionJapan .process {
  align-items: flex-end;
}

#opinionJapan .process li {
  width: 30%;
}

#opinionJapan .process li:nth-of-type(3) {
  width: 39%;
}

#opinionJapan .process h6 {
  margin-bottom: 20px;
  text-align: center;
}

#opinionJapan .process p {
  position: relative;
  display: grid;
  place-content: center;
  padding: 60px 10px;
  z-index: 0;
}

#opinionJapan .process li:nth-of-type(3) p {
  padding: 80px 10px;
}

#opinionJapan .process p::before {
  content: "";
  display: block;
  border-radius: 50%;
  background: var(--Lpink);
  width: 120%;
  height: 100%;
  transform: rotate(-8deg);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#opinionJapan .process li:nth-of-type(2) p::before {
  top: auto;
  bottom: 10%;
  left: 50%;
  transform: rotate(-8deg) translate(-50%, 0);
}

#opinionJapan .process li:nth-of-type(3) p::before {
  left: auto;
  right: 0;
}

#opinionJapan .systemImg {
  margin-top: 20px;
}

#opinionJapan .model li {
  text-align: center;
}

#opinionJapan .model li figure {
  margin: 20px 0 20px;
}

#opinionJapan .processImg {
  margin: 30px auto 0;
  width: 100%;
  max-width: 900px;
}

#opinionJapan .model li p {
  text-align: left;
}

#opinionSouthAsia .imgs {
  margin: 30px 0 60px;
}

#opinionSouthAsia .imgs p {
  text-align: center;
}

#opinionSouthAsia .imgs figure {
  margin: 0 0 10px;
}

#opinionSouthAsia .activityBox+.activityBox {
  margin-top: 60px;
}

/* =======================================
   human
========================================== */
.worries h3 {
  text-align: center;
}

.worriesList {
  position: relative;
  padding-bottom: 60px;
  margin-bottom: 60px;
}

.worriesList::after {
  content: "";
  position: absolute;
  top: 94%;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.worriesList li {
  background: var(--wh);
  position: relative;
  display: grid;
  place-content: center;
  border-radius: calc(infinity * 1px);
  border: 2px var(--gray) dotted;
  text-align: center;
}

.worriesList li::after {
  content: "";
  display: block;
  border-radius: 15px;
  border: 5px #fff solid;
  background-color: var(--bk);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
}

#humanWorries .slash,
#cleaningWorries .slash {
  position: relative;
  display: inline-block;
  padding: 0 2em;
  line-height: 1.3em;
  letter-spacing: 0.05em;
  font-weight: 600;
}

#humanWorries .slash::before,
#humanWorries .slash::after,
#cleaningWorries .slash::before,
#cleaningWorries .slash::after {
  position: absolute;
  bottom: 0;
  display: inline-block;
  font-size: 1.33em;
}

#humanWorries .slash::before,
#cleaningWorries .slash::before {
  left: 0;
  content: "＼ ";
}

#humanWorries .slash::after,
#cleaningWorries .slash::after {
  right: 0;
  content: "／ ";
}

#humanWorries .txt,
#cleaningWorries .txt {
  background: var(--grd1);
  border-radius: 5px;
  color: var(--wh);
  padding: 30px;
}

#aboutService .pcFlex {
  background: url("../images/top_opinion_bg.svg") no-repeat left center / auto 94%, linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(223, 154, 205, 0.1) 46%, rgba(236, 126, 208, 0.1) 77%, rgba(255, 31, 198, 0.1) 100%);
  border-radius: 5px;
  padding: 50px 5%;
}

#aboutService .txts h4 {
  margin-bottom: 20px;
}

#aboutService .pct dl {
  background: var(--wh);
  border-radius: 5px;
  padding: 0 20px 20px;
  text-align: center;
}

#aboutService .pct dl dt {
  position: relative;
  top: -25px;
  display: inline-block;
  background: var(--pink);
  border-radius: calc(infinity * 1px);
  color: var(--wh);
  margin-bottom: 10px;
  padding: 10px 30px;
  text-align: center;
  line-height: 1.2;
  font-weight: 700;
  width: 70%;
}

#aboutService .pct dl dd {
  color: var(--pink);
  margin-top: -20px;
}

#aboutService .pct .totalSupport dd:not(.flex),
#aboutService .pct .totalSupport dd.flex p,
#aboutService .pct .goal li {
  background: var(--wh);
  border: 1px solid var(--pink);
  border-radius: 5px;
  padding: 5px 10px;
}

#aboutService .pct .totalSupport dd+dd {
  margin-top: 15px;
}

#aboutService .pct .totalSupport dd.flex,
#aboutService .pct .goal ul {
  flex-flow: row wrap;
  justify-content: center;
  gap: 15px;
}

#aboutService .pct .totalSupport dd.flex p,
#aboutService .pct .goal li {
  min-width: calc((100% - 15px) / 2);
}

#aboutService .pct .totalSupport {
  border: 3px solid var(--pink);
  position: relative;
}

#aboutService .pct .totalSupport::before {
  content: "";
  background: var(--wh);
  display: inline-block;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
}

#aboutService .pct .totalSupport::after {
  content: "";
  display: inline-block;
  position: absolute;
  border-bottom: 3px solid var(--pink);
  border-right: 3px solid var(--pink);
  transform: rotate(45deg);
}

#aboutService .pct .goal {
  background: var(--pink);
}

#aboutService .pct .goal dt {
  border: 2px solid var(--wh);
}

.pointBox .h4Tit {
  margin-top: 30px;
  margin-bottom: 0;
}

.pointBox .h4Tit span,
.caseBox .h4Tit span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grd1);
  color: var(--wh);
  text-align: center;
}

.pointBox .h4Tit span::after {
  content: "";
  display: block;
  background: var(--grd1);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  margin: auto;
}

.pointBox .h4Tit span {
  width: 100%;
  border-radius: 5px;
}

.pointBox>ul>li {
  border-bottom: 1px #e0c7da solid;
  display: flex;
  flex-flow: row wrap;
  gap: 15px 30px;
  padding: 20px 0;
}

.pointBox h5 {
  background: var(--Lpink);
  border: 1px dotted var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  min-width: 320px;
  line-height: 1.5;
  text-align: center;
}

.pointBox li p {
  display: flex;
  align-items: center;
  max-width: calc(100% - 320px - 50px);
}

.caseBox {
  margin-top: 60px;
}

.caseBox>.flex {
  margin-bottom: 20px;
}

.caseBox>.flex p {
  background: var(--grd1);
  color: var(--wh);
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  padding: 0 20px;
  width: 99%;
}

.caseBox>.flex p span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wh);
  border: 1px var(--pink) solid;
  border-radius: calc(infinity * 1px);
  color: var(--pink);
  padding: 10px 1em 12px;
  margin-right: 10px;
  line-height: 1.2;
  width: calc((100% - 20px) / 2);
}

.caseBox>.flex p span:nth-of-type(2) {
  margin: 0 0 0 10px;
}

.caseBox h5 {
  background: var(--Lpink);
  border: 1px dotted var(--pink);
  padding: 5px 0.5em;
  text-align: center;
}

.caseBox ol li {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  gap: 15px 20px;
  padding: 0 0 30px;
}

.caseBox ol li:first-child {
  border-bottom: 1px dotted var(--base);
}

.caseBox ol li:nth-of-type(2) {
  position: relative;
  margin-top: 10px;
  padding-top: 30px;
}

.caseBox ol li:nth-of-type(2)::before {
  content: "";
  display: block;
  background: var(--gray);
  width: 30px;
  height: 15px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  left: calc(50% - 15px);
}

.caseBox ol li h6 {
  border-radius: 5px;
  background: var(--grd1);
  color: var(--wh);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 5px;
}

.caseBox ol li:first-child h6 {
  background: var(--base);
}

.caseBox ol li p {
  max-width: calc(100% - 136px - 20px);
}

.caseBox ol li p b {
  color: var(--pink);
}

.caseBox ol li p.line1 {
  display: flex;
  align-items: center;
}

.caseBox figure {
  margin: 0;
}

#specificSkillHuman .pcFlex .imgs {
  gap: 0 10px;
}

#specificSkillHuman .pcFlex .imgs figcaption {
  text-align: center;
}

#specificSkillHuman .pointBox .flexWrap {
  gap: 10px 5%;
  margin-top: 10px;
  justify-content: center;
}

#specificSkillHuman .pointBox .flexWrap li {
  border-radius: 50%;
  border: 1px solid var(--pink);
  color: var(--pink);
  display: grid;
  place-content: center;
  background: var(--Lpink);
  width: 130px;
  height: 130px;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}

/* =======================================
   cleaning
========================================== */
#cleaningWorries ul.half li {
  background: url("../images/top_opinion_bg.svg") no-repeat 1vw bottom / auto 94%, linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(223, 154, 205, 0.1) 46%, rgba(236, 126, 208, 0.1) 77%, rgba(255, 31, 198, 0.1) 100%);
  border-radius: 5px;
}

#cleaningWorries ul.half li h4 {
  color: var(--pink);
  text-align: center;
}

#cleaningWorries ul.half li h4 span {
  font-size: 68%;
}

#cleaningWorries ul.half li figure {
  margin: 0 0 20px;
}

#cleaningPoint .flexWrap {
  margin-bottom: 40px;
}

#cleaningPoint .flexWrap:not(:first-of-type) {
  border-top: 1px #e0c7da solid;
  padding-top: 40px;
}

#cleaningPoint .pcFlex.point01 {
  margin-bottom: 40px;
}

#cleaningPoint .pct p {
  border: 1px var(--pink) solid;
  padding: 5px 10px;
  font-size: 2.4rem;
  text-align: center;
}

#cleaningPoint .pct ul {
  position: relative;
  border: 1px var(--pink) solid;
  margin-top: 50px;
  padding: 10px;
}

#cleaningPoint .pct ul::before {
  content: "×";
  color: var(--pink);
  display: block;
  font-size: 32px;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
}

#cleaningPoint .pct ul li {
  border-bottom: 1px dotted var(--pink);
  padding: 5px 0;
  text-align: center;
}

#cleaningPoint .pct ul li:last-child {
  border-bottom: none;
}

#cleaningPoint .point01 .pct p,
#cleaningPoint .point01 .pct ul li {
  color: var(--pink);
}

#cleaningPoint .pcFlex figure {
  position: relative;
}

#cleaningPoint .pcFlex.point01 figure::before {
  content: "";
  position: absolute;
  display: block;
}

#cleaningPoint .pcFlex.point02 {
  margin-bottom: 40px;
}

#cleaningPoint .pcFlex.point02 h5:not(:first-of-type) {
  margin-top: 30px;
}

#cleaningPoint .pcFlex.point02 figure img+img {
  margin-top: 20px;
}

#cleaningVoice .pcFlex.half>li {
  background: var(--Lpink);
  border-radius: 5px;
  padding: 40px 3%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#cleaningVoice .grid {
  display: grid;
  grid-template-columns: auto 76px;
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 20px;
  margin-bottom: 20px;
}

#cleaningVoice .grid p {
  grid-area: 1 / 1 / 2 / 2;
  margin-bottom: 10px;
}

#cleaningVoice li p b {
  color: var(--pink);
}

#cleaningVoice .grid h4 {
  grid-area: 2 / 1 / 3 / 2;
  font-size: 24px;
  line-height: 1.5;
}

#cleaningVoice .grid figure {
  grid-area: 1 / 2 / 3 / 3;
  align-self: center;
}

#cleaningVoice h5 {
  margin-top: 20px;
}

#cleaningVoice .beforeAfter dl+dl {
  position: relative;
  padding-left: 20px;
  margin-left: 40px;
}

#cleaningVoice .beforeAfter dl+dl::before {
  content: "";
  display: block;
  background: var(--grd1);
  width: 16px;
  height: 20px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  right: 100%;
  bottom: 0.7em;
}

#cleaningVoice .beforeAfter dt {}

#cleaningVoice .beforeAfter dd {
  font-size: min(5vw, 48px);
  line-height: 1.2;
}

/* =======================================
   faq
========================================== */
.faqList {
  border-bottom: 1px var(--gray) solid;
}

.faqList dt {
  position: relative;
  display: flex;
  cursor: pointer;
  font-weight: 600;
}

.faqList dt:not(:first-of-type) {
  border-top: 1px var(--gray) solid;
}

.faqList dt::before,
.faqList dd::before {
  position: absolute;
  left: 0;
  display: grid;
  place-content: center;
  border-radius: 50%;
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-style: normal;
}

.faqList dt::before {
  top: 14px;
  content: "Q";
  background-color: var(--Lpink);
  color: var(--pink);
}

.faqList dt span::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  background-color: var(--base);
}

.faqList dt.active span::before {
  display: none;
}

.faqList dt span::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  right: 20px;
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  background-color: var(--base);
  transition: transform 0.3s;
}

.faqList dt.active span::after {
  content: "";
  width: 2rem;
  height: 2px;
  background-color: var(--base);
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s;
}

.faqList dd {
  position: relative;
  display: none;
}

.faqList dd::before {
  content: "A";
  background-color: var(--pink);
  color: var(--wh);
}


/* =======================================
   agents
========================================== */
.agentsFeaturesBox {}

.agentsFeaturesBox dl {}

.agentsFeaturesBox dt {
  font-size: 2rem;
  font-weight: 700;
}

.agentsFeaturesBox dd ol {
  display: flex;
  justify-content: center;
  gap: 0 10px;
}

.agentsFeaturesBox dd ol li {
  width: min(16.3vw, 196px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background: var(--Lpink);
  aspect-ratio: 1 / 1;
  font-size: 2.4rem;
  color: var(--pink);
  text-align: center;
}

.agentsFeaturesBox dd ol li span.bd {
  border: 1px solid var(--pink);
  background-color: var(--pink);
  padding: 0 0.5em;
  border-radius: 5px;
  color: var(--wh);
  font-size: 0.875em;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.agentsModelCatch {
  margin-top: 2em;
  font-size: min(3.3vw, 3.6rem);
  font-weight: 500;
}

.agentsModelCatch span.fontL {
  display: inline-block;
  margin-left: 1em;
  font-size: 1.2em;
  background: linear-gradient(transparent 80%, var(--pink) 20%);
}


#agentsContact {
  padding-top: 0;
}

#agentsContact .h3Tit {
  border: none;
  margin-bottom: 30px;
  padding-bottom: 0;
}

/*balloon*/
.balloon {
  position: relative;
  display: inline-block;
  background: linear-gradient(45deg, #CE27A4 0%, #AD0081 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  padding: 16px 20px 4px;
  border-bottom: 2px solid var(--pink);
  border-radius: 0 0 20px 20px;
  font-size: 0.6em;
  font-weight: 700;
}

.balloon::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid var(--pink);
}

.balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -9px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid var(--wh);
}

.agentsContactBtns .telboxWrap {
  margin: 0;
}

.emailboxWrap {
  max-width: 500px;
}

.emailboxWrap a {
  position: relative;
  border-radius: 30px;
  display: grid;
  place-content: center;
  background: linear-gradient(45deg, #CE27A4 0%, #AD0081 75%);
  height: 140px;
  color: var(--wh);
  font-size: 2.4rem;
  text-align: center;
}

.emailboxWrap a span.mail {
  display: inline-block;
  background: url("../images/ic_mail_wh.svg") no-repeat left center / 50px auto;
  padding: 0 20px 0 60px;
  font-size: 2.8rem;
}

.emailboxWrap a::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 22px;
  content: "";
  display: block;
  width: 11px;
  height: 19px;
  background: url("../images/ic_btn_more.svg") no-repeat left center / 100%;
}

.emailboxWrap a:hover {
  opacity: .7;
}

/* =======================================
   news
========================================== */
#news .mainTitle,
body.archive .mainTitle,
body.single .mainTitle {
  /*background: url("../images/news_title.jpg") no-repeat center top / cover;*/
}

#news .mainTitle span {
  display: block;
  font-size: 90%;
}


/*	一覧
-----------------------------*/
#news .contCol2 {
  padding: 100px 0;
}

#news .contCol2 .contMain {
  margin-bottom: 60px;
}

/**/
.newsList>li {
  padding: 30px 0;
}

.newsList>li:first-of-type {
  padding: 0px 0 30px 0;
}

.newsBox figure {
  margin: 0;
}

.newsBox figure img {
  width: 100%;
  height: auto;
  margin: auto;
}

.newsInfo {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 10px 20px;
  margin-bottom: 10px;
}

.newsInfo .date {
  color: var(--pink);
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
}

.newsInfo .cat {
  background: var(--base);
  border-radius: calc(infinity * 1px);
  padding: 0.1em 1em 0.2em;
  color: var(--wh);
  line-height: 1em;
  font-size: 0.9em;
}

.newsBox h3 {
  margin-bottom: 1em;
  color: var(--blue);
  font-size: 2rem;
}

.newsBox .txts p {}

.sideTit {
  margin-bottom: 1em;
  font-weight: 700;
}

.categoryList li a {
  color: var(--pink);
  display: block;
  border-bottom: 1px solid var(--base);
  padding: 0.5em 0;
}

.categoryList li:first-of-type a {
  border-top: 1px solid var(--base);
}

.categoryList li a:hover {
  opacity: .7;
}


/*	詳細　single
-----------------------------*/
#newsDetail h3 {
  margin-bottom: 20px;
  text-align: left;
}

#newsDetail .h3Tit::after {
  margin: 10px 0 0 0;
}

#newsDetail figure {
  margin-bottom: 1.6em;
}

#newsDetail .mv {
  margin-bottom: 2em;
}

#newsDetail .mv img {
  margin: 0 auto;
}



/* =======================================
	contact
========================================== */

.telboxWrap {
  max-width: 500px;
  margin: 60px auto;
  text-align: center;
}

.telboxWrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  border-radius: 30px;
  background: linear-gradient(45deg, #CE27A4 0%, #AD0081 75%);
  padding: 40px min(2.67vw, 50px);
}

.telboxWrap a::before {
  content: "";
  display: inline-block;
  background: url("../images/footcontact_ic_tel.svg") no-repeat center / 100% 100%;
  width: 48px;
  height: 48px;
}

.telbox .telNum {
  color: var(--wh);
  font-size: 4rem;
  font-weight: 500;
  line-height: 1em;
  white-space: nowrap;
}

.telbox .time {
  display: block;
  color: var(--wh);
  font-size: 1.6rem;
  line-height: 1em;
}

.telbox span.fontA {
  font-size: 1.8rem;

}

.formArea input[type="text"i] {
  margin-bottom: 8px;
}

/* =======================================
	form
========================================== */
#contactForm {
  padding-bottom: 150px;
}

.basicTable dt {
  position: relative;
}

.basicTable .hissu {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2.5%;
  display: inline-block;
  background: var(--pink);
  color: var(--wh);
  border-radius: 3px;
  padding: 3px 3% 4px;
  font-size: 12px;
  line-height: 1;
  margin-left: 0.8em;
}

#contactForm #mailformpro dd label {
  margin-bottom: 10px;
}

#contactForm input[type=radio] {
  vertical-align: -0.05em;
  margin-right: 5px;
}

#contactForm textarea {
  width: 100% !important;
  height: 200px !important;
}

#contactForm .checkboxWrap label {
  display: block;
}

#contactForm .checkboxWrap .flex:has(label) {
  gap: 0;
}

#contactForm .checkboxWrap .flex label {
  width: 5em;
}

#contactForm .checkboxWrap .flex label+input {
  flex: 1;
}

#contactForm dt {
  font-size: 2rem;
}

#contactForm .checkboxWrap label {
  font-size: 2rem;
}

.formFoot {
  margin: 40px 0 0;
}

.formBtn {
  margin-top: 20px;
}

.contactPrivacy a {
  color: var(--blue);
  text-decoration: underline;
}

#mailformpro input.btnRound.bgArrow {
  border: none;
  margin: 0 auto;
  padding: 1em 36px 1em 22px;
  text-align: center;
  cursor: pointer;
}

#mailformpro input.btnRound.bgArrow {
  border: none;
  margin: 0 auto;
  background:
    url(../images/ic_arrow_cricle_wh.svg) no-repeat calc(100% - 9px) center / 50px 50px,
    linear-gradient(45deg, #CE27A4 0%, #AD0081 75%);
  text-align: left;
  cursor: pointer;
}


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

#thanks p {
  color: #fff;
  font-size: 1.8rem;
}

/* =======================================
	privacypolicy
========================================== */
#privacyPolicy .h4Tit {
  border-bottom: 1px dotted var(--base);
  padding-bottom: 5px;
  text-align: center;
}

.policyBox {
  overflow-y: scroll;
  height: 350px;
  padding: 20px 2%;
}

.policyBox .h5Tit {
  margin-bottom: 5px;
}

.policyBox .h6Tit {
  margin-top: 15px;
  margin-bottom: 0;
}

.policyBox .h6Tit:first-of-type {
  margin-top: 0;
}

.policyBox p {
  margin-bottom: 1em;
  line-height: 1.6;
}

.policyBox ul {
  margin-top: -0.75em;
}

.policyBox ul li {
  margin-left: 1em;
  text-indent: -1em;
}
