@charset "UTF-8";
/*--------------------------------------------
* 【注意】直接編集禁止【注意】
* --------------------------------------------
* rec-style.cssは直接編集しないでください。
* rec-style.sassを修正しコンパイルして使用するようにお願いします。
* 修正するファイルはdcms_media/css/sass/custom.scssです。
* 修正後は以下のディレクトリにファイルをインポートしてください
* 
* 
* ============================================
* sassディレクトリ
* ============================================
*   > rec-style.css 
*   > rec-style.sass
*   > rec-style.css.map
* 
* ============================================
* cssディレクトリ
* ============================================
*   > rec-style.css 
* 
* --------------------------------------------*/
/*-----------------------------------------------------------------*/
/*Utility*/
/*------------------------------------------------------------------*/
/*width*/
.u-w180 {
  max-width: 180px;
  width: 100%;
}
.u-w260 {
  max-width: 260px;
  width: 100%;
}
.u-w360 {
  max-width: 360px;
  width: 100%;
}

/*margin*/
.u-mx-auto {
  margin-inline: auto;
}

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

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

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

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

/*Image styles*/
.u-ojf-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.u-ojf-contain img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/*-----------------------------------------------------------------*/
/*list style*/
/*------------------------------------------------------------------*/
.u-li-style-disc {
  list-style-type: disc;
  line-height: 1.3;
}
.u-li-style-circle {
  list-style-type: circle;
  line-height: 1.3;
}
.u-li-style-square {
  list-style-type: square;
  line-height: 1.3;
}
.u-li-style-inside {
  list-style-type: inside;
  line-height: 1.3;
}
.u-li-style-decimal {
  list-style-type: decimal;
  line-height: 1.3;
}
.u-li-style-decimal-leading-zero {
  list-style-type: decimal-leading-zero;
  line-height: 1.3;
}
.u-li-style-lower-alpha {
  list-style-type: lower-alpha;
  line-height: 1.3;
}
.u-li-style-upper-alpha {
  list-style-type: upper-alpha;
  line-height: 1.3;
}
.u-li-style-lower-roman {
  list-style-type: lower-roman;
  line-height: 1.3;
}
.u-li-style-none {
  list-style-type: none;
  line-height: 1.3;
}

.li-mt10 li {
  margin-top: 10px;
}
.li-mt10 li:first-child {
  margin-top: 0;
}
.li-mt15 li {
  margin-top: 15px;
}
.li-mt15 li:first-child {
  margin-top: 0;
}

/*list-style-type　がはみ出すとき用*/
.list-pr1 {
  padding-left: 1.5rem;
}

/*
flex
-----------------------------------------------------------------*/
/* flex reverse */
.u-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (max-width: 979.8px) {
  .u-column-reverse-tb {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 689.8px) {
  .u-column-reverse-sp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.u-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 979.8px) {
  .u-row-reverse-tb {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (max-width: 689.8px) {
  .u-row-reverse-sp {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.jsc-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 979.8px) {
  .jsc-start-tb {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 689.8px) {
  .jsc-start-sp {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.jsc-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 979.8px) {
  .jsc-end-tb {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media screen and (max-width: 689.8px) {
  .jsc-end-sp {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.jsc-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 979.8px) {
  .jsc-center-tb {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 689.8px) {
  .jsc-center-sp {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.jsc-space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 979.8px) {
  .jsc-space-between-tb {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 689.8px) {
  .jsc-space-between-sp {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.jsc-space-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (max-width: 979.8px) {
  .jsc-space-around-tb {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
@media screen and (max-width: 689.8px) {
  .jsc-space-around-sp {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.jsc-space-evenly {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
@media screen and (max-width: 979.8px) {
  .jsc-space-evenly-tb {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}
@media screen and (max-width: 689.8px) {
  .jsc-space-evenly-sp {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

.al-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 979.8px) {
  .al-center-tb {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 689.8px) {
  .al-center-sp {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.al-flex-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 979.8px) {
  .al-flex-end-tb {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media screen and (max-width: 689.8px) {
  .al-flex-end-sp {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

/*flex*/
.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4%;
}
.u-flex .left-sm {
  width: 30%;
}
.u-flex .left-md {
  width: 48%;
}
.u-flex .left-lg {
  width: 66%;
}
.u-flex .right-sm {
  width: 30%;
}
.u-flex .right-md {
  width: 48%;
}
.u-flex .right-lg {
  width: 66%;
}
@media screen and (max-width: 689.8px) {
  .u-flex .left-sm, .u-flex .left-md, .u-flex .left-lg {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .u-flex .right-sm, .u-flex .right-md, .u-flex .right-lg {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    margin-top: 15px;
  }
}

/*
grid
-----------------------------------------------------------------*/
.u-grid {
  display: grid;
  /*----------------------
  PC col
  ----------------------*/
  /*col repeat | 1～6 */
  /*col width | 15%~45%　auto */
  /*col width | auto 15%~45% */
  /*----------------------
  tablet col
  ----------------------*/
  /*col repeat | 1～6 */
  /*col width | 15%~45%　auto */
  /*col width | auto 15%~45% */
  /*----------------------
  SP col
  ----------------------*/
  /*col repeat | 1～6 */
  /*col width | 15%~45%　auto */
  /*col width | auto 15%~45% */
}
.u-grid.col1 {
  grid-template-columns: repeat(1, 1fr);
}
.u-grid.col2 {
  grid-template-columns: repeat(2, 1fr);
}
.u-grid.col3 {
  grid-template-columns: repeat(3, 1fr);
}
.u-grid.col4 {
  grid-template-columns: repeat(4, 1fr);
}
.u-grid.col5 {
  grid-template-columns: repeat(5, 1fr);
}
.u-grid.col6 {
  grid-template-columns: repeat(6, 1fr);
}
.u-grid.col-15-auto {
  grid-template-columns: 15% auto;
}
.u-grid.col-20-auto {
  grid-template-columns: 20% auto;
}
.u-grid.col-25-auto {
  grid-template-columns: 25% auto;
}
.u-grid.col-30-auto {
  grid-template-columns: 30% auto;
}
.u-grid.col-35-auto {
  grid-template-columns: 35% auto;
}
.u-grid.col-40-auto {
  grid-template-columns: 40% auto;
}
.u-grid.col-45-auto {
  grid-template-columns: 45% auto;
}
.u-grid.col-auto-15 {
  grid-template-columns: auto 15%;
}
.u-grid.col-auto-20 {
  grid-template-columns: auto 20%;
}
.u-grid.col-auto-25 {
  grid-template-columns: auto 25%;
}
.u-grid.col-auto-30 {
  grid-template-columns: auto 30%;
}
.u-grid.col-auto-35 {
  grid-template-columns: auto 35%;
}
.u-grid.col-auto-40 {
  grid-template-columns: auto 40%;
}
.u-grid.col-auto-45 {
  grid-template-columns: auto 45%;
}
.u-grid.--auto-fill-250 {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.u-grid.--auto-fill-300 {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
@media screen and (max-width: 979.8px) {
  .u-grid.col1-tab {
    grid-template-columns: repeat(1, 1fr);
  }
  .u-grid.col2-tab {
    grid-template-columns: repeat(2, 1fr);
  }
  .u-grid.col3-tab {
    grid-template-columns: repeat(3, 1fr);
  }
  .u-grid.col4-tab {
    grid-template-columns: repeat(4, 1fr);
  }
  .u-grid.col5-tab {
    grid-template-columns: repeat(5, 1fr);
  }
  .u-grid.col6-tab {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media screen and (max-width: 979.8px) {
  .u-grid.col-15auto-tab {
    grid-template-columns: 15% auto;
  }
  .u-grid.col-20auto-tab {
    grid-template-columns: 20% auto;
  }
  .u-grid.col-25auto-tab {
    grid-template-columns: 25% auto;
  }
  .u-grid.col-30auto-tab {
    grid-template-columns: 30% auto;
  }
  .u-grid.col-35auto-tab {
    grid-template-columns: 35% auto;
  }
  .u-grid.col-40auto-tab {
    grid-template-columns: 40% auto;
  }
  .u-grid.col-45auto-tab {
    grid-template-columns: 45% auto;
  }
}
@media screen and (max-width: 979.8px) {
  .u-grid.col-auto-15-tab {
    grid-template-columns: auto 15%;
  }
  .u-grid.col-auto-20-tab {
    grid-template-columns: auto 20%;
  }
  .u-grid.col-auto-25-tab {
    grid-template-columns: auto 25%;
  }
  .u-grid.col-auto-30-tab {
    grid-template-columns: auto 30%;
  }
  .u-grid.col-auto-35-tab {
    grid-template-columns: auto 35%;
  }
  .u-grid.col-auto-40-tab {
    grid-template-columns: auto 40%;
  }
  .u-grid.col-auto-45-tab {
    grid-template-columns: auto 45%;
  }
}
@media screen and (max-width: 689.8px) {
  .u-grid.col1-sp {
    grid-template-columns: repeat(1, 1fr);
  }
  .u-grid.col2-sp {
    grid-template-columns: repeat(2, 1fr);
  }
  .u-grid.col3-sp {
    grid-template-columns: repeat(3, 1fr);
  }
  .u-grid.col4-sp {
    grid-template-columns: repeat(4, 1fr);
  }
  .u-grid.col5-sp {
    grid-template-columns: repeat(5, 1fr);
  }
  .u-grid.col6-sp {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media screen and (max-width: 689.8px) {
  .u-grid.col-15auto-sp {
    grid-template-columns: 15% auto;
  }
  .u-grid.col-20auto-sp {
    grid-template-columns: 20% auto;
  }
  .u-grid.col-25auto-sp {
    grid-template-columns: 25% auto;
  }
  .u-grid.col-30auto-sp {
    grid-template-columns: 30% auto;
  }
  .u-grid.col-35auto-sp {
    grid-template-columns: 35% auto;
  }
  .u-grid.col-40auto-sp {
    grid-template-columns: 40% auto;
  }
  .u-grid.col-45auto-sp {
    grid-template-columns: 45% auto;
  }
}
@media screen and (max-width: 689.8px) {
  .u-grid.col-auto-15-sp {
    grid-template-columns: auto 15%;
  }
  .u-grid.col-auto-20-sp {
    grid-template-columns: auto 20%;
  }
  .u-grid.col-auto-25-sp {
    grid-template-columns: auto 25%;
  }
  .u-grid.col-auto-30-sp {
    grid-template-columns: auto 30%;
  }
  .u-grid.col-auto-35-sp {
    grid-template-columns: auto 35%;
  }
  .u-grid.col-auto-40-sp {
    grid-template-columns: auto 40%;
  }
  .u-grid.col-auto-45-sp {
    grid-template-columns: auto 45%;
  }
}

/*gap*/
.gap5 {
  gap: 5px!important;
}

.gap10 {
  gap: 10px!important;
}

.gap15 {
  gap: 15px!important;
}

.gap20 {
  gap: 20px!important;
}

.gap25 {
  gap: 25px!important;
}

.gap30 {
  gap: 30px!important;
}

.gap35 {
  gap: 35px!important;
}

.gap40 {
  gap: 40px!important;
}

.gap45 {
  gap: 45px!important;
}

.gap50 {
  gap: 50px!important;
}

.gap55 {
  gap: 55px!important;
}

.gap60 {
  gap: 60px!important;
}

.gap65 {
  gap: 65px!important;
}

.gap70 {
  gap: 70px!important;
}

.gap75 {
  gap: 75px!important;
}

.gap80 {
  gap: 80px!important;
}

.gap85 {
  gap: 85px!important;
}

.gap90 {
  gap: 90px!important;
}

.gap95 {
  gap: 95px!important;
}

.gap100 {
  gap: 100px!important;
}

@media screen and (max-width: 979.8px) {
  .gap5-tab {
    gap: 5px!important;
  }
  .gap10-tab {
    gap: 10px!important;
  }
  .gap15-tab {
    gap: 15px!important;
  }
  .gap20-tab {
    gap: 20px!important;
  }
  .gap25-tab {
    gap: 25px!important;
  }
  .gap30-tab {
    gap: 30px!important;
  }
  .gap35-tab {
    gap: 35px!important;
  }
  .gap40-tab {
    gap: 40px!important;
  }
  .gap45-tab {
    gap: 45px!important;
  }
  .gap50-tab {
    gap: 50px!important;
  }
  .gap55-tab {
    gap: 55px!important;
  }
  .gap60-tab {
    gap: 60px!important;
  }
  .gap65-tab {
    gap: 65px!important;
  }
  .gap70-tab {
    gap: 70px!important;
  }
  .gap75-tab {
    gap: 75px!important;
  }
  .gap80-tab {
    gap: 80px!important;
  }
  .gap85-tab {
    gap: 85px!important;
  }
  .gap90-tab {
    gap: 90px!important;
  }
  .gap95-tab {
    gap: 95px!important;
  }
  .gap100-tab {
    gap: 100px!important;
  }
}
@media screen and (max-width: 689.8px) {
  .gap5-sp {
    gap: 5px!important;
  }
  .gap10-sp {
    gap: 10px!important;
  }
  .gap15-sp {
    gap: 15px!important;
  }
  .gap20-sp {
    gap: 20px!important;
  }
  .gap25-sp {
    gap: 25px!important;
  }
  .gap30-sp {
    gap: 30px!important;
  }
  .gap35-sp {
    gap: 35px!important;
  }
  .gap40-sp {
    gap: 40px!important;
  }
  .gap45-sp {
    gap: 45px!important;
  }
  .gap50-sp {
    gap: 50px!important;
  }
  .gap55-sp {
    gap: 55px!important;
  }
  .gap60-sp {
    gap: 60px!important;
  }
  .gap65-sp {
    gap: 65px!important;
  }
  .gap70-sp {
    gap: 70px!important;
  }
  .gap75-sp {
    gap: 75px!important;
  }
  .gap80-sp {
    gap: 80px!important;
  }
  .gap85-sp {
    gap: 85px!important;
  }
  .gap90-sp {
    gap: 90px!important;
  }
  .gap95-sp {
    gap: 95px!important;
  }
  .gap100-sp {
    gap: 100px!important;
  }
}
/*-----------------------------------------------------------------*/
/*component*/
/*------------------------------------------------------------------*/
/*inner*/
.c-rec-inner {
  max-width: 1200px;
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}

.c-rec-inner-1520 {
  max-width: 1520px;
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}

.c-rec-side-right {
  margin-left: auto;
  margin-right: 0;
  width: calc(50% - 40px);
}
@media screen and (max-width: 799.8px) {
  .c-rec-side-right {
    width: calc(100% - 390px);
  }
}
@media screen and (max-width: 979.8px) {
  .c-rec-side-right {
    width: 100%;
  }
}

/*text margin*/
p + p {
  margin-top: 1.5rem;
}

/*-----------------------------------------------------------------------
Text treatment styles
-----------------------------------------------------------------------*/
/*indent*/
.u-indent1 {
  text-indent: -1em;
  padding-left: 1em;
}

.u-indent2 {
  text-indent: -2em;
  padding-left: 2em;
}

/*font-family*/
.u-font-serif {
  font-family: "Noto Serif JP", serif;
  line-height: 1.6;
}

/*font-weight*/
.u-fw100 {
  font-weight: 100;
}

.u-fw200 {
  font-weight: 200;
}

.u-fw300 {
  font-weight: 300;
}

.u-fw400 {
  font-weight: 400;
}

.u-fw500 {
  font-weight: 500;
}

.u-fw600 {
  font-weight: 600;
}

.u-fw700 {
  font-weight: 700;
}

.u-fw800 {
  font-weight: 800;
}

.u-fw900 {
  font-weight: 900;
}

/*改行*/
.only-pc {
  display: block;
}
@media screen and (max-width: 979.8px) {
  .only-pc {
    display: none;
  }
}
.only-pc-tb {
  display: block;
}
@media screen and (max-width: 689.8px) {
  .only-pc-tb {
    display: none;
  }
}
.only-pc-sp {
  display: block;
}
@media screen and (max-width: 979.8px) {
  .only-pc-sp {
    display: none;
  }
}
@media screen and (max-width: 689.8px) {
  .only-pc-sp {
    display: block;
  }
}
.only-tb {
  display: none;
}
@media screen and (max-width: 979.8px) {
  .only-tb {
    display: block;
  }
}
@media screen and (max-width: 689.8px) {
  .only-tb {
    display: none;
  }
}
.only-tb-sp {
  display: none;
}
@media screen and (max-width: 979.8px) {
  .only-tb-sp {
    display: block;
  }
}
.only-sp {
  display: none;
}
@media screen and (max-width: 689.8px) {
  .only-sp {
    display: block;
  }
}

/*-----------------------------------------------------------------------
title
-----------------------------------------------------------------------*/
.c-rec-title__under-line {
  border-bottom: solid 1px #DDDDDD;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  font-weight: 500;
}
.c-rec-title__dual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  margin-bottom: 1.5rem;
}
.c-rec-title__dual-sub {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 1.3;
  color: #194D96;
}
.c-rec-title__dual-main {
  font-family: "Noto Serif JP", serif;
  line-height: 1.3;
  font-size: calc(24px + 8 * (100vw - 375px) / 1545);
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 20px;
  line-height: 1.3;
  margin: 0;
}
@media screen and (min-width: 1920px) {
  .c-rec-title__dual-main {
    font-size: 32px;
  }
}
.c-rec-title__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  position: relative;
}
.c-rec-title__num::before {
  content: "";
  position: absolute;
  background-color: #194D96;
  border-radius: 50px;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 5%;
}
.c-rec-title__num-index {
  font-family: "Noto Serif JP", serif;
  line-height: 1.3;
  font-size: calc(26px + 10 * (100vw - 375px) / 1545);
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 20px;
  color: #194D96;
  margin-bottom: 0;
}
@media screen and (min-width: 1920px) {
  .c-rec-title__num-index {
    font-size: 36px;
  }
}
.c-rec-title__num-main {
  font-family: "Noto Serif JP", serif;
  line-height: 1.3;
  font-size: calc(26px + 10 * (100vw - 375px) / 1545);
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 20px;
  font-weight: 500;
  margin: 0;
}
@media screen and (min-width: 1920px) {
  .c-rec-title__num-main {
    font-size: 36px;
  }
}
.c-rec-title__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.c-rec-title__icon-image {
  width: 50px;
  height: 50px;
}
.c-rec-title__icon-image img {
  border-radius: 50%;
  height: 100%;
  width: 100%;
}
.c-rec-title__icon-text {
  color: #194D96;
  line-height: 1.3;
  font-size: calc(16px + 2 * (100vw - 375px) / 1545);
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
}
@media screen and (min-width: 1920px) {
  .c-rec-title__icon-text {
    font-size: 18px;
  }
}

/*hedding font-size*/
.u-h1 {
  line-height: 1.3;
  font-size: calc(30px + 10 * (100vw - 375px) / 1545);
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 20px;
}
@media screen and (min-width: 1920px) {
  .u-h1 {
    font-size: 40px;
  }
}
.u-h2-l {
  line-height: 1.3;
  font-size: calc(26px + 10 * (100vw - 375px) / 1545);
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 20px;
}
@media screen and (min-width: 1920px) {
  .u-h2-l {
    font-size: 36px;
  }
}
.u-h2 {
  line-height: 1.3;
  font-size: calc(24px + 8 * (100vw - 375px) / 1545);
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 20px;
}
@media screen and (min-width: 1920px) {
  .u-h2 {
    font-size: 32px;
  }
}
.u-h3 {
  line-height: 1.3;
  font-size: calc(22px + 6 * (100vw - 375px) / 1545);
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 20px;
}
@media screen and (min-width: 1920px) {
  .u-h3 {
    font-size: 28px;
  }
}
.u-h4 {
  line-height: 1.3;
  font-size: calc(20px + 4 * (100vw - 375px) / 1545);
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 20px;
}
@media screen and (min-width: 1920px) {
  .u-h4 {
    font-size: 24px;
  }
}
.u-h5 {
  line-height: 1.3;
  font-size: calc(18px + 2 * (100vw - 375px) / 1545);
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 20px;
}
@media screen and (min-width: 1920px) {
  .u-h5 {
    font-size: 20px;
  }
}
.u-h6 {
  line-height: 1.3;
  font-size: calc(16px + 2 * (100vw - 375px) / 1545);
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 20px;
}
@media screen and (min-width: 1920px) {
  .u-h6 {
    font-size: 18px;
  }
}

/*-----------------------------------------------------------------*/
/*color*/
/*------------------------------------------------------------------*/
/*text-color*/
.u-fc__main {
  color: #194D96 !important;
}

.u-fc__wht {
  color: #fff !important;
}

.u-fc__text {
  color: #333 !important;
}

.u-fc__blk {
  color: #333 !important;
}

.u-fc__bg-color {
  color: #F5F5F5 !important;
}

.u-fc__bdr-color {
  color: #DDDDDD !important;
}

.u-fc__currentColor {
  color: currentColor !important;
}

/*background-color*/
.u-bg__main {
  background-color: #194D96;
}

.u-bg__wht {
  background-color: #fff;
}

.u-bg__text {
  background-color: #333;
}

.u-bg__blk {
  background-color: #333;
}

.u-bg__bg-color {
  background-color: #F5F5F5;
}

.u-bg__bdr-color {
  background-color: #DDDDDD;
}

.u-bg__currentColor {
  background-color: currentColor;
}

/*-----------------------------------------------------------------*/
/*button*/
/*------------------------------------------------------------------*/
/*アンカーボタン*/
.c-rec-anchor {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 15px;
}
.c-rec-anchor li a {
  background-color: #F5F5F5;
  border: solid 1px #F5F5F5;
  border-radius: 5px;
  color: #999;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  height: 100%;
  width: 100%;
  line-height: 1.3;
  padding: 10px 40px 10px 15px;
  position: relative;
  text-align: center;
  text-decoration: none;
}
.c-rec-anchor li a .c-rec-anchor__caption {
  font-size: 14px;
  font-weight: 600;
}
.c-rec-anchor li a::before, .c-rec-anchor li a::after {
  content: "";
  position: absolute;
}
.c-rec-anchor li a::before {
  background-color: #999;
  height: 15px;
  width: 2px;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-rec-anchor li a::after {
  border-bottom: solid 2px #999;
  border-right: solid 2px #999;
  height: 10px;
  width: 10px;
  right: 19px;
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}
.c-rec-anchor li a:hover {
  background-color: #194D96;
  border: solid 1px #194D96;
  color: #fff;
}
.c-rec-anchor li a:hover::before {
  background-color: #fff;
}
.c-rec-anchor li a:hover::after {
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
}

/*ボタン*/
.c-rec-btn a {
  font-size: 18px;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  border-color: #194D96;
  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;
  height: 100%;
  width: 100%;
  text-decoration: none;
  padding: 10px 20px;
}
.c-rec-btn__main {
  background-color: #194D96;
  color: #fff;
}
.c-rec-btn__main:hover {
  background-color: #fff;
  color: #194D96;
}
.c-rec-btn__wht {
  background-color: #fff;
  color: #194D96;
}
.c-rec-btn__wht:hover {
  background-color: #194D96;
  color: #fff;
}

.c-rec-link a,
a.c-rec-link {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 600;
  color: #194D96;
}

/*-----------------------------------------------------------------*/
/*contants*/
/*------------------------------------------------------------------*/
/*職種*/
.c-rec-occupation-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 65px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 979.8px) {
  .c-rec-occupation-list {
    gap: 40px;
  }
}
@media screen and (max-width: 689.8px) {
  .c-rec-occupation-list {
    gap: 20px;
  }
}
.c-rec-occupation-list li {
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

/*職種詳細*/
.c-rec-occupation-box {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
.c-rec-occupation-box__data {
  background-color: #194D96;
  border-radius: 5px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px;
}
@media screen and (max-width: 979.8px) {
  .c-rec-occupation-box__data {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
  }
}
.c-rec-occupation-box__data-item {
  margin-top: 30px;
}
.c-rec-occupation-box__data-item:first-child {
  margin-top: 0;
}
.c-rec-occupation-box__image {
  min-width: 350px;
  width: 50%;
}
@media screen and (max-width: 979.8px) {
  .c-rec-occupation-box__image {
    min-width: auto;
    width: 100%;
  }
}
.c-rec-occupation-box__title {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
}
.c-rec-occupation-box__text-main {
  font-family: "Noto Serif JP", serif;
  line-height: 1.3;
  font-size: calc(22px + 6 * (100vw - 375px) / 1545);
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 20px;
}
@media screen and (min-width: 1920px) {
  .c-rec-occupation-box__text-main {
    font-size: 28px;
  }
}
/*部署*/
.c-rec__category-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.c-rec__category-list li {
  background-color: #fff;
  border-radius: 5px;
  color: #333;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  padding: 10px;
}

/*仕事内容*/
.c-rec-jpb__box {
  background-color: #fff;
  border-radius: 5px;
  padding: 20px;
}
.c-rec-jpb__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.c-rec-jpb__list li {
  background-color: #F5F5F5;
  border-radius: 5px;
  color: #194D96;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 600;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.3;
  padding: 20px;
  text-align: center;
}

/*text box*/
.c-rec-text-box__shadow {
  border-radius: 5px;
  -webkit-box-shadow: 0 0 50px 0 rgba(65, 98, 189, 0.1);
          box-shadow: 0 0 50px 0 rgba(65, 98, 189, 0.1);
  padding: 40px;
}

.c-rec-text-box__grad {
  background: linear-gradient(96deg, #273C67 0%, #1C62A6 100%);
  border-radius: 5px;
  padding: 40px;
}

.c-rec-text-box__border {
  border: solid 2px #194D96;
  border-radius: 5px;
  padding: 40px;
}

.c-rec-text-box__bg-main {
  background-color: #194D96;
  border-radius: 5px;
  padding: 40px;
}

.c-rec-text-box__bg-wht {
  background-color: #fff;
  border-radius: 5px;
  padding: 20px;
}

.c-rec-bg {
  background-color: #F5F5F5;
  border-radius: 5px;
  padding: 40px;
}
@media screen and (max-width: 689.8px) {
  .c-rec-bg {
    padding: 40px 20px;
  }
}

/*人物　card*/
.c-rec-person__wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 60px 35px;
}

.c-rec-person__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-rec-person__card .u-h4,
.c-rec-person__card .u-h5 {
  margin-bottom: 0;
}
.c-rec-person__card-data-top {
  margin-top: 10px;
  margin-bottom: 20px;
}
.c-rec-person__card-data-bottom {
  padding-top: 20px;
  border-top: solid 1px #DDDDDD;
  margin-top: auto;
}
.c-rec-person__card-data-bottom p + p {
  margin-top: 0;
}

/*人物　box*/
.c-rec-person__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 979.8px) {
  .c-rec-person__box {
    gap: 20px;
  }
}
@media screen and (max-width: 689.8px) {
  .c-rec-person__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.c-rec-person__box-image {
  height: 100px;
  width: 100px;
}
@media screen and (max-width: 979.8px) {
  .c-rec-person__box-image {
    height: 80px;
    width: 80px;
  }
}
.c-rec-person__box-image-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.c-rec-person__box-image img {
  border-radius: 50%;
}
.c-rec-person__box-name {
  text-align: center;
  margin-bottom: 0;
}
.c-rec-person__box-data {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/*talk-box*/
.c-rec-talk-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
.c-rec-talk-box__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 979.8px) {
  .c-rec-talk-box__image {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
  }
}
.c-rec-talk-box__data {
  min-width: 400px;
  width: 50%;
}
@media screen and (max-width: 979.8px) {
  .c-rec-talk-box__data {
    min-width: auto;
    width: 100%;
  }
}

/*司会*/
.c-rec-host-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-rec-host-box__name {
  width: 80px;
  margin-bottom: 0;
}
@media screen and (max-width: 689.8px) {
  .c-rec-host-box__name {
    width: 65px;
  }
}
.c-rec-host-box__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/*画像はぬ出すブロック*/
.c-rec-split-overflow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
.c-rec-split-overflow__wrap {
  max-width: calc(50% + 750px);
  width: 96%;
  margin-left: auto;
  margin-right: 0;
  overflow: hidden;
}
@media screen and (max-width: 689.8px) {
  .c-rec-split-overflow__wrap {
    margin-right: auto;
    max-width: none;
    width: 92%;
  }
}
.c-rec-split-overflow__wrap.--right {
  margin-left: 0;
  margin-right: auto;
}
@media screen and (max-width: 689.8px) {
  .c-rec-split-overflow__wrap.--right {
    margin-left: auto;
  }
}
.c-rec-split-overflow__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 689.8px) {
  .c-rec-split-overflow__text {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
  }
}
.c-rec-split-overflow__image {
  width: 45%;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 689.8px) {
  .c-rec-split-overflow__image {
    width: 100%;
  }
}
.c-rec-split-overflow__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: auto;
  margin-right: 0;
}

/*回り込みテキスト*/
.u-float-right__image {
  float: right;
  width: 300px !important;
  margin: 0 0 20px 20px !important;
}
@media screen and (max-width: 979.8px) {
  .u-float-right__image {
    width: 200px !important;
  }
}
@media screen and (max-width: 689.8px) {
  .u-float-right__image {
    float: none;
    margin: 0 auto 16px !important;
  }
}
.u-float-right::after {
  content: "";
  display: block;
  clear: both;
}

/*楕円コンテンツ*/
.c-rec-ellipse-block {
  border-radius: 110px;
  -webkit-box-shadow: 0 0 20px 0 rgba(85, 65, 101, 0.1);
          box-shadow: 0 0 20px 0 rgba(85, 65, 101, 0.1);
  padding: 20px 60px 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 40px;
}
@media screen and (max-width: 979.8px) {
  .c-rec-ellipse-block {
    border-radius: 90px;
    padding: 20px 40px 20px 20px;
    gap: 20px;
  }
}
@media screen and (max-width: 689.8px) {
  .c-rec-ellipse-block {
    border-radius: 5px;
    padding: 20px;
  }
}
.c-rec-ellipse-block__icon {
  background-color: #194D96;
  border-radius: 50%;
  font-family: "Noto Serif JP", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  line-height: 1.3;
  padding: 20px;
  text-align: center;
  height: 150px;
  width: 150px;
}
@media screen and (max-width: 979.8px) {
  .c-rec-ellipse-block__icon {
    height: 130px;
    width: 130px;
  }
}
@media screen and (max-width: 689.8px) {
  .c-rec-ellipse-block__icon {
    border-radius: 5px;
    height: auto;
    width: 100%;
  }
}
.c-rec-ellipse-block__icon-sub-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  font-weight: 700;
}
.c-rec-ellipse-block__icon-main-text {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}
.c-rec-ellipse-block__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-rec-ellipse-block__text {
  font-size: 14px;
  margin-top: 1.5rem;
}

/*ステップ*/
.c-rec-circle-step {
  position: relative;
  background-color: #F5F5F5;
  border-radius: 10px;
  padding: 80px 20px 30px;
  margin-top: 56px;
  position: relative;
  z-index: 0;
}
.c-rec-circle-step__icon {
  background: -webkit-gradient(linear, left top, left bottom, from(#F5F5F5), color-stop(50%, #F5F5F5), color-stop(50%, transparent), to(transparent));
  background: linear-gradient(180deg, #F5F5F5 0%, #F5F5F5 50%, transparent 50%, transparent 100%);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 150px;
  width: 150px;
  margin-inline: auto;
  padding: 30px;
  position: absolute;
  left: 50%;
  top: -56px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.c-rec-circle-step__icon-title {
  color: #194D96;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
.c-rec-circle-step__icon-num {
  font-size: 45px;
  font-weight: 700;
}
.c-rec-circle-step__text {
  line-height: 1.3;
  font-size: calc(20px + 4 * (100vw - 375px) / 1545);
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 20px;
  margin-bottom: 0;
  text-align: center;
}
@media screen and (min-width: 1920px) {
  .c-rec-circle-step__text {
    font-size: 24px;
  }
}

/*年表*/
.c-rct-history {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-rct-history__ym {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin: 0;
  padding-right: 35px;
  position: relative;
  width: 170px;
}
@media screen and (max-width: 979.8px) {
  .c-rct-history__ym {
    width: 130px;
    padding-right: 25px;
  }
}
@media screen and (max-width: 689.8px) {
  .c-rct-history__ym {
    width: 110px;
    padding-right: 25px;
  }
}
.c-rct-history__ym::after {
  content: "";
  position: absolute;
  background: #194D96;
  border-radius: 50%;
  -webkit-box-shadow: inset 0px 0px 0px 12px #D7E6FC;
          box-shadow: inset 0px 0px 0px 12px #D7E6FC;
  z-index: 1;
  height: 40px;
  width: 40px;
  top: 0;
  right: -22.5px;
}
@media screen and (max-width: 979.8px) {
  .c-rct-history__ym::after {
    -webkit-box-shadow: inset 0px 0px 0px 8px #D7E6FC;
            box-shadow: inset 0px 0px 0px 8px #D7E6FC;
    height: 30px;
    width: 30px;
    right: -15.5px;
  }
}
.c-rct-history__ym-num {
  line-height: 1.3;
  font-size: calc(20px + 20 * (100vw - 375px) / 1545);
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 20px;
  color: #194D96;
  margin: 0;
}
@media screen and (min-width: 1920px) {
  .c-rct-history__ym-num {
    font-size: 40px;
  }
}
.c-rct-history__ym-unit {
  line-height: 1.3;
  font-size: calc(16px + 2 * (100vw - 375px) / 1545);
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 20px;
  font-family: "Noto Sans JP", "YuGothic", "Yu Gothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #333;
}
@media screen and (min-width: 1920px) {
  .c-rct-history__ym-unit {
    font-size: 18px;
  }
}
.c-rct-history__detail {
  position: relative;
  border-style: solid;
  border-color: #4e4e86;
  margin-left: auto;
  margin-right: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-width: 0 0 0 5px;
  padding: 0 0 80px 80px;
}
@media screen and (max-width: 979.8px) {
  .c-rct-history__detail {
    border-width: 0 0 0 3px;
    padding: 0 0 80px 35px;
  }
}
@media screen and (max-width: 689.8px) {
  .c-rct-history__detail {
    padding-left: 20px;
  }
}

.js-rct-history:last-child .c-rct-history__detail {
  border-color: rgba(0, 0, 0, 0);
}

/*数字で見る*/
.c-rec-data-text {
  text-align: center;
}
.c-rec-data-text__num {
  line-height: 1.3;
  font-size: calc(60px + 40 * (100vw - 375px) / 1545);
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 20px;
  line-height: 1;
}
@media screen and (min-width: 1920px) {
  .c-rec-data-text__num {
    font-size: 100px;
  }
}
.c-rec-data-text__unit {
  line-height: 1.3;
  font-size: calc(40px + 20 * (100vw - 375px) / 1545);
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 20px;
  line-height: 1;
}
@media screen and (min-width: 1920px) {
  .c-rec-data-text__unit {
    font-size: 60px;
  }
}

/*画像にテキストを重ねる*/
.c-rec-text-overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 979.8px) {
  .c-rec-text-overlay {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-rec-text-overlay__image {
  width: 60%;
  z-index: 0;
}
@media screen and (max-width: 979.8px) {
  .c-rec-text-overlay__image {
    width: 100%;
  }
}
.c-rec-text-overlay__content {
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50%;
  z-index: 1;
}
@media screen and (max-width: 979.8px) {
  .c-rec-text-overlay__content {
    position: relative;
    top: auto;
    width: 90%;
  }
}
@media screen and (max-width: 689.8px) {
  .c-rec-text-overlay__content {
    padding: 20px;
  }
}
.c-rec-text-overlay__right .c-rec-text-overlay__content {
  right: 0;
}
.c-rec-text-overlay__left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.c-rec-text-overlay__left .c-rec-text-overlay__content {
  left: 0;
}
@media screen and (max-width: 979.8px) {
  .c-rec-text-overlay__right, .c-rec-text-overlay__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 979.8px) {
  .c-rec-text-overlay__right .c-rec-text-overlay__content, .c-rec-text-overlay__left .c-rec-text-overlay__content {
    top: -50px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

/*--------------------------------------------
* 【注意】直接編集禁止【注意】
* --------------------------------------------
* rec-style.cssは直接編集しないでください。
* rec-style.sassを修正しコンパイルして使用するようにお願いします。
* 修正するファイルはdcms_media/css/sass/custom.scssです。
* 修正後は以下のディレクトリにファイルをインポートしてください
* 
* 
* ============================================
* sassディレクトリ
* ============================================
*   > rec-style.css 
*   > rec-style.sass
*   > rec-style.css.map
* 
* ============================================
* cssディレクトリ
* ============================================
*   > rec-style.css 
* 
* --------------------------------------------*//*# sourceMappingURL=rec-style.css.map */