/*------------------------------------------*/
/* section
/*------------------------------------------*/

.section-normal,
.section-wide {
  width: calc(100% - 40px);
  margin: 0 auto;
}

.section-back {
  background: var(--color-bright-main);
}

.section-normal,
.section-wide,
.section-back,
.section-margin {
  margin-top: 80px;
}

.section-normal.narrow,
.section-wide.narrow,
.section-back.narrow,
.section-margin.narrow {
  margin-top: 40px;
}

.section-back>.section-normal,
.section-back>.section-wide {
  margin-top: 0;
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-back>.section-normal.narrow,
.section-back>.section-wide.narrow {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media screen and (min-width: 768px), print {

  .section-normal,
  .section-wide {
    width: calc(100% - 80px);
  }

  .section-normal,
  .section-wide,
  .section-back,
  .section-margin {
    margin-top: 100px;
  }

  .section-normal.narrow,
  .section-wide.narrow,
  .section-back.narrow,
  .section-margin.narrow {
    margin-top: 60px;
  }

  .section-back>.section-normal,
  .section-back>.section-wide {
    margin-top: 0;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-back>.section-normal.narrow,
  .section-back>.section-wide.narrow {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media screen and (min-width: 1100px), print {

  .section-normal,
  .section-wide {
    width: calc(100% - 120px);
  }

  .section-normal,
  .section-wide,
  .section-back,
  .section-margin {
    margin-top: 160px;
  }

  .section-normal.narrow,
  .section-wide.narrow,
  .section-back.narrow,
  .section-margin.narrow {
    margin-top: 100px;
  }

  .section-back>.section-normal,
  .section-back>.section-wide {
    margin-top: 0;
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .section-back>.section-normal.narrow,
  .section-back>.section-wide.narrow {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media screen and (min-width: 1240px), print {
  .section-normal {
    width: 1100px;
  }
}

@media screen and (min-width: 1580px), print {
  .section-wide {
    width: 1400px;
  }
}


/*------------------------------------------*/
/* H2
/*------------------------------------------*/

.heading-secondary {
  position: relative;
  text-align: left;
  color: var(--color-main);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  padding-bottom: 0.5em;
  margin-bottom: 50px;
}

.heading-secondary::before {
  content: '';
  display: inline-block;
  background: var(--color-main);
  width: 70px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.heading-secondary::after {
  content: '';
  display: inline-block;
  background: var(--color-light-main);
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (min-width: 834px), print {
  .heading-secondary {
    font-size: 2.4rem;
    margin-bottom: 80px;
  }
}



/*------------------------------------------*/
/* H2 other
/*------------------------------------------*/

.heading-secondary-other {
  position: relative;
  color: var(--color-main);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  padding-bottom: 0.5em;
  margin-bottom: 50px;
}

@media screen and (min-width: 834px), print {
  .heading-secondary-other {
    font-size: 2.4rem;
    margin-bottom: 80px;
  }
}


/*------------------------------------------*/
/* H3
/*------------------------------------------*/
.heading-tertiary {
  position: relative;
  text-align: left;
  color: var(--color-main);
  font-size: 1.2rem;
  font-weight: bold;
  padding-left: 30px;
  margin-top: 60px;
  margin-bottom: 40px;
}

.heading-tertiary::before {
  content: '';
  display: inline-block;
  background: url('../../img/common/heading_block.svg') no-repeat;
  aspect-ratio: 1/5;
  width: 8px;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

@media screen and (min-width: 834px), print {
  .heading-tertiary {
    font-size: 1.6rem;
    padding-left: 40px;
    margin-top: 100px;
    margin-bottom: 80px;
  }

  .heading-tertiary::before {
    width: 10px;
  }
}


/*------------------------------------------*/
/* H4
/*------------------------------------------*/
.heading-quaternary {
  position: relative;
  text-align: left;
  color: var(--color-main);
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 40px;
}

@media screen and (min-width: 834px), print {
  .heading-quaternary {
    font-size: 1.6rem;
    margin-bottom: 80px;
  }
}

/*------------------------------------------*/
/* 見出し 下にブロック
/*------------------------------------------*/
.heading-under-block {
  position: relative;
  text-align: center;
  color: var(--color-main);
  font-size: 1.2rem;
  font-weight: bold;
  padding-bottom: 30px;
  margin-bottom: 40px;
}

.heading-under-block::before {
  content: '';
  display: inline-block;
  background: url('../../img/common/heading_under_block.svg') no-repeat;
  aspect-ratio: 5/1;
  width: 40px;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 834px), print {
  .heading-under-block {
    font-size: 2rem;
    padding-bottom: 40px;
    margin-bottom: 80px;
  }

  .heading-under-block::before {
    width: 50px;
  }
}


/*------------------------------------------*/
/* 見出し 数字四角
/*------------------------------------------*/

.heading-type-square {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 20px;
  margin-bottom: 50px;
}

.heading-type-square .num {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: var(--color-main);
  width: 40px;
  height: 40px;
  color: white;
  font-family: var(--font-en);
  font-size: 1.6em;
  font-weight: 500;
}

.heading-type-square .num::before {
  content: '';
  display: inline-block;
  background: var(--color-light-main);
  width: 7px;
  height: 7px;
  position: absolute;
  top: 0;
  left: 0;
}

.heading-type-square.reverse .num::before {
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
}

.heading-type-square .jp {
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
}

.heading-type-square .text {
  font-size: 1.1rem;
}

@media screen and (min-width: 834px), print {
  .heading-type-square {
    grid-template-columns: 60px 1fr;
    align-items: center;
    margin-bottom: 80px;
  }

  .heading-type-square .num {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .heading-type-square .num::before {
    width: 10px;
    height: 10px;
  }

  .heading-type-square .jp {
    font-size: 1.6rem;
    padding-left: 20px;
  }

  .heading-type-square .text {
    font-size: 1.2rem;
  }
}

/*------------------------------------------*/
/* リンク
/*------------------------------------------*/

.link-color {
  color: var(--color-main);
}

/*------------------------------------------*/
/* 外部リンク
/*------------------------------------------*/

.link-blank {
  color: var(--color-main);
}

.link-blank::after {
  content: '';
  display: inline-block;
  background: url('../../img/common/icon_blank.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 15/12;
  width: 15px;
  height: auto;
  margin-left: 3px;
  margin-right: 3px;
}


/*------------------------------------------*/
/* ボタン
/*------------------------------------------*/

.btn-type-circle {
  position: relative;
  display: inline-block;
  text-align: left;
  color: var(--color-main);
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  padding-right: 80px;
  margin-top: 80px;
  margin-bottom: 40px;
  transition: all .3s ease;
}

.btn-type-circle.circle-only {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  width: 60px;
  height: 60px;
  margin-top: 40px;
  margin-bottom: 0;
}

.btn-type-circle::after {
  content: '';
  display: inline-block;
  background: url('../../img/common/icon_arrow_circle.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 1/1;
  width: 60px;
  height: auto;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  transition: all .3s ease;
}

.btn-type-circle.pdf {
  padding-left: 25px;
}

.btn-type-circle.pdf::before {
  content: '';
  display: inline-block;
  background: url('../../img/common/icon_pdf.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 17/20;
  width: 17px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.btn-type-circle:hover {
  text-decoration: none;
}

.btn-type-circle:hover::after {
  background: url('../../img/common/icon_arrow_circle_hover.svg') no-repeat;
  background-size: 100%;
}

@media screen and (min-width: 834px), print {
  .btn-type-circle {
    padding-right: 100px;
    margin-top: 100px;
  }

  .btn-type-circle.circle-only {
    width: 80px;
    height: 80px;
    margin-top: 80px;
  }

  .btn-type-circle::after {
    width: 80px;
  }
}


/*------------------------------------------*/
/* ボタン 四角
/*------------------------------------------*/

.btn-type-square {
  position: relative;
  text-align: left;
  display: inline-block;
  border: solid 2px var(--color-main);
  background: var(--color-main);
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  padding: 10px 50px 10px 20px;
  transition: all .5s ease;
}

.btn-type-square.red {
  border-color: var(--color-red);
  background: var(--color-red);
}

.btn-type-square.large {
  max-width: 800px;
  width: 100%;
  font-size: 1.4rem;
  padding: 15px 60px 15px 30px;
}

.btn-type-square::after {
  content: '';
  display: inline-block;
  background: url('../../img/common/icon_arrow_white.svg');
  background-size: 100%;
  background-repeat: no-repeat;
  aspect-ratio: 14/12;
  width: 14px;
  height: auto;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  transition: all .5s ease;
}

.btn-type-square.large::after {
  background: url('../../img/common/icon_arrow_large_white.svg');
  background-size: 100%;
  aspect-ratio: 30/24;
  width: 20px;
}

.btn-type-square.blank::after {
  background: url('../../img/common/icon_blank.svg');
  background-size: 100%;
  aspect-ratio: 1/1;
  width: 18px;
}

.btn-type-square.pdf::after {
  background: url('../../img/common/icon_pdf.svg');
  background-size: 100%;
  aspect-ratio: 17/20;
  width: 17px;
}

.btn-type-square:hover {
  text-decoration: none;
  background: white;
  color: var(--color-main);
}

.btn-type-square.red:hover {
  color: var(--color-red);
}

.btn-type-square:hover::after {
  background: url('../../img/common/icon_arrow.svg') no-repeat;
  background-size: 100%;
}

.btn-type-square.red:hover::after {
  background: url('../../img/common/icon_arrow_red.svg') no-repeat;
  background-size: 100%;
}

@media screen and (min-width: 834px), print {
  .btn-type-square {
    padding: 15px 70px 15px 30px;
  }

  .btn-type-square.large {
    font-size: 3rem;
    padding: 20px 60px 20px 40px;
  }

  .btn-type-square.large::after {
    width: 30px;
    right: 40px;
  }
}


/*------------------------------------------*/
/* ボタン 角丸
/*------------------------------------------*/

.btn-type-rounded {
  position: relative;
  display: inline-block;
  border: solid 2px var(--color-main);
  background: var(--color-main);
  border-radius: 40px;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  padding: 10px 50px;
  transition: all .5s ease;
}

.btn-type-rounded::after {
  content: '';
  display: inline-block;
  background: url('../../img/common/icon_arrow_white.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 14/12;
  width: 14px;
  height: auto;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  transition: all .5s ease;
}

.btn-type-rounded.blank::after {
  background: url('../../img/common/icon_blank.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 1/1;
  width: 18px;
}

.btn-type-rounded.pdf::after {
  background: url('../../img/common/icon_pdf.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 17/20;
  width: 17px;
}

.btn-type-rounded:hover {
  text-decoration: none;
  background: white;
  color: var(--color-main);
}

.btn-type-rounded:hover::after {
  background: url('../../img/common/icon_arrow.svg') no-repeat;
  background-size: 100%;
}

@media screen and (min-width: 834px), print {
  .btn-type-rounded {
    padding: 15px 60px;
  }
}



/*------------------------------------------*/
/* リスト 黒丸
/*------------------------------------------*/

.list-type-circle-black li {
  position: relative;
  text-align: left;
  padding-left: 1em;
}

.list-type-circle-black li::before {
  content: '・';
  position: absolute;
  top: 0;
  left: 0;
}


/*------------------------------------------*/
/* リスト 青丸
/*------------------------------------------*/

.list-type-circle {
  margin-top: 2em;
}

.list-type-circle li {
  position: relative;
  text-align: left;
  padding-left: 15px;
}

.list-type-circle li::before {
  content: '';
  display: inline-block;
  background: var(--color-main);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 0.6em;
  left: 0;
}

.list-type-circle li+li {
  margin-top: 1em;
}


/*------------------------------------------*/
/* リスト チェック
/*------------------------------------------*/

.list-type-check {
  margin-top: 2em;
}

.list-type-check li {
  position: relative;
  text-align: left;
  padding-left: 25px;
}

.list-type-check li::before {
  content: '';
  display: inline-block;
  background: url('../../img/common/icon_check.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 16/12;
  width: 16px;
  height: auto;
  position: absolute;
  top: 0.5em;
  left: 0;
}

.list-type-check li+li {
  margin-top: 0.5em;
}


/*------------------------------------------*/
/* 表
/*------------------------------------------*/
.table-type-outline {
  border-collapse: collapse;
  width: 100%;
  border: solid 1px var(--color-light-gray);
}

.table-type-outline th,
.table-type-outline td {
  text-align: left;
  border-bottom: dashed 1px var(--color-light-gray);
  font-size: 1rem;
  padding: 30px;
}

.table-type-outline th {
  font-weight: bold;
}

.table-type-outline.text-top th {
  vertical-align: text-top;
}

.table-type-outline td {
  text-align: justify;
  text-justify: inter-ideograph;
}

@media screen and (max-width: 767px) {

  .table-type-outline tr,
  .table-type-outline th,
  .table-type-outline td {
    display: block;
    width: auto;
  }

  .table-type-outline th,
  .table-type-outline td {
    font-size: 0.9rem;
    border-bottom: 1px solid var(--color-page-bright);
    padding: 10px;
  }

  .table-type-outline th {
    border-bottom: 1px dotted var(--color-page-bright);
  }
}

@media screen and (min-width: 768px), print {
  .table-type-outline th {
    width: 10em;
  }
}

/*------------------------------------------*/
/* 表 下線が破線
/*------------------------------------------*/
.table-type-underline-dashed {
  border-collapse: collapse;
  width: 100%;
}

.table-type-underline-dashed th,
.table-type-underline-dashed td {
  text-align: left;
  border-bottom: dashed 1px var(--color-light-gray);
  font-size: 1rem;
  padding: 20px 0;
}

.table-type-underline-dashed th {
  font-weight: bold;
}

.table-type-underline-dashed.text-top th {
  vertical-align: text-top;
}

.table-type-underline-dashed td {
  text-align: justify;
  text-justify: inter-ideograph;
}

@media screen and (max-width: 767px) {

  .table-type-underline-dashed tr,
  .table-type-underline-dashed th,
  .table-type-underline-dashed td {
    display: block;
    width: auto;
  }

  .table-type-underline-dashed th,
  .table-type-underline-dashed td {
    font-size: 0.9rem;
    border-bottom: 1px solid var(--color-light-gray);
    padding: 10px 0;
  }

  .table-type-underline-dashed th {
    border-bottom: 1px dotted var(--color-light-gray);
  }
}

@media screen and (min-width: 768px), print {
  .table-type-underline-dashed th {
    width: 10em;
  }
}


/*------------------------------------------*/
/* 表 thの背景有
/*------------------------------------------*/
.table-type-th-background {
  border-collapse: collapse;
  width: 100%;
  margin-top: 40px;
}

@media screen and (min-width: 834px), print {
  .table-type-th-background {
    margin-top: 60px;
  }
}

.table-type-th-background th,
.table-type-th-background td {
  border: 1px solid var(--color-light-gray);
  padding: 10px;
}

.table-type-th-background th {
  background: var(--color-bright-main);
}

.table-type-th-background th.backcolor,
.table-type-th-background td.backcolor {
  background: var(--color-back);
}

.table-type-th-background td {
  text-align: justify;
  text-justify: inter-ideograph;
}

@media screen and (max-width: 767px) {
  .table-type-th-background {
    /*テーブルスマホで横スクロールさせる場合*/
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .table-type-th-background th,
  .table-type-th-background td {
    font-size: 0.9rem;
  }
}

.table-type-th-background.all-center th,
.table-type-th-background.all-center td {
  text-align: center;
}

.table-type-th-background.all-th-left th {
  text-align: left;
}

.table-type-th-background th {
  text-align: center;
}

.table-type-th-background td {
  text-align: left;
}

.table-type-th-background th.center,
.table-type-th-background td.center {
  text-align: center;
}

.table-type-th-background th.right,
.table-type-th-background td.right {
  text-align: right;
}


/*------------------------------------------*/
/* 地図
/*------------------------------------------*/

.map_wrapper {
  margin: 0;
}

.map_wrapper iframe {
  width: 100%;
  height: 200px;
  vertical-align: bottom;
}

@media screen and (min-width: 768px), print {
  .map_wrapper iframe {
    width: 100%;
    height: 400px;
  }
}


/*------------------------------------------*/
/* テキスト
/*------------------------------------------*/
.text {
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.8rem;
}

.text+.text {
  margin-top: 1em;
}

/* 注意書き */
.notes {
  text-align: left;
  padding-left: 1em;
  text-indent: -1em;
}

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

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

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

.text-semibold {
  font-weight: 500;
}

.text-bold {
  font-weight: bold;
}

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


/*------------------------------------------*/
/* 改行
/*------------------------------------------*/

/* 強制改行 --------------------------------*/
.break-word {
  word-wrap: break-word;
}

/* 改行消し --------------------------------*/
@media screen and (max-width: 767px) {
  .br-sp-non {
    display: none;
  }
}

@media screen and (min-width: 768px), print {
  .br-pc-non {
    display: none;
  }
}