@charset "UTF-8";
/* リセット */
/*========================================================================== */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul[class],
ol[class] {
  padding: 0;
}

ul {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}

body, h1, h2, h3, h4, h5, p, ul[class], ol[class],
li, figure, figcaption, blockquote, dl, dd {
  margin: 0;
}

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

/* bodyのデフォルトを定義 */
body {
  min-height: 80vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  background: #fff;
  font-size: 1.5rem;
  line-height: 2.2rem;
  overflow-x: hidden;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
  color: #444;
}
@media only screen and (min-width: 768px) {
  body {
    font-size: 2.1rem;
    line-height: 3.5rem;
  }
}

address {
  font-style: normal;
}

/* class属性を持つul、ol要素のリストスタイルを削除 */
ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* classを持たない要素はデフォルトのスタイルを取得 */
li {
  line-height: 2.1rem;
}
@media screen and (min-width: 768px) {
  li {
    line-height: 3.5rem;
  }
}

ul.nomal {
  margin-left: 1.3em;
  list-style: none;
}
ul.nomal li {
  position: relative;
  padding-left: 20px;
}
ul.nomal li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 40%;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #222;
  border-radius: 3px;
}

dt {
  width: 34%;
  background-color: #eee;
  margin-bottom: 0;
}

dd {
  width: 66%;
  background-color: #FAFAFA;
  margin-bottom: 0;
}

.ws dt {
  width: 19%;
}

.ws dd {
  width: 79%;
}

.content {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1000px) {
  .content {
    margin: 0rem;
    width: 100%;
  }
}

.bannerArea {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1000px) {
  .bannerArea {
    width: 972px;
  }
}
.bannerArea .txtArea {
  font-size: 1.4rem;
  background-color: #111;
  padding: 0.5em;
}
@media only screen and (min-width: 1000px) {
  .bannerArea .txtArea {
    font-size: 2.5rem;
  }
}

a .txtArea {
  color: #fff;
}

.bannerArea a:hover {
  opacity: 1;
}

.custom-layout {
  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;
  gap: 20px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* 各段の並び */
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 100%;
  gap: 2vw; /* 要素間の余白も相対指定 */
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.row.middle {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* 高さ固定、幅は割合に */
.item {
  height: 150px;
  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;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* 幅を相対指定（PC:固定, モバイル:縮小） */
.item1,
.item4 {
  width: 48%; /* PCとスマホ両対応しやすい幅 */
  min-width: 100px;
}

.item2,
.item5 {
  width: 39%; /* 小さめの要素 */
  min-width: 100px;
}

.item3 {
  width: 50%;
  min-width: 100px;
}

@media screen and (max-width: 1000px) {
  .item {
    height: 12vw; /* 例：画面幅が360pxなら約79px */
    font-size: 0.9rem;
  }
}
.prev-next-link {
  margin: 2em auto;
  width: 100%;
}

.prev-next-link a {
  text-align: center;
  background-color: #f6f6f6;
  border-bottom: 1px #ddd solid;
  display: block;
  text-decoration: none;
  padding: 14px 40px;
  color: #0bd;
}

.prev-next-link a:hover {
  background-color: #EFEFEF;
}

.prev-next-link a:first-child {
  border-top: 1px #ddd solid;
}

.prev-next-label {
  font-size: 1.825rem;
  color: #000;
  margin-bottom: 10px;
}

/* Arrows */
.prev-link {
  background: url(http://www.webcreatorbox.com/sample/images/arrow-prev.svg) no-repeat 10px center;
}

.next-link {
  background: url(http://www.webcreatorbox.com/sample/images/arrow-next.svg) no-repeat right 10px center;
}

.prev-link,
.next-link {
  background-size: 16px 28px;
}

/* Larger devices */
@media (min-width: 600px) {
  .prev-next-link {
    width: 600px;
  }
  .prev-next-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .prev-next-link a {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .prev-next-link a,
  .prev-next-link a:first-child {
    border: none;
  }
  .next-link {
    text-align: right;
  }
}
.Pagination {
  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;
}

.Pagination-Item-Link {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 55px;
  height: 55px;
  background: #fff;
  border: solid 2px #111;
  font-size: 14px;
  color: #111;
  font-weight: bold;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
@media screen and (max-width: 1000px) {
  .Pagination-Item-Link {
    width: 42px;
    height: 42px;
  }
}

.ends {
  background: #DCE1F8;
}

.Pagination-Item-Link-Icon {
  width: 20px;
}

.Pagination-Item-Link.isActive {
  background: #15276A;
  color: #fff;
  pointer-events: none;
}

.Pagination-Item-Link:not(.isActive):hover {
  background: #111;
  color: #fff;
}

.Pagination > * + * {
  margin-left: 12px;
}
@media screen and (max-width: 1000px) {
  .Pagination > * + * {
    margin-left: 1.7%;
  }
}

.related-articles {
  margin: 2em 0 1em;
  padding: 2em 0;
  border-top: solid 4px #BAAC71;
}
.related-articles ul {
  margin-left: 2em;
}

.collaborators {
  color: #00678C;
  line-height: 2em;
}

dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 95.5%;
  border: none;
  margin: 1rem;
}
dl ul {
  margin-left: 1.6em;
}
dl dt {
  font-weight: 700;
  color: #444;
  border-bottom: 1px solid #999;
  padding: 0.5%;
  text-align: left;
}
dl dd {
  border-bottom: 1px solid #999;
  padding: 0.5%;
  text-align: left;
}
dl {
  /*dt:last-child,dd:last-child{border-bottom:none;}*/
}

dl.normal_dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border: none;
}
dl.normal_dl dt {
  font-weight: 700;
  color: #111;
  border: none;
  width: 30%;
  background-color: #fff;
}
dl.normal_dl dd {
  border: none;
  width: 68%;
  padding: 0.5%;
  background-color: #fff;
}

@media only screen and (min-width: 768px) {
  dl {
    margin: 0rem;
    width: 100%;
  }
  dl.normal_dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    border: none;
  }
  dl.normal_dl dt {
    font-weight: 700;
    color: #111;
    border: none;
    width: 20%;
    background-color: #fff;
  }
  dl.normal_dl dd {
    border: none;
    width: 78%;
    padding: 0.5%;
    background-color: #fff;
  }
}
/* img要素の扱いを簡単にする */
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* article要素内の要素に自然な流れとリズムを定義 */
article > * + * {
  margin-top: 1em;
}

/* inputやbuttonなどのフォントは継承を定義 */
input, button, textarea, select {
  font: inherit;
}

/* 基礎
========================================================================== */
html {
  font-size: 62.5%;
  line-height: 1.6;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.clear {
  clear: both;
  background-color: #fff;
  border: none;
  color: #fff;
}

a {
  color: #0000EE;
  text-decoration: none;
}

a:visited {
  color: #7200ee;
}

a:active {
  color: #ED3F59;
}

a:hover {
  color: #ED3F59;
}

/* 全画面サイズ共通
========================================================================== */
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
main {
  margin-top: 5px;
  background-color: #fff;
} /*test環境用の背景をのせるためにスペース*/
#home main {
  margin-top: 2px;
}

.sagyoumemo {
  background-color: #fffb13;
  color: #ff0026;
  padding: 0.5rem;
}

.br-pc {
  display: inline-block;
}

@media only screen and (max-width: 1100px) {
  .col3 .br-pc {
    display: none;
  } /*3カラムの場合は幅が変わるタイミングで解除*/
}
.spt-pc {
  margin-top: 8rem;
}

.br-sp {
  display: none;
}

.sp-sp {
  display: none;
}

.br-sps {
  display: none;
}

/* パソコンで見たときは"pc"のclassがついたものが表示される */
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.spm1 {
  margin: 1em;
}

.spp {
  padding: 0.5em;
}

.spp1 {
  padding: 1em;
}

.spt {
  margin-top: 2em;
}

.spt1 {
  margin-top: 1.5em;
}

.spt2 {
  margin-top: 2em;
}

.spt3 {
  margin-top: 3.5em;
}

.spt2_pc {
  margin-top: 2.5em;
}

.spts {
  margin-top: 5px;
}

.spt_sp {
  margin-top: 0;
}

.spt0 {
  margin-top: 0 !important;
}

.spt_pc {
  margin-top: 2.5em;
}

.sppt_pc {
  padding-top: 2.5em;
}

@media only screen and (max-width: 500px) {
  .spt_sp {
    margin-top: 2.5em;
  }
  .spl_sp {
    margin-left: 0.3em;
  } /*スマホのみ左スペース*/
  .spt0_sp {
    margin-top: 0 !important;
  } /*スマホのみ上マージン0*/
  .sptd0_sp {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  } /*スマホのみ上下マージン0*/
  .spt2_pc {
    margin-top: 1rem;
  } /*スマホはマージン少な目*/
  .spt_pc {
    margin-top: 0;
  }
  .sppt_pc {
    padding-top: 0;
  }
}
.spp {
  padding: 1em;
}

.sppt1 {
  padding-top: 1em;
}

.sppt2 {
  padding-top: 2em;
}

.spd {
  margin-bottom: 2em;
}

.spd1 {
  margin-bottom: 1em !important;
}

.spd2 {
  margin-bottom: 2em !important;
}

.spd3 {
  margin-bottom: 3.5em;
}

.sptd {
  margin-top: 2em;
  padding-bottom: 2em;
}

.sptd3 {
  margin-top: 3.5em;
  padding-bottom: 3.5em;
}

.sptd1 {
  margin-top: 1em;
  padding-bottom: 1em;
}

.sppd1 {
  padding-bottom: 1em;
}

.sppd2 {
  padding-bottom: 2em;
}

.sp0_t2 {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

.spl {
  margin-left: 2em;
}

.spl_pc {
  margin-left: 2em;
}

.spl3 {
  margin-left: 3.9em;
}

.spl4 {
  margin-left: 5.6em;
}

.splr {
  margin-left: 2em;
  margin-right: 2em;
} /*2022-04現在未使用なので適宜サイズ調整可*/
.splr_s {
  margin-left: 0.5rem;
  margin-right: 0.5em;
}

ul.spl, ol.spl {
  margin-left: 2.5em;
}

ul.spl3, ol.spl3 {
  margin-left: 3.5em;
}

.ts-pc {
  font-size: 90%;
}

.ts-all {
  font-size: 90%;
}

.tss {
  font-size: 82%;
  color: #999;
}

select.tss {
  font-size: 85%;
  color: #111;
}

.tit2.ts-all {
  font-size: 90%;
}

.text {
  text-align: left;
  line-height: 2em;
}
.text p {
  margin-bottom: 2rem;
}
.text a .normal {
  color: #111;
}

p.text {
  margin-bottom: 2em;
}

p.text.spd0 {
  margin-bottom: 0em;
}

p.text_ind {
  text-indent: 1em;
}

.t-cen {
  text-align: center;
}
.t-cen img {
  margin-left: auto;
  margin-right: auto;
}

img.t-cen {
  margin-left: auto;
  margin-right: auto;
}

.t-cencen {
  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;
} /*縦横センター*/
.text.t-cen {
  text-align: center;
}

.t-cen .text {
  text-align: center;
}

.t-rig {
  text-align: right;
}

.t-lef {
  text-align: left;
}

.t-cen-ver {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
} /*縦センター*/
main .col2 .t-lef img {
  margin-left: 0;
  margin-right: auto;
}

.t-em {
  font-weight: 700;
  color: #cd1549;
}

.t-l {
  font-size: 150%;
}

.t-m {
  font-size: 120%;
}

.t-s {
  font-size: 80%;
}

.t-b {
  font-weight: 700;
}

a.linkline {
  text-decoration: underline;
}

@media only screen and (max-width: 500px) {
  .tss_sp {
    font-size: 82%;
  } /*スマホのみ文字を小さく*/
  main .col_2 .tit.tss_sp {
    font-size: 14px; /*使用中*/
  }
}
.sepa {
  color: #9b9ca1;
  padding-left: 2px;
  padding-right: 2px;
}

.img_rig {
  margin-left: auto;
}

.imgtxt {
  line-height: 1.5em;
  font-size: 1.3rem;
  margin-top: 0.5rem;
  color: #6f759d;
}

.line_fit {
  border: 1px solid #bfc4cf;
}

.spt2.imgtxt {
  margin-top: 2.5rem;
}

.imgtxt.tss {
  font-size: 1.1rem;
}

.fllpm {
  float: left;
  margin-right: 15px;
} /*スマホも*/
.fll {
  float: left;
  margin-right: 15px;
  text-align: center;
}

.flr {
  float: right;
  margin-left: 15px;
}

.clear {
  clear: both;
  display: block;
}

.test {
  background-color: #fffb13;
  color: #ff0048;
  text-align: left;
}

.test:before {
  color: #ff0048;
  content: "※";
  margin-right: 0.2em;
  margin-left: 0.2em;
}

.bg_lgray {
  background-color: #F1F3F7;
}

.w_30 {
  width: 29%;
  margin-left: auto;
  margin-right: auto;
}

.w_50 {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.w_70 {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.w_80 {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.w_90 {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 600px) {
  .w_50 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .w_70 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .w_80 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .w_90 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.w_70 ul {
  margin-left: 2rem;
}

img.photo {
  max-width: 600;
}

img.photo_hf {
  max-width: 390;
}

img.photo_s {
  max-width: 200;
}

/**/
@media only screen and (max-width: 500px) {
  .btn_entry img {
    width: 80%;
  }
}

@media only screen and (max-width: 500px) {
  .linkicon img {
    width: 50%;
  }
}

/**/
.img-box {
  width: 100%;
  max-width: 1800px;
  aspect-ratio: 1800/936; /* ← 52vw ≒ 高さ780pxの場合の比率 */
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}
.img-box span {
  display: none;
}

.img-box > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* ←親のaspect-ratioに従う */
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-animation-name: fade;
          animation-name: fade;
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

/* スライドごとの画像と表示タイミング */
.slide1 {
  background-image: url(../img/mainimage_pc_01.webp);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.slide2 {
  background-image: url(../img/mainimage_pc_02.webp);
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}

.slide3 {
  background-image: url(../img/mainimage_pc_03.webp);
  -webkit-animation-delay: 12s;
          animation-delay: 12s;
}

.slide4 {
  background-image: url(../img/mainimage_pc_04.webp);
  -webkit-animation-delay: 18s;
          animation-delay: 18s;
}

.slide5 {
  background-image: url(../img/mainimage_pc_05.webp);
  -webkit-animation-delay: 24s;
          animation-delay: 24s;
}

@media screen and (max-width: 768px) {
  .img-box {
    height: 128vw;
  }
  .img-box > div {
    height: 128vw;
  }
  .slide1 {
    background-image: url(../img/mainimage_sp_01.webp);
  }
  .slide2 {
    background-image: url(../img/mainimage_sp_02.webp);
  }
  .slide3 {
    background-image: url(../img/mainimage_sp_03.webp);
  }
  .slide4 {
    background-image: url(../img/mainimage_sp_04.webp);
  }
  .slide5 {
    background-image: url(../img/mainimage_sp_05.webp);
  }
}
/* フェードアニメーション */
@-webkit-keyframes fade {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  5% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  30% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  } /* ゆるく拡大 */
  40% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  } /* フェードアウト＋拡大完了 */
  100% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes fade {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  5% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  30% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  } /* ゆるく拡大 */
  40% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  } /* フェードアウト＋拡大完了 */
  100% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.thumbnail-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.thumbnail-nav .thumb {
  width: 200px;
  height: 93px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  -webkit-transition: opacity 0.3s, border 0.3s;
  transition: opacity 0.3s, border 0.3s;
}

.thumbnail-nav .thumb:hover,
.thumbnail-nav .thumb.active {
  opacity: 1;
  border-color: #333;
}

.c-btn,
.c-bnr,
.c-txt {
  cursor: pointer;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
.c-btn a,
.c-bnr a,
.c-txt a {
  color: #fff;
  font-size: 2.5rem;
}

.c-btn {
  background: #00b300;
  border: 2px solid #00b300;
  border-radius: 60px;
  color: #fff;
  display: block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  max-width: 300px;
  padding: 18px 44px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .c-btn {
    font-size: 2.3rem;
  }
}

.c-btn.entry {
  background: #a3a2a2; /*#e11801*/
  border: 2px solid #a3a2a2;
}

.c-bnr {
  background: url(../img/btn-bnr.jpg) no-repeat center center/cover;
  display: inline-block;
  width: 240px;
  height: 240px;
}

.c-txt {
  color: #00b300;
  display: inline-block;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.06em;
}

.c-btn.press {
  -webkit-box-shadow: 0 4px 0 #334532;
          box-shadow: 0 4px 0 #334532;
}

.c-btn.press.entry {
  -webkit-box-shadow: 0 4px 0 #14100f;
          box-shadow: 0 4px 0 #14100f;
}

.c-btn.press:hover {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.photoBox {
  -webkit-box-shadow: 4px 4px 4px -3px rgba(100, 100, 120, 0.5);
          box-shadow: 4px 4px 4px -3px rgba(100, 100, 120, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  margin-bottom: 40px;
}
.photoBox .text {
  width: 49%;
  padding-top: 1rem;
}
.photoBox .pict {
  width: 49%;
  margin-left: 3%;
}
.photoBox .pict img {
  width: 100%;
  height: auto;
}

.photoBox:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.photoBox:nth-child(even) .pict {
  margin-left: 0;
  margin-right: 3%;
}

@media (max-width: 768px) {
  .photoBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-shadow: 0;
            box-shadow: 0;
  }
  .photoBox .text {
    width: 100%;
  }
  .photoBox .pict {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
  .photoBox .pict img {
    width: 100%;
    height: auto;
  }
  .photoBox:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .photoBox:nth-child(even) .pict {
    margin-left: 0;
    margin-right: 0%;
  }
}
.line-top {
  border-top: 1px solid #bfc4cf;
}

.line-lef {
  border-left: 1px solid #bfc4cf;
}

.col5, .col4, .col3, .col2, .col_2, .col64, .col622, .col73 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
}
.col5 .tit, .col4 .tit, .col3 .tit, .col2 .tit, .col_2 .tit, .col64 .tit, .col622 .tit, .col73 .tit {
  font-size: 120%;
  font-weight: 700;
  padding: 0.5rem;
}
.col5, .col4, .col3, .col2, .col_2, .col64, .col622, .col73 {
  /*.tit{background-color:#5c3e47;color:#fff;font-size:120%;font-weight:700;padding:0.5rem;}*/
}
.col5 .ora, .col4 .ora, .col3 .ora, .col2 .ora, .col_2 .ora, .col64 .ora, .col622 .ora, .col73 .ora {
  background-color: #FFA500;
  color: #251e20;
}
.col5 .gra, .col4 .gra, .col3 .gra, .col2 .gra, .col_2 .gra, .col64 .gra, .col622 .gra, .col73 .gra {
  background-color: #bfc4cf;
  color: #251e20;
}
.col5 .tx, .col4 .tx, .col3 .tx, .col2 .tx, .col_2 .tx, .col64 .tx, .col622 .tx, .col73 .tx {
  font-weight: 700;
  color: #5673ad;
}
.col5 .line, .col4 .line, .col3 .line, .col2 .line, .col_2 .line, .col64 .line, .col622 .line, .col73 .line {
  border: 1px solid #bfc4cf;
}
.col5 dl, .col4 dl, .col3 dl, .col2 dl, .col_2 dl, .col64 dl, .col622 dl, .col73 dl {
  margin-bottom: 0;
  border-left: none;
  border-right: none;
}
.col5 dt, .col4 dt, .col3 dt, .col2 dt, .col_2 dt, .col64 dt, .col622 dt, .col73 dt {
  font-weight: 700;
  color: #5c3e47;
}
.col5 img, .col4 img, .col3 img, .col2 img, .col_2 img, .col64 img, .col622 img, .col73 img {
  margin-right: auto;
  margin-left: auto;
}
.col5 a, .col4 a, .col3 a, .col2 a, .col_2 a, .col64 a, .col622 a, .col73 a { /*display:block; padding:2rem;*/ }
.col5 .text a, .col4 .text a, .col3 .text a, .col2 .text a, .col_2 .text a, .col64 .text a, .col622 .text a, .col73 .text a {
  display: inline;
  padding: 0;
}

.colimg3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
}
.colimg3 .flex-item {
  width: 31%;
  height: auto;
  margin: 0.5rem 0;
}
.colimg3 .flex-item img {
  width: 97px;
  margin: 0 auto 0.5em auto;
}
.colimg3 .flex-item p {
  font-size: 1.1rem;
}

.colimg5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
}
.colimg5 .flex-item {
  width: 13%;
  height: auto;
  margin: 0.5rem 0;
}

.colimg7 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
}
.colimg7 .flex-item {
  width: 13%;
  height: auto;
  margin: 0.5rem 0;
}
.colimg7 .flex-item p {
  font-size: 1.1rem;
}

.col5 .t-lef img, .col4 .t-lef img, .col3 .t-lef img, .col2 .t-lef img, .col_2 .t-lef img, .col64 .t-lef img, .col622 .t-lef img, .col73 .t-lef img {
  margin-left: 0;
}
.col5 .t-rig img, .col4 .t-rig img, .col3 .t-rig img, .col2 .t-rig img, .col_2 .t-rig img, .col64 .t-rig img, .col622 .t-rig img, .col73 .t-rig img {
  margin-right: 0;
}

.col5 .flex-item {
  width: 18%;
  height: auto;
  margin: 0.5rem 0 1rem 0;
}
.col5 .flex-item img {
  margin: 0 auto;
}

.col4 .flex-item {
  width: 23%;
  height: auto;
  margin: 0.5rem 0;
}
.col4 .flex-item img {
  margin: 0 auto;
}

.col3 .flex-item {
  width: 32%;
  height: auto;
  margin: 0.5rem 0;
}

.col2 .flex-item {
  width: 49%;
  height: auto;
  margin: 0.5rem 0;
}
.col2 .flex-item.spp {
  width: 45%;
}

.col_2 .flex-item {
  width: 48%;
  height: auto;
  margin: 0.5rem 0;
}

.col1 .flex-item {
  width: 100%;
  height: auto;
  margin: 0.5rem 0 1rem 0;
}
.col1 .flex-item img {
  margin: 0 auto;
}

.col64 .w_s {
  width: 40%;
  height: auto;
  margin: 0.5rem 0 1rem 0;
  position: relative;
}
.col64 .w_s .ibottom {
  position: absolute;
  bottom: 0;
}
.col64 .w_l {
  width: 58%;
  height: auto;
  margin: 0.5rem 0 1rem 0;
}
.col64 p.text:last-child {
  margin-bottom: 0;
}

.col622 .w_s {
  width: 20%;
  height: auto;
  margin: 0.5rem 0 1rem 0;
  position: relative;
}
.col622 .w_s .ibottom {
  position: absolute;
  bottom: 0;
}
.col622 .w_l {
  width: 58%;
  height: auto;
  margin: 0.5rem 0 1rem 0;
}
.col622 p.text:last-child {
  margin-bottom: 0;
}

.col73 .w_s {
  width: 23.5%;
  height: auto;
  margin: 0rem 0 1rem 0;
  position: relative;
}
.col73 .w_s .ibottom {
  position: absolute;
  bottom: 0;
}
.col73 .w_l {
  width: 75%;
  height: auto;
  margin: 0.5rem 0 1rem 0;
}
.col73 .w_l.spd0 {
  margin-bottom: 0;
  padding-bottom: 0;
}
.col73 .w_l.spl_pc {
  width: 65%;
}
.col73 p.text:last-child {
  margin-bottom: 0;
}

.col2_box {
  display: block;
  clear: both;
}
.col2_box .box {
  width: 49%;
  height: auto;
  margin: 0.5rem 0;
  float: left;
}

a.linkbtn:hover {
  -webkit-animation: pulse 2s infinite;
  animation: shad26 1.5s infinite;
  color: #fff;
}

@-webkit-keyframes shad26 {
  0% {
    -webkit-box-shadow: 0 0 0 0 #222;
            box-shadow: 0 0 0 0 #222;
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(39, 172, 217, 0);
            box-shadow: 0 0 0 10px rgba(39, 172, 217, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(39, 172, 217, 0);
            box-shadow: 0 0 0 0 rgba(39, 172, 217, 0);
  }
}

@keyframes shad26 {
  0% {
    -webkit-box-shadow: 0 0 0 0 #222;
            box-shadow: 0 0 0 0 #222;
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(39, 172, 217, 0);
            box-shadow: 0 0 0 10px rgba(39, 172, 217, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(39, 172, 217, 0);
            box-shadow: 0 0 0 0 rgba(39, 172, 217, 0);
  }
}
a.btn-flat .icon_ar2::before {
  position: absolute;
  top: 0;
  left: 6px;
  color: #111;
  font-style: normal;
  font-size: 3rem;
}

.col4 a.btn-flat:before {
  top: 0;
  left: 30px;
  width: 180%;
  height: 150%;
}

.indexToplink {
  position: relative;
}
.indexToplink a {
  padding: 0;
}
.indexToplink a:hover {
  opacity: 0.6;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.indexToplink .txt {
  font-size: 1.8rem;
  position: absolute;
  top: 40%;
  left: 0;
  padding: 10px;
  background-color: #000;
  color: #fff;
  opacity: 0.75;
}
.indexToplink .t-s {
  font-size: 1rem;
}

@media only screen and (max-width: 768px) {
  .col_3 > div {
    width: 44%;
    padding: 8px;
  }
  .col5 .flex-item {
    width: 33%;
  }
  .col4 .flex-item {
    width: 49%;
  }
  .col3 .flex-item {
    width: 49%;
  }
  .col2 {
    display: block;
    text-align: center;
  }
  .col2 .flex-item {
    width: 95%;
    margin: 1em auto 0 auto;
    padding: 0.5rem;
  }
  .col2 .flex-item.spp {
    width: 95%;
  }
  .col64 .w_s {
    width: 99%;
    text-align: center;
  }
  .col64 .w_s img {
    width: 63%;
  }
  .col64 .w_l {
    width: 99%;
  }
  .col622 .w_s {
    width: 32%;
    text-align: center;
  }
  .col622 .w_s img {
    width: 100%;
  }
  .col622 .w_l {
    width: 32%;
  }
  .col73 .w_s {
    width: 100%;
    text-align: center;
  }
  .col73 .w_s img {
    width: 50%;
  }
  .col73 .w_l {
    padding: 2rem;
    width: 100%;
  }
  .col73 .w_l.spl_pc {
    width: 99%;
  }
}
/* 個人情報取扱い
========================================================================== */
.policy {
  height: 200px;
  margin-bottom: 10px;
  padding: 15px;
  border: 1px solid;
  overflow: auto;
}

.policy p {
  line-height: 1.8;
  font-size: 0.8em;
}
.policy li {
  line-height: 1.8;
  font-size: 0.8em;
  margin-bottom: 1em;
}

.policy-check {
  width: 100%;
  max-width: 200px;
  padding: 10px;
  border: 1px solid;
  display: block;
  text-align: center;
  margin: 0 auto;
  color: #000;
}

.policy-check.-disabled {
  border: 1px solid #ccc;
  color: #ccc;
}

/* ヘッダ 全サイズ共通
========================================================================== */
.container {
  margin: 2rem auto;
}

footer {
  font-size: 1.2rem;
  padding: 20px 10px;
  background-color: #111;
  color: #efefef;
  font-family: "ヒラギノ角ゴ ProN W3", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
}
footer a {
  color: #fff !important;
  text-decoration: none;
}
footer a:hover {
  color: #CA1548 !important;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
footer ul {
  margin: 0;
  list-style: none;
}
footer .tit {
  font-weight: 700;
  margin-bottom: 1em;
  border-bottom: 5px solid #666;
  margin-left: 2.8em;
}
footer .com-name {
  font-weight: 700;
  font-size: 1.4rem;
}
footer .add-name {
  margin-top: 0.8em;
  font-weight: 700;
}
footer .box {
  margin: 0 auto;
}
footer #copyright {
  display: block;
  margin-top: 10px;
  color: #aaa;
}
footer .sppt1 {
  padding-top: 2.6em;
}

ul.footer-icon {
  display: table;
  list-style: none;
  margin: 10px auto;
  padding: 0;
}
ul.footer-icon li {
  padding: 0 25px;
  display: table-cell;
  vertical-align: middle;
}
ul.footer-icon li.icon-youtube img,
ul.footer-icon li.icon-insta img,
ul.footer-icon li.icon-fb img,
ul.footer-icon li.icon-tw img {
  width: 100%;
  max-width: 60px;
}

/*mainイメージ*/
.mainimage {
  text-align: center;
  position: relative;
}
.mainimage img {
  margin: 0 auto;
  width: 100%;
  height: auto;
}

img.maxsize {
  width: 100%;
}

.mainimage-text {
  width: 100%;
  position: relative;
}
.mainimage-text img {
  width: 370px;
}
.mainimage-text div {
  color: #000;
  text-align: left;
  font-size: 1.5rem;
  font-weight: 700;
  width: 60%; /* 画像の幅に合わせるため */
  height: 100%;
  position: absolute; /* relativeの要素を基準にする */
  right: 0;
  top: 0;
}

/*タイトル装飾*/
.tit1, .tit2, .tit3 {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
}

.tit1 {
  font-size: 4.2rem;
  font-weight: 100;
  color: #444;
  line-height: 4.8rem;
}

.tit2 {
  font-size: 3.1rem;
  font-weight: 100;
  color: #444;
  background-color: #FFE7E3;
  padding: 0.3em;
  margin-top: 2em;
  margin-bottom: 1em;
}

.tit2.spt0 {
  margin-top: 0;
}

.tit3 {
  font-size: 2.7rem;
  font-weight: 100;
  color: #444;
  background-color: #eee;
  padding: 0.3em;
  margin-top: 2em;
  margin-bottom: 1em;
}

.tit4 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  border-bottom: 1px dotted #9fb5cb;
}

@media only screen and (max-width: 768px) { /*スマホの場合はフォントサイズ小さく*/
  body {
    font-size: 1.4rem;
  }
  .tit1 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
  .tit2 {
    font-size: 1.9rem;
    margin: 1rem;
    margin-bottom: 0.4em;
  }
  .tit2 span {
    font-size: 1.8rem;
  }
  .tit3 {
    font-size: 1.8rem;
    margin: 1rem;
    margin-bottom: 0.4em;
  }
  .tit4 {
    font-size: 110%;
    margin: 1rem;
  }
  .w_80 .tit3 {
    margin: 1rem 0;
    margin-bottom: 0.4em;
  }
}
/*審査員*/
.j_name {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: left;
  font-weight: 100;
}

@media only screen and (max-width: 768px) {
  .j_name {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
  }
}
.messege {
  background: url(../img/bg_messege.webp) no-repeat center center/contain;
  padding-top: 12%;
  height: 700px;
  font-size: 1.6rem;
}
.messege .text {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1000px) {
  .messege {
    padding-top: 16%;
  }
  .messege .text {
    width: 86%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 820px) {
  .messege {
    padding-top: 23%;
    background: url(../img/bg_messege_l.webp) no-repeat center center/contain;
    height: 800px;
  }
}
@media only screen and (max-width: 768px) {
  .messege {
    padding-top: 13%;
    font-size: 1.2rem;
    height: 500px;
  }
  .messege .text {
    width: 82%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 660px) {
  .messege {
    background: url(../img/bg_messege_sp.webp) no-repeat center center/contain;
    height: 620px;
  }
  .messege .text {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 540px) {
  .messege {
    padding-top: 20%;
    height: 660px;
  }
  .messege .text {
    width: 78%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 430px) {
  .messege {
    padding-top: 22%;
    background: url(../img/bg_messege_sp_430.webp) no-repeat center center/contain;
  }
  .messege .text {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 375px) {
  .messege {
    padding-top: 18%;
    background: url(../img/bg_messege_sp_se.webp) no-repeat center center/contain;
  }
}
@media only screen and (max-width: 344px) {
  .messege {
    padding-top: 20%;
    height: 740px;
    background: url(../img/bg_messege_sp_gz.webp) no-repeat center center/contain;
  }
}

/* -- div#contents-maker-news ----------------------------------------------------------------------- */
div#contents-maker-news * {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

div#contents-maker-news div.cm-box {
  padding: 10px 0;
}

div#contents-maker-news dl {
  margin: 0 auto;
}

div#contents-maker-news dl dt {
  text-align: left;
  width: 100%;
  color: #777;
}

div#contents-maker-news dl dd {
  width: 100%;
}

div#contents-maker-news dl dt,
div#contents-maker-news dl dd {
  margin: 0 0 3px;
  border-bottom: none;
  background-color: #fff;
}

@media only screen and (max-width: 420px) {
  div#contents-maker-news dl {
    width: 94%;
  }
}
.button_a a {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #fff;
  background: #333;
  font-weight: 400;
  border: solid 1px #333;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 300px;
  text-align: center;
  padding: 16px 64px;
  margin: 24px;
  margin-inline: auto;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 768px) {
  .button_a a {
    font-size: 13px;
    padding: 14px 40px;
  }
}

.button_a a:hover {
  color: #333;
  background: initial;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*ページトップへ戻るボタン*/
#page_top {
  position: fixed;
  width: 100px;
  height: 80px;
  right: 10px;
  bottom: 10px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
#page_top a {
  opacity: 0.4;
  background: #CA1548;
  position: relative;
  display: block;
  width: 100px;
  height: 80px;
  text-decoration: none;
  color: #fff;
  border: solid 1px #111;
  -webkit-box-shadow: 1px 1px 2px 1px #999;
          box-shadow: 1px 1px 2px 1px #999;
}
#page_top a:hover {
  opacity: 0.8;
}
#page_top a::before {
  position: absolute;
  top: -40px;
  bottom: 0;
  right: 0;
  left: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f102";
  font-weight: 900;
  font-size: 2.5rem;
  text-align: center;
  width: 25px;
  height: 25px;
  margin: auto;
}
#page_top a::after {
  position: absolute;
  top: 45px;
  bottom: 0;
  right: 0;
  left: 0;
  content: "PAGE TOP";
  font-size: 13px;
  text-align: center;
  margin: auto;
}

/**/
.awardArea {
  width: 100%;
  margin: 2rem auto 0 auto;
  text-align: center;
  min-height: 30vh;
  color: #555;
}
.awardArea ul {
  text-align: center;
}
.awardArea img {
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  .awardArea ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .awardArea ul li:nth-child(2) {
    margin: 0 1rem;
  }
}

.pageLink {
  width: 100%;
  text-align: center;
  background-color: #EEEEEE;
  padding: 1em 0;
}
.pageLink ul {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
}
.pageLink li {
  border-bottom: solid 1px #bbb;
  padding: 0.3em;
  font-size: 1.5rem;
  line-height: 1.8rem;
}
@media only screen and (min-width: 768px) {
  .pageLink li {
    font-size: 1.1rem;
  }
}
@media only screen and (min-width: 850px) {
  .pageLink li {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 1100px) {
  .pageLink li {
    font-size: 1.5rem;
  }
}
.pageLink li:last-child {
  border-bottom: none;
}
@media only screen and (min-width: 768px) {
  .pageLink ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .pageLink li {
    border-right: solid 1px #bbb;
    border-bottom: none;
    padding: 0.3em 1em;
  }
  .pageLink li:last-child {
    border-right: none;
  }
}

/* その他　矢印など
========================================================================== */
.icon_ar1::before {
  content: "\f061";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  color: #ED7318;
  padding-right: 10px;
  font-style: normal;
}

.icon_ar2::before {
  content: "\f0a9";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  color: #ED7318;
  padding-right: 10px;
  font-style: normal;
} /*丸矢印*/
.icon_ar2_b::before {
  content: "\f0a9";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  color: #31a9b1;
  padding-right: 10px;
  font-style: normal;
} /*丸矢印*/
.icon_ar3::before {
  content: "\f138";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  color: #ED7318;
  padding-right: 10px;
  font-style: normal;
}

.icon_ext::before {
  content: "\f35d";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  color: #111;
  padding-right: 10px;
  font-style: normal;
}

.caution {
  color: #ed4918;
  font-weight: 700;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* リスト
========================================================================== */
ul.list_nomal ul,
ul.list_arrow ul {
  margin-top: 0.8em;
}
ul.list_nomal li li,
ul.list_arrow li li {
  position: relative;
  list-style: none;
  padding-left: 18px;
}
ul.list_nomal li li:before,
ul.list_arrow li li:before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #CA1548;
  border-radius: 50%;
}

ul.list_none {
  text-align: left;
  margin-bottom: 1.5rem;
}
ul.list_none li {
  list-style: none;
  line-height: 2rem;
  text-indent: -0.6em;
  padding-left: 1.2em;
  margin-bottom: 1rem;
}

ul.list_nomal {
  text-align: left;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}
ul.list_nomal .tit {
  font-weight: bold;
  color: #ED7318;
  font-size: 120%;
}
ul.list_nomal .t-l {
  font-size: 150%;
}
ul.list_nomal li {
  position: relative;
  list-style: none;
  line-height: 2.2rem;
  padding-left: 1.3rem;
  margin-left: 1rem;
  margin-bottom: 1.5rem;
}
ul.list_nomal > li:before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 7px;
  height: 7px;
  background-color: #CA1548;
  border-radius: 50%;
}

ul.list_arrow {
  text-align: left;
}
ul.list_arrow li {
  position: relative;
  padding-left: 1.3rem;
  margin-left: 1rem;
  margin-bottom: 1rem;
}
ul.list_arrow > li:before {
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 0;
  height: 0;
  content: "";
  border: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #CA1548;
}
ul.list_arrow span {
  color: #555;
}
ul.list_arrow li li {
  margin-top: 0.5rem;
  margin-bottom: 0;
}
ul.list_arrow li li:last-child {
  margin-bottom: 2rem;
}

ul.list_nomal.nar li,
ul.list_arrow.nar li {
  line-height: 1.75rem;
  margin-bottom: 0.6rem;
}

.list_col_04 { /*3列*/
  text-align: left;
  display: -ms-grid;
  display: grid;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-column-gap: 2em;
     -moz-column-gap: 2em;
          column-gap: 2em;
  -ms-grid-columns: auto 2em auto 2em auto 2em auto;
  grid-template-columns: repeat(4, auto);
}
@media screen and (max-width: 1000px) {
  .list_col_04 {
    -ms-grid-columns: (auto)[2];
    grid-template-columns: repeat(2, auto);
  }
}
.list_col_04 li {
  position: relative;
  list-style: none;
  line-height: 2rem;
  padding-left: 1.3rem;
  margin-left: 1rem;
  margin-bottom: 1rem;
}
.list_col_04 > li:before {
  content: "";
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #CA1548;
  border-radius: 50%;
}

ol.ol_nomal,
ol.ol_nomal2 {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
  margin-top: 2em;
}
ol.ol_nomal .tit,
ol.ol_nomal2 .tit {
  font-weight: bold;
  color: #ED7318;
  font-size: 115%;
}
ol.ol_nomal li,
ol.ol_nomal2 li {
  text-indent: -0.8em;
  padding-left: 1.5em;
  margin-bottom: 1.3rem;
  font-size: 1.4rem;
}
ol.ol_nomal li:before,
ol.ol_nomal2 li:before {
  counter-increment: item;
  content: counter(item);
  padding: 0 0.4em 0 0;
  font-weight: bold;
  color: #CA1548;
  font-size: 2.5rem;
  display: inline-block;
  vertical-align: middle;
}
ol.ol_nomal ul li:before,
ol.ol_nomal2 ul li:before {
  padding: 0;
  color: #fff;
  counter-increment: count 0; /*入れ子の数字をカウントしない、白で非表示*/
}

ol.ol_nomal2 li:before {
  width: 30px;
  text-align: right;
}

ol.list_number {
  counter-reset: list;
  list-style-type: none;
  font: 14px/1.6 "arial narrow", sans-serif;
  padding: 0px;
}
ol.list_number b {
  font-size: 1.6rem;
  font-weight: bold;
}
ol.list_number .tit {
  font-size: 1.8rem;
  line-height: 3rem;
  color: #ED7318;
}
ol.list_number li {
  position: relative;
  line-height: 1.9rem;
  margin: 5px 0 45px 40px;
  padding-left: 5px;
}
ol.list_number li:before {
  position: absolute;
  top: 1.5rem;
  left: -40px;
  width: 30px;
  height: 25px;
  counter-increment: list;
  content: counter(list);
  text-align: center;
  font-size: 2rem;
  background: #FFA500;
  color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
ol.list_number > li > ol {
  padding-left: 20px;
  margin-bottom: 10px;
}
ol.list_number > li > ol > li {
  counter-reset: list;
  margin-bottom: 5px;
}
ol.list_number > li > ol > li::before {
  display: none;
}
ol.list_number > li > ul {
  padding-left: 0px;
  margin-bottom: 10px;
}
ol.list_number > li > ul > li {
  margin: 5px 0 5px 5px;
}
ol.list_number > li > ul > li::before {
  display: none;
  line-height: 2rem;
  text-indent: -0.6em;
  padding-left: 1em;
  margin-bottom: 1rem;
}

ul.list-disc li {
  margin-left: 20px;
  list-style-type: disc;
}

ol.num-circle {
  margin: 0;
  padding: 0;
}

ol.num-circle li {
  list-style: none;
  padding-left: 1.3em;
  text-indent: -1.3em;
}

ul.list_check {
  padding: 0.5em 1em 0.5em 2.4em;
  position: relative;
}
ul.list_check li {
  line-height: 1.5;
  padding: 0.5em 0;
  list-style-type: none !important;
}
ul.list_check li:before {
  position: absolute;
  left: 8px;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f14a";
  color: #ffb03f;
}
ul.list_check li.t-l {
  font-size: 150%;
}

.qaBox ol {
  list-style-type: none !important;
  counter-reset: number; /*番号をリセット*/
  padding: 0.5em;
}
.qaBox ol li {
  font-weight: bold;
  text-align: left;
  position: relative;
  line-height: 0.9em;
  font-size: 2.5rem;
  color: #dd3287;
  padding: 1.2rem 0.8rem 0.8rem 11rem;
  margin-bottom: 1.5rem;
}
.qaBox ol li .t-b {
  color: #460d1c;
}
@media only screen and (min-width: 768px) {
  .qaBox ol li { /*PC用*/
    padding: 1.6rem 0.8rem 1.8rem 11rem;
  }
}
.qaBox ol li:before {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 1rem;
  width: 10rem;
  counter-increment: number; /*改行毎に数字を+1追加-変更しない*/
  content: "Q." counter(number); /*文字を変更する場合は”＊”内の文字を変更する*/
  color: rgba(205, 21, 73, 0.4);
  font-weight: bold;
  font-size: 4.5rem;
  text-align: right;
}
.qaBox li::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  top: 5rem;
  width: 10rem;
  height: 1px;
  background-color: #ffc1d4;
}
.qaBox .a {
  color: #5c3e47;
  margin: 1.5em 0;
  padding-left: 0;
  line-height: 1.7em;
  font-size: 1.5rem;
  font-weight: normal;
}
@media only screen and (min-width: 768px) {
  .qaBox { /*PC用*/ }
  .qaBox li::after {
    background-color: #fff;
  }
  .qaBox li {
    border-bottom: 1px dotted #ffc1d4;
  }
  .qaBox li li {
    border-bottom: none;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }
}
.qaBox li li {
  font-size: 1.5rem;
  padding-left: 1rem;
  margin-left: 2rem;
  margin-bottom: 0.5rem;
  color: #5c3e47;
  list-style-type: disc;
  font-weight: normal;
}
.qaBox li li:before {
  display: none;
  width: 0;
}
.qaBox li li::after {
  display: none;
  width: 0;
}

.Linbox {
  display: block;
}

.answerList .point_box {
  border: solid 5px #ffa500;
  padding: 1em;
  text-align: center;
  margin-top: 2rem;
}
.answerList img {
  margin: 2rem auto;
}
.answerList .tit {
  font-weight: 700;
  font-size: 2rem;
}

@media only screen and (max-width: 769px) {
  .qaBox ol li {
    padding-left: 7rem;
    font-size: 2rem;
    line-height: 1.3em;
  }
  .qaBox ol li:before {
    font-size: 3rem;
    width: 4.5rem;
  }
  .qaBox li::after {
    width: 100%;
    top: auto;
  }
  .qaBox ol li li {
    padding-left: 1rem;
    font-size: 1.5rem;
  }
}
ul.list_arrow_round {
  padding: 0.5em;
  list-style-type: none;
}
ul.list_arrow_round li {
  position: relative;
  padding: 0em 0.3em 0em 1.3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
ul.list_arrow_round li::before,
ul.list_arrow_round li::after {
  position: absolute;
  content: "";
}
ul.list_arrow_round li::before {
  top: 0.46em;
  left: 0em;
  width: 18px;
  height: 18px;
  background-color: #ffab9d;
  border-radius: 100%;
}
ul.list_arrow_round li::after {
  top: 0.78em;
  left: 0.25em;
  width: 5px;
  height: 5px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media only screen and (max-width: 768px) {
  ul.list_arrow_round {
    margin: 1rem;
  }
  ul.list_arrow_round li {
    padding: 0 0.3em 0em 1.8em;
  }
  ul.list_arrow_round li::before {
    top: 0.14em;
  }
  ul.list_arrow_round li::after {
    top: 0.61em;
  }
}

/* コンテンツ
-----------------------------------------------------------------------------------------------*/
.fa-caret-right {
  color: #CA1548;
}

/**■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
　max-width: xxxxpx以下
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■**/
/**■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
　max-width: 768px以下
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■**/
@media only screen and (max-width: 768px) {
  img {
    max-width: 100%;
  }
  .br-pc {
    display: none;
  }
  .spt-pc {
    margin-top: 0;
  }
  .sp-sp {
    width: 0.5em;
    display: inline-block;
  } /*モバイルのみスペース*/
  .br-sp {
    display: inline-block;
  }
  .spl_pc {
    margin-left: 0;
  }
  /* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .nav__pc {
    display: none;
  }
  #page_top {
    width: 100%;
    height: 50px;
    right: 0;
    bottom: 0;
    -webkit-box-shadow: 2px 2px 4px 1px #999;
            box-shadow: 2px 2px 4px 1px #999;
  }
  #page_top a {
    width: 100%;
    height: 50px;
    opacity: 0.4;
    background: #000;
  }
  #page_top a::before {
    top: -28px;
  }
  #page_top a::after {
    top: 28px;
  }
}
/*  1000px以上 */
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
@media only screen and (min-width: 1000px) {
  .container {
    width: 1000px; /*min-height:50vh;*/
  }
  footer {
    font-size: 2.1rem;
  }
  footer .copyright {
    padding-right: 110px;
    margin: 10px;
  }
}
@media only screen and (min-width: 1100px) {
  .container {
    width: 1100px;
  }
}
/*  1220px以上 */
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
@media only screen and (min-width: 1220px) {
  .container {
    width: 1200px;
  }
  section {
    padding: 0;
  }
  footer .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    width: 1200px;
  }
  footer .sppt1 {
    padding-top: 2.6em;
  }
}
/**■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
　印刷用
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■**/
@media print {
  .header,
  .breadcrumb,
  #Lin,
  #Ldl,
  #mrc_webform,
  .sidebar,
  #page_top a,
  .youtube,
  .noprint,
  footer {
    display: none;
  }
  .container {
    margin-top: 0;
  }
  li {
    list-style: disc !important;
  }
  .spec_table th {
    background-color: #ddd;
    color: #000;
  }
  .selection ol li {
    line-height: 1.5em;
    font-size: 1.8rem;
    padding: 1.4rem 0.8rem 0.8rem 11rem;
  }
  .answerList img {
    width: 40%;
  }
  #i01,
  #i02,
  #i03,
  #i04,
  #i05,
  #i06,
  #i07,
  #i08,
  #i09,
  #i10,
  #i11 {
    margin-top: 0;
    padding-top: 0;
    page-break-before: always; /*直前で改ページさせる */
  }
  img {
    width: 75%;
  }
  .mainimage img {
    width: 50%;
  }
  img.noresize {
    width: auto;
  }
  .itembox {
    page-break-inside: avoid;
  }
}