@charset "UTF-8";
/*********************************************
*
* 共通パーツ、初期設定
*
*********************************************/
/************************
**ブレイクポイント
************************/
/*min-widthベース、基本*/
/*max-widthベース、特定のクラスを途中まで、の場合*/
/*min-width,max-width混合、特定のクラスを途中から途中まで、の場合*/
/************************
**safari用
************************/
/************************
**全体
************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-feature-settings: "palt";
  font-optical-sizing: auto;
  font-size: 3.75vw;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  body {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  body {
    font-size: 18px;
  }
}

/*画像サイズを要素のwidthに合わせる*/
img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
img.himg {
  width: auto;
  height: 100%;
}

/*リストのデザインを削除*/
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
}

/*ボタン化(aタグ、buttonタグを親要素に全体化)*/
.ab-a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ab-b {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/*テキストを一塊にし、途中で改行させない*/
.txtb {
  display: inline-block;
}

/************************
**サイズ別br 使わないものはコメントアウト
************************/
.smartbr {
  display: block;
}
@media screen and (min-width: 576px) {
  .smartbr {
    display: none;
  }
}

/*スマホ(768px未満)*/
.spbr {
  display: block;
}
@media screen and (min-width: 768px) {
  .spbr {
    display: none;
  }
}

.smbr {
  display: none;
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .smbr {
    display: block;
  }
}

.mdbr {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .mdbr {
    display: block;
  }
}

.lgbr {
  display: none;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .lgbr {
    display: block;
  }
}

.xlbr {
  display: none;
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .xlbr {
    display: block;
  }
}

.xxlbr {
  display: none;
}
@media screen and (min-width: 1400px) {
  .xxlbr {
    display: block;
  }
}

.sm-flbr {
  display: none;
}
@media screen and (min-width: 576px) {
  .sm-flbr {
    display: block;
  }
}

.md-flbr,
.pcbr {
  display: none;
}
@media screen and (min-width: 768px) {
  .md-flbr,
  .pcbr {
    display: block;
  }
}

.lg-flbr {
  display: none;
}
@media screen and (min-width: 992px) {
  .lg-flbr {
    display: block;
  }
}

.xl-flbr {
  display: none;
}
@media screen and (min-width: 1200px) {
  .xl-flbr {
    display: block;
  }
}

.xxl-flbr {
  display: none;
}
@media screen and (min-width: 1400px) {
  .xxl-flbr {
    display: block;
  }
}

/************************
**container 使わないものはコメントアウト
************************/
.c-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
@media screen and (min-width: 768px) {
  .c-container {
    width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .c-container {
    width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .c-container {
    width: 1140px;
  }
}

/************************
**image pc/sp切り替え
************************/
.image-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .image-sp {
    display: none;
  }
}

.image-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .image-pc {
    display: block;
  }
}

/*********************************************
*
*Header
*
*********************************************/
header .header-top-text {
  margin-block: 0.5em 1rem;
  font-weight: 400;
}
header .clmnhdr-wrapper {
  width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  header .clmnhdr-wrapper {
    width: 100%;
  }
}
header .clmnhdr-wrapper .clmnhdr-deco {
  width: 100%;
  height: 10px;
  background-color: #0086d1;
}
@media screen and (min-width: 768px) {
  header .clmnhdr-wrapper .clmnhdr-deco {
    height: 30px;
  }
}
header .clmnhdr-wrapper .clmnhdr-logo {
  width: 70%;
  margin-inline: auto;
  margin-block: 3.125vw;
}
@media screen and (min-width: 768px) {
  header .clmnhdr-wrapper .clmnhdr-logo {
    width: 50%;
    max-width: 360px;
    margin-block: 30px 50px;
  }
}
@media screen and (min-width: 1200px) {
  header .clmnhdr-wrapper .clmnhdr-logo {
    margin-block: 50px 70px;
  }
}

/*********************************************
*
*footer
*
*********************************************/
footer p {
  display: block !important;
  margin-block: 0 1em !important;
  font-weight: 400;
}

/*********************************************
*
*共通
*
*********************************************/
.wrapper {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
}

/*********************************************
*
*#column-list
*
*********************************************/
#column-list .list-wrapper .list-box {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
  width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  #column-list .list-wrapper .list-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  #column-list .list-wrapper .list-box {
    gap: 35px 50px;
  }
}
#column-list .list-wrapper .list-box .list-item {
  position: relative;
}
#column-list .list-wrapper .list-deco {
  margin-top: min(6.25vw, 50px);
}

/*********************************************
*
*.column-article
*
*********************************************/
.column-article p {
  line-height: 1.5;
  margin: 0;
  padding: 0;
}
.column-article p::before, .column-article p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.column-article p::before {
  margin-top: calc((1 - 1.5) * 0.5em);
}
.column-article p::after {
  margin-bottom: calc((1 - 1.5) * 0.5em);
}
.column-article p {
  display: inline-block;
}
.column-article .article-wrapper {
  width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .column-article .article-wrapper {
    width: 100%;
  }
}
.column-article .article-wrapper .article-title {
  color: #0086d1;
  text-align: center;
  border-bottom: 1px solid #0086d1;
  font-size: 1.5em;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .column-article .article-wrapper .article-title {
    font-size: 1.8em;
    padding: 10px;
    margin-bottom: 20px;
  }
}
.column-article .article-wrapper .article-title.title-left {
  text-align: start;
}
.column-article .article-wrapper .article-image01 {
  margin-bottom: 1em;
}
.column-article .article-wrapper .article-text01 {
  margin-bottom: 1em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .column-article .article-wrapper .article-text01 {
    font-size: 1.2em;
  }
}
.column-article .article-wrapper .article-lead01 {
  font-size: 1.35em;
  color: #0086d1;
  margin-block: 1em 10px;
  padding-left: 0.75em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .column-article .article-wrapper .article-lead01 {
    font-size: 1.5em;
    margin-block: 1em 20px;
  }
}
.column-article .article-wrapper .article-lead01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.6525vw;
  height: 100%;
  background-color: #0086d1;
}
@media screen and (min-width: 768px) {
  .column-article .article-wrapper .article-lead01::before {
    width: 5px;
  }
}
.column-article .article-wrapper .article-lead01 a {
  margin-left: 1em;
  font-size: 0.8em;
}
.column-article .article-wrapper .article-text02 {
  margin-bottom: 0.75em;
  font-weight: 500;
  padding-left: 0.75em;
}
@media screen and (min-width: 768px) {
  .column-article .article-wrapper .article-text02 {
    font-size: 1.2em;
  }
}
.column-article .article-wrapper .article-text04 {
  margin-bottom: 0.75em;
}
@media screen and (min-width: 768px) {
  .column-article .article-wrapper .article-text04 {
    font-size: 1.2em;
  }
}
.column-article .article-wrapper .article-text04 .text-lead {
  margin-bottom: 0.75em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .column-article .article-wrapper .article-text04 .text-lead {
    font-size: 1.2em;
  }
}
.column-article .article-wrapper .article-text05 {
  margin-bottom: 0.5em;
  padding-left: 0.75em;
}
.column-article .article-wrapper .article-text05 .text-lead {
  margin-bottom: 0.5em;
  font-weight: 500;
  color: #da5187;
}
@media screen and (min-width: 768px) {
  .column-article .article-wrapper .article-text05 .text-lead {
    font-size: 1.2em;
  }
}
.column-article .article-wrapper .article-text05 .text-block {
  margin-bottom: 0.25em;
}
@media screen and (min-width: 768px) {
  .column-article .article-wrapper .article-text05 .text-block {
    font-size: 1.2em;
  }
}
.column-article .article-wrapper .article-text05 .text-block .block-lead {
  font-weight: 500;
  margin-right: 0.5em;
}
.column-article .article-wrapper .article-text06 {
  margin-bottom: 0.75em;
  padding-left: 0.75em;
}
@media screen and (min-width: 768px) {
  .column-article .article-wrapper .article-text06 {
    font-size: 1.2em;
  }
}
.column-article .article-wrapper .article-list01 {
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .column-article .article-wrapper .article-list01 {
    font-size: 1.2em;
  }
}
.column-article .article-wrapper .article-list01 .list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  margin-bottom: 0.75em;
}
.column-article .article-wrapper .article-list01 .list-item::before {
  content: "";
  width: 0.25em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #0086d1;
  margin-top: 0.35em;
  flex-shrink: 0;
}
.column-article .article-wrapper .article-list01 .list-item span {
  font-weight: 500;
  margin-right: 0.5em;
}
.column-article .article-wrapper .article-list01 .list-item.item-alt01 {
  padding-left: 1.25em;
}
.column-article .article-wrapper .article-list01 .list-item.item-alt01::before {
  content: none;
}
.column-article .article-wrapper .article-list01 .list-item.item-inlist {
  flex-wrap: wrap;
}
.column-article .article-wrapper .article-list01 .list-item.item-inlist .inlist {
  width: 100%;
  padding-left: 1em;
}
.column-article .article-wrapper .article-list01 .list-item.item-inlist .inlist .inlist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  margin-block: 0.5em;
}
.column-article .article-wrapper .article-list01 .list-item.item-inlist .inlist .inlist-item::before {
  content: "";
  width: 0.25em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #0086d1;
  margin-top: 0.35em;
  flex-shrink: 0;
}
.column-article .article-wrapper .article-list02 {
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .column-article .article-wrapper .article-list02 {
    font-size: 1.2em;
  }
}
.column-article .article-wrapper .article-list02 .list-item {
  display: flex;
  align-items: flex-start;
  gap: 0 0.5em;
  margin-bottom: 0.75em;
  counter-increment: item;
}
.column-article .article-wrapper .article-list02 .list-item::before {
  content: counter(item);
  flex-shrink: 0;
  line-height: 1.5;
  color: #0086d1;
  font-weight: 500;
  margin-top: -0.25em;
}
.column-article .article-wrapper .article-list02 .list-item span {
  font-weight: 500;
  margin-right: 0.5em;
}
.column-article .article-wrapper .article-list02 .list-item.item-inlist {
  flex-wrap: wrap;
}
.column-article .article-wrapper .article-list02 .list-item.item-inlist .inlist {
  width: 100%;
  padding-left: 1em;
}
.column-article .article-wrapper .article-list02 .list-item.item-inlist .inlist .inlist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  margin-block: 0.5em;
}
.column-article .article-wrapper .article-list02 .list-item.item-inlist .inlist .inlist-item::before {
  content: "";
  width: 0.25em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #0086d1;
  margin-top: 0.35em;
  flex-shrink: 0;
}
.column-article .article-wrapper .article-list03 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5em;
}
@media screen and (min-width: 768px) {
  .column-article .article-wrapper .article-list03 {
    max-width: 450px;
    font-size: 1.2em;
  }
}
.column-article .article-wrapper .article-list03 .list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  margin-bottom: 0.75em;
}
.column-article .article-wrapper .article-list03 .list-item::before {
  content: "";
  width: 0.25em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #0086d1;
  margin-top: 0.35em;
  flex-shrink: 0;
}
.column-article .article-wrapper .article-list03 .list-item span {
  font-weight: 500;
  margin-right: 0.5em;
}
.column-article .article-wrapper .article-list03 .list-item.item-alt01 {
  padding-left: 1.25em;
}
.column-article .article-wrapper .article-list03 .list-item.item-alt01::before {
  content: none;
}
.column-article .article-wrapper .article-table01 {
  width: 100%;
  overflow-x: scroll;
  margin-bottom: 0.75em;
}
@media screen and (min-width: 768px) {
  .column-article .article-wrapper .article-table01 {
    overflow-x: auto;
    font-size: 1.2em;
  }
}
.column-article .article-wrapper .article-table01 table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .column-article .article-wrapper .article-table01 table {
    width: 100%;
  }
}
.column-article .article-wrapper .article-table01 table thead tr th {
  border-collapse: collapse;
  border: 1px solid #000;
  text-align: center;
  padding: 0.15em 0.25em;
}
.column-article .article-wrapper .article-table01 table tbody tr td {
  border-collapse: collapse;
  border: 1px solid #000;
  padding: 0.25em 0.5em;
}
.column-article .article-wrapper .article-table01 table tbody tr td:nth-child(1) {
  width: 30%;
}
.column-article .article-wrapper .article-line {
  width: 100%;
  height: 20px;
  margin-bottom: 20px;
  background-image: radial-gradient(circle, #0086d1 2.5px, transparent 2.5px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 17px 5px;
}
.column-article .article-wrapper .article-text03 {
  margin-bottom: 1.5em;
  font-weight: 500;
  padding-left: 0.75em;
  font-size: 1.2em;
}
@media screen and (min-width: 768px) {
  .column-article .article-wrapper .article-text03 {
    font-size: 1.4em;
  }
}
.column-article .article-wrapper .article-text03 span {
  color: #0086d1;
}/*# sourceMappingURL=style.css.map */