@charset "UTF-8";
body {
  font-family: sans-serif;
}

@media screen and (min-width: 768px) {
  .is_m {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .is_d {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 60px;
  }
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 91px;
  }
}

/* color palette */
/* text color */
/* background color */
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
ul,
dl,
dd {
  padding: 0;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

html {
  width: 100%;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

/* Set core body defaults */
body {
  width: 100%;
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

/* A elements default styles */
a {
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/** --------------------------------
* 画像の縦横比を指定する関数  figureタグに付与
*
* @param $height 横幅100の時の縦の割合 *「%」で指定
*/
/** --------------------------------
* cssの値を単位を除いて数字だけにしてくれる関数
*
* @param 数字と単位を含む値 10ox, 3remなど
*/
/** --------------------------------
* 値の「単位」を取得する関数
*
* @param $value 数字と単位を含む値 10ox, 3remなど
*/
/** --------------------------------
* pxやremをvwに変換してくれる関数
*
* @param $viewport pcデザインの横幅
* @param $fontSize フォントサイズ(pxでもremでも)
*/
/** --------------------------------
* フォントサイズをレスポンシブで調整する関数
*
* @param $pc pcのフォントサイズ
* @param $sp spのフォントサイズ
*/
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: scroll;
  color: #000000;
  font-size: 62.5%;
  background-color: #ffffff;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000000;
  line-height: 1.65;
  letter-spacing: 0;
  background-color: #ffffff;
}

.inner {
  width: 100%;
  max-width: 128rem;
  padding-right: 2rem;
  padding-left: 2rem;
  margin: 0 auto;
}
.inner.-maw-118rem {
  max-width: 122rem;
}
.inner.-maw-110rem {
  max-width: 114rem;
}
.inner.-maw-100rem {
  max-width: 104rem;
}
.inner.-maw-90rem {
  max-width: 94rem;
}
.inner.-no-padding {
  padding-right: 0;
  padding-left: 0;
}

a {
  color: #000000;
}

.swiper-button-prev,
.swiper-button-next {
  top: auto;
}
@media only screen and (max-width:768px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 5rem;
    height: 5rem;
    background-color: #e60113;
    border-radius: 50%;
  }
  .swiper-button-prev::before,
  .swiper-button-next::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    width: 1.5rem;
    height: 1rem;
    content: "";
    background-image: url(../image/common/icon_arrow_right_white_1.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  background-color: #ededed;
  opacity: 1;
}
.swiper-button-prev.swiper-button-disabled::before,
.swiper-button-next.swiper-button-disabled::before {
  background-image: url(../image/common/icon_arrow_right_primary_1.svg);
}

.swiper-button-prev::before {
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
          transform: translate(-50%, -50%) rotate(-180deg);
}

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

@-webkit-keyframes tabAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes tabAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.page .page__kv {
  padding: 4.3rem 0 4.6rem;
  background: #000000;
  border-bottom: 0.3rem solid #e60113;
}
@media only screen and (max-width:768px) {
  .page .page__kv {
    padding: 4.3rem 0 4rem;
    border-bottom: 0.2rem solid #e60113;
  }
}
@media only screen and (max-width:768px) {
  .page .page__kv .inner {
    padding: 0;
  }
}
.page .page__kv .inner .page__kvTitle {
  display: inline-block;
  padding: 2.9rem 12.6rem 3.7rem 6.6rem;
  font-size: 1.8rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.95);
}
@media only screen and (max-width:768px) {
  .page .page__kv .inner .page__kvTitle {
    padding: 1.5rem 4rem 2rem 2rem;
    font-size: 1.5rem;
  }
}
.page .page__kv .inner .page__kvTitle .page__kvSub {
  font-family: "Poppins", sans-serif;
  display: block;
  color: #d02d26;
  font-size: 6rem;
  font-weight: 600;
  line-height: 1.2;
}
@media only screen and (max-width:768px) {
  .page .page__kv .inner .page__kvTitle .page__kvSub {
    margin: 0 0 0.1rem;
    font-size: 3rem;
  }
}
.page .page__top {
  padding: 6.5rem 0 7.5rem;
  border-bottom: 3px solid #e60113;
}
@media only screen and (max-width:768px) {
  .page .page__top {
    padding: 5.5rem 0 6rem;
    border-bottom-width: 2px;
  }
}
.page .page__top .page__topTitle {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.45;
}
@media only screen and (max-width:768px) {
  .page .page__top .page__topTitle {
    font-size: 2.6rem;
    line-height: 1.27;
  }
}
.page .page__top .page__topTitle span.en {
  display: block;
  margin-bottom: 1.4rem;
  color: #e60113;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.48;
}
@media only screen and (max-width:768px) {
  .page .page__top .page__topTitle span.en {
    margin-bottom: 0.4rem;
    font-size: 1.6rem;
    line-height: 1.125;
  }
}
.page .page__title.-title01 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 2rem;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
}
@media only screen and (max-width:768px) {
  .page .page__title.-title01 {
    margin: 0 0 1rem;
    font-size: 1.6rem;
  }
}
.page .page__title.-title01 .en {
  position: relative;
  position: relative;
  padding-left: 4.3rem;
  margin-left: 1.5rem;
  font-size: 1.8rem;
  font-weight: 300;
}
@media only screen and (max-width:768px) {
  .page .page__title.-title01 .en {
    font-size: 1.6rem;
  }
}
.page .page__title.-title01 .en::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.8rem;
  height: 0.1rem;
  content: "";
  background: #e60113;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page .page__title.-title02 {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 34px;
  margin: 0 0 2rem;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
}
@media only screen and (max-width:768px) {
  .page .page__title.-title02 {
    padding-left: 3.2rem;
    margin: 0 0 1rem;
    font-size: 1.8rem;
    line-height: 1.4;
  }
}
.page .page__title.-title02::before {
  position: absolute;
  top: 0.4rem;
  left: 0;
  width: 2.8rem;
  height: 2.8rem;
  content: "";
  border: 0.5rem solid #e60113;
  border-radius: 100%;
}
@media only screen and (max-width:768px) {
  .page .page__title.-title02::before {
    top: 0;
    width: 2.6rem;
    height: 2.6rem;
  }
}
.page .page__title.-title02 .page__tag {
  display: inline-block;
  padding: 0.1rem 1.9rem 0.2rem;
  margin-left: 1.5rem;
  color: #e60113;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  background: #fcecea;
}
@media only screen and (max-width:768px) {
  .page .page__title.-title02 .page__tag {
    padding: 0 0.8rem;
    margin-left: 1.2rem;
    font-size: 1.2rem;
  }
}
.page .page__title.-title03 span {
  display: block;
  text-align: center;
}
.page .page__title.-title03 span:first-of-type {
  margin-bottom: -0.5rem;
  color: #d02d26;
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
}
@media only screen and (max-width:768px) {
  .page .page__title.-title03 span:first-of-type {
    font-size: 2.8rem;
  }
}
.page .page__title.-title03 span:last-of-type {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.44;
  letter-spacing: 0;
}
@media only screen and (max-width:768px) {
  .page .page__title.-title03 span:last-of-type {
    font-size: 1.2rem;
  }
}
.page .page__title.-title04 {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 2rem;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
}
@media only screen and (max-width:768px) {
  .page .page__title.-title04 {
    margin: 0 0 1rem;
    font-size: 1.8rem;
    line-height: 1.4;
  }
}
.page .page__title.-title04::before {
  margin-right: 0.4rem;
  color: #e60113;
  content: attr(num);
}
@media only screen and (max-width:768px) {
  .page .page__title.-title04::before {
    top: 0;
    width: 2.6rem;
    height: 2.6rem;
  }
}
.page .page__ref {
  margin: 14rem 0 12rem;
}
@media only screen and (max-width:768px) {
  .page .page__ref {
    margin: 8rem 0 10rem;
  }
}
.page .page__ref .page__refLst {
  gap: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:768px) {
  .page .page__ref .page__refLst {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 3rem;
  }
}
.page .page__ref .page__refLst .page__refItem {
  display: block;
  width: calc((100% - 6rem) / 3);
}
@media only screen and (max-width:768px) {
  .page .page__ref .page__refLst .page__refItem {
    width: 100%;
  }
}
.page .page__ref .page__refLst .page__refItem .page__refImg {
  overflow: hidden;
  border-radius: 2rem;
}
.page .page__ref .page__refLst .page__refItem .page__refImg img {
  width: 100%;
}
.page .page__ref .page__refLst .page__refItem .page__refTtl {
  font-family: "Poppins", sans-serif;
  margin-top: -2.5rem;
  color: #d02d26;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .page .page__ref .page__refLst .page__refItem .page__refTtl {
    font-size: 3rem;
    line-height: 1.533zw;
  }
}
.page .page__ref .page__refLst .page__refItem .page__refbtn {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000000;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
}
.page .page__ref .page__refLst .page__refItem .page__refbtn::after {
  position: relative;
  display: block;
  width: 3rem;
  height: 3rem;
  content: "";
  background: url(../image/common/icon-arrow_right_stroke.png) no-repeat 50%/contain;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .page .page__ref .page__refLst .page__refItem .page__refbtn::after {
    width: 2.8rem;
    height: 2.8rem;
  }
}
.page .page__ref .page__refLst .page__refItem:hover .page__refbtn::after {
  background: url(../image/common/icon-arrow_right_fill.png) no-repeat 50%/contain;
}
.page .page__ref .page__refLst.-col2 {
  gap: 9.6%;
}
@media only screen and (max-width:768px) {
  .page .page__ref .page__refLst.-col2 {
    gap: 3rem;
  }
}
.page .page__ref .page__refLst.-col2 .page__refItem {
  width: 45.2%;
}
@media only screen and (max-width:768px) {
  .page .page__ref .page__refLst.-col2 .page__refItem {
    width: 100%;
  }
}
.page .page__entry {
  width: 100vw;
  padding: 6rem 4rem;
  margin: 0 calc(50% - 50vw);
  background: url(../image/common/entry01.jpg) no-repeat 50%/cover;
}
@media only screen and (max-width:768px) {
  .page .page__entry {
    padding: 3rem 2rem;
    background: url(../image/common/entry01_sp.jpg) no-repeat 50%/cover;
  }
}
.page .page__entry .inner {
  padding: 3rem 0 6rem;
  background-color: #ffffff;
  opacity: 0.95;
}
@media only screen and (max-width:768px) {
  .page .page__entry .inner {
    padding: 3rem 0 5rem;
  }
}
.page .page__entry .page__entryTitle {
  font-family: "Poppins", sans-serif;
  margin-bottom: 5.5rem;
  color: #d02d26;
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .page .page__entry .page__entryTitle {
    margin-bottom: 3.5rem;
    font-size: 2.4rem;
  }
}
.page .page__entry .page__entryBtn {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 53.9rem;
  padding: 3rem 0;
  margin: 0 auto;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0;
  background-color: #e60113;
  border: 2px solid #e60113;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .page .page__entry .page__entryBtn {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 26rem;
    padding: 2.15rem 2rem 2.15rem 2.5rem;
    font-size: 1.6rem;
  }
}
.page .page__entry .page__entryBtn::before {
  position: absolute;
  top: -4.5rem;
  left: 50%;
  width: 20rem;
  height: 9rem;
  content: "";
  background: url(../image/common/icon-mynavi_tag_white.png) no-repeat 50%/contain;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .page .page__entry .page__entryBtn::before {
    top: -3.5rem;
    width: 15rem;
    height: 6.5rem;
  }
}
.page .page__entry .page__entryBtn::after {
  position: absolute;
  top: 50%;
  right: 2.7rem;
  width: 4rem;
  height: 4rem;
  content: "";
  background: url(../image/common/icon-arrow_right_stroke_white.png) no-repeat 50%/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .page .page__entry .page__entryBtn::after {
    position: relative;
    top: auto;
    right: auto;
    width: 2.6rem;
    height: 2.6rem;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
.page .page__entry .page__entryBtn:hover {
  color: #e60113;
  background-color: #ffffff;
}
.page .page__entry .page__entryBtn:hover::before {
  background: url(../image/common/icon-mynavi_tag_blue.png) no-repeat 50%/contain;
}
.page .page__entry .page__entryBtn:hover::after {
  background: url(../image/common/icon-arrow_right_stroke.png) no-repeat 50%/contain;
}
.page .page__tab .page__tabLbls {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 6rem;
  border: 1px solid #d02d26;
  border-radius: 10px;
}
@media only screen and (max-width:768px) {
  .page .page__tab .page__tabLbls {
    margin-bottom: 3rem;
    border-radius: 5px;
  }
}
.page .page__tab .page__tabLbls .page__tabLbl {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2.3rem 0;
  font-size: 2rem;
  font-weight: 500;
  border-left: 1px solid #d02d26;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}
@media only screen and (max-width:768px) {
  .page .page__tab .page__tabLbls .page__tabLbl {
    padding: 1.1rem 0;
    font-size: 1.5rem;
  }
}
.page .page__tab .page__tabLbls .page__tabLbl:first-child {
  border-left: none;
  border-radius: 10px 0 0 10px;
}
@media only screen and (max-width:768px) {
  .page .page__tab .page__tabLbls .page__tabLbl:first-child {
    border-radius: 5px 0 0 5px;
  }
}
.page .page__tab .page__tabLbls .page__tabLbl:last-child {
  border-radius: 0 10px 10px 0;
}
@media only screen and (max-width:768px) {
  .page .page__tab .page__tabLbls .page__tabLbl:last-child {
    border-radius: 0 5px 5px 0;
  }
}
.page .page__tab .page__tabLbls .page__tabLbl:hover, .page .page__tab .page__tabLbls .page__tabLbl.active {
  color: #ffffff;
  font-weight: 700;
  background-color: #d02d26;
}
.page .page__tab .page__tabLbls p {
  font-weight: 600;
}
.page .page__tab .page__tabCnt {
  display: none;
  width: 100%;
}
.page .page__tab .page__tabCnt.active {
  display: block;
  -webkit-animation: tabAnim ease 0.6s forwards;
          animation: tabAnim ease 0.6s forwards;
}

.page .en {
  font-family: "Poppins", sans-serif;
}
.page .page__kv {
  padding: 4.3rem 0 4.6rem;
  border-bottom: 0.3rem solid #e60113;
}
@media only screen and (max-width:768px) {
  .page .page__kv {
    padding: 4.3rem 0 4rem;
    border-bottom: 0.2rem solid #e60113;
  }
}
@media only screen and (max-width:768px) {
  .page .page__kv .inner {
    padding: 0;
  }
}
.page .page__kv .inner .page__kvTitle {
  display: inline-block;
  padding: 2.9rem 12.6rem 3.7rem 6.6rem;
  font-size: 1.8rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.95);
}
@media only screen and (max-width:768px) {
  .page .page__kv .inner .page__kvTitle {
    padding: 1.5rem 4rem 2rem 2rem;
    font-size: 1.5rem;
  }
}
.page .page__kv .inner .page__kvTitle .page__kvSub {
  font-family: "Poppins", sans-serif;
  display: block;
  color: #d02d26;
  font-size: 6rem;
  font-weight: 600;
  line-height: 1.2;
}
@media only screen and (max-width:768px) {
  .page .page__kv .inner .page__kvTitle .page__kvSub {
    margin: 0 0 0.1rem;
    font-size: 3rem;
  }
}
.page .page__kv.-kv2 {
  z-index: 10;
  height: 500px;
  padding: 5rem 0 0;
}
.page .page__kv.-kv2::before {
  position: fixed;
  top: 7.8rem;
  left: 0;
  z-index: 0;
  display: inline-block;
  width: 100%;
  height: 550px;
  content: "";
  background-image: url(../image//employee-car/img-kv_pc.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media only screen and (max-width:768px) {
  .page .page__kv.-kv2::before {
    top: 6rem;
    height: 24.2rem;
    background-image: url(../image//employee-car/img-kv_sp.jpg);
  }
}
@media only screen and (max-width:768px) {
  .page .page__kv.-kv2 {
    height: 18.2rem;
    padding: 4.3rem 0 0;
  }
}
.page .page__kv.-kv2 .inner {
  position: relative;
  height: 100%;
  text-align: right;
}
.page .page__kv.-kv2 .inner .page__kvTitle {
  padding: 3rem 5.2rem 3.8rem 5rem;
  color: #e60113;
  text-align: left;
}
@media only screen and (max-width:768px) {
  .page .page__kv.-kv2 .inner .page__kvTitle {
    padding: 1.8rem 2rem 1.9rem;
  }
}
.page .page__kv.-kv2 .inner .page__kvTitle .page__kvSub {
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 0.6rem;
  color: #000000;
  font-size: 4.8rem;
  font-weight: 500;
}
@media only screen and (max-width:768px) {
  .page .page__kv.-kv2 .inner .page__kvTitle .page__kvSub {
    margin-bottom: 0.2rem;
    font-size: 2.8rem;
  }
}
.page .page__kv.-kv2 .inner .page_advList {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 900px) and (min-width: 769px) {
  .page .page__kv.-kv2 .inner .page_advList {
    max-width: 95%;
  }
}
@media only screen and (max-width:768px) {
  .page .page__kv.-kv2 .inner .page_advList {
    display: none;
  }
}
.page .page__top {
  padding: 6.5rem 0 7.5rem;
  border-bottom: 3px solid #e60113;
}
@media only screen and (max-width:768px) {
  .page .page__top {
    padding: 5.5rem 0 6rem;
    border-bottom-width: 2px;
  }
}
.page .page__top .page__topTitle {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.45;
}
@media only screen and (max-width:768px) {
  .page .page__top .page__topTitle {
    font-size: 2.6rem;
    line-height: 1.27;
  }
}
.page .page__top .page__topTitle span.en {
  display: block;
  margin-bottom: 1.4rem;
  color: #e60113;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.48;
}
@media only screen and (max-width:768px) {
  .page .page__top .page__topTitle span.en {
    margin-bottom: 0.4rem;
    font-size: 1.6rem;
    line-height: 1.125;
  }
}
.page .page__top.-top2 {
  padding: 7.5rem 0 8.5rem;
}
@media only screen and (max-width:768px) {
  .page .page__top.-top2 {
    padding: 5.7rem 0 7.2rem;
  }
}
.page .page__top.-top2 .page__topTitle {
  color: #d02d26;
  font-size: 6rem;
  font-weight: 600;
  line-height: 1.5;
}
@media only screen and (max-width:768px) {
  .page .page__top.-top2 .page__topTitle {
    font-size: 3rem;
    line-height: 1;
  }
}
.page .page__breadcrumb {
  position: relative;
  padding: 1.5rem 0 6.5rem;
  background-color: #ffffff;
}
@media only screen and (max-width:768px) {
  .page .page__breadcrumb {
    padding: 1rem 0 4rem;
  }
}
.page .page__breadcrumb .page__bcList {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:768px) {
  .page .page__breadcrumb .page__bcList {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.page .page__breadcrumb .page__bcList .page__bcItem {
  position: relative;
  padding-left: 1.7rem;
  margin-left: 1rem;
  color: #444444;
  font-size: 1.2rem;
  font-weight: 500;
}
.page .page__breadcrumb .page__bcList .page__bcItem:not(:first-child)::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1rem;
  height: 0.1rem;
  content: "";
  background: #e60113;
  -webkit-transform: rotate(-56deg) translateY(-50%);
          transform: rotate(-56deg) translateY(-50%);
}
.page .page__breadcrumb .page__bcList .page__bcItem:first-child {
  padding: 0;
  margin: 0;
}
@media only screen and (max-width:768px) {
  .page .page__breadcrumb .page__bcList .page__bcItem {
    padding-left: 1.2rem;
    margin-left: 0.3rem;
    font-size: 1rem;
  }
}
.page .page__breadcrumb .page__bcList .page__bcItem .page__link {
  color: #444444;
}
.page .page__breadcrumb .page__bcList .page__bcItem .page__link:hover {
  color: #e60113;
  text-decoration: underline;
}
.page .page__breadcrumb .page__bcList .page__bcItem:first-of-type > a {
  color: #e60113;
}
.page .page__breadcrumb + * {
  position: relative;
  background-color: #ffffff;
}
.page .page__adv {
  width: 100%;
}
@media only screen and (max-width:768px) {
  .page .page__adv {
    padding-bottom: 4rem;
  }
}
.page .page_advList {
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 2rem 2rem 0 0;
}
@media only screen and (max-width:768px) {
  .page .page_advList {
    max-width: 88%;
    border-radius: 1.5rem;
  }
}
.page .page_advList::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(26, 51, 115, 0.8);
  backdrop-filter: blur(8px);
}
@media only screen and (max-width:768px) {
  .page .page_advList::after {
    background: #1a3373;
    opacity: 0.9;
    backdrop-filter: none;
  }
}
.page .page_advList .page__advItem {
  position: relative;
  z-index: 1;
  width: 33.3333333333%;
  padding: 2.4rem 0 1.8rem;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .page .page_advList .page__advItem {
    width: 100%;
  }
}
.page .page_advList .page__advItem:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.2rem;
  height: 6.5rem;
  content: "";
  background: #ffffff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0.5;
}
@media only screen and (max-width:768px) {
  .page .page_advList .page__advItem:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    width: 73%;
    height: 0.1rem;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
.page .page_advList .page__advItem .page__advtitle {
  display: inline-block;
  padding: 0.2rem 2rem;
  margin-bottom: 1.1rem;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 500;
  border: 0.1rem solid #ffffff;
  border-radius: 0.5rem;
}
@media only screen and (max-width:768px) {
  .page .page_advList .page__advItem .page__advtitle {
    padding: 0 1.2rem 0.1rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
  }
}
.page .page_advList .page__advItem .page__advtext {
  font-family: "Noto Serif JP", serif;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media only screen and (max-width:768px) {
  .page .page_advList .page__advItem .page__advtext {
    font-size: 1.4rem;
  }
}
.page .page_advList .page__advItem .page__advtext span {
  padding: 0 0.8rem;
  color: #ffd83a;
  background: rgba(0, 0, 0, 0.6);
}
@media only screen and (max-width:768px) {
  .page .page_advList .page__advItem .page__advtext span {
    padding: 0 0.4rem;
  }
}
.page .page_advList .page__advItem .page__advaside {
  font-family: "Noto Serif JP", serif;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0.4rem;
}
@media only screen and (max-width:768px) {
  .page .page_advList .page__advItem .page__advaside {
    margin-top: 0.4rem;
    font-size: 1rem;
  }
}
.page .page__column {
  position: relative;
  padding: 10.4rem 0 10.9rem;
  background: #fcfaf5;
}
@media only screen and (max-width:768px) {
  .page .page__column {
    padding: 3.9rem 0 8rem;
  }
}
.page .page__column .inner .page__title {
  margin-bottom: 3.7rem;
}
.page .page__column .inner .page__columnBlock {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.7rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 110rem;
  margin: 0 auto 4.6rem;
}
@media only screen and (max-width:768px) {
  .page .page__column .inner .page__columnBlock {
    gap: 3.4rem;
    margin: 0 auto 4rem;
  }
}
.page .page__column .inner .page__columnBlock .page__columnItem {
  width: calc((100% - 7.4rem) / 3);
}
@media only screen and (max-width:768px) {
  .page .page__column .inner .page__columnBlock .page__columnItem {
    width: 100%;
  }
}
.page .page__column .inner .page__columnBlock .page__columnItem .page__columnImg {
  margin-bottom: 1.4rem;
}
@media only screen and (max-width:768px) {
  .page .page__column .inner .page__columnBlock .page__columnItem .page__columnImg {
    margin-bottom: 1rem;
  }
}
.page .page__column .inner .page__columnBlock .page__columnItem .page__columnImg img {
  width: 100%;
}
.page .page__column .inner .page__columnBlock .page__columnItem .page__columnDtag {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.1rem;
}
@media only screen and (max-width:768px) {
  .page .page__column .inner .page__columnBlock .page__columnItem .page__columnDtag {
    margin-bottom: 0.9rem;
  }
}
.page .page__column .inner .page__columnBlock .page__columnItem .page__columnDtag p {
  font-size: 1.3rem;
  font-weight: 500;
}
.page .page__column .inner .page__columnBlock .page__columnItem .page__columnDtag .page__columnDate {
  color: #999999;
}
.page .page__column .inner .page__columnBlock .page__columnItem .page__columnDtag .page__columnTag {
  height: 2.4rem;
  min-width: 8.7rem;
  color: #e60113;
  text-align: center;
  border: 0.1rem solid #e60113;
}
.page .page__column .inner .page__columnBlock .page__columnItem .page__cloumnText {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
}
@media only screen and (max-width:768px) {
  .page .page__column .inner .page__columnBlock .page__columnItem .page__cloumnText {
    font-size: 1.5rem;
  }
}
.page .page__column .inner .page__pagination {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page .page__column .inner .page__pagination a {
  font-family: "Poppins", sans-serif;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  font-size: 1.3rem;
  font-weight: 500;
}
.page .page__column .inner .page__pagination a:not(:first-child):not(:last-child) {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 4.3rem;
  height: 4.3rem;
  font-size: 1.5rem;
  background: #ffffff;
  border: 0.1rem solid #cccccc;
  border-radius: 100%;
}
@media only screen and (max-width:768px) {
  .page .page__column .inner .page__pagination a:not(:first-child):not(:last-child) {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.4rem;
  }
}
.page .page__column .inner .page__pagination a:first-child, .page .page__column .inner .page__pagination a:last-child {
  padding: 0 2rem;
  text-decoration: underline;
}
@media only screen and (max-width:768px) {
  .page .page__column .inner .page__pagination a:first-child, .page .page__column .inner .page__pagination a:last-child {
    padding: 0 1rem;
  }
}
.page .page__column .inner .page__pagination a.active {
  color: #ffffff;
  background: #d02d26 !important;
  border: 0.1rem solid #d02d26 !important;
}
@media only screen and (min-width:769px) {
  .page .page__column .inner .page__pagination a:hover {
    text-decoration: none;
  }
  .page .page__column .inner .page__pagination a:hover:not(:first-child):not(:last-child) {
    color: #ffffff;
    background: #d02d26;
    border: 0.1rem solid #d02d26;
  }
}
.page .page__ourCompany {
  padding: 9.9rem 0 11.9rem;
}
@media only screen and (max-width:768px) {
  .page .page__ourCompany {
    padding: 10rem 0 6.7rem;
  }
}
.page .page__ourCompany .page__title {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 6rem;
}
@media only screen and (max-width:768px) {
  .page .page__ourCompany .page__title {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 0 0 3rem;
  }
}
.page .page__ourCompany .page__list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 3rem;
}
@media (max-width: 1100px) {
  .page .page__ourCompany .page__list {
    gap: 1.5rem;
  }
}
@media only screen and (max-width:768px) {
  .page .page__ourCompany .page__list {
    padding: 0;
  }
}
.page .page__ourCompany .page__list .page__item {
  width: calc((100% - 10.2rem) / 4);
}
@media (max-width: 1100px) {
  .page .page__ourCompany .page__list .page__item {
    width: calc((100% - 1.5rem) / 2);
    margin: 0 0 3.7rem;
  }
}
.page .page__ourCompany .page__list .page__item .page__itemLink {
  position: relative;
  display: block;
  border-bottom: 0.1rem solid #e60113;
}
.page .page__ourCompany .page__list .page__item .page__itemLink::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.2rem;
  content: "";
  background: #e60113;
  -webkit-transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.page .page__ourCompany .page__list .page__item .page__itemLink .page__img {
  width: 100%;
  overflow: hidden;
}
.page .page__ourCompany .page__list .page__item .page__itemLink .page__img img {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.page .page__ourCompany .page__list .page__item .page__itemLink .page__cnt {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.page .page__ourCompany .page__list .page__item .page__itemLink .page__cnt .page__text {
  position: relative;
  padding: 1.6rem 3.3rem 1.4rem 0;
  color: #000000;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  -webkit-transition: all 0.1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.1s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .page .page__ourCompany .page__list .page__item .page__itemLink .page__cnt .page__text {
    padding: 1.2rem 2.2rem 0.8rem 0;
    font-size: 1.4rem;
  }
}
@media only screen and (max-width:374px) {
  .page .page__ourCompany .page__list .page__item .page__itemLink .page__cnt .page__text {
    font-size: 1.2rem;
  }
}
.page .page__ourCompany .page__list .page__item .page__itemLink .page__cnt .page__text::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 3rem;
  height: 3rem;
  content: "";
  background: url(../image/common/icon-arrow_right_stroke.png) no-repeat center center/100% auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.1s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .page .page__ourCompany .page__list .page__item .page__itemLink .page__cnt .page__text::after {
    width: 2rem;
    height: 2rem;
  }
}
@media only screen and (min-width:769px) {
  .page .page__ourCompany .page__list .page__item .page__itemLink:hover::after {
    width: 100%;
  }
  .page .page__ourCompany .page__list .page__item .page__itemLink:hover .page__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .page .page__ourCompany .page__list .page__item .page__itemLink:hover .page__cnt {
    padding: 0 1.3rem;
  }
  .page .page__ourCompany .page__list .page__item .page__itemLink:hover .page__cnt .page__text {
    color: #e60113;
  }
  .page .page__ourCompany .page__list .page__item .page__itemLink:hover .page__cnt .page__text::after {
    background: url(../image/common/icon-arrow_right_fill.png) no-repeat center center/100% auto;
  }
}
.page .page__ref .page__refLst {
  gap: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:768px) {
  .page .page__ref .page__refLst {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 3rem;
  }
}
.page .page__ref .page__refLst .page__refItem {
  display: block;
  width: calc((100% - 6rem) / 3);
}
@media only screen and (max-width:768px) {
  .page .page__ref .page__refLst .page__refItem {
    width: 100%;
  }
}
.page .page__ref .page__refLst .page__refItem .page__refImg img {
  width: 100%;
}
.page .page__ref .page__refLst .page__refItem .page__refTtl {
  font-family: "Poppins", sans-serif;
  margin-top: -2.5rem;
  color: #d02d26;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .page .page__ref .page__refLst .page__refItem .page__refTtl {
    font-size: 3rem;
    line-height: 1.533zw;
  }
}
.page .page__ref .page__refLst .page__refItem .page__refbtn {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000000;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
}
.page .page__ref .page__refLst .page__refItem .page__refbtn::after {
  position: relative;
  display: block;
  width: 3rem;
  height: 3rem;
  content: "";
  background: url(../image/common/icon-arrow_right_stroke.png) no-repeat 50%/contain;
  -webkit-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .page .page__ref .page__refLst .page__refItem .page__refbtn::after {
    width: 2.8rem;
    height: 2.8rem;
  }
}
.page .page__ref .page__refLst .page__refItem:hover .page__refbtn::after {
  background: url(../image/common/icon-arrow_right_fill.png) no-repeat 50%/contain;
}
.page .page__ref .page__refLst.-col2 {
  gap: 9.6%;
}
@media only screen and (max-width:768px) {
  .page .page__ref .page__refLst.-col2 {
    gap: 3rem;
  }
}
.page .page__ref .page__refLst.-col2 .page__refItem {
  width: 45.2%;
}
@media only screen and (max-width:768px) {
  .page .page__ref .page__refLst.-col2 .page__refItem {
    width: 100%;
  }
}
.page .page__entry {
  width: 100vw;
  padding: 6rem 4rem;
  margin: 0 calc(50% - 50vw);
  background: url(../image/common/entry01.jpg) no-repeat 50%/cover;
}
@media only screen and (max-width:768px) {
  .page .page__entry {
    padding: 3rem 2rem;
    background: url(../image/common/entry01_sp.jpg) no-repeat 50%/cover;
  }
}
.page .page__entry .inner {
  padding: 3rem 0 6rem;
  background-color: #ffffff;
  opacity: 0.95;
}
@media only screen and (max-width:768px) {
  .page .page__entry .inner {
    padding: 3rem 0 5rem;
  }
}
.page .page__entry .page__entryTitle {
  font-family: "Poppins", sans-serif;
  margin-bottom: 5.5rem;
  color: #d02d26;
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .page .page__entry .page__entryTitle {
    margin-bottom: 3.5rem;
    font-size: 2.4rem;
  }
}
.page .page__entry .page__entryBtn {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 53.9rem;
  padding: 3rem 0;
  margin: 0 auto;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0;
  background-color: #e60113;
  border: 2px solid #e60113;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width:768px) {
  .page .page__entry .page__entryBtn {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 26rem;
    padding: 2.15rem 2rem 2.15rem 2.5rem;
    font-size: 1.6rem;
  }
}
.page .page__entry .page__entryBtn::before {
  position: absolute;
  top: -4.5rem;
  left: 50%;
  width: 20rem;
  height: 9rem;
  content: "";
  background: url(../image/common/icon-mynavi_tag_white.png) no-repeat 50%/contain;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width:768px) {
  .page .page__entry .page__entryBtn::before {
    top: -3.5rem;
    width: 15rem;
    height: 6.5rem;
  }
}
.page .page__entry .page__entryBtn::after {
  position: absolute;
  top: 50%;
  right: 2.7rem;
  width: 4rem;
  height: 4rem;
  content: "";
  background: url(../image/common/icon-arrow_right_stroke_white.png) no-repeat 50%/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width:768px) {
  .page .page__entry .page__entryBtn::after {
    position: relative;
    top: auto;
    right: auto;
    width: 2.6rem;
    height: 2.6rem;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
.page .page__entry .page__entryBtn:hover {
  color: #e60113;
  background-color: #ffffff;
}
.page .page__entry .page__entryBtn:hover::before {
  background: url(../image/common/icon-mynavi_tag_blue.png) no-repeat 50%/contain;
}
.page .page__entry .page__entryBtn:hover::after {
  background: url(../image/common/icon-arrow_right_stroke.png) no-repeat 50%/contain;
}
.page .page__tab .page__tabLbls {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 6rem;
  border: 1px solid #d02d26;
  border-radius: 10px;
}
@media only screen and (max-width:768px) {
  .page .page__tab .page__tabLbls {
    margin-bottom: 3rem;
    border-radius: 5px;
  }
}
.page .page__tab .page__tabLbls .page__tabLbl {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2.3rem 0;
  font-size: 2rem;
  font-weight: 500;
  border-left: 1px solid #d02d26;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}
@media only screen and (max-width:768px) {
  .page .page__tab .page__tabLbls .page__tabLbl {
    padding: 1.1rem 0;
    font-size: 1.5rem;
  }
}
.page .page__tab .page__tabLbls .page__tabLbl:first-child {
  border-left: none;
  border-radius: 10px 0 0 10px;
}
@media only screen and (max-width:768px) {
  .page .page__tab .page__tabLbls .page__tabLbl:first-child {
    border-radius: 5px 0 0 5px;
  }
}
.page .page__tab .page__tabLbls .page__tabLbl:last-child {
  border-radius: 0 10px 10px 0;
}
@media only screen and (max-width:768px) {
  .page .page__tab .page__tabLbls .page__tabLbl:last-child {
    border-radius: 0 5px 5px 0;
  }
}
.page .page__tab .page__tabLbls .page__tabLbl:hover, .page .page__tab .page__tabLbls .page__tabLbl.active {
  color: #ffffff;
  font-weight: 700;
  background-color: #d02d26;
}
.page .page__tab .page__tabCnt {
  display: none;
  width: 100%;
}
.page .page__tab .page__tabCnt.active {
  display: block;
  -webkit-animation: tabAnim ease 0.6s forwards;
          animation: tabAnim ease 0.6s forwards;
}
@keyframes tabAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.page .page__tabAccor .page__tabList {
  margin: 0 0 5.1rem;
}
@media only screen and (min-width:769px) {
  .page .page__tabAccor .page__tabList {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    border: 0.1rem solid #d02d26;
    border-radius: 1rem;
  }
}
.page .page__tabAccor .page__tabList .page__tabTitle {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 6.3rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}
@media only screen and (min-width:769px) {
  .page .page__tabAccor .page__tabList .page__tabTitle {
    width: 50%;
    text-align: center;
  }
  .page .page__tabAccor .page__tabList .page__tabTitle:not(:last-child)::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 0.1rem;
    height: 100%;
    content: "";
    background: #d02d26;
  }
}
@media only screen and (max-width:768px) {
  .page .page__tabAccor .page__tabList .page__tabTitle {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100% !important;
    height: 4.8rem;
    padding: 0 3.9rem 0 2.5rem;
    margin: 2rem 0 0;
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 1.4;
    background: #d02d26;
    border-radius: 0.5rem;
  }
  .page .page__tabAccor .page__tabList .page__tabTitle:first-child {
    margin: 0;
  }
  .page .page__tabAccor .page__tabList .page__tabTitle::after {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    width: 2.4rem;
    height: 2.4rem;
    content: "";
    background: url(../image/common/icon-arrow_accordion.png) no-repeat center center/100% auto;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }
}
@media only screen and (min-width:769px) {
  .page .page__tabAccor .page__tabList .page__tabTitle:hover {
    color: #ffffff;
    background: #d02d26;
  }
}
.page .page__tabAccor .page__tabList .page__tabTitle.-active {
  color: #ffffff;
  background: #d02d26;
}
@media only screen and (max-width:768px) {
  .page .page__tabAccor .page__tabList .page__tabTitle.-active {
    border-radius: 0.5rem 0.5rem 0 0;
  }
}
@media only screen and (max-width:768px) {
  .page .page__tabAccor .page__tabList .page__tabTitle.-active::after {
    -webkit-transform: translateY(-50%) rotate(-180deg);
            transform: translateY(-50%) rotate(-180deg);
  }
}
.page .page__tabAccor .page__tabList .page__tabText {
  display: none !important;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .page .page__tabAccor .page__tabList .page__tabText {
    display: block !important;
    margin-top: 3.9rem;
  }
}
.page .page__tabAccor .page__tabContent {
  display: none;
}
@media only screen and (max-width:768px) {
  .page .page__tabAccor .page__tabContent {
    padding: 4rem 0 3rem;
    border-radius: 0 0 0.5rem 0.5rem;
  }
}
.page .page__tabAccor .page__tabContent.-active {
  display: block;
  -webkit-animation: tabAnim ease 0.6s forwards;
          animation: tabAnim ease 0.6s forwards;
}
.page .page__tabAccor .page__tabContent .page__tabCtl {
  margin-bottom: 5.1rem;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .page .page__tabAccor .page__tabContent .page__tabCtl {
    margin-bottom: 3.9rem;
    font-size: 2.2rem;
  }
}
.page .page__tabAccor .page__tabContent .page__tabCtl span {
  padding: 0 0.5rem;
  color: #e60113;
  background-image: url(../image/common/img-title_bg.jpg);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: auto 1.8rem;
}
@media only screen and (max-width:768px) {
  .page .page__tabAccor .page__tabContent .page__tabCtl span {
    background-size: auto 1.2rem;
  }
}
.page .page__accordion .accordion__title {
  position: relative;
  padding: 2.5rem 9rem 2.5rem 5rem;
  margin-bottom: 1.7rem;
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.45;
  background-color: #d02d27;
  border-radius: 10px;
  cursor: pointer;
}
@media only screen and (max-width:768px) {
  .page .page__accordion .accordion__title {
    padding: 1.4rem 4.5rem 1.4rem 1.5rem;
    margin-bottom: 0;
    font-size: 1.4rem;
    line-height: 1.4285;
    border-radius: 5px;
  }
}
.page .page__accordion .accordion__title:after {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: absolute;
  top: 50%;
  right: 5rem;
  width: 3rem;
  height: 3rem;
  content: "";
  background: url(../image/common/icon-arrow_fill_white.svg) no-repeat center center/100% auto;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
@media only screen and (max-width:768px) {
  .page .page__accordion .accordion__title:after {
    right: 1.5rem;
    width: 2.4rem;
    height: 2.4rem;
  }
}
.page .page__accordion .accordion__title.active::after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}
.page .page__accordion .accordion__title.-yellow {
  background-color: #ffd83a;
  color: #000000;
}
.page .page__accordion .accordion__title.-redAllow::after {
  background: url(../image/common/icon-arrow_accordion-red.svg) no-repeat center center/100% auto;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}
.page .page__accordion .accordion__title.-redAllow.active::after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
          transform: translateY(-50%) rotate(-180deg);
}
.page .page__accordion .accordion__title.-redAllow + .accordion__cnt .flow__automobileFireListItem::after {
  width: 2.4rem;
  height: 2.4rem;
}
.page .page__accordion .accordion__cnt {
  display: none;
  padding: 4rem 5rem;
  background-color: #ffffff;
  border-radius: 10px;
}
@media only screen and (max-width:768px) {
  .page .page__accordion .accordion__cnt {
    padding: 4rem 2rem;
    border-radius: 5px;
  }
}
.page .page__faqList .faq {
  margin-bottom: 1.4rem;
  background-color: #ffffff;
  -webkit-box-shadow: 0 3px 6px 0 rgba(204, 204, 204, 0.35);
          box-shadow: 0 3px 6px 0 rgba(204, 204, 204, 0.35);
  border-radius: 10px;
}
.page .page__faqList .faq:last-of-type {
  margin-bottom: 0;
}
.page .page__faqList .faq__q {
  position: relative;
  padding: 2.5rem 2.7rem 2.5rem 3rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.444;
  cursor: pointer;
}
@media only screen and (max-width:768px) {
  .page .page__faqList .faq__q {
    padding: 2rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.page .page__faqList .faq__q::before {
  position: absolute;
  top: 1.9rem;
  left: 3rem;
  width: 3.8rem;
  height: 3.8rem;
  content: "";
  background: url(../image/common/icon_faq_q.svg) no-repeat 50%/contain;
}
@media only screen and (max-width:768px) {
  .page .page__faqList .faq__q::before {
    top: 2rem;
    left: 2rem;
    width: 3.3rem;
    height: 3.3rem;
  }
}
@media only screen and (max-width:768px) {
  .page .page__faqList .faq__q.-is_tag {
    padding-top: 5.9rem;
  }
}
@media only screen and (max-width:768px) {
  .page .page__faqList .faq__q.-is_tag::before {
    top: 5.4rem;
  }
}
.page .page__faqList .faq__q .faq__ttl {
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0 2rem 0 7rem;
}
@media only screen and (max-width:768px) {
  .page .page__faqList .faq__q .faq__ttl {
    padding: 0 2rem 0 4.5rem;
  }
}
.page .page__faqList .faq__q .faq__ttl::before, .page .page__faqList .faq__q .faq__ttl::after {
  position: absolute;
  top: 1.2rem;
  right: 0;
  width: 1.6rem;
  height: 2px;
  content: "";
  background-color: #e60012;
  border-radius: 500px;
}
.page .page__faqList .faq__q .faq__ttl::after {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.page .page__faqList .faq__q .faq__tag {
  padding: 0.2rem 0.9rem;
  margin-right: 1.7rem;
  color: #e60113;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4615;
  white-space: nowrap;
  border: 1px solid #e60113;
}
@media only screen and (max-width:768px) {
  .page .page__faqList .faq__q .faq__tag {
    position: absolute;
    top: -4rem;
    left: 0;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0;
  }
}
.page .page__faqList .faq__q.active .faq__ttl::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.page .page__faqList .faq__a {
  position: relative;
  display: none;
  padding: 2rem 4.7rem 2.4rem 10rem;
  font-size: 1.5rem;
  line-height: 2;
  border-top: 1px solid #e60013;
}
@media only screen and (max-width:768px) {
  .page .page__faqList .faq__a {
    padding: 2.2rem 5rem 2.6rem 6.4rem;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 2;
  }
}
.page .page__faqList .faq__a::before {
  position: absolute;
  top: 1.3rem;
  left: 3rem;
  width: 3.8rem;
  height: 3.8rem;
  content: "";
  background: url(../image/common/icon_faq_a.svg) no-repeat 50%/contain;
}
@media only screen and (max-width:768px) {
  .page .page__faqList .faq__a::before {
    top: 2rem;
    left: 2rem;
    width: 3.3rem;
    height: 3.3rem;
  }
}
.page .page__faqList .faq__a > p.-gray-out {
  position: relative;
}
.page .page__faqList .faq__a > p.-gray-out::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(136, 136, 136, 0.9);
}
.page .page__faqList .faq__a > p.-gray-out::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  padding: 1rem;
  content: attr(gray-out-text);
  font-size: 150%;
  line-height: 1.2;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (max-width:768px) {
  .page .page__faqList .faq__a > p.-gray-out::after {
    font-size: 110%;
  }
}
@media only screen and (max-width: 376px) {
  .page .page__faqList .faq__a > p.-gray-out.recruitment {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 321px) {
  .page .page__faqList .faq__a > p.-gray-out.recruitment {
    font-size: 0.8rem;
  }
}
.page .page__faqList .faq__a > p.-gray-out.recruitment::after {
  content: "2026年度一斉募集は終了しました。\a（損保ジャパンは、通年新規募集しております。）";
  white-space: pre;
}
@media only screen and (max-width:768px) {
  .page .page__faqList .faq__a > p.-gray-out.recruitment::after {
    content: "2026年度一斉募集は終了しました。\a（損保ジャパンは、\a通年新規募集しております。）";
  }
}
.page .page__faqList .faq__a.-gray-out-inner {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media only screen and (max-width:768px) {
  .page .page__faqList .faq__a.-gray-out-inner {
    padding-top: 2.2rem;
    padding-bottom: 2.6rem;
  }
}
.page .page__faqList .faq__a.-gray-out-inner > p.-gray-out-break {
  position: relative;
}
.page .page__faqList .faq__a.-gray-out-inner > p.-gray-out-break > span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  padding: 1rem;
  background-color: rgba(136, 136, 136, 0.9);
  font-size: 150%;
  line-height: 1.2;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (max-width:768px) {
  .page .page__faqList .faq__a.-gray-out-inner > p.-gray-out-break > span {
    font-size: 110%;
  }
}
.page .page__faqList .faq__a .highlight {
  color: #e60113;
  font-weight: 700;
}
.page .page__faqList .faq__a .bold {
  font-weight: 700;
}
.page .page__faqList .faq__a .faq__link {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  color: #e60113;
  font-weight: 500;
  border-bottom: 1px solid #e60113;
}
.page .page__faqList .faq__a .faq__link:hover {
  opacity: 0.7;
}
.page .page__stepList .page__step {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4.9rem;
  background: #f7f3e8;
  border: 0.1rem solid #bebebe;
}
@media only screen and (min-width:769px) {
  .page .page__stepList .page__step {
    border-left: 1.2rem solid #d02d26;
  }
}
@media only screen and (max-width:768px) {
  .page .page__stepList .page__step {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 0 2rem 3.5rem;
    border-top: 1rem solid #d02d26;
  }
}
.page .page__stepList .page__step:not(:last-child)::after {
  position: absolute;
  bottom: -3.5rem;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-color: #e30316 transparent transparent transparent;
  border-style: solid;
  border-width: 2.1rem 2.1rem 0 2.1rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.page .page__stepList .page__step .page__stepImg {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 26.2rem;
}
@media only screen and (max-width:768px) {
  .page .page__stepList .page__step .page__stepImg {
    width: 100%;
  }
}
.page .page__stepList .page__step .page__stepImg img {
  width: 16.5rem;
  margin-left: 5.6rem;
}
@media only screen and (max-width:768px) {
  .page .page__stepList .page__step .page__stepImg img {
    width: 11.4rem;
    margin: 0 auto;
  }
}
.page .page__stepList .page__step .page__stepCnt {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 26.2rem);
  min-height: 22.1rem;
  padding: 2.4rem 2rem 1.1rem 0;
}
@media only screen and (max-width:768px) {
  .page .page__stepList .page__step .page__stepCnt {
    width: 100%;
    padding: 3.1rem 0 1.1rem;
  }
}
.page .page__stepList .page__step .page__stepCnt .page__stepColleft {
  width: 10rem;
}
@media only screen and (max-width:768px) {
  .page .page__stepList .page__step .page__stepCnt .page__stepColleft {
    width: 100%;
    margin-bottom: 0.7rem;
  }
}
.page .page__stepList .page__step .page__stepCnt .page__stepColleft .en {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #d02d26;
  font-size: 1.5rem;
  font-weight: 500;
}
@media only screen and (max-width:768px) {
  .page .page__stepList .page__step .page__stepCnt .page__stepColleft .en {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
.page .page__stepList .page__step .page__stepCnt .page__stepColleft .en span {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 3.5rem;
  height: 3.5rem;
  margin-left: 0.7rem;
  color: #ffffff;
  font-size: 1.8rem;
  background: #d02d26;
  border-radius: 100%;
}
@media only screen and (max-width:768px) {
  .page .page__stepList .page__step .page__stepCnt .page__stepColleft .en span {
    width: 2.9rem;
    height: 2.9rem;
    font-size: 1.5rem;
  }
}
.page .page__stepList .page__step .page__stepCnt .page__stepColright {
  width: calc(100% - 10rem);
}
@media only screen and (max-width:768px) {
  .page .page__stepList .page__step .page__stepCnt .page__stepColright {
    width: 100%;
  }
}
.page .page__stepList .page__step .page__stepCnt .page__stepColright .page__stepTitle {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media only screen and (max-width:768px) {
  .page .page__stepList .page__step .page__stepCnt .page__stepColright .page__stepTitle {
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: center;
  }
}
.page .page__stepList .page__step .page__stepCnt .page__stepColright .page__stepTextFLex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page .page__stepList .page__step .page__stepCnt .page__stepColright .page__stepTextFLex.-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width:768px) {
  .page .page__stepList .page__step .page__stepCnt .page__stepColright .page__stepTextFLex.-wrap p {
    margin-bottom: 0;
  }
}
.page .page__stepList .page__step .page__stepCnt .page__stepColright .page__stepText {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}
@media only screen and (max-width:768px) {
  .page .page__stepList .page__step .page__stepCnt .page__stepColright .page__stepText {
    font-size: 1.3rem;
  }
}
.page .page__stepList .page__step .page__stepCnt .page__stepColright .page__stepText .red {
  color: #e60113;
  font-weight: 700;
}
.page .page__stepList .page__step .page__stepCnt .page__stepColright .page__stepText .note {
  color: #444444;
  font-size: 1.4rem;
}
@media only screen and (max-width:768px) {
  .page .page__stepList .page__step .page__stepCnt .page__stepColright .page__stepText .note {
    font-size: 1.3rem;
  }
}
.page .page__stepList .page__step .page__stepCnt .page__stepColright .page__stepText .link {
  color: #00319f;
  text-decoration: underline;
}
.page .page__stepList .page__step .page__stepCnt .page__stepColright .page__stepLst li {
  position: relative;
  padding-left: 3.8rem;
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}
@media only screen and (max-width:768px) {
  .page .page__stepList .page__step .page__stepCnt .page__stepColright .page__stepLst li {
    padding-left: 3.6rem;
    margin-bottom: 1.4rem;
    font-size: 1.3rem;
    line-height: 1.5;
  }
}
.page .page__stepList .page__step .page__stepCnt .page__stepColright .page__stepLst li::before {
  position: absolute;
  top: 0.1rem;
  left: 0;
  width: 2.4rem;
  height: 2.4rem;
  content: "";
  background: url(../image/common/icon-check.png) no-repeat center center/100% auto;
}
@media only screen and (max-width:768px) {
  .page .page__stepList .page__step .page__stepCnt .page__stepColright .page__stepLst li::before {
    top: -0.2rem;
  }
}
.page .page__stepList .page__step .page__stepCnt .page__stepColright .page__stepLst li .red {
  color: #d02d26;
}
.page .page__stepList .page__step .page__stepCnt .page__stepColright .page__stepBtn {
  width: 100%;
  height: 6rem;
  max-width: 34rem;
  margin-bottom: 1.2rem;
}
.page .page__stepList .page__step .page__stepCnt .page__stepColright .page__stepBtn a {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #ffffff;
  border: 0.1rem solid #d02d26;
  border-radius: 0.5rem;
}
.page .page__stepList .page__step .page__stepCnt .page__stepColright .page__stepBtn a span {
  position: relative;
  padding-left: 4.5rem;
  color: #d02d26;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
@media only screen and (max-width:768px) {
  .page .page__stepList .page__step .page__stepCnt .page__stepColright .page__stepBtn a span {
    padding-left: 3.7rem;
    font-size: 1.6rem;
  }
}
.page .page__stepList .page__step .page__stepCnt .page__stepColright .page__stepBtn a span::before {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.5rem;
  height: 1.9rem;
  content: "";
  background: url(../image/common/icon-download.png) no-repeat center center/100% auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (min-width:769px) {
  .page .page__stepList .page__step .page__stepCnt .page__stepColright .page__stepBtn a:hover {
    background: #d02d26;
  }
  .page .page__stepList .page__step .page__stepCnt .page__stepColright .page__stepBtn a:hover span {
    color: #ffffff;
  }
  .page .page__stepList .page__step .page__stepCnt .page__stepColright .page__stepBtn a:hover span::before {
    background: url(../image/common/icon-download_fill_white.png) no-repeat center center/100% auto;
  }
}
.page .page__stepList .page__step .page__stepCnt .page__stepColright .page__stepLink {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  color: #e60113;
  border-bottom: 1px solid #e60113;
}
.page .page__stepList .page__step .page__stepCnt .page__stepColright .page__stepLink:hover {
  opacity: 0.7;
}
.page .page__stepList .page__step .page__stepCnt .page__stepColright .page__stepCat {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.1rem 2rem;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  font-weight: 500;
  background-color: #ffffff;
}
@media only screen and (max-width:768px) {
  .page .page__stepList .page__step .page__stepCnt .page__stepColright .page__stepCat {
    margin: 0 auto 1rem;
    font-size: 1.3rem;
  }
}
.page .page__generalBox {
  padding: 6rem 2rem 7rem;
  margin: 6rem auto;
  text-align: center;
  background-color: #f5f5f5;
  border-radius: 10px;
}
@media only screen and (max-width:768px) {
  .page .page__generalBox {
    padding: 5rem 2rem 5.5rem;
    margin: 5rem 0 4rem;
    text-align: left;
  }
}
.page .page__generalBox .generalBox__ttl {
  margin-bottom: 3rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .page .page__generalBox .generalBox__ttl {
    margin-bottom: 2rem;
    font-size: 1.3rem;
    line-height: 1.46;
  }
}
.page .page__generalBox .generalBox__ttl .red {
  color: #d02d26;
}
.page .page__generalBox .generalBox__downBtn {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60rem;
  height: 7.1rem;
  padding: 1.9rem;
  margin: 0 auto 1.5rem;
  color: #d02d26;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.45;
  background-color: #ffffff;
  border: 2px solid #d02d26;
  border-radius: 6px;
}
@media only screen and (max-width:768px) {
  .page .page__generalBox .generalBox__downBtn {
    gap: 2.6rem;
    width: 100%;
    height: auto;
    padding: 1.3rem;
    margin-bottom: 2rem;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
  }
}
.page .page__generalBox .generalBox__downBtn:before {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  width: 20px;
  height: 24px;
  content: "";
  background: url(../image/common/icon-download.png) no-repeat 50%/contain;
}
@media only screen and (max-width:768px) {
  .page .page__generalBox .generalBox__downBtn:before {
    width: 15px;
    height: 18px;
  }
}
.page .page__generalBox .generalBox__downBtn:hover {
  color: #ffffff;
  background-color: #d02d26;
}
.page .page__generalBox .generalBox__downBtn:hover:before {
  background: url(../image/common/icon-download_fill_white.png) no-repeat 50%/contain;
}
.page .page__generalBox .generalBox__mail {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8125;
}
@media only screen and (max-width:768px) {
  .page .page__generalBox .generalBox__mail {
    font-size: 1.3rem;
    line-height: 1.46;
  }
}
.page .page__generalBox .generalBox__mail:hover {
  opacity: 0.7;
}
.page .page__generalBox .generalBox__mail > a {
  color: #00319f;
  border-bottom: 1px solid #00319f;
}
.page .page__generalBox .generalBox__apply {
  margin-top: 6rem;
}
@media only screen and (max-width:768px) {
  .page .page__generalBox .generalBox__apply {
    margin-top: 4rem;
  }
}
.page .page__generalBox .generalBox__apply .generalBox__ttl {
  font-weight: 400;
}
.page .page__generalBox .generalBox__insuranceBtn {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 35.4rem;
  height: 5.9rem;
  margin: 0 auto;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  background-color: #d02d26;
  border: 2px solid #d02d26;
  border-radius: 5px;
}
@media only screen and (max-width:768px) {
  .page .page__generalBox .generalBox__insuranceBtn {
    width: 100%;
    height: 5.4rem;
    font-size: 1.6rem;
  }
}
.page .page__generalBox .generalBox__insuranceBtn:hover {
  color: #d02d26;
  background-color: #ffffff;
}

.page__title.-title01 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 2rem;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
}
@media only screen and (max-width:768px) {
  .page__title.-title01 {
    margin: 0 0 1rem;
    font-size: 1.6rem;
  }
}
.page__title.-title01 .en {
  position: relative;
  position: relative;
  padding-left: 4.3rem;
  margin-left: 1.5rem;
  font-size: 1.8rem;
  font-weight: 300;
}
@media only screen and (max-width:768px) {
  .page__title.-title01 .en {
    font-size: 1.6rem;
  }
}
.page__title.-title01 .en::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.8rem;
  height: 0.1rem;
  content: "";
  background: #e60113;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page__title.-title02 {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 34px;
  margin: 0 0 2rem;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
}
@media only screen and (max-width:768px) {
  .page__title.-title02 {
    padding-left: 3.2rem;
    margin: 0 0 1rem;
    font-size: 1.8rem;
    line-height: 1.4;
  }
}
.page__title.-title02::before {
  position: absolute;
  top: 0.4rem;
  left: 0;
  width: 2.8rem;
  height: 2.8rem;
  content: "";
  border: 0.5rem solid #e60113;
  border-radius: 100%;
}
@media only screen and (max-width:768px) {
  .page__title.-title02::before {
    top: 0;
    width: 2.6rem;
    height: 2.6rem;
  }
}
.page__title.-title02 .page__tag {
  display: inline-block;
  padding: 0.1rem 1.9rem 0.2rem;
  margin-left: 1.5rem;
  color: #e60113;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  background: #fcecea;
}
@media only screen and (max-width:768px) {
  .page__title.-title02 .page__tag {
    padding: 0 0.8rem;
    margin-left: 1.2rem;
    font-size: 1.2rem;
  }
}
.page__title.-title03 span {
  display: block;
  text-align: center;
}
.page__title.-title03 span:first-of-type {
  margin-bottom: -0.5rem;
  color: #d02d26;
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
}
@media only screen and (max-width:768px) {
  .page__title.-title03 span:first-of-type {
    font-size: 2.8rem;
  }
}
.page__title.-title03 span:last-of-type {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.44;
  letter-spacing: 0;
}
@media only screen and (max-width:768px) {
  .page__title.-title03 span:last-of-type {
    font-size: 1.2rem;
  }
}

.page__contact2 {
  position: relative;
  padding: 4rem 2rem;
  background: url(../image/common/contact_bg_2.jpg) no-repeat 50%/cover;
}
@media only screen and (max-width:768px) {
  .page__contact2 {
    padding: 3rem 2rem;
    background: url(../image/common/contact_bg_2_sp.jpg) no-repeat 50%/cover;
  }
}
.page__contact2 .inner {
  padding: 4rem 2rem;
  background-color: rgba(255, 255, 255, 0.98);
}
@media only screen and (max-width:768px) {
  .page__contact2 .inner {
    padding: 3.4rem 2rem 3.2rem;
    background-color: rgba(255, 255, 255, 0.95);
  }
}
.page__contact2 .page__title {
  margin-bottom: 2rem;
}
@media only screen and (max-width:768px) {
  .page__contact2 .page__title {
    margin-bottom: 3rem;
  }
}
.page__contact2 .contact__box {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 94rem;
  margin: 0 auto;
}
@media only screen and (max-width:768px) {
  .page__contact2 .contact__box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (max-width:768px) {
  .page__contact2 .contact__box .contact__colL {
    width: 100%;
    max-width: 27rem;
    margin: 0 auto;
  }
}
.page__contact2 .contact__box .contact__colR {
  width: 44.6rem;
}
@media only screen and (max-width:768px) {
  .page__contact2 .contact__box .contact__colR {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
  }
}
.page__contact2 .contact__box .contact__add {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.714;
  border-bottom: 1px solid #d3d3d3;
}
@media only screen and (max-width:768px) {
  .page__contact2 .contact__box .contact__add {
    font-size: 1.3rem;
    line-height: 1.46;
  }
}
.page__contact2 .contact__box .contact__des {
  color: #939393;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.67;
}
@media only screen and (max-width:768px) {
  .page__contact2 .contact__box .contact__des {
    font-size: 1rem;
    line-height: 1.6;
  }
}
.page__contact2 .contact__box .contact__info {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.6rem 3.9rem 1.6rem 10rem;
  border: 2px solid #d02d26;
}
@media only screen and (max-width:768px) {
  .page__contact2 .contact__box .contact__info {
    max-width: 32.5rem;
    padding: 2rem 1rem;
    margin: 0 auto 5.4rem;
  }
}
.page__contact2 .contact__box .contact__info + .contact__info {
  margin-top: 1rem;
}
.page__contact2 .contact__box .contact__info .contact__hour {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: block;
  color: #333333;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 2;
  white-space: nowrap;
}
@media only screen and (max-width:768px) {
  .page__contact2 .contact__box .contact__info .contact__hour {
    position: absolute;
    top: calc(100% + 3.2rem);
    left: calc(50% - 0.6rem);
    width: 100vw;
    max-width: 100vw;
    font-size: 1.2rem;
    line-height: 1.416;
    text-align: center;
    -webkit-transform: translateX(-50vw);
            transform: translateX(-50vw);
  }
}
.page__contact2 .contact__box .contact__info .contact__tel {
  font-family: "Poppins", sans-serif;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #d02d26;
  font-size: 3.7rem;
  font-weight: 500;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width:768px) {
  .page__contact2 .contact__box .contact__info .contact__tel {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 1.3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 3rem;
    white-space: wrap;
  }
}
.page__contact2 .contact__box .contact__info .contact__tel:hover {
  opacity: 0.7;
}
.page__contact2 .contact__box .contact__info .contact__tel::before {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: absolute;
  top: 35%;
  left: -6.6rem;
  width: 4.6rem;
  height: 4.6rem;
  content: "";
  background-image: url(../image/common/icon_tel_bg_red_1.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width:768px) {
  .page__contact2 .contact__box .contact__info .contact__tel::before {
    position: relative;
    top: 0;
    left: 0;
    width: 3.2rem;
    height: 3.2rem;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
.page__contact2 .contact__box .contact__info .contact__fax {
  font-family: "Poppins", sans-serif;
  position: relative;
  margin-bottom: 1.4rem;
  color: #d02d26;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
@media only screen and (max-width:768px) {
  .page__contact2 .contact__box .contact__info .contact__fax {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    font-size: 2.3rem;
    line-height: 1.25;
  }
}
@media only screen and (max-width:480px) {
  .page__contact2 .contact__box .contact__info .contact__fax {
    font-size: 1.8rem;
  }
}
.page__contact2 .contact__box .contact__info .contact__fax::before {
  position: absolute;
  top: 41%;
  left: -6.6rem;
  width: 4.6rem;
  height: 4.6rem;
  content: "";
  background: url(../image/common/icon-fax_circle.png) no-repeat 50%/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width:768px) {
  .page__contact2 .contact__box .contact__info .contact__fax::before {
    position: relative;
    top: 0;
    left: 0;
    width: 3.2rem;
    height: 3.2rem;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@media only screen and (max-width:768px) {
  .page__contact2 .contact__box .contact__info .contact__fax .contact__hour {
    top: calc(100% + 0.8rem);
  }
}
.page__contact2 .contact__box .contact__info .contact__mail {
  font-family: "Poppins", sans-serif;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  margin-top: 0.8rem;
  color: #d02d26;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}
.page__contact2 .contact__box .contact__info .contact__mail > span {
  text-decoration: underline;
  text-underline-offset: 0.6rem;
}
@media only screen and (max-width:768px) {
  .page__contact2 .contact__box .contact__info .contact__mail {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.6rem;
  }
}
@media only screen and (max-width:480px) {
  .page__contact2 .contact__box .contact__info .contact__mail {
    font-size: 1.2rem;
  }
}
.page__contact2 .contact__box .contact__info .contact__mail::before {
  position: absolute;
  top: 50%;
  left: -6.6rem;
  width: 4.6rem;
  height: 4.6rem;
  content: "";
  background: url(../image/common/icon-email_circle.png) no-repeat 50%/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width:768px) {
  .page__contact2 .contact__box .contact__info .contact__mail::before {
    position: relative;
    top: 0;
    left: 0;
    width: 3.2rem;
    height: 3.2rem;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
.page__contact2 .contact__box .contact__info .contact__mail:hover {
  opacity: 0.7;
}
@media only screen and (max-width:768px) {
  .page__contact2 .contact__box .contact__info .contact__tel.-has-caption,
  .page__contact2 .contact__box .contact__info .contact__fax.-has-caption {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.6rem;
  }
}
@media only screen and (max-width:768px) {
  .page__contact2 .contact__box .contact__info .contact__tel.-has-caption::before,
  .page__contact2 .contact__box .contact__info .contact__fax.-has-caption::before {
    position: static;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@media only screen and (max-width:768px) {
  .page__contact2 .contact__box .contact__info .contact__tel.-has-caption .contact__hour,
  .page__contact2 .contact__box .contact__info .contact__fax.-has-caption .contact__hour {
    position: static;
    width: 100%;
    margin-left: 1em;
    text-align: left;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.page__contact2 .contact__box .contact__info.-fax {
  padding: 2.2rem 3.9rem 3.1rem 10.3rem;
}
@media only screen and (max-width:768px) {
  .page__contact2 .contact__box .contact__info.-fax {
    padding: 2rem;
    margin-bottom: 2.7rem;
  }
}
.-pe-n {
  pointer-events: none;
}

@media only screen and (max-width:768px) {
  .-pc-only {
    display: none;
  }
}

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

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

.-tac {
  text-align: center;
}

.-ta {
  text-align: left;
}

.-tar {
  text-align: right;
}

.-hover-pointer {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.-hover-pointer:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.-color-white {
  color: #ffffff;
}

.-color-black {
  color: #000000;
}

.-color-green {
  color: #00b900;
}

.-bg-primary {
  background-color: #e60113;
}

.-bg-white {
  background-color: #ffffff;
}

.-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.-tategaki {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}

.-noScrollBar {
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}
.-noScrollBar::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}

.-color-primary {
  color: #e60113;
}

.-indent1 {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
}

.-indent2 {
  display: inline-block;
  padding-left: 2em;
  text-indent: -2em;
}

.page__blockText.-mb0 {
  margin-bottom: 0 !important;
}

.-po {
  position: relative;
}

.-text-black {
  color: #000000 !important;
}

.-tdu {
  text-decoration: underline;
}

.-section-gray-out {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 1rem;
  overflow: scroll;
  line-height: 1.5;
  background-color: rgba(204, 204, 204, 0.9);
}
@media only screen and (max-width:768px) {
  .-section-gray-out .-fxdc-sp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.-section-gray-out .-m-auto {
  margin: auto;
}
.-section-gray-out .-fz-l {
  font-size: 1.2rem;
}
.-section-gray-out .-section-gray-out-title {
  margin-bottom: 1em;
  font-size: 150%;
  font-weight: 600;
}
.-section-gray-out .-section-gray-out-text {
  text-align: center;
}
.-section-gray-out .-section-gray-out-text.-fz-16 {
  font-size: 1.6rem;
}
@media only screen and (max-width:768px) {
  .-section-gray-out .-section-gray-out-text.-fz-16 {
    font-size: 1.3rem;
  }
}
.-section-gray-out .-section-gray-out-link {
  color: #00319f;
  text-decoration: underline;
}

.buttonType1 {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 7rem;
  max-width: 42rem;
  padding: 0 8rem;
  background-color: #e60113;
  border: 0.2rem solid #e60113;
}
.buttonType1::after {
  position: absolute;
  top: 50%;
  right: 2rem;
  display: inline-block;
  width: 3rem;
  height: 3rem;
  content: "";
  background-image: url(../image/common/icon_right_arrow_circle_1.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.buttonType1 .buttonType1__text {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.buttonType1:hover {
  background-color: #ffffff;
}
.buttonType1:hover .buttonType1__text {
  color: #e60113;
}
.buttonType1:hover::after {
  background-image: url(../image/common/icon_right_arrow_red_circle_1.svg);
}

.buttonType2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #363636;
  height: 5.2rem;
  padding: 0 7rem;
  position: relative;
  max-width: 22rem;
}
.buttonType2 .buttonType2__text {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
}
.buttonType2 .buttonType2__figure {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  right: calc(100% - 2.5rem);
}

.cContact {
  position: relative;
  padding: 5rem 2rem 4.5rem;
  background: url(../image/common/contact_bg.jpg) no-repeat 50%/cover;
}
@media only screen and (max-width:768px) {
  .cContact {
    padding: 4rem 2rem;
    background: url(../image/common/contact_bg_sp.jpg) no-repeat 50%/cover;
  }
}
.cContact .inner {
  padding-top: 4.8rem;
  padding-bottom: 3.2rem;
  background-color: #ffffff;
}
@media only screen and (max-width:768px) {
  .cContact .inner {
    padding: 3.4rem 2rem 3.2rem;
  }
}
.cContact .contact__wrapper {
  max-width: 60rem;
  margin: 0 auto;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.78;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .cContact .contact__wrapper {
    max-width: 100%;
    font-size: 1.3rem;
    font-weight: normal;
    line-height: 2;
  }
}
.cContact .contact__wrapper .highlight {
  color: #e60113;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(40%, #fcecea), color-stop(40%, #ffffff));
  background: linear-gradient(0deg, #fcecea 40%, #ffffff 40%);
}
@media only screen and (max-width:768px) {
  .cContact .contact__wrapper .highlight {
    font-weight: 700;
  }
}
.cContact .contact__title {
  font-family: "Noto Serif JP", serif;
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 1.6rem;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.9583;
}
@media only screen and (max-width:768px) {
  .cContact .contact__title {
    margin-bottom: 2.3rem;
    font-size: 1.6rem;
    font-weight: 700;
  }
}
.cContact .contact__title::before, .cContact .contact__title::after {
  position: absolute;
  top: 50%;
  width: 1px;
  height: 2.8rem;
  content: "";
  background: #000000;
}
@media only screen and (max-width:768px) {
  .cContact .contact__title::before, .cContact .contact__title::after {
    height: 2.3rem;
  }
}
.cContact .contact__title::before {
  left: -1.7rem;
  -webkit-transform: translateY(-50%) rotate(-30deg);
          transform: translateY(-50%) rotate(-30deg);
}
.cContact .contact__title::after {
  right: -1.7rem;
  -webkit-transform: translateY(-50%) rotate(30deg);
          transform: translateY(-50%) rotate(30deg);
}
.cContact .contact__btns {
  margin-top: 5.3rem;
}
@media only screen and (max-width:768px) {
  .cContact .contact__btns {
    margin-top: 4.5rem;
  }
}
.cContact .contact__btns .contact__inquiryBtn {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60rem;
  height: 10rem;
  margin-bottom: 1.65rem;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.44;
  background-color: #e60113;
  border: 2px solid #e60113;
}
@media only screen and (max-width:768px) {
  .cContact .contact__btns .contact__inquiryBtn {
    width: 100%;
    height: 7rem;
    padding-right: 4.5rem;
    margin-bottom: 2rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.cContact .contact__btns .contact__inquiryBtn:before {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: block;
  width: 24px;
  height: 18px;
  margin-top: 0.5rem;
  content: "";
  background: url(../image/common/icon-email.png) no-repeat 50%/contain;
}
@media only screen and (max-width:768px) {
  .cContact .contact__btns .contact__inquiryBtn:before {
    display: none;
  }
}
.cContact .contact__btns .contact__inquiryBtn:after {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: absolute;
  top: 50%;
  right: 2.9rem;
  width: 40px;
  height: 40px;
  content: "";
  background: url(../image/common/icon-arrow_right_stroke_white.png) no-repeat 50%/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width:768px) {
  .cContact .contact__btns .contact__inquiryBtn:after {
    right: 2rem;
    width: 26px;
    height: 26px;
  }
}
.cContact .contact__btns .contact__inquiryBtn .tag {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: absolute;
  top: -2.4rem;
  left: 50%;
  display: block;
  padding: 0.3rem 2.5rem;
  color: #000000;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.16);
  border-radius: 500px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width:768px) {
  .cContact .contact__btns .contact__inquiryBtn .tag {
    top: -2rem;
    padding: 0.4rem 2.4rem;
    font-size: 1.2rem;
  }
}
.cContact .contact__btns .contact__inquiryBtn .tag::after {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border: 5.5px solid transparent;
  border-top: 10px solid #ffffff;
}
@media only screen and (max-width:768px) {
  .cContact .contact__btns .contact__inquiryBtn .tag::after {
    border: 4px solid transparent;
    border-top: 7px solid #ffffff;
  }
}
.cContact .contact__btns .contact__inquiryBtn .tag .red {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  color: #e60113;
}
@media only screen and (min-width:769px) {
  .cContact .contact__btns .contact__inquiryBtn:hover {
    color: #e60113;
    background-color: #ffffff;
  }
  .cContact .contact__btns .contact__inquiryBtn:hover:before {
    background: url(../image/common/icon-email_red.png) no-repeat 50%/contain;
  }
  .cContact .contact__btns .contact__inquiryBtn:hover:after {
    right: 4rem;
    background: url(../image/common/icon-arrow_right_fill.png) no-repeat center center/100% auto;
  }
  .cContact .contact__btns .contact__inquiryBtn:hover .tag {
    color: #ffffff;
    background-color: #e60113;
  }
}
@media only screen and (min-width:769px) and (max-width:768px) {
  .cContact .contact__btns .contact__inquiryBtn:hover .tag {
    top: -2rem;
    padding: 0.4rem 2.4rem;
    font-size: 1.2rem;
  }
}
@media only screen and (min-width:769px) {
  .cContact .contact__btns .contact__inquiryBtn:hover .tag::after {
    border-top: 10px solid #e60113;
  }
  .cContact .contact__btns .contact__inquiryBtn:hover .tag .red {
    color: #ffffff;
  }
}
.cContact .contact__btns .contact__otherBtn {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60rem;
  height: 6.6rem;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.45;
  background-color: #666b71;
  border: 0.2rem solid #666b71;
}
@media only screen and (max-width:768px) {
  .cContact .contact__btns .contact__otherBtn {
    width: 100%;
    height: 5.1rem;
    font-size: 1.4rem;
    line-height: 1.428;
  }
}
.cContact .contact__btns .contact__otherBtn:hover {
  color: #666b71;
  background-color: #ffffff;
}

.cEntry {
  padding: 6rem 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media only screen and (max-width:768px) {
  .cEntry {
    padding: 3rem 0;
  }
}
.cEntry .cEntry__contents {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3rem 2rem 6rem;
  background-color: rgba(255, 255, 255, 0.95);
}
@media only screen and (max-width:768px) {
  .cEntry .cEntry__contents {
    padding: 3rem 0 5rem;
  }
}
.cEntry .cEntry__title {
  font-family: "Poppins", sans-serif;
  margin-bottom: 2rem;
  color: #e60113;
  font-size: 4.5rem;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .cEntry .cEntry__title {
    margin-bottom: 1.2rem;
    font-size: 2.5rem;
  }
}
@media only screen and (max-width:768px) {
  .cEntry .entryButton {
    max-width: 26rem;
  }
}

.interviewLinks {
  padding-bottom: 12rem;
}
@media only screen and (max-width:768px) {
  .interviewLinks {
    padding: 8rem 0 10rem;
  }
}
.interviewLinks .interviewLinks__list {
  gap: 3rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:768px) {
  .interviewLinks .interviewLinks__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.interviewLinks .interviewLinks__item {
  width: 100%;
}
.interviewLinks .interviewLinks__item .titleType1 {
  margin-bottom: 0;
  -webkit-transform: translateY(-2.4rem);
          transform: translateY(-2.4rem);
}
.interviewLinks .interviewLinks__item .titleType1 .titleType1__lText {
  font-size: 3rem;
  font-weight: 600;
}
.interviewLinks .interviewLinks__item .titleType1 .titleType1__sText {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.interviewLinks .interviewLinks__item .titleType1 .titleType1__sText::after {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  content: "";
  background-image: url(../image/common/icon_arrow_right_primary_1.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.5rem 1rem;
  border: 0.2rem solid #e60113;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.interviewLinks .interviewLinks__item:hover .titleType1__sText::after {
  background-color: #e60113;
  background-image: url(../image/common/icon_arrow_right_white_1.svg);
}
.interviewLinks .interviewLinks__figure {
  position: relative;
  width: 100%;
}
.interviewLinks .interviewLinks__figure::before {
  display: block;
  padding-top: 62%;
  content: "";
}
.interviewLinks .interviewLinks__figure > * {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.interviewLinks .interviewLinks__figure {
  overflow: hidden;
  border-radius: 2rem;
}

.interviewSliderSection {
  padding-bottom: 14rem;
}
@media only screen and (max-width:768px) {
  .interviewSliderSection {
    padding-bottom: 10rem;
  }
}
.interviewSliderSection .titleType1 {
  margin-bottom: 6rem;
}
@media only screen and (max-width:768px) {
  .interviewSliderSection .titleType1 {
    margin-bottom: 4rem;
  }
}

@media only screen and (max-width:768px) {
  .interviewSlider {
    padding-bottom: 10rem;
  }
}
.interviewSlider .interviewSlider__wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.interviewSlider .interviewSlider__link {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.interviewSlider .interviewSlider__figure {
  position: relative;
  width: 100%;
}
.interviewSlider .interviewSlider__figure::before {
  display: block;
  padding-top: 133%;
  content: "";
}
.interviewSlider .interviewSlider__figure > * {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.interviewSlider .interviewSlider__figure {
  overflow: hidden;
  background-color: #939393;
  border-radius: 1.5rem;
}
.interviewSlider .interviewSlider__descWrap {
  gap: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.interviewSlider .interviewSlider__descWrap::before {
  font-family: "Poppins", sans-serif;
  display: inline-block;
  color: #e60113;
  content: attr(menu-order);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
}
.interviewSlider .interviewSlider__department {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.04em;
}
.interviewSlider .interviewSlider__hireDate {
  display: block;
  color: #939393;
  font-size: 1.3rem;
}
.interviewSlider .interviewSlider__button {
  bottom: 0;
}
.interviewSlider .interviewSlider__button.swiper-button-prev {
  right: calc(50% + 0.4rem);
  left: auto;
}
.interviewSlider .interviewSlider__button.swiper-button-next {
  right: auto;
  left: calc(50% + 0.4rem);
}
.interviewSlider .swiper-pagination {
  display: none;
  bottom: 7rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width:768px) {
  .interviewSlider .swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: auto;
    height: 0.2rem;
  }
}
.interviewSlider .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #e60113;
}
@media only screen and (max-width:768px) {
  .interviewSlider .swiper-pagination .swiper-pagination-progressbar-fill {
    top: -0.1rem;
    height: 0.4rem;
    background: #e60113;
    border-radius: 10rem;
    border-radius: 500px;
  }
}
.interviewSlider .swiper-pagination-bullet {
  width: 100%;
  height: 0.2rem;
  margin: 0 !important;
}
.interviewSlider .swiper-pagination-bullet.swiper-pagination-bullet-active, .interviewSlider .swiper-pagination-bullet.-prev-active {
  height: 0.4rem;
  background-color: #e60113;
  border-radius: 5rem;
}
.interviewSlider .swiper-pagination-bullet.-prev-active {
  border-radius: 0;
  opacity: 1;
}

.page__ourCompany {
  padding: 9.9rem 0 11.9rem;
}
@media only screen and (max-width:768px) {
  .page__ourCompany {
    padding: 10rem 0 6.7rem;
  }
}
.page__ourCompany .page__title {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 6rem;
}
@media only screen and (max-width:768px) {
  .page__ourCompany .page__title {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 0 0 3rem;
  }
}
.page__ourCompany .page__list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 3rem;
}
@media (max-width: 1100px) {
  .page__ourCompany .page__list {
    gap: 1.5rem;
  }
}
@media only screen and (max-width:768px) {
  .page__ourCompany .page__list {
    padding: 0;
  }
}
.page__ourCompany .page__list .page__item {
  width: calc((100% - 10.2rem) / 4);
}
@media (max-width: 1100px) {
  .page__ourCompany .page__list .page__item {
    width: calc((100% - 1.5rem) / 2);
    margin: 0 0 3.7rem;
  }
}
.page__ourCompany .page__list .page__item .page__itemLink {
  position: relative;
  display: block;
  border-bottom: 0.1rem solid #e60113;
}
.page__ourCompany .page__list .page__item .page__itemLink::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.2rem;
  content: "";
  background: #e60113;
  -webkit-transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.page__ourCompany .page__list .page__item .page__itemLink .page__img {
  width: 100%;
  overflow: hidden;
}
.page__ourCompany .page__list .page__item .page__itemLink .page__img img {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.page__ourCompany .page__list .page__item .page__itemLink .page__cnt {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.page__ourCompany .page__list .page__item .page__itemLink .page__cnt .page__text {
  position: relative;
  padding: 1.6rem 3.3rem 1.4rem 0;
  color: #000000;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  -webkit-transition: all 0.1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.1s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .page__ourCompany .page__list .page__item .page__itemLink .page__cnt .page__text {
    padding: 1.2rem 2.2rem 0.8rem 0;
    font-size: 1.4rem;
  }
}
@media only screen and (max-width:374px) {
  .page__ourCompany .page__list .page__item .page__itemLink .page__cnt .page__text {
    font-size: 1.2rem;
  }
}
.page__ourCompany .page__list .page__item .page__itemLink .page__cnt .page__text::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 3rem;
  height: 3rem;
  content: "";
  background: url(../image/common/icon-arrow_right_stroke.png) no-repeat center center/100% auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.1s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .page__ourCompany .page__list .page__item .page__itemLink .page__cnt .page__text::after {
    width: 2rem;
    height: 2rem;
  }
}
@media only screen and (min-width:769px) {
  .page__ourCompany .page__list .page__item .page__itemLink:hover::after {
    width: 100%;
  }
  .page__ourCompany .page__list .page__item .page__itemLink:hover .page__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .page__ourCompany .page__list .page__item .page__itemLink:hover .page__cnt {
    padding: 0 1.3rem;
  }
  .page__ourCompany .page__list .page__item .page__itemLink:hover .page__cnt .page__text {
    color: #e60113;
  }
  .page__ourCompany .page__list .page__item .page__itemLink:hover .page__cnt .page__text::after {
    background: url(../image/common/icon-arrow_right_fill.png) no-repeat center center/100% auto;
  }
}

@media screen and (min-width: 768px) {
  .l-footer {
    padding-top: 1.953125vw;
    border-top: 1px solid #d3d3d3;
  }
}
.l-footer {
  position: relative;
  z-index: 10;
  background-color: #f5f5f5;
}
.l-footer .l-footer-number {
  padding-bottom: 1.2rem;
  font-size: 1.2rem;
}
@media only screen and (max-width:768px) {
  .l-footer .l-footer-number {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .l-footer-backToTop {
    position: relative;
    z-index: 10;
    display: block;
    height: 10.6666666667vw;
    background-color: #ffffff;
  }
  .l-footer-backToTop::after {
    position: absolute;
    top: calc(50% - 0.9333333333vw);
    left: calc(50% - 0.9333333333vw);
    width: 3.8746666667vw;
    height: 2.216vw;
    content: "";
    background-image: url(../image/common/icon-arrow_up.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .l-footer-backToTop::before {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transform: translate();
            transform: translate();
  }
}
@media screen and (min-width: 768px) {
  .l-footer-backToTop {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .l-footer-banner {
    padding-top: 10.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .l-footer-banner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 2rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 80.7291666667vw;
    max-width: 1240px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-banner .l-footer-banner__company {
    width: 44.8vw;
    height: 11.4666666667vw;
    margin-bottom: 10.6666666667vw;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .l-footer-banner .l-footer-banner__company {
    width: 15.5598958333vw;
    height: 3.9713541667vw;
    max-width: 239px;
  }
}
.l-footer-banner .l-footer-banner__company {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .l-footer-nav {
    padding-top: 8.5333333333vw;
    padding-bottom: 12.8vw;
  }
}
@media screen and (min-width: 768px) {
  .l-footer-nav {
    margin-inline: auto;
    padding-block: 1.953125vw;
  }
}
.l-footer-nav {
  border-top: 1px solid #e6e6e6;
}
@media screen and (max-width: 767px) {
  .l-footer-nav .l-footer-nav-list {
    margin-inline: 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .l-footer-nav .l-footer-nav-list {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }
}
.l-footer-nav .l-footer-nav-list {
  max-width: 80rem;
}
@media screen and (max-width: 767px) {
  .l-footer-nav .l-footer-nav-list li {
    display: inline;
  }
}
@media screen and (min-width: 768px) {
  .l-footer-nav .l-footer-nav-list li {
    display: inline-block;
    margin-bottom: 0.6510416667vw;
  }
}
.l-footer-nav .l-footer-nav-list li a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-footer-nav .l-footer-nav-list li a {
    margin-bottom: 1.3333333333vw;
    font-size: clamp(10px, 3.2vw, 12px);
    padding-block: 1.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .l-footer-nav .l-footer-nav-list li a {
    position: relative;
    display: block;
    font-size: clamp(10px, 0.78125vw, 12px);
  }
  .l-footer-nav .l-footer-nav-list li a::before {
    position: absolute;
    bottom: -0.3em;
    left: 0;
    width: 0;
    height: 1px;
    content: "";
    background-color: #999999;
    -webkit-transition: width 0.2s ease-out;
    transition: width 0.2s ease-out;
  }
  .l-footer-nav .l-footer-nav-list li a:hover::before {
    width: 100%;
  }
}
.l-footer-nav .l-footer-nav-list li a {
  color: #000000;
}
@media screen and (min-width: 768px) {
  .l-footer-nav .l-footer-nav-list li:not(:last-of-type) {
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-nav .l-footer-nav-list li:not(:last-of-type) {
    margin-right: 1.0666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .l-footer-nav .l-footer-nav-list li:not(:last-of-type) {
    margin-right: 1.1067708333vw;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-nav .l-footer-nav-list li:not(:last-of-type)::after {
    display: inline-block;
    margin-bottom: 5px;
    color: #cccccc;
    content: "  |";
    font-size: clamp(10px, 3.2vw, 12px);
  }
}
@media screen and (min-width: 768px) {
  .l-footer-nav .l-footer-nav-list li:not(:last-of-type)::after {
    position: absolute;
    top: calc(50% - 0.1953125vw);
    right: -0.78125vw;
    width: 1px;
    height: 0.6510416667vw;
    content: "";
    background-color: #cccccc;
  }
}

.l-footer-copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-footer-copyright {
    height: 17.3333333333vw;
    font-size: clamp(10px, 2.6666666667vw, 10px);
  }
}
@media screen and (min-width: 768px) {
  .l-footer-copyright {
    height: 3.6458333333vw;
    font-size: clamp(10px, 0.78125vw, 12px);
  }
}
.l-footer-copyright {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  background-color: #d02d26;
}

.headerAddtionalLink .-color-black {
  color: #000000 !important;
}
.headerAddtionalLink .-color-primary {
  color: #e60113 !important;
}
.headerAddtionalLink .l-header-additionalMenuSP {
  display: none;
}
@media only screen and (max-width:960px) {
  .headerAddtionalLink .l-header-additionalMenuSP {
    position: fixed;
    right: 10px;
    bottom: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 98;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 11rem;
    height: 11rem;
    text-align: center;
    background-color: #ffffff;
    border: 4px solid #e60113;
    border-radius: 50%;
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-name: addMenu02_anim;
            animation-name: addMenu02_anim;
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  .headerAddtionalLink .l-header-additionalMenuSP span {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
  }
  .headerAddtionalLink .l-header-additionalMenuSP span:nth-of-type(1) {
    font-size: 0.75rem;
  }
  .headerAddtionalLink .l-header-additionalMenuSP span:nth-of-type(2) {
    font-size: 0.875rem;
  }
  .headerAddtionalLink .l-header-additionalMenuSP span:nth-of-type(2) span {
    font-size: 0.75rem;
  }
  .headerAddtionalLink .l-header-additionalMenuSP span:nth-of-type(3) {
    font-size: 0.75rem;
  }
  .l-header.is-active + .headerAddtionalLink .l-header-additionalMenuSP {
    visibility: hidden;
    pointer-events: none;
  }
}
.headerAddtionalLink .l-header-additionalMenuPC {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  position: fixed;
  top: calc(50% - 150px);
  right: 0;
  z-index: 99;
  display: block;
  padding: 14px 16px 50px;
  color: #e60113;
  font-size: 1.6rem;
  background-color: #ffffff;
  border: 2px solid #e60113;
  border-right: none;
  border-radius: 10px 0 0 10px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-name: addMenu02_anim;
          animation-name: addMenu02_anim;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
@-webkit-keyframes addMenu02_anim {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes addMenu02_anim {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.headerAddtionalLink .l-header-additionalMenuPC:hover {
  background-color: #f5e5e5;
}
.headerAddtionalLink .l-header-additionalMenuPC::after {
  position: absolute;
  bottom: 15px;
  left: 17px;
  width: 26px;
  height: 26px;
  content: "";
  background-image: url(../image/common/icon-arrow_right_fill.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.headerAddtionalLink .l-header-additionalMenuPC span {
  color: #000000;
}
.headerAddtionalLink .l-header-additionalMenuPC .-color-black {
  color: #000000 !important;
}
@media only screen and (max-width:960px) {
  .headerAddtionalLink .l-header-additionalMenuPC {
    display: none;
  }
}

.headerWrap {
  height: 8rem;
}
@media only screen and (max-width:960px) {
  .headerWrap {
    height: 6rem;
  }
}
@media only screen and (max-width:768px) {
  .headerWrap.-general-page, .headerWrap.-employee-page {
    height: 6.4rem;
  }
}

body:has(.pageFront) .headerWrap {
  height: 0;
}
@media only screen and (max-width:960px) {
  body:has(.pageFront) .headerWrap {
    height: 0;
  }
}

.l-header.is-fv {
  background-color: transparent;
}
.l-header.is-fv .l-header-link {
  color: #ffffff;
}
@media only screen and (max-width:960px) {
  .l-header.is-fv .l-header-link {
    color: #000000;
  }
}
.l-header.is-fv .l-header-link::after {
  background-image: url(../image/common/icon-arrow_down.png);
}
@media only screen and (max-width:960px) {
  .l-header.is-fv .l-header-link::after {
    display: none;
  }
}
.l-header.is-fv .l-header-link#corporation::before {
  background-image: url(../image/common/icon_corporate_white_1.svg);
}
@media only screen and (max-width:960px) {
  .l-header.is-fv .l-header-link#corporation::before {
    display: none;
  }
}
.l-header.is-fv .l-header-link#retail::before {
  background-image: url(../image/common/icon_retail_white_1.svg);
}
@media only screen and (max-width:960px) {
  .l-header.is-fv .l-header-link#retail::before {
    display: none;
  }
}
.l-header.is-fv .l-header-link .l-header-link-megaMenu-text {
  color: #ffffff;
}
@media only screen and (max-width:960px) {
  .l-header.is-fv .l-header-link .l-header-link-megaMenu-text {
    color: #000000;
  }
}
.l-header.is-fv .l-header-eng a {
  color: #ffffff;
  border: 1px solid #ffffff;
}
@media only screen and (max-width:960px) {
  .l-header.is-fv .l-header-eng a {
    color: #e60113;
  }
}
.l-header.is-fv .l-header-eng a:hover {
  border: 1px solid #e60113;
}
.l-header.is-fv .l-header-line::after {
  background-color: #ffffff;
}
.l-header.is-fv .l-header-accident a {
  color: #ffffff;
}
@media only screen and (max-width:768px) {
  .l-header.is-fv .l-header-accident a {
    color: #000000;
  }
}
.l-header.is-fv .l-header-accident a::before {
  background-color: transparent;
  background-image: url(../image/common/icon_phone_bg_white_1.svg);
  background-size: contain;
  -webkit-transition: 0;
  transition: 0;
}
@media only screen and (max-width:768px) {
  .l-header.is-fv .l-header-accident a::before {
    background-color: transparent;
    background-image: url(../image/common/icon_phone_bg_primary_1.svg);
  }
}
.l-header.is-fv .l-header-accident a:hover {
  color: #e60113;
}
.l-header.is-fv .l-header-accident a:hover::before {
  background-image: url(../image/common/icon_phone_bg_primary_1.svg);
}

@media only screen and (max-width:960px) {
  .l-header.is-active {
    background-color: #f5f5f5;
  }
}

.l-header {
  position: fixed;
  top: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background-color: #ffffff;
}
@media only screen and (max-width:960px) {
  .l-header {
    padding: 1rem 0;
    background-color: #ffffff;
  }
}
.l-header .l-header__logo {
  -ms-flex-item-align: center;
      align-self: center;
  width: 16.8rem;
  margin-left: 3rem;
}
@media only screen and (max-width:960px) {
  .l-header .l-header__logo {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 15.1rem;
    margin-left: 2rem;
  }
}
.l-header .l-header__logo a {
  display: block;
}
.l-header .l-header__logo a img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-header .l-header__mainNav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin-left: 1.2rem;
}
@media only screen and (max-width:960px) {
  .l-header .l-header__mainNav {
    position: fixed;
    top: 6rem;
    left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    height: calc(100vh - 6rem);
    padding: 0 2rem;
    padding-bottom: 10rem;
    margin-left: 0;
    overflow-y: scroll;
    background-color: #f5f5f5;
    -webkit-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
    opacity: 0;
    visibility: hidden;
  }
}

#l-header-toggle.is-active .l-header__mainNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  visibility: visible;
}

.l-header-menuButton {
  display: none;
}
@media only screen and (max-width:960px) {
  .l-header-menuButton {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 7.2rem;
    height: 7.2rem;
    padding: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: #e60113;
    border: none;
    border-radius: 0 0 0 1.5rem;
    outline: none;
  }
  .l-header-menuButton span {
    position: absolute;
    left: 50%;
    display: block;
    width: 3.6rem;
    height: 1px;
    background-color: #ffffff;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: -webkit-transform 0.1s ease-out;
    transition: -webkit-transform 0.1s ease-out;
    transition: transform 0.1s ease-out;
    transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
  }
  .l-header-menuButton span:first-of-type {
    top: calc(50% - 0.95rem);
  }
  .l-header-menuButton span:nth-of-type(2) {
    top: 50%;
  }
  .l-header-menuButton span:last-of-type {
    top: calc(50% + 0.95rem);
  }
  #l-header-toggle.is-active .l-header-menuButton span:first-of-type {
    top: 50%;
    -webkit-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
  }
  #l-header-toggle.is-active .l-header-menuButton span:nth-of-type(2) {
    display: none;
  }
  #l-header-toggle.is-active .l-header-menuButton span:last-of-type {
    top: 50%;
    -webkit-transform: translateX(-50%) rotate(-45deg);
            transform: translateX(-50%) rotate(-45deg);
  }
}

.l-header-navList {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin-right: 1.2rem;
}
@media only screen and (max-width:960px) {
  .l-header-navList {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    height: auto;
    padding-top: 1.6rem;
    margin-right: 0;
    margin-bottom: 0;
  }
}
.l-header-navList .l-header-navList__item:not(:last-child) {
  margin-right: clamp(1.2rem, 1.7699115044vw, 2.4rem);
}
@media only screen and (max-width:768px) {
  .l-header-navList .l-header-navList__item:not(:last-child) {
    margin-right: 0;
  }
}
.l-header-navList .l-header-navList__item:hover .l-header-megaMenu {
  opacity: 1;
  visibility: visible;
}
@media only screen and (max-width:960px) {
  .l-header-navList .l-header-navList__item:hover .l-header-megaMenu {
    opacity: 0;
    visibility: hidden;
  }
}
@media only screen and (max-width:960px) {
  .l-header-navList .l-header-navList__item {
    position: relative;
    border-bottom: 0.1rem solid #cccccc;
    padding-block: 4vw;
  }
}
@media only screen and (max-width:768px) {
  .l-header-navList.-general-page, .l-header-navList.-employee-page {
    margin-bottom: 8rem;
  }
}
.l-header-navList.-general-page .l-header-link#retail::before, .l-header-navList.-employee-page .l-header-link#retail::before {
  display: none;
}
.l-header-navList.-general-page .l-header-subMenu, .l-header-navList.-employee-page .l-header-subMenu {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem 8%;
  max-width: 81rem;
}
.l-header-navList.-general-page .l-header-subMenu .l-header-subMenu__item, .l-header-navList.-employee-page .l-header-subMenu .l-header-subMenu__item {
  width: 100%;
  max-width: 21rem;
  margin: 0 !important;
}
@media only screen and (max-width:768px) {
  .l-header-navList.-general-page .l-header-subMenu .l-header-subMenu__item, .l-header-navList.-employee-page .l-header-subMenu .l-header-subMenu__item {
    max-width: 100%;
  }
}
.l-header-navList.-general-page .l-header-subMenu .l-header-subMenu__item a, .l-header-navList.-employee-page .l-header-subMenu .l-header-subMenu__item a {
  border-bottom: 0.1rem solid #e60113;
}
@media only screen and (max-width:960px) {
  .l-header-navList.-general-page .l-header-subMenu .l-header-subMenu__item a, .l-header-navList.-employee-page .l-header-subMenu .l-header-subMenu__item a {
    border-bottom: none;
  }
}
.l-header-navList.-employee-page .l-header-navList__item:not(:last-child) {
  margin-right: clamp(0.4rem, 0.8849557522vw, 1.2rem);
}
.l-header-navList.-employee-page .l-header-link {
  font-size: 1.4rem;
}
@media screen and (max-width: 1366px) {
  .l-header-navList.-employee-page .l-header-link {
    font-size: 1.3rem;
  }
}

.l-header-link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: inherit;
      align-content: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  color: #000000;
  font-size: clamp(1.2rem, 1.1799410029vw, 1.6rem);
  font-weight: 500;
  line-height: 1.3;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
@media only screen and (max-width:960px) {
  .l-header-link {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    width: 100%;
    height: auto;
    color: #000000 !important;
    font-size: 1.8rem;
  }
}
@media only screen and (max-width:768px) {
  .l-header-link {
    font-size: 1.6rem;
  }
}
.l-header-link .l-header-link-megaMenu-text {
  color: #000000;
}
.l-header-link:hover {
  color: #e60113 !important;
}
.l-header-link:hover .l-header-link-megaMenu-text {
  color: #e60113 !important;
}
.l-header-link#corporation::before {
  width: 1.57rem;
  height: 1.8rem;
  margin-right: clamp(0.2rem, 0.5899705015vw, 0.8rem);
  content: "";
  background-image: url(../image/common/icon_corporate_black_1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: background-image 0.2s ease-out;
  transition: background-image 0.2s ease-out;
}
@media only screen and (max-width:960px) {
  .l-header-link#corporation::before {
    display: none;
  }
}
.l-header-link#retail::before {
  width: 1.67rem;
  height: 1.67rem;
  margin-right: clamp(0.2rem, 0.5899705015vw, 0.8rem);
  content: "";
  background-image: url(../image/common/icon_retail_black_1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: background-image 0.2s ease-out;
  transition: background-image 0.2s ease-out;
}
@media only screen and (max-width:960px) {
  .l-header-link#retail::before {
    display: none;
  }
}
@media only screen and (max-width:960px) {
  .l-header-link.megaMenu {
    margin-right: 7rem;
  }
}
.l-header-link.megaMenu::after {
  width: 1rem;
  height: 0.6rem;
  margin-left: clamp(0.2rem, 0.5899705015vw, 0.8rem);
  content: "";
  background-image: url(../image/common/icon-arrow_down_red.png);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: background-image 0.2s ease-out;
  transition: background-image 0.2s ease-out;
}
@media only screen and (max-width:960px) {
  .l-header-link.megaMenu::after {
    display: none;
  }
}
.l-header-link.megaMenu:hover::after {
  background-image: url(../image/common/icon-arrow_down_red.png);
}
.l-header-link.megaMenu .l-header-link-cross {
  position: absolute;
  top: 50%;
  right: 0;
  display: none;
  width: 7rem;
  height: 7rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width:960px) {
  .l-header-link.megaMenu .l-header-link-cross {
    display: block;
  }
}
.l-header-link.megaMenu .l-header-link-cross::before {
  position: absolute;
  top: 50%;
  right: 0.8rem;
  width: 1.3rem !important;
  height: 1px !important;
  margin: 0 !important;
  content: "";
  background-color: #e60113;
  background-image: none !important;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.l-header-link.megaMenu .l-header-link-cross::after {
  position: absolute;
  top: 50%;
  right: 1.4rem;
  width: 0.1rem !important;
  height: 1.3rem !important;
  margin: 0 !important;
  content: "";
  background-color: #e60113;
  background-image: none !important;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.l-header-link.megaMenu.is-active .l-header-link-cross::after {
  display: none;
}

@media only screen and (min-width:961px) {
  .l-header-megaMenu {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding-top: 3.7109375vw;
    padding-bottom: 6rem;
    margin-top: 7.4rem;
    background-color: #f9edea;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    opacity: 0;
    visibility: hidden;
  }
  .l-header-megaMenu.is-active {
    opacity: 1;
    visibility: visible;
  }
}
@media only screen and (max-width:960px) {
  .l-header-megaMenu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-height: 0;
    margin-top: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: collapse;
  }
  .megaMenu.is-active + .l-header-megaMenu {
    max-height: 500px;
    opacity: 1 !important;
    visibility: visible !important;
  }
}
@media screen and (min-width: 768px) {
  .l-header-megaMenu .l-header-megaMenu__title {
    margin-right: 5.859375vw;
  }
}
.l-header-megaMenu .l-header-megaMenu__title {
  min-width: 19rem;
}
@media only screen and (max-width:960px) {
  .l-header-megaMenu .l-header-megaMenu__title {
    display: none;
  }
}
.l-header-megaMenu .l-header-megaMenu__title p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 1.7699115044vw, 2.4rem);
}
.l-header-megaMenu .l-header-megaMenu__title span {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  position: relative;
  margin-left: 2.0833333333vw;
  font-size: 1.3rem;
}
.l-header-megaMenu .l-header-megaMenu__title span::before {
  position: absolute;
  top: 50%;
  left: -2.0833333333vw;
  width: 1.5625vw;
  height: 1px;
  content: "";
  background-color: #e60113;
}

.l-header-subMenu {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:960px) {
  .l-header-subMenu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    padding-left: 0.5em;
    padding-left: 1rem;
    margin-top: 1.8rem;
  }
}
.l-header-subMenu .l-header-subMenu__item {
  width: 13.0208333333vw;
}
@media only screen and (max-width:960px) {
  .l-header-subMenu .l-header-subMenu__item {
    width: 100%;
  }
}
.l-header-subMenu .l-header-subMenu__item:not(:last-of-type) {
  margin-right: 2.6041666667vw;
}
@media only screen and (max-width:960px) {
  .l-header-subMenu .l-header-subMenu__item:not(:last-of-type) {
    margin-right: 0;
  }
}
.l-header-subMenu .l-header-subMenu__item a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  position: relative;
  display: block;
  width: 100%;
  color: #000000;
}
.l-header-subMenu .l-header-subMenu__item a::after {
  position: absolute;
  right: 0;
  bottom: 0.3255208333vw;
  width: 1.3020833333vw;
  height: 1.3020833333vw;
  content: "";
  background-image: url(../image/common/icon-arrow_right_stroke.png);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: background-image 0.2s ease-out;
  transition: background-image 0.2s ease-out;
}
@media only screen and (max-width:960px) {
  .l-header-subMenu .l-header-subMenu__item a::after {
    display: none;
  }
}
.l-header-subMenu .l-header-subMenu__item a:hover {
  color: #e60113;
}
.l-header-subMenu .l-header-subMenu__item a:hover::after {
  background-image: url(../image/common/icon-arrow_right_fill.png);
}
.l-header-subMenu .l-header-subMenu__item a:hover img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.l-header-subMenu .l-header-subMenu__item a span {
  font-size: clamp(1.2rem, 1.1061946903vw, 1.5rem);
}
@media only screen and (max-width:960px) {
  .l-header-subMenu .l-header-subMenu__item a span {
    color: #7c7c7c;
    font-size: 1.4rem;
  }
}
.l-header-subMenu .l-header-subMenu__item a div {
  height: 6.8359375vw;
  margin-bottom: 0.390625vw;
  overflow: hidden;
}
@media only screen and (max-width:960px) {
  .l-header-subMenu .l-header-subMenu__item a div {
    display: none;
  }
}
.l-header-subMenu .l-header-subMenu__item a div img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  will-change: transform;
}

.l-header-eng {
  position: relative;
  -ms-flex-item-align: center;
      align-self: center;
  width: 7.2265625vw;
  height: 2.4088541667vw;
  min-width: 80px;
  min-height: 32px;
  text-align: center;
}
@media only screen and (max-width:960px) {
  .l-header-eng {
    position: relative;
    width: 100%;
    padding-bottom: 3.8rem;
    margin-top: 3.2rem;
    margin-bottom: 0;
    background-color: #ffffff;
    border: 1px solid #e60113;
  }
}
.l-header-eng a {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  color: #e60113;
  font-size: 1.2rem;
  line-height: 1.3;
  border: 1px solid #e60113;
}
@media only screen and (max-width:960px) {
  .l-header-eng a {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    font-size: 1.5rem;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.l-header-eng a span {
  position: relative;
  z-index: 2;
}
.l-header-eng a::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  background-color: #e60113;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.l-header-eng a:hover {
  color: #ffffff;
  border-color: #e60113;
}
.l-header-eng a:hover::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.l-header-line {
  position: relative;
  height: 5rem;
  margin-right: clamp(0.2rem, 1.1799410029vw, 1.6rem);
  margin-left: clamp(0.4rem, 1.9174041298vw, 2.6rem);
}
@media only screen and (max-width:960px) {
  .l-header-line {
    width: 100%;
    height: 0.1rem;
    margin: 1.2rem 0;
  }
}
.l-header-line::after {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 0.1rem;
  height: 100%;
  content: "";
  background-color: #d5d7dc;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (max-width:768px) {
  .l-header-line::after {
    top: 50%;
    left: 0;
    width: 100%;
    height: 0.1rem;
    -webkit-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
  }
}

.l-header-accident {
  height: 100%;
  margin-right: clamp(1.2rem, 1.6961651917vw, 2.3rem);
}
@media only screen and (max-width:960px) {
  .l-header-accident {
    position: relative;
    width: 100%;
    height: 6.2rem;
    margin-right: 0;
    margin-bottom: 1.5rem;
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #cccccc;
  }
}
.l-header-accident a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  font-size: clamp(1.2rem, 1.1061946903vw, 1.5rem);
  line-height: 1.4;
}
.l-header-accident a:hover {
  color: #e60113;
}
.l-header-accident a:hover::after {
  width: 100%;
}
.l-header-accident a:hover::before {
  background-size: 1.5rem;
}
@media only screen and (max-width:960px) {
  .l-header-accident a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
    padding: 2rem 0;
  }
}
.l-header-accident a::before {
  width: 2.8rem;
  height: 2.8rem;
  content: "";
  background-color: #e60113;
  background-image: url(../image/common/icon_phone_white_1.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.3rem;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  will-change: contents;
}
@media only screen and (max-width:960px) {
  .l-header-accident a::before {
    width: 2.6rem;
    height: 2.6rem;
    background-size: 1.2rem;
  }
}
.l-header-accident a::after {
  position: absolute;
  top: calc(100% + 1.2rem);
  left: 0;
  width: 0;
  height: 4px;
  content: "";
  background-color: #e60113;
  -webkit-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
@media only screen and (max-width:768px) {
  .l-header-accident a::after {
    display: none;
  }
}

.l-header-inquiry {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: clamp(11rem, 11.0619469027vw, 15rem);
  height: 100%;
  text-align: center;
}
@media only screen and (max-width:960px) {
  .l-header-inquiry {
    width: 100%;
    height: auto;
    padding-bottom: 6.2rem;
    text-align: center;
  }
}
.l-header-inquiry a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0.8rem;
  padding-top: 1.8rem;
  color: #ffffff;
  font-size: clamp(1.2rem, 1.2536873156vw, 1.7rem);
  background-color: #e60113;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
}
@media only screen and (max-width:960px) {
  .l-header-inquiry a {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0.8rem;
    font-size: 1.8rem;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.l-header-inquiry a:hover {
  color: rgb(242.25, 242.25, 242.25);
  background-color: rgb(204.6103896104, 0.8896103896, 16.9025974026);
}
.l-header-inquiry a:hover::after {
  background-color: rgb(204.6103896104, 0.8896103896, 16.9025974026);
}
.l-header-inquiry a::before {
  width: 2.2rem;
  height: 1.6rem;
  content: "";
  background-image: url(../image/common/icon-email.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width:960px) {
  .l-header-inquiry a::before {
    width: 2.2rem;
    height: 1.6rem;
    max-width: 2.2rem;
    max-height: 1.6rem;
  }
}
.l-header-inquiry a::after {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 0;
  display: inline-block;
  width: 100%;
  height: 0.8rem;
  content: "";
  background-color: #e60113;
  border-radius: 0 0 0 1rem;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
}
@media only screen and (max-width:768px) {
  .l-header-inquiry a::after {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .l-header-backToTop {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 99;
    display: block;
    width: 5.6rem;
    height: 5.6rem;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 0.9765625vw 0 0 0;
    -webkit-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
    opacity: 0;
    visibility: hidden;
  }
  .l-header-backToTop::before {
    position: absolute;
    top: calc(50% - 0.2604166667vw);
    left: calc(50% - 0.3255208333vw);
    width: 0.9459635417vw;
    height: 0.541015625vw;
    content: "";
    background-image: url(../image/common/icon-arrow_up.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .l-header-backToTop:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
}
@media only screen and (max-width:960px) {
  .l-header-backToTop {
    display: none;
  }
}

.-scroll-fade-in {
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}
.-scroll-fade-in.is-active {
  opacity: 1;
  visibility: visible;
}

.l-header-sns-line {
  position: fixed;
  top: 35%;
  right: 0;
}
@media only screen and (max-width:768px) {
  .l-header-sns-line {
    top: auto;
    bottom: 1.6rem;
  }
}

.l-header-home {
  position: fixed;
  right: 0;
  bottom: 5.8rem;
}
@media only screen and (max-width:768px) {
  .l-header-home {
    bottom: 0.8rem;
    display: none;
  }
}

.l-header_retail_botton {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 15rem;
  margin-right: 2rem;
  color: #e60113;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  border: 0.2rem solid #e60113;
  border-radius: 0 1rem 1rem 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width:768px) {
  .l-header_retail_botton {
    width: 12rem;
    font-size: 1.3rem;
  }
}
.l-header_retail_botton::before {
  position: absolute;
  top: calc(0.2rem * -1);
  right: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 4.2rem;
  height: calc(100% + 0.2rem * 2);
  max-height: calc(100% + 0.2rem * 2);
  content: "";
  background-color: #e60113;
  background-image: url(../image/common/icon_house_white_1.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.6rem 1.4rem;
  border: 0.2rem solid #e60113;
  border-radius: 1rem 0 0 1rem;
}
.l-header_retail_botton:hover {
  color: #000000;
  background-color: #ffffff;
}

.archivePost {
  padding-bottom: 14rem;
}
@media only screen and (max-width:768px) {
  .archivePost {
    padding-bottom: 10rem;
  }
}

.archivePostSidebar .titleType1 {
  margin-bottom: 4rem;
}
@media only screen and (max-width:768px) {
  .archivePostSidebar .titleType1 {
    margin-bottom: 1.2rem;
  }
}
.archivePostSidebar .titleType1 .titleType1__lText {
  font-size: 2.4rem;
  font-weight: 400;
}
@media only screen and (max-width:768px) {
  .archivePostSidebar .titleType1 .titleType1__lText {
    font-size: 2rem;
  }
}
.archivePostSidebar .titleType1 .titleType1__sText {
  font-size: 1.4rem;
  font-weight: 600;
}
@media only screen and (max-width:768px) {
  .archivePostSidebar .titleType1 .titleType1__sText {
    font-size: 1.2rem;
  }
}

.archivePostContent .archivePostContent__list {
  border-top: 0.1rem solid #cccccc;
  margin-bottom: 4.8rem;
}
.archivePostContent .archivePostContent__item {
  border-bottom: 0.1rem solid #cccccc;
}
.archivePostContent .archivePostContent__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2.4rem 3.2rem;
}
@media only screen and (max-width:768px) {
  .archivePostContent .archivePostContent__link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.archivePostContent .archivePostContent__link:hover .archivePostContent__title {
  color: #e60113;
}
.archivePostContent .archivePostContent__link:hover .archivePostContent__title::after {
  width: 100%;
}
.archivePostContent .archivePostContent__postDate {
  margin-right: 1rem;
  color: #999999;
  font-size: 1.3rem;
}
.archivePostContent .archivePostContent__option {
  min-width: 8rem;
}
@media only screen and (max-width:768px) {
  .archivePostContent .archivePostContent__option {
    min-width: 0;
  }
}
.archivePostContent .archivePostContent__title {
  position: relative;
  font-size: 1.5rem;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.archivePostContent .archivePostContent__title::after {
  position: absolute;
  top: 100%;
  left: 0;
  display: inline-block;
  width: 0%;
  height: 0.1rem;
  content: "";
  background-color: #e60113;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width:768px) {
  .archivePostContent .archivePostContent__title::after {
    display: none;
  }
}
@media only screen and (max-width:768px) {
  .archivePostContent .archivePostContent__title {
    font-size: 1.3rem;
    margin-top: 1.2rem;
    width: 100%;
  }
}

.interviewFaq .interviewFaq__question::before,
.interviewFaq .interviewFaq__answer::before {
  font-family: "Poppins", sans-serif;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 3.8rem;
  height: 3.8rem;
  min-width: 3.8rem;
  color: #ffffff;
  font-size: 2rem;
  border-radius: 50%;
}
.interviewFaq .interviewFaq__question {
  gap: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3rem;
  font-size: 2.8rem;
  font-weight: 600;
}
@media only screen and (max-width:768px) {
  .interviewFaq .interviewFaq__question {
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
}
.interviewFaq .interviewFaq__question::before {
  margin-top: 0.6rem;
  content: "Q";
  background-color: #e60113;
}
@media only screen and (max-width:768px) {
  .interviewFaq .interviewFaq__question::before {
    margin-top: -0.4rem;
  }
}
.interviewFaq .interviewFaq__answer {
  gap: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .interviewFaq .interviewFaq__answer {
    font-size: 1.3rem;
  }
}
.interviewFaq .interviewFaq__answer::before {
  content: "A";
  background-color: #666b71;
}
@media only screen and (max-width:768px) {
  .interviewFaq .interviewFaq__answer::before {
    margin-top: -0.6rem;
  }
}

.kasouMV {
  padding-top: 4.2rem;
  padding-bottom: 4.6rem;
  background-color: #f5f5f5;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.kasouMV .kasouMV__desc {
  display: inline-block;
  padding: 4rem 10% 4.2rem 5%;
  background-color: rgba(255, 255, 255, 0.8);
}
@media only screen and (max-width:768px) {
  .kasouMV .kasouMV__desc {
    padding: 2.4rem 4rem 2.6rem 2rem;
    -webkit-transform: translateX(-2rem);
            transform: translateX(-2rem);
  }
}
.kasouMV .titleType1 .titleType1__lText {
  font-size: 6rem;
}
@media only screen and (max-width:768px) {
  .kasouMV .titleType1 .titleType1__lText {
    margin-bottom: 1rem;
    font-size: 3rem;
  }
}
@media only screen and (max-width:768px) {
  .kasouMV .titleType1 .titleType1__sText {
    font-size: 1.5rem;
  }
}
.kasouMV.-white-filter {
  position: relative;
  z-index: 10;
}
.kasouMV.-white-filter::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: inline-block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(226, 228, 229, 0.35);
  mix-blend-mode: screen;
}
.kasouMV.-bg-white {
  background-color: #ffffff;
}
.kasouMV.-type2 {
  padding-top: 6rem;
  padding-bottom: 8rem;
  border-bottom: 0.3rem solid #e60113;
}
@media only screen and (max-width:768px) {
  .kasouMV.-type2 {
    padding-top: 5rem;
    padding-bottom: 6rem;
  }
}
.kasouMV.-type2 .kasouMV__desc {
  padding: 0;
}
@media only screen and (max-width:768px) {
  .kasouMV.-type2 .kasouMV__desc {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.kasouMV.-type2 .titleType1 .titleType1__lText {
  font-family: "Poppins", sans-serif;
  margin-bottom: 1.6rem;
  font-size: 2.7rem;
  font-weight: 500;
}
@media only screen and (max-width:768px) {
  .kasouMV.-type2 .titleType1 .titleType1__lText {
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
  }
}
.kasouMV.-type2 .titleType1 .titleType1__sText {
  font-size: 4.2rem;
  font-weight: 600;
}
@media only screen and (max-width:768px) {
  .kasouMV.-type2 .titleType1 .titleType1__sText {
    font-size: 2.6rem;
  }
}

.kasouMV__breadcrumb .breadcrumb__list {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page__btnBlock,
.bannerBlock {
  position: relative;
  padding: 8rem 0;
  background-color: #ffffff;
}
.page__btnBlock .page__btnList,
.bannerBlock .page__btnList {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}
.page__btnBlock .page__btnList .page__btn,
.bannerBlock .page__btnList .page__btn {
  width: 100%;
  height: 10rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width:768px) {
  .page__btnBlock .page__btnList .page__btn,
  .bannerBlock .page__btnList .page__btn {
    height: 6.1rem;
  }
}
.page__btnBlock .page__btnList .page__btn a,
.bannerBlock .page__btnList .page__btn a {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0 9rem;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .page__btnBlock .page__btnList .page__btn a,
  .bannerBlock .page__btnList .page__btn a {
    padding: 0 4.6rem 0 4.6rem !important;
    font-size: 1.5rem !important;
  }
}
.page__btnBlock .page__btnList .page__btn a::after,
.bannerBlock .page__btnList .page__btn a::after {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: absolute;
  top: 50%;
  right: 5rem;
  width: 4rem;
  height: 4rem;
  content: "";
  background: url(../image/common/icon-arrow_right_stroke_white.png) no-repeat center center/100% auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width:768px) {
  .page__btnBlock .page__btnList .page__btn a::after,
  .bannerBlock .page__btnList .page__btn a::after {
    right: 2rem;
    width: 2.6rem;
    height: 2.6rem;
  }
}
.page__btnBlock .page__btnList .page__btn a.btn01,
.bannerBlock .page__btnList .page__btn a.btn01 {
  background: #d02d26;
  border: 0.2rem solid #d02d26;
}
@media only screen and (max-width:768px) {
  .page__btnBlock .page__btnList .page__btn a.btn01,
  .bannerBlock .page__btnList .page__btn a.btn01 {
    padding: 0 4.6rem 0 2rem !important;
  }
}
.page__btnBlock .page__btnList .page__btn a.btn02,
.bannerBlock .page__btnList .page__btn a.btn02 {
  background: #666b71;
}
.page__btnBlock .page__btnList .page__btn a.btn03,
.bannerBlock .page__btnList .page__btn a.btn03 {
  padding: 0;
  font-size: 2.3rem;
  background: #e88301;
}
.page__btnBlock .page__btnList .page__btn a.btn03 .page__btnThumb,
.bannerBlock .page__btnList .page__btn a.btn03 .page__btnThumb {
  width: 35.5%;
  height: 100%;
}
.page__btnBlock .page__btnList .page__btn a.btn03 .page__btnThumb img,
.bannerBlock .page__btnList .page__btn a.btn03 .page__btnThumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page__btnBlock .page__btnList .page__btn a.btn03 .page__btnCnt,
.bannerBlock .page__btnList .page__btn a.btn03 .page__btnCnt {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 64.5%;
  padding: 0 9rem 0 3.5rem;
}
@media only screen and (max-width:768px) {
  .page__btnBlock .page__btnList .page__btn a.btn03 .page__btnCnt,
  .bannerBlock .page__btnList .page__btn a.btn03 .page__btnCnt {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    padding: 0;
    text-align: center;
  }
}
.page__btnBlock .page__btnList .page__btn a.btn03 .page__btnCnt .en,
.bannerBlock .page__btnList .page__btn a.btn03 .page__btnCnt .en {
  position: relative;
  padding-left: 5.4rem;
  margin-top: 0.6rem;
  font-size: 1.4rem;
}
.page__btnBlock .page__btnList .page__btn a.btn03 .page__btnCnt .en::after,
.bannerBlock .page__btnList .page__btn a.btn03 .page__btnCnt .en::after {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  width: 2.4rem;
  height: 0.1rem;
  content: "";
  background: #ffffff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (min-width:769px) {
  .page__btnBlock .page__btnList .page__btn a:hover,
  .bannerBlock .page__btnList .page__btn a:hover {
    padding: 0 10rem;
  }
  .page__btnBlock .page__btnList .page__btn a:hover::after,
  .bannerBlock .page__btnList .page__btn a:hover::after {
    right: 6rem;
    background: url(../image/common/icon-arrow_right_fill_white02.png) no-repeat center center/100% auto;
  }
  .page__btnBlock .page__btnList .page__btn a:hover.btn01,
  .bannerBlock .page__btnList .page__btn a:hover.btn01 {
    color: #d02d26;
    background: #ffffff;
  }
  .page__btnBlock .page__btnList .page__btn a:hover.btn01::after,
  .bannerBlock .page__btnList .page__btn a:hover.btn01::after {
    background: url(../image/common/icon-arrow_right_fill_red.png) no-repeat center center/100% auto;
  }
  .page__btnBlock .page__btnList .page__btn a:hover.btn02,
  .bannerBlock .page__btnList .page__btn a:hover.btn02 {
    background: #444444;
  }
  .page__btnBlock .page__btnList .page__btn a:hover.btn03,
  .bannerBlock .page__btnList .page__btn a:hover.btn03 {
    padding: 0;
    background: #e86200;
  }
  .page__btnBlock .page__btnList .page__btn a:hover.btn03 .page__btnCnt,
  .bannerBlock .page__btnList .page__btn a:hover.btn03 .page__btnCnt {
    padding: 0 10rem 0 3.5rem;
  }
}
.page__btnBlock .page__btnText,
.bannerBlock .page__btnText {
  margin-bottom: 3.5rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .page__btnBlock .page__btnText,
  .bannerBlock .page__btnText {
    font-size: 1.5rem;
  }
}
.page__btnBlock .page__btnText strong,
.bannerBlock .page__btnText strong {
  display: block;
}

.modalWrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  display: none;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.modalWrap::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(51, 51, 51, 0.8);
}
.modalWrap .modal__scroll {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100vw - 4.8rem);
  height: auto;
  max-width: 680px;
  max-height: calc(100vh - 4.8rem);
  overflow-x: hidden;
  overflow-y: scroll;
  background-color: #ffffff;
  border-radius: 1.6rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.modalWrap .modal__contentWrap .modal__closeWrap {
  border-bottom: 1px solid #000000;
}
.modalWrap .modal__contentWrap .modal__closeWrap .modal__close {
  display: inline-block;
  width: 4rem;
  height: 4rem;
  font-size: 4rem;
  line-height: 4rem;
  text-align: center;
  background-color: #ffff00;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.modalWrap .modal__contentWrap .modal__closeWrap .modal__close:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  opacity: 0.7;
}
.modalWrap .modal__contentWrap .modal__content {
  padding: 1.6rem;
}
.modalWrap .modal__contentWrap .pageThanks__content {
  padding-bottom: 8rem;
}

.modal__trigger {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.modal__trigger:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  opacity: 0.7;
}

.entryButton {
  width: 100%;
  max-width: 54rem;
  margin-top: 1.6rem;
}
@media only screen and (max-width:768px) {
  .entryButton {
    width: 100%;
  }
}
.entryButton .p-index-recruitment-entry .p-index-recruitment-entry__mynavi {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background-color: #e60113;
  border: 2px solid #e60113;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  padding-block: min(3rem, 30px);
}
@media only screen and (max-width:768px) {
  .entryButton .p-index-recruitment-entry .p-index-recruitment-entry__mynavi {
    padding: 2.4rem;
    text-align: left;
    padding-block: 2rem;
  }
}
.entryButton .p-index-recruitment-entry .p-index-recruitment-entry__mynavi::before {
  position: absolute;
  top: 50%;
  right: 2.7rem;
  width: 4rem;
  height: 4rem;
  content: "";
  background-image: url(../image/common/icon-arrow_right_stroke_white.png);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media only screen and (max-width:768px) {
  .entryButton .p-index-recruitment-entry .p-index-recruitment-entry__mynavi::before {
    right: 1rem;
  }
}
.entryButton .p-index-recruitment-entry .p-index-recruitment-entry__mynavi .p-index-recruitment-jaText {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  position: relative;
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 600;
}
@media only screen and (max-width:768px) {
  .entryButton .p-index-recruitment-entry .p-index-recruitment-entry__mynavi .p-index-recruitment-jaText {
    font-size: 1.6rem;
  }
}
.entryButton .p-index-recruitment-entry .p-index-recruitment-entry__mynavi .p-index-recruitment-jaText + .p-index-recruitment-enText {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0;
}
.entryButton .p-index-recruitment-entry .p-index-recruitment-entry__mynavi .p-index-recruitment-jaText + .p-index-recruitment-enText::before {
  width: 2.8rem;
  height: 0.1rem;
  margin: 0 1.3rem;
  content: "";
  background-color: #ffffff;
}
@media only screen and (max-width:768px) {
  .entryButton .p-index-recruitment-entry .p-index-recruitment-entry__mynavi .p-index-recruitment-jaText + .p-index-recruitment-enText::before {
    width: 2.8rem;
  }
}
.entryButton .p-index-recruitment-entry .p-index-recruitment-entry__mynavi .p-index-recruitment-enText {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  padding-top: 0.4rem;
  color: #ffffff;
  font-size: 1.8rem;
  vertical-align: 0.1em;
}
@media only screen and (max-width:768px) {
  .entryButton .p-index-recruitment-entry .p-index-recruitment-entry__mynavi .p-index-recruitment-enText {
    font-size: 1.4rem;
  }
}
.entryButton .p-index-recruitment-entry .p-index-recruitment-entry__mynavi:hover {
  background-color: #ffffff;
}
.entryButton .p-index-recruitment-entry .p-index-recruitment-entry__mynavi:hover::before {
  background-image: url(../image/common/icon-arrow_right_fill.png);
  -webkit-transform: translate(10%, -50%);
          transform: translate(10%, -50%);
}
.entryButton .p-index-recruitment-entry .p-index-recruitment-entry__mynavi:hover span {
  color: #e60113;
}
.entryButton .p-index-recruitment-entry .p-index-recruitment-entry__mynavi:hover span.p-index-recruitment-enText::before {
  background-color: #e60113;
}
.entryButton .p-index-recruitment-entry .p-index-recruitment-entry__mynavi:hover div {
  background-color: #00aef1;
}
.entryButton .p-index-recruitment-entry .p-index-recruitment-entry__mynavi:hover div::after {
  border-color: #00aef1 transparent transparent transparent;
}
.entryButton .p-index-recruitment-entry .p-index-recruitment-entry__mynavi:hover div div {
  background-image: url(../image/common/icon-mynavi_white.png);
}
.entryButton .p-index-recruitment-mynaviIcon {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 1rem 3rem;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 16px -6px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 16px -6px rgba(0, 0, 0, 0.6);
  border-radius: 5rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (max-width:768px) {
  .entryButton .p-index-recruitment-mynaviIcon {
    width: 12rem;
    padding: 0.7rem 2.4rem;
  }
}
.entryButton .p-index-recruitment-mynaviIcon::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-color: #ffffff transparent transparent transparent;
  border-style: solid;
  border-width: 1rem 0.6rem 0.6rem;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}
.entryButton .p-index-recruitment-mynaviIcon div {
  width: 10rem;
  height: 1.7rem;
  background-image: url(../image/common/icon-mynavi.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width:768px) {
  .entryButton .p-index-recruitment-mynaviIcon div {
    width: 7rem;
    height: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  .l-footer-banner__banner {
    width: 74.6666666667vw;
    max-width: 280px;
    margin-bottom: 5.3333333333vw;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .l-footer-banner__banner {
    width: 18.2291666667vw;
    max-width: 280px;
    margin-bottom: 1.3020833333vw;
  }
}
.l-footer-banner__banner a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .l-footer-banner__banner a:hover img {
    -webkit-filter: brightness(62%);
            filter: brightness(62%);
  }
  .l-footer-banner__banner a:hover::after {
    background-image: url(../image/common/icon-external_red.png);
  }
}
.l-footer-banner__banner a {
  position: relative;
  display: block;
  color: #000000;
  -webkit-transition: -webkit-filter 0.2s ease-out;
  transition: -webkit-filter 0.2s ease-out;
  transition: filter 0.2s ease-out;
  transition: filter 0.2s ease-out, -webkit-filter 0.2s ease-out;
}
.l-footer-banner__banner a::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  content: "";
  background-color: #000000;
  -webkit-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
@media screen and (max-width: 767px) {
  .l-footer-banner__banner a::after {
    width: min(6.1333333333vw, 23px);
    height: min(6.1333333333vw, 23px);
  }
}
@media screen and (min-width: 768px) {
  .l-footer-banner__banner a::after {
    width: min(1.4973958333vw, 23px);
    height: min(1.4973958333vw, 23px);
    -webkit-transition: background-image 0.2s ease-out;
    transition: background-image 0.2s ease-out;
  }
}
.l-footer-banner__banner a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  background-image: url(../image/common/icon-external.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .l-footer-banner__banner img {
    margin-bottom: 1.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .l-footer-banner__banner img {
    margin-bottom: 0.3255208333vw;
    -webkit-transition: -webkit-filter 0.2s ease-out;
    transition: -webkit-filter 0.2s ease-out;
    transition: filter 0.2s ease-out;
    transition: filter 0.2s ease-out, -webkit-filter 0.2s ease-out;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-banner__banner span {
    font-size: clamp(10px, 3.7333333333vw, 14px);
  }
}
@media screen and (min-width: 768px) {
  .l-footer-banner__banner span {
    font-size: clamp(10px, 0.9114583333vw, 14px);
  }
}
.l-footer-banner__banner span {
  position: relative;
}
.l-footer-banner__banner span::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 0;
  height: 0.1rem;
  content: "";
  background-color: #000000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-footer-banner__banner:hover span::after {
  width: 100%;
}

.footerBanner2 {
  max-width: 76rem;
  margin: 0 auto 2.8rem;
  overflow: hidden;
  border: 0.1rem solid #00b900;
  border-radius: 1rem;
}
@media only screen and (max-width:768px) {
  .footerBanner2 {
    padding: 0 2rem;
    border: none;
    border-radius: 0;
  }
}
.footerBanner2 .footerBanner2__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:768px) {
  .footerBanner2 .footerBanner2__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.footerBanner2 .footerBanner2__desc {
  padding: 1rem 1.2rem;
  background-color: #ffffff;
}
@media only screen and (max-width:768px) {
  .footerBanner2 .footerBanner2__desc {
    padding: 0;
    margin-top: 2rem;
    background-color: transparent;
  }
}
.footerBanner2 .footerBanner2__descText {
  font-size: 1.2rem;
}
@media only screen and (max-width:768px) {
  .footerBanner2 .footerBanner2__descText {
    margin-bottom: 1rem;
  }
}
.footerBanner2 .footerBanner2__descCaption {
  font-size: 1rem;
}
.footerBanner2 .footerBanner2__figure {
  max-width: 31rem;
  padding: 1rem 1.3rem 1rem 2.2rem;
  background-color: #00b900;
}
@media only screen and (max-width:768px) {
  .footerBanner2 .footerBanner2__figure {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    padding: 2rem;
    border-radius: 1rem;
  }
  .footerBanner2 .footerBanner2__figure::before, .footerBanner2 .footerBanner2__figure::after {
    display: inline-block;
    content: "";
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .footerBanner2 .footerBanner2__figure::before {
    width: 4.2rem;
    height: 4.2rem;
    background-image: url(../image/common/icon_line_white_1.svg);
  }
  .footerBanner2 .footerBanner2__figure::after {
    width: 2rem;
    height: 2rem;
    background-image: url(../image/common/icon-arrow_right_stroke_white.png);
  }
}
.footerBanner2 .footerBanner2__figureTitle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  font-size: 1.9rem;
  font-weight: 600;
}
.footerBanner2 .footerBanner2__figureTitle::after {
  display: inline-block;
  width: 7.6rem;
  height: 7.6rem;
  content: "";
  background-image: url(../image/common/qr_line_black_1.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media only screen and (max-width:768px) {
  .footerBanner2 .footerBanner2__figureTitle::after {
    display: none;
  }
}
@media only screen and (max-width:768px) {
  .footerBanner2 .footerBanner2__figureTitle {
    display: block;
    font-size: 1.5rem;
  }
}

.newsTypeLabel {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.1rem;
  font-weight: 500;
}
.newsTypeLabel.-pdf {
  color: #e60113;
}
.newsTypeLabel.-external_link {
  color: #696969;
}

.page404 {
  padding: 8rem 0;
}
.page404 .page404__title {
  margin-bottom: 4rem;
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .page404 .page404__title {
    font-size: 2.4rem;
  }
}
.page404 .page404__text {
  margin-bottom: 2.4rem;
  font-size: 1.6rem;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .page404 .page404__text {
    font-size: 1.4rem;
  }
}
.page404 .page404__link {
  display: block;
  font-size: 1.6rem;
  text-align: center;
  text-decoration: underline;
}
@media only screen and (max-width:768px) {
  .page404 .page404__link {
    font-size: 1.4rem;
  }
}

.pageCareer {
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageCareer {
    font-size: 1.3rem;
    font-weight: 500;
  }
}
.pageCareer .mb_3 {
  margin-bottom: 3rem !important;
}
.pageCareer .mb_5 {
  margin-bottom: 5rem !important;
}
.pageCareer .mb_8 {
  margin-bottom: 8rem !important;
}
.pageCareer .fw_bold {
  font-weight: 700;
}
@media only screen and (max-width:768px) {
  .pageCareer page__title.-title02 {
    margin-bottom: 0 0 2.8rem;
  }
}
.pageCareer .career__title {
  margin-bottom: 8rem;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.45;
  background-color: #fcecea;
  padding: 3rem 2.5rem;
}
@media only screen and (max-width:768px) {
  .pageCareer .career__title {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    padding: 2rem;
    margin-bottom: 5.1rem;
  }
}
.pageCareer .career__tbl {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #cccccc;
  margin-bottom: 18rem;
}
@media only screen and (max-width:768px) {
  .pageCareer .career__tbl {
    margin-bottom: 10rem;
  }
}
.pageCareer .career__tbl tr th {
  background-color: #f5f5f5;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  padding: 3.5rem 1rem 3.5rem 11.2rem;
  text-align: left;
  border: 1px solid #cccccc;
  width: 32rem;
}
@media only screen and (max-width:768px) {
  .pageCareer .career__tbl tr th {
    font-size: 1.4rem;
    line-height: 1.428;
    padding: 1.5rem 1rem;
    width: 8.6rem;
  }
}
.pageCareer .career__tbl tr td {
  line-height: 2;
  border: 1px solid #cccccc;
  padding: 2.8rem 4.8rem;
  vertical-align: baseline;
  width: calc(100% - 32rem);
}
@media only screen and (max-width:768px) {
  .pageCareer .career__tbl tr td {
    padding: 1.5rem 1rem;
    line-height: 1.4615;
    width: calc(100% - 8.6rem);
  }
}
.pageCareer .career__tbl tr td .tbl__title {
  font-weight: 700;
}

.pageColumnpost {
  padding-bottom: 18rem;
}
@media only screen and (max-width:768px) {
  .pageColumnpost {
    padding-bottom: 10rem;
  }
}
.pageColumnpost .pageColumnpostHead {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  border-bottom: 0.1rem solid #cccccc;
}
@media only screen and (max-width:768px) {
  .pageColumnpost .pageColumnpostHead {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
  }
}
.pageColumnpost .pageColumnpostHead__tag {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 9rem;
  height: 2.4rem;
  margin-bottom: 1.6rem;
  color: #e60113;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  border: 0.1rem solid #e60113;
}
@media only screen and (max-width:768px) {
  .pageColumnpost .pageColumnpostHead__tag {
    margin-bottom: 1rem;
  }
}
.pageColumnpost .pageColumnpostHead__title {
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pageColumnpost .pageColumnpostHead__title {
    font-size: 2.2rem;
    text-align: left;
  }
}
.pageColumnpost .pageColumnpostHead__date {
  color: #999999;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pageColumnpost .pageColumnpostHead__date {
    -ms-flex-item-align: end;
        align-self: flex-end;
    text-align: right;
  }
}
.pageColumnpost .pageColumnpostContent {
  padding-bottom: 5rem;
  margin-bottom: 5rem;
  border-bottom: 0.1rem solid #cccccc;
}
.pageColumnpost .pageColumnpostContent a,
.pageColumnpost .pageColumnpostContent p,
.pageColumnpost .pageColumnpostContent li,
.pageColumnpost .pageColumnpostContent dd,
.pageColumnpost .pageColumnpostContent td,
.pageColumnpost .pageColumnpostContent span,
.pageColumnpost .pageColumnpostContent b,
.pageColumnpost .pageColumnpostContent pre,
.pageColumnpost .pageColumnpostContent strong,
.pageColumnpost .pageColumnpostContent em {
  font-size: 1.6rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageColumnpost .pageColumnpostContent a,
  .pageColumnpost .pageColumnpostContent p,
  .pageColumnpost .pageColumnpostContent li,
  .pageColumnpost .pageColumnpostContent dd,
  .pageColumnpost .pageColumnpostContent td,
  .pageColumnpost .pageColumnpostContent span,
  .pageColumnpost .pageColumnpostContent b,
  .pageColumnpost .pageColumnpostContent pre,
  .pageColumnpost .pageColumnpostContent strong,
  .pageColumnpost .pageColumnpostContent em {
    font-size: 1.3rem;
  }
}
.pageColumnpost .pageColumnpostContent h1 {
  margin: 0;
  margin-bottom: 1rem;
  font-size: 2.8rem;
  font-weight: 600;
}
@mediaonly screen and (max-width:768px) {
  .pageColumnpost .pageColumnpostContent h1 {
    font-size: 2rem;
  }
}
.pageColumnpost .pageColumnpostContent h2 {
  margin: 0;
  margin-bottom: 1rem;
  font-size: 2.6rem;
  font-weight: 600;
}
@mediaonly screen and (max-width:768px) {
  .pageColumnpost .pageColumnpostContent h2 {
    font-size: 1.9rem;
  }
}
.pageColumnpost .pageColumnpostContent h3 {
  margin: 0;
  margin-bottom: 1rem;
  font-size: 2.4rem;
  font-weight: 500;
}
@mediaonly screen and (max-width:768px) {
  .pageColumnpost .pageColumnpostContent h3 {
    font-size: 1.8rem;
  }
}
.pageColumnpost .pageColumnpostContent h4 {
  margin: 0;
  margin-bottom: 1rem;
  font-size: 2.2rem;
  font-weight: 500;
}
@mediaonly screen and (max-width:768px) {
  .pageColumnpost .pageColumnpostContent h4 {
    font-size: 1.7rem;
  }
}
.pageColumnpost .pageColumnpostContent h5 {
  margin: 0;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 500;
}
@mediaonly screen and (max-width:768px) {
  .pageColumnpost .pageColumnpostContent h5 {
    font-size: 1.6rem;
  }
}
.pageColumnpost .pageColumnpostContent h6 {
  margin: 0;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 500;
}
@mediaonly screen and (max-width:768px) {
  .pageColumnpost .pageColumnpostContent h6 {
    font-size: 1.5rem;
  }
}
.pageColumnpost .pageColumnpostContent img {
  width: 83rem;
  max-width: 100%;
  margin: 0 auto;
}
.pageColumnpost .pageColumnpostContent video {
  width: 100%;
  max-width: 100%;
  margin: 2.4rem 0;
}
.pageColumnpost .pageColumnpostContentAnnotation {
  margin-top: 2.4rem;
}
.pageColumnpost .pageColumnpostContentAnnotation p {
  color: #e60113;
}
.pageColumnpost .pageColumnpostWriter {
  gap: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem 4.6rem;
  background-color: #f5f5f5;
}
@media only screen and (max-width:768px) {
  .pageColumnpost .pageColumnpostWriter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.pageColumnpost .pageColumnpostWriter__label {
  min-width: 15rem;
  font-size: 1.7rem;
  font-weight: 500;
}
.pageColumnpost .pageColumnpostWriter__name {
  font-size: 1.5rem;
}
.pageColumnpost .pageColumnpostButton {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pageColumn .titleType1 {
  margin-bottom: 4rem;
}
.pageColumn__postList {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pageColumnPosts__item {
  width: 32%;
  margin-bottom: 6.5rem;
}
.pageColumnPosts__item:not(:nth-child(3n)) {
  margin-right: 2%;
}
@media only screen and (max-width:768px) {
  .pageColumnPosts__item:not(:nth-child(3n)) {
    margin-right: 0;
  }
}
@media only screen and (max-width:768px) {
  .pageColumnPosts__item {
    width: 100%;
    margin-bottom: 3.2rem;
  }
  .pageColumnPosts__item:last-child {
    margin-bottom: 4rem;
  }
}

.pageColumnPosts__figure {
  position: relative;
  width: 100%;
}
.pageColumnPosts__figure::before {
  display: block;
  padding-top: 53%;
  content: "";
}
.pageColumnPosts__figure > * {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.pageColumnPosts__figure {
  display: block;
  margin-bottom: 1.2rem;
  background-color: lightgray;
}

.pageColumnPosts__link {
  position: relative;
  z-index: 10;
  cursor: pointer;
}
.pageColumnPosts__link::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  display: inline-block;
  width: 100%;
  height: 100%;
  content: "";
}
.pageColumnPosts__link * {
  pointer-events: none;
}

.pageColumnPosts__descFlex {
  gap: 1.6rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
}

.pageColumnPosts__date {
  color: #999999;
  font-size: 1.3rem;
  font-weight: 500;
}

.pageColumnPosts__category {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 8.7rem;
  height: 2.4rem;
  color: #e60113;
  font-size: 1.3rem;
  background-color: #ffffff;
  border: 0.1rem solid #e60113;
}

.pageColumnPosts__content {
  font-size: 1.8rem;
  font-weight: 500;
}
@media only screen and (max-width:768px) {
  .pageColumnPosts__content {
    font-size: 1.5rem;
  }
}

.pageColumn__noPost {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.pageColumn__noPostText {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}

.pageColumnCategories {
  margin-bottom: 10rem;
}
@media only screen and (max-width:768px) {
  .pageColumnCategories {
    margin-bottom: 5rem;
  }
}
.pageColumnCategories .pageColumnCategories__flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:768px) {
  .pageColumnCategories .pageColumnCategories__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.pageColumnCategories .pageColumnCategories__desc {
  width: 31rem;
  min-width: 31rem;
}
.pageColumnCategories .pageColumnCategories__list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 80rem;
}
@media only screen and (max-width:768px) {
  .pageColumnCategories .pageColumnCategories__list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 1.3rem;
    overflow-x: scroll;
  }
}
.pageColumnCategories .pageColumnCategories__item {
  position: relative;
  margin-bottom: 1.3rem;
  margin-left: 1.3rem;
}
@media only screen and (max-width:768px) {
  .pageColumnCategories .pageColumnCategories__item {
    margin-bottom: 0;
    margin-left: 0;
  }
}
.pageColumnCategories .pageColumnCategories__label {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 12rem;
  height: 4.6rem;
  font-size: 1.6rem;
  font-weight: 500;
  background-color: #f5f5f5;
  border-radius: 0.6rem;
  cursor: pointer;
}
@media only screen and (max-width:768px) {
  .pageColumnCategories .pageColumnCategories__label {
    width: 9rem;
    height: 4.6rem;
    font-size: 1.5rem;
  }
}
.pageColumnCategories .pageColumnCategories__checkbox {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.pageColumnCategories .pageColumnCategories__checkbox:checked + .pageColumnCategories__label {
  color: #ffffff;
  background-color: #e60113;
}

.pageColumnPosts {
  margin-bottom: 10rem;
}

.pageColumnVideos {
  margin-bottom: 15rem;
}

.pageInfor {
  overflow: hidden;
}
.pageInfor .page__kv {
  background: url(../image//infor/kv_bg.jpg) no-repeat center center/cover;
}
@media only screen and (max-width:768px) {
  .pageInfor .page__kv {
    background: url(../image//infor/kv_bg_sp.jpg) no-repeat center center/cover;
  }
}
.pageInfor .pageInfor__contain .pageInfor__title {
  margin: 0 0 2.8rem;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4;
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__contain .pageInfor__title {
    margin: 0 0 1.1rem;
    font-size: 2.2rem;
    line-height: 1.5;
  }
}
.pageInfor .pageInfor__secSide {
  height: 100%;
}
.pageInfor .pageInfor__secSide .pageInfor__menu {
  position: sticky;
  position: -webkit-sticky;
  top: 8.8rem;
  z-index: 20;
  padding-bottom: 18.8rem;
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__secSide .pageInfor__menu {
    padding-bottom: 4rem;
  }
}
.pageInfor .pageInfor__secSide .pageInfor__item {
  margin: 0 0 2.7rem;
}
.pageInfor .pageInfor__secSide .pageInfor__link {
  position: relative;
  padding-left: 1.9rem;
  color: #939393;
  font-size: 1.6rem;
  font-weight: 500;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.pageInfor .pageInfor__secSide .pageInfor__link::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  content: "";
  background: #939393;
  border-radius: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.pageInfor .pageInfor__secSide .pageInfor__link:hover, .pageInfor .pageInfor__secSide .pageInfor__link.-active {
  color: #000000;
}
.pageInfor .pageInfor__secSide .pageInfor__link:hover::before, .pageInfor .pageInfor__secSide .pageInfor__link.-active::before {
  background: #e60113;
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__secMain {
  width: 100%;
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block {
  margin: 0 0 18rem;
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block {
    margin: 0 0 9.6rem;
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block01 .page__title {
  margin: 0 0 5.6rem;
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block01 .page__title {
    margin: 0 0 3rem;
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block01 .pageInfor__image {
  max-width: 74rem;
  margin: 0 0 4.6rem auto;
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block01 .pageInfor__image {
    width: 105.97%;
    margin: 0 -2rem 3rem 0;
  }
}
@media only screen and (max-width:374px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block01 .pageInfor__image {
    width: 106.97%;
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block01 .pageInfor__contain .pageInfor__text {
  margin: 0 0 4.5rem;
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block01 .pageInfor__contain .pageInfor__text {
    font-size: 1.3rem;
    font-weight: 500;
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block01 .pageInfor__contain .pageInfor__note {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #222222;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.2;
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block01 .pageInfor__contain .pageInfor__note {
    font-size: 1.2rem;
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block01 .pageInfor__contain .pageInfor__note .pageInfor__large {
  margin-left: 1.4rem;
  font-size: 2.4rem;
  line-height: 1.8;
  letter-spacing: 0.04rem;
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block01 .pageInfor__contain .pageInfor__note .pageInfor__large {
    margin-left: 1.5rem;
    font-size: 1.6rem;
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block02 .page__title {
  margin: 0 0 3.9rem;
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block02 .page__title {
    margin: 0 0 2.9rem;
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block02 .page__title.-mb1 {
  margin-bottom: 2rem;
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block02 .page__title.-no-circle {
  padding-left: 0;
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block02 .page__title.-no-circle::before {
  display: none;
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block02 .pageInfor__frame {
  font-family: "Noto Serif JP", serif;
  padding: 1.6rem 4.8rem;
  font-size: 1.9rem;
  line-height: 1.8;
  text-align: center;
  background: #f5f5f5;
  border-left: 0.6rem solid #e60113;
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block02 .pageInfor__frame {
    padding: 1.9rem 2rem 2.5rem;
    margin-right: -2rem;
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: left;
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block02 .pageInfor__frame.-ta {
  text-align: left;
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block02 .pageInfor__frame.-mb1 {
  margin-bottom: 10rem;
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block02 .pageInfor__frame.-mb1 {
    margin-bottom: 5rem;
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block02 .pageInfor__frame.-mb2 {
  margin-bottom: 5rem;
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block02 .pageInfor__frame b {
  font-family: "Noto Sans JP", sans-serif;
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block02 .pageInfor__frame .-pl1 {
  display: block;
  padding-left: 1em;
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block03 .page__title {
  margin: 0 0 7.2rem;
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block03 .pageInfor__list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1210px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block03 .pageInfor__list {
    gap: 4.8rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 58.4rem;
    margin: 0 auto;
  }
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block03 .pageInfor__list {
    gap: 0.9rem;
    width: 33.5rem;
    margin: 0 auto;
  }
}
@media only screen and (max-width:374px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block03 .pageInfor__list {
    width: 28rem;
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block03 .pageInfor__list .pageInfor__item {
  font-family: "Noto Serif JP", serif;
  width: 26.8rem;
  height: 26.8rem;
  padding: 1.4rem 0 0;
  text-align: center;
  border: 3.5rem solid #e60113;
  border-radius: 100%;
}
@media (max-width: 1210px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block03 .pageInfor__list .pageInfor__item:first-child {
    margin: 0 5rem;
  }
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block03 .pageInfor__list .pageInfor__item {
    width: 16.3rem;
    height: 16.3rem;
    padding: 0.8rem 0 0;
    border: 1.5rem solid #e60113;
  }
  .pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block03 .pageInfor__list .pageInfor__item:first-child {
    margin: 0 5rem -2.5rem;
  }
}
@media only screen and (max-width:374px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block03 .pageInfor__list .pageInfor__item {
    width: 13.5rem;
    height: 13.5rem;
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block03 .pageInfor__list .pageInfor__item .pageInfor__title {
  position: relative;
  padding: 0 0 0.4rem;
  margin: 0 0 1.4rem;
  color: #e60113;
  font-size: 3.7rem;
  font-weight: 600;
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block03 .pageInfor__list .pageInfor__item .pageInfor__title {
    padding: 0 0 0.8rem;
    font-size: 2rem;
  }
}
@media only screen and (max-width:374px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block03 .pageInfor__list .pageInfor__item .pageInfor__title {
    padding: 0 0 0.4rem;
    margin: 0 0 0.7rem;
    line-height: 1.2;
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block03 .pageInfor__list .pageInfor__item .pageInfor__title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2rem;
  height: 0.1rem;
  content: "";
  background: #e60113;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block03 .pageInfor__list .pageInfor__item .pageInfor__text {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block03 .pageInfor__list .pageInfor__item .pageInfor__text {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width:374px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block03 .pageInfor__list .pageInfor__item .pageInfor__text {
    font-size: 1.2rem;
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block04 .page__title {
  margin: 0 0 3.7rem;
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block04 .page__title {
    margin: 0 0 2.9rem;
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block04 .pageInfor__table .pageInfor__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 0.1rem solid #cccccc;
}
@media only screen and (min-width:769px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block04 .pageInfor__table .pageInfor__row:first-child {
    border-top: 0.1rem solid #cccccc;
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block04 .pageInfor__table .pageInfor__row .pageInfor__colLeft {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 23.6rem;
  padding: 3.5rem 1rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  background: #f5f5f5;
}
@media (max-width: 1000px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block04 .pageInfor__table .pageInfor__row .pageInfor__colLeft {
    width: 14rem;
  }
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block04 .pageInfor__table .pageInfor__row .pageInfor__colLeft {
    width: 10.4rem;
    padding: 1.4rem 0.5rem;
    font-size: 1.4rem;
    font-weight: 500;
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block04 .pageInfor__table .pageInfor__row .pageInfor__colRight {
  width: calc(100% - 23.6rem);
  padding: 3.2rem 1rem 3.2rem 3.2rem;
  font-size: 1.5rem;
  line-height: 2;
}
@media (max-width: 1000px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block04 .pageInfor__table .pageInfor__row .pageInfor__colRight {
    width: calc(100% - 14rem);
  }
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block04 .pageInfor__table .pageInfor__row .pageInfor__colRight {
    width: calc(100% - 10.4rem);
    padding: 1.2rem 1rem 1.1rem;
    font-size: 1.3rem;
    font-weight: 500;
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block04 .pageInfor__table .pageInfor__row .pageInfor__colRight .pageInfor_link {
  color: #00319f;
  text-decoration: underline;
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block04 .pageInfor__table .pageInfor__row .pageInfor__colRight .pageInfor_link.-inb {
    display: block;
    line-height: 1.5;
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec01 .pageInfor__block.-block04 .pageInfor__table .pageInfor__row .pageInfor__colRight .pageInfor_link:hover {
  text-decoration: none;
}
.pageInfor .pageInfor__container .pageInfor__section.-sec02 {
  position: relative;
  z-index: 10;
  padding: 16.8rem 0 18.8rem;
}
.pageInfor .pageInfor__container .pageInfor__section.-sec02::before, .pageInfor .pageInfor__container .pageInfor__section.-sec02::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: inline-block;
  width: 100vw;
  height: 100%;
  max-width: 100vw;
  content: "";
  background: #f5f5f5;
  -webkit-transform: translate();
          transform: translate();
}
.pageInfor .pageInfor__container .pageInfor__section.-sec02::after {
  right: 0;
  left: auto;
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec02 {
    padding: 4rem 0;
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain {
  max-width: 97rem;
  margin-left: auto;
}
.pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .page__title {
  margin: 0 0 6.9rem;
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .page__title {
    margin: 0 0 3rem;
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container {
  position: relative;
  padding-bottom: 7.6rem;
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container {
    padding-bottom: 10.4rem;
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container .swiper-slide {
  width: 29.4rem;
  height: auto;
  padding: 2.4rem 2.1rem 2.8rem 2.8rem;
  background: #ffffff;
  border-radius: 0 4rem 0 4rem;
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container .swiper-slide {
    width: 24.8rem;
    padding: 2rem 2rem 2.2rem;
    border-radius: 0 3rem 0 3rem;
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container .swiper-slide .pageInfor__year {
  font-family: "Poppins", sans-serif;
  color: #e60113;
  font-size: 3rem;
  line-height: 1.4;
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container .swiper-slide .pageInfor__year {
    margin: 0 0 0.4rem;
    font-size: 2rem;
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container .swiper-slide .pageInfor__month {
  margin: 0 0 1.3rem;
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container .swiper-slide .pageInfor__month {
    margin: 0 0 1rem;
    font-size: 1.4rem;
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container .swiper-slide .pageInfor__text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container .swiper-slide .pageInfor__text {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container .swiper-pagination {
  top: auto;
  bottom: 0;
  width: 84.536%;
  height: 0.3rem;
}
@media (max-width: 850px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container .swiper-pagination {
    width: 81.536%;
  }
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container .swiper-pagination {
    bottom: 7.1rem;
    width: 100%;
    height: 0.2rem;
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #e60113;
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container .swiper-pagination .swiper-pagination-progressbar-fill {
    top: -0.1rem;
    height: 0.4rem;
    border-radius: 10rem;
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container .pageInfor_button {
  position: absolute;
  right: 0;
  bottom: -2.1rem;
  width: 11.4rem;
  height: 5.2rem;
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container .pageInfor_button {
    right: auto;
    bottom: 0;
    left: 50%;
    width: 11rem;
    height: 5rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container .pageInfor_button .swiper-button-next,
.pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container .pageInfor_button .swiper-button-prev {
  top: auto;
  bottom: 0;
  width: 5.2rem;
  height: 5.2rem;
  background: url(../image/common/icon-arrow_right_black_fill_white.png) no-repeat center center/100% auto;
  border-radius: 100%;
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container .pageInfor_button .swiper-button-next,
  .pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container .pageInfor_button .swiper-button-prev {
    bottom: 0;
  }
}
@media only screen and (max-width:768px) {
  .pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container .pageInfor_button .swiper-button-next,
  .pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container .pageInfor_button .swiper-button-prev {
    width: 5rem;
    height: 5rem;
  }
}
.pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container .pageInfor_button .swiper-button-next.swiper-button-disabled,
.pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container .pageInfor_button .swiper-button-prev.swiper-button-disabled {
  opacity: 0.5;
}
.pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container .pageInfor_button .swiper-button-next::before,
.pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container .pageInfor_button .swiper-button-prev::before {
  display: none;
}
.pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container .pageInfor_button .swiper-button-next {
  right: 0;
}
.pageInfor .pageInfor__container .pageInfor__section.-sec02 .inner .pageInfor_contain .pageInfor__slide .swiper-container .pageInfor_button .swiper-button-prev {
  left: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.pageInfor .page__ourCompany {
  position: relative;
  z-index: 10;
  background: #ffffff;
}

.p-contactTop {
  background: #ffffff;
}
.p-contactTop-inner {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 2rem 12rem;
}
@media only screen and (max-width:768px) {
  .p-contactTop-inner {
    padding: 0 1.6rem 8rem;
  }
}
.p-contactTop-lead {
  margin-bottom: 5.6rem;
  color: #333333;
  font-size: 1.5rem;
  line-height: 1.9;
  text-align: center;
}
.p-contactTop-lead span {
  display: inline-block;
}
.p-contactTop-block {
  margin-bottom: 5.6rem;
}
.p-contactTop-block:last-child {
  margin-bottom: 0;
}
.p-contactTop-blockHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.4rem;
  padding: 1.6rem 2.4rem;
  background: #d02d26;
  color: #ffffff;
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media only screen and (max-width:768px) {
  .p-contactTop-blockHead {
    padding: 1.4rem 1.8rem;
    font-size: 1.6rem;
  }
}
.p-contactTop-blockHead .-en {
  opacity: 0.85;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}
.p-contactTop-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.6rem;
  padding: 3.2rem;
  border: 1px solid #d02d26;
  border-top: none;
}
@media only screen and (max-width:768px) {
  .p-contactTop-single {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-contactTop-single p {
  color: #333333;
  font-size: 1.5rem;
  line-height: 1.8;
}
.p-contactTop-branchWrap {
  border: 1px solid #d02d26;
  border-top: none;
}
.p-contactTop-branch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.6rem;
  padding: 3.2rem;
  border-bottom: 1px dashed #e3c3c1;
}
.p-contactTop-branch:last-child {
  border-bottom: none;
}
@media only screen and (max-width:768px) {
  .p-contactTop-branch {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-contactTop-branchLabel {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 22rem;
}
.p-contactTop-branchLabel h3 {
  color: #222222;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.5;
}
.p-contactTop-branchLabel p {
  margin-top: 0.6rem;
  color: #777;
  font-size: 1.3rem;
  line-height: 1.7;
}
.p-contactTop-note {
  max-width: 100rem;
  margin: 2.4rem auto 0;
  padding: 1.4rem 2rem;
  background: #FFF6E5;
  border: 1px solid #F0D08A;
  color: #7a5b00;
  font-size: 1.25rem;
  line-height: 1.8;
}

.c-btnArrow {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 1rem;
  min-width: 23rem;
  height: 5.6rem;
  padding: 0 2.8rem;
  background: #FFF;
  border-radius: 2px;
  color: #d02d26;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .c-btnArrow {
    width: 100%;
  }
}
.c-btnArrow .-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  background: #ffffff;
  border-radius: 50%;
  color: #e60113;
  font-size: 1.3rem;
  line-height: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.c-btnArrow.-outline {
  background: #ffffff;
  border: 1px solid #d02d26;
  color: #d02d26 !important;
}
.c-btnArrow.-outline .-arrow {
  background: #d02d26;
  color: #ffffff;
}
@media only screen and (min-width:769px) {
  .c-btnArrow.-outline:hover {
    color: #ffffff !important;
    background: #d02d26;
    border-color: #d02d26;
  }
  .c-btnArrow.-outline:hover .-arrow {
    background: #ffffff;
    color: #d02d26;
  }
}

.pageCorporation .page__kv {
  background: url(../image//list/kv_bg.jpg) no-repeat center center/cover;
}
@media only screen and (max-width:768px) {
  .pageCorporation .page__kv {
    background: url(../image//list/kv_bg_sp.jpg) no-repeat center center/cover;
  }
}
.pageCorporation .pageCorporation__list {
  max-width: 100rem;
  margin: 0 auto 10.9rem;
}
@media only screen and (min-width:769px) {
  .pageCorporation .pageCorporation__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 9.6rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 1000px) and (min-width: 769px) {
  .pageCorporation .pageCorporation__list {
    gap: 0 1.5rem;
  }
}
@media only screen and (max-width:768px) {
  .pageCorporation .pageCorporation__list {
    margin: 0 auto 9.8rem;
  }
}
.pageCorporation .pageCorporation__item {
  margin: 0 0 3.5rem;
}
@media only screen and (min-width:769px) {
  .pageCorporation .pageCorporation__item {
    width: calc((100% - 9.6rem) / 2);
  }
}
@media (max-width: 1000px) and (min-width: 769px) {
  .pageCorporation .pageCorporation__item {
    width: calc((100% - 1.5rem) / 2);
  }
}
@media only screen and (max-width:768px) {
  .pageCorporation .pageCorporation__item {
    margin: 0 0 3.3rem;
  }
}
.pageCorporation .pageCorporation__thumb {
  position: relative;
  display: block;
  height: 28rem;
  margin: 0 0 1.6rem;
  overflow: hidden;
  border-radius: 2rem;
}
@media only screen and (max-width:768px) {
  .pageCorporation .pageCorporation__thumb {
    height: auto;
    margin: 0 0 1.1rem;
  }
}
.pageCorporation .pageCorporation__thumb .pageCorporation_figure {
  position: relative;
  width: 100%;
}
.pageCorporation .pageCorporation__thumb .pageCorporation_figure::before {
  display: block;
  padding-top: 62%;
  content: "";
}
.pageCorporation .pageCorporation__thumb .pageCorporation_figure > * {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.pageCorporation .pageCorporation__thumb .pageCorporation_figure img {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.pageCorporation .pageCorporation__thumb .pageCorporation__line {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 10.3rem;
  color: #ffffff;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  background: rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 1000px) and (min-width: 769px) {
  .pageCorporation .pageCorporation__thumb .pageCorporation__line {
    font-size: 2.6rem;
  }
}
@media only screen and (max-width:768px) {
  .pageCorporation .pageCorporation__thumb .pageCorporation__line {
    height: 6.5rem;
    font-size: 1.8rem;
  }
}
.pageCorporation .pageCorporation__thumb .pageCorporation__line .pageCorporation__title {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 0.2rem;
  overflow: hidden;
}
@media only screen and (max-width:768px) {
  .pageCorporation .pageCorporation__thumb .pageCorporation__line .pageCorporation__title {
    padding: 0 0 0.1rem;
  }
}
.pageCorporation .pageCorporation__thumb .pageCorporation__line .pageCorporation__title::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.2rem;
  content: "";
  background: #ffffff;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .pageCorporation .pageCorporation__thumb .pageCorporation__line .pageCorporation__title::before {
    height: 0.1rem;
  }
}
.pageCorporation .pageCorporation__thumb .pageCorporation__line .pageCorporation__title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.2rem;
  content: "";
  background: #e60113;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .pageCorporation .pageCorporation__thumb .pageCorporation__line .pageCorporation__title::after {
    height: 0.1rem;
  }
}
.pageCorporation .pageCorporation__thumb::after {
  position: absolute;
  right: 1.9rem;
  bottom: 1.8rem;
  width: 5rem;
  height: 5rem;
  content: "";
  background: url(../image/common/icon-arrow_right_stroke_white.png) no-repeat center center/100% auto;
}
@media (max-width: 1000px) and (min-width: 769px) {
  .pageCorporation .pageCorporation__thumb::after {
    right: 1rem;
    bottom: 1rem;
    width: 4rem;
    height: 4rem;
  }
}
@media only screen and (max-width:768px) {
  .pageCorporation .pageCorporation__thumb::after {
    right: 2rem;
    bottom: 2rem;
    width: 4rem;
    height: 4rem;
  }
}
@media only screen and (min-width:769px) {
  .pageCorporation .pageCorporation__thumb:hover .pageCorporation_figure img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .pageCorporation .pageCorporation__thumb:hover .pageCorporation__line .pageCorporation__title::before {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .pageCorporation .pageCorporation__thumb:hover .pageCorporation__line .pageCorporation__title::after {
    width: 100%;
  }
}
.pageCorporation .pageCorporation__text {
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageCorporation .pageCorporation__text {
    font-size: 1.2rem;
    line-height: 2.1;
  }
}

.pageDisability .page__kv.-kv2::before {
  background-image: url(../image//disability/kv_bg.jpg);
}
@media only screen and (max-width:768px) {
  .pageDisability .page__kv.-kv2::before {
    background-image: url(../image//disability/kv_bg_sp.jpg);
  }
}
.pageDisability .page_advList {
  width: 50.4rem;
}
.pageDisability .page_advList .page__advItem {
  width: 100%;
}
.pageDisability .disability__cnt {
  padding-bottom: 15rem;
}
@media only screen and (max-width:768px) {
  .pageDisability .disability__cnt {
    padding-bottom: 10rem;
  }
}
@media only screen and (max-width:768px) {
  .pageDisability .disability__cnt .page__tabList {
    margin-bottom: 0;
  }
}
.pageDisability .disability__cnt .page__tabList .page__tabTitle {
  font-weight: 500;
}
@media only screen and (max-width:768px) {
  .pageDisability .disability__cnt .page__tabList .page__tabTitle {
    font-weight: 700;
  }
}
.pageDisability .disability__cnt .page__tabContent {
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageDisability .disability__cnt .page__tabContent {
    padding: 4rem 0 8rem;
    font-size: 1.3rem;
    font-weight: 500;
  }
}
.pageDisability .disability__cnt .page__tabContent .-ta_center {
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pageDisability .disability__cnt .page__tabContent .-sp_ta_left {
    text-align: left;
  }
}
.pageDisability .disability__cnt .page__tabContent .-mb_100 {
  margin-bottom: 10rem;
}
@media only screen and (max-width:768px) {
  .pageDisability .disability__cnt .page__tabContent .-mb_100 {
    margin-bottom: 4rem;
  }
}
.pageDisability .disability__cnt .page__tabContent .-mb_80 {
  margin-bottom: 8rem;
}
@media only screen and (max-width:768px) {
  .pageDisability .disability__cnt .page__tabContent .-mb_80 {
    margin-bottom: 4rem;
  }
}
.pageDisability .disability__cnt .page__tabContent .-mb_75 {
  margin-bottom: 7.5rem;
}
@media only screen and (max-width:768px) {
  .pageDisability .disability__cnt .page__tabContent .-mb_75 {
    margin-bottom: 4rem;
  }
}
.pageDisability .disability__cnt .page__tabContent .-mb_60 {
  margin-bottom: 6rem;
}
@media only screen and (max-width:768px) {
  .pageDisability .disability__cnt .page__tabContent .-mb_60 {
    margin-bottom: 3rem;
  }
}
.pageDisability .disability__cnt .page__tabContent .-mb_45 {
  margin-bottom: 4.5rem;
}
@media only screen and (max-width:768px) {
  .pageDisability .disability__cnt .page__tabContent .-mb_45 {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width:768px) {
  .pageDisability .disability__cnt .page__tabContent .-sp_mb_60 {
    margin-bottom: 6rem !important;
  }
}
@media only screen and (max-width:768px) {
  .pageDisability .disability__cnt .page__tabContent .-sp_mb_5 {
    margin-bottom: 0.5rem !important;
  }
}
.pageDisability .disability__cnt .page__tabContent .-mw_655 {
  max-width: 65.5rem;
}
@media only screen and (max-width:768px) {
  .pageDisability .disability__cnt .page__tabContent .-mw_655 {
    max-width: 100%;
  }
}
.pageDisability .disability__cnt .page__tabContent .-mw_850 {
  max-width: 85rem;
}
@media only screen and (max-width:768px) {
  .pageDisability .disability__cnt .page__tabContent .-mw_850 {
    max-width: 100%;
  }
}
@media only screen and (max-width:768px) {
  .pageDisability .disability__cnt .page__tabContent .-sp_fs_12 {
    font-size: 1.2rem;
    line-height: 1.583;
  }
}
.pageDisability .disability__cnt .page__tabContent .page__tabCtl {
  margin-bottom: 3rem;
}
@media only screen and (max-width:768px) {
  .pageDisability .disability__cnt .page__tabContent .page__tabCtl {
    margin-bottom: 1.5rem;
  }
}
.pageDisability .disability__cnt .page__tabContent .tab__subTitle {
  margin-bottom: 3rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pageDisability .disability__cnt .page__tabContent .tab__subTitle {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    line-height: 1.625;
  }
}
.pageDisability .disability__cnt .page__tabContent .tab__img {
  margin-right: auto;
  margin-left: auto;
}
.pageDisability .disability__cnt .page__tabContent .tab__img img {
  width: 100%;
}
.pageDisability .disability__cnt .page__tabContent .tab__sec {
  margin-bottom: 8rem;
}
@media only screen and (max-width:768px) {
  .pageDisability .disability__cnt .page__tabContent .tab__sec {
    margin-bottom: 5rem;
  }
}
.pageDisability .disability__cnt .page__tabContent .tab__sec:last-of-type {
  margin-bottom: 0;
}
.pageDisability .disability__cnt .page__tabContent .tab__benefitList {
  gap: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem;
}
@media only screen and (max-width:768px) {
  .pageDisability .disability__cnt .page__tabContent .tab__benefitList {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.pageDisability .disability__cnt .page__tabContent .tab__benefitList .tab__benefit {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 2px solid #666b71;
  border-radius: 10px;
}
@media only screen and (max-width:768px) {
  .pageDisability .disability__cnt .page__tabContent .tab__benefitList .tab__benefit {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    width: 100%;
  }
}
.pageDisability .disability__cnt .page__tabContent .tab__benefitList .benefit__head {
  padding: 1.5rem;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.44;
  text-align: center;
  background-color: #666b71;
  border-radius: 3px 3px 0 0;
}
@media only screen and (max-width:768px) {
  .pageDisability .disability__cnt .page__tabContent .tab__benefitList .benefit__head {
    font-size: 1.4rem;
    line-height: 1.428;
  }
}
.pageDisability .disability__cnt .page__tabContent .tab__benefitList .benefit__cnt {
  padding: 1.9rem 2rem 3rem;
}
@media only screen and (max-width:768px) {
  .pageDisability .disability__cnt .page__tabContent .tab__benefitList .benefit__cnt {
    padding: 2rem;
  }
}
.pageDisability .disability__cnt .page__tabContent .tab__des {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 2.3;
}
@media only screen and (max-width:768px) {
  .pageDisability .disability__cnt .page__tabContent .tab__des {
    font-size: 1.2rem;
    line-height: 2.5;
  }
}
@media only screen and (max-width:768px) {
  .pageDisability .disability__cnt .page__tabContent#tab01 {
    padding-bottom: 0;
  }
}
@media only screen and (max-width:768px) {
  .pageDisability .disability__cnt .page__tabContent#tab02 {
    padding-bottom: 4rem;
  }
}
@media only screen and (max-width:768px) {
  .pageDisability .disability__cnt .page__tabContent#tab03 {
    padding-bottom: 0;
  }
}
.pageDisability .disability__cnt .page__tabContent#tab03 .page__tabCtl {
  margin-bottom: 5rem;
}
@media only screen and (max-width:768px) {
  .pageDisability .disability__cnt .page__tabContent#tab03 .page__tabCtl {
    margin-bottom: 4rem;
  }
}

.pageEmergency .page__top {
  padding: 5.9rem 0 6.5rem;
  background: url(../image//emergency/kv.jpg) no-repeat top center/cover;
}
@media only screen and (max-width:768px) {
  .pageEmergency .page__top {
    padding: 5.5rem 0 6.5rem;
    background: url(../image//emergency/kv_sp.jpg) no-repeat right bottom/cover;
  }
}
.pageEmergency .page__top .page__topTitle span.en {
  font-size: 2.7rem;
  text-transform: capitalize;
}
@media only screen and (max-width:768px) {
  .pageEmergency .page__top .page__topTitle span.en {
    font-size: 1.6rem;
  }
}
.pageEmergency .emergency__ttl {
  margin-bottom: 3rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.467;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pageEmergency .emergency__ttl {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    line-height: 1.5;
  }
}
.pageEmergency .emergency__note {
  margin-bottom: 8rem;
  font-size: 1.5rem;
  line-height: 2;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pageEmergency .emergency__note {
    margin-bottom: 4rem;
    font-size: 1.3rem;
    font-weight: 500;
    text-align: left;
  }
}
.pageEmergency .emergency__tbl {
  width: 100%;
  margin-bottom: 3rem;
  border-collapse: collapse;
  border-bottom: 1px solid #e30316;
}
@media only screen and (max-width:768px) {
  .pageEmergency .emergency__tbl {
    margin-bottom: 2rem;
  }
}
.pageEmergency .emergency__tbl thead th {
  padding: 1.3rem 0 1.4rem;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  background-color: #d02d26;
}
@media only screen and (max-width:768px) {
  .pageEmergency .emergency__tbl thead th {
    padding: 1.8rem 0;
    font-size: 1.5rem;
  }
}
.pageEmergency .emergency__tbl thead th:first-of-type {
  border-right: 1px solid #cccccc;
}
.pageEmergency .emergency__tbl tbody tr td {
  padding: 3.5rem 1rem;
  border-bottom: 1px solid #cccccc;
}
@media only screen and (max-width:768px) {
  .pageEmergency .emergency__tbl tbody tr td {
    padding: 2.7rem 1rem;
  }
}
.pageEmergency .emergency__tbl tbody tr td:first-of-type {
  min-width: 32rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  background-color: #f5f5f5;
  border-right: 1px solid #cccccc;
}
@media only screen and (max-width:768px) {
  .pageEmergency .emergency__tbl tbody tr td:first-of-type {
    min-width: 11.4rem;
    font-size: 1.5rem;
  }
}
.pageEmergency .emergency__tbl tbody tr:last-of-type td {
  border-bottom: none;
}
.pageEmergency .emergency__lst {
  gap: 1.5rem 4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:768px) {
  .pageEmergency .emergency__lst {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.pageEmergency .emergency__lst .emergenncy__item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
}
@media only screen and (max-width:960px) {
  .pageEmergency .emergency__lst .emergenncy__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width:768px) {
  .pageEmergency .emergency__lst .emergenncy__item {
    font-size: 1.5rem;
  }
}
.pageEmergency .emergency__lst .emergenncy__name {
  font-weight: 500;
  line-height: 1.5rem;
  white-space: nowrap;
}
.pageEmergency .emergency__lst .emergenncy__tel {
  color: #00319f;
  line-height: 2;
  text-decoration: underline;
  white-space: nowrap;
}
.pageEmergency .emergency__lst .emergenncy__tel::before {
  content: "☎ ";
}
.pageEmergency .emergency__lst .emergenncy__tel:hover {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0.8;
}
.pageEmergency .emergency__txt {
  margin-bottom: 6rem;
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageEmergency .emergency__txt {
    margin-bottom: 4rem;
    font-size: 1.3rem;
    font-weight: 500;
  }
}
.pageEmergency .emergency__btn {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 60rem;
  padding: 1.9rem 8rem 1.8rem;
  margin: 0 auto 18rem;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.45;
  background: #666b71;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .pageEmergency .emergency__btn {
    padding: 2rem 5rem 1.9rem;
    margin: 0 auto 10rem;
    font-size: 1.5rem;
  }
}
.pageEmergency .emergency__btn::after {
  position: absolute;
  top: 50%;
  right: 3rem;
  width: 4rem;
  height: 4rem;
  content: "";
  background: url(../image/common/icon-arrow_right_stroke_white.png) no-repeat 50%/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width:768px) {
  .pageEmergency .emergency__btn::after {
    right: 2rem;
    width: 2.6rem;
    height: 2.6rem;
  }
}
@media only screen and (min-width:769px) {
  .pageEmergency .emergency__btn:hover {
    background: #e60113;
  }
}

.pageCar .page__kv.-kv2::before {
  background-image: url(../image//employee-car/img-kv_pc.jpg);
}
@media only screen and (max-width:768px) {
  .pageCar .page__kv.-kv2::before {
    background-image: url(../image//employee-car/img-kv_sp.jpg);
  }
}
@media only screen and (max-width:768px) {
  .pageCar .page__appropriate_driving {
    padding: 0 2rem;
  }
}
.pageCar .page__appropriate_driving_t0 {
  margin-bottom: 3rem;
}
@media only screen and (max-width:768px) {
  .pageCar .page__appropriate_driving_t0 {
    margin-bottom: 3rem;
  }
}
.pageCar .page__appropriate_driving_t1 {
  font-size: 2.4rem;
  font-weight: 700;
  display: block;
}
@media only screen and (max-width:768px) {
  .pageCar .page__appropriate_driving_t1 {
    font-size: 1.6rem;
  }
}
.pageCar .page__appropriate_driving_t2 {
  font-size: 1.6rem;
  display: block;
  margin-top: 0.8rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageCar .page__appropriate_driving_t2 {
    font-size: 1.4rem;
  }
}
.pageCar .page__appropriate_driving_linkWrap {
  margin-bottom: 1.5rem;
}
.pageCar .page__appropriate_driving_link {
  font-size: 1.6rem;
  color: #d02d26;
  display: inline-block;
  text-decoration: underline;
}
@media only screen and (max-width:768px) {
  .pageCar .page__appropriate_driving_link {
    font-size: 1.3rem;
    display: block;
  }
}
.pageCar .page__appropriate_driving_link2 {
  font-size: 1.6rem;
  color: #d02d26;
  text-decoration: underline;
}
@media only screen and (max-width:768px) {
  .pageCar .page__appropriate_driving_link2 {
    font-size: 1.3rem;
  }
}
.pageCar .page__appropriate_driving_login {
  margin-bottom: 1.5rem;
}
.pageCar .page__appropriate_driving_login dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: -0.1rem;
  margin-left: -0.1rem;
}
.pageCar .page__appropriate_driving_login dl dt {
  width: 27rem;
  height: 6rem;
  border: 1px solid #cccccc;
  background: #f5f5f5;
  padding-left: 4rem;
  font-size: 1.6rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width:768px) {
  .pageCar .page__appropriate_driving_login dl dt {
    font-size: 1.3rem;
    padding-left: 2rem;
  }
}
.pageCar .page__appropriate_driving_login dl dd {
  width: 27rem;
  height: 6rem;
  border: 1px solid #cccccc;
  padding-left: 4rem;
  font-size: 1.6rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width:768px) {
  .pageCar .page__appropriate_driving_login dl dd {
    font-size: 1.3rem;
    padding-left: 2rem;
  }
}
.pageCar .page__appropriate_driving_t3 {
  font-size: 1.6rem;
  margin-bottom: 7.3rem;
}
@media only screen and (max-width:768px) {
  .pageCar .page__appropriate_driving_t3 {
    font-size: 1.3rem;
  }
}
.pageCar .page__tabAccor .page__tabContent .page__blockCnt .page__blockCntList {
  gap: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 4rem;
}
@media only screen and (max-width:768px) {
  .pageCar .page__tabAccor .page__tabContent .page__blockCnt .page__blockCntList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    padding-bottom: 0;
  }
}
@media only screen and (max-width:768px) {
  .pageCar .page__tabAccor .page__tabContent .page__blockCnt .page__blockCntList.-index-2 {
    padding-bottom: 4rem;
  }
}
.pageCar .page__tabAccor .page__tabContent .page__blockCnt .page__blockCntLink {
  width: 100%;
  cursor: pointer;
}
.pageCar .page__tabAccor .page__tabContent .page__blockCnt .page__blockCntLink.-pb-index-3 {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
@media only screen and (max-width:768px) {
  .pageCar .page__tabAccor .page__tabContent .page__blockCnt .page__blockCntLink.-pb-index-3 {
    display: none;
  }
}
.pageCar .page__tabAccor .page__tabContent .page__blockCnt .page__blockCntLink.-irregular {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.8rem 1.2rem;
  border: 0.1rem solid #000000;
}
@media only screen and (max-width:768px) {
  .pageCar .page__tabAccor .page__tabContent .page__blockCnt .page__blockCntLink.-irregular {
    padding: 1.2rem;
  }
}
.pageCar .page__tabAccor .page__tabContent .page__blockCnt .page__blockCntLink.-irregular * {
  font-size: 1.2rem;
}
.pageCar .page__tabAccor .page__tabContent .page__blockCnt .page__blockCntLink.-irregular b {
  display: block;
  text-align: center;
}
.pageCar .page__tabAccor .page__tabContent .page__blockCnt .page__blockCntLink.-irregular a {
  color: #e60113;
  text-decoration: underline;
}
.pageCar .page__tabAccor .page__tabContent .page__blockCnt .page__blockCntImg {
  width: 100%;
  height: 100%;
  max-height: 10rem;
}
@media only screen and (max-width:768px) {
  .pageCar .page__tabAccor .page__tabContent .page__blockCnt .page__blockCntImg {
    height: auto;
    max-height: 100%;
  }
}
.pageCar .page__tabAccor .page__tabContent .page__blockCnt .page__blockText.-text01 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
}
@media only screen and (max-width:768px) {
  .pageCar .page__tabAccor .page__tabContent .page__blockCnt .page__blockText.-text01 {
    font-size: 1.5rem;
    line-height: 1.9;
  }
}
@media only screen and (max-width:768px) {
  .pageCar .page__tabAccor .page__tabContent .page__blockCnt .page__blockText.-text02 {
    text-align: left;
  }
}
.pageCar .page__tabAccor .page__tabContent .page__blockCnt .page__blockImg.-img01, .pageCar .page__tabAccor .page__tabContent .page__blockCnt .page__blockImg.-img03 {
  max-width: 90rem;
  margin: 0 auto;
}
.pageCar .page__tabAccor .page__tabContent .page__blockCnt .page__blockImg.-img04 {
  margin-bottom: 0;
}
.pageCar .page__tabAccor .page__tabContent#tab01 .page__blockCnt {
  margin-bottom: 0;
}
@media only screen and (max-width:768px) {
  .pageCar .page__tabAccor .page__tabContent#tab01 .page__blockCnt {
    margin-bottom: 3.6rem;
  }
}
.pageCar #pipmakerjm35 {
  margin-inline: auto;
  margin-bottom: 40px;
}
@media only screen and (max-width:768px) {
  .pageCar #pipmakerjm35 {
    width: 100% !important;
    height: 53.3vw !important;
  }
}

.page__tabAccor {
  width: 100%;
  max-width: 110rem;
  margin: 0 auto 14.9rem;
}
@media only screen and (max-width:768px) {
  .page__tabAccor {
    margin: 0 auto 10rem;
  }
}
.page__tabAccor .page__tabContent .page__blockCnt {
  margin-bottom: 8rem;
}
@media only screen and (max-width:768px) {
  .page__tabAccor .page__tabContent .page__blockCnt {
    margin-bottom: 3.6rem;
  }
}
.page__tabAccor .page__tabContent .page__blockCnt:last-of-type {
  margin: 0 !important;
}
.page__tabAccor .page__tabContent .page__blockCnt .page__blockImg {
  margin-bottom: 4.5rem;
}
@media only screen and (max-width:768px) {
  .page__tabAccor .page__tabContent .page__blockCnt .page__blockImg {
    margin-bottom: 3.3rem;
  }
}
.page__tabAccor .page__tabContent .page__blockCnt .page__blockTitle {
  position: relative;
  padding-bottom: 2rem;
  margin-bottom: 1.9rem;
  color: #d02d26;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 0.2rem solid #f5e5e5;
}
@media only screen and (max-width:768px) {
  .page__tabAccor .page__tabContent .page__blockCnt .page__blockTitle {
    margin-bottom: 1.7rem;
    font-size: 1.5rem;
  }
}
.page__tabAccor .page__tabContent .page__blockCnt .page__blockTitle::after {
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  width: 7.7rem;
  height: 0.2rem;
  content: "";
  background: #e60113;
}
.page__tabAccor .page__tabContent .page__blockCnt .page__blockText {
  margin-bottom: 2.5rem;
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .page__tabAccor .page__tabContent .page__blockCnt .page__blockText {
    margin-bottom: 3rem;
    font-size: 1.3rem;
    font-weight: 500;
  }
}
.page__tabAccor .page__tabContent .page__blockCnt .page__blockText .red {
  color: #d02d26;
}
.page__tabAccor .page__tabContent .page__blockCnt .page__blockNote {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
}
@media only screen and (max-width:768px) {
  .page__tabAccor .page__tabContent .page__blockCnt .page__blockNote {
    font-size: 1.2rem;
  }
}
.page__tabAccor .page__tabContent .page__blockCnt .page__video {
  padding: 6.2rem 5rem 6rem;
  background: #263b6e;
  border-radius: 2rem;
}
@media only screen and (max-width:768px) {
  .page__tabAccor .page__tabContent .page__blockCnt .page__video {
    padding: 4.5rem 2rem 5.5rem;
  }
}
.page__tabAccor .page__tabContent .page__blockCnt .page__video .page__videoList {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:768px) {
  .page__tabAccor .page__tabContent .page__blockCnt .page__video .page__videoList {
    gap: 4rem;
  }
}
.page__tabAccor .page__tabContent .page__blockCnt .page__video .page__videoList .page__videoItem {
  width: calc((100% - 10rem) / 3);
}
@media only screen and (max-width:768px) {
  .page__tabAccor .page__tabContent .page__blockCnt .page__video .page__videoList .page__videoItem {
    width: 100%;
  }
}
.page__tabAccor .page__tabContent .page__blockCnt .page__video .page__videoList .page__videoItem div {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  max-width: 100%;
  color: #ffffff;
}
.page__tabAccor .page__tabContent .page__blockCnt .page__video .page__videoList .page__videoItem div .page__videoTitle {
  margin-bottom: 2.5rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04rem;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .page__tabAccor .page__tabContent .page__blockCnt .page__video .page__videoList .page__videoItem div .page__videoTitle {
    margin-bottom: 1.8rem;
    font-size: 1.6rem;
  }
}
.page__tabAccor .page__tabContent .page__blockCnt .page__video .page__videoList .page__videoItem div .page__videoThumb {
  position: relative;
}
.page__tabAccor .page__tabContent .page__blockCnt .page__video .page__videoList .page__videoItem div .page__videoThumb video {
  max-width: 100%;
}
.page__tabAccor .page__tabContent .page__blockCnt .page__video .page__videoList .page__videoItem div .page__videoFile {
  max-width: 100%;
}
.page__tabAccor .page__tabContent .page__blockCnt .page__video .page__videoList .page__videoItem div .page__videoText {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: block;
  padding: 2.3rem 0 1.3rem;
  border-bottom: 0.1rem solid #ffffff;
}
@media only screen and (max-width:768px) {
  .page__tabAccor .page__tabContent .page__blockCnt .page__video .page__videoList .page__videoItem div .page__videoText {
    padding: 1.8rem 0 1.3rem;
  }
}
.page__tabAccor .page__tabContent .page__blockCnt .page__video .page__videoList .page__videoItem div .page__videoText span {
  position: relative;
  display: block;
  padding-right: 5rem;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 500;
}
@media only screen and (max-width:768px) {
  .page__tabAccor .page__tabContent .page__blockCnt .page__video .page__videoList .page__videoItem div .page__videoText span {
    font-size: 1.3rem;
  }
}
.page__tabAccor .page__tabContent .page__blockCnt .page__video .page__videoList .page__videoItem div .page__videoText span::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 3rem;
  height: 3rem;
  content: "";
  background: url(../image/common/icon-arrow_right_fill_white03.png) no-repeat center center/100% auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width:768px) {
  .page__tabAccor .page__tabContent .page__blockCnt .page__video .page__videoList .page__videoItem div .page__videoText span::after {
    width: 2.7rem;
    height: 2.7rem;
  }
}
@media only screen and (min-width:769px) {
  .page__tabAccor .page__tabContent .page__blockCnt .page__video .page__videoList .page__videoItem div:hover .page__videoText {
    padding: 2.3rem 1.3rem 1.3rem;
  }
}
@media only screen and (min-width:769px) {
  .page__tabAccor .page__tabContent .page__blockCnt.-bflex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.page__tabAccor .page__tabContent .page__blockCnt.-bflex .page__blockCol.-left {
  width: 49%;
}
@media only screen and (max-width:768px) {
  .page__tabAccor .page__tabContent .page__blockCnt.-bflex .page__blockCol.-left {
    width: 100%;
  }
}
.page__tabAccor .page__tabContent .page__blockCnt.-bflex .page__blockCol.-right {
  width: 51%;
  padding-right: 6rem;
}
@media only screen and (max-width:768px) {
  .page__tabAccor .page__tabContent .page__blockCnt.-bflex .page__blockCol.-right {
    width: 100%;
    padding: 0;
  }
}
@media only screen and (min-width:769px) {
  .page__tabAccor .page__tabContent .page__blockCnt.-line {
    margin-bottom: 4rem;
    border-bottom: 0.2rem solid #f5e5e5;
  }
}
.page__tabAccor .page__tabContent .page__blockFrame {
  max-width: 64rem;
  padding: 3.7rem 2rem 5.2rem;
  margin: 0 auto;
  text-align: center;
  border: 0.3rem solid #cc0023;
  border-radius: 2rem;
}
@media only screen and (max-width:768px) {
  .page__tabAccor .page__tabContent .page__blockFrame {
    padding: 3.3rem 2rem 4.7rem;
  }
}
.page__tabAccor .page__tabContent .page__blockFrame .page__blockText {
  margin-bottom: 1.9rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
}
@media only screen and (max-width:768px) {
  .page__tabAccor .page__tabContent .page__blockFrame .page__blockText {
    margin-bottom: 2.3rem;
    font-size: 1.5rem;
    line-height: 2;
  }
}
.page__tabAccor .page__tabContent .page__blockFrame .page__blockImg {
  display: block;
  width: 100%;
  max-width: 29.7rem;
  margin: 0 auto;
}
@media only screen and (max-width:768px) {
  .page__tabAccor .page__tabContent .page__blockFrame .page__blockImg {
    max-width: 22.8rem;
  }
}
.page__tabAccor .video__wrap__car {
  width: 100%;
  aspect-ratio: 16/9;
  margin: auto;
  margin-bottom: 80px;
}
@media only screen and (max-width:768px) {
  .page__tabAccor .video__wrap__car {
    margin-bottom: 40px;
  }
}
.page__tabAccor .video__wrap__car iframe {
  width: 100%;
  height: 100%;
}

.pageClaims .pageClaims__cnt .-sec {
  max-width: 110rem;
  margin: 0 auto;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .-sec .page__title.-title02 {
    margin-bottom: 3.1rem;
  }
}
.pageClaims .pageClaims__cnt .-sec .pageClaims__table table {
  width: 100%;
  border-collapse: collapse;
}
.pageClaims .pageClaims__cnt .-sec .pageClaims__table table tr {
  border-bottom: 0.1rem solid #cccccc;
}
.pageClaims .pageClaims__cnt .-sec .pageClaims__table table tr:first-child {
  border-bottom: none;
}
.pageClaims .pageClaims__cnt .-sec .pageClaims__table table tr:first-child th {
  height: 6rem;
  padding: 0;
  color: #ffffff;
  background: #d02d26;
  border-left: 0.1rem solid #cccccc;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .-sec .pageClaims__table table tr:first-child th {
    height: 5rem;
  }
}
.pageClaims .pageClaims__cnt .-sec .pageClaims__table table tr:last-child {
  border-bottom: 0.1rem solid #d02d26;
}
.pageClaims .pageClaims__cnt .-sec .pageClaims__table table tr th {
  padding: 3.2rem 0 3.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  background: #f5f5f5;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .-sec .pageClaims__table table tr th {
    padding: 1.5rem 0;
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.pageClaims .pageClaims__cnt .-sec .pageClaims__table table tr td {
  padding: 3.2rem 0.5rem 3.5rem 5rem;
  font-size: 1.5rem;
  border-left: 0.1rem solid #cccccc;
}
@media (max-width: 900px) and (min-width: 769px) {
  .pageClaims .pageClaims__cnt .-sec .pageClaims__table table tr td {
    padding: 3.2rem 0.5rem 3.5rem 4rem;
  }
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .-sec .pageClaims__table table tr td {
    padding: 0.9rem 0.5rem 1.4rem 2rem;
    font-size: 1.3rem;
  }
}
.pageClaims .pageClaims__cnt .-sec .pageClaims__table table tr td .pageClaims__tableCnt:not(:last-of-type) {
  margin-bottom: 3.5rem;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .-sec .pageClaims__table table tr td .pageClaims__tableCnt:not(:last-of-type) {
    margin-bottom: 1.7rem;
  }
}
.pageClaims .pageClaims__cnt .-sec .pageClaims__table table tr td .pageClaims__tableCnt a {
  display: block;
  text-decoration: underline;
}
.pageClaims .pageClaims__cnt .-sec .pageClaims__table table tr td .pageClaims__tableCnt a:hover {
  text-decoration: none;
}
.pageClaims .pageClaims__cnt .-sec .pageClaims__table table tr td .pageClaims__tableTitle {
  font-weight: 700;
}
@media only screen and (min-width:769px) {
  .pageClaims .pageClaims__cnt .-sec .pageClaims__table table tr td .pageClaims__tableTitle {
    margin-bottom: 0.5rem;
  }
}
.pageClaims .pageClaims__cnt .-sec .pageClaims__table table tr td .pageClaims__tablePhone {
  color: #00319f;
}
@media only screen and (min-width:769px) {
  .pageClaims .pageClaims__cnt .-sec .pageClaims__table table tr td .pageClaims__tablePhone {
    margin-bottom: 0.3rem;
  }
}
.pageClaims .pageClaims__cnt .-sec .pageClaims__table table tr td .pageClaims__tableLink {
  color: #d02d26;
}
.pageClaims .pageClaims__cnt .-sec .pageClaims__table table tr td .pageClaims__tableText {
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .-sec .pageClaims__table table tr td .pageClaims__tableText {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.5;
  }
}
.pageClaims .pageClaims__cnt .-sec .pageClaims__table table tr td .pageClaims__tableText.-text-small {
  font-size: 1.3rem;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .-sec .pageClaims__table table tr td .pageClaims__tableText.-text-small {
    font-size: 1.2rem;
  }
}
.pageClaims .pageClaims__cnt .-sec .pageClaims__table table tr td .-fz-18px {
  font-size: 1.8rem;
}
.pageClaims .pageClaims__cnt .-sec .pageClaims__table table tr td .-fz-15px {
  font-size: 1.5rem;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .-sec .pageClaims__table table tr td .-fz-15px-sp {
    font-size: 1.5rem;
  }
}
.pageClaims .pageClaims__cnt .pageClaims__redFrame {
  padding: 1.8rem 2rem 2.7rem;
  margin-bottom: 6rem;
  text-align: center;
  background: #fcecea;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__redFrame {
    padding: 2.9rem 2rem 3.6rem;
    margin-bottom: 5.1rem;
  }
}
.pageClaims .pageClaims__cnt .pageClaims__redFrame .pageClaims__frameTitle {
  margin-bottom: 1.6rem;
  font-size: 2.4rem;
  font-weight: 700;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__redFrame .pageClaims__frameTitle {
    margin-bottom: 1.3rem;
    font-size: 1.8rem;
  }
}
.pageClaims .pageClaims__cnt .pageClaims__redFrame .pageClaims__frameTitle span {
  position: relative;
  padding: 0 3.5rem;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__redFrame .pageClaims__frameTitle span {
    padding: 0 2.7rem;
  }
}
.pageClaims .pageClaims__cnt .pageClaims__redFrame .pageClaims__frameTitle span::before, .pageClaims .pageClaims__cnt .pageClaims__redFrame .pageClaims__frameTitle span::after {
  position: absolute;
  top: 50%;
  width: 2.5rem;
  height: 2.2rem;
  content: "";
  background: url(../image/common/icon-warning.png) no-repeat center center/100% auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__redFrame .pageClaims__frameTitle span::before, .pageClaims .pageClaims__cnt .pageClaims__redFrame .pageClaims__frameTitle span::after {
    width: 2rem;
    height: 1.7rem;
  }
}
.pageClaims .pageClaims__cnt .pageClaims__redFrame .pageClaims__frameTitle span::before {
  left: 0;
}
.pageClaims .pageClaims__cnt .pageClaims__redFrame .pageClaims__frameTitle span::after {
  right: 0;
}
.pageClaims .pageClaims__cnt .pageClaims__redFrame .pageClaims__frameText {
  color: #333333;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__redFrame .pageClaims__frameText {
    font-size: 1.5rem;
  }
}
.pageClaims .pageClaims__cnt .pageClaims__redFrame .pageClaims__frameText .red {
  color: #e60113;
}
.pageClaims .pageClaims__cnt .pageClaims__confirm {
  margin-bottom: 12rem;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__confirm {
    margin-bottom: 5.1rem;
  }
}
.pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__frame.-frame01 {
  padding: 2.7rem 2rem 2.8rem;
  margin-bottom: 3rem;
  text-align: center;
  background: #f5f5f5;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__frame.-frame01 {
    padding: 3rem 2rem 3.2rem;
    text-align: left;
  }
}
.pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__frame.-frame01 .pageClaims__frameText {
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__frame.-frame01 .pageClaims__frameText {
    margin-bottom: 1.9rem;
    font-size: 1.3rem;
    line-height: 1.5;
  }
}
.pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__frame.-frame01 .pageClaims__frameList {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__frame.-frame01 .pageClaims__frameList {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__frame.-frame01 .pageClaims__frameList li {
  padding: 0.4rem 2rem;
  font-size: 2.2rem;
  font-weight: 500;
  background: #ffffff;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__frame.-frame01 .pageClaims__frameList li {
    padding: 0.4rem 1rem;
    font-size: 1.3rem;
  }
}
.pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__frame.-frame02 {
  padding: 1.9rem 0 0;
  text-align: center;
  border: 0.4rem solid #d3d3d3;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__frame.-frame02 {
    padding: 2.9rem 0 0;
    border: 0.3rem solid #d3d3d3;
  }
}
.pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__frame.-frame02 .pageClaims__frameTitle {
  display: inline-block;
  padding: 0 1.3rem;
  margin-bottom: 2rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  border-right: 0.3rem solid #d02d26;
  border-left: 0.3rem solid #d02d26;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__frame.-frame02 .pageClaims__frameTitle {
    margin-bottom: 2.1rem;
    line-height: 1.4;
  }
}
.pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__frame.-frame02 .pageClaims__frameContact {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 2.1rem;
}
.pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__frame.-frame02 .pageClaims__frameContact .pageClaims__frameFigure {
  width: 6.2rem;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__frame.-frame02 .pageClaims__frameContact .pageClaims__frameFigure {
    width: 5.7rem;
  }
}
.pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__frame.-frame02 .pageClaims__frameContact .pageClaims__frameImg {
  width: 100%;
}
.pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__frame.-frame02 .pageClaims__frameContact .pageClaims__frameDesc {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__frame.-frame02 .pageClaims__frameContact .pageClaims__contactPhone {
  position: relative;
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__frame.-frame02 .pageClaims__frameContact .pageClaims__contactPhone {
    display: inline-block;
    margin-bottom: 0.4rem;
    font-size: 1.5rem;
  }
}
.pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__frame.-frame02 .pageClaims__frameContact .pageClaims__contactText {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__frame.-frame02 .pageClaims__frameContact .pageClaims__contactText span {
    display: block;
  }
}
.pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__frame.-frame02 .pageClaims__frameText {
  padding: 1.2rem 0 1rem;
  font-size: 1.3rem;
  font-weight: 500;
  border-top: 0.1rem solid #d3d3d3;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__frame.-frame02 .pageClaims__frameText {
    padding: 1.9rem 2rem 2.6rem;
    line-height: 1.5;
  }
}
.pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__frame.-frame02 .pageClaims__frameText a {
  margin-left: 2.5rem;
  color: #e60113;
  text-decoration: underline;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__frame.-frame02 .pageClaims__frameText a {
    display: block;
    margin: 0.9rem 0 0;
  }
}
.pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__frame.-frame02 .pageClaims__frameText a:hover {
  text-decoration: none;
}
.pageClaims .pageClaims__cnt .pageClaims__confirm .pageVClaims__noteTitle {
  margin-top: 4.8rem;
  margin-bottom: 0.8rem;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__confirm .pageVClaims__noteTitle {
    text-align: left;
  }
}
.pageClaims .pageClaims__cnt .pageClaims__confirm .pageVClaims__note {
  margin-bottom: 2.2rem;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__confirm .pageVClaims__note {
    text-align: left;
  }
}
.pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__table.-tbl01 {
  margin-bottom: 2.6rem;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__table.-tbl01 {
    overflow-x: auto;
  }
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__table.-tbl01 table {
    width: 151%;
  }
}
.pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__table.-tbl01 table tr:first-child th:nth-child(1) {
  width: 29%;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__table.-tbl01 table tr:first-child th:nth-child(1) {
    width: 19%;
  }
}
.pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__table.-tbl01 table tr:first-child th:nth-child(2) {
  width: 36%;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__table.-tbl01 table tr:first-child th:nth-child(2) {
    width: 32%;
  }
}
.pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__table.-tbl01 table tr:first-child th:nth-child(3) {
  width: 35%;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__confirm .pageClaims__table.-tbl01 table tr:first-child th:nth-child(3) {
    width: 49%;
  }
}
.pageClaims .pageClaims__cnt .pageClaims__contactAdd {
  margin-bottom: 12rem;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__contactAdd {
    margin-bottom: 5.1rem;
  }
}
.pageClaims .pageClaims__cnt .pageClaims__contactAdd .pageClaims__table.-tbl02 table tr:first-child th:nth-child(1) {
  width: 29%;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__contactAdd .pageClaims__table.-tbl02 table tr:first-child th:nth-child(1) {
    width: 34%;
  }
}
.pageClaims .pageClaims__cnt .pageClaims__contactAdd .pageClaims__table.-tbl02 table tr:first-child th:nth-child(2) {
  width: 71%;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__contactAdd .pageClaims__table.-tbl02 table tr:first-child th:nth-child(2) {
    width: 66%;
  }
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__contactAdd .pageClaims__table.-tbl02 table tr td {
    text-align: center;
  }
}
@media only screen and (min-width:769px) {
  .pageClaims .pageClaims__cnt .pageClaims__contactAdd .pageClaims__table.-tbl02 table tr td .pageClaims__tableGroup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (min-width:769px) {
  .pageClaims .pageClaims__cnt .pageClaims__contactAdd .pageClaims__table.-tbl02 table tr td .pageClaims__tableGroup .pageClaims__tableCol {
    width: 50%;
  }
}
.pageClaims .pageClaims__cnt .pageClaims__contactAdd .pageClaims__table.-tbl02 table tr td .pageClaims__tableGroup .pageClaims__tableCol .pageClaims__colTitle {
  margin-bottom: 1.9rem;
  font-weight: 700;
}
.pageClaims .pageClaims__cnt .pageClaims__accident {
  margin-bottom: 17rem;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .pageClaims__accident {
    margin-bottom: 6rem;
  }
}
.pageClaims .pageClaims__cnt .page__btnBlock {
  margin-bottom: 18rem;
}
@media only screen and (max-width:768px) {
  .pageClaims .pageClaims__cnt .page__btnBlock {
    margin-bottom: 10rem;
  }
}

.pageDeath .page__kv.-kv2::before {
  background-image: url(../image//employee-death/img-kv_pc.jpg);
}
@media only screen and (max-width:768px) {
  .pageDeath .page__kv.-kv2::before {
    padding: 2.5rem 0 0;
    background-image: url(../image//employee-death/img-kv_sp.jpg);
  }
}
.pageDeath .page_advList {
  max-width: 59rem;
}
.pageDeath .page_advList .page__advItem {
  width: 50%;
}
@media only screen and (max-width:768px) {
  .pageDeath .page_advList .page__advItem {
    width: 100%;
  }
}
.pageDeath .page__tabAccor .page__tabList .page__tabTitle {
  width: 50%;
}
.pageDeath .pageDeath__cnt .inner .page__blockCnt {
  max-width: 100rem;
  margin: 0 auto !important;
}
.pageDeath .pageDeath__cnt .inner .page__blockCnt .page__blockImg.-img01 {
  max-width: 70.5rem;
  margin: 0 auto 4.5rem;
}
@media only screen and (max-width:768px) {
  .pageDeath .pageDeath__cnt .inner .page__blockCnt .page__blockImg.-img01 {
    margin: 0 auto 3.3rem;
  }
}
.pageDeath .pageDeath__cnt .inner .page__blockCnt .page__blockText.-text01 {
  margin-bottom: 5.5rem;
}
@media only screen and (max-width:768px) {
  .pageDeath .pageDeath__cnt .inner .page__blockCnt .page__blockText.-text01 {
    margin-bottom: 3.6rem;
    text-align: left;
  }
}
.pageDeath .pageDeath__cnt .inner .page__blockCnt .page__blockText.-text02 {
  margin: 0;
  font-weight: 700;
}
.pageDeath .pageDeath__cnt .inner .page__blockCnt .page__blockText.-text03 {
  margin-top: 5.1rem;
}
@media only screen and (max-width:768px) {
  .pageDeath .pageDeath__cnt .inner .page__blockCnt .page__blockText.-text03 {
    margin-bottom: 0;
    font-size: 1.2rem;
    line-height: 1.6;
  }
}
.pageDeath .pageDeath__cnt .inner .page__blockCnt .page__blockList li {
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageDeath .pageDeath__cnt .inner .page__blockCnt .page__blockList li {
    padding-left: 1.5rem;
    font-size: 1.3rem;
    font-weight: 500;
    text-indent: -1.4rem;
  }
}

.pageHouse .page__kv.-kv2::before {
  background-image: url(../image//employee-house/img-kv_pc.jpg);
}
@media only screen and (max-width:768px) {
  .pageHouse .page__kv.-kv2::before {
    background-image: url(../image//employee-house/img-kv_sp.jpg);
  }
}
.pageHouse .pageHouse__cnt .page__tabAccor .page__tabContent .page__blockImg.-img01, .pageHouse .pageHouse__cnt .page__tabAccor .page__tabContent .page__blockImg.-img02 {
  max-width: 90rem;
  margin: 0 auto 4.5rem;
}
@media only screen and (max-width:768px) {
  .pageHouse .pageHouse__cnt .page__tabAccor .page__tabContent .page__blockImg.-img01, .pageHouse .pageHouse__cnt .page__tabAccor .page__tabContent .page__blockImg.-img02 {
    margin: 0 auto 3.3rem;
  }
}
.pageHouse .pageHouse__cnt .page__tabAccor .page__tabContent .page__blockText.-mb0 {
  margin-bottom: 0;
}
.pageHouse .pageHouse__cnt .page__tabAccor .page__tabContent .page__blockText.-indent {
  padding-left: 1.8em;
  text-indent: -1.8em;
}
.pageHouse .pageHouse__cnt .page__tabAccor .page__tabContent .page__blockText.-text01 {
  font-size: 1.3rem;
}
@media only screen and (max-width:768px) {
  .pageHouse .pageHouse__cnt .page__tabAccor .page__tabContent .page__blockText.-text01 {
    font-size: 1.2rem;
    line-height: 1.6;
  }
}
.pageHouse .pageHouse__cnt .page__tabAccor .page__tabContent .page__blockText.-text02 {
  max-width: 67.5rem;
  margin: 0 auto;
}
@media only screen and (max-width:768px) {
  .pageHouse .pageHouse__cnt .page__tabAccor .page__tabContent .page__blockText.-text02 {
    text-align: center;
  }
}

.pageIllness .page__kv.-kv2::before {
  background-image: url(../image//employee-illness/img-kv_pc.jpg);
}
@media only screen and (max-width:768px) {
  .pageIllness .page__kv.-kv2::before {
    background-image: url(../image//employee-illness/img-kv_sp.jpg);
  }
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockImg.-img01 {
  max-width: 100rem;
  margin: 5.5rem auto 16rem;
}
@media only screen and (max-width:768px) {
  .pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockImg.-img01 {
    margin: 0 auto 5.6rem;
  }
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockText.-text01 {
  margin-bottom: 0.7rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
}
@media only screen and (max-width:768px) {
  .pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockText.-text01 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
@media only screen and (max-width:768px) {
  .pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockText.-text02 {
    text-align: left;
  }
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockText.-text04 {
  font-size: 1.3rem;
  font-weight: 500;
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockText.-text05 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
}
@media only screen and (max-width:768px) {
  .pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockText.-text05 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 2;
  }
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockText.-text06 {
  font-size: 1.3rem;
}
@media only screen and (max-width:768px) {
  .pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockText.-text06 {
    font-size: 1.2rem;
    font-size: 500;
  }
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockQuestion {
  position: relative;
  max-width: 78rem;
  margin: 4.8rem auto 0;
}
@media only screen and (max-width:768px) {
  .pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockQuestion {
    margin: 0;
  }
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockQuestion .-img02 {
  width: 59%;
}
@media only screen and (max-width:768px) {
  .pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockQuestion .-img02 {
    width: 100%;
    margin-bottom: 0.7rem;
  }
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockQuestion .-img03 {
  width: 36%;
}
@media only screen and (min-width:769px) {
  .pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockQuestion .-img03 {
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media only screen and (max-width:768px) {
  .pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockQuestion .-img03 {
    width: 20.8rem;
    margin: 0 auto;
  }
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner {
  max-width: 74.6rem;
  margin: 7.4rem auto 0;
}
@media only screen and (max-width:768px) {
  .pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner {
    margin: 0;
  }
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockTable {
  width: 100%;
  margin-bottom: 1.6rem;
  border-collapse: collapse;
}
@media only screen and (max-width:768px) {
  .pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockTable {
    margin-bottom: 1.1rem;
  }
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockTable tr {
  border-bottom: 0.1rem solid #cccccc;
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockTable tr:first-child {
  border-bottom: none;
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockTable tr:first-child th {
  height: 6rem;
  padding: 0;
  color: #ffffff;
  background: #d02d26;
  border-left: 0.1rem solid #cccccc;
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockTable tr:first-child th:nth-child(1) {
  width: 11%;
}
@media only screen and (max-width:768px) {
  .pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockTable tr:first-child th:nth-child(1) {
    width: 12%;
  }
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockTable tr:first-child th:nth-child(2) {
  width: 45%;
}
@media only screen and (max-width:768px) {
  .pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockTable tr:first-child th:nth-child(2) {
    width: 44%;
  }
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockTable tr:first-child th:nth-child(3) {
  width: 44%;
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockTable tr:last-child {
  border-bottom: 0.1rem solid #d02d26;
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockTable tr th {
  padding: 2rem 0.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  background: #f5f5f5;
}
@media only screen and (max-width:768px) {
  .pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockTable tr th {
    padding: 0.7rem 0;
    font-size: 1.3rem;
    line-height: 1.4;
  }
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockTable tr td {
  padding: 2rem 0.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  border-left: 0.1rem solid #cccccc;
}
@media (max-width: 900px) and (min-width: 769px) {
  .pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockTable tr td {
    padding: 3.2rem 0.5rem 3.5rem 4rem;
  }
}
@media only screen and (max-width:768px) {
  .pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockTable tr td {
    height: 7.6rem;
    padding: 0.7rem 0.5rem;
    font-size: 1.3rem;
  }
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockBox {
  padding: 2rem 2rem 1.5rem;
  margin: 5.6rem 0 1.1rem;
  background: #f5f5f5;
  border-radius: 0.5rem;
}
@media only screen and (max-width:768px) {
  .pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockBox {
    padding: 1.7rem 2rem 1.5rem;
  }
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockBox p {
  margin-bottom: 0.3rem;
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockGroup {
  position: relative;
  padding-left: 26.6rem;
  margin: 9.3rem 0 6.7rem;
}
@media only screen and (max-width:768px) {
  .pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockGroup {
    padding: 0;
    margin: 3.2rem 0 0;
  }
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockGroup .page__blockCir {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 22.9rem;
  height: 22.9rem;
  border: 0.1rem solid #e60113;
  border-radius: 100%;
}
@media only screen and (min-width:769px) {
  .pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockGroup .page__blockCir {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media only screen and (max-width:768px) {
  .pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockGroup .page__blockCir {
    margin: 0 auto 1.5rem;
  }
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockGroup .page__blockCir .page__cirText {
  font-weight: 700;
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockGroup .page__blockCir .page__cirText.-ctext01 {
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockGroup .page__blockCir .page__cirText.-ctext02 {
  font-size: 1.7rem;
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockGroup .page__blockCir .page__cirText.-ctext02 span {
  color: #e60113;
  font-size: 4.6rem;
  letter-spacing: -0.04rem;
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockGroup .page__blockText.-text05 {
  margin-bottom: 0.4rem;
}
@media only screen and (max-width:768px) {
  .pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockGroup .page__blockText.-text05 {
    margin-bottom: 1.7rem;
    text-align: center;
  }
}
.pageIllness .pageIllness__cnt .inner .page__tabAccor .page__blockCnt .page__blockInner .page__blockGroup .page__blockText.-text07 {
  margin-bottom: 0.6rem;
}

.pageInjury .page__kv.-kv2::before {
  background-image: url(../image//employee-injury/img-kv_pc.jpg);
}
@media only screen and (max-width:768px) {
  .pageInjury .page__kv.-kv2::before {
    background-image: url(../image//employee-injury/img-kv_sp.jpg);
  }
}

.pagePamphlet .pagePamphlet__cnt .-sec {
  max-width: 110rem;
  margin: 0 auto;
}
.pagePamphlet .pagePamphlet__cnt .pagePamphlet__text {
  font-size: 1.6rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pagePamphlet .pagePamphlet__cnt .pagePamphlet__text {
    font-size: 1.3rem;
    font-weight: 500;
  }
}
.pagePamphlet .pagePamphlet__cnt .pagePamphlet__frame {
  padding: 4rem 5rem;
  background: #f5f5f5;
}
@media only screen and (max-width:768px) {
  .pagePamphlet .pagePamphlet__cnt .pagePamphlet__frame {
    padding: 3rem 2rem;
  }
}
.pagePamphlet .pagePamphlet__cnt .pagePamphlet__document {
  margin-bottom: 12rem;
}
@media only screen and (max-width:768px) {
  .pagePamphlet .pagePamphlet__cnt .pagePamphlet__document {
    margin-bottom: 5rem;
  }
}
.pagePamphlet .pagePamphlet__cnt .pagePamphlet__document .pagePamphlet__frame {
  padding: 5rem;
  margin-bottom: 5rem;
}
@media only screen and (max-width:768px) {
  .pagePamphlet .pagePamphlet__cnt .pagePamphlet__document .pagePamphlet__frame {
    padding: 3rem 2rem;
    margin-bottom: 3rem;
  }
}
.pagePamphlet .pagePamphlet__cnt .pagePamphlet__document .pagePamphlet__frame .pagePamphlet__frameTitle {
  margin-bottom: 0.8rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
@media only screen and (max-width:768px) {
  .pagePamphlet .pagePamphlet__cnt .pagePamphlet__document .pagePamphlet__frame .pagePamphlet__frameTitle {
    font-size: 1.5rem;
  }
}
.pagePamphlet .pagePamphlet__cnt .pagePamphlet__document .pagePamphlet__frame .pagePamphlet__frameText {
  font-size: 1.3rem;
  font-weight: 500;
}
.pagePamphlet .pagePamphlet__cnt .pagePamphlet__document .pagePamphlet__frame .pagePamphlet__docList {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:768px) {
  .pagePamphlet .pagePamphlet__cnt .pagePamphlet__document .pagePamphlet__frame .pagePamphlet__docList {
    gap: 2rem;
  }
}
.pagePamphlet .pagePamphlet__cnt .pagePamphlet__document .pagePamphlet__frame .pagePamphlet__docList:first-of-type {
  margin-top: 5rem;
}
@media only screen and (max-width:768px) {
  .pagePamphlet .pagePamphlet__cnt .pagePamphlet__document .pagePamphlet__frame .pagePamphlet__docList:first-of-type {
    margin-top: 3rem;
  }
}
@media only screen and (min-width:769px) {
  .pagePamphlet .pagePamphlet__cnt .pagePamphlet__document .pagePamphlet__frame .pagePamphlet__docList:not(:last-of-type) {
    padding-bottom: 3rem;
    margin-bottom: 4.7rem;
    border-bottom: 0.2rem solid #d3d3d3;
  }
}
@media only screen and (max-width:768px) {
  .pagePamphlet .pagePamphlet__cnt .pagePamphlet__document .pagePamphlet__frame .pagePamphlet__docList:not(:last-of-type) {
    margin-bottom: 2rem;
  }
}
.pagePamphlet .pagePamphlet__cnt .pagePamphlet__document .pagePamphlet__frame .pagePamphlet__docList .pagePamphlet__item {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  width: 25%;
  padding: 0 4.8rem;
}
@media (max-width: 1150px) and (min-width: 769px) {
  .pagePamphlet .pagePamphlet__cnt .pagePamphlet__document .pagePamphlet__frame .pagePamphlet__docList .pagePamphlet__item {
    padding: 0 1.8rem;
  }
}
@media only screen and (max-width:768px) {
  .pagePamphlet .pagePamphlet__cnt .pagePamphlet__document .pagePamphlet__frame .pagePamphlet__docList .pagePamphlet__item {
    width: calc((100% - 2rem) / 2);
    padding: 0;
  }
}
.pagePamphlet .pagePamphlet__cnt .pagePamphlet__document .pagePamphlet__frame .pagePamphlet__docList .pagePamphlet__item figure {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  margin-bottom: 1.8rem;
  -webkit-box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.16);
          box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width:768px) {
  .pagePamphlet .pagePamphlet__cnt .pagePamphlet__document .pagePamphlet__frame .pagePamphlet__docList .pagePamphlet__item figure {
    margin-bottom: 1rem;
  }
}
.pagePamphlet .pagePamphlet__cnt .pagePamphlet__document .pagePamphlet__frame .pagePamphlet__docList .pagePamphlet__item p {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pagePamphlet .pagePamphlet__cnt .pagePamphlet__document .pagePamphlet__frame .pagePamphlet__docList .pagePamphlet__item p {
    font-size: 1.3rem;
  }
}
.pagePamphlet .pagePamphlet__cnt .pagePamphlet__document .page__tabNote {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 15px;
}
@media only screen and (max-width:768px) {
  .pagePamphlet .pagePamphlet__cnt .pagePamphlet__document .page__tabNote {
    font-size: 13px;
    margin-bottom: 15px;
    text-align: left;
  }
}
.pagePamphlet .pagePamphlet__cnt .pagePamphlet__policy {
  margin-bottom: 18.3rem;
}
@media only screen and (max-width:768px) {
  .pagePamphlet .pagePamphlet__cnt .pagePamphlet__policy {
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width:768px) {
  .pagePamphlet .pagePamphlet__cnt .pagePamphlet__policy .page__title {
    margin-bottom: 3.2rem;
  }
}
.pagePamphlet .pagePamphlet__cnt .pagePamphlet__policy .pagePamphlet__frame .pagePamphlet__policyList {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5rem 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:768px) {
  .pagePamphlet .pagePamphlet__cnt .pagePamphlet__policy .pagePamphlet__frame .pagePamphlet__policyList {
    gap: 2rem;
  }
}
.pagePamphlet .pagePamphlet__cnt .pagePamphlet__policy .pagePamphlet__frame .pagePamphlet__policyList .pagePamphlet__item {
  width: calc((100% - 2rem) / 2);
  min-height: 8rem;
  overflow: hidden;
  border: 0.1rem solid #d3d3d3;
  border-radius: 0.4rem;
}
@media only screen and (max-width:768px) {
  .pagePamphlet .pagePamphlet__cnt .pagePamphlet__policy .pagePamphlet__frame .pagePamphlet__policyList .pagePamphlet__item {
    width: 100%;
    min-height: 6.6rem;
  }
}
.pagePamphlet .pagePamphlet__cnt .pagePamphlet__policy .pagePamphlet__frame .pagePamphlet__policyList .pagePamphlet__item a {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 1.3rem 7.4rem 1.3rem 2.2rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  background: #ffffff;
}
@media only screen and (max-width:768px) {
  .pagePamphlet .pagePamphlet__cnt .pagePamphlet__policy .pagePamphlet__frame .pagePamphlet__policyList .pagePamphlet__item a {
    padding: 2.1rem 5.6rem 2.1rem 2rem;
    line-height: 1.4;
  }
}
.pagePamphlet .pagePamphlet__cnt .pagePamphlet__policy .pagePamphlet__frame .pagePamphlet__policyList .pagePamphlet__item a::after {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: absolute;
  top: 50%;
  right: 2.4rem;
  width: 5rem;
  height: 5rem;
  content: "";
  background: url(../image/common/icon-pdf_fill_red.png) no-repeat center center/100% auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width:768px) {
  .pagePamphlet .pagePamphlet__cnt .pagePamphlet__policy .pagePamphlet__frame .pagePamphlet__policyList .pagePamphlet__item a::after {
    right: 2rem;
    width: 3.6rem;
    height: 3.6rem;
  }
}
@media only screen and (min-width:769px) {
  .pagePamphlet .pagePamphlet__cnt .pagePamphlet__policy .pagePamphlet__frame .pagePamphlet__policyList .pagePamphlet__item a:hover {
    color: #ffffff;
    text-decoration: underline;
    background: #e60113;
  }
  .pagePamphlet .pagePamphlet__cnt .pagePamphlet__policy .pagePamphlet__frame .pagePamphlet__policyList .pagePamphlet__item a:hover::after {
    background: url(../image/common/icon-pdf_fill_white.png) no-repeat center center/100% auto;
  }
}
.pagePamphlet .pagePamphlet__cnt .page__btnBlock {
  margin-bottom: 18rem;
}
@media only screen and (max-width:768px) {
  .pagePamphlet .pagePamphlet__cnt .page__btnBlock {
    margin-bottom: 10rem;
  }
}

.pageTravelling .page__kv.-kv2::before {
  background-image: url(../image//employee-travelling/img-kv_pc.jpg);
}
@media only screen and (max-width:768px) {
  .pageTravelling .page__kv.-kv2::before {
    padding: 2.5rem 0 0;
    background-image: url(../image//employee-travelling/img-kv_sp.jpg);
  }
}
.pageTravelling .page_advList {
  max-width: 59rem;
}
.pageTravelling .page_advList .page__advItem {
  width: 50%;
}
@media only screen and (max-width:768px) {
  .pageTravelling .page_advList .page__advItem {
    width: 100%;
  }
}
.pageTravelling .pageTravelling__cnt .inner .pageTravelling__block {
  max-width: 110rem;
  margin: 0 auto 14.5rem;
}
@media only screen and (max-width:768px) {
  .pageTravelling .pageTravelling__cnt .inner .pageTravelling__block {
    margin: 0 auto 9.8rem;
  }
}
.pageTravelling .pageTravelling__cnt .inner .pageTravelling__block .pageTravelling__text {
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageTravelling .pageTravelling__cnt .inner .pageTravelling__block .pageTravelling__text {
    font-size: 1.3rem;
    font-weight: 500;
  }
}
.pageTravelling .pageTravelling__cnt .inner .pageTravelling__block .pageTravelling__text.-fillred {
  padding: 1.2rem 2rem;
  margin-bottom: 7.9rem;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  background: #d02d26;
  border-radius: 1rem;
}
@media only screen and (max-width:768px) {
  .pageTravelling .pageTravelling__cnt .inner .pageTravelling__block .pageTravelling__text.-fillred {
    padding: 1rem 1.5rem;
    margin-bottom: 4.1rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: left;
    border-radius: 0.5rem;
  }
}
@media only screen and (max-width:768px) {
  .pageTravelling .pageTravelling__cnt .inner .pageTravelling__block .pageTravelling__text.-text01 {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
  }
}
.pageTravelling .pageTravelling__cnt .inner .pageTravelling__block .pageTravelling__frame {
  max-width: 64rem;
  padding: 3.7rem 2rem 5.2rem;
  margin: 7.5rem auto 5.6rem;
  border: 0.3rem solid #cc0023;
  border-radius: 2rem;
}
@media only screen and (max-width:768px) {
  .pageTravelling .pageTravelling__cnt .inner .pageTravelling__block .pageTravelling__frame {
    padding: 3.3rem 1rem 4.7rem;
    margin: 5.6rem auto 5.9rem;
  }
}
.pageTravelling .pageTravelling__cnt .inner .pageTravelling__block .pageTravelling__frame .pageTravelling__text {
  margin-bottom: 2.9rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
}
@media only screen and (max-width:768px) {
  .pageTravelling .pageTravelling__cnt .inner .pageTravelling__block .pageTravelling__frame .pageTravelling__text {
    margin-bottom: 2.3rem;
    font-size: 1.5rem;
    line-height: 2;
  }
}
.pageTravelling .pageTravelling__cnt .inner .pageTravelling__block .pageTravelling__frame .pageTravelling__img {
  display: block;
  max-width: 29.7rem;
  margin: 0 auto;
}
@media only screen and (max-width:768px) {
  .pageTravelling .pageTravelling__cnt .inner .pageTravelling__block .pageTravelling__frame .pageTravelling__img {
    max-width: 22.8rem;
  }
}

.pageEmployee .employee__kv {
  position: relative;
  padding-bottom: 5.6rem;
}
.pageEmployee .employee__kv .employeeTitle {
  font-family: "Noto Serif JP", serif;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  margin-bottom: 3.8rem;
  color: #ffffff;
  font-size: 6.8rem;
  font-weight: 600;
  line-height: 1.42647;
  text-align: center;
}
@media only screen and (max-width:960px) {
  .pageEmployee .employee__kv .employeeTitle {
    font-size: 6.2rem;
  }
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__kv .employeeTitle {
    margin-bottom: 0;
    font-size: 2.8rem;
  }
}
.pageEmployee .employee__kv .employeeTitle .employeeTitle__sub {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 3.4rem;
  margin: 0 auto 3rem;
  font-size: 1.6rem;
  line-height: 1.4375;
  border: 1px solid #ffffff;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__kv .employeeTitle .employeeTitle__sub {
    padding: 0.2rem 0.8rem;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
  }
}
.pageEmployee .employee__kv .swiper {
  overflow: hidden;
}
.pageEmployee .employee__kv .pageEmployeeKV__slider {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 40%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__kv .pageEmployeeKV__slider {
    padding-bottom: 56%;
  }
}
.pageEmployee .employee__kv .pageEmployeeKV__slider.-bg-cover {
  background-size: cover;
}
.pageEmployee .employee__kv .p-index-fv-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}
.pageEmployee .employee__kv .p-index-fv-nav .p-index-fv-nav__pagination {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pageEmployee .employee__kv .p-index-fv-nav .p-index-fv-nav__pagination .bullets {
  width: 52px;
  height: 3px;
  margin: 0 8px !important;
  background-color: transparent;
  border-radius: 0;
  outline: none;
  opacity: 1;
  padding-block: 20px;
}
.pageEmployee .employee__kv .p-index-fv-nav .p-index-fv-nav__pagination .bullets.swiper-pagination-bullet-active .bullets_inner {
  background-color: #e60113;
}
.pageEmployee .employee__kv .p-index-fv-nav .p-index-fv-nav__pagination .bullets .bullets_inner {
  height: 3px;
  background-color: #f5f5f5;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
}
.pageEmployee .employee__kv .navigation {
  position: absolute;
  bottom: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: 2;
  width: 100%;
}
.pageEmployee .employee__kv .navigation .swiper-button-prev,
.pageEmployee .employee__kv .navigation .swiper-button-next {
  top: auto;
  bottom: 0;
  width: 5.2rem;
  height: 5.2rem;
  background: url(../image/common/icon-arrow_right_black_fill_white.png) no-repeat center center/100% auto;
  border-radius: 100%;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__kv .navigation .swiper-button-prev,
  .pageEmployee .employee__kv .navigation .swiper-button-next {
    display: none;
  }
}
.pageEmployee .employee__kv .navigation .swiper-button-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.pageEmployee .employee__kv .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.pageEmployee .employee__kv .kvPoint {
  gap: 4.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__kv .kvPoint {
    display: none;
  }
}
.pageEmployee .employee__kv .kvPoint .kvPoint__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.pageEmployee .employee__kv .kvPoint .kvPoint__head {
  font-family: "Poppins", sans-serif;
  padding: 0.6rem;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  background-color: #d02d26;
  border-radius: 20px 20px 0 0;
}
.pageEmployee .employee__kv .kvPoint .kvPoint__cnt {
  height: calc(100% - 10rem);
  padding: 1.8rem 1.6rem 4.2rem;
  margin-bottom: 1.7rem;
  background-color: #ffffff;
  -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.16);
  border-radius: 0 0 20px 20px;
}
.pageEmployee .employee__kv .kvPoint .kvPoint__img {
  width: 11rem;
  margin: 0 auto 0.7rem;
}
.pageEmployee .employee__kv .kvPoint .kvPoint__ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.pageEmployee .employee__kv .kvPoint .kvPoint__des {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5;
}
.pageEmployee .employee__kv .kvBand {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 0;
  background-color: #f9d95b;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__kv .kvBand {
    gap: 1rem;
    padding: 0.6rem 0;
    top: 2px;
  }
}
.pageEmployee .employee__kv .kvBand .kvBand__lbl {
  font-family: "Noto Serif JP", serif;
  padding: 0 1.2rem;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 700;
  border: 1px solid #000000;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__kv .kvBand .kvBand__lbl {
    padding: 0.2rem 0.6rem;
    font-size: 1.2rem;
  }
}
.pageEmployee .employee__kv .kvBand .kvBand__cnt {
  font-size: 1.4rem;
  line-height: 1;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__kv .kvBand .kvBand__cnt {
    font-size: 0.8rem;
    line-height: inherit;
  }
}
.pageEmployee .employee__kv .kvBand .kvBand__cnt .en {
  font-size: 1.8rem;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__kv .kvBand .kvBand__cnt .en {
    font-size: 1.2rem;
  }
}
.pageEmployee .employee__kv .kvBand .kvBand__cnt .bold {
  font-weight: bold;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__kv__kvPoint .kvPoint {
    display: block;
    margin-bottom: 4.7rem;
  }
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__kv__kvPoint .kvPoint .kvPoint__item {
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__kv__kvPoint .kvPoint .kvPoint__head {
    font-family: "Poppins", sans-serif;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
    background-color: #d02d26;
    border-radius: 20px 20px 0 0;
  }
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__kv__kvPoint .kvPoint .kvPoint__cnt {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1.5rem 2rem 2rem 2rem;
    margin-bottom: 1rem;
    background-color: #ffffff;
    -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.16);
            box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.16);
    border-radius: 0 0 20px 20px;
  }
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__kv__kvPoint .kvPoint .kvPoint__img {
    width: 5.4rem;
  }
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__kv__kvPoint .kvPoint .kvPoint__ttl {
    font-family: "Noto Serif JP", serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.267;
  }
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__kv__kvPoint .kvPoint .kvPoint__des {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
  }
}
.pageEmployee .employee__insurance {
  margin-bottom: 9.5rem;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__insurance {
    margin-bottom: 6rem;
  }
}
.pageEmployee .employee__insurance .page__title {
  margin-bottom: 4rem;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__insurance .page__title {
    margin-bottom: 3rem;
  }
}
.pageEmployee .employee__insurance .insuranceList {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 9rem;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__insurance .insuranceList {
    display: block;
    margin-bottom: 3rem;
  }
}
.pageEmployee .employee__insurance .insuranceList .insuranceItem {
  width: calc((100% - 7.4rem) / 3);
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__insurance .insuranceList .insuranceItem {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.pageEmployee .employee__insurance .insuranceList .insuranceLink {
  display: block;
}
.pageEmployee .employee__insurance .insuranceList .insuranceLink .insuranceImg {
  overflow: hidden;
}
.pageEmployee .employee__insurance .insuranceList .insuranceLink .insuranceImg img {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  width: 100%;
}
.pageEmployee .employee__insurance .insuranceList .insuranceLink .insuranceCnt {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.5rem 2rem;
  color: #ffffff;
  background-color: #444444;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__insurance .insuranceList .insuranceLink .insuranceCnt {
    padding: 1.3rem 2rem;
  }
}
.pageEmployee .employee__insurance .insuranceList .insuranceLink .insuranceTtl {
  position: relative;
  width: 100%;
  padding-right: 4rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
.pageEmployee .employee__insurance .insuranceList .insuranceLink .insuranceTtl:after {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: absolute;
  top: 50%;
  right: 0;
  width: 3rem;
  height: 3rem;
  content: "";
  background: url(../image/common/icon-arrow_right_stroke_white.png) no-repeat center center/100% auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__insurance .insuranceList .insuranceLink .insuranceTtl:after {
    width: 2.8rem;
    height: 2.8rem;
  }
}
.pageEmployee .employee__insurance .insuranceList .insuranceLink:hover .insuranceImg img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.pageEmployee .employee__insurance .insuranceList .insuranceLink:hover .insuranceCnt {
  padding: 1.5rem 3rem;
  background-color: #d02d26;
}
.pageEmployee .employee__insurance .insuranceList .insuranceLink:hover .insuranceTtl::after {
  background: url(../image/common/icon-arrow_right_fill_white.png) no-repeat center center/100% auto;
}
.pageEmployee .employee__recruitProcedure {
  padding: 8.7rem 0 12rem;
  background-color: #fcfaf5;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure {
    padding: 5rem 0 6rem;
  }
}
.pageEmployee .employee__recruitProcedure .employee__recruitProcedureTitle {
  margin-bottom: 2.4rem;
  font-size: 2.8rem;
  font-weight: 600;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .employee__recruitProcedureTitle {
    font-size: 2.2rem;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__head {
  margin-bottom: 4.7rem;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__head {
    margin-bottom: 3rem;
    font-size: 2rem;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow {
  margin-bottom: 3rem;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__flow {
    margin-bottom: 2rem;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .page__accordion .accordion__cnt {
  margin-bottom: 7rem;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__flow .page__accordion .accordion__cnt {
    margin-bottom: 4rem;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__webRecruitment {
  margin-bottom: 12rem;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__webRecruitment {
    margin-bottom: 5rem;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section {
  position: relative;
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .page__title {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 calc(1.7rem + 34px);
  padding-right: 35rem;
  margin-bottom: 4.5rem;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .page__title {
    gap: 0;
    padding-right: 0;
    margin-bottom: 3rem;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .page__title .title__tag {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1.5rem;
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 2.15;
  background-color: #d02d26;
  border-radius: 500px;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .page__title .title__tag {
    position: relative;
    width: calc(100% + 3.2rem);
    padding: 0.3rem 1.5rem;
    margin: 1.2rem 0 2.1rem -3.2rem;
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .page__title .title__sub1 {
  margin-left: -34px;
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .page__title .title__sub1 {
    width: calc(100% + 3.2rem);
    margin-left: -3.2rem;
    font-size: 1.3rem;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .page__title .title__sub2 {
  display: block;
  width: 100%;
  margin-top: 1.6rem;
  margin-left: -34px;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 2.14;
  white-space: nowrap;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .page__title .title__sub2 {
    width: calc(100% + 3.2rem);
    margin-top: 0.5rem;
    margin-left: -3.2rem;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.583;
    white-space: normal;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .flow__step {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4.7rem;
  border: 1px solid #bebebe;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .flow__step {
    display: block;
    margin-bottom: 4.9rem;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .flow__step::after {
  position: absolute;
  top: calc(100% + 1.4rem);
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-color: #e30314 transparent transparent transparent;
  border-style: solid;
  border-width: 2.1rem 2.1rem 0 2.1rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .flow__step:last-of-type {
  margin-bottom: 0;
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .flow__step:last-of-type::after {
  display: none;
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__head {
  font-family: "Poppins", sans-serif;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.7rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 126px;
  font-weight: 500;
  background-color: #f7f3e8;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__head {
    width: 100%;
    padding: 1rem;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__head .step__head__lbl {
  color: #d02d26;
  font-size: 1.5rem;
  text-transform: uppercase;
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__head .step__head__no {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 35px;
  height: 35px;
  color: #ffffff;
  font-size: 1.8rem;
  background-color: #d02d26;
  border-radius: 50%;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__head .step__head__no {
    width: 29px;
    height: 29px;
    margin-left: 0.5rem;
    font-size: 1.5rem;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__head .step__head__noSub {
  color: #d02d26;
  font-size: 1.8rem;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__head .step__head__noSub {
    font-size: 1.5rem;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1.2rem 2rem 1.2rem 3rem;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.8125;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont {
    padding: 2rem;
    font-size: 1.3rem;
    line-height: 1.46;
  }
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .sp_lh_2 {
    line-height: 2;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .bold {
  font-weight: 700;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .bold {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .sp_bold {
    font-weight: 700 !important;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .medium {
  font-weight: 500;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .sp_medium {
    font-weight: 500 !important;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .small {
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.93;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .small {
    font-size: 1.2rem;
    line-height: 1.583;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .highlight {
  color: #e60113;
  font-weight: 700;
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .mb_15 {
  margin-bottom: 1.5rem;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .mb_15 {
    margin-bottom: 1.2rem;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .mb_20 {
  margin-bottom: 2rem;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .mb_20 {
    margin-bottom: 1.2rem;
  }
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .sp_mb_9 {
    margin-bottom: 0.9rem;
  }
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .sp_mb_12 {
    margin-bottom: 1.2rem;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .step__ttl {
  color: #00319f;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .step__ttl {
    margin-bottom: 1.3rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .step__tagList {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .step__tagList {
    gap: 0 0.5rem;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .step__tagList .step__tag {
  padding: 0.3rem 2rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 500;
  background-color: #f5f5f5;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .step__tagList .step__tag {
    padding: 0.2rem 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .step__tagList .step__tag.-gray {
  color: #ffffff;
  background-color: #a5a5a5;
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .step__tagList .step__tag.-break {
  width: 100%;
  padding: 0;
  margin: 0;
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .step__link {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  color: #e60113;
  font-weight: 500;
  border-bottom: 1px solid #e60113;
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .step__link:hover {
  opacity: 0.7;
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .exitingInsurance__box {
  padding: 1.6rem 2.4rem;
  margin-top: 2.4rem;
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .exitingInsurance__box .exitingInsurance__lst {
  gap: 2.4rem;
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .exitingInsurance__box .exitingInsurance__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 11rem;
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .exitingInsurance__box .exitingInsurance__des {
  font-size: 1.2rem;
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .exitingInsurance__box .exitingInsurance__item {
  font-size: 1.2rem;
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .exitingInsurance__box .exitingInsurance__links {
  text-align: left;
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__flow .flow__section .flow__list .step__cont .exitingInsurance__box .exitingInsurance__link {
  font-size: 1.2rem;
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__exitingInsurance {
  margin-bottom: 3rem;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__exitingInsurance {
    margin-bottom: 2rem;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__exitingInsurance .exitingInsurance__ttl {
  margin-bottom: 2.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.667;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__exitingInsurance .exitingInsurance__ttl {
    margin-bottom: 2rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__exitingInsurance .exitingInsurance__ttl .highlight {
  color: #e60113;
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__exitingInsurance .exitingInsurance__ttl2 {
  font-family: "Noto Serif JP", serif;
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 1.9rem;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.9583;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__exitingInsurance .exitingInsurance__ttl2 {
    margin-bottom: 1rem;
    font-size: 1.7rem;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__exitingInsurance .exitingInsurance__ttl2::before, .pageEmployee .employee__recruitProcedure .recruitProcedure__exitingInsurance .exitingInsurance__ttl2::after {
  position: absolute;
  top: 50%;
  width: 1px;
  height: 2.8rem;
  content: "";
  background: #000000;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__exitingInsurance .exitingInsurance__ttl2::before, .pageEmployee .employee__recruitProcedure .recruitProcedure__exitingInsurance .exitingInsurance__ttl2::after {
    height: 2.3rem;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__exitingInsurance .exitingInsurance__ttl2::before {
  left: -1.7rem;
  -webkit-transform: translateY(-50%) rotate(-30deg);
          transform: translateY(-50%) rotate(-30deg);
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__exitingInsurance .exitingInsurance__ttl2::after {
  right: -1.7rem;
  -webkit-transform: translateY(-50%) rotate(30deg);
          transform: translateY(-50%) rotate(30deg);
}
.exitingInsurance__box {
  max-width: 86rem;
  padding: 3.5rem 8rem;
  margin: 0 auto 2rem;
  background-color: #f5f5f5;
  border-radius: 10px;
}
@media only screen and (max-width:768px) {
  .exitingInsurance__box {
    padding: 3rem 2rem;
  }
}
.exitingInsurance__box .exitingInsurance__lst {
  gap: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:768px) {
  .exitingInsurance__box .exitingInsurance__lst {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
  }
}
.exitingInsurance__box .exitingInsurance__lst .exitingInsurance__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  font-size: 1.2rem;
}
@media only screen and (max-width:768px) {
  .exitingInsurance__box .exitingInsurance__lst .exitingInsurance__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    width: 100%;
  }
}
.exitingInsurance__box .exitingInsurance__lst .exitingInsurance__item .exitingInsurance__itemText {
  font-size: 1.2rem;
}
.exitingInsurance__box .exitingInsurance__lst .exitingInsurance__logo {
  position: static;
  display: block;
  margin-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
  min-height: 12rem;
}
@media only screen and (max-width:768px) {
  .exitingInsurance__box .exitingInsurance__lst .exitingInsurance__logo {
    margin-bottom: 1.5rem;
    min-height: 10rem;
  }
}
.exitingInsurance__box .exitingInsurance__lst .exitingInsurance__logo img {
  position: static;
  width: 104%;
  max-width: 104%;
  margin-left: -2%;
}
.exitingInsurance__box .exitingInsurance__lst .exitingInsurance__logo span {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.5rem;
  line-height: 1;
}
@media only screen and (max-width:768px) {
  .exitingInsurance__box .exitingInsurance__lst .exitingInsurance__logo span {
    font-size: 1.2rem;
    line-height: 1.583;
  }
}
.exitingInsurance__box .exitingInsurance__lst .exitingInsurance__logo .margin-top-plus {
  margin-top: 0.8rem;
}
@media only screen and (max-width:768px) {
  .exitingInsurance__box .exitingInsurance__lst .exitingInsurance__logo .margin-top-plus {
    margin-top: 0;
  }
}
@media only screen and (max-width:768px) {
  .exitingInsurance__box .exitingInsurance__lst .exitingInsurance__logo .margin-top-minus {
    margin-bottom: 0.8rem;
  }
}
.exitingInsurance__box .exitingInsurance__lst .exitingInsurance__des {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 2.46;
}
@media only screen and (max-width:768px) {
  .exitingInsurance__box .exitingInsurance__lst .exitingInsurance__des {
    font-size: 1.2rem;
    line-height: 1.583;
  }
}
.exitingInsurance__box .exitingInsurance__lst .exitingInsurance__links {
  text-align: left;
}
.exitingInsurance__box .exitingInsurance__lst .exitingInsurance__link {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  color: #e60113;
  font-weight: 500;
  line-height: 1.5;
  border-bottom: 1px solid #d02d26;
}
@media only screen and (max-width:768px) {
  .exitingInsurance__box .exitingInsurance__lst .exitingInsurance__link {
    font-size: 1.3rem;
    line-height: 2;
  }
}
.exitingInsurance__box .exitingInsurance__lst .exitingInsurance__link:hover {
  opacity: 0.7;
}
.exitingInsurance__box .exitingInsurance__lst .exitingInsurance__link.-text-black {
  border-bottom: 1px solid #000000;
}

.pageEmployee .employee__recruitProcedure .recruitProcedure__exitingInsurance .exitingInsurance__bottomText {
  padding-top: 4rem;
  font-size: 1.4rem;
  font-weight: 600;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__exitingInsurance .exitingInsurance__bottomText {
    font-size: 1.2rem;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__exitingInsurance .exitingInsurance__meijiDesc {
  margin-top: 1em;
  font-size: 1.3rem;
  line-height: 1.4;
  text-align: left;
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__exitingInsurance .exitingInsurance__meijiDesc * {
  font-size: 1.3rem !important;
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__exitingInsurance .exitingInsurance__txt {
  color: #666b71;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7857;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__exitingInsurance .exitingInsurance__txt {
    font-size: 1.3rem;
    line-height: 1.46;
    text-align: left;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__AutomobileFire {
  margin-bottom: 5rem;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__AutomobileFire {
    margin-bottom: 3rem;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__AutomobileFire .page__accordion .accordion__title {
  line-height: 1.25;
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__AutomobileFire .page__accordion .accordion__title span {
  font-size: 1.2rem;
  font-weight: 400;
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__AutomobileFire .flow__automobileFire.-last {
  margin-top: 3.8rem;
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__AutomobileFire .flow__automobileFireList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6rem;
  row-gap: 3rem;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__AutomobileFire .flow__automobileFireList {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__AutomobileFire .flow__automobileFireList .flow__automobileFireListItem {
  cursor: pointer;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc((100% - 8rem) / 2);
  height: 8rem;
  padding: 0 5rem 0 3.9rem;
  color: #000000;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  background: #ffffff;
  border: 0.2rem solid #e60113;
  border-radius: 0.5rem;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__AutomobileFire .flow__automobileFireList .flow__automobileFireListItem {
    width: 100%;
    height: 6.6rem;
    padding: 0 5rem 0 1.8rem;
    margin: 0;
    font-size: 1.5rem;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__AutomobileFire .flow__automobileFireList .flow__automobileFireListItem::after {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  content: "";
  background: url(../image/common/icon-arrow_fill_red.svg) no-repeat center center/100% auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (min-width:769px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__AutomobileFire .flow__automobileFireList .flow__automobileFireListItem:hover {
    color: #ffffff;
    background: #d02d26;
    border: 0.2rem solid #d02d26;
  }
  .pageEmployee .employee__recruitProcedure .recruitProcedure__AutomobileFire .flow__automobileFireList .flow__automobileFireListItem:hover::after {
    background: url(../image/common/icon-arrow_fill_white.svg) no-repeat center center/100% auto;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__btn {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 80rem;
  padding: 3.2rem;
  margin: 0 auto;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.44;
  background-color: #666b71;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__btn {
    max-width: 100%;
    padding: 2rem;
    font-size: 1.5rem;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__btn::after {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: absolute;
  top: 50%;
  right: 5rem;
  width: 4rem;
  height: 4rem;
  content: "";
  background: url(../image/common/icon-arrow_right_stroke_white.png) no-repeat center center/100% auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__btn::after {
    right: 2rem;
    width: 2.6rem;
    height: 2.6rem;
  }
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__btn:hover {
  background-color: #444444;
}
.pageEmployee .employee__recruitProcedure .recruitProcedure__btn:hover:after {
  right: 6rem;
  background: url(../image/common/icon-arrow_right_fill_white02.png) no-repeat center center/100% auto;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__recruitProcedure .recruitProcedure__btn:hover:after {
    right: 3rem;
  }
}
.pageEmployee .employee__faq {
  padding-bottom: 12rem;
  background-color: #fcfaf5;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__faq {
    padding-bottom: 10rem;
  }
}
.pageEmployee .employee__faq .faq__head {
  margin-bottom: 5.2rem;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__faq .faq__head {
    margin-bottom: 3rem;
    font-size: 2rem;
  }
}
.pageEmployee .employee__faq .page__tabAccor {
  margin-bottom: 5.2rem;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__faq .page__tabAccor {
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__faq .page__tabAccor .page__tabList {
    margin-bottom: 0;
  }
}
.pageEmployee .employee__faq .page__tabAccor .page__tabContent {
  padding: 2rem 0;
}
.pageEmployee .employee__faq .page__tabAccor .page__tabList {
  gap: 0.9rem;
  border: none;
}
@media only screen and (min-width:769px) {
  .pageEmployee .employee__faq .page__tabAccor .page__tabTitle {
    width: calc((100% - 2.7rem) / 4);
    height: 6rem;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.44;
    background: #d3d3d3;
    border-radius: 5px;
  }
}
@media only screen and (min-width:769px) {
  .pageEmployee .employee__faq .page__tabAccor .page__tabTitle::after {
    display: none;
  }
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__faq .page__tabAccor .page__tabTitle::after {
    right: 1.5rem;
    width: 2.4rem;
    height: 2.4rem;
    background: url(../image/common/icon-arrow_fill_red2.svg) no-repeat center center/100% auto;
  }
}
@media only screen and (min-width:769px) {
  .pageEmployee .employee__faq .page__tabAccor .page__tabTitle.-active {
    font-weight: 700;
  }
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__faq .faq__more {
    margin: 4rem 0 -2rem;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
  }
}
.pageEmployee .employee__faq .faq__btn {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 80rem;
  padding: 3.2rem;
  margin: 0 auto;
  color: #000000;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.44;
  background-color: #ffd83a;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__faq .faq__btn {
    max-width: 100%;
    padding: 2rem;
    font-size: 1.5rem;
  }
}
.pageEmployee .employee__faq .faq__btn::after {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: absolute;
  top: 50%;
  right: 5rem;
  width: 4rem;
  height: 4rem;
  content: "";
  background: url(../image/common/icon-arrow_right_stroke.png) no-repeat center center/100% auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__faq .faq__btn::after {
    right: 2rem;
    width: 2.6rem;
    height: 2.6rem;
  }
}
.pageEmployee .employee__faq .faq__btn:hover {
  background-color: #ffe37e;
}
.pageEmployee .employee__faq .faq__btn:hover:after {
  right: 6rem;
  background: url(../image/common/icon-arrow_right_fill.png) no-repeat center center/100% auto;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__faq .faq__btn:hover:after {
    right: 3rem;
  }
}
.pageEmployee .employee__faq .faq__box {
  margin-bottom: 4rem;
}
.pageEmployee .employee__faq .faq__box:last-of-type {
  margin-bottom: 0;
}
.pageEmployee .employee__faq .faq__box .faq__boxHead {
  padding-bottom: 0.5rem;
  margin: 1.5rem 0 3rem;
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 2px solid #d02d26;
}
@media only screen and (max-width:768px) {
  .pageEmployee .employee__faq .faq__box .faq__boxHead {
    margin: 1rem 0 2rem;
    font-size: 1.8rem;
  }
}
.pageEmployee .employee__faq .page__tabNote {
  font-size: 13px;
  margin: 15px 0 0 15px;
}

.pageEnNav {
  font-family: "Poppins", sans-serif;
}
.pageEnNav .page__breadcrumb {
  font-family: "Noto Sans JP", sans-serif;
}
.pageEnNav .page__title.-title02 {
  margin-bottom: 3rem;
  font-size: 2.6rem;
  font-weight: 500;
}
@media only screen and (max-width:768px) {
  .pageEnNav .page__title.-title02 {
    margin-bottom: 2rem;
    font-size: 2.4rem;
  }
}
.pageEnNav .pageEnNav__anchor {
  margin-bottom: 12rem;
}
@media only screen and (max-width:768px) {
  .pageEnNav .pageEnNav__anchor {
    display: none;
  }
}
.pageEnNav .pageEnNav__anchor .anchor__lst {
  gap: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 110rem;
  margin: 0 auto 12rem;
}
.pageEnNav .pageEnNav__anchor .anchor__lst .anchor__item {
  width: calc((100% - 3.6rem) / 3);
  height: 6.6rem;
}
.pageEnNav .pageEnNav__anchor .anchor__lst .anchor__item .anchor__link {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0 5.2rem 0 2.7rem;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  background: #4a4a4a;
  border-radius: 0.5rem;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.pageEnNav .pageEnNav__anchor .anchor__lst .anchor__item .anchor__link::after {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  content: "";
  background: url(../image/common/icon-arrow_fill_down.svg) no-repeat center center/100% auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (min-width:769px) {
  .pageEnNav .pageEnNav__anchor .anchor__lst .anchor__item .anchor__link:hover {
    background: #e60113;
  }
}
.pageEnNav .pageEnNav__about {
  margin-bottom: 18rem;
}
@media only screen and (max-width:768px) {
  .pageEnNav .pageEnNav__about {
    margin-bottom: 10rem;
  }
}
.pageEnNav .pageEnNav__about .about__txt {
  font-size: 1.8rem;
  line-height: 1.55;
}
@media only screen and (max-width:768px) {
  .pageEnNav .pageEnNav__about .about__txt {
    font-size: 1.5rem;
    line-height: 1.667;
  }
}
.pageEnNav .pageEnNav__company {
  margin-bottom: 18rem;
}
@media only screen and (max-width:768px) {
  .pageEnNav .pageEnNav__company {
    margin-bottom: 10rem;
  }
}
.pageEnNav .pageEnNav__company .company__table {
  width: 100%;
  border-collapse: collapse;
  border-bottom: 1px solid #cccccc;
}
@media only screen and (max-width:768px) {
  .pageEnNav .pageEnNav__company .company__table {
    margin-bottom: 10rem;
    border-bottom: 1px solid #e30316;
  }
}
.pageEnNav .pageEnNav__company .company__table tr {
  border-top: 1px solid #cccccc;
}
.pageEnNav .pageEnNav__company .company__table tr th {
  width: 25.7rem;
  padding: 3rem 1.5rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.23;
  background-color: #f5f5f5;
  border-right: 1px solid #cccccc;
}
@media only screen and (max-width:768px) {
  .pageEnNav .pageEnNav__company .company__table tr th {
    width: 11.6rem;
    font-size: 1.3rem;
  }
}
.pageEnNav .pageEnNav__company .company__table tr td {
  padding: 3.5rem 4rem;
  font-size: 1.6rem;
  line-height: 1.625;
}
@media only screen and (max-width:768px) {
  .pageEnNav .pageEnNav__company .company__table tr td {
    padding: 3rem 2rem;
    font-size: 1.3rem;
    line-height: 1.46;
  }
}
.pageEnNav .pageEnNav__company .company__table tr td ul li {
  font-size: 1.6rem;
  line-height: 1.625;
}
@media only screen and (max-width:768px) {
  .pageEnNav .pageEnNav__company .company__table tr td ul li {
    margin-bottom: 1.625em;
    font-size: 1.3rem;
    line-height: 1.46;
  }
}
.pageEnNav .pageEnNav__contact {
  margin-bottom: 18rem;
}
@media only screen and (max-width:768px) {
  .pageEnNav .pageEnNav__contact {
    margin-bottom: 10rem;
  }
}
.pageEnNav .pageEnNav__contact .contact__lst {
  gap: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:768px) {
  .pageEnNav .pageEnNav__contact .contact__lst {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
}
.pageEnNav .pageEnNav__contact .contact__lst .contact__item {
  gap: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  line-height: 1.625;
}
@media only screen and (max-width:768px) {
  .pageEnNav .pageEnNav__contact .contact__lst .contact__item {
    gap: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.667;
  }
}
.pageEnNav .pageEnNav__contact .contact__lst .contact__name {
  font-weight: 500;
}
@media only screen and (max-width:768px) {
  .pageEnNav .pageEnNav__contact .contact__lst .contact__name {
    width: 12.3rem;
  }
}
.pageEnNav .pageEnNav__partner {
  margin-bottom: 2rem;
}
@media only screen and (max-width:768px) {
  .pageEnNav .pageEnNav__partner {
    margin-bottom: 1.5rem;
  }
}
.pageEnNav .pageEnNav__partner .partner__logo {
  width: 22rem;
  margin-right: -2rem;
  margin-left: auto;
}
.pageEnNav .pageEnNav__partner .partner__logo img {
  margin-bottom: -0.4rem;
}
@media only screen and (max-width:768px) {
  .pageEnNav .pageEnNav__partner .partner__logo {
    width: 16.8rem;
    margin-right: auto;
  }
}

.p-index-loading {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100dvh;
  height: 100vh;
  background-color: #ffffff;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-name: loading;
          animation-name: loading;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes loading {
  0% {
    overflow: hidden;
    opacity: 1;
  }
  70% {
    overflow: hidden;
    opacity: 1;
  }
  100% {
    overflow: visible;
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes loading {
  0% {
    overflow: hidden;
    opacity: 1;
  }
  70% {
    overflow: hidden;
    opacity: 1;
  }
  100% {
    overflow: visible;
    opacity: 0;
    visibility: hidden;
  }
}

.p-index-loading-logo {
  position: absolute;
  top: calc(50% - 4.7rem - 5%);
  left: calc(50% - 15.85rem);
  z-index: 100000;
  width: 31.7rem;
  height: 9.4rem;
}
@media only screen and (max-width:768px) {
  .p-index-loading-logo {
    top: calc(50% - 2.9rem - 5%);
    left: calc(50% - 7.85rem);
    width: 15.7rem;
    height: 4.7rem;
  }
}
.p-index-loading-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-index-loading-progressbar {
  position: absolute;
  top: calc(50% - 4.7rem + 11rem - 5%);
  left: calc(50% - 15.85rem);
  width: 31.7rem;
  height: 4px;
  background-color: #f9edea;
  border-radius: 2px;
}
@media only screen and (max-width:768px) {
  .p-index-loading-progressbar {
    top: calc(50% - 2.9rem + 5.5rem - 5%);
    left: calc(50% - 7.85rem);
    width: 15.7rem;
  }
}
.p-index-loading-progressbar div {
  width: 20px;
  height: 100%;
  background-color: #e60113;
  border-radius: 2px;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-name: progressbar;
          animation-name: progressbar;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes progressbar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes progressbar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.pageFront {
  position: relative;
  z-index: 10;
  max-width: 100vw;
  overflow-x: hidden;
}
.pageFront::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  display: inline-block;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(../image/top/front_fixed_bg_1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.pageFront .p-index-fv {
  position: relative;
  height: 100vh;
  background-color: #ffffff;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-fv {
    height: 56rem;
  }
}
.pageFront .p-index-fv .p-index-fv__container {
  height: 100%;
}
.pageFront .p-index-fv-list {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.pageFront .p-index-fv-list li {
  position: relative;
  height: 100%;
}
.pageFront .p-index-fv-list li > a {
  display: block;
  width: 100%;
  height: 100vh;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-fv-list li > a {
    height: 100%;
  }
}
.pageFront .p-index-fv-list li picture {
  overflow: hidden;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-fv-list li picture {
    height: 100%;
  }
}
.pageFront .p-index-fv-list li picture img {
  display: block;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-fv-list li picture img {
    height: 100%;
  }
}
.pageFront .p-index-fv-list li.swiper-slide-prev .p-index-fv-message, .pageFront .p-index-fv-list li.swiper-slide-active .p-index-fv-message, .pageFront .p-index-fv-list li.swiper-slide-duplicate-active .p-index-fv-message {
  font-family: "Noto Serif JP", serif;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-name: ci_anim;
          animation-name: ci_anim;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.pageFront .p-index-fv-list li.swiper-slide-prev .p-index-fv-ci, .pageFront .p-index-fv-list li.swiper-slide-active .p-index-fv-ci, .pageFront .p-index-fv-list li.swiper-slide-duplicate-active .p-index-fv-ci {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-name: ci_anim;
          animation-name: ci_anim;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes ci_anim {
  0% {
    -webkit-transform: translateY(15vh);
            transform: translateY(15vh);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes ci_anim {
  0% {
    -webkit-transform: translateY(15vh);
            transform: translateY(15vh);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.pageFront .p-index-fv-list li.swiper-slide-prev .p-index-fv-copy p, .pageFront .p-index-fv-list li.swiper-slide-active .p-index-fv-copy p, .pageFront .p-index-fv-list li.swiper-slide-duplicate-active .p-index-fv-copy p {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-name: copy_anim;
          animation-name: copy_anim;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.pageFront .p-index-fv-list li.swiper-slide-prev .p-index-fv-copy p:nth-of-type(2), .pageFront .p-index-fv-list li.swiper-slide-active .p-index-fv-copy p:nth-of-type(2), .pageFront .p-index-fv-list li.swiper-slide-duplicate-active .p-index-fv-copy p:nth-of-type(2) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
@-webkit-keyframes copy_anim {
  0% {
    -webkit-transform: translateX(-20vw);
            transform: translateX(-20vw);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes copy_anim {
  0% {
    -webkit-transform: translateX(-20vw);
            transform: translateX(-20vw);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes slide_anim_m {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes slide_anim_m {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes slide_anim_d {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes slide_anim_d {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.pageFront .p-index-fv-message {
  position: absolute;
  top: 35%;
  right: 10rem;
  z-index: 99;
  opacity: 0;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-fv-message {
    top: auto;
    right: 0;
    bottom: 7rem;
    left: 0;
    width: 100%;
    text-align: center;
  }
}
.pageFront .p-index-fv-message span {
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 600;
  display: block;
  color: #ffffff;
  font-size: clamp(10px, 3.90625vw, 60px);
  text-shadow: rgba(0, 0, 0, 0.25) 1px 0 8px;
}
.pageFront .p-index-fv-message span:first-of-type {
  margin-left: 2rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-fv-message span:first-of-type {
    margin-left: 0;
  }
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-fv-message span {
    font-size: clamp(10px, 8.8vw, 33px);
  }
}
.pageFront .p-index-fv-ci {
  position: absolute;
  right: 5rem;
  bottom: 6rem;
  z-index: 99;
  display: block;
  width: 57.9rem;
  height: 11.5rem;
  opacity: 0;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-fv-ci {
    top: 2vh;
    right: 2rem;
    display: none;
    width: 27.4rem;
    height: 5.5rem;
  }
}
.pageFront .p-index-fv-ci img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.pageFront .p-index-fv-copy {
  position: absolute;
  top: 50%;
  left: 15rem;
  z-index: 99;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-fv-copy {
    top: 20rem;
    left: 4rem;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.pageFront .p-index-fv-copy p:first-of-type {
  margin-bottom: 3rem;
  font-size: clamp(10px, 3.6458333333vw, 56px);
}
.pageFront .p-index-fv-copy p:nth-of-type(2) {
  width: 20.5rem;
  font-size: clamp(10px, 1.0416666667vw, 16px);
  padding-block: 2rem;
}
.pageFront .p-index-fv-copy p:nth-of-type(2)::before {
  top: calc(50% - 1.3rem);
  right: 0;
  width: 3rem;
  height: 3rem;
}
.pageFront .p-index-fv-copy p:nth-of-type(2)::after {
  bottom: 0;
  left: 0;
}
.pageFront .p-index-fv-copy p:nth-of-type(2):hover {
  color: #e60113;
}
.pageFront .p-index-fv-copy p:nth-of-type(2):hover::before {
  background-image: url(../image/common/icon-arrow_right_fill.png);
}
.pageFront .p-index-fv-copy p:nth-of-type(2):hover::after {
  background-color: #e60113;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-fv-copy p:first-of-type {
    margin-bottom: 2rem;
    font-size: clamp(10px, 7.4666666667vw, 28px);
  }
  .pageFront .p-index-fv-copy p:nth-of-type(2) {
    width: 15.5rem;
    font-size: clamp(10px, 3.2vw, 12px);
    padding-block: 1.5rem;
  }
  .pageFront .p-index-fv-copy p:nth-of-type(2)::before {
    top: calc(50% - 1.1rem);
    right: 0;
    width: 2.2rem;
    height: 2.2rem;
  }
  .pageFront .p-index-fv-copy p:nth-of-type(2)::after {
    bottom: 0;
    left: 0;
  }
}
.pageFront .p-index-fv-copy p:first-of-type {
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 600;
  color: #ffffff;
}
.pageFront .p-index-fv-copy p:nth-of-type(2) {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  position: relative;
  display: block;
  color: #ffffff;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
.pageFront .p-index-fv-copy p:nth-of-type(2)::before {
  position: absolute;
  content: "";
  background-image: url(../image/common/icon-arrow_right_fill_white.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.pageFront .p-index-fv-copy p:nth-of-type(2)::after {
  position: absolute;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #ffffff;
}
.pageFront #p-index-fv-copy--risk p span:nth-of-type(2)::after {
  content: "\a";
  white-space: pre;
}
@media only screen and (max-width:768px) {
  .pageFront #p-index-fv-copy--risk p span:nth-of-type(1)::after, .pageFront #p-index-fv-copy--risk p span:nth-of-type(3)::after {
    content: "\a";
    white-space: pre;
  }
}
.pageFront .p-index-fv-nav {
  position: absolute;
  bottom: 40px;
  left: 0;
  z-index: 2;
  width: 100%;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-fv-nav {
    bottom: 15px;
  }
}
.pageFront .p-index-fv-nav .p-index-fv-nav__pagination {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pageFront .p-index-fv-nav .p-index-fv-nav__pagination .bullets {
  width: 52px;
  height: 3px;
  margin: 0 8px !important;
  background-color: transparent;
  border-radius: 0;
  outline: none;
  opacity: 1;
  padding-block: 20px;
}
.pageFront .p-index-fv-nav .p-index-fv-nav__pagination .bullets.swiper-pagination-bullet-active .bullets_inner {
  background-color: #e60113;
}
.pageFront .p-index-fv-nav .p-index-fv-nav__pagination .bullets .bullets_inner {
  height: 3px;
  background-color: #ffffff;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
}
.pageFront .p-index-news {
  padding-block: 9rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-news {
    padding: 0 2rem 10.5rem;
  }
}
.pageFront .p-index-news .p-index-news__container {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1000px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 16px -6px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 16px -6px rgba(0, 0, 0, 0.6);
  border-top: 3px solid #e60113;
  margin-inline: auto;
  padding-block: min(2.5rem, 25px);
  padding-inline: min(7rem, 70px);
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-news .p-index-news__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    padding-top: 2.5rem;
  }
}
.pageFront .p-index-news.is-view .p-index-news__bg {
  position: relative;
  width: 100%;
}
.pageFront .p-index-news.is-view .p-index-news__bg::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(../image//top/bg-news.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-news.is-view .p-index-news__bg::before {
    background-image: url(../image//top/bg-news_mobile.jpg);
  }
}
.pageFront .p-index-news-title {
  display: inline-block;
  margin-bottom: 3.5rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-news-title {
    margin-bottom: 2.5rem;
    padding-inline: 2rem;
  }
}
.pageFront .p-index-news-title span:first-of-type {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  position: relative;
  margin-right: 3rem;
  color: #e60113;
  font-size: 2.4rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-news-title span:first-of-type {
    margin-right: 2.8rem;
    font-size: 2rem;
  }
}
.pageFront .p-index-news-title span:first-of-type::after {
  position: absolute;
  top: 50%;
  right: -2.8rem;
  width: 1.6rem;
  height: 1px;
  content: "";
  background-color: #999999;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-news-title span:first-of-type::after {
    right: -2.5rem;
    width: 1.6rem;
  }
}
.pageFront .p-index-news-title span:last-of-type {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-news-title span:last-of-type {
    font-size: 1.5rem;
  }
}
.pageFront .p-index-news-viewAll {
  display: inline-block;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-news-viewAll {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: center;
  }
}
.pageFront .p-index-news-viewAll a {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  position: relative;
  color: #000000;
  letter-spacing: 0.08em;
  text-decoration: underline;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}
.pageFront .p-index-news-viewAll a:hover {
  color: #e60113;
}
.pageFront .p-index-news-viewAll a:hover::after {
  right: calc(50% - 5rem);
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-news-viewAll a {
    display: block;
    width: 100%;
    background-color: #f5f5f5;
    padding-block: 1.2rem;
  }
}
.pageFront .p-index-news-viewAll a::after {
  position: absolute;
  top: calc(50% - 0.5rem);
  right: calc(50% - 4.5rem);
  width: 1.5rem;
  height: 1rem;
  content: "";
  background-image: url(../image/common/icon-arrow_right_red.png);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: right 0.2s ease-out;
  transition: right 0.2s ease-out;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-news-viewAll a::after {
    top: calc(50% - 0.5rem);
    right: calc(50% - 4rem);
    width: 1.5rem;
    height: 1rem;
  }
}
.pageFront .p-index-news-viewAll a span {
  margin-right: 2.5rem;
  font-size: 1.4rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-news-viewAll a span {
    margin-right: 3rem;
    font-size: 1.3rem;
  }
}
.pageFront .p-index-news-list {
  width: 100%;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-news-list {
    padding-inline: 2rem;
  }
}
.pageFront .p-index-news-list li {
  margin-bottom: 1.4rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-news-list li {
    margin-bottom: 1.4rem;
  }
}
.pageFront .p-index-news-list li time {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  display: inline-block;
  margin-right: min(5rem, 50px);
  color: #999999;
  font-size: 1.3rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-news-list li time {
    display: block;
    font-size: 1.3rem;
  }
}
.pageFront .p-index-news-list li a {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
  padding-block: 1rem;
}
.pageFront .p-index-news-list li a::after {
  position: absolute;
  bottom: 0.6rem;
  left: 0;
  width: 0;
  height: 1px;
  content: "";
  background-color: #e60113;
  -webkit-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
.pageFront .p-index-news-list li a:hover::after {
  width: 100%;
}
.pageFront .p-index-news-list li a:hover span {
  color: #e60113;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-news-list li a {
    display: block;
    margin-bottom: 0.5rem;
    padding-block: 0.8rem;
  }
}
.pageFront .p-index-news-list li a span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  display: inline-block;
  color: #333333;
  font-size: 1.5rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-news-list li a span {
    font-size: 1.3rem;
  }
}
.pageFront .p-index-news-list li a img {
  display: inline-block;
  width: 4.2rem;
  height: 2rem;
  margin-left: 1rem;
  vertical-align: -0.3em;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-news-list li a img {
    width: 4.2rem;
    height: 2rem;
    margin-left: 1rem;
  }
}
.pageFront .p-index-news-list li:not(:last-of-type) {
  border-bottom: 1px solid #cccccc;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-news-list li:last-of-type {
    margin-bottom: 1rem;
  }
}
.pageFront .p-index-corporation {
  padding-bottom: 18rem;
  background-color: #ffffff;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-corporation {
    padding-bottom: 10rem;
  }
}
.pageFront .p-index-corporation .p-index-corporation__content {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 153.6rem;
  margin: 0 auto;
  margin-bottom: 6rem;
  overflow: hidden;
  margin-inline: auto;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-corporation .p-index-corporation__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 4rem 2rem 3.2rem;
    margin-bottom: 2.4rem;
  }
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-corporation .p-index-corporation__content::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: inline-block;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #e60113;
    border-radius: 1.5rem 0 0 1.5rem;
    -webkit-transform: translateX(2rem);
            transform: translateX(2rem);
  }
}
.pageFront .p-index-corporation .p-index-corporation__link {
  width: 100%;
  max-width: 153.6rem;
  padding: 0 2rem;
  margin-top: -11rem;
  margin-inline: auto;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-corporation .p-index-corporation__link {
    width: 1456px;
    max-width: 1456px;
    margin-top: 0;
  }
}
.pageFront .p-index-corporation-text {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1080px;
  padding-right: 2rem;
  padding-left: 5%;
  margin-left: auto;
  padding-block: min(5rem, 75px);
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-corporation-text {
    padding: 0;
    padding-left: 2rem;
  }
}
.pageFront .p-index-corporation-text::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: inline-block;
  width: 75vw;
  height: 100%;
  max-width: 75vw;
  content: "";
  background-color: #e60113;
  border-radius: 3rem 0 0 3rem;
  -webkit-transform: translateX(-20vw);
          transform: translateX(-20vw);
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-corporation-text::before {
    display: none;
  }
}
.pageFront .p-index-corporation-text .p-index-corporation-text__title {
  margin-bottom: 3.5rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-corporation-text .p-index-corporation-text__title {
    margin-bottom: 1rem;
  }
}
.pageFront .p-index-corporation-text .p-index-corporation-text__title span {
  color: #ffffff;
}
.pageFront .p-index-corporation-text .p-index-corporation-text__title span:first-of-type {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  position: relative;
  font-size: 2.4rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-corporation-text .p-index-corporation-text__title span:first-of-type {
    font-size: 1.2rem;
  }
}
.pageFront .p-index-corporation-text .p-index-corporation-text__title span:first-of-type::after {
  position: absolute;
  top: 50%;
  right: -4rem;
  width: 2.8rem;
  height: 1px;
  content: "";
  background-color: #ffffff;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-corporation-text .p-index-corporation-text__title span:first-of-type::after {
    right: -4rem;
    width: 2.8rem;
  }
}
.pageFront .p-index-corporation-text .p-index-corporation-text__title span:last-of-type {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  padding-left: 4.5rem;
  font-size: 1.8rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-corporation-text .p-index-corporation-text__title span:last-of-type {
    padding-left: 4.5rem;
    font-size: 1.1rem;
  }
}
.pageFront .p-index-corporation-text .p-index-corporation-text__copy {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  margin-bottom: 4.5rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-corporation-text .p-index-corporation-text__copy {
    margin-bottom: 1.5rem;
  }
}
.pageFront .p-index-corporation-text .p-index-corporation-text__copy span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  display: block;
  color: #ffffff;
  line-height: 1.4;
}
.pageFront .p-index-corporation-text .p-index-corporation-text__copy span:first-of-type {
  font-size: 3.4rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-corporation-text .p-index-corporation-text__copy span:first-of-type {
    font-size: 2.2rem;
  }
}
.pageFront .p-index-corporation-text .p-index-corporation-text__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  margin-bottom: 4.5rem;
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 2.2;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-corporation-text .p-index-corporation-text__lead {
    margin-bottom: 3rem;
    font-size: 1.2rem;
  }
}
.pageFront .p-index-corporation-text .p-index-corporation-text__link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  position: relative;
  display: block;
  width: 28rem;
  padding-left: 2.5rem;
  color: #ffffff;
  font-size: 1.6rem;
  border: 2px solid #ffffff;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  padding-block: min(2rem, 20px);
}
.pageFront .p-index-corporation-text .p-index-corporation-text__link:hover {
  padding-left: 3rem;
  color: #e60113;
  background-color: #ffffff;
}
.pageFront .p-index-corporation-text .p-index-corporation-text__link:hover::after {
  right: 3rem;
  background-image: url(../image/common/icon-arrow_right_red.png);
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-corporation-text .p-index-corporation-text__link {
    width: 26rem;
    font-size: 1.5rem;
    margin-inline: auto;
    padding-block: 1.5rem;
  }
}
.pageFront .p-index-corporation-text .p-index-corporation-text__link::after {
  position: absolute;
  top: calc(50% - 0.5rem);
  right: 2rem;
  width: 1.5rem;
  height: 1rem;
  content: "";
  background-image: url(../image/common/icon-arrow_right_white.png);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: right 0.2s ease-out;
  transition: right 0.2s ease-out;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-corporation-text .p-index-corporation-text__link::after {
    top: calc(50% - 0.5rem);
    right: 1rem;
    width: 1.6rem;
    height: 1rem;
  }
}
.pageFront .p-index-corporation-image {
  position: relative;
  z-index: 10;
  display: block;
  width: 100%;
  overflow: hidden;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-corporation-image {
    width: 100%;
    max-width: 100%;
    margin-bottom: 3.2rem;
    margin-left: -4rem;
  }
}
.pageFront .p-index-corporation-image img {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  will-change: transform;
}
.pageFront .p-index-corporation-image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.pageFront .p-index-corporation-linkTitle {
  padding-left: 6%;
  margin-bottom: 4rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-corporation-linkTitle {
    padding-left: 1rem;
    margin-bottom: 2rem;
    margin-left: 0;
  }
}
.pageFront .p-index-corporation-linkTitle h3 span {
  display: block;
  font-size: 1.4rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-corporation-linkTitle h3 span {
    font-size: 1.4rem;
  }
}
.pageFront .p-index-corporation-linkTitle h3 span:first-of-type {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #e60113;
  font-size: 3.5rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-corporation-linkTitle h3 span:first-of-type {
    font-size: 2.5rem;
  }
}
.pageFront .p-index-corporation-linkTitle h3 span:last-of-type {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.pageFront .p-index-corporation-linkList {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-corporation-linkList {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    max-width: calc(100vw - 2rem);
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .pageFront .p-index-corporation-linkList::-webkit-scrollbar {
    display: none;
  }
}
.pageFront .p-index-corporation-linkList li {
  position: relative;
  width: 25%;
  height: 14.5rem;
  margin: 0 1rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-corporation-linkList li {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 21.2rem;
    height: 12.2rem;
    min-width: 0;
    min-height: 0;
  }
  .pageFront .p-index-corporation-linkList li:first-child {
    margin-left: 0;
  }
}
.pageFront .p-index-corporation-linkList li a {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 1rem;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
.pageFront .p-index-corporation-linkList li a:hover p::after {
  background-image: url(../image/common/icon-arrow_right_fill.png);
}
.pageFront .p-index-corporation-linkList li a:hover img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.pageFront .p-index-corporation-linkList li a img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  will-change: transform;
  -webkit-filter: brightness(62%);
          filter: brightness(62%);
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-corporation-linkList li a img {
    border-radius: 1rem;
  }
}
.pageFront .p-index-corporation-linkList li a p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  color: #ffffff;
  font-size: clamp(2rem, 1.9174041298vw, 2.6rem);
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-corporation-linkList li a p {
    top: 3.5rem;
    font-size: 2rem;
  }
}
.pageFront .p-index-corporation-linkList li a p::after {
  display: inline-block;
  width: min(3rem, 30px);
  height: min(3rem, 30px);
  content: "";
  background-image: url(../image/common/icon-arrow_right_stroke_white.png);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: background-image 0.2s ease-out;
  transition: background-image 0.2s ease-out;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-corporation-linkList li a p::after {
    bottom: 2.3rem;
    left: calc(50% - 1.5rem);
    width: 3rem;
    height: 3rem;
  }
}
.pageFront .p-index-ourCompany {
  padding-top: 10rem;
  background-color: #ffffff;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-ourCompany {
    padding-top: 0;
  }
}
.pageFront .p-index-ourCompany .p-index-ourCompany__content {
  position: relative;
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1536px;
  margin-bottom: 6rem;
  margin-inline: auto;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-ourCompany .p-index-ourCompany__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-ourCompany .p-index-ourCompany__content::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: inline-block;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #f5f5f5;
  }
}
.pageFront .p-index-ourCompany .p-index-ourCompany__link {
  width: 100%;
  max-width: 1180px;
  padding: 0 2rem 8.8rem;
  background-color: #ffffff;
  margin-inline: auto;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-ourCompany .p-index-ourCompany__link {
    padding-bottom: 8rem;
    padding-inline: 2rem;
  }
}
.pageFront .p-index-ourCompany-text {
  position: relative;
  z-index: 10;
  width: 50%;
  padding-right: clamp(2rem, 5.8997050147vw, 8rem);
  padding-left: clamp(2rem, 5.8997050147vw, 8rem);
  margin-top: 6rem;
  padding-block: min(7.5rem, 75px);
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-ourCompany-text {
    width: 100%;
    padding-top: 6rem;
    padding-bottom: 4rem;
    margin-top: 0;
    padding-inline: 2rem;
  }
}
.pageFront .p-index-ourCompany-text::before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  display: inline-block;
  width: 80vw;
  height: 100%;
  max-width: 80vw;
  content: "";
  background-color: #f5f5f5;
  border-radius: 0 3rem 3rem 0;
  -webkit-transform: translate(30vw, 0);
          transform: translate(30vw, 0);
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-ourCompany-text::before {
    display: none;
  }
}
.pageFront .p-index-ourCompany-text .p-index-ourCompany-text__title {
  margin-bottom: 4rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-ourCompany-text .p-index-ourCompany-text__title {
    margin-bottom: 1rem;
  }
}
.pageFront .p-index-ourCompany-text .p-index-ourCompany-text__title span:first-of-type {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  position: relative;
  font-size: 2.4rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-ourCompany-text .p-index-ourCompany-text__title span:first-of-type {
    font-size: 1.2rem;
  }
}
.pageFront .p-index-ourCompany-text .p-index-ourCompany-text__title span:first-of-type::after {
  position: absolute;
  top: 50%;
  right: -4rem;
  width: 2.8rem;
  height: 1px;
  content: "";
  background-color: #e60113;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-ourCompany-text .p-index-ourCompany-text__title span:first-of-type::after {
    right: -4rem;
    width: 2.8rem;
  }
}
.pageFront .p-index-ourCompany-text .p-index-ourCompany-text__title span:last-of-type {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  padding-left: 4.5rem;
  font-size: 1.8rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-ourCompany-text .p-index-ourCompany-text__title span:last-of-type {
    padding-left: 4.5rem;
    font-size: 1.1rem;
  }
}
.pageFront .p-index-ourCompany-text .p-index-ourCompany-text__copy {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  margin-bottom: 4rem;
  line-height: 1.8;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-ourCompany-text .p-index-ourCompany-text__copy {
    margin-bottom: 1.5rem;
  }
}
.pageFront .p-index-ourCompany-text .p-index-ourCompany-text__copy span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  display: block;
  font-size: 3.4rem;
  line-height: 1.4;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-ourCompany-text .p-index-ourCompany-text__copy span {
    font-size: 2.2rem;
  }
}
.pageFront .p-index-ourCompany-text .p-index-ourCompany-text__copy span:last-of-type {
  color: #e60113;
}
.pageFront .p-index-ourCompany-text .p-index-ourCompany-text__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.2;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-ourCompany-text .p-index-ourCompany-text__lead {
    font-size: 1.2rem;
  }
}
.pageFront .p-index-ourCompany-image {
  position: relative;
  z-index: 10;
  width: 60%;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-ourCompany-image {
    width: 100%;
  }
}
.pageFront .p-index-ourCompany-image img {
  width: 100%;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-ourCompany-image img {
    height: 21rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.pageFront .p-index-ourCompany-linkList {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-ourCompany-linkList {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.pageFront .p-index-ourCompany-linkItem {
  width: 24%;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-ourCompany-linkItem {
    width: 48%;
    margin-bottom: 3.7rem;
  }
  .pageFront .p-index-ourCompany-linkItem:not(:nth-child(2n)) {
    margin-right: 4%;
  }
}
.pageFront .p-index-ourCompany-linkItem a {
  position: relative;
  display: block;
  height: 100%;
}
.pageFront .p-index-ourCompany-linkItem a:hover {
  border-bottom-width: 2px;
}
.pageFront .p-index-ourCompany-linkItem a:hover::before {
  background-image: url(../image/common/icon-arrow_right_fill.png);
  -webkit-transform: translateX(-1rem);
          transform: translateX(-1rem);
}
.pageFront .p-index-ourCompany-linkItem a:hover .p-index-ourCompany-linkItem__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.pageFront .p-index-ourCompany-linkItem a:hover .p-index-ourCompany-linkItem__text::after {
  width: 100%;
}
.pageFront .p-index-ourCompany-linkItem a:hover .p-index-ourCompany-linkItem__text span {
  color: #e60113;
  -webkit-transform: translateX(1rem);
          transform: translateX(1rem);
}
.pageFront .p-index-ourCompany-linkItem a::before {
  position: absolute;
  right: 2px;
  bottom: 1rem;
  width: 3rem;
  height: 3rem;
  max-width: 30px;
  max-height: 30px;
  content: "";
  background-image: url(../image/common/icon-arrow_right_stroke.png);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-ourCompany-linkItem a::before {
    bottom: 1rem;
    width: 2rem;
    height: 2rem;
  }
}
.pageFront .p-index-ourCompany-linkItem a .p-index-ourCompany-linkItem__img {
  margin-bottom: 1.2rem;
  overflow: hidden;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-ourCompany-linkItem a .p-index-ourCompany-linkItem__img {
    margin-bottom: 1rem;
  }
}
.pageFront .p-index-ourCompany-linkItem a .p-index-ourCompany-linkItem__img img {
  display: block;
  width: 100%;
  height: 14.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-ourCompany-linkItem a .p-index-ourCompany-linkItem__img img {
    height: 8.6rem;
  }
}
.pageFront .p-index-ourCompany-linkItem a .p-index-ourCompany-linkItem__text {
  position: relative;
}
.pageFront .p-index-ourCompany-linkItem a .p-index-ourCompany-linkItem__text::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #e60113;
  -webkit-transition: height 0.2s ease-out;
  transition: height 0.2s ease-out;
}
.pageFront .p-index-ourCompany-linkItem a .p-index-ourCompany-linkItem__text::after {
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 0;
  height: 1px;
  content: "";
  background-color: #e60113;
  -webkit-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
.pageFront .p-index-ourCompany-linkItem a .p-index-ourCompany-linkItem__text span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  display: block;
  padding-bottom: 1.4rem;
  color: #000000;
  font-size: 1.8rem;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-ourCompany-linkItem a .p-index-ourCompany-linkItem__text span {
    padding-bottom: 1rem;
    font-size: 1.4rem;
  }
}
.pageFront .p-index-recruitment {
  background-color: #ffffff;
}
.pageFront .p-index-recruitment .p-index-recruitment__container {
  width: 100%;
  max-width: 1536px;
  padding: 0 2rem;
  padding-bottom: 10rem;
  margin-inline: auto;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-recruitment .p-index-recruitment__container {
    padding-bottom: 6rem;
    margin-bottom: 11.5rem;
    padding-inline: 2rem;
  }
}
.pageFront .p-index-recruitment-lead {
  width: 100%;
  height: 60rem;
  max-width: 1388px;
  margin-left: auto;
  overflow: visible;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-recruitment-lead {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: auto;
    padding-top: 0;
    margin-bottom: 2.5rem;
    overflow: visible;
    text-align: center;
    background-image: none;
  }
}
.pageFront .p-index-recruitment-lead::before {
  display: inline-block;
  width: calc(100% + 2rem);
  height: 100%;
  margin-bottom: -24rem;
  content: "";
  background-image: url(../image//top/img-recruitment_mobile.jpg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  border-top-left-radius: 3rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-recruitment-lead::before {
    height: 21.5rem;
    margin-bottom: 3.2rem;
  }
}
.pageFront .p-index-recruitment-lead .p-index-recruitment-leadText {
  display: inline-block;
  padding: 6rem;
  padding-bottom: 0;
  padding-left: 0;
  background-color: #ffffff;
  border-radius: 0 4rem 0 0;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-recruitment-lead .p-index-recruitment-leadText {
    padding: 0;
  }
}
.pageFront .p-index-recruitment-lead .p-index-recruitment-lead__title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .pageFront .p-index-recruitment-lead .p-index-recruitment-lead__title {
    font-size: 3rem;
  }
}
.pageFront .p-index-recruitment-lead .p-index-recruitment-lead__title {
  color: #e60113;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-recruitment-lead .p-index-recruitment-lead__title {
    font-size: 1.3rem;
  }
}
.pageFront .p-index-recruitment-lead .p-index-recruitment-lead__copy {
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 600;
  font-size: 3.7rem;
  line-height: 1.4;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-recruitment-lead .p-index-recruitment-lead__copy {
    margin-bottom: 0.5rem;
    font-size: 3rem;
  }
}
.pageFront .p-index-recruitment-lead .p-index-recruitment-lead__en {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-recruitment-lead .p-index-recruitment-lead__en {
    font-size: 1.1rem;
  }
}
.pageFront .p-index-recruitment-container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 2.4rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-recruitment-container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.pageFront .p-index-recruitment-block {
  width: 100%;
  max-width: 57rem;
}
.pageFront .p-index-recruitment-block .p-index-recruitment-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2.6rem;
}
.pageFront .p-index-recruitment-block .p-index-recruitment-list .p-index-recruitment-item {
  width: calc((100% - 3rem) / 2);
  margin-bottom: 2rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-recruitment-block .p-index-recruitment-list .p-index-recruitment-item {
    width: calc((100% - 1.5rem) / 2);
    margin-bottom: 1.5rem;
  }
}
.pageFront .p-index-recruitment-block .p-index-recruitment-list .p-index-recruitment-item .p-index-recruitment-itemText {
  position: relative;
  display: block;
  padding-right: 3.2rem;
  font-size: 1.6rem;
  -webkit-transition: padding-left 0.2s ease-out;
  transition: padding-left 0.2s ease-out;
  padding-block: 1.5rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-recruitment-block .p-index-recruitment-list .p-index-recruitment-item .p-index-recruitment-itemText {
    padding-right: 2.2rem;
    font-size: 1.3rem;
    padding-block: 1rem;
  }
}
.pageFront .p-index-recruitment-block .p-index-recruitment-list .p-index-recruitment-item .p-index-recruitment-itemText::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #e60113;
}
.pageFront .p-index-recruitment-block .p-index-recruitment-list .p-index-recruitment-item .p-index-recruitment-itemText::after {
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 0;
  height: 1px;
  content: "";
  background-color: #e60113;
  -webkit-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
.pageFront .p-index-recruitment-block .p-index-recruitment-list .p-index-recruitment-item .p-index-recruitment-itemLink {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  position: relative;
  display: block;
  color: #000000;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.pageFront .p-index-recruitment-block .p-index-recruitment-list .p-index-recruitment-item .p-index-recruitment-itemLink:hover::before {
  background-image: url(../image/common/icon-arrow_right_fill.png);
  -webkit-transform: translate(-1rem, 50%);
          transform: translate(-1rem, 50%);
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-recruitment-block .p-index-recruitment-list .p-index-recruitment-item .p-index-recruitment-itemLink:hover::before {
    -webkit-transform: translate(0, 50%);
            transform: translate(0, 50%);
  }
}
.pageFront .p-index-recruitment-block .p-index-recruitment-list .p-index-recruitment-item .p-index-recruitment-itemLink:hover .p-index-recruitment-itemText {
  padding-left: 1rem;
  color: #e60113;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-recruitment-block .p-index-recruitment-list .p-index-recruitment-item .p-index-recruitment-itemLink:hover .p-index-recruitment-itemText {
    padding-left: 0rem;
  }
}
.pageFront .p-index-recruitment-block .p-index-recruitment-list .p-index-recruitment-item .p-index-recruitment-itemLink:hover .p-index-recruitment-itemText::after {
  width: 100%;
}
.pageFront .p-index-recruitment-block .p-index-recruitment-list .p-index-recruitment-item .p-index-recruitment-itemLink::before {
  position: absolute;
  right: 0;
  bottom: 50%;
  width: min(3rem, 30px);
  height: min(3rem, 30px);
  content: "";
  background-image: url(../image/common/icon-arrow_right_stroke.png);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-recruitment-block .p-index-recruitment-list .p-index-recruitment-item .p-index-recruitment-itemLink::before {
    width: 2rem;
    height: 2rem;
  }
}
.pageFront .p-index-recruitment-container .entryButton {
  margin-top: 5.6rem;
}
.pageFront .p-index-retail {
  padding-bottom: 14rem;
  background-color: #ffffff;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-retail {
    padding-bottom: 10rem;
  }
}
.pageFront .p-index-retail .p-index-retail__content {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 153.6rem;
  margin-inline: auto;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-retail .p-index-retail__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 4rem 2rem 3.2rem;
    margin-bottom: 2.4rem;
  }
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-retail .p-index-retail__content::before {
    position: absolute;
    top: 0;
    right: 2rem;
    z-index: -1;
    display: inline-block;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #faf0e6;
    border-radius: 0 1.5rem 1.5rem 0;
  }
}
.pageFront .p-index-retail-text {
  position: relative;
  width: 100%;
  padding-left: 10%;
  margin-left: auto;
  border-radius: 0 3rem 3rem 0;
  padding-block: min(5rem, 75px);
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-retail-text {
    padding: 0;
    padding-right: 2rem;
  }
}
.pageFront .p-index-retail-text::before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  display: inline-block;
  width: 75vw;
  height: 100%;
  max-width: 75vw;
  content: "";
  background-color: #faf0e6;
  border-radius: 0 3rem 3rem 0;
  -webkit-transform: translateX(20vw);
          transform: translateX(20vw);
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-retail-text::before {
    display: none;
  }
}
.pageFront .p-index-retail-text .p-index-retail-text__title {
  margin-bottom: 3.5rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-retail-text .p-index-retail-text__title {
    margin-bottom: 1rem;
  }
}
.pageFront .p-index-retail-text .p-index-retail-text__title span:first-of-type {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  position: relative;
  font-size: 2.4rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-retail-text .p-index-retail-text__title span:first-of-type {
    font-size: 1.2rem;
  }
}
.pageFront .p-index-retail-text .p-index-retail-text__title span:first-of-type::after {
  position: absolute;
  top: 50%;
  right: -4rem;
  width: 2.8rem;
  height: 1px;
  content: "";
  background-color: #e60113;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-retail-text .p-index-retail-text__title span:first-of-type::after {
    right: -4rem;
    width: 2.8rem;
  }
}
.pageFront .p-index-retail-text .p-index-retail-text__title span:last-of-type {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  padding-left: 4.5rem;
  font-size: 1.8rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-retail-text .p-index-retail-text__title span:last-of-type {
    padding-left: 4.5rem;
    font-size: 1.1rem;
  }
}
.pageFront .p-index-retail-text .p-index-retail-text__copy {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  margin-bottom: 4.5rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-retail-text .p-index-retail-text__copy {
    margin-bottom: 1.5rem;
  }
}
.pageFront .p-index-retail-text .p-index-retail-text__copy span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  display: block;
  color: #e60113;
  line-height: 1.4;
}
.pageFront .p-index-retail-text .p-index-retail-text__copy span:first-of-type {
  font-size: 3.4rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-retail-text .p-index-retail-text__copy span:first-of-type {
    font-size: 2.4rem;
  }
}
.pageFront .p-index-retail-text .p-index-retail-text__copy span:last-of-type {
  font-size: 3.4rem;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-retail-text .p-index-retail-text__copy span:last-of-type {
    font-size: 2.4rem;
  }
}
.pageFront .p-index-retail-text .p-index-retail-text__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  margin-bottom: 4.5rem;
  font-size: 1.6rem;
  line-height: 2.2;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-retail-text .p-index-retail-text__lead {
    margin-bottom: 3rem;
    font-size: 1.2rem;
  }
}
.pageFront .p-index-retail-text .p-index-retail-text__link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  position: relative;
  display: block;
  width: 28rem;
  padding-left: 2.5rem;
  color: #e60113;
  font-size: 1.6rem;
  border: 2px solid #e60113;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  padding-block: min(2rem, 20px);
}
.pageFront .p-index-retail-text .p-index-retail-text__link:hover {
  padding-left: 3rem;
  color: #ffffff;
  background-color: #e60113;
}
.pageFront .p-index-retail-text .p-index-retail-text__link:hover::after {
  right: 3rem;
  background-image: url(../image/common/icon-arrow_right_white.png);
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-retail-text .p-index-retail-text__link {
    width: 26rem;
    font-size: 1.5rem;
    margin-inline: auto;
    padding-block: 1.5rem;
  }
}
.pageFront .p-index-retail-text .p-index-retail-text__link::after {
  position: absolute;
  top: calc(50% - 0.5rem);
  right: 2rem;
  width: 1.5rem;
  height: 1rem;
  content: "";
  background-image: url(../image/common/icon-arrow_right_red.png);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: right 0.2s ease-out;
  transition: right 0.2s ease-out;
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-retail-text .p-index-retail-text__link::after {
    top: calc(50% - 0.5rem);
    right: 1rem;
    width: 1.6rem;
    height: 1rem;
  }
}
.pageFront .p-index-retail-image {
  display: block;
  width: 100%;
  overflow: hidden;
}
.pageFront .p-index-retail-image img {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  will-change: transform;
}
.pageFront .p-index-retail-image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media only screen and (max-width:768px) {
  .pageFront .p-index-retail-image {
    width: 100%;
    max-width: 100%;
    margin-bottom: 3.2rem;
    -webkit-transform: translateX(-2rem);
            transform: translateX(-2rem);
  }
}

.p-index-policy {
  padding-bottom: 18.5rem;
  background-color: #fff;
}
@media (max-width: 768px) {
  .p-index-policy {
    padding-bottom: 10rem;
  }
}
.p-index-policy__content {
  display: grid;
  grid-template-columns: minmax(560px, 1fr) 1fr; /* 左テキスト / 右画像 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(20px, 4vw, 112px);
  max-width: 1180px;
  padding: 0 2rem 0rem;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .p-index-policy__content {
    grid-template-columns: 1fr;
    gap: 3.2rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.p-index-policy {
  /* ---- テキスト ---- */
}
@media (max-width: 768px) {
  .p-index-policy-text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.p-index-policy-text__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .p-index-policy-text__title {
    margin-bottom: 1rem;
  }
}
.p-index-policy-text__title .jp {
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 24px);
  color: #000; /* 黒固定 */
}
@media (max-width: 768px) {
  .p-index-policy-text__title .jp {
    font-size: 1.2rem;
  }
}
.p-index-policy-text__title .en {
  font-weight: 300;
  font-size: 1.8rem;
  color: #000; /* グレー固定 */
  padding-left: 40px;
  position: relative;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 768px) {
  .p-index-policy-text__title .en {
    padding-left: 4.5rem;
    font-size: 1.1rem;
  }
}
.p-index-policy-text__title .en::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  width: 24px;
  height: 1px;
  background-color: #e60113; /* 赤ライン固定 */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 768px) {
  .p-index-policy-text__title .en::before {
    width: 2.8rem;
  }
}
.p-index-policy-text__lead {
  font-size: 1.6rem;
  line-height: 2.18;
  color: #000;
}
@media (max-width: 768px) {
  .p-index-policy-text__lead {
    font-size: 1.2rem;
  }
}
.p-index-policy-text__lead strong {
  font-weight: 700;
}
.p-index-policy {
  /* ---- 画像 ---- */
}
.p-index-policy-image {
  width: 47vw;
  max-width: 705px;
}
@media (max-width: 1100px) {
  .p-index-policy-image {
    width: 100%;
  }
}
.p-index-policy-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .p-index-policy-image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.l-header .l-header__mainNav--blank {
  height: 78px;
}

.pageGeneralBicycle .page__kv.-kv2::before {
  background-image: url(../image/general_bicycle/kv_bg.jpg);
  background-position: center bottom;
}
@media only screen and (max-width:768px) {
  .pageGeneralBicycle .page__kv.-kv2::before {
    padding: 2.5rem 0 0;
    background-image: url(../image/general_bicycle/kv_bg_sp.jpg);
  }
}
@media only screen and (max-width:768px) {
  .pageGeneralBicycle .page__kv.-kv2::before .page__kvTitle .page__kvSub {
    line-height: 1.14;
  }
}
.pageGeneralBicycle .generalBicycle__cnt {
  padding-bottom: 12rem;
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageGeneralBicycle .generalBicycle__cnt {
    padding-bottom: 10rem;
    font-size: 1.3rem;
    font-weight: 500;
  }
}
.pageGeneralBicycle .page__generalBox--bicycle {
  background-color: initial;
  margin: 6rem auto 2.6rem;
  padding: 0;
}
@media only screen and (max-width:768px) {
  .pageGeneralBicycle .page__generalBox--bicycle {
    margin: 5.2rem auto 4.2rem;
  }
}
.pageGeneralBicycle .page__generalBox .-img-wrapper {
  text-align: center;
}
.pageGeneralBicycle .page__generalBox .-img-wrapper img {
  width: 320px;
  margin: auto;
}
.pageGeneralBicycle .-ta_center {
  margin-top: 2.6rem;
}
.pageGeneralBicycle .-mb_80 {
  margin-bottom: 8rem;
}
@media only screen and (max-width:768px) {
  .pageGeneralBicycle .-mb_80 {
    margin-bottom: 5rem;
  }
}
.pageGeneralBicycle .-mb_60 {
  margin-bottom: 6rem;
}
@media only screen and (max-width:768px) {
  .pageGeneralBicycle .-mb_60 {
    margin-bottom: 4rem;
  }
}
.pageGeneralBicycle .-ta_center {
  text-align: center;
}
.pageGeneralBicycle .-fw_500 {
  font-weight: 500;
}

@media only screen and (max-width:768px) {
  .page__contact2.-general-bicycle-page .contact__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.page__contact2.-general-bicycle-page .contact__box .contact__colR {
  width: 40.6rem;
}
@media only screen and (max-width:768px) {
  .page__contact2.-general-bicycle-page .contact__box .contact__colR {
    width: 100%;
  }
}
@media only screen and (max-width:768px) {
  .page__contact2.-general-bicycle-page .contact__box .contact__info.-fax .contact__mail {
    margin-top: 0;
    font-size: 1.6rem;
  }
}

.pageGeneralCar .generalCar__cnt {
  padding-bottom: 12rem;
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageGeneralCar .generalCar__cnt {
    padding-bottom: 10rem;
    font-size: 1.3rem;
    font-weight: 500;
  }
}
.pageGeneralCar .-ta_center {
  text-align: center;
}
.pageGeneralCar .-fw_500 {
  font-weight: 500;
}

.pageGeneralHouse .page__kv.-kv2::before {
  background-image: url(../image/general_house/kv_bg.jpg);
  background-position: center -2%;
}
@media only screen and (max-width:768px) {
  .pageGeneralHouse .page__kv.-kv2::before {
    background-image: url(../image//general_house/kv_bg_sp.jpg);
    background-position: center 0;
  }
}
.pageGeneralHouse .generalHouse__cnt {
  padding-bottom: 12rem;
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageGeneralHouse .generalHouse__cnt {
    padding-bottom: 10rem;
    font-size: 1.3rem;
    font-weight: 500;
  }
}
.pageGeneralHouse .-ta_center {
  text-align: center;
}
.pageGeneralHouse .-fw_500 {
  font-weight: 500;
}

.pageGeneralIllness .page__kv.-kv2::before {
  background-image: url(../image//general_illness/kv_bg.png);
}
@media only screen and (max-width:768px) {
  .pageGeneralIllness .page__kv.-kv2::before {
    background-image: url(../image//general_illness/kv_bg_sp.png);
  }
}
.pageGeneralIllness .generalIllness__cnt {
  padding-bottom: 12rem;
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageGeneralIllness .generalIllness__cnt {
    padding-bottom: 10rem;
    font-size: 1.3rem;
    font-weight: 500;
  }
}
.pageGeneralIllness .-mb_80 {
  margin-bottom: 8rem;
}
@media only screen and (max-width:768px) {
  .pageGeneralIllness .-mb_80 {
    margin-bottom: 5rem;
  }
}
.pageGeneralIllness .-mb_60 {
  margin-bottom: 6rem;
}
@media only screen and (max-width:768px) {
  .pageGeneralIllness .-mb_60 {
    margin-bottom: 4rem;
  }
}
.pageGeneralIllness .-ta_center {
  text-align: center;
}
.pageGeneralIllness .-fw_500 {
  font-weight: 500;
}

.pageGeneralInjury .page__kv.-kv2::before {
  background-image: url(../image//general_injury/kv_bg.jpg);
  background-position: center bottom;
}
@media only screen and (max-width:768px) {
  .pageGeneralInjury .page__kv.-kv2::before {
    padding: 2.5rem 0 0;
    background-image: url(../image//general_injury/kv_bg_sp.jpg);
  }
}
@media only screen and (max-width:768px) {
  .pageGeneralInjury .page__kv.-kv2::before .page__kvTitle .page__kvSub {
    line-height: 1.14;
  }
}
.pageGeneralInjury .generalInjury__cnt {
  padding-bottom: 12rem;
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageGeneralInjury .generalInjury__cnt {
    padding-bottom: 10rem;
    font-size: 1.3rem;
    font-weight: 500;
  }
}
.pageGeneralInjury .-mb_80 {
  margin-bottom: 8rem;
}
@media only screen and (max-width:768px) {
  .pageGeneralInjury .-mb_80 {
    margin-bottom: 5rem;
  }
}
.pageGeneralInjury .-mb_60 {
  margin-bottom: 6rem;
}
@media only screen and (max-width:768px) {
  .pageGeneralInjury .-mb_60 {
    margin-bottom: 4rem;
  }
}
.pageGeneralInjury .-ta_center {
  text-align: center;
}
.pageGeneralInjury .-fw_500 {
  font-weight: 500;
}

.pageGeneralTravelling .page__kv.-kv2::before {
  background-image: url(../image//general_traveling/kv_bg.png);
}
@media only screen and (max-width:768px) {
  .pageGeneralTravelling .page__kv.-kv2::before {
    background-image: url(../image//general_traveling/kv_bg_sp.png);
  }
}
.pageGeneralTravelling .generalTravelling__cnt {
  padding-bottom: 12rem;
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageGeneralTravelling .generalTravelling__cnt {
    padding-bottom: 10rem;
    font-size: 1.3rem;
    font-weight: 500;
  }
}
.pageGeneralTravelling .-mb_80 {
  margin-bottom: 8rem;
}
@media only screen and (max-width:768px) {
  .pageGeneralTravelling .-mb_80 {
    margin-bottom: 5rem;
  }
}
.pageGeneralTravelling .-ta_center {
  text-align: center;
}
.pageGeneralTravelling .-fw_500 {
  font-weight: 500;
}

.pageGeneral .general__insurance {
  margin-bottom: 15rem;
}
@media only screen and (max-width:768px) {
  .pageGeneral .general__insurance {
    margin-bottom: 10rem;
  }
}
.pageGeneral .general__insurance .page__title {
  margin-bottom: 4rem;
}
@media only screen and (max-width:768px) {
  .pageGeneral .general__insurance .page__title {
    margin-bottom: 3rem;
  }
}
.pageGeneral .general__insurance .insuranceList {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 9rem;
}
@media only screen and (max-width:768px) {
  .pageGeneral .general__insurance .insuranceList {
    display: block;
    margin-bottom: 3rem;
  }
}
.pageGeneral .general__insurance .insuranceList .insuranceItem {
  width: calc((100% - 7.4rem) / 3);
}
@media only screen and (max-width:768px) {
  .pageGeneral .general__insurance .insuranceList .insuranceItem {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.pageGeneral .general__insurance .insuranceList .insuranceLink {
  display: block;
}
.pageGeneral .general__insurance .insuranceList .insuranceLink .insuranceImg {
  overflow: hidden;
}
.pageGeneral .general__insurance .insuranceList .insuranceLink .insuranceImg img {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.pageGeneral .general__insurance .insuranceList .insuranceLink .insuranceCnt {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.5rem 2rem;
  color: #ffffff;
  background-color: #444444;
}
@media only screen and (max-width:768px) {
  .pageGeneral .general__insurance .insuranceList .insuranceLink .insuranceCnt {
    padding: 1.3rem 2rem;
  }
}
.pageGeneral .general__insurance .insuranceList .insuranceLink .insuranceTtl {
  position: relative;
  width: 100%;
  padding-right: 4rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
.pageGeneral .general__insurance .insuranceList .insuranceLink .insuranceTtl:after {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: absolute;
  top: 50%;
  right: 0;
  width: 3rem;
  height: 3rem;
  content: "";
  background: url(../image/common/icon-arrow_right_stroke_white.png) no-repeat center center/100% auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width:768px) {
  .pageGeneral .general__insurance .insuranceList .insuranceLink .insuranceTtl:after {
    width: 2.8rem;
    height: 2.8rem;
  }
}
.pageGeneral .general__insurance .insuranceList .insuranceLink:hover .insuranceImg img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.pageGeneral .general__insurance .insuranceList .insuranceLink:hover .insuranceCnt {
  padding: 1.5rem 3rem;
  background-color: #d02d26;
}
.pageGeneral .general__insurance .insuranceList .insuranceLink:hover .insuranceTtl::after {
  background: url(../image/common/icon-arrow_right_fill_white.png) no-repeat center center/100% auto;
}
.pageGeneral .general__faq {
  padding: 9.2rem 0 12rem;
  font-size: 1.5rem;
  line-height: 1.73;
  background-color: #fcfaf5;
}
@media only screen and (max-width:768px) {
  .pageGeneral .general__faq {
    padding: 5rem 0 10rem;
    font-size: 1.2rem;
    line-height: 2.167;
  }
}
.pageGeneral .general__faq .-ta_center {
  text-align: center;
}
.pageGeneral .general__faq .-faq__title {
  margin-bottom: 6rem;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pageGeneral .general__faq .-faq__title {
    margin-bottom: 3rem;
    font-size: 2rem;
  }
}
.pageGeneral .general__faq .page__faqList {
  margin-bottom: 6rem;
}
@media only screen and (max-width:768px) {
  .pageGeneral .general__faq .page__faqList {
    margin-bottom: 4rem;
  }
}

.pageHandle {
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageHandle {
    font-size: 1.3rem;
    font-weight: 500;
  }
}
.pageHandle .mb_3 {
  margin-bottom: 3rem !important;
}
.pageHandle .mb_5 {
  margin-bottom: 5rem !important;
}
.pageHandle .mb_8 {
  margin-bottom: 8rem !important;
}
.pageHandle .fw_bold {
  font-weight: 700;
}
.pageHandle .page__title.-title02 {
  margin-bottom: 3rem;
}
@media only screen and (max-width:768px) {
  .pageHandle .page__title.-title02 {
    margin-bottom: 3rem;
  }
}
.pageHandle .sec__title {
  padding-left: 4.3rem;
  margin-bottom: 2.5rem;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.45;
  text-indent: -4.3rem;
}
@media only screen and (max-width:768px) {
  .pageHandle .sec__title {
    padding-left: 3.5rem;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.47;
    text-indent: -3.5rem;
  }
}
.pageHandle .handle__lst > li {
  padding-left: 3.9rem;
  text-indent: -3.9rem;
}
@media only screen and (max-width:768px) {
  .pageHandle .handle__lst > li {
    padding-left: 3.5rem;
    text-indent: -3.5rem;
  }
}
.pageHandle .handle__lst.-text_indent_15 > li {
  padding-left: 1.5rem;
  text-indent: -1.5rem;
}
@media only screen and (max-width:768px) {
  .pageHandle .handle__lst.-text_indent_15 > li {
    padding-left: 1.2rem;
    text-indent: -1.2rem;
  }
}
.pageHandle .handle__lst2 > li {
  margin-bottom: 2em;
}
.pageHandle .handle__lst2 > li .handle__lst2__ttl {
  display: block;
  font-weight: 700;
}
.pageHandle .handle__tbl {
  width: 100%;
  border: 1px solid #cccccc;
  border-collapse: collapse;
}
.pageHandle .handle__tbl thead th {
  padding: 3.5rem 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  background-color: #f5f5f5;
  border-right: 1px solid #cccccc;
}
@media only screen and (max-width:768px) {
  .pageHandle .handle__tbl thead th {
    padding: 1.5rem 1rem;
    font-size: 1.4rem;
    font-weight: 500;
  }
}
.pageHandle .handle__tbl thead th:last-of-type {
  border-right: none;
}
.pageHandle .handle__tbl tbody tr td {
  width: 50%;
  padding: 2.8rem 4.8rem;
  vertical-align: baseline;
  border-top: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}
@media only screen and (max-width:768px) {
  .pageHandle .handle__tbl tbody tr td {
    padding: 1.5rem 1rem;
    line-height: 1.4615;
  }
}
.pageHandle .handle__tbl tbody tr td:last-of-type {
  border-right: none;
}
.pageHandle .handle__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #f0f0f0;
}
@media only screen and (max-width:768px) {
  .pageHandle .handle__contact {
    display: block;
  }
}
.pageHandle .handle__contact .contact__colL {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 32%;
  border-right: 1px solid #d3d3d3;
}
@media only screen and (max-width:768px) {
  .pageHandle .handle__contact .contact__colL {
    width: 100%;
    padding: 3rem 0 2rem;
    border-right: none;
    border-bottom: 1px solid #d3d3d3;
  }
}
.pageHandle .handle__contact .contact__colL .contact__img > img {
  width: 10.5rem;
  margin: 0 auto;
}
.pageHandle .handle__contact .contact__colL .contact__imgCaption {
  font-size: 2rem;
  font-weight: 500;
}
@media only screen and (max-width:768px) {
  .pageHandle .handle__contact .contact__colL .contact__imgCaption {
    font-size: 1.9rem;
  }
}
.pageHandle .handle__contact .contact__colR {
  width: 68%;
  padding: 2.8rem 4.5rem 2.8rem 5.5rem;
  font-size: 1.6rem;
  line-height: 1.9;
}
@media only screen and (max-width:768px) {
  .pageHandle .handle__contact .contact__colR {
    width: 100%;
    max-width: 28rem;
    padding: 2rem 2rem 3rem;
    margin: 0 auto;
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
.pageHandle .handle__contact .contact__colR .contact__lbl {
  padding: 0.2rem 1.7rem;
  margin-bottom: 1.9rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.44;
  border-right: 3px solid #d02d26;
  border-left: 3px solid #d02d26;
}
@media only screen and (max-width:768px) {
  .pageHandle .handle__contact .contact__colR .contact__lbl {
    padding: 0.2rem 1.2rem;
    font-size: 1.6rem;
  }
}
.pageHandle .handle__contact .contact__colR .contact__phone {
  gap: 5.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageHandle .handle__contact .contact__colR .contact__phone {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.3rem;
  }
}
.pageHandle .handle__contact .contact__colR .contact__info {
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageHandle .handle__contact .contact__colR .contact__info {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.3rem;
  }
}
@media only screen and (max-width:768px) {
  .pageHandle .handle__contact .contact__colR .contact__txt {
    margin-bottom: 1rem;
  }
}
.pageHandle .handle__contact .contact__colR .contact__link {
  color: #e60113;
  border-bottom: 1px solid #e60113;
}
.pageHandle .handle__contact .contact__colR .contact__link:hover {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0.8;
}

.pageInsurance .page__kv {
  background: url(../image//insurance/kv_bg.jpg) no-repeat center center/cover;
}
@media only screen and (max-width:768px) {
  .pageInsurance .page__kv {
    background: url(../image//insurance/kv_bg_sp.jpg) no-repeat center center/cover;
  }
}
.pageInsurance .pageInsurance__container .inner .pageInsurance__list {
  max-width: 110rem;
  margin: 0 auto 13rem;
}
@media only screen and (max-width:768px) {
  .pageInsurance .pageInsurance__container .inner .pageInsurance__list {
    margin: 0 auto 10rem;
  }
}
.pageInsurance .pageInsurance__container .inner .pageInsurance__list .page__title {
  margin: 0 0 6.5rem;
}
@media only screen and (max-width:768px) {
  .pageInsurance .pageInsurance__container .inner .pageInsurance__list .page__title {
    display: none;
  }
}
.pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabList {
  margin: 0 0 5.1rem;
}
@media only screen and (min-width:769px) {
  .pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabList {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    border: 0.1rem solid #d02d26;
    border-radius: 1rem;
  }
}
.pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabList .pageInsurance__tabTitle {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 9.6rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}
@media only screen and (min-width:769px) {
  .pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabList .pageInsurance__tabTitle {
    width: 33.3333333333%;
    text-align: center;
  }
  .pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabList .pageInsurance__tabTitle:not(:last-child)::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 0.1rem;
    height: 100%;
    content: "";
    background: #d02d26;
  }
}
@media only screen and (max-width:768px) {
  .pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabList .pageInsurance__tabTitle {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: 4.8rem;
    padding: 0 2.5rem 0 2.5rem;
    margin: 2rem 0 0;
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 1.4;
    background: #d02d26;
    border-radius: 0.5rem;
  }
  .pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabList .pageInsurance__tabTitle:first-child {
    margin: 0;
  }
  .pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabList .pageInsurance__tabTitle::after {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    width: 1rem;
    height: 0.6rem;
    content: "";
    background: url(../image/common/icon-arrow_down.png) no-repeat center center/100% auto;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }
}
@media only screen and (min-width:769px) {
  .pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabList .pageInsurance__tabTitle:hover {
    color: #ffffff;
    background: #d02d26;
  }
}
.pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabList .pageInsurance__tabTitle.-active {
  color: #ffffff;
  background: #d02d26;
}
@media only screen and (max-width:768px) {
  .pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabList .pageInsurance__tabTitle.-active {
    border-radius: 0.5rem 0.5rem 0 0;
  }
}
@media only screen and (max-width:768px) {
  .pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabList .pageInsurance__tabTitle.-active::after {
    -webkit-transform: translateY(-50%) rotate(-180deg);
            transform: translateY(-50%) rotate(-180deg);
  }
}
.pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabContent {
  display: none;
  padding: 6rem 7.7rem 2.2rem;
  background: #f5e5e5;
}
@media only screen and (max-width:768px) {
  .pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabContent {
    padding: 2rem;
    border-radius: 0 0 0.5rem 0.5rem;
  }
}
.pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabContent.-active {
  display: block;
  -webkit-animation: tabAnim ease 0.6s forwards;
          animation: tabAnim ease 0.6s forwards;
}
.pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabContent .pageInsurance__itemList {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 4.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabContent .pageInsurance__itemList .pageInsurance__item {
  margin: 0 0 3.8rem;
}
@media only screen and (min-width:769px) {
  .pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabContent .pageInsurance__itemList .pageInsurance__item {
    width: calc((100% - 4.6rem) / 2);
  }
}
@media only screen and (max-width:768px) {
  .pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabContent .pageInsurance__itemList .pageInsurance__item:last-child {
    margin: 0;
  }
}
.pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabContent .pageInsurance__itemList .pageInsurance__item.-button {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 8rem;
  padding: 0 5rem 0 3.9rem;
  color: #000000;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  background: #ffffff;
  border: 0.2rem solid #e60113;
  border-radius: 0.5rem;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabContent .pageInsurance__itemList .pageInsurance__item.-button {
    width: 100%;
    height: 6.6rem;
    padding: 0 5rem 0 1.8rem;
    margin: 0 0 2rem;
    font-size: 1.5rem;
  }
}
.pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabContent .pageInsurance__itemList .pageInsurance__item.-button::after {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  content: "";
  background: url(../image/common/icon-arrow_fill_red.svg) no-repeat center center/100% auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (min-width:769px) {
  .pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabContent .pageInsurance__itemList .pageInsurance__item.-button:hover {
    color: #ffffff;
    background: #d02d26;
    border: 0.2rem solid #d02d26;
  }
  .pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabContent .pageInsurance__itemList .pageInsurance__item.-button:hover::after {
    background: url(../image/common/icon-arrow_fill_white.svg) no-repeat center center/100% auto;
  }
}
@media only screen and (max-width:768px) {
  .pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabContent .pageInsurance__itemList .pageInsurance__item.-button.-last {
    margin: 0 0 3rem;
  }
}
@media only screen and (max-width:768px) {
  .pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabContent .pageInsurance__itemList .pageInsurance__item.-button.-onlyLast {
    margin: 0;
  }
}
.pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabContent .pageInsurance__itemList .pageInsurance__item.-block {
  overflow: hidden;
  border-radius: 0.5rem;
}
.pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabContent .pageInsurance__itemList .pageInsurance__item.-block .pageInsurance__blocktitle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 8rem;
  padding: 0 1rem 0 3.9rem;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  background: #4a4a4a;
}
@media only screen and (max-width:768px) {
  .pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabContent .pageInsurance__itemList .pageInsurance__item.-block .pageInsurance__blocktitle {
    height: 6rem;
    padding: 0 1rem;
    font-size: 1.5rem;
  }
}
.pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabContent .pageInsurance__itemList .pageInsurance__item.-block .pageInsurance__blocktext {
  height: calc(100% - 8rem);
  padding: 1.6rem 2.4rem 1.6rem 3.3rem;
  font-size: 1.5rem;
  line-height: 2;
  background: #ffffff;
}
@media only screen and (max-width:768px) {
  .pageInsurance .pageInsurance__container .inner .pageInsurance__list .pageInsurance__tab .pageInsurance__tabContent .pageInsurance__itemList .pageInsurance__item.-block .pageInsurance__blocktext {
    height: auto;
    padding: 20px 10px;
    font-size: 1.3rem;
    font-weight: 500;
  }
}
.pageInsurance .pageInsurance__container .inner .pageInsurance__propose {
  max-width: 110rem;
  margin: 0 auto 18rem;
}
@media only screen and (max-width:768px) {
  .pageInsurance .pageInsurance__container .inner .pageInsurance__propose {
    margin: 0 auto 10rem;
  }
}
.pageInsurance .pageInsurance__container .inner .pageInsurance__propose .page__title {
  margin: 0 0 5.3rem;
}
@media only screen and (max-width:768px) {
  .pageInsurance .pageInsurance__container .inner .pageInsurance__propose .page__title {
    margin: 0 0 2.9rem;
  }
}
.pageInsurance .pageInsurance__container .inner .pageInsurance__propose .pageInsurance__proposeBlock {
  position: relative;
  padding: 25.3rem 0 0;
  margin: 0 0 8rem;
}
@media only screen and (max-width:768px) {
  .pageInsurance .pageInsurance__container .inner .pageInsurance__propose .pageInsurance__proposeBlock {
    padding: 14rem 0 0;
    margin: 0 0 3rem;
  }
}
.pageInsurance .pageInsurance__container .inner .pageInsurance__propose .pageInsurance__proposeBlock .pageInsurance__figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@media only screen and (max-width:768px) {
  .pageInsurance .pageInsurance__container .inner .pageInsurance__propose .pageInsurance__proposeBlock .pageInsurance__figure {
    height: 21.5rem;
  }
  .pageInsurance .pageInsurance__container .inner .pageInsurance__propose .pageInsurance__proposeBlock .pageInsurance__figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.pageInsurance .pageInsurance__container .inner .pageInsurance__propose .pageInsurance__proposeBlock .pageInsurance__container {
  position: relative;
  z-index: 1;
  width: 86.364%;
  padding: 2.9rem 5rem 2.8rem;
  background: rgba(255, 255, 255, 0.93);
  border-radius: 0 3rem 0 0;
}
@media only screen and (min-width:769px) {
  .pageInsurance .pageInsurance__container .inner .pageInsurance__propose .pageInsurance__proposeBlock .pageInsurance__container {
    min-height: 15.7rem;
  }
}
@media only screen and (max-width:768px) {
  .pageInsurance .pageInsurance__container .inner .pageInsurance__propose .pageInsurance__proposeBlock .pageInsurance__container {
    width: 94.029%;
    padding: 2.6rem 2rem 2.1rem;
  }
}
.pageInsurance .pageInsurance__container .inner .pageInsurance__propose .pageInsurance__proposeBlock .pageInsurance__container .pageInsurance__title {
  position: relative;
  padding-left: 3.9rem;
  margin: 0 0 1.3rem;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
}
@media only screen and (max-width:768px) {
  .pageInsurance .pageInsurance__container .inner .pageInsurance__propose .pageInsurance__proposeBlock .pageInsurance__container .pageInsurance__title {
    padding-left: 2.6rem;
    margin: 0 0 1.7rem;
    font-size: 1.8rem;
    line-height: 1.4;
  }
}
.pageInsurance .pageInsurance__container .inner .pageInsurance__propose .pageInsurance__proposeBlock .pageInsurance__container .pageInsurance__title::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.8rem;
  height: 0.1rem;
  content: "";
  background: #e60113;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width:768px) {
  .pageInsurance .pageInsurance__container .inner .pageInsurance__propose .pageInsurance__proposeBlock .pageInsurance__container .pageInsurance__title::before {
    width: 1.6rem;
  }
}
.pageInsurance .pageInsurance__container .inner .pageInsurance__propose .pageInsurance__proposeBlock .pageInsurance__container .pageInsurance__text {
  font-size: 1.5rem;
  line-height: 1.7;
}
@media only screen and (max-width:768px) {
  .pageInsurance .pageInsurance__container .inner .pageInsurance__propose .pageInsurance__proposeBlock .pageInsurance__container .pageInsurance__text {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 2;
  }
}
.pageInsurance .pageInsurance__container .inner .pageInsurance__propose .pageInsurance__proposeBlock.-reverse .pageInsurance__container {
  margin-left: auto;
  border-radius: 3rem 0 0 0;
}
.pageInsurance .pageInsurance__container .inner .pageInsurance__bottomText {
  font-size: 1.5rem;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pageInsurance .pageInsurance__container .inner .pageInsurance__bottomText {
    font-size: 1.3rem;
  }
}

.pageLegalTrouble .page__kv.-kv2::before {
  background-image: url(../image//legal_trouble/kv_bg.jpg);
}
@media only screen and (max-width:768px) {
  .pageLegalTrouble .page__kv.-kv2::before {
    background-image: url(../image//legal_trouble/kv_bg_sp.jpg);
  }
}
.pageLegalTrouble .page_advList .page__advItem.-w_2p3 {
  width: 66.6666666667%;
}
@media only screen and (max-width:768px) {
  .pageLegalTrouble .page_advList .page__advItem.-w_2p3 {
    width: 100%;
  }
}
.pageLegalTrouble .legalTrouble__cnt {
  padding-bottom: 15rem;
}
@media only screen and (max-width:768px) {
  .pageLegalTrouble .legalTrouble__cnt {
    padding-bottom: 10rem;
  }
}
@media only screen and (max-width:768px) {
  .pageLegalTrouble .legalTrouble__cnt .page__tabList {
    margin-bottom: 0;
  }
}
.pageLegalTrouble .legalTrouble__cnt .page__tabList .page__tabTitle {
  font-weight: 500;
}
@media only screen and (max-width:768px) {
  .pageLegalTrouble .legalTrouble__cnt .page__tabList .page__tabTitle {
    font-weight: 700;
  }
}
.pageLegalTrouble .legalTrouble__cnt .page__tabContent {
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageLegalTrouble .legalTrouble__cnt .page__tabContent {
    padding: 4rem 0 8rem;
    font-size: 1.3rem;
    font-weight: 500;
  }
}
.pageLegalTrouble .legalTrouble__cnt .page__tabContent .-ta_center {
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pageLegalTrouble .legalTrouble__cnt .page__tabContent .-sp_ta_left {
    text-align: left;
  }
}
.pageLegalTrouble .legalTrouble__cnt .page__tabContent .-mb_100 {
  margin-bottom: 10rem;
}
@media only screen and (max-width:768px) {
  .pageLegalTrouble .legalTrouble__cnt .page__tabContent .-mb_100 {
    margin-bottom: 4rem;
  }
}
.pageLegalTrouble .legalTrouble__cnt .page__tabContent .-mb_80 {
  margin-bottom: 8rem;
}
@media only screen and (max-width:768px) {
  .pageLegalTrouble .legalTrouble__cnt .page__tabContent .-mb_80 {
    margin-bottom: 4rem;
  }
}
.pageLegalTrouble .legalTrouble__cnt .page__tabContent .-mb_75 {
  margin-bottom: 7.5rem;
}
@media only screen and (max-width:768px) {
  .pageLegalTrouble .legalTrouble__cnt .page__tabContent .-mb_75 {
    margin-bottom: 4rem;
  }
}
.pageLegalTrouble .legalTrouble__cnt .page__tabContent .-mb_45 {
  margin-bottom: 4.5rem;
}
@media only screen and (max-width:768px) {
  .pageLegalTrouble .legalTrouble__cnt .page__tabContent .-mb_45 {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width:768px) {
  .pageLegalTrouble .legalTrouble__cnt .page__tabContent .-sp_mb_60 {
    margin-bottom: 6rem;
  }
}
.pageLegalTrouble .legalTrouble__cnt .page__tabContent .-mw_855 {
  max-width: 85.5rem;
}
@media only screen and (max-width:768px) {
  .pageLegalTrouble .legalTrouble__cnt .page__tabContent .-mw_855 {
    max-width: 100%;
  }
}
.pageLegalTrouble .legalTrouble__cnt .page__tabContent .-mw_780 {
  max-width: 78rem;
}
@media only screen and (max-width:768px) {
  .pageLegalTrouble .legalTrouble__cnt .page__tabContent .-mw_780 {
    max-width: 100%;
  }
}
.pageLegalTrouble .legalTrouble__cnt .page__tabContent .-mw_620 {
  max-width: 62rem;
}
@media only screen and (max-width:768px) {
  .pageLegalTrouble .legalTrouble__cnt .page__tabContent .-mw_620 {
    max-width: 100%;
  }
}
@media only screen and (max-width:768px) {
  .pageLegalTrouble .legalTrouble__cnt .page__tabContent .-sp_fs_12 {
    font-size: 1.2rem;
    line-height: 1.583;
  }
}
.pageLegalTrouble .legalTrouble__cnt .page__tabContent .page__tabCtl {
  margin-bottom: 3rem;
}
@media only screen and (max-width:768px) {
  .pageLegalTrouble .legalTrouble__cnt .page__tabContent .page__tabCtl {
    margin-bottom: 1.5rem;
  }
}
.pageLegalTrouble .legalTrouble__cnt .page__tabContent .tab__title2 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4583;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pageLegalTrouble .legalTrouble__cnt .page__tabContent .tab__title2 {
    font-size: 1.6rem;
    line-height: 1.625;
  }
}
.pageLegalTrouble .legalTrouble__cnt .page__tabContent .tab__img {
  margin-right: auto;
  margin-left: auto;
}
.pageLegalTrouble .legalTrouble__cnt .page__tabContent .tab__img img {
  width: 100%;
}
@media only screen and (max-width:768px) {
  .pageLegalTrouble .legalTrouble__cnt .page__tabContent#tab01 {
    padding-bottom: 0;
  }
}
@media only screen and (max-width:768px) {
  .pageLegalTrouble .legalTrouble__cnt .page__tabContent#tab03 {
    padding-bottom: 0;
  }
}
.pageLegalTrouble .legalTrouble__cnt .page__tabContent#tab03 .page__tabCtl {
  margin-bottom: 5rem;
}
@media only screen and (max-width:768px) {
  .pageLegalTrouble .legalTrouble__cnt .page__tabContent#tab03 .page__tabCtl {
    margin-bottom: 4rem;
  }
}

.pageList .page__kv {
  background: url(../image//list/kv_bg.jpg) no-repeat center center/cover;
}
@media only screen and (max-width:768px) {
  .pageList .page__kv {
    background: url(../image//list/kv_bg_sp.jpg) no-repeat center center/cover;
  }
}
.pageList .pageList__container .inner .pageList__frame {
  max-width: 110rem;
  padding: 3.3rem 0 2.9rem;
  margin: 0 auto 6rem;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  background: #f3f4f4;
}
@media only screen and (max-width:768px) {
  .pageList .pageList__container .inner .pageList__frame {
    padding: 2.9rem 0 3.1rem;
    margin: 0 auto 5.1rem;
    font-size: 1.2rem;
  }
}
.pageList .pageList__container .inner .pageList__frame .pageList__title {
  display: inline-block;
  padding: 0 0.7rem;
  margin: 0 0 1.8rem;
  color: #e60113;
  line-height: 1.8;
  border-bottom: 0.2rem solid #e60113;
}
@media only screen and (max-width:768px) {
  .pageList .pageList__container .inner .pageList__frame .pageList__title {
    padding: 0;
    margin: 0 0 1.7rem;
    line-height: 1.2;
    border-bottom: 0.1rem solid #e60113;
  }
}
.pageList .pageList__container .inner .pageList__frame .pageList__text {
  color: #333333;
  line-height: 2.2;
}
@media only screen and (max-width:768px) {
  .pageList .pageList__container .inner .pageList__frame .pageList__text {
    font-size: 1.3rem;
    line-height: 2;
  }
}
.pageList .pageList__container .inner .pageList__anchor {
  gap: 1.8rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 110rem;
  margin: 0 auto 11.8rem;
}
@media only screen and (max-width:768px) {
  .pageList .pageList__container .inner .pageList__anchor {
    display: none;
  }
}
.pageList .pageList__container .inner .pageList__anchor .pageList__item {
  width: calc((100% - 3.6rem) / 3);
  height: 6.6rem;
}
.pageList .pageList__container .inner .pageList__anchor .pageList__item .pageList__link {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0 5rem 0 2.7rem;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  background: #4a4a4a;
  border-radius: 0.5rem;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.pageList .pageList__container .inner .pageList__anchor .pageList__item .pageList__link::after {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  content: "";
  background: url(../image/common/icon-arrow_fill_down.svg) no-repeat center center/100% auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (min-width:769px) {
  .pageList .pageList__container .inner .pageList__anchor .pageList__item .pageList__link:hover {
    background: #e60113;
  }
}
.pageList .pageList__container .inner .pageList__groupList {
  max-width: 110rem;
  margin: 0 auto;
}
.pageList .pageList__container .inner .pageList__groupList .pageList__listBlock {
  margin: 0 0 18rem;
}
@media only screen and (max-width:768px) {
  .pageList .pageList__container .inner .pageList__groupList .pageList__listBlock {
    margin: 0 0 10.1rem;
  }
}
.pageList .pageList__container .inner .pageList__groupList .pageList__listBlock:last-child {
  margin: 0 0 15.5rem;
}
@media only screen and (max-width:768px) {
  .pageList .pageList__container .inner .pageList__groupList .pageList__listBlock:last-child {
    margin: 0;
  }
}
.pageList .pageList__container .inner .pageList__groupList .pageList__listBlock .page__title {
  margin: 0 0 2.5rem;
}
@media only screen and (max-width:768px) {
  .pageList .pageList__container .inner .pageList__groupList .pageList__listBlock .page__title {
    margin: 0 0 1rem;
  }
}
.pageList .pageList__container .inner .pageList__groupList .pageList__listBlock .pageList_text {
  padding: 0 0 3.5rem;
  margin: 0 0 4.2rem;
  font-size: 1.5rem;
  line-height: 2;
  border-bottom: 0.1rem solid #cccccc;
}
@media only screen and (max-width:768px) {
  .pageList .pageList__container .inner .pageList__groupList .pageList__listBlock .pageList_text {
    padding: 0 0 3rem;
    margin: 0 0 3.6rem;
    font-size: 1.3rem;
    font-weight: 500;
  }
}
.pageList .pageList__container .inner .pageList__groupList .pageList__listBlock .pageList__group {
  margin: 0 0 4.5rem;
}
@media only screen and (min-width:769px) {
  .pageList .pageList__container .inner .pageList__groupList .pageList__listBlock .pageList__group {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (max-width:768px) {
  .pageList .pageList__container .inner .pageList__groupList .pageList__listBlock .pageList__group {
    margin: 0 0 3.5rem;
  }
}
@media only screen and (min-width:769px) {
  .pageList .pageList__container .inner .pageList__groupList .pageList__listBlock .pageList__group .pageList__disc {
    width: 33.3333333333%;
  }
}
.pageList .pageList__container .inner .pageList__groupList .pageList__listBlock .pageList__group .pageList__disc .pageList__item {
  margin: 0 0 2.5rem;
}
@media only screen and (max-width:768px) {
  .pageList .pageList__container .inner .pageList__groupList .pageList__listBlock .pageList__group .pageList__disc .pageList__item {
    margin: 0 0 2.1rem;
  }
}
.pageList .pageList__container .inner .pageList__groupList .pageList__listBlock .pageList__group .pageList__disc .pageList__item .pageList__link {
  position: relative;
  padding-left: 2.3rem;
  color: #000000;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .pageList .pageList__container .inner .pageList__groupList .pageList__listBlock .pageList__group .pageList__disc .pageList__item .pageList__link {
    font-size: 1.3rem;
  }
}
.pageList .pageList__container .inner .pageList__groupList .pageList__listBlock .pageList__group .pageList__disc .pageList__item .pageList__link::before {
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 1.5rem;
  height: 1.2rem;
  content: "";
  background: url(../image/common/icon-link.svg) no-repeat center center/100% auto;
}
@media only screen and (max-width:768px) {
  .pageList .pageList__container .inner .pageList__groupList .pageList__listBlock .pageList__group .pageList__disc .pageList__item .pageList__link::before {
    top: 0.4rem;
  }
}
@media only screen and (min-width:769px) {
  .pageList .pageList__container .inner .pageList__groupList .pageList__listBlock .pageList__group .pageList__disc .pageList__item .pageList__link:hover {
    color: #e60113;
  }
}
.pageList .pageList__container .inner .pageList__groupList .pageList__listBlock .pageList__blockFrame {
  max-width: 100rem;
  padding: 1.8rem 1rem 1.4rem;
  margin: 0 auto;
  color: #e60113;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  border: 0.1rem solid #e60113;
}
@media only screen and (max-width:768px) {
  .pageList .pageList__container .inner .pageList__groupList .pageList__listBlock .pageList__blockFrame {
    padding: 2.6rem 0.5rem 2.8rem;
    font-size: 1.3rem;
    text-align: center;
  }
}
@media only screen and (max-width:768px) {
  .pageList .page__ourCompany {
    padding: 6.5rem 0 6.7rem;
  }
}

.pageMessage .page__kv {
  background: url(../image//message/kv_bg.jpg) no-repeat center center/cover;
}
@media only screen and (max-width:768px) {
  .pageMessage .page__kv {
    background: url(../image//message/kv_bg_sp.jpg) no-repeat center center/cover;
  }
}
.pageMessage .pageMessage__container .inner .pageMessage__intro {
  max-width: 110rem;
  margin: 0 auto 17.9rem;
}
@media only screen and (max-width:768px) {
  .pageMessage .pageMessage__container .inner .pageMessage__intro {
    margin: 0 auto 10rem;
  }
}
.pageMessage .pageMessage__container .inner .pageMessage__intro .pageMessage__figure {
  margin: 0 0 4.3rem;
  overflow: hidden;
  font-size: 0;
  border-radius: 4rem;
}
@media only screen and (max-width:768px) {
  .pageMessage .pageMessage__container .inner .pageMessage__intro .pageMessage__figure {
    margin: 0 0 2rem;
    border-radius: 1rem;
  }
}
.pageMessage .pageMessage__container .inner .pageMessage__intro .pageMessage__figure img {
  width: 100%;
}
.pageMessage .pageMessage__container .inner .pageMessage__intro .pageMessage__detail {
  padding: 0 5rem;
}
@media only screen and (max-width:768px) {
  .pageMessage .pageMessage__container .inner .pageMessage__intro .pageMessage__detail {
    padding: 0;
  }
}
.pageMessage .pageMessage__container .inner .pageMessage__intro .pageMessage__detail .pageMessage__title {
  margin: 0 0 2.3rem;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.6;
}
@media only screen and (max-width:768px) {
  .pageMessage .pageMessage__container .inner .pageMessage__intro .pageMessage__detail .pageMessage__title {
    margin: 0 0 1.1rem;
    font-size: 2.2rem;
    line-height: 1.5;
  }
}
.pageMessage .pageMessage__container .inner .pageMessage__intro .pageMessage__detail .pageMessage__text {
  margin: 0 0 5.5rem;
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageMessage .pageMessage__container .inner .pageMessage__intro .pageMessage__detail .pageMessage__text {
    margin: 0 0 2.6rem;
    font-size: 1.3rem;
    font-weight: 500;
  }
}
.pageMessage .pageMessage__container .inner .pageMessage__intro .pageMessage__detail .pageMessage__sign {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.04rem;
  text-align: right;
}
@media only screen and (max-width:768px) {
  .pageMessage .pageMessage__container .inner .pageMessage__intro .pageMessage__detail .pageMessage__sign {
    font-size: 1.3rem;
  }
}
.pageMessage .pageMessage__container .inner .pageMessage__intro .pageMessage__detail .pageMessage__sign .pageMessage__name {
  margin-left: 1.4rem;
  font-size: 2.4rem;
  line-height: 1.2;
}
@media only screen and (max-width:768px) {
  .pageMessage .pageMessage__container .inner .pageMessage__intro .pageMessage__detail .pageMessage__sign .pageMessage__name {
    margin-left: 1.5rem;
    font-size: 1.8rem;
  }
}
.pageMessage .cEntry {
  margin-bottom: 14rem;
}
@media only screen and (max-width:768px) {
  .pageMessage .cEntry {
    margin-bottom: 8rem;
  }
}
.pageMessage .interviewLinks__item:nth-child(3) {
  display: none;
}

.pageNursing .page__kv.-kv2::before {
  background-image: url(../image//nursing/kv_bg.jpg);
}
@media only screen and (max-width:768px) {
  .pageNursing .page__kv.-kv2::before {
    background-image: url(../image//nursing/kv_bg_sp.jpg);
  }
}
.pageNursing .page__kv.-kv2::before .page_advList {
  max-width: 74.2rem;
}
.pageNursing .page_advList .page__advItem.-w_2p3 {
  width: 66.6666666667%;
}
@media only screen and (max-width:768px) {
  .pageNursing .page_advList .page__advItem.-w_2p3 {
    width: 100%;
  }
}
.pageNursing .nursing__cnt {
  padding-bottom: 15rem;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt {
    padding-bottom: 10rem;
  }
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabList {
    margin-bottom: 0;
  }
}
.pageNursing .nursing__cnt .page__tabList .page__tabTitle {
  font-weight: 500;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabList .page__tabTitle {
    font-weight: 700;
  }
}
.pageNursing .nursing__cnt .page__tabContent {
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent {
    padding: 4rem 0 8rem;
    font-size: 1.3rem;
    font-weight: 500;
  }
}
.pageNursing .nursing__cnt .page__tabContent .-ta_center {
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .-sp_ta_left {
    text-align: left;
  }
}
.pageNursing .nursing__cnt .page__tabContent .-w_783 {
  width: 71.18%;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .-sp_w_295 {
    width: 88%;
  }
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .-sp_w_335 {
    width: 100%;
  }
}
.pageNursing .nursing__cnt .page__tabContent .-mb_100 {
  margin-bottom: 10rem;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .-mb_100 {
    margin-bottom: 4rem;
  }
}
.pageNursing .nursing__cnt .page__tabContent .-mb_80 {
  margin-bottom: 8rem;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .-mb_80 {
    margin-bottom: 4rem;
  }
}
.pageNursing .nursing__cnt .page__tabContent .-mb_75 {
  margin-bottom: 7.5rem;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .-mb_75 {
    margin-bottom: 4rem;
  }
}
.pageNursing .nursing__cnt .page__tabContent .-mb_60 {
  margin-bottom: 6rem;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .-mb_60 {
    margin-bottom: 3rem;
  }
}
.pageNursing .nursing__cnt .page__tabContent .-mb_45 {
  margin-bottom: 4.5rem;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .-mb_45 {
    margin-bottom: 2rem;
  }
}
.pageNursing .nursing__cnt .page__tabContent .-mb_40 {
  margin-bottom: 4rem;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .-mb_40 {
    margin-bottom: 3rem;
  }
}
.pageNursing .nursing__cnt .page__tabContent .-mb_30 {
  margin-bottom: 3rem;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .-mb_30 {
    margin-bottom: 1.5rem;
  }
}
.pageNursing .nursing__cnt .page__tabContent .-mb_20 {
  margin-bottom: 2rem;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .-mb_20 {
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .-sp_mb_60 {
    margin-bottom: 6rem !important;
  }
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .-sp_mb_50 {
    margin-bottom: 5rem !important;
  }
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .-sp_mb_40 {
    margin-bottom: 4rem !important;
  }
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .-sp_mb_20 {
    margin-bottom: 2rem !important;
  }
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .-sp_mb_15 {
    margin-bottom: 1.5rem !important;
  }
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .-sp_mb_5 {
    margin-bottom: 0.5rem !important;
  }
}
.pageNursing .nursing__cnt .page__tabContent .-fs_13 {
  font-size: 1.3rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .-fs_13 {
    font-size: 1.2rem;
    line-height: 1.583;
  }
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .-sp_fs_12 {
    font-size: 1.2rem;
    line-height: 1.583;
  }
}
.pageNursing .nursing__cnt .page__tabContent .-fw_500 {
  font-weight: 500;
}
.pageNursing .nursing__cnt .page__tabContent .page__tabCtl {
  margin-bottom: 3rem;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .page__tabCtl {
    margin-bottom: 1.5rem;
  }
}
.pageNursing .nursing__cnt .page__tabContent .page__title.-title02 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pageNursing .nursing__cnt .page__tabContent .page__title.-title02 .sub {
  position: relative;
  display: block;
  width: calc(100% + 34px);
  padding-bottom: 1.3rem;
  margin: 4rem 0 0 -34px;
  color: #d02d26;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.45;
  border-bottom: 2px solid #f5e5e5;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .page__title.-title02 .sub {
    width: calc(100% + 3.2rem);
    margin: 1.2rem 0 0 -3.2rem;
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
.pageNursing .nursing__cnt .page__tabContent .page__title.-title02 .sub:after {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 7.7rem;
  height: 2px;
  content: "";
  background: #e60113;
}
.pageNursing .nursing__cnt .page__tabContent .tab__subTitle {
  margin-bottom: 3rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .tab__subTitle {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    line-height: 1.625;
  }
}
.pageNursing .nursing__cnt .page__tabContent .tab__img {
  margin-right: auto;
  margin-left: auto;
}
.pageNursing .nursing__cnt .page__tabContent .tab__img img {
  width: 100%;
}
.pageNursing .nursing__cnt .page__tabContent .tab__sec {
  margin-bottom: 8rem;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .tab__sec {
    margin-bottom: 5rem;
  }
}
.pageNursing .nursing__cnt .page__tabContent .tab__sec:last-of-type {
  margin-bottom: 0;
}
.pageNursing .nursing__cnt .page__tabContent .tab__sec .tab__secTitle {
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  font-weight: 1.45;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .tab__sec .tab__secTitle {
    font-size: 1.8rem;
  }
}
.pageNursing .nursing__cnt .page__tabContent .tab__sec .tab__secTitle > span {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(35%, #fcf0e5), color-stop(35%, #ffffff));
  background: linear-gradient(0deg, #fcf0e5 35%, #ffffff 35%);
}
.pageNursing .nursing__cnt .page__tabContent .tab__sec .tab__secTitle .red {
  color: #e60113;
}
.pageNursing .nursing__cnt .page__tabContent .tab__benefitList {
  gap: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .tab__benefitList {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.pageNursing .nursing__cnt .page__tabContent .tab__benefitList .tab__benefit {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .tab__benefitList .tab__benefit {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    width: 100%;
  }
}
.pageNursing .nursing__cnt .page__tabContent .tab__benefitList .benefit__head {
  padding: 1.5rem;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.44;
  text-align: center;
  background-color: #666b71;
  border: 2px solid #666b71;
  border-radius: 10px 10px 0 0;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .tab__benefitList .benefit__head {
    font-size: 1.4rem;
    line-height: 1.428;
  }
}
.pageNursing .nursing__cnt .page__tabContent .tab__benefitList .benefit__cnt {
  padding: 1.9rem 2rem 3rem;
  border: 2px solid #666b71;
  border-top: none;
  border-radius: 0 0 10px 10px;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .tab__benefitList .benefit__cnt {
    padding: 2rem;
  }
}
.pageNursing .nursing__cnt .page__tabContent .tab__des {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 2.3;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .tab__des {
    font-size: 1.2rem;
    line-height: 2.5;
  }
}
.pageNursing .nursing__cnt .page__tabContent .tab__box {
  width: 71.18%;
  padding: 3rem 6rem;
  margin: 0 auto;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 2;
  border: 1px solid #e60113;
  border-radius: 10px;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .tab__box {
    width: 100%;
    padding: 2.5rem 2rem;
  }
}
.pageNursing .nursing__cnt .page__tabContent .tab__box .tab__boxTitle {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.44;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent .tab__box .tab__boxTitle {
    font-size: 1.4rem;
    line-height: 1.428;
    text-align: center;
  }
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent#tab01 {
    padding-bottom: 0;
  }
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent#tab02 {
    padding-bottom: 4rem;
  }
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent#tab03 {
    padding-bottom: 0;
  }
}
.pageNursing .nursing__cnt .page__tabContent#tab03 .page__tabCtl {
  margin-bottom: 5rem;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__cnt .page__tabContent#tab03 .page__tabCtl {
    margin-bottom: 4rem;
  }
}
.pageNursing .nursing__link {
  padding: 8rem 0 6rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__link {
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 2;
  }
}
.pageNursing .nursing__link .bold {
  font-weight: 700;
}
.pageNursing .nursing__link .page__btnBlock {
  margin-top: 3.7rem;
}
@media only screen and (max-width:768px) {
  .pageNursing .nursing__link .page__btnBlock {
    margin-top: 3rem;
  }
}

.pageOprPolicy {
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageOprPolicy {
    font-size: 1.3rem;
    font-weight: 500;
  }
}
@media only screen and (max-width:768px) {
  .pageOprPolicy .page__top .page__topTitle {
    letter-spacing: -0.01em;
  }
}
.pageOprPolicy .mb_0 {
  margin-bottom: 0 !important;
}
.pageOprPolicy .mb_3 {
  margin-bottom: 3rem !important;
}
.pageOprPolicy .mb_5 {
  margin-bottom: 5rem !important;
}
@media only screen and (max-width:768px) {
  .pageOprPolicy .sp-mb_3 {
    margin-bottom: 3rem !important;
  }
}
.pageOprPolicy .page__breadcrumb {
  margin-bottom: 1rem;
}
@media only screen and (max-width:768px) {
  .pageOprPolicy .page__breadcrumb {
    margin-bottom: 0.4rem;
  }
}
.pageOprPolicy .policy__date {
  margin-bottom: 2rem;
  text-align: right;
}
@media only screen and (max-width:768px) {
  .pageOprPolicy .policy__date {
    margin-bottom: 1.5rem;
    font-weight: normal;
  }
}
.pageOprPolicy .sec__title {
  margin-bottom: 6rem;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.428;
}
@media only screen and (max-width:768px) {
  .pageOprPolicy .sec__title {
    margin-bottom: 3rem;
    font-size: 2rem;
    line-height: 1.45;
  }
}
.pageOprPolicy .policy__title {
  padding: 3rem 12.5rem;
  margin-bottom: 8rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.45;
  text-align: center;
  background-color: #fcecea;
}
@media only screen and (max-width:768px) {
  .pageOprPolicy .policy__title {
    padding: 2rem;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
  }
}
.pageOprPolicy .policy__btn {
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 57.4rem;
  padding: 2rem 4.5rem 2rem 2.5rem;
  margin: 0 auto 8rem;
  color: #e60113;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  border: 2px solid #e60113;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .pageOprPolicy .policy__btn {
    padding: 2rem 4.5rem 2rem 2rem;
    margin: 0 auto 6rem;
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
.pageOprPolicy .policy__btn::after {
  position: absolute;
  top: 50%;
  right: 1.6rem;
  width: 1.6rem;
  height: 1.1rem;
  content: "";
  background: url(../image/common/icon-arrow_right_red.png) no-repeat 50%/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .pageOprPolicy .policy__btn::after {
    right: 2rem;
    width: 2.1rem;
    height: 1.3rem;
  }
}
@media only screen and (min-width:769px) {
  .pageOprPolicy .policy__btn:hover {
    color: #ffffff;
    background-color: #e60113;
  }
  .pageOprPolicy .policy__btn:hover::after {
    background: url(../image/common/icon-arrow_right_white.png) no-repeat 50%/contain;
  }
}
.pageOprPolicy .policy__lst {
  margin-bottom: 10rem;
}
@media only screen and (max-width:768px) {
  .pageOprPolicy .policy__lst {
    margin-bottom: 5rem;
  }
}
.pageOprPolicy .policy__lst .policy__item__Ttl {
  margin-bottom: 3rem;
}
.pageOprPolicy .policy__lst .policy__voice__ttl {
  margin: 0 0 2rem;
}
.pageOprPolicy .policy__lst .policy__item__Cnt {
  margin-bottom: 10rem;
}
@media only screen and (max-width:768px) {
  .pageOprPolicy .policy__lst .policy__item__Cnt {
    margin-bottom: 8rem;
  }
}
.pageOprPolicy .policy__lst .policy__item__Cnt:last-of-type {
  margin-bottom: 0;
}
.pageOprPolicy .policy__detailLst > li {
  padding-left: 1.5rem;
  text-indent: -1.8rem;
}
.pageOprPolicy .policy__detailLst > li::before {
  content: "・ ";
}
.pageOprPolicy .policy__detailOrderLst {
  padding: 0 0 0 2rem;
  margin: 0;
}
.pageOprPolicy .policy__detailOrderLst > li {
  padding-left: 3rem;
  margin-bottom: 2em;
  text-indent: -3.3rem;
}
@media only screen and (max-width:768px) {
  .pageOprPolicy .policy__detailOrderLst > li {
    padding-left: 1.6rem;
    text-indent: -3rem;
  }
}
@media only screen and (max-width:768px) {
  .pageOprPolicy .policy__scroll {
    padding-bottom: 1rem;
    overflow-x: scroll;
  }
}
@media only screen and (max-width:768px) {
  .pageOprPolicy .policy__scroll .policy__scrollWrapper {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.pageOprPolicy .policy__tbl {
  width: 100%;
  border-collapse: collapse;
}
@media only screen and (max-width:768px) {
  .pageOprPolicy .policy__tbl {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 60rem;
  }
}
.pageOprPolicy .policy__tbl thead .policy__tbl__note th {
  padding-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 2;
  text-align: right;
}
@media only screen and (max-width:768px) {
  .pageOprPolicy .policy__tbl thead .policy__tbl__note th {
    padding-bottom: 0.8rem;
    font-size: 0.8rem;
  }
}
.pageOprPolicy .policy__tbl thead .policy__tbl__note th:nth-child(1) {
  padding-right: 4rem;
}
@media only screen and (max-width:768px) {
  .pageOprPolicy .policy__tbl thead .policy__tbl__note th:nth-child(1) {
    padding-right: 1rem;
  }
}
.pageOprPolicy .policy__tbl thead .policy__tbl__head {
  background-color: #f5f5f5;
}
.pageOprPolicy .policy__tbl thead .policy__tbl__head th {
  padding: 2rem 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  border: 1px #cccccc;
  border-style: solid solid solid none;
}
@media only screen and (max-width:768px) {
  .pageOprPolicy .policy__tbl thead .policy__tbl__head th {
    padding: 1rem;
    font-size: 0.9rem;
  }
}
.pageOprPolicy .policy__tbl thead .policy__tbl__head th:nth-child(1) {
  border-left: 1px solid #cccccc;
}
.pageOprPolicy .policy__tbl tbody tr td {
  font-family: "Poppins", sans-serif;
  width: 12.5%;
  padding: 2rem 1.5rem;
  font-size: 1.6rem;
  text-align: right;
  border: 1px #cccccc;
  border-style: none solid solid none;
}
@media only screen and (max-width:768px) {
  .pageOprPolicy .policy__tbl tbody tr td {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
}
.pageOprPolicy .policy__tbl tbody tr td:first-of-type {
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  border-left: 1px solid #cccccc;
}
.pageOprPolicy .policy__sign {
  margin-bottom: 18rem;
  text-align: right;
}
@media only screen and (max-width:768px) {
  .pageOprPolicy .policy__sign {
    margin-bottom: 10rem;
  }
}

.pageOrganization .page__kv {
  background: url(../image//organization/kv_bg.jpg) no-repeat center center/cover;
}
@media only screen and (max-width:768px) {
  .pageOrganization .page__kv {
    background: url(../image//organization/kv_bg_sp.jpg) no-repeat center center/cover;
  }
}
.pageOrganization .pageOrganization__container .pageOrganization__diagram {
  padding: 4.2rem 0;
}
@media only screen and (max-width:768px) {
  .pageOrganization .pageOrganization__container .pageOrganization__diagram {
    padding: 0;
  }
}
.pageOrganization .pageOrganization__container .pageOrganization__diagram .inner .pageOrganization__figure {
  max-width: 99.7rem;
  margin: 0 auto;
}
.pageOrganization .pageOrganization__container .pageOrganization__directors {
  padding: 10.8rem 0 0;
}
@media only screen and (max-width:768px) {
  .pageOrganization .pageOrganization__container .pageOrganization__directors {
    padding: 10rem 0 0;
  }
}
.pageOrganization .pageOrganization__container .pageOrganization__directors .inner .pageOrganization__directContain {
  max-width: 100rem;
  margin: 0 auto;
}
.pageOrganization .pageOrganization__container .pageOrganization__directors .inner .pageOrganization__directContain .page__title {
  margin: 0 0 3.7rem;
}
@media only screen and (max-width:768px) {
  .pageOrganization .pageOrganization__container .pageOrganization__directors .inner .pageOrganization__directContain .page__title {
    margin: 0 0 1.9rem;
    font-size: 1.8rem;
  }
}
.pageOrganization .pageOrganization__container .pageOrganization__directors .inner .pageOrganization__directContain .pageOrganization__list {
  margin: 0 0 15rem;
}
@media only screen and (min-width:769px) {
  .pageOrganization .pageOrganization__container .pageOrganization__directors .inner .pageOrganization__directContain .pageOrganization__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (max-width:768px) {
  .pageOrganization .pageOrganization__container .pageOrganization__directors .inner .pageOrganization__directContain .pageOrganization__list {
    margin: 0 0 10rem;
  }
}
.pageOrganization .pageOrganization__container .pageOrganization__directors .inner .pageOrganization__directContain .pageOrganization__list .pageOrganization__item {
  padding: 2rem 3rem 2.2rem;
  background: #f3f4f4;
  border: 0.1rem solid #e6e6e6;
}
@media only screen and (min-width:769px) {
  .pageOrganization .pageOrganization__container .pageOrganization__directors .inner .pageOrganization__directContain .pageOrganization__list .pageOrganization__item {
    width: calc((100% - 2rem) / 2);
  }
}
@media only screen and (max-width:768px) {
  .pageOrganization .pageOrganization__container .pageOrganization__directors .inner .pageOrganization__directContain .pageOrganization__list .pageOrganization__item {
    padding: 1.8rem 1.9rem 1.1rem;
    margin: 0 0 1rem;
  }
}
.pageOrganization .pageOrganization__container .pageOrganization__directors .inner .pageOrganization__directContain .pageOrganization__list .pageOrganization__item .pageOrganization__title {
  margin: 0 0 0.5rem;
  color: #d02d26;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
}
@media only screen and (max-width:768px) {
  .pageOrganization .pageOrganization__container .pageOrganization__directors .inner .pageOrganization__directContain .pageOrganization__list .pageOrganization__item .pageOrganization__title {
    margin: 0;
    font-size: 1.2rem;
  }
}
.pageOrganization .pageOrganization__container .pageOrganization__directors .inner .pageOrganization__directContain .pageOrganization__list .pageOrganization__item .pageOrganization__name {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1.6;
}
@media only screen and (max-width:768px) {
  .pageOrganization .pageOrganization__container .pageOrganization__directors .inner .pageOrganization__directContain .pageOrganization__list .pageOrganization__item .pageOrganization__name {
    font-size: 1.4rem;
  }
}
.pageOrganization .pageOrganization__container .pageOrganization__directors .inner .pageOrganization__directContain .pageOrganization__list .pageOrganization__item .pageOrganization__name .en {
  margin-top: 0.2rem;
  margin-left: 2rem;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.5;
}

.pageOurline .page__kv {
  background: url(../image//ourline/kv_bg.jpg) no-repeat center center/cover;
}
@media only screen and (max-width:768px) {
  .pageOurline .page__kv {
    background: url(../image//ourline/kv_bg_sp.jpg) no-repeat center center/cover;
  }
}
.pageOurline .pageOurline__container .inner .pageOurline__anchor .pageOurline__frame {
  max-width: 110rem;
  padding: 4.8rem 0;
  margin: 0 auto;
  background: #fafafa;
  border-radius: 4rem;
}
@media only screen and (max-width:768px) {
  .pageOurline .pageOurline__container .inner .pageOurline__anchor .pageOurline__frame {
    padding: 3rem 0.9rem;
    border-radius: 3rem;
  }
}
.pageOurline .pageOurline__container .inner .pageOurline__anchor .pageOurline__frame .pageOurline__map {
  position: relative;
  width: 49.5rem;
  margin: 0 auto;
}
@media only screen and (max-width:768px) {
  .pageOurline .pageOurline__container .inner .pageOurline__anchor .pageOurline__frame .pageOurline__map {
    width: 100%;
    max-width: 31.7rem;
  }
}
.pageOurline .pageOurline__container .inner .pageOurline__anchor .pageOurline__frame .pageOurline__map .pageOurline__link {
  position: absolute;
  padding: 0.7rem 2.5rem;
  color: #000000;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  background: #ffffff;
  border: 0.1rem solid #d3d3d3;
  border-radius: 10rem;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .pageOurline .pageOurline__container .inner .pageOurline__anchor .pageOurline__frame .pageOurline__map .pageOurline__link {
    padding: 0.4rem 0.7rem;
    font-size: 1.2rem;
  }
}
@media only screen and (min-width:769px) {
  .pageOurline .pageOurline__container .inner .pageOurline__anchor .pageOurline__frame .pageOurline__map .pageOurline__link:hover {
    color: #ffffff;
    background: #d02d26;
    border: 0.1rem solid #d02d26;
  }
}
.pageOurline .pageOurline__container .inner .pageOurline__anchor .pageOurline__frame .pageOurline__map .pageOurline__link.-link01 {
  top: 3.2rem;
  right: -4.7rem;
}
@media only screen and (max-width:768px) {
  .pageOurline .pageOurline__container .inner .pageOurline__anchor .pageOurline__frame .pageOurline__map .pageOurline__link.-link01 {
    top: 8.049%;
    right: 1.893%;
  }
}
.pageOurline .pageOurline__container .inner .pageOurline__anchor .pageOurline__frame .pageOurline__map .pageOurline__link.-link02 {
  top: 6.2rem;
  right: 15.1rem;
}
@media only screen and (max-width:768px) {
  .pageOurline .pageOurline__container .inner .pageOurline__anchor .pageOurline__frame .pageOurline__map .pageOurline__link.-link02 {
    top: 12.074%;
    right: 28.076%;
  }
}
@media only screen and (max-width:374px) {
  .pageOurline .pageOurline__container .inner .pageOurline__anchor .pageOurline__frame .pageOurline__map .pageOurline__link.-link02 {
    top: 14.074%;
    right: 31.076%;
  }
}
.pageOurline .pageOurline__container .inner .pageOurline__anchor .pageOurline__frame .pageOurline__map .pageOurline__link.-link03 {
  right: 8.5rem;
  bottom: 15.9rem;
}
@media only screen and (max-width:768px) {
  .pageOurline .pageOurline__container .inner .pageOurline__anchor .pageOurline__frame .pageOurline__map .pageOurline__link.-link03 {
    right: 23.344%;
    bottom: 30.031%;
  }
}
.pageOurline .pageOurline__container .inner .pageOurline__anchor .pageOurline__frame .pageOurline__map .pageOurline__link.-link04 {
  bottom: 14.3rem;
  left: 11.3rem;
}
@media only screen and (max-width:768px) {
  .pageOurline .pageOurline__container .inner .pageOurline__anchor .pageOurline__frame .pageOurline__map .pageOurline__link.-link04 {
    bottom: 30.031%;
    left: 23.659%;
  }
}
.pageOurline .pageOurline__container .inner .pageOurline__anchor .pageOurline__frame .pageOurline__map .pageOurline__link.-link05 {
  right: 17.2rem;
  bottom: 9.7rem;
}
@media only screen and (max-width:768px) {
  .pageOurline .pageOurline__container .inner .pageOurline__anchor .pageOurline__frame .pageOurline__map .pageOurline__link.-link05 {
    right: 41.009%;
    bottom: 20.433%;
  }
}
@media only screen and (max-width:374px) {
  .pageOurline .pageOurline__container .inner .pageOurline__anchor .pageOurline__frame .pageOurline__map .pageOurline__link.-link05 {
    bottom: 19.433%;
  }
}
.pageOurline .pageOurline__container .inner .pageOurline__anchor .pageOurline__frame .pageOurline__map .pageOurline__link.-link06 {
  bottom: 8.6rem;
  left: -6.1rem;
}
@media only screen and (max-width:768px) {
  .pageOurline .pageOurline__container .inner .pageOurline__anchor .pageOurline__frame .pageOurline__map .pageOurline__link.-link06 {
    bottom: 18.266%;
    left: 0;
  }
}
.pageOurline .pageOurline__container .inner .pageOurline__anchor .pageOurline__frame .pageOurline__map .pageOurline__link.-link07 {
  right: -4.7rem;
  bottom: 4.3rem;
}
@media only screen and (max-width:768px) {
  .pageOurline .pageOurline__container .inner .pageOurline__anchor .pageOurline__frame .pageOurline__map .pageOurline__link.-link07 {
    right: 10.41%;
    bottom: 3.096%;
  }
}
.pageOurline .pageOurline__container .inner .pageOurline__anchor .pageOurline__frame .pageOurline__map .pageOurline__link.-link08 {
  bottom: 20.7rem;
  left: 11.3rem;
}
@media only screen and (max-width:768px) {
  .pageOurline .pageOurline__container .inner .pageOurline__anchor .pageOurline__frame .pageOurline__map .pageOurline__link.-link08 {
    bottom: 41.031%;
    left: 26.659%;
  }
}
.pageOurline .pageOurline__container .inner .pageOurline__offices {
  padding: 4.7rem 0 12.4rem;
}
@media only screen and (max-width:768px) {
  .pageOurline .pageOurline__container .inner .pageOurline__offices {
    padding: 2.1rem 0 0;
  }
}
.pageOurline .pageOurline__container .inner .pageOurline__offices .pageOurline__group {
  max-width: 110rem;
  margin: 0 auto;
}
.pageOurline .pageOurline__container .inner .pageOurline__offices .pageOurline__group .pageOurline__block {
  padding: 5rem 5rem 4.6rem;
  border-bottom: 0.1rem solid #cccccc;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media only screen and (min-width:769px) {
  .pageOurline .pageOurline__container .inner .pageOurline__offices .pageOurline__group .pageOurline__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (max-width:768px) {
  .pageOurline .pageOurline__container .inner .pageOurline__offices .pageOurline__group .pageOurline__block {
    padding: 4rem 0;
  }
}
@media only screen and (min-width:769px) {
  .pageOurline .pageOurline__container .inner .pageOurline__offices .pageOurline__group .pageOurline__block .pageOurline__blockInfor {
    width: 60%;
  }
}
.pageOurline .pageOurline__container .inner .pageOurline__offices .pageOurline__group .pageOurline__block .pageOurline__blockInfor .page__title {
  margin: 0 0 1rem;
}
@media only screen and (max-width:768px) {
  .pageOurline .pageOurline__container .inner .pageOurline__offices .pageOurline__group .pageOurline__block .pageOurline__blockInfor .page__title {
    margin: 0 0 1.3rem;
  }
}
.pageOurline .pageOurline__container .inner .pageOurline__offices .pageOurline__group .pageOurline__block .pageOurline__blockInfor .pageOurline__add {
  margin: 0 0 1.2rem;
  font-size: 1.6rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageOurline .pageOurline__container .inner .pageOurline__offices .pageOurline__group .pageOurline__block .pageOurline__blockInfor .pageOurline__add {
    margin: 0 0 1.4rem;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.5;
  }
}
.pageOurline .pageOurline__container .inner .pageOurline__offices .pageOurline__group .pageOurline__block .pageOurline__blockInfor .pageOurline__btn {
  display: block;
  width: 13.2rem;
  height: 3.3rem;
  margin: 0 0 1.6rem;
  background: url(../image//ourline/btn-googlemap.png) no-repeat center center/100% auto;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .pageOurline .pageOurline__container .inner .pageOurline__offices .pageOurline__group .pageOurline__block .pageOurline__blockInfor .pageOurline__btn {
    margin: 0 0 1.6rem;
  }
}
@media only screen and (min-width:769px) {
  .pageOurline .pageOurline__container .inner .pageOurline__offices .pageOurline__group .pageOurline__block .pageOurline__blockInfor .pageOurline__btn:hover {
    background: #e60113 url(../image//ourline/btn-googlemap_ov.png) no-repeat center center/100% auto;
  }
}
.pageOurline .pageOurline__container .inner .pageOurline__offices .pageOurline__group .pageOurline__block .pageOurline__blockInfor .pageOurline__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 2.7rem;
  font-size: 1.5rem;
  line-height: 1.4;
}
@media only screen and (max-width:768px) {
  .pageOurline .pageOurline__container .inner .pageOurline__offices .pageOurline__group .pageOurline__block .pageOurline__blockInfor .pageOurline__contact {
    margin: 0 0 1.3rem;
    font-size: 1.3rem;
    font-weight: 500;
  }
}
.pageOurline .pageOurline__container .inner .pageOurline__offices .pageOurline__group .pageOurline__block .pageOurline__blockInfor .pageOurline__contact .pageOurline__tel {
  margin-right: 5.4rem;
}
@media only screen and (max-width:768px) {
  .pageOurline .pageOurline__container .inner .pageOurline__offices .pageOurline__group .pageOurline__block .pageOurline__blockInfor .pageOurline__contact .pageOurline__tel {
    margin-right: 2rem;
  }
}
.pageOurline .pageOurline__container .inner .pageOurline__offices .pageOurline__group .pageOurline__block .pageOurline__blockInfor .pageOurline__contact .pageOurline__tel .pageOurline__link {
  color: #000000;
}
.pageOurline .pageOurline__container .inner .pageOurline__offices .pageOurline__group .pageOurline__block .pageOurline__blockInfor .pageOurline__contact .pageOurline__tel .pageOurline__link:hover {
  text-decoration: underline;
}
.pageOurline .pageOurline__container .inner .pageOurline__offices .pageOurline__group .pageOurline__block .pageOurline__blockInfor .pageOurline__infor {
  color: #888888;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.9;
}
@media only screen and (max-width:768px) {
  .pageOurline .pageOurline__container .inner .pageOurline__offices .pageOurline__group .pageOurline__block .pageOurline__blockInfor .pageOurline__infor {
    font-size: 1.2rem;
    line-height: 1.7;
  }
}
.pageOurline .pageOurline__container .inner .pageOurline__offices .pageOurline__group .pageOurline__block .pageOurline__blockMap {
  height: 26rem;
  margin: 5rem 0 0;
}
@media only screen and (min-width:769px) {
  .pageOurline .pageOurline__container .inner .pageOurline__offices .pageOurline__group .pageOurline__block .pageOurline__blockMap {
    width: 40%;
  }
}
@media only screen and (max-width:768px) {
  .pageOurline .pageOurline__container .inner .pageOurline__offices .pageOurline__group .pageOurline__block .pageOurline__blockMap {
    height: 21.8rem;
    margin: 1.7rem 0 0;
  }
}
.pageOurline .pageOurline__container .inner .pageOurline__offices .pageOurline__group .pageOurline__block .pageOurline__blockMap .pageOurline__map {
  width: 100%;
  height: 100%;
}
.pageOurline .pageOurline__container .inner .pageOurline__offices .pageOurline__group .pageOurline__block.-active {
  background-color: rgba(230, 1, 19, 0.1);
}

.pagePrivacy {
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pagePrivacy {
    font-size: 1.3rem;
    font-weight: 500;
  }
}
.pagePrivacy .mb_3 {
  margin-bottom: 3rem !important;
}
.pagePrivacy .mb_5 {
  margin-bottom: 5rem !important;
}
.pagePrivacy .mb_8 {
  margin-bottom: 8rem !important;
}
.pagePrivacy .fw_bold {
  font-weight: 700;
}
@media only screen and (max-width:768px) {
  .pagePrivacy .privacy__txt {
    margin-bottom: 5.2rem !important;
  }
}
@media only screen and (max-width:768px) {
  .pagePrivacy .privacy__lst {
    margin-bottom: 2.3rem !important;
  }
}
.pagePrivacy .privacy__lst > li {
  padding-left: 3rem;
  text-indent: -3rem;
}
@media only screen and (max-width:768px) {
  .pagePrivacy .privacy__lst > li {
    padding-left: 2.6rem;
    text-indent: -2.6rem;
  }
}
.pagePrivacy .privacy__note {
  margin-bottom: 6.1rem;
  text-align: right;
}
@media only screen and (max-width:768px) {
  .pagePrivacy .privacy__note {
    margin-bottom: 2.6rem;
    letter-spacing: 0.04em;
  }
}
.pagePrivacy .privacy__note .ms {
  font-size: 1.4rem;
}
.pagePrivacy .privacy__note .ml {
  font-size: 1.8rem;
  line-height: 1;
}
.pagePrivacy .privacy__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1000px;
  margin: 0 auto 8.5rem;
  background-color: #f0f0f0;
}
@media only screen and (max-width:768px) {
  .pagePrivacy .privacy__contact {
    display: block;
    margin: 0 auto 4.5rem;
  }
}
.pagePrivacy .privacy__contact .contact__colL {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 32%;
  border-right: 1px solid #d3d3d3;
}
@media only screen and (max-width:768px) {
  .pagePrivacy .privacy__contact .contact__colL {
    width: 100%;
    padding: 3rem 0 2rem;
    border-right: none;
    border-bottom: 1px solid #d3d3d3;
  }
}
.pagePrivacy .privacy__contact .contact__colL .contact__img > img {
  width: 16.8rem;
  margin: 0 auto;
}
.pagePrivacy .privacy__contact .contact__colL .contact__imgCaption {
  margin-top: 0.5rem;
  font-size: 2rem;
  font-weight: 500;
}
@media only screen and (max-width:768px) {
  .pagePrivacy .privacy__contact .contact__colL .contact__imgCaption {
    font-size: 1.9rem;
  }
}
.pagePrivacy .privacy__contact .contact__colR {
  width: 68%;
  padding: 2.8rem 4.5rem 2.8rem 6.5rem;
  font-size: 1.6rem;
  line-height: 1.9;
}
@media only screen and (max-width:768px) {
  .pagePrivacy .privacy__contact .contact__colR {
    width: 100%;
    max-width: 28rem;
    padding: 2rem 2rem 3rem;
    margin: 0 auto;
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
.pagePrivacy .privacy__contact .contact__colR .contact__lbl {
  display: inline-block;
  padding: 0.2rem 2.3rem;
  margin-bottom: 1.9rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.44;
  border-right: 3px solid #d02d26;
  border-left: 3px solid #d02d26;
}
@media only screen and (max-width:768px) {
  .pagePrivacy .privacy__contact .contact__colR .contact__lbl {
    padding: 0.2rem 1.2rem;
    font-size: 1.6rem;
  }
}
.pagePrivacy .privacy__contact .contact__colR .contact__phone {
  gap: 5.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pagePrivacy .privacy__contact .contact__colR .contact__phone {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.3rem;
  }
}
.pagePrivacy .privacy__contact .contact__colR .contact__info {
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pagePrivacy .privacy__contact .contact__colR .contact__info {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.3rem;
  }
}
@media only screen and (max-width:768px) {
  .pagePrivacy .privacy__contact .contact__colR .contact__txt {
    margin-bottom: 1rem;
  }
}
.pagePrivacy .privacy__contact .contact__colR .contact__link {
  color: #e60113;
  border-bottom: 1px solid #e60113;
}
.pagePrivacy .privacy__contact .contact__colR .contact__link:hover {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0.8;
}

.pageRecruit .pageRecruit__kv {
  position: relative;
  height: 71rem;
  margin-bottom: 1.2rem;
  background: url(../image//recruit/kv.jpg) no-repeat top center/cover;
}
@media only screen and (max-width:960px) {
  .pageRecruit .pageRecruit__kv {
    margin-bottom: 5.2rem;
  }
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__kv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    margin-bottom: 0;
    background: none;
  }
}
.pageRecruit .pageRecruit__kv .pageRecruit_kvTop {
  position: relative;
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__kv .pageRecruit_kvTop {
    padding-right: 2rem;
  }
}
.pageRecruit .pageRecruit__kv .pageRecruit_kvTop .pageRecruit__pageTitle {
  position: absolute;
  top: 9.7rem;
  left: 0;
  padding: 1rem 5.5rem;
  color: #d02d26;
  font-size: 7rem;
  font-weight: 600;
  line-height: 1.514;
  letter-spacing: 0;
  background-color: #ffffff;
  border-radius: 0 0 50px 0;
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__kv .pageRecruit_kvTop .pageRecruit__pageTitle {
    top: 0;
    padding: 0 2rem;
    font-size: 3.3rem;
    border-radius: 0 0 20px 0;
  }
}
.pageRecruit .pageRecruit__kv .pageRecruit__kvBtm {
  position: absolute;
  bottom: -75px;
  left: 0;
  padding: 3.5rem 5.5rem;
  background-color: #ffffff;
  border-radius: 0 50px 0 0;
}
@media only screen and (max-width:960px) {
  .pageRecruit .pageRecruit__kv .pageRecruit__kvBtm {
    padding: 3rem 5rem;
  }
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__kv .pageRecruit__kvBtm {
    position: relative;
    bottom: auto;
    padding: 2.8rem 2.2rem 4rem;
  }
}
.pageRecruit .pageRecruit__kv .pageRecruit__kvBtm .pageRecruit_txt {
  font-family: "Noto Serif JP", serif;
  margin-bottom: 0.8rem;
  font-size: 5.4rem;
  font-weight: 600;
  line-height: 1.389;
  letter-spacing: 0;
}
@media only screen and (max-width:960px) {
  .pageRecruit .pageRecruit__kv .pageRecruit__kvBtm .pageRecruit_txt {
    font-size: 5rem;
  }
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__kv .pageRecruit__kvBtm .pageRecruit_txt {
    font-size: 3rem;
    line-height: 1.367;
  }
}
.pageRecruit .pageRecruit__kv .pageRecruit__kvBtm .pageRecruit_des {
  color: #333333;
  font-size: 1.6rem;
  line-height: 1.5625;
  letter-spacing: 0.1em;
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__kv .pageRecruit__kvBtm .pageRecruit_des {
    font-size: 1.1rem;
    line-height: 1.545;
  }
}
.pageRecruit .page__breadcrumb {
  margin-bottom: 10rem;
}
@media only screen and (max-width:768px) {
  .pageRecruit .page__breadcrumb {
    margin-bottom: 4rem;
  }
}
.pageRecruit .pageRecruit__aboutUs {
  margin-bottom: 13rem;
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__aboutUs {
    margin-bottom: 10rem;
  }
}
.pageRecruit .pageRecruit__aboutUs .page__title {
  margin-bottom: 3.7rem;
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__aboutUs .page__title {
    margin-bottom: 2.5rem;
  }
}
.pageRecruit .pageRecruit__aboutUs .pageRecruit__aboutUs__lst {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4.6rem 3rem;
  background-color: #f5f5f5;
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__aboutUs .pageRecruit__aboutUs__lst {
    padding: 2.7rem 2rem;
    margin: 0 -2rem;
  }
}
.pageRecruit .pageRecruit__aboutUs .pageRecruit__aboutUs__lst .pageRecruit__aboutUs__item {
  width: calc((100% - 40px) / 3);
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__aboutUs .pageRecruit__aboutUs__lst .pageRecruit__aboutUs__item {
    width: 100%;
  }
}
.pageRecruit .pageRecruit__aboutUs .pageRecruit__aboutUs__lst .pageRecruit__aboutUs__item:first-of-type {
  width: 38.1%;
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__aboutUs .pageRecruit__aboutUs__lst .pageRecruit__aboutUs__item:first-of-type {
    width: calc(100% + 1rem);
    margin-right: -1rem;
  }
}
.pageRecruit .pageRecruit__aboutUs .pageRecruit__aboutUs__lst .pageRecruit__aboutUs__item:nth-of-type(2) {
  width: calc(61.9% - 20px);
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__aboutUs .pageRecruit__aboutUs__lst .pageRecruit__aboutUs__item:nth-of-type(2) {
    width: 100%;
  }
}
.pageRecruit .pageRecruit__aboutUs .pageRecruit__aboutUs__lst .pageRecruit__aboutUs__item > figure > img {
  width: 100%;
}
.pageRecruit .pageRecruit__interview {
  margin-bottom: 13rem;
}
.pageRecruit .pageRecruit__interview .titleType1 .titleType1__lText {
  color: #d02d26;
  font-weight: 600;
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__interview {
    margin-bottom: 10rem;
  }
}
.pageRecruit .pageRecruit__interview .page__title {
  margin-bottom: 6rem;
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__interview .page__title {
    margin-bottom: 5.6rem;
  }
}
@media only screen and (min-width:769px) {
  .pageRecruit .pageRecruit__interview .pageRecruit__interviewLst {
    gap: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__interview .pageRecruit__interviewLst {
    margin-bottom: 3.3rem;
  }
}
@media only screen and (min-width:769px) {
  .pageRecruit .pageRecruit__interview .pageRecruit__interviewLst .pageRecruit__interviewItem {
    width: calc((100% - 80px) / 5);
    margin-right: 0 !important;
  }
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__interview .pageRecruit__interviewLst .pageRecruit__interviewItem {
    width: 22rem;
  }
}
.pageRecruit .pageRecruit__interview .pageRecruit__interviewLst .pageRecruit__interviewItem .pageRecruit__interviewImg {
  margin-bottom: 1.5rem;
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__interview .pageRecruit__interviewLst .pageRecruit__interviewItem .pageRecruit__interviewImg {
    margin-bottom: 2rem;
  }
}
.pageRecruit .pageRecruit__interview .pageRecruit__interviewLst .pageRecruit__interviewItem .pageRecruit__interviewCnt {
  position: relative;
  padding-left: 3.5rem;
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__interview .pageRecruit__interviewLst .pageRecruit__interviewItem .pageRecruit__interviewCnt {
    padding-left: 3rem;
  }
}
.pageRecruit .pageRecruit__interview .pageRecruit__interviewLst .pageRecruit__interviewItem .pageRecruit__interviewCnt .pageRecruit__interviewNo {
  font-family: "Poppins", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  color: #d02d26;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0;
}
.pageRecruit .pageRecruit__interview .pageRecruit__interviewLst .pageRecruit__interviewItem .pageRecruit__interviewCnt .pageRecruit__interviewPos {
  margin-bottom: 0.7em;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3125;
  letter-spacing: 0.04em;
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__interview .pageRecruit__interviewLst .pageRecruit__interviewItem .pageRecruit__interviewCnt .pageRecruit__interviewPos {
    margin-bottom: 0.2rem;
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
.pageRecruit .pageRecruit__interview .pageRecruit__interviewLst .pageRecruit__interviewItem .pageRecruit__interviewCnt .pageRecruit__interviewDate {
  color: #939393;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.1538;
  letter-spacing: 0.04em;
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__interview .pageRecruit__interviewLst .pageRecruit__interviewItem .pageRecruit__interviewCnt .pageRecruit__interviewDate {
    font-size: 1.2rem;
    line-height: 1.25;
  }
}
@media only screen and (min-width:769px) {
  .pageRecruit .pageRecruit__interview .swiper .swiper-button {
    display: none;
  }
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__interview .swiper .swiper-button {
    gap: 0.8rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__interview .swiper .swiper-button .swiper-button-next,
  .pageRecruit .pageRecruit__interview .swiper .swiper-button .swiper-button-prev {
    position: relative;
    right: auto;
    left: auto;
    width: 5.1rem;
    height: 5.1rem;
    opacity: 1;
  }
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__interview .swiper .swiper-button .swiper-button-next {
    background: url(../image/common/icon-arrow_right_fill.png) no-repeat 50%/contain;
  }
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__interview .swiper .swiper-button .swiper-button-prev {
    background: url(../image/common/icon-arrow_left_fill_gray.png) no-repeat 50%/contain;
  }
}
.pageRecruit .pageRecruit__ref {
  margin-bottom: 16rem;
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__ref {
    margin-bottom: 8rem;
  }
}
.pageRecruit .pageRecruit__ref .pageRecruit__refLst {
  gap: 9.6%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__ref .pageRecruit__refLst {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 3rem;
  }
}
.pageRecruit .pageRecruit__ref .pageRecruit__refLst .pageRecruit__refItem {
  display: block;
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__ref .pageRecruit__refLst .pageRecruit__refItem {
    width: 100%;
  }
}
.pageRecruit .pageRecruit__ref .pageRecruit__refLst .pageRecruit__refItem .pageRecruit__refImg {
  overflow: hidden;
  border-radius: 2rem;
}
.pageRecruit .pageRecruit__ref .pageRecruit__refLst .pageRecruit__refItem .pageRecruit__refTtl {
  font-family: "Poppins", sans-serif;
  margin-top: -2.5rem;
  color: #d02d26;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__ref .pageRecruit__refLst .pageRecruit__refItem .pageRecruit__refTtl {
    font-size: 3rem;
    line-height: 1.533zw;
  }
}
.pageRecruit .pageRecruit__ref .pageRecruit__refLst .pageRecruit__refItem .pageRecruit__refbtn {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000000;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
}
.pageRecruit .pageRecruit__ref .pageRecruit__refLst .pageRecruit__refItem .pageRecruit__refbtn::after {
  position: relative;
  display: block;
  width: 3rem;
  height: 3rem;
  content: "";
  background: url(../image/common/icon-arrow_right_stroke.png) no-repeat 50%/contain;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .pageRecruit .pageRecruit__ref .pageRecruit__refLst .pageRecruit__refItem .pageRecruit__refbtn::after {
    width: 2.8rem;
    height: 2.8rem;
  }
}
.pageRecruit .pageRecruit__ref .pageRecruit__refLst .pageRecruit__refItem:hover .pageRecruit__refbtn::after {
  background: url(../image/common/icon-arrow_right_fill.png) no-repeat 50%/contain;
}
.pageRecruit .page__entry {
  padding: 6rem 0;
  background: url(../image//recruit/entry01.jpg) no-repeat 50%/cover;
}
@media only screen and (max-width:768px) {
  .pageRecruit .page__entry {
    padding: 3rem 0;
    background: url(../image//recruit/entry01_sp.jpg) no-repeat 50%/cover;
  }
}
.pageRecruit .page__entry .inner {
  width: 89.33%;
  padding: 3rem 0 6rem;
  background-color: #ffffff;
  opacity: 0.95;
}
@media only screen and (max-width:768px) {
  .pageRecruit .page__entry .inner {
    padding: 3rem 0 5rem;
  }
}
.pageRecruit .page__entry .page__entryTitle {
  font-family: "Poppins", sans-serif;
  margin-bottom: 5.5rem;
  color: #d02d26;
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pageRecruit .page__entry .page__entryTitle {
    margin-bottom: 3.5rem;
    font-size: 2.4rem;
  }
}
.pageRecruit .page__entry .page__entryBtn {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 53.9rem;
  padding: 3rem 0;
  margin: 0 auto;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0;
  background-color: #e60113;
  border: 2px solid #e60113;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width:768px) {
  .pageRecruit .page__entry .page__entryBtn {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 26rem;
    padding: 2.15rem 2rem 2.15rem 2.5rem;
    font-size: 1.6rem;
  }
}
.pageRecruit .page__entry .page__entryBtn::before {
  position: absolute;
  top: -4.5rem;
  left: 50%;
  width: 20rem;
  height: 9rem;
  content: "";
  background: url(../image/common/icon-mynavi_tag_white.png) no-repeat 50%/contain;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width:768px) {
  .pageRecruit .page__entry .page__entryBtn::before {
    top: -3.5rem;
    width: 15rem;
    height: 6.5rem;
  }
}
.pageRecruit .page__entry .page__entryBtn::after {
  position: absolute;
  top: 50%;
  right: 2.7rem;
  width: 4rem;
  height: 4rem;
  content: "";
  background: url(../image/common/icon-arrow_right_stroke_white.png) no-repeat 50%/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width:768px) {
  .pageRecruit .page__entry .page__entryBtn::after {
    position: relative;
    top: auto;
    right: auto;
    width: 2.6rem;
    height: 2.6rem;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
.pageRecruit .page__entry .page__entryBtn:hover {
  color: #e60113;
  background-color: #ffffff;
}
.pageRecruit .page__entry .page__entryBtn:hover::before {
  background: url(../image/common/icon-mynavi_tag_blue.png) no-repeat 50%/contain;
}
.pageRecruit .page__entry .page__entryBtn:hover::after {
  background: url(../image/common/icon-arrow_right_stroke.png) no-repeat 50%/contain;
}

.pageRequirement .page__kv {
  background: #ffffff;
}
.pageRequirement .page__breadcrumb {
  margin-bottom: 5.5rem;
}
@media only screen and (max-width:768px) {
  .pageRequirement .page__breadcrumb {
    margin-bottom: 4.3rem;
  }
}
.pageRequirement .pageRequirement__container .pageRequirement__newGraduate .pageRequirement__newGraduateTbl {
  width: 100%;
  margin-bottom: 15.5rem;
  border-collapse: collapse;
  border-top: 2px solid #d02d26;
  border-bottom: 1px solid #000000;
}
@media only screen and (max-width:768px) {
  .pageRequirement .pageRequirement__container .pageRequirement__newGraduate .pageRequirement__newGraduateTbl {
    margin-bottom: 10rem;
    border-top-width: 1px;
  }
}
.pageRequirement .pageRequirement__container .pageRequirement__newGraduate .pageRequirement__newGraduateTbl tr th,
.pageRequirement .pageRequirement__container .pageRequirement__newGraduate .pageRequirement__newGraduateTbl tr td {
  padding: 3.5rem;
  border-bottom: 1px solid #cccccc;
}
@media only screen and (max-width:768px) {
  .pageRequirement .pageRequirement__container .pageRequirement__newGraduate .pageRequirement__newGraduateTbl tr th,
  .pageRequirement .pageRequirement__container .pageRequirement__newGraduate .pageRequirement__newGraduateTbl tr td {
    padding: 1.5rem 1rem;
  }
}
.pageRequirement .pageRequirement__container .pageRequirement__newGraduate .pageRequirement__newGraduateTbl tr:last-of-type th,
.pageRequirement .pageRequirement__container .pageRequirement__newGraduate .pageRequirement__newGraduateTbl tr:last-of-type td {
  border-bottom: none;
}
.pageRequirement .pageRequirement__container .pageRequirement__newGraduate .pageRequirement__newGraduateTbl tr th {
  width: 23.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  background-color: #f5f5f5;
}
@media only screen and (max-width:768px) {
  .pageRequirement .pageRequirement__container .pageRequirement__newGraduate .pageRequirement__newGraduateTbl tr th {
    width: 10.4rem;
    font-size: 1.4rem;
    font-weight: 500;
  }
}
.pageRequirement .pageRequirement__container .pageRequirement__newGraduate .pageRequirement__newGraduateTbl tr td {
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageRequirement .pageRequirement__container .pageRequirement__newGraduate .pageRequirement__newGraduateTbl tr td {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.46;
  }
}
.pageRequirement .pageRequirement__container .pageRequirement__newCareer {
  padding: 7.4rem 5rem;
  margin-bottom: 24.5rem;
  background-color: #f0f0f0;
  border-radius: 10px;
}
@media only screen and (max-width:768px) {
  .pageRequirement .pageRequirement__container .pageRequirement__newCareer {
    padding: 5rem 2rem;
    margin-bottom: 8rem;
    border-radius: 5px;
  }
}
.pageRequirement .pageRequirement__container .pageRequirement__newCareer .pageRequirement__newCareerText.-no-job {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pageRequirement .pageRequirement__container .pageRequirement__newCareer .pageRequirement__newCareerText.-no-job {
    font-size: 1.6rem;
  }
}
.pageRequirement .pageRequirement__container .pageRequirement__newCareer .pageRequirement__newCareerLink {
  font-family: "Noto Serif JP", serif;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3rem 12rem 3rem 3rem;
  color: #000000;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.85;
  background-color: #ffffff;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .pageRequirement .pageRequirement__container .pageRequirement__newCareer .pageRequirement__newCareerLink {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 3rem 7rem 3rem 3rem;
    font-size: 1.4rem;
    line-height: 1.785;
  }
}
.pageRequirement .pageRequirement__container .pageRequirement__newCareer .pageRequirement__newCareerLink::after {
  position: absolute;
  top: 50%;
  right: 5rem;
  width: 5rem;
  height: 5rem;
  content: "";
  background: url(../image/common/icon-external_red.png) no-repeat 50%/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media only screen and (max-width:768px) {
  .pageRequirement .pageRequirement__container .pageRequirement__newCareer .pageRequirement__newCareerLink::after {
    right: 2rem;
    width: 3.8rem;
    height: 3.8rem;
  }
}
.pageRequirement .pageRequirement__container .pageRequirement__newCareer .pageRequirement__newCareerLink .pageRequirement__newCareerTtl {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.2rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.44;
}
@media only screen and (max-width:768px) {
  .pageRequirement .pageRequirement__container .pageRequirement__newCareer .pageRequirement__newCareerLink .pageRequirement__newCareerTtl {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.pageRequirement .pageRequirement__container .pageRequirement__newCareer .pageRequirement__newCareerLink .pageRequirement__newCareerTtl span.en {
  position: relative;
  padding-left: 4.3rem;
  color: #e60113;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
}
@media only screen and (max-width:768px) {
  .pageRequirement .pageRequirement__container .pageRequirement__newCareer .pageRequirement__newCareerLink .pageRequirement__newCareerTtl span.en {
    font-size: 1.4rem;
  }
}
.pageRequirement .pageRequirement__container .pageRequirement__newCareer .pageRequirement__newCareerLink .pageRequirement__newCareerTtl span.en::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.8rem;
  height: 1px;
  content: "";
  background: #e60113;
}
.pageRequirement .pageRequirement__container .pageRequirement__newCareer .pageRequirement__newCareerLink:hover {
  color: #ffffff;
  background-color: #666b71;
}
.pageRequirement .pageRequirement__container .pageRequirement__newCareer .pageRequirement__newCareerLink:hover .pageRequirement__newCareerTtl span.en {
  color: #ffffff;
}
.pageRequirement .pageRequirement__container .pageRequirement__newCareer .pageRequirement__newCareerLink:hover .pageRequirement__newCareerTtl span.en::before {
  background: #ffffff;
}
.pageRequirement .pageRequirement__container .pageRequirement__newCareer .pageRequirement__newCareerLink:hover::after {
  background: url(../image/common/icon-external_dgray.png) no-repeat 50%/contain;
}
.pageRequirement .cEntry {
  margin-bottom: 14rem;
}
@media only screen and (max-width:768px) {
  .pageRequirement .cEntry {
    margin-bottom: 8rem;
  }
}
.pageRequirement .interviewLinks__item:nth-child(2) {
  display: none;
}

.pageRetail {
  background-color: #fcf0e5;
}
.pageRetail .page__top {
  padding-bottom: 0;
  margin-bottom: 5.8rem;
  border-bottom: none;
}
@media only screen and (max-width:768px) {
  .pageRetail .page__top {
    padding-bottom: 0;
    margin-bottom: 4rem;
  }
}
.pageRetail .page__top .page__topTitle {
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pageRetail .page__top .page__topTitle {
    font-size: 2.2rem;
  }
}
.pageRetail .page__top .page__topTitle .en {
  font-size: 2.7rem;
}
@media only screen and (max-width:768px) {
  .pageRetail .page__top .page__topTitle .en {
    font-size: 1.8rem;
  }
}
.pageRetail .retailList {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 8rem;
}
@media only screen and (max-width:768px) {
  .pageRetail .retailList {
    gap: 3rem;
    padding-bottom: 10rem;
  }
}
.pageRetail .retailList .retailItem {
  max-width: 36rem;
}
@media only screen and (max-width:768px) {
  .pageRetail .retailList .retailItem {
    max-width: 100%;
  }
}
.pageRetail .retailList .retailLink {
  display: block;
}
.pageRetail .retailList .retailLink .retailImg {
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.pageRetail .retailList .retailLink .retailImg img {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.pageRetail .retailList .retailLink .retailCnt {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3rem 2rem;
  margin-bottom: 1.1rem;
  background-color: #ffffff;
  border-radius: 0 0 20px 20px;
}
@media only screen and (max-width:768px) {
  .pageRetail .retailList .retailLink .retailCnt {
    padding: 2rem;
  }
}
.pageRetail .retailList .retailLink .retailTtl {
  position: relative;
  width: 100%;
  padding-right: 4rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4583;
}
@media only screen and (max-width:768px) {
  .pageRetail .retailList .retailLink .retailTtl {
    font-size: 1.8rem;
    line-height: 1.44;
  }
}
.pageRetail .retailList .retailLink .retailTtl:after {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: absolute;
  top: 50%;
  right: 0;
  width: 3rem;
  height: 3rem;
  content: "";
  background: url(../image/common/icon-arrow_right_stroke.png) no-repeat center center/100% auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.pageRetail .retailList .retailLink:hover .retailImg img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.pageRetail .retailList .retailLink:hover .retailTtl::after {
  background: url(../image/common/icon-arrow_right_fill.png) no-repeat center center/100% auto;
}
.pageRetail .retailList .retailDes {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.923;
}
@media only screen and (max-width:768px) {
  .pageRetail .retailList .retailDes {
    font-size: 1.2rem;
    line-height: 1.583;
  }
}

.pageSample {
  min-height: 100vh;
  padding-top: 12rem;
  padding-bottom: 12rem;
  background-color: #e60113;
}
@media only screen and (max-width:768px) {
  .pageSample {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
.pageSample .pageSample__pageTitle {
  margin-bottom: 3.2rem;
  font-size: 4rem;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .pageSample .pageSample__pageTitle {
    font-size: 3.2rem;
  }
}
.pageSample .pageSample__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.pageSample .pageSample__flex:not(:last-child) {
  margin-bottom: 8rem;
}
.pageSample .pageSample__flex.-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width:768px) {
  .pageSample .pageSample__flex.-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width:768px) {
  .pageSample .pageSample__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .pageSample .pageSample__flex:not(:last-child) {
    margin-bottom: 6.4rem;
  }
}
.pageSample .pageSample__figure {
  width: 49%;
  background-color: #efefef;
}
.pageSample .pageSample__figure.-bg-pink {
  background-color: #fc94b0;
}
.pageSample .pageSample__figure.-bg-blue {
  background-color: #53abef;
}
@media only screen and (max-width:768px) {
  .pageSample .pageSample__figure {
    width: 100%;
    padding-bottom: 53%;
    margin-bottom: 2.4rem;
  }
}
.pageSample .pageSample__desc {
  width: 49%;
}
@media only screen and (max-width:768px) {
  .pageSample .pageSample__desc {
    width: 100%;
  }
}
.pageSample .pageSample__title {
  margin-bottom: 1rem;
  font-size: 2.4rem;
}
@media only screen and (max-width:768px) {
  .pageSample .pageSample__title {
    font-size: 2rem;
  }
}
@media only screen and (max-width:768px) {
  .pageSample .pageSample__text {
    font-size: 1.2rem;
  }
}

.pageSelectionPolicy {
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageSelectionPolicy {
    font-size: 1.3rem;
    font-weight: 500;
  }
}
.pageSelectionPolicy .mb_3 {
  margin-bottom: 3rem !important;
}
.pageSelectionPolicy .mb_6 {
  margin-bottom: 6rem !important;
}
@media only screen and (max-width:768px) {
  .pageSelectionPolicy .sp-mb_3 {
    margin-bottom: 3rem !important;
  }
}
.pageSelectionPolicy .fw_bold {
  font-weight: 700 !important;
}
.pageSelectionPolicy .page__breadcrumb {
  margin-bottom: 13.5rem;
}
@media only screen and (max-width:768px) {
  .pageSelectionPolicy .page__breadcrumb {
    margin-bottom: 4rem;
  }
}
@media only screen and (max-width:768px) {
  .pageSelectionPolicy .selectionPolicy__head {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width:768px) {
  .pageSelectionPolicy .policy__ttl {
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.47;
    color: #e60113;
  }
}
.pageSelectionPolicy .policy__ttl2 {
  font-weight: 700;
  padding-left: 2.8rem;
  text-indent: -2.8rem;
}
.pageSelectionPolicy .policy__lst .policyItem__cnt {
  margin-bottom: 3rem;
}
.pageSelectionPolicy .policy__tbl {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #cccccc;
  margin-bottom: 18rem;
}
@media only screen and (max-width:768px) {
  .pageSelectionPolicy .policy__tbl {
    margin-bottom: 10rem;
  }
}
.pageSelectionPolicy .policy__tbl tr {
  border-bottom: 1px solid #cccccc;
}
.pageSelectionPolicy .policy__tbl tr th {
  background-color: #f5f5f5;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  vertical-align: middle;
  text-align: center;
  width: 5rem;
}
@media only screen and (max-width:768px) {
  .pageSelectionPolicy .policy__tbl tr th {
    font-size: 1.4rem;
  }
}
.pageSelectionPolicy .policy__tbl tr td {
  padding: 3.5rem 5rem;
  border-left: 1px solid #cccccc;
}
@media only screen and (max-width:768px) {
  .pageSelectionPolicy .policy__tbl tr td {
    line-height: 1.46;
    padding: 1rem 2rem;
  }
}
.pageSelectionPolicy .policy__tbl tr:last-of-type {
  border-bottom: none;
}

.pageSolPolicy {
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageSolPolicy {
    font-size: 1.3rem;
    font-weight: 500;
  }
}
.pageSolPolicy .policy__title {
  margin-bottom: 8rem;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.45;
  background-color: #fcecea;
  padding: 3rem 5rem;
}
@media only screen and (max-width:768px) {
  .pageSolPolicy .policy__title {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    padding: 2rem;
  }
}
.pageSolPolicy .policy__lst {
  margin-bottom: 8rem;
}
.pageSolPolicy .policy__lst .policy__item__Ttl {
  margin-bottom: 3rem;
}
.pageSolPolicy .policy__lst .policy__item__Cnt {
  margin-bottom: 10rem;
}
@media only screen and (max-width:768px) {
  .pageSolPolicy .policy__lst .policy__item__Cnt {
    margin-bottom: 8rem;
  }
}
.pageSolPolicy .policy__lst .policy__item__Cnt:last-of-type {
  margin-bottom: 0;
}
.pageSolPolicy .policy__lst .policy__detailLst > li {
  padding-left: 1.5rem;
  text-indent: -1.5rem;
}
.pageSolPolicy .policy__lst .policy__detailLst > li::before {
  content: "・";
}
.pageSolPolicy .policy__date {
  margin-left: auto;
  margin-bottom: 18rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: right;
}
@media only screen and (max-width:768px) {
  .pageSolPolicy .policy__date {
    margin-bottom: 10rem;
    letter-spacing: 0.04em;
  }
}
.pageSolPolicy .policy__date .fw_bold {
  font-weight: 700;
}
.pageSolPolicy .policy__date .policy__date__txt {
  margin-bottom: 2em;
}
@media only screen and (max-width:768px) {
  .pageSolPolicy .policy__date .policy__date__txt {
    font-weight: normal;
  }
}
.pageSolPolicy .policy__date .policy__date__sign {
  font-size: 1.4rem;
  font-weight: 700;
}
@media only screen and (max-width:768px) {
  .pageSolPolicy .policy__date .policy__date__sign {
    font-size: 1.3rem;
  }
}

.pageSupport {
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .pageSupport {
    font-size: 1.3rem;
    font-weight: 500;
  }
}
.pageSupport .mb_3 {
  margin-bottom: 3rem !important;
}
.pageSupport .mb_5 {
  margin-bottom: 5rem !important;
}
.pageSupport .mb_8 {
  margin-bottom: 8rem !important;
}
.pageSupport .fw_bold {
  font-weight: 700;
}
.pageSupport .support__cnt {
  padding-bottom: 9rem;
}
@media only screen and (max-width:768px) {
  .pageSupport .support__cnt {
    padding-bottom: 2.3rem;
  }
}
@media only screen and (max-width:768px) {
  .pageSupport .support__cnt .page__title.-title02 {
    margin-bottom: 2.8rem;
  }
}
.pageSupport .support__cnt .support__txt {
  margin-bottom: 9.5rem;
}
@media only screen and (max-width:768px) {
  .pageSupport .support__cnt .support__txt {
    margin-bottom: 7.7rem;
  }
}

.pageThanks .pageThanks__content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 8rem;
  padding-bottom: 18rem;
}
.pageThanks .pageThanks__title {
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 4rem;
}
.pageThanks .pageThanks__text {
  font-size: 1.5rem;
  margin-bottom: 8rem;
  line-height: 2;
  font-weight: 600;
  text-align: center;
}

.pagination .pagination__list {
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 40rem;
  margin: 0 auto;
  background-color: transparent;
}
.pagination .pagination__item a,
.pagination .pagination__item span {
  font-size: 2rem;
  letter-spacing: 0.04em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination .pagination__item a:hover,
.pagination .pagination__item span:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  opacity: 0.7;
}
.pagination .pagination__item .page-numbers {
  font-family: "Poppins", sans-serif;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 4.3rem;
  height: 4.3rem;
  font-size: 1.5rem;
  font-weight: 500;
  border: 0.1rem solid #cccccc;
  border-radius: 50%;
}
@media only screen and (max-width:768px) {
  .pagination .pagination__item .page-numbers {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.4rem;
  }
}
.pagination .pagination__item .page-numbers.-disabled {
  text-decoration: none;
  opacity: 0.7;
  pointer-events: none;
}
.pagination .pagination__item .prev,
.pagination .pagination__item .next {
  font-family: "Poppins", sans-serif;
  margin: 0 2rem;
  font-size: 1.3rem;
  font-weight: 500;
  text-decoration: underline;
  border: none;
}
@media only screen and (max-width:768px) {
  .pagination .pagination__item .prev,
  .pagination .pagination__item .next {
    margin: 0 1rem;
  }
}
.pagination .pagination__item .current {
  color: #ffffff;
  background-color: #e60113;
  border: 0.1rem solid #e60113;
}
.pagination .pagination__numberedItemWrap {
  position: relative;
  gap: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 20rem;
  overflow: scroll;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}
.pagination .pagination__numberedItemWrap::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}

.pageWarranty .pageFront::before {
  display: none;
}
.pageWarranty {
  /* ===== KV ===== */
}
.pageWarranty .warrantyKV {
  position: relative;
  overflow: hidden;
}
.pageWarranty .warrantyKV .h1 {
  position: absolute;
  color: #fff;
  font-weight: 500;
  top: 6.85vw;
  left: 3.1vw;
}
@media screen and (max-width: 767px) {
  .pageWarranty .warrantyKV .h1 {
    top: 12.85vw;
    left: 6.1vw;
  }
}
.pageWarranty .warrantyKV .h1 h1 {
  font-size: 3.125vw;
}
@media screen and (max-width: 767px) {
  .pageWarranty .warrantyKV .h1 h1 {
    font-size: 7.325vw;
  }
}
.pageWarranty .warrantyKV .h1 span {
  font-size: 1.171vw;
  font-weight: 700;
  display: block;
}
@media screen and (max-width: 767px) {
  .pageWarranty .warrantyKV .h1 span {
    font-size: 3.871vw;
  }
}
.pageWarranty .warrantyKV__inner {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  padding: 2rem;
}
.pageWarranty .warrantyKV__eyecatch {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.pageWarranty .secMerit__eyecatch.sec2 {
  margin-left: 0 !important;
  margin-right: auto !important;
  margin-bottom: 15rem;
}
.pageWarranty .secMerit__eyecatch.sec2 .secMerit__no {
  left: auto;
  right: 20px;
}
.pageWarranty .secMerit__eyecatch.sec2 .secMerit__content {
  border-radius: 0rem 3rem 3rem 0rem;
}
.pageWarranty .secMerit__eyecatch.sec2::before {
  left: 0px !important;
  border-radius: 0rem 3rem 3rem 0rem !important;
}
@media only screen and (max-width:768px) {
  .pageWarranty .secMerit__eyecatch.sec2::before {
    left: 0% !important;
  }
}
.pageWarranty .warrantyKV__ttl {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.35;
}
@-webkit-keyframes scrollRightToLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes scrollRightToLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.pageWarranty .warrantyKV__copy {
  position: absolute;
  left: 0;
  bottom: -2vw;
  font-size: 5.66vw;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  mix-blend-mode: overlay;
  white-space: nowrap;
  font-family: "Noto Serif JP", serif;
  -webkit-animation: scrollRightToLeft 120s linear infinite;
          animation: scrollRightToLeft 120s linear infinite;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media only screen and (max-width:768px) {
  .pageWarranty .warrantyKV__copy {
    font-size: 12.7vw;
  }
}
.pageWarranty {
  /* ===== 共通内側幅 ===== */
}
.pageWarranty .inner {
  width: calc(100% - 4rem);
  margin-inline: auto;
}
.pageWarranty .-maw-90rem {
  max-width: 90rem;
}
.pageWarranty .-maw-97rem {
  max-width: 97rem;
}
.pageWarranty .-maw-100rem {
  max-width: 100rem;
}
.pageWarranty .-maw-110rem {
  max-width: 110rem;
}
.pageWarranty {
  /* ===== リード ===== */
}
.pageWarranty .warrantyLead {
  padding: 0 0 10rem;
}
@media screen and (max-width: 767px) {
  .pageWarranty .warrantyLead {
    padding-bottom: 8rem;
  }
}
.pageWarranty .warrantyLead__txt {
  font-size: 1.6rem;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .pageWarranty .warrantyLead__txt {
    font-size: 1.3rem;
  }
}
.pageWarranty {
  /* ===== おすすめ ===== */
}
.pageWarranty .warrantyRecommend {
  padding: 6.4rem 0 4rem;
}
@media screen and (max-width: 767px) {
  .pageWarranty .warrantyRecommend {
    padding: 3.4rem 0 4rem;
  }
}
.pageWarranty .warrantyRecommend .warrantyRecommend {
  padding-bottom: 0;
}
.pageWarranty .warrantyRecommend .inner {
  position: relative;
  z-index: 1;
}
.pageWarranty .warrantyRecommend .inner:before {
  position: absolute;
  top: -6rem;
  left: 0px;
  z-index: -1;
  display: inline-block;
  width: 75vw;
  max-width: 1080px;
  height: 30rem;
  content: "";
  background-color: #d02d26;
  -webkit-transform: translateX(-14.2vw);
          transform: translateX(-14.2vw);
  border-radius: 0rem 3rem 3rem 0rem;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .pageWarranty .warrantyRecommend .inner:before {
    top: -3rem;
    width: 100%;
    max-width: 95vw;
    -webkit-transform: translateX(-2vw);
    transform: translateX(-2rem);
    z-index: 0;
  }
}
@media screen and (max-width: 767px) {
  .pageWarranty .warrantyRecommend .inner {
    padding: 0;
  }
}
.pageWarranty .page__title.-title02 {
  margin-bottom: 3rem;
  text-align: center;
  font-size: 2.4rem;
  padding: 0;
  color: #fff;
}
.pageWarranty .page__title.-title02:before {
  display: none;
}
.pageWarranty .recommendCards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 2.4rem;
  position: relative;
  position: relative;
  z-index: 1;
  padding: 80px;
  background: #fff;
  border-radius: 3rem 3rem 0 0;
  max-width: 1130px;
  padding-right: 0;
}
@media only screen and (max-width:768px) {
  .pageWarranty .recommendCards {
    display: block;
    padding: 3.6rem;
    border-radius: 3rem 0 0 0;
    margin-bottom: 0;
  }
}
@media only screen and (max-width:768px) {
  .pageWarranty .recommendCards {
    grid-template-columns: 1fr;
  }
}
.pageWarranty .recommendCards__item {
  background: #ffffff;
  border-left: 3px solid #d02d26;
  padding: 1rem 3.2rem;
  width: 33%;
}
@media only screen and (max-width:768px) {
  .pageWarranty .recommendCards__item {
    width: 100%;
    margin-bottom: 1.8rem;
    padding: 0.5rem 1.8rem;
  }
}
.pageWarranty .recommendCards__ttl {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: left;
}
@media only screen and (max-width:768px) {
  .pageWarranty .recommendCards__ttl {
    font-size: 1.5rem;
  }
}
.pageWarranty .recommendCTA {
  background: #ffffff;
  border-radius: 10px;
  padding: 2.4rem;
  text-align: center;
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}
.pageWarranty .recommendCTA__lead {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}
.pageWarranty .recommendCTA__btn {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 28rem;
  height: 5.2rem;
  padding: 0 2rem;
  font-weight: 700;
  color: #ffffff;
  background: #d02d26;
  border-radius: 6px;
}
.pageWarranty .recommendCTA__btn:hover {
  opacity: 0.9;
}
.pageWarranty .kv_ttl {
  width: 100%;
  max-width: 600px;
  margin: auto;
  margin-bottom: 4rem;
}
.pageWarranty .kv_ttl img {
  width: 90%;
  margin: auto;
}
.pageWarranty {
  /* ===== 背景付きオーバーレイセクション ===== */
}
.pageWarranty .overlaySection {
  position: relative;
  width: 100%;
  min-height: 584px;
  background: url(../image/repwarranty/sec1-1.jpg) center/cover no-repeat;
}
@media only screen and (max-width:768px) {
  .pageWarranty .overlaySection {
    background: url(../image/repwarranty/sec1-1_sp.jpg) center/cover no-repeat;
    min-height: 36.2rem;
    margin-bottom: 8rem;
  }
}
.pageWarranty .overlaySection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
  color: #000;
  margin-bottom: 14.8rem;
  width: 100%;
}
.pageWarranty .overlaySection.-v2 {
  min-height: 414px;
  background: url(../image/repwarranty/sec4-1.jpg) center/cover no-repeat;
}
@media only screen and (max-width:768px) {
  .pageWarranty .overlaySection.-v2 {
    min-height: 250px;
    background: url(../image/repwarranty/sec4-1_sp.jpg) center/cover no-repeat;
    min-height: 28.2rem;
    margin-bottom: 10rem;
  }
}
.pageWarranty .overlaySection.-v2 {
  margin-bottom: 0;
}
.pageWarranty .overlaySection.-v2 .overlaySection__btn {
  margin-top: 0rem;
}
.pageWarranty .overlaySection.-v2 .overlaySection__inner {
  width: 100%;
  padding: 5.8rem 2rem 4.2rem;
}
.pageWarranty {
  /* 白の透過レイヤー */
}
.pageWarranty .overlaySection::before {
  content: "";
}
.pageWarranty {
  /* 内側コンテンツ */
}
.pageWarranty .overlaySection__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  background: rgba(255, 255, 255, 0.95);
  padding: 6.4rem;
}
@media screen and (max-width: 767px) {
  .pageWarranty .overlaySection__inner {
    width: 100%;
    padding: 2rem;
    padding-top: 3.6rem;
  }
}
.pageWarranty .overlaySection__lead {
  font-size: 2.4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 767px) {
  .pageWarranty .overlaySection__lead {
    font-size: 1.6rem;
  }
}
.pageWarranty .overlaySection__ttl {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .pageWarranty .overlaySection__ttl {
    font-size: 1.8rem;
  }
}
.pageWarranty .overlaySection__ttl .s1 {
  font-size: 2.4rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .pageWarranty .overlaySection__ttl .s1 {
    font-size: 1.3rem;
  }
}
.pageWarranty .overlaySection__ttl .s2 {
  font-size: 3.5rem;
}
@media screen and (max-width: 767px) {
  .pageWarranty .overlaySection__ttl .s2 {
    font-size: 1.8rem;
  }
}
.pageWarranty .overlaySection__highlight {
  color: #e60113;
  font-weight: 700;
}
.pageWarranty .overlaySection__btn {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.6rem 3rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  background: #e60113;
  border: 1px solid #e60113;
  margin-top: 7rem;
  position: relative;
  width: 59.3rem;
  height: 10rem;
}
@media screen and (max-width: 767px) {
  .pageWarranty .overlaySection__btn {
    width: 100%;
    height: 7rem;
    font-size: 1.6rem;
    margin-top: 4.3rem;
  }
}
.pageWarranty .overlaySection__btn img {
  width: 23.2rem;
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .pageWarranty .overlaySection__btn img {
    top: -5rem;
  }
}
.pageWarranty .overlaySection__btn:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.7rem;
  width: 4rem;
  height: 4rem;
  content: "";
  background-image: url(../image/common/icon-arrow_right_stroke_white.png);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 767px) {
  .pageWarranty .overlaySection__btn:before {
    width: 2.6rem;
    height: 2.6rem;
  }
}
.pageWarranty .overlaySection__btn:hover {
  color: #e60113;
  background: #fff;
  border: 1px solid #e60113;
}
.pageWarranty .overlaySection__btn:hover::before {
  background-image: url(../image/common/icon-arrow_right_fill.png);
  -webkit-transform: translate(10%, -50%);
  transform: translate(10%, -50%);
}
.pageWarranty {
  /* ===== とは ===== */
}
.pageWarranty .warrantyAbout {
  margin-bottom: 14rem;
}
@media screen and (max-width: 767px) {
  .pageWarranty .warrantyAbout {
    margin-bottom: 11rem;
    overflow: hidden;
  }
}
.pageWarranty .warrantyAbout .inner {
  max-width: 1536px;
  width: 100%;
  margin: auto;
  padding: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .pageWarranty .warrantyAbout .inner {
    padding-bottom: 20px;
  }
}
.pageWarranty .warrantyAbout .inner:before {
  position: absolute;
  top: 0;
  right: 0px;
  z-index: -1;
  display: inline-block;
  width: 75vw;
  max-width: 1080px;
  height: 100%;
  content: "";
  background-color: #faf0e6;
  /* -webkit-transform: translateX(-14.2vw); */
  /* transform: translateX(-14.2vw); */
  border-radius: 3rem 0rem 0rem 3rem;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .pageWarranty .warrantyAbout .inner:before {
    position: absolute;
    right: 0px;
    width: 100%;
    height: 109%;
    left: 2rem;
  }
}
.pageWarranty figure.about__fig.-img-wrapper {
  width: 44%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .pageWarranty figure.about__fig.-img-wrapper {
    width: 100%;
  }
}
.pageWarranty .about__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.5%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width:768px) {
  .pageWarranty .about__grid {
    grid-template-columns: 1fr;
    display: block;
    padding-top: 4rem;
  }
}
.pageWarranty .about__body {
  width: 38%;
  padding: 11.4rem 0;
}
@media only screen and (max-width:768px) {
  .pageWarranty .about__body {
    width: 100%;
    padding: 3.4rem 4rem 0 4rem;
  }
}
.pageWarranty .about__fig img {
  width: 100%;
  height: auto;
  display: block;
}
@media only screen and (max-width:768px) {
  .pageWarranty .about__fig img {
    width: 84%;
  }
}
.pageWarranty .about__ttl {
  font-weight: 700;
  font-size: 3.4rem;
  margin-bottom: 4rem;
  color: #e60113;
}
@media only screen and (max-width:768px) {
  .pageWarranty .about__ttl {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }
}
.pageWarranty .about__txt {
  font-size: 1.8rem;
  line-height: 1.9;
  margin-bottom: 2.3rem;
}
@media only screen and (max-width:768px) {
  .pageWarranty .about__txt {
    font-size: 1.2rem;
  }
}
.pageWarranty .about__txt1 {
  font-size: 1.5rem;
}
@media only screen and (max-width:768px) {
  .pageWarranty .about__txt1 {
    font-size: 1.2rem;
  }
}
.pageWarranty .about__txt2 {
  font-size: 1.5rem;
  line-height: 1.9;
  margin-top: 0.2rem;
}
@media only screen and (max-width:768px) {
  .pageWarranty .about__txt2 {
    font-size: 1.2rem;
  }
}
.pageWarranty {
  /* ===== メリット（共通） ===== */
}
.pageWarranty .warrantyMerit .warrantyMerit__ttl {
  font-size: 3.9rem;
  text-align: center;
  font-weight: 700;
  text-align: center;
  height: 11.8rem;
  background: #d02d26;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 11.4rem;
}
@media only screen and (max-width:768px) {
  .pageWarranty .warrantyMerit .warrantyMerit__ttl {
    font-size: 1.8rem;
    height: 7.5rem;
    margin-bottom: 9rem;
  }
}
.pageWarranty .warrantyMerit .warrantyMerit__ttl span {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-style: italic;
  font-size: 6.8rem;
  display: inline-block;
  margin: -6px 11px 0 2px;
}
@media only screen and (max-width:768px) {
  .pageWarranty .warrantyMerit .warrantyMerit__ttl span {
    font-size: 3.8rem;
  }
}
.pageWarranty .warrantyMerit .inner {
  margin: 0 0 0 0;
  padding: 0;
  max-width: none;
  width: 100%;
  padding-bottom: 16rem;
  margin: auto;
  max-width: 1536px;
}
@media only screen and (max-width:768px) {
  .pageWarranty .warrantyMerit .inner {
    padding-bottom: 8rem;
  }
}
.pageWarranty .warrantyMerit .secMerit__eyecatch {
  max-width: 1358px;
  width: 88.4%;
  margin: 0 0 0 auto;
}
@media only screen and (max-width:768px) {
  .pageWarranty .warrantyMerit .secMerit__eyecatch {
    width: 92%;
  }
}
.pageWarranty .warrantyMerit .secMerit__eyecatch {
  background: #fff;
  border-radius: 3rem 0 0 3rem;
  position: relative;
  margin-bottom: 15rem;
  position: relative;
}
.pageWarranty .warrantyMerit .secMerit__eyecatch::before {
  width: 101.5%;
  height: 100%;
  content: "";
  background-color: #d02d27;
  position: absolute;
  top: 20px;
  left: -20px;
  z-index: 1;
  border-radius: 3rem 0 0 3rem;
  display: block;
}
@media only screen and (max-width:768px) {
  .pageWarranty .warrantyMerit .secMerit__eyecatch::before {
    width: 105%;
    top: 2rem;
    left: -5%;
  }
}
.pageWarranty .warrantyMerit .secMerit__content {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 8rem;
  border-radius: 3rem 3rem 0 3rem;
}
@media only screen and (max-width:768px) {
  .pageWarranty .warrantyMerit .secMerit__content {
    padding: 5.5rem 2.4rem 2.7rem;
  }
}
.pageWarranty .secMerit.-bg-light {
  background: #f5eced;
}
.pageWarranty .secMerit__head {
  position: relative;
  margin-bottom: 2.4rem;
}
.pageWarranty .secMerit__no {
  font-family: "noto serif jp", serif;
  font-size: 13.7rem;
  position: absolute;
  top: -7.2rem;
  left: 4rem;
  line-height: 1;
  color: #d02d27;
  font-style: italic;
}
@media only screen and (max-width:768px) {
  .pageWarranty .secMerit__no {
    font-size: 6.8rem;
    font-size: 6.8rem;
    left: 2rem;
    top: -40px;
  }
}
.pageWarranty .secMerit__ttl {
  text-align: center;
  font-size: 4.3rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 5.6rem;
}
@media only screen and (max-width:768px) {
  .pageWarranty .secMerit__ttl {
    font-size: 2.2rem;
    margin-bottom: 2.4rem;
  }
}
.pageWarranty .secMerit__ttl .s {
  font-size: 3.5rem;
}
@media only screen and (max-width:768px) {
  .pageWarranty .secMerit__ttl .s {
    font-size: 1.8rem;
  }
}
.pageWarranty .secMerit__ttl .ttl--main {
  position: relative;
}
.pageWarranty .secMerit__ttl .ttl--main:before {
  width: 80px;
  height: 70px;
  content: "";
  background-image: url(../image/repwarranty/dec1.svg);
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  left: -100px;
  top: -20px;
}
@media only screen and (max-width:768px) {
  .pageWarranty .secMerit__ttl .ttl--main:before {
    width: 29px;
    height: 25px;
    background-size: cover;
    left: -40px;
    top: -3px;
  }
}
.pageWarranty .secMerit__ttl .ttl--main:after {
  width: 80px;
  height: 70px;
  content: "";
  background-image: url(../image/repwarranty/dec2.svg);
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  right: -100px;
  top: 20px;
}
@media only screen and (max-width:768px) {
  .pageWarranty .secMerit__ttl .ttl--main:after {
    width: 29px;
    height: 25px;
    background-size: cover;
    right: -40px;
    top: 15px;
    right: -48px;
    top: auto;
    bottom: -6px;
  }
}
.pageWarranty .sec3 {
  margin-bottom: 0 !important;
}
.pageWarranty .warrantyMerit__fig {
  max-width: 670px;
  margin: auto;
}
.pageWarranty .secMerit__ttl .-em {
  color: #d02d26;
}
.pageWarranty {
  /* ===== 仕組み図 ===== */
}
.pageWarranty .scheme__fig img {
  width: 100%;
  height: auto;
  display: block;
}
.pageWarranty .scheme__note {
  font-size: 1.8rem;
  text-align: center;
  color: #000;
  line-height: 1.9;
  font-weight: 600;
  margin-bottom: 4rem;
  letter-spacing: -0.01em;
}
@media only screen and (max-width:768px) {
  .pageWarranty .scheme__note {
    font-size: 1.3rem;
    text-align: left;
    letter-spacing: -0.009em;
  }
}
.pageWarranty {
  /* ===== 双方への価値 ===== */
}
.pageWarranty .valueGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
}
@media only screen and (max-width:768px) {
  .pageWarranty .valueGrid {
    grid-template-columns: 1fr;
  }
}
.pageWarranty .valueCard {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 6rem 3.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 767px) {
  .pageWarranty .valueCard {
    padding: 3.8rem 2.2rem;
  }
}
.pageWarranty .valueCard .valueCard__fig.-img-wrapper {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .pageWarranty .valueCard .valueCard__fig.-img-wrapper {
    width: 25%;
  }
}
.pageWarranty .valueCard .valueCard__fig.-img-wrapper img {
  width: 100%;
}
.pageWarranty .valueCard__head {
  font-weight: 700;
  margin-bottom: 1.2rem;
  width: 19.5rem;
  height: 4rem;
  background: #fff;
  border: 1px solid #d02d27;
  position: absolute;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 5px;
  top: -15px;
  left: 0;
  right: 0;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .pageWarranty .valueCard__head {
    width: 16.5rem;
    height: 3.4rem;
    font-size: 1.5rem;
  }
}
.pageWarranty .valueCard__overlay {
  width: 67%;
}
@media screen and (max-width: 767px) {
  .pageWarranty .valueCard__overlay {
    width: 68%;
  }
}
.pageWarranty .valueCard__head.-seller {
  color: #d02d26;
}
.pageWarranty .valueCard__head.-buyer {
  color: #003366;
}
.pageWarranty .valueCard__list {
  padding-left: 1.2em;
}
.pageWarranty .valueCard__list li {
  list-style: disc;
  margin-left: 0.4em;
  line-height: 1.5;
  font-size: 1.5rem;
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 767px) {
  .pageWarranty .valueCard__list li {
    line-height: 1.6;
  }
}
.pageWarranty .valueCard__list li::marker {
  color: #d02d26;
  font-size: 1.2em;
}
@media screen and (max-width: 767px) {
  .pageWarranty .valueCard__list li {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
}
.pageWarranty .valueCard__list li span {
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .pageWarranty .valueCard__list li span {
    font-size: 1.2rem;
  }
}
.pageWarranty .valueCard2 {
  background: #f5f5f5;
  padding: 4rem 3rem;
  border-radius: 10px;
  margin: auto;
  margin-bottom: 1.6rem;
  max-width: 1010px;
}
@media screen and (max-width: 767px) {
  .pageWarranty .valueCard2 {
    padding: 2rem;
  }
}
.pageWarranty .valueCard2 h4 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: #d02d26;
}
@media screen and (max-width: 767px) {
  .pageWarranty .valueCard2 h4 {
    font-size: 1.5rem;
    margin-bottom: 1.3rem;
  }
}
.pageWarranty .valueCard2 p {
  font-size: 1.5rem;
  line-height: 1.9;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .pageWarranty .valueCard2 p {
    font-size: 1.2rem;
  }
}
.pageWarranty {
  /* ===== 交渉を円滑化 ===== */
}
.pageWarranty .columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media only screen and (max-width:768px) {
  .pageWarranty .columns {
    grid-template-columns: 1fr;
  }
}
.pageWarranty .columns__item {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 2rem;
}
.pageWarranty .columns__ttl {
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.pageWarranty .columns__txt {
  line-height: 1.9;
}
.pageWarranty {
  /* ===== 下部CTA ===== */
}
.pageWarranty .warrantyCTA {
  padding: 5rem 0 6rem;
}
.pageWarranty .warrantyCTA__box {
  background: #ffffff;
  border-radius: 10px;
  padding: 3rem;
  text-align: center;
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}
.pageWarranty .warrantyCTA__lead {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.pageWarranty .warrantyCTA__btn {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 28rem;
  height: 5.2rem;
  padding: 0 2rem;
  font-weight: 700;
  color: #ffffff;
  background: #d02d26;
  border-radius: 6px;
}
.pageWarranty .warrantyCTA__btn:hover {
  opacity: 0.9;
}
.pageWarranty {
  /* ===== 関連リンク ===== */
}
.pageWarranty .warrantyRelated {
  padding: 0 0 6rem;
}
.pageWarranty .relatedList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pageWarranty .relatedList__link {
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  padding: 1.2rem 1.6rem;
  border: 1px solid #d02d26;
  border-radius: 6px;
  color: #d02d26;
  font-weight: 600;
}
.pageWarranty .relatedList__link:hover {
  background: #d02d26;
  color: #ffffff;
}

.secMerit__eyecatch.sec2 {
  border-radius: 0 3rem 3rem 0rem !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.page-trade-Credit-Insurance {
  position: relative;
}
.page-trade-Credit-Insurance .about__grid {
  -webkit-box-align: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
}
.page-trade-Credit-Insurance .about__grid figure.about__fig.-img-wrapper {
  margin-top: 11.4rem;
}
@media screen and (max-width: 767px) {
  .page-trade-Credit-Insurance .about__grid figure.about__fig.-img-wrapper {
    margin-top: 0;
  }
}
.page-trade-Credit-Insurance .about__body {
  width: 43%;
}
@media screen and (max-width: 767px) {
  .page-trade-Credit-Insurance .about__body {
    width: 100%;
    padding-bottom: 4rem;
  }
}
.page-trade-Credit-Insurance .about__txt {
  font-weight: 600;
}
.page-trade-Credit-Insurance .about__txt2 {
  font-size: 1.8rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .page-trade-Credit-Insurance .about__txt2 {
    font-size: 1.2rem;
  }
}
.page-trade-Credit-Insurance .warrantyRecommend {
  padding-bottom: 0;
}
.page-trade-Credit-Insurance .warrantyAbout .inner:before {
  height: 100%;
}
.page-trade-Credit-Insurance .recommendCards__item {
  padding: 1rem 2.4rem;
}
.page-trade-Credit-Insurance .tradecreditAbout .inner {
  padding-top: 12rem;
  margin-bottom: 14rem;
  max-width: 1000px;
}
@media only screen and (max-width:768px) {
  .page-trade-Credit-Insurance .tradecreditAbout .inner {
    padding-top: 8rem;
    margin-bottom: 10rem;
    padding-right: 0;
    padding-left: 0;
  }
}
.page-trade-Credit-Insurance .overlaySection {
  position: relative;
  width: 100%;
  min-height: 526px;
  background: url(../image/trade-credit-insurance/sec1-1.jpg) center/cover no-repeat;
}
@media only screen and (max-width:768px) {
  .page-trade-Credit-Insurance .overlaySection {
    background: url(../image/trade-credit-insurance/sec1-1_sp.jpg) center/cover no-repeat;
    min-height: 36.2rem;
    margin-bottom: 10rem;
  }
}
.page-trade-Credit-Insurance .overlaySection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
  color: #000;
  margin-bottom: 0;
}
.page-trade-Credit-Insurance .overlaySection .overlaySection__inner {
  width: 100%;
}
.page-trade-Credit-Insurance .overlaySection .overlaySection__btn {
  margin-top: 5rem;
}
.page-trade-Credit-Insurance .overlaySection.-v2 {
  min-height: 414px;
  background: url(../image/trade-credit-insurance/sec4-1.png) center/cover no-repeat;
}
@media only screen and (max-width:768px) {
  .page-trade-Credit-Insurance .overlaySection.-v2 {
    min-height: 250px;
    background: url(../image/trade-credit-insurance/sec4-1_sp.png) center/cover no-repeat;
    min-height: 28.2rem;
    margin-bottom: 10rem;
  }
}
.page-trade-Credit-Insurance .overlaySection.-v2 {
  margin-bottom: 0;
}
.page-trade-Credit-Insurance .overlaySection.-v2 .overlaySection__btn {
  margin-top: 0rem;
}
.page-trade-Credit-Insurance .overlaySection.-v2 .overlaySection__inner {
  width: 100%;
  padding: 5.8rem 2rem 4.2rem;
}
.page-trade-Credit-Insurance .tradecreditAbout {
  position: relative;
}
.page-trade-Credit-Insurance .bk.-img-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .page-trade-Credit-Insurance .bk.-img-wrapper {
    width: 81%;
  }
}
.page-trade-Credit-Insurance .tradecredit__ttl {
  font-size: 3.4rem;
  font-weight: 700;
  margin-bottom: 4rem;
  color: #e60113;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .page-trade-Credit-Insurance .tradecredit__ttl {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }
}
.page-trade-Credit-Insurance .tradecredit__txt {
  font-size: 1.8rem;
  line-height: 1.9;
  margin-bottom: 2.9rem;
  font-weight: 600;
}
@media only screen and (max-width:768px) {
  .page-trade-Credit-Insurance .tradecredit__txt {
    font-size: 1.2rem;
  }
}
.page-trade-Credit-Insurance .tradecredit__fig {
  max-width: 780px;
  margin: auto;
}
.page-trade-Credit-Insurance .warrantyMerit .secMerit__eyecatch {
  margin: 0 auto 0 0;
  margin-bottom: 15rem;
  border-radius: 0 3rem 3rem 0;
  max-width: 1080px;
  width: 70.4%;
}
@media screen and (max-width: 767px) {
  .page-trade-Credit-Insurance .warrantyMerit .secMerit__eyecatch {
    margin: 0 0 0 auto;
    margin-bottom: 10rem;
    border-radius: 3rem 0rem 0rem 3rem;
    width: 92%;
  }
}
.page-trade-Credit-Insurance .warrantyMerit .secMerit__eyecatch::before {
  border-radius: 0 3rem 3rem 0;
  left: 0px;
}
@media screen and (max-width: 767px) {
  .page-trade-Credit-Insurance .warrantyMerit .secMerit__eyecatch::before {
    border-radius: 3rem 0rem 0rem 3rem !important;
    left: -5%;
  }
}
.page-trade-Credit-Insurance .secMerit__eyecatch.sec2 {
  margin: 0 0 0 auto !important;
  margin-bottom: 15rem !important;
  border-radius: 3rem 0 0 3rem !important;
}
@media screen and (max-width: 767px) {
  .page-trade-Credit-Insurance .secMerit__eyecatch.sec2 {
    margin: 0 auto 0 0 !important;
    margin-bottom: 10rem !important;
    border-radius: 0 3rem 3rem 0 !important;
  }
}
.page-trade-Credit-Insurance .secMerit__eyecatch.sec2:before {
  width: 101.5%;
  border-radius: 3rem 0rem 0rem 3rem !important;
  left: -20px !important;
}
@media screen and (max-width: 767px) {
  .page-trade-Credit-Insurance .secMerit__eyecatch.sec2:before {
    width: 104.5% %;
    border-radius: 0rem 3rem 3rem 0rem !important;
    left: 0% !important;
  }
}
.page-trade-Credit-Insurance .secMerit__eyecatch.sec2 .secMerit__content {
  border-radius: 3rem 0 0 3rem !important;
}
@media screen and (max-width: 767px) {
  .page-trade-Credit-Insurance .secMerit__eyecatch.sec2 .secMerit__content {
    border-radius: 0 3rem 3rem 0 !important;
  }
}
.page-trade-Credit-Insurance .secMerit__eyecatch.sec2 figure.warrantyMerit__fig {
  left: -29.7vw;
  right: auto !important;
}
.page-trade-Credit-Insurance .secMerit__eyecatch.sec2 .sec_Merit_wrap {
  max-width: 620px;
  width: 81%;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  .page-trade-Credit-Insurance .secMerit__eyecatch.sec2 .sec_Merit_wrap {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .page-trade-Credit-Insurance .secMerit__eyecatch.sec2 .sec_Merit_wrap .secMerit__no {
    left: auto;
    right: 2rem;
  }
}
.page-trade-Credit-Insurance .secMerit__eyecatch.sec2 .secMerit__no {
  left: auto;
  right: 16rem;
}
@media screen and (max-width: 767px) {
  .page-trade-Credit-Insurance .secMerit__eyecatch.sec2 .secMerit__no {
    left: auto;
    right: 2rem;
  }
}
.page-trade-Credit-Insurance .secMerit__ttl .ttl--main:after {
  right: -10.5rem;
  top: auto;
}
@media screen and (max-width: 767px) {
  .page-trade-Credit-Insurance .secMerit__ttl .ttl--main:after {
    right: -4rem;
    top: auto;
    bottom: 0;
  }
}
.page-trade-Credit-Insurance .secMerit__ttl .ttl--main:after {
  bottom: -3rem;
}
.page-trade-Credit-Insurance .secMerit__ttl .ttl--main {
  display: inline-block;
}
@media screen and (max-width: 1350px) {
  .page-trade-Credit-Insurance .secMerit__ttl .ttl--main {
    font-size: 3.7rem;
  }
}
@media screen and (max-width: 768px) {
  .page-trade-Credit-Insurance .secMerit__ttl .ttl--main {
    font-size: 2.2rem;
  }
}
.page-trade-Credit-Insurance .secMerit__no {
  top: -7.2rem;
  left: 12rem;
}
@media screen and (max-width: 767px) {
  .page-trade-Credit-Insurance .secMerit__no {
    top: -4rem;
    left: 2rem;
  }
}
.page-trade-Credit-Insurance .sec_Merit_wrap {
  max-width: 620px;
  width: 81%;
}
@media screen and (max-width: 767px) {
  .page-trade-Credit-Insurance .sec_Merit_wrap {
    width: 100%;
  }
}
.page-trade-Credit-Insurance .warrantyMerit .secMerit__content {
  padding: 14rem 15rem;
  padding: clamp(1px, 9.1145833333vw, 140px) clamp(1px, 9.765625vw, 150px);
  border-radius: 0 3rem 3rem 0;
}
@media only screen and (max-width:768px) {
  .page-trade-Credit-Insurance .warrantyMerit .secMerit__content {
    padding: 4rem 2.4rem;
    border-radius: 3rem 0 0 3rem;
  }
}
.page-trade-Credit-Insurance .scheme__note {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .page-trade-Credit-Insurance .scheme__note {
    margin: 0;
  }
}
.page-trade-Credit-Insurance figure.warrantyMerit__fig {
  position: absolute;
  top: 0;
  margin: auto;
  bottom: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  right: -29.7vw;
  max-width: 670px;
  width: 43.6vw;
  margin: auto;
}
@media screen and (max-width: 1400px) {
  .page-trade-Credit-Insurance figure.warrantyMerit__fig {
    width: 40vw;
  }
}
@media screen and (max-width: 767px) {
  .page-trade-Credit-Insurance figure.warrantyMerit__fig {
    margin-bottom: 2.4rem;
    position: static;
    width: 100%;
  }
}
.page-trade-Credit-Insurance .recommendCards {
  max-width: 1180px;
  width: 104%;
}

.page__disclaimer {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-top: 8rem;
  margin-bottom: 8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page__disclaimer {
    font-size: 1.2rem;
    margin-top: 4rem;
    margin-bottom: 8rem;
    text-align: left;
    padding: 0 2rem;
  }
}

@media only screen and (max-width:768px) {
  .sectionSidebar {
    margin-bottom: 5rem;
  }
}
.sectionSidebar .sectionSidebar__list {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:768px) {
  .sectionSidebar .sectionSidebar__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 100%;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .sectionSidebar .sectionSidebar__list::-webkit-scrollbar {
    display: none;
  }
}
.sectionSidebar .sectionSidebar__link {
  font-family: "Poppins", sans-serif;
  gap: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
}
.sectionSidebar .sectionSidebar__link::before {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #e60113;
  content: "・";
  font-size: 150%;
  font-weight: 600;
  line-height: 1;
}
@media only screen and (max-width:768px) {
  .sectionSidebar .sectionSidebar__link::before {
    display: none;
  }
}
@media only screen and (max-width:768px) {
  .sectionSidebar .sectionSidebar__link {
    font-size: 1.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 1rem;
    border: 0.1rem solid #cccccc;
    border-radius: 10rem;
  }
}
@media only screen and (max-width:768px) {
  .sectionSidebar .sectionSidebar__link.-current {
    border: 0.1rem solid #e60113;
    background-color: #e60113;
    color: #ffffff;
  }
}
.sectionSidebar .sectionSidebar__link.-current .sectionSidebar__linkText {
  border-bottom: 0.1rem solid #e60113;
}
@media only screen and (max-width:768px) {
  .sectionSidebar .sectionSidebar__link.-current .sectionSidebar__linkText {
    border-bottom: none;
  }
}

.sectionWithSidebar .sectionWithSidebar__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:768px) {
  .sectionWithSidebar .sectionWithSidebar__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sectionWithSidebar .sectionWithSidebar__sidebar {
  min-width: 16rem;
  width: 30%;
}
@media only screen and (max-width:768px) {
  .sectionWithSidebar .sectionWithSidebar__sidebar {
    width: 100%;
  }
}
.sectionWithSidebar .sectionWithSidebar__content {
  width: 70%;
}
@media only screen and (max-width:768px) {
  .sectionWithSidebar .sectionWithSidebar__content {
    width: 100%;
  }
}

.defaultTemplate {
  line-height: 1.5;
}

.defaultTemplate__header h1 {
  font-size: 3.2rem;
  font-weight: 500;
}
@mediaonly screen and (max-width:768px) {
  .defaultTemplate__header h1 {
    font-size: 2.4rem;
  }
}

.defaultTemplate__thumbnail {
  padding-top: 64%;
  margin: 4rem 0;
  background-color: #333333;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@mediaonly screen and (max-width:768px) {
  .defaultTemplate__thumbnail {
    margin: 2rem 0;
  }
}

.defaultTemplateContents a,
.defaultTemplateContents p,
.defaultTemplateContents li,
.defaultTemplateContents dd,
.defaultTemplateContents td,
.defaultTemplateContents span,
.defaultTemplateContents pre,
.defaultTemplateContents strong,
.defaultTemplateContents em {
  font-size: 1.6rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .defaultTemplateContents a,
  .defaultTemplateContents p,
  .defaultTemplateContents li,
  .defaultTemplateContents dd,
  .defaultTemplateContents td,
  .defaultTemplateContents span,
  .defaultTemplateContents pre,
  .defaultTemplateContents strong,
  .defaultTemplateContents em {
    font-size: 1.3rem;
  }
}
.defaultTemplateContents h1 {
  margin: 0;
  margin-bottom: 1rem;
  font-size: 2.8rem;
  font-weight: 600;
}
@mediaonly screen and (max-width:768px) {
  .defaultTemplateContents h1 {
    font-size: 2rem;
  }
}
.defaultTemplateContents h2 {
  margin: 0;
  margin-bottom: 1rem;
  font-size: 2.6rem;
  font-weight: 600;
}
@mediaonly screen and (max-width:768px) {
  .defaultTemplateContents h2 {
    font-size: 1.9rem;
  }
}
.defaultTemplateContents h3 {
  margin: 0;
  margin-bottom: 1rem;
  font-size: 2.4rem;
  font-weight: 500;
}
@mediaonly screen and (max-width:768px) {
  .defaultTemplateContents h3 {
    font-size: 1.8rem;
  }
}
.defaultTemplateContents h4 {
  margin: 0;
  margin-bottom: 1rem;
  font-size: 2.2rem;
  font-weight: 500;
}
@mediaonly screen and (max-width:768px) {
  .defaultTemplateContents h4 {
    font-size: 1.7rem;
  }
}
.defaultTemplateContents h5 {
  margin: 0;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 500;
}
@mediaonly screen and (max-width:768px) {
  .defaultTemplateContents h5 {
    font-size: 1.6rem;
  }
}
.defaultTemplateContents h6 {
  margin: 0;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 500;
}
@mediaonly screen and (max-width:768px) {
  .defaultTemplateContents h6 {
    font-size: 1.5rem;
  }
}
.defaultTemplateContents img {
  display: inline-block;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
.defaultTemplateContents img.aligncenter {
  display: block;
  margin: 0 auto;
}
.defaultTemplateContents img.alignleft {
  display: block;
  margin-left: auto;
}
.defaultTemplateContents blockquote {
  position: relative;
  padding: 1.3rem 1.5rem 1.3rem 5rem;
  background-color: #696969;
}
.defaultTemplateContents blockquote::before {
  position: absolute;
  top: 20px;
  left: 15px;
  display: inline-block;
  color: #e60113;
  content: "\f10d";
  font-family: FontAwesome;
  font-size: 25px;
  line-height: 1;
  vertical-align: middle;
}
.defaultTemplateContents blockquote p {
  padding: 0;
  margin-top: 10px;
  line-height: 1.7;
}
.defaultTemplateContents ul {
  list-style: disc;
}
.defaultTemplateContents ol {
  list-style: decimal;
}
.defaultTemplateContents ul,
.defaultTemplateContents ol {
  margin-bottom: 1em;
}
.defaultTemplateContents ul li,
.defaultTemplateContents ol li {
  margin-left: 1.6em;
  font-size: 1.6rem;
  list-style-position: outsite;
}
@mediaonly screen and (max-width:768px) {
  .defaultTemplateContents ul li,
  .defaultTemplateContents ol li {
    font-size: 1.2rem;
  }
}
.defaultTemplateContents ul li::marker,
.defaultTemplateContents ol li::marker {
  color: #e60113;
  marker-offset: 0;
}
.defaultTemplateContents a {
  color: #00319f;
  font-weight: 600;
  text-decoration: underline;
}
.defaultTemplateContents a[target=_blank] {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.defaultTemplateContents a[target=_blank]::after {
  display: inline-block;
  width: 4rem;
  height: 1.6rem;
  margin-left: 0.6rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.defaultTemplateContents table,
.defaultTemplateContents table * {
  border-color: #e60113;
}
.defaultTemplateContents table tr td {
  padding: 0.8rem;
}
@media only screen and (max-width:768px) {
  .defaultTemplateContents .-sp-fxdc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width:768px) {
  .defaultTemplateContents .-sp-fxdcr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.defaultTemplateContents .-flex {
  gap: 1rem;
}

.singleCorporationpost {
  padding-bottom: 8rem;
}
@media only screen and (max-width:768px) {
  .singleCorporationpost {
    padding-bottom: 10rem;
  }
}

.corppostDesc {
  margin-bottom: 12rem;
}
@media only screen and (max-width:768px) {
  .corppostDesc {
    margin-bottom: 10rem;
  }
}

.corppostDesc.-type2 .t2Contents {
  padding: 6rem 0;
  background-color: #f0f0f0;
  border-radius: 2rem;
}
@media only screen and (max-width:768px) {
  .corppostDesc.-type2 .t2Contents {
    padding: 3rem 0;
    border-radius: 0.5rem;
  }
}
.corppostDesc.-type2 .t2Title {
  margin-bottom: 5rem;
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
  -webkit-text-decoration: underline #e60113 solid 0.3rem;
          text-decoration: underline #e60113 solid 0.3rem;
  text-underline-offset: 0.8rem;
}
@media only screen and (max-width:768px) {
  .corppostDesc.-type2 .t2Title {
    margin-bottom: 3.6rem;
    font-size: 1.8rem;
  }
}
.corppostDesc.-type2 .t2List {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:768px) {
  .corppostDesc.-type2 .t2List {
    gap: 1rem;
  }
}
.corppostDesc.-type2 .t2Item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  border-radius: 1rem;
}
@media only screen and (max-width:768px) {
  .corppostDesc.-type2 .t2Item {
    border-radius: 0.5rem;
  }
}
.corppostDesc.-type2 .t2Item__point {
  font-family: "Poppins", sans-serif;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 6.4rem;
  min-width: 6.4rem;
  padding: 0.8rem;
  color: #ffffff;
  line-height: 1.2;
  background-color: #e60113;
}
@media only screen and (max-width:768px) {
  .corppostDesc.-type2 .t2Item__point {
    width: 6rem;
    min-width: 6rem;
  }
}
.corppostDesc.-type2 .t2Item__poinText {
  white-space: nowrap;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .corppostDesc.-type2 .t2Item__poinText {
    font-size: 1rem;
  }
}
.corppostDesc.-type2 .t2Item__number {
  font-size: 2.6rem;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .corppostDesc.-type2 .t2Item__number {
    font-size: 2rem;
  }
}
.corppostDesc.-type2 .t2Item__desc {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 1.6rem 2.8rem;
  font-size: 1.8rem;
  font-weight: 500;
  background-color: #ffffff;
}
@media only screen and (max-width:768px) {
  .corppostDesc.-type2 .t2Item__desc {
    padding: 1rem 1.2rem;
    font-size: 1.4rem;
  }
}

.corppostDesc.-type3 .t3List {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:768px) {
  .corppostDesc.-type3 .t3List {
    gap: 3rem;
  }
}
.corppostDesc.-type3 .t3Item {
  width: 32%;
  margin-bottom: 2%;
  border-radius: 2rem;
}
@media only screen and (max-width:768px) {
  .corppostDesc.-type3 .t3Item {
    width: 100%;
    margin-bottom: 0;
  }
}
.corppostDesc.-type3 .t3Item:not(:nth-child(3n)) {
  margin-right: 2%;
}
@media only screen and (max-width:768px) {
  .corppostDesc.-type3 .t3Item:not(:nth-child(3n)) {
    margin-right: 0;
  }
}
@media only screen and (max-width:768px) {
  .corppostDesc.-type3 .t3Item {
    border-radius: 0.5rem;
  }
}
.corppostDesc.-type3 .t3Item__figure {
  position: relative;
  width: 100%;
}
.corppostDesc.-type3 .t3Item__figure::before {
  display: block;
  padding-top: 62%;
  content: "";
}
.corppostDesc.-type3 .t3Item__figure > * {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.corppostDesc.-type3 .t3Item__title {
  padding: 1.2rem;
  margin-bottom: 3rem;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  background-color: #e60113;
}
@media only screen and (max-width:768px) {
  .corppostDesc.-type3 .t3Item__title {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
  }
}
.corppostDesc.-type3 .t3Item__text {
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .corppostDesc.-type3 .t3Item__text {
    font-size: 1.3rem;
  }
}

.corppostDesc.-type4 {
  padding: 12rem 0;
  background-color: #f5f5f5;
}
@media only screen and (max-width:768px) {
  .corppostDesc.-type4 {
    padding: 6rem 0;
  }
}
.corppostDesc.-type4 .t4List {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4.5rem;
}
@media only screen and (max-width:768px) {
  .corppostDesc.-type4 .t4List {
    gap: 3rem;
  }
}
.corppostDesc.-type4 .t4Item__title {
  position: relative;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  color: #e60113;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
}
@media only screen and (max-width:768px) {
  .corppostDesc.-type4 .t4Item__title {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
  }
}
.corppostDesc.-type4 .t4Item__title::before, .corppostDesc.-type4 .t4Item__title::after {
  position: absolute;
  top: 100%;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 0.2rem;
  content: "";
  background-color: #f5e5e5;
}
.corppostDesc.-type4 .t4Item__title::after {
  width: 7.7rem;
  background-color: #e60113;
}
.corppostDesc.-type4 .t4Item__text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .corppostDesc.-type4 .t4Item__text {
    font-size: 1.3rem;
  }
}

.corppostDesc.-type5 .t5List {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 6rem;
}
.corppostDesc.-type5 .t5Item {
  padding: 2.4rem 0;
  background-color: #fcf0e5;
}
@media only screen and (max-width:768px) {
  .corppostDesc.-type5 .t5Item {
    padding: 3rem 0;
  }
}
.corppostDesc.-type5 .t5Item__title {
  padding-bottom: 2.2rem;
  margin-bottom: 2.2rem;
  font-size: 1.8rem;
  font-weight: 600;
  border-bottom: 0.1rem solid #e60113;
}
@media only screen and (max-width:768px) {
  .corppostDesc.-type5 .t5Item__title {
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
  }
}
.corppostDesc.-type5 .t5Item__text {
  font-size: 1.5rem;
  line-height: 2;
}
@media only screen and (max-width:768px) {
  .corppostDesc.-type5 .t5Item__text {
    font-size: 1.3rem;
  }
}

.singleInterview .interviewLinks {
  padding-top: 14rem;
  padding-bottom: 0;
}

.singleInterviewThumbnail {
  width: calc(100% - max((100vw - 100rem) / 2, 2rem));
  margin-bottom: 4rem;
  margin-left: max((100vw - 100rem) / 2, 2rem);
  border-radius: 0 0 0 4rem;
}
@media only screen and (max-width:768px) {
  .singleInterviewThumbnail {
    margin-bottom: 2rem;
    border-radius: 0 0 0 1rem;
  }
}
.singleInterviewThumbnail img {
  width: 100%;
}

.singleInterviewTitle {
  margin-bottom: 4rem;
}
@media only screen and (max-width:768px) {
  .singleInterviewTitle {
    margin-bottom: 3rem;
  }
}
.singleInterviewTitle .singleInterviewTitle__flex {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:768px) {
  .singleInterviewTitle .singleInterviewTitle__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.singleInterviewTitle .singleInterviewTitle__text {
  font-size: 4.5rem;
  font-weight: 600;
}
@media only screen and (max-width:768px) {
  .singleInterviewTitle .singleInterviewTitle__text {
    font-size: 2.2rem;
  }
}
.singleInterviewTitle .singleInterviewTitle__descWrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:768px) {
  .singleInterviewTitle .singleInterviewTitle__descWrap {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.singleInterviewTitle .singleInterviewTitle__number {
  font-family: "Poppins", sans-serif;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 3.4rem;
  margin-right: 3.4rem;
  color: #e60113;
  font-weight: 500;
}
@media only screen and (max-width:768px) {
  .singleInterviewTitle .singleInterviewTitle__number {
    padding-right: 2rem;
    margin-right: 2rem;
  }
}
.singleInterviewTitle .singleInterviewTitle__number::after {
  position: absolute;
  top: 50%;
  left: 100%;
  display: inline-block;
  width: 0.2rem;
  height: 80%;
  content: "";
  background-color: #e60113;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (max-width:768px) {
  .singleInterviewTitle .singleInterviewTitle__number::after {
    top: auto;
    bottom: 0.3rem;
    height: 3.5rem;
    -webkit-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
  }
}
.singleInterviewTitle .singleInterviewTitle__numberText {
  font-size: 1.4rem;
}
@media only screen and (max-width:768px) {
  .singleInterviewTitle .singleInterviewTitle__numberText {
    font-size: 1rem;
  }
}
.singleInterviewTitle .singleInterviewTitle__numberCount {
  font-size: 5.5rem;
  line-height: 1;
}
@media only screen and (max-width:768px) {
  .singleInterviewTitle .singleInterviewTitle__numberCount {
    font-size: 4.1rem;
  }
}
.singleInterviewTitle .singleInterviewTitle__desc {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:768px) {
  .singleInterviewTitle .singleInterviewTitle__desc {
    gap: 0rem;
  }
}
.singleInterviewTitle .singleInterviewTitle__department {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media only screen and (max-width:768px) {
  .singleInterviewTitle .singleInterviewTitle__department {
    font-size: 1.3rem;
  }
}
.singleInterviewTitle .singleInterviewTitle__hireMonth {
  color: #939393;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media only screen and (max-width:768px) {
  .singleInterviewTitle .singleInterviewTitle__hireMonth {
    font-size: 1.2rem;
  }
}

.singleInterviewCareer {
  margin-bottom: 9.6rem;
}
@media only screen and (max-width:768px) {
  .singleInterviewCareer {
    margin-bottom: 6rem;
  }
}
.singleInterviewCareer .singleInterviewCareer__bg {
  padding: 4rem 0;
  background-color: #f5f5f5;
}
@media only screen and (max-width:768px) {
  .singleInterviewCareer .singleInterviewCareer__bg {
    padding: 2rem 0;
  }
}
.singleInterviewCareer .singleInterviewCareer__flex {
  gap: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:768px) {
  .singleInterviewCareer .singleInterviewCareer__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.singleInterviewCareer .titleType1 {
  min-width: 10rem;
}
@media only screen and (max-width:768px) {
  .singleInterviewCareer .titleType1 {
    min-width: 0rem;
  }
}
.singleInterviewCareer .titleType1 .titleType1__lText {
  font-size: 2.4rem;
}
@media only screen and (max-width:768px) {
  .singleInterviewCareer .titleType1 .titleType1__lText {
    font-size: 2rem;
  }
}
.singleInterviewCareer .titleType1 .titleType1__sText {
  font-size: 1.4rem;
}
@media only screen and (max-width:768px) {
  .singleInterviewCareer .titleType1 .titleType1__sText {
    font-size: 1.2rem;
  }
}
.singleInterviewCareer .singleInterviewCareer__item {
  gap: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.5rem 0;
  border-bottom: 0.1rem solid #e60113;
}
@media only screen and (max-width:768px) {
  .singleInterviewCareer .singleInterviewCareer__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.singleInterviewCareer .singleInterviewCareer__item:first-child {
  padding-top: 0;
}
.singleInterviewCareer .singleInterviewCareer__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.singleInterviewCareer .singleInterviewCareer__year {
  font-family: "Poppins", sans-serif;
  gap: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 14rem;
  font-size: 1.6rem;
}
@media only screen and (max-width:768px) {
  .singleInterviewCareer .singleInterviewCareer__year {
    min-width: 0rem;
    font-size: 1.4rem;
  }
}
.singleInterviewCareer .singleInterviewCareer__year::before {
  display: inline-block;
  color: #e60113;
  content: "・";
}
.singleInterviewCareer .singleInterviewCareer__text {
  font-size: 1.5rem;
  font-weight: 500;
}
@media only screen and (max-width:768px) {
  .singleInterviewCareer .singleInterviewCareer__text {
    font-size: 1.3rem;
  }
}

.singleInterviewContents .titleType1 {
  margin-bottom: 8rem;
}

.singleInterviewContents {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 13rem;
}
.singleInterviewContents .singleInterviewArticle {
  gap: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16rem;
}
@media only screen and (max-width:768px) {
  .singleInterviewContents .singleInterviewArticle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.2rem;
    margin-bottom: 5rem;
  }
}
.singleInterviewContents .singleInterviewArticle.-type1 .singleInterviewArticle__figure, .singleInterviewContents .singleInterviewArticle.-type2 .singleInterviewArticle__figure {
  width: calc(50% - 6rem);
  min-width: calc(50% - 6rem);
}
@media only screen and (max-width:768px) {
  .singleInterviewContents .singleInterviewArticle.-type1 .singleInterviewArticle__figure, .singleInterviewContents .singleInterviewArticle.-type2 .singleInterviewArticle__figure {
    width: 100%;
    min-width: 0;
  }
}
.singleInterviewContents .singleInterviewArticle.-type2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width:768px) {
  .singleInterviewContents .singleInterviewArticle.-type2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.singleInterviewContents .singleInterviewArticle.-type3 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media only screen and (max-width:768px) {
  .singleInterviewContents .singleInterviewArticle.-type3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.singleInterviewContents .singleInterviewArticle.-type3 .singleInterviewArticle__figure {
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
}
.singleInterviewContents .singleInterviewArticle__figure {
  border-radius: 2rem;
}
.singleInterviewContents .singleInterviewArticle__img {
  width: 100%;
}

.singleInterviewMessage {
  margin-bottom: 16rem;
}
.singleInterviewMessage .singleInterviewMessage__flex {
  gap: 4.8rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4rem 2rem;
  background-color: #fcf0e5;
}
@media only screen and (max-width:768px) {
  .singleInterviewMessage .singleInterviewMessage__flex {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.2rem;
  }
}
.singleInterviewMessage .singleInterviewMessage__figure {
  width: 16rem;
  height: 16rem;
  min-width: 16rem;
  overflow: hidden;
  border-radius: 50%;
}
.singleInterviewMessage .singleInterviewMessage__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.singleInterviewMessage .singleInterviewMessage__desc {
  max-width: 74rem;
}
.singleInterviewMessage .singleInterviewMessage__label {
  font-family: "Poppins", sans-serif;
  margin-bottom: 0.8rem;
  color: #e60113;
  font-size: 1.8rem;
  font-weight: 500;
  text-decoration: underline;
}
@media only screen and (max-width:768px) {
  .singleInterviewMessage .singleInterviewMessage__label {
    text-align: center;
  }
}
.singleInterviewMessage .singleInterviewMessage__title {
  margin-bottom: 1.6rem;
  font-size: 1.8rem;
  font-weight: 500;
}
@media only screen and (max-width:768px) {
  .singleInterviewMessage .singleInterviewMessage__title {
    text-align: center;
  }
}
.singleInterviewMessage .singleInterviewMessage__text {
  font-size: 1.4rem;
  line-height: 2;
}

.singleInterviewFlow {
  padding: 8rem 0;
  margin-bottom: 14rem;
  background-color: #f5f5f5;
}
@media only screen and (max-width:768px) {
  .singleInterviewFlow {
    margin-bottom: 10rem;
  }
}
.singleInterviewFlow .singleInterviewFlow__flex {
  gap: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:768px) {
  .singleInterviewFlow .singleInterviewFlow__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
  }
}
@media only screen and (max-width:768px) {
  .singleInterviewFlow .titleType1 {
    margin-bottom: 0;
  }
}
.singleInterviewFlow .titleType1 .titleType1__lText {
  margin-bottom: 0.8rem;
}
.singleInterviewFlow .singleInterviewFlow__list {
  width: 60%;
  padding-top: 1.4rem;
}
@media only screen and (max-width:768px) {
  .singleInterviewFlow .singleInterviewFlow__list {
    width: 100%;
  }
}
.singleInterviewFlow .singleInterviewFlow__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 4rem;
  padding-left: 8.4rem;
}
@media only screen and (max-width:768px) {
  .singleInterviewFlow .singleInterviewFlow__item {
    padding-left: 5.4rem;
  }
}
.singleInterviewFlow .singleInterviewFlow__item:last-child {
  padding-bottom: 0;
}
.singleInterviewFlow .singleInterviewFlow__item::before {
  position: absolute;
  top: 1.2rem;
  left: 2.6rem;
  display: inline-block;
  width: 0.4rem;
  height: 100%;
  content: "";
  background-color: #d3d3d3;
}
@media only screen and (max-width:768px) {
  .singleInterviewFlow .singleInterviewFlow__item::before {
    left: 1.7rem;
  }
}
.singleInterviewFlow .singleInterviewFlow__item:first-child .singleInterviewFlow__dot, .singleInterviewFlow .singleInterviewFlow__item:last-child .singleInterviewFlow__dot {
  top: -1.4rem;
  left: 0;
  width: 5.7rem;
  height: 5.7rem;
}
@media only screen and (max-width:768px) {
  .singleInterviewFlow .singleInterviewFlow__item:first-child .singleInterviewFlow__dot, .singleInterviewFlow .singleInterviewFlow__item:last-child .singleInterviewFlow__dot {
    top: -0.4rem;
    width: 3.8rem;
    height: 3.8rem;
  }
}
.singleInterviewFlow .singleInterviewFlow__item:first-child .singleInterviewFlow__dot::after, .singleInterviewFlow .singleInterviewFlow__item:last-child .singleInterviewFlow__dot::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 2.2rem;
  height: 2.2rem;
  content: "";
  background-image: url(../image/common/icon_sun_white_1.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (max-width:768px) {
  .singleInterviewFlow .singleInterviewFlow__item:first-child .singleInterviewFlow__dot::after, .singleInterviewFlow .singleInterviewFlow__item:last-child .singleInterviewFlow__dot::after {
    width: 1.7rem;
    height: 1.7rem;
  }
}
.singleInterviewFlow .singleInterviewFlow__item:last-child::before {
  display: none;
}
.singleInterviewFlow .singleInterviewFlow__item:last-child .singleInterviewFlow__dot {
  background-color: #666b71;
}
.singleInterviewFlow .singleInterviewFlow__item:last-child .singleInterviewFlow__dot::after {
  background-image: url(../image/common/icon_moon_white_1.svg);
}
.singleInterviewFlow .singleInterviewFlow__dot {
  position: absolute;
  top: 1rem;
  left: 2.3rem;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-color: #e60113;
  border-radius: 50%;
}
@media only screen and (max-width:768px) {
  .singleInterviewFlow .singleInterviewFlow__dot {
    left: 1.4rem;
  }
}
.singleInterviewFlow .singleInterviewFlow__hour {
  font-family: "Poppins", sans-serif;
  min-width: 8rem;
  color: #e60113;
  font-size: 1.8rem;
  font-weight: 500;
}
@media only screen and (max-width:768px) {
  .singleInterviewFlow .singleInterviewFlow__hour {
    min-width: 7rem;
  }
}
.singleInterviewFlow .singleInterviewFlow__text {
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width:768px) {
  .singleInterviewFlow .singleInterviewFlow__text {
    padding-top: 0.3rem;
    font-size: 1.3rem;
  }
}

.singlePost {
  padding-bottom: 18rem;
}
@media only screen and (max-width:768px) {
  .singlePost {
    padding-bottom: 12rem;
  }
}
.singlePost .defaultTemplateContents {
  margin-bottom: 8rem;
}

.singlePostContets .singlePostContets__title {
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 600;
}
@media only screen and (max-width:768px) {
  .singlePostContets .singlePostContets__title {
    font-size: 2.2rem;
  }
}
.singlePostContets .singlePostContets__postDate {
  display: block;
  margin-bottom: 6rem;
  color: #999999;
  font-size: 1.4rem;
  text-align: right;
}
@media only screen and (max-width:768px) {
  .singlePostContets .singlePostContets__postDate {
    margin-bottom: 2rem;
    font-size: 1.3rem;
  }
}
.singlePostContets .singlePostContets__figure {
  width: 100%;
  margin-bottom: 5rem;
}
@media only screen and (max-width:768px) {
  .singlePostContets .singlePostContets__figure {
    margin-bottom: 3rem;
  }
}
.singlePostContets .singlePostContets__img {
  width: 100%;
}

.singlePostPdf {
  margin-bottom: 4rem;
}
.singlePostPdf .singlePostPdf__list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:768px) {
  .singlePostPdf .singlePostPdf__list {
    max-width: 28rem;
    margin: 0 auto;
  }
}
.singlePostPdf .singlePostPdf__item {
  width: 33%;
}
@media only screen and (max-width:768px) {
  .singlePostPdf .singlePostPdf__item {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.singlePostPdf .singlePostPdf__item:not(:nth-child(3n)) {
  margin-right: 0.5%;
}
@media only screen and (max-width:768px) {
  .singlePostPdf .singlePostPdf__item:not(:nth-child(3n)) {
    margin-right: 0;
  }
}
.singlePostPdf .singlePostPdf__item:not(:nth-last-child(-n+3)) {
  margin-bottom: 0.5%;
}
@media only screen and (max-width:768px) {
  .singlePostPdf .singlePostPdf__item:not(:nth-last-child(-n+3)) {
    margin-bottom: 0;
  }
}
.singlePostPdf .singlePostPdf__link {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 1.2rem 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: underline;
  background-color: #f5f5f5;
  border-radius: 0.4rem;
}
.singlePostPdf .singlePostPdf__link img {
  width: 1.7rem;
}

.singlePostEnd {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 4rem;
  border-top: 0.1rem solid #333333;
}

.tabSwitch .tabSwitch__labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 8rem;
}
.tabSwitch .tabSwitch__labels .tabSwitch__labelItem {
  width: 33.3333333333%;
  background-color: #ffffff;
  border: 0.1rem solid #d02d26;
  cursor: pointer;
}
.tabSwitch .tabSwitch__labels .tabSwitch__labelItem:first-child {
  border-radius: 1rem 0 0 1rem;
}
.tabSwitch .tabSwitch__labels .tabSwitch__labelItem:last-child {
  border-radius: 0 1rem 1rem 0;
}
.tabSwitch .tabSwitch__labels .tabSwitch__labelItem * {
  pointer-events: none;
}
.tabSwitch .tabSwitch__labels .tabSwitch__labelItem .tabSwitch__labelText {
  display: block;
  padding: 2.4rem;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  pointer-events: auto;
}
@media only screen and (max-width:768px) {
  .tabSwitch .tabSwitch__labels .tabSwitch__labelItem .tabSwitch__labelText {
    padding: 1.2rem 0.8rem;
    font-size: 1.5rem;
  }
}
.tabSwitch .tabSwitch__labels .tabSwitch__labelItem.-active {
  background-color: #d02d26;
}
.tabSwitch .tabSwitch__labels .tabSwitch__labelItem.-active .tabSwitch__labelText {
  color: #ffffff;
}
.tabSwitch .tabSwitch__labels.-col-2 .tabSwitch__labelItem {
  width: 50%;
}
.tabSwitch .tabSwitch__labels.-col-3 .tabSwitch__labelItem {
  width: 33.3333333333%;
}
.tabSwitch .tabSwitch__contents .tabSwitch__content {
  display: none;
}
.tabSwitch .tabSwitch__contents .tabSwitch__content[tab-content=tab1] {
  display: block;
}

.titleType1 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.titleType1 .titleType1__lText {
  font-family: "Poppins", sans-serif;
  color: #e60113;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1.2;
}
@media only screen and (max-width:768px) {
  .titleType1 .titleType1__lText {
    font-size: 2.8rem;
  }
}
.titleType1 .titleType1__sText {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
}
@media only screen and (max-width:768px) {
  .titleType1 .titleType1__sText {
    font-size: 1.2rem;
  }
}
.titleType1.-aic {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.titleType2 {
  gap: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2.8rem;
  font-size: 2.4rem;
  font-weight: 600;
}
.titleType2::before {
  display: inline-block;
  width: 2.8rem;
  height: 2.8rem;
  min-width: 2.8rem;
  min-height: 2.8rem;
  margin-top: 0.6rem;
  content: "";
  border: 0.5rem solid #e60113;
  border-radius: 50%;
}
@media only screen and (max-width:768px) {
  .titleType2::before {
    width: 2.2rem;
    height: 2.2rem;
    min-width: 2.2rem;
    min-height: 2.2rem;
    margin-top: 1rem;
  }
}

.u-trigger {
  opacity: 0;
}
.u-trigger.-order1 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.u-trigger.-order2 {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.u-trigger.-order3 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.u-trigger.-order4 {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.u-trigger.-order5 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.u-trigger.-order6 {
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}
.u-trigger.-order7 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.u-trigger.-order8 {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
.u-trigger.-order9 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.u-trigger.-order10 {
  -webkit-animation-delay: 0.55s;
          animation-delay: 0.55s;
}
.u-trigger.-order11 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.u-trigger.-order12 {
  -webkit-animation-delay: 0.65s;
          animation-delay: 0.65s;
}

@media screen and (max-width: 767px) {
  .u-fadeInUp {
    -webkit-animation-name: u-fadeInUp_m;
            animation-name: u-fadeInUp_m;
  }
}
@media screen and (min-width: 768px) {
  .u-fadeInUp {
    -webkit-animation-name: u-fadeInUp_d;
            animation-name: u-fadeInUp_d;
  }
}
.u-fadeInUp {
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
@-webkit-keyframes u-fadeInUp_d {
  0% {
    -webkit-transform: translate3d(0, 4.5572916667vw, 0);
            transform: translate3d(0, 4.5572916667vw, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes u-fadeInUp_d {
  0% {
    -webkit-transform: translate3d(0, 4.5572916667vw, 0);
            transform: translate3d(0, 4.5572916667vw, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}
@-webkit-keyframes u-fadeInUp_m {
  0% {
    -webkit-transform: translate3d(0, 18.6666666667vw, 0);
            transform: translate3d(0, 18.6666666667vw, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes u-fadeInUp_m {
  0% {
    -webkit-transform: translate3d(0, 18.6666666667vw, 0);
            transform: translate3d(0, 18.6666666667vw, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}

.breadcrumb {
  margin-top: 0.8rem;
  margin-bottom: 6.4rem;
}
.breadcrumb .breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcrumb .breadcrumb__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcrumb .breadcrumb__item::after {
  display: inline-block;
  color: #e60113;
  margin: 0 1rem;
  content: "/";
  font-weight: 300;
}
.breadcrumb .breadcrumb__item:last-of-type::after {
  display: none;
}
.breadcrumb .breadcrumb__item:first-child .breadcrumb__link {
  color: #e60113;
}
.breadcrumb .breadcrumb__link {
  color: #000000;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
}