@charset "UTF-8";
:root {
  --black: #333;
  --orange: #D14900;
  --gray: #999;
  --light_gray: #F5F5F5;
  --dark_gray: #4d4d4d;
  --red: #E0000F;
  --blue: #0070c0;
}

body {
  font-family: Meiryo UI, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", Arial, Helvetica, sans-serif;
}

.Android body {
  font-family: Meiryo UI, Droid Sans, sans-serif;
}

#Contents {
  padding-bottom: 0;
  font-size: min(131%, 3.6vw);
}
@media only screen and (max-width: 767px) {
  #Contents {
    font-size: min(131%, 4.8vw);
  }
}
#Contents * {
  box-sizing: border-box;
}
#Contents.JS {
  padding-bottom: 0;
}

.JS .js-scroll--animation {
  opacity: 0;
  filter: blur(20px);
  transform: translateY(50px);
}
.JS .js-scroll--animation.is_anim {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition: 0.8s;
}

.visibility-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
}

/* branding */
.block-branding {
  position: relative;
  height: 360px;
  background: #ccc;
}
@media only screen and (max-width: 1304px) {
  .block-branding {
    margin-inline: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .block-branding {
    height: auto;
  }
  .block-branding:before {
    content: "";
    display: block;
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 375/250;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
}

.block-branding--inner {
  display: flex;
  max-width: 1305px;
  height: 100%;
  margin-inline: auto;
  padding-inline: 15px;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .block-branding--inner {
    height: auto;
    padding-inline: 0;
    align-items: flex-end;
  }
}

.block-branding--bg {
  position: relative;
  padding-block: 25px 30px;
  padding-right: 150px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .block-branding--bg {
    width: 100%;
    padding: 3vw 15px 4vw;
    background: var(--orange);
  }
}
.block-branding--bg h1, .block-branding--bg .description {
  position: relative;
}
.block-branding--bg h1 {
  margin: 0;
  padding: 0;
  font-size: min(285.7142857143%, 14.2857142857vw);
  font-weight: bold;
  line-height: 1.3;
  background: 0;
}
@media only screen and (max-width: 767px) {
  .block-branding--bg h1 {
    font-size: min(285%, 10vw);
  }
}
.block-branding--bg .description {
  font-size: min(114.2857142857%, 5.7142857143vw);
  transition-delay: 0.2s !important;
}
.block-branding--bg:before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  top: 0;
  right: 0;
  border-radius: 99999px;
  background: var(--orange);
}
@media only screen and (max-width: 767px) {
  .block-branding--bg:before {
    display: none;
  }
}

.block-pagetitle {
  padding-top: 30px;
}

/* local navigation */
.block-localnav {
  background: var(--orange);
}
@media only screen and (max-width: 1304px) {
  .block-localnav {
    margin-inline: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .block-localnav {
    margin-top: 15vw;
  }
}
.block-localnav ul {
  display: flex;
  max-width: 1305px;
  margin-inline: auto;
  padding-inline: 15px;
  gap: 0 30px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .block-localnav ul {
    padding-inline: 0;
    flex-wrap: wrap;
    gap: 0;
  }
}
.block-localnav li {
  height: 60px;
}
@media only screen and (max-width: 767px) {
  .block-localnav li {
    width: 50%;
    height: auto;
    min-height: 60px;
    border-bottom: 1px solid #fff;
  }
  .block-localnav li:nth-child(2n+1) {
    border-right: 1px solid #fff;
  }
}
.block-localnav a {
  display: flex;
  position: relative;
  height: 100%;
  padding-right: 25px;
  color: #fff;
  font-size: min(114.2857142857%, 5.7142857143vw);
  font-weight: bold;
  text-decoration: none;
  align-items: center;
  transition: 0.3s;
}
@media only screen and (max-width: 1304px) {
  .block-localnav a {
    font-size: min(100%, 5vw);
  }
}
@media only screen and (max-width: 767px) {
  .block-localnav a {
    line-height: 1.2;
  }
}
.block-localnav a:before, .block-localnav a:after {
  content: "";
  position: absolute;
  aspect-ratio: 1/1;
  top: 50%;
  transition: 0.3s;
}
.block-localnav a:before {
  width: 17px;
  right: 0;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
}
.block-localnav a:after {
  width: 5px;
  right: 5px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: translateY(-70%) rotate(45deg);
}
@media only screen and (max-width: 767px) {
  .block-localnav a {
    padding-inline: 15px 40px;
  }
  .block-localnav a:before {
    right: 15px;
  }
  .block-localnav a:after {
    right: 20px;
  }
}
.block-localnav a:hover {
  opacity: 0.7;
}
.block-localnav a:hover:before, .block-localnav a:hover:after {
  top: calc(50% + 3px);
}

/* section */
.block-section {
  position: relative;
  padding-block: min(50px, 10vw);
}
.block-section.bg:before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 50%;
  background: var(--light_gray);
  transform: translateX(-50%);
}
.block-section p:nth-child(n+2) {
  margin-top: 30px;
}
.block-section a {
  color: var(--orange);
}

.block-section--inner {
  position: relative;
}

/* headline */
.block-headline--h2 {
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
  margin-bottom: 60px !important;
  padding-bottom: 20px !important;
  color: #000;
  font-size: min(233.3333333333%, 11.6666666667vw);
  font-weight: bold;
  text-align: center;
  background: none;
}
@media only screen and (max-width: 767px) {
  .block-headline--h2 {
    font-size: min(190.4761904762%, 9.5238095238vw);
    margin-bottom: 40px !important;
  }
}
.block-headline--h2:nth-child(n+2) {
  margin-top: 60px !important;
}
.block-headline--h2:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 8px;
  bottom: 0;
  left: 50%;
  border-radius: 99999px;
  background: var(--orange);
  transform: translateX(-50%);
}
.block-headline--h2 span {
  color: inherit;
  padding: 0;
  background: none;
}

.block-headline--h3 {
  color: var(--black);
  margin: 0 !important;
  padding: 0 !important;
  padding-bottom: 10px !important;
  margin-bottom: 20px !important;
  font-size: min(114.2857142857%, 5.7142857143vw);
  font-weight: bold;
  border-bottom: 1px solid var(--orange);
  background: none;
}
.block-headline--h3:nth-child(n+2) {
  margin-top: 40px !important;
}

/* table */
.block-table--wrap:nth-child(n+2) {
  margin-top: 30px;
}
@media only screen and (max-width: 999.9px) {
  .block-table--wrap {
    overflow-x: auto;
  }
  .block-table--wrap table {
    min-width: max-content;
  }
}

.block-table--note + .block-table {
  margin-top: 10px !important;
}

.block-table {
  width: 100%;
}
.block-table:nth-child(n+2) {
  margin-top: 30px;
}
.block-table caption {
  font-size: min(114.2857142857%, 5.7142857143vw);
  margin-bottom: 0.5em;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .block-table caption {
    text-align: left;
  }
}
.block-table thead th {
  color: #fff;
  text-align: center;
  background: var(--dark_gray);
}
.block-table th, .block-table td {
  font-size: inherit !important;
}

/* pagetop */
.PageTop {
  margin-top: 30px;
}
.PageTop a {
  position: relative;
  background: none;
}
.PageTop a:link, .PageTop a:visited {
  color: var(--orange);
}
.PageTop a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: calc(50% - 1px);
  right: 0;
  border-style: solid;
  border-width: 0 7px 12.1px 7px;
  border-color: transparent transparent var(--orange) transparent;
  transform: translateY(-50%);
}

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

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

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

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

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

/* image */
.block-image {
  margin: 0;
  max-width: max-content;
  margin-inline: auto;
}
.block-image:nth-child(n+2) {
  margin-top: 30px;
}
.block-image figure {
  margin-inline: auto;
}
.block-image figcaption {
  width: 100%;
  margin-top: 10px;
  text-align: center;
}
.block-image img {
  max-width: 100%;
}
.block-image.radius img {
  border-radius: 20px;
}

/* flex */
.block-flex {
  display: flex;
}

/* list */
.block-list--note {
  padding-left: 0;
}

.block-list--dot > li {
  position: relative;
  padding-left: 1em;
}
.block-list--dot > li:before {
  content: "";
  position: absolute;
  width: 0.25em;
  aspect-ratio: 1/1;
  top: 0.75em;
  left: 0.375em;
  border-radius: 50%;
  background: var(--black);
}

.block-list--number > li {
  position: relative;
  padding-left: 2em;
}
.block-list--number .number {
  position: absolute;
  top: 0;
  left: 0;
}
.block-list--number.bg > li {
  padding: 1em;
  padding-left: 3em;
  background: var(--light_gray);
}
.block-list--number.bg > li:nth-child(n+2) {
  margin-top: 1em;
}
.block-list--number.bg .number {
  top: 1em;
  left: 1em;
}

/* WCAGテスト用 */
/*
* {
  line-height: 1.5 !important;
  letter-spacing: 0.12em !important;
  word-spacing: 0.16em !important;
}

p {
  margin-bottom: 2em !important;
}
*/