@charset "UTF-8";

/*
基本のスタイル
*/
:root {
  --blue-color: #002e85;
}

a {
  color: var(--blue-color);
  word-break: break-all
}

main #contentArea {
  margin-bottom: 0;
  padding-top: min(20%, 250px);
  background-color: #41c9ff;
  background-size: 400px;
  background-position: center;
  background-image: url(../report-sup/images/bg-img.svg);
  overflow: hidden;
}

#contentArea::after {
  content: none;
}

#contentArea section {
  margin: 5em 0;
}

#contentArea section:has(.h2-ttl.blue, .h2-ttl.green, .h2-ttl.pink) {
  margin: 0 0 1em;
}

main p {
  margin: 0 0 2em;
  font-size: clamp(14px, 1.6vw, 20px);
  line-height: 1.5;
  position: relative;
  font-weight: bold;
  color: #fff;
  font-feature-settings: "palt";
  font-family: 'YakuHanJP', 'NotoSansJP';
}

main p:last-child {
  margin-bottom: 0;
}

.font-size-s {
  font-size: clamp(14px, 3vw, 18px);
  line-height: 1.5;
  display: inline-block;
}

.report-col {
  align-items: center;
}

.report-col.align-items-start {
  align-items: self-start;
}

.report-col:not(:last-child)>:is(div, li) {
  margin-bottom: 3em;
}

.report-col>:is(div, li).m-bottom0 {
  margin-bottom: 0;
}

.report-col.reverse {
  flex-direction: row-reverse;
}

:is(.h3-img-ttl, .h2-img-ttl) img {
  margin: auto;
  width: 100%;
  height: auto;
  display: block;
}

h3 {
  margin-bottom: .5em;
  font-size: clamp(18px, 3vw, 24px);
  font-feature-settings: "palt";
  font-family: 'YakuHanJP', 'NotoSansJP';
  color: var(--blue-color);
}

.h3-img-ttl {
  margin-bottom: .5em;
}

.text-orenge {
  color: var(--orenge-color);
}

sup {
  vertical-align: super;
  font-size: 13px;
}

.box {
  padding: 5%;
  border-radius: 30px;
  box-shadow: inherit;
}

.box.blue {
  background-color: var(--blue-color);
}

.box.yellow {
  padding: 2em;
  background-color: #fffdc4;
}

.box.wh {
  background-color: #fff;
}

.imgw300,
.imgw400,
.imgw500,
.imgw560,
.imgw700,
.imgw900 {
  margin: 0 auto;
  height: auto;
  display: block;
}

.imgw300 {
  width: min(100%, 300px);
}

.imgw400 {
  width: min(100%, 400px);
}

.imgw500 {
  width: min(100%, 500px);
}

.imgw560 {
  width: min(100%, 560px);
}

.imgw700 {
  width: min(100%, 700px);
}

.imgw900 {
  width: min(100%, 900px);
}

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

.m-top3em {
  margin-top: 3em;
}

.m-bottom1em {
  margin-bottom: 1em;
}

.m-bottom2em {
  margin-bottom: 2em;
}

.m-bottom3em {
  margin-bottom: 3em;
}

.text-lead {
  font-feature-settings: "palt";
  font-family: YakuHanJP, 'NotoSansJP';
  letter-spacing: 0.05em;
  font-size: clamp(14px, 3vw, 20px);
  letter-spacing: -0.04em;
}

table {
  margin: 0 0 1em;
  font-size: clamp(16px, 1.6vw, 18px);
  font-feature-settings: "palt";
  font-family: YakuHanJP, 'NotoSansJP';
  font-weight: normal;
}

th,
td {
  background-color: inherit;
  border: none;
  text-align: left;
  align-items: start;
  color: #333333;
}

th {
  width: 5.5em;
  padding: 0;
  vertical-align: top;
  font-weight: bold;
}

td {
  padding-top: 0;
  padding-bottom: 0;
}

.col-2>div.w40 {
  width: 43%;
}

.col-2>div.w60 {
  width: 53%;
}

/*
個別スタイル
*/

.mainImgArea {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
}

.mainImgArea h1 {
  margin: 1em auto 1.5em;
  width: 100%;
  max-width: 1100px;
  height: auto;
}

.mainImgArea h1 img {
  width: 100%;
  height: auto;
}

.report-btm {
  margin: 1em auto;
  padding: 5px;
  width: min(100%, 220px);
  text-align: center;
  background-color: #0098f2;
  display: inline-block;
  border-radius: 50px;
  transition-duration: .3s;

}

.report-btm a {
  color: #fff !important;
  text-decoration: none;
  display: block;
}

.report-btm:hover {
  opacity: .7;
}

/*
infoArea
*/
#contentArea section.infoArea {
  margin: 5em 0;
}

.infoBox {
  margin: 45px auto 0;
  padding: 2em;
  width: min(100%, 910px);
  border-radius: 30px;
}

.infoBox h4 {
  color: var(--blue-color);
  font-size: clamp(22px, 3vw, 28px);
}

dl.info {
  align-items: flex-start;
  font-weight: 700;
}

dl.info dt {
  margin-bottom: 20px;
  padding: 0 5px;
  width: 85px;
  background: var(--blue-color);
  color: #fff;
  text-align: center;
  font-size: clamp(14px, 3vw, 18px);
  letter-spacing: 0;
}

dl.info dd {
  margin-bottom: 20px;
  padding: 0 5px;
  width: calc(100% - 100px);
  font-size: clamp(14px, 3vw, 18px);
  color: #20486E;
  font-weight: normal;
}

dl.info.w100 :is(dt, dd) {
  padding: 0 15px;
  width: 100%;
  text-align: justify;
}

dl.info.w100 dt {
  margin-bottom: .5em;
}

dl.info.w100 dd {
  padding: 0;
}

dl.info :is(p, a) {
  color: #20486E;
}

.infoTable {
  display: block;
  width: min(100%, 430px);
  height: auto;
}

/*==========================================
 tb［540px-1024px以下］
===========================================*/
@media screen and (max-width: 1200px) {

  .max1200-w100.col-2>div {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .mainImgArea {
    margin-top: 0;
  }

  .col-2>div:is(.w40, .w60) {
    width: 100%;
  }

  .report-col.sp-reverse {
    flex-direction: column-reverse;
  }

  .m-bottom2em-tb {
    margin-bottom: 2em !important;
  }


}

/*==========================================
 sp［580px以下］
===========================================*/
@media screen and (max-width: 580px) {
  .sp-none {
    display: none;
  }

  #contentArea section {
    margin: 3em 0;
  }

  #contentArea p.lead {
    text-align: justify;

  }

  .report-col.reverse {
    flex-direction: row;
  }

  .report-col.reverse.sp-reverse {
    flex-direction: column-reverse;
  }


  #contentArea p.lead br.tb-on {
    display: none !important;
  }

  .imgw300,
  .imgw400,
  .imgw700 {
    margin: 0 auto 1em;
  }

  .box {
    border-radius: 20px;
    padding: 7%;
  }


  .h2-ttl.blue .sp-on {
    display: inline;
  }

  th,
  td {
    display: block;
  }

  td {
    padding: 0 0 1em;
  }

  /*メインスタイル*/

  .mainImgArea {
    margin-top: 20px;
  }

  main .text-lead {
    text-align: justify;
  }

  /*個別*/

  .kippuList li::before {
    width: 15px;
    height: 15px;
  }

  /*
  infoArea
  */
  .infoBox {
    padding: 1em;
  }

  .infoBox dl {
    margin-bottom: 0;
    flex-direction: column;
  }

  .infoBox dl dt {
    padding: 5px;
    width: 100%;
  }

  .infoBox dl dd {
    margin: 0 0 20px;
    width: 100%;
  }

}