@charset "UTF-8";
/*********************************************************
base
*********************************************************/
* {
  box-sizing: border-box;
}

body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.2em;
  padding-top: 100px;
}
@media (max-width: 1024px) {
  body {
    padding-top: 70px;
  }
}

button {
  cursor: pointer;
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
  letter-spacing: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
  max-width: 100%;
}

li {
  list-style: none;
}

span {
  font-weight: inherit;
}

p {
  line-height: 2;
}

.dib {
  display: inline-block;
}

.content-ttl {
  color: #519544;
  font-size: 36px;
  font-weight: bold;
  position: relative;
  text-align: center;
}
@media (max-width: 400px) {
  .content-ttl {
    font-size: 24px;
  }
}
.content-ttl::after {
  background: #58b1da;
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 10px;
}
@media (max-width: 600px) {
  .content-ttl::after {
    width: 98%;
  }
}

.dn {
  display: none !important;
}

@media (min-width: 1025px) {
  .-pcnone {
    display: none;
  }
}

/*********************************************************
header
*********************************************************/
.header {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

@media (max-width: 1024px) {
  .header {
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.header__logo {
  padding-top: 10px;
  text-align: center;
}
.header__logo img {
  width: 300px;
}

@media (max-width: 1024px) {
  .header__logo {
    margin-right: 15px;
  }
}
/*********************************************************
gnav
*********************************************************/
@media (min-width: 1025px) {
  .gnav {
    width: 100%;
    position: relative;
    color: #333;
    margin-top: 15px;
    text-align: center;
    z-index: 999;
  }
  .gnav__link {
    display: block;
    padding: 10px 30px;
  }
  .gnav__link:hover {
    background: #ff9800;
    color: #fff;
  }
  .gnav__menu {
    display: flex;
    justify-content: center;
  }
  .gnav__parent:hover .gnav-child {
    visibility: visible;
  }
  .gnav-child {
    background: #ff9800;
    font-size: 14px;
    visibility: hidden;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 30px;
    color: #fff;
  }
  .gnav-child__inner {
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    max-width: 1000px;
  }
}
@media (min-width: 1025px) and (max-width: 1000px) {
  .gnav-child__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}
@media (min-width: 1025px) {
  .gnav-child__link {
    background: #fff;
    color: #ff9800;
    padding: 5px 30px;
    position: relative;
  }
  .gnav-child__link::after {
    border-color: transparent transparent transparent #ff9800;
    border-width: 5px 0 5px 10px;
    border-style: solid;
    height: 0;
    width: 0;
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }
  .gnav-child__list {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  .gnav-child__list > li {
    width: 31%;
  }
  .gnav-child__list .-top {
    border-bottom: 1px solid #fff;
    padding: 0 10px;
  }
  .gnav-child__list .gnav-child__other {
    padding: 0 30px;
  }
  .gnav-btn {
    display: none;
  }
  .gnav-child__child {
    margin-top: 10px;
  }
  .gnav-child__child li {
    margin-top: 5px;
  }
}
@media (max-width: 1024px) {
  .gnav {
    background: #fff;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 999;
  }
  .gnav__link,
  .gnav-child__link {
    border-bottom: 1px solid #333;
    display: block;
    font-size: 12px;
    padding: 15px 10px;
  }
  .gnav-link {
    display: none !important;
  }
  .gnav__menu {
    padding: 10px;
    position: relative;
  }
  .gnav__parent > a {
    display: none;
  }
  .gnav-child__other {
    display: none !important;
  }
  .gnav-btn {
    border-bottom: 1px solid #333;
    color: #333;
    display: block;
    font-size: 12px;
    line-height: 1.5;
    padding: 15px 10px;
    position: relative;
    text-align: left;
    width: 100%;
  }
  .gnav-btn::before, .gnav-btn::after {
    background: #333;
    content: "";
    position: absolute;
    right: 5px;
    top: 50%;
    transition: 0.5s;
    width: 10px;
    height: 1px;
  }
  .gnav-btn::before {
    margin-top: -0.5px;
  }
  .gnav-btn::after {
    margin-left: -0.5px;
    transform: rotate(90deg);
  }
  .open > .gnav-btn::after {
    opacity: 0;
  }
  .gnav-child {
    display: none;
  }
  .gnav-child__list {
    padding-left: 50px;
  }
  .gnav-child__list a {
    border-bottom: 1px solid #333;
    display: block;
    font-size: 12px;
    padding: 10px;
  }
  .gnav-child__list a.-top {
    padding: 15px 10px;
  }
  .gnav-child__link {
    margin-left: 50px;
  }
  .gnav-child__child {
    display: none;
    padding-left: 50px;
  }
  .gnav__btn {
    background: #000;
    color: #fff;
    margin-top: 15px;
    padding: 5px;
    text-align: center;
    width: 100%;
  }
}
/* スマホ */
@media (min-width: 1025px) {
  .menu-btn,
  .gnav__close {
    display: none !important;
  }
}
.menu-btn__inner {
  cursor: pointer;
  height: 30px;
  position: relative;
  width: 30px;
}

.menu-btn__bar {
  background: transparent;
  height: 2px;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  left: 0;
  transition: 0.5s;
  width: 100%;
}

.menu-btn__bar::before, .menu-btn__bar::after {
  background: #333;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  transition: 0.5s;
  width: 100%;
}

.menu-btn__bar::before {
  margin-top: -5px;
}

.menu-btn__bar::after {
  margin-top: 5px;
}

.close .menu-btn__bar {
  background: transparent;
}

.close .menu-btn__bar::before, .close .menu-btn__bar::after {
  margin-top: 0;
}

.close .menu-btn__bar::before {
  transform: rotate(45deg);
}

.close .menu-btn__bar::after {
  transform: rotate(-45deg);
}

/*********************************************************
index.html
*********************************************************/
.mv {
  background: #000;
  position: relative;
  height: calc(100vh - 100px);
  overflow: hidden;
}

@media (max-width: 480px) {
  .mv {
    height: calc(100vh - 80px);
    overflow: hidden;
  }
}
.mv img {
  filter: brightness(0.8);
  vertical-align: bottom;
}

@media screen and (orientation: portrait) and (max-width: 1024px) {
  .mv img {
    max-width: none;
  }
}
@media (max-width: 480px) {
  .mv img {
    max-width: none;
    margin-left: calc(-250% - 50vw);
  }
}
.mv__ttl {
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 0.2em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 9;
}

@media (max-width: 768px) {
  .mv__ttl {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .mv__ttl {
    font-size: 24px;
  }
}
@media (max-width: 320px) {
  .mv__ttl {
    font-size: 18px;
    font-size: 6vw;
  }
}
.scrolldown {
  position: absolute;
  left: 50%;
  bottom: 50px;
  height: 50px;
  z-index: 9;
}

@media (max-width: 480px) {
  .scrolldown {
    bottom: 20px;
  }
}
.scrolldown a {
  position: absolute;
  left: -25px;
  bottom: 0;
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  font-size: 18px;
}

.scrolldown::before {
  content: "";
  position: absolute;
  top: -20px;
  width: 1px;
  height: 40px;
  background: #eee;
}

.top-message {
  font-size: 24px;
  line-height: 2;
  padding: 50px 0;
  text-align: center;
}

@media (max-width: 480px) {
  .top-message {
    font-size: 18px;
  }
}
.top-message__marker {
  background: linear-gradient(transparent 60%, #ff6 60%);
  font-size: 28px;
  font-weight: bold;
}

@media (max-width: 480px) {
  .top-message__marker {
    font-size: 22px;
  }
}
.top-image {
  background: #eee;
  text-align: center;
}

.top-image img {
  vertical-align: bottom;
}

.top-auxiliary {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
  padding: 50px 0;
  text-align: center;
}

@media (max-width: 480px) {
  .top-auxiliary__list {
    padding: 0 2%;
  }
}
.top-auxiliary__txt {
  color: #F0A32F;
  font-size: 24px;
  font-weight: bold;
}

@media (max-width: 380px) {
  .top-auxiliary__txt {
    font-size: 20px;
  }
}
.top-auxiliary__txt:first-child {
  margin-right: 15em;
}

@media (max-width: 480px) {
  .top-auxiliary__txt:first-child {
    margin-right: 0;
    text-align: left;
  }
}
.top-auxiliary__txt:last-child {
  margin-left: 10em;
}

@media (max-width: 480px) {
  .top-auxiliary__txt:last-child {
    margin-left: 0;
    text-align: right;
  }
}
.top-auxiliary__link {
  background: #fff;
  border: 1px solid #257ea7;
  border-radius: 10px;
  color: #257ea7;
  font-size: 14px;
  margin: 30px auto 0;
  width: 280px;
}

.top-auxiliary__link a {
  display: block;
  padding: 10px;
  position: relative;
}

.top-auxiliary__link a:hover::before {
  right: 17px;
}

.top-auxiliary__link a:hover::after {
  right: 16px;
}

.top-auxiliary__link a::before, .top-auxiliary__link a::after {
  background: #257ea7;
  content: "";
  height: 2px;
  position: absolute;
  transition: 0.3s;
}

.top-auxiliary__link a::before {
  right: 10px;
  bottom: 18px;
  width: 30px;
}

.top-auxiliary__link a::after {
  right: 9px;
  bottom: 22px;
  transform: rotate(30deg);
  width: 15px;
}

.top-services {
  background: #257ea7;
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 480px) {
  .top-services {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
.top-services__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
}

@media (max-width: 1000px) {
  .top-services__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}
.top-services__list:nth-child(odd) .top-services__ttl {
  background-position: left center;
  padding-left: 280px;
  padding-right: 50px;
}

@media (max-width: 600px) {
  .top-services__list:nth-child(odd) .top-services__ttl {
    padding-left: 200px;
    padding-right: 20px;
  }
}
@media (max-width: 480px) {
  .top-services__list:nth-child(odd) .top-services__ttl {
    padding-left: 20px;
  }
}
.top-services__list:nth-child(even) .top-services__ttl {
  background-position: right center;
  padding-right: 280px;
  padding-left: 50px;
}

@media (max-width: 600px) {
  .top-services__list:nth-child(even) .top-services__ttl {
    padding-right: 200px;
    padding-left: 20px;
  }
}
@media (max-width: 480px) {
  .top-services__list:nth-child(even) .top-services__ttl {
    padding-right: 20px;
  }
}
.top-services__list:nth-child(1) .top-services__ttl {
  background-image: url(image.php?id=047);
}

.top-services__list:nth-child(2) .top-services__ttl {
  background-image: url(image.php?id=048);
}

.top-services__list:nth-child(3) .top-services__ttl {
  background-image: url(image.php?id=049);
}

.top-services__list:nth-child(4) .top-services__ttl {
  background-image: url(image.php?id=050);
}

.top-services__list:nth-child(5) .top-services__ttl {
  background-image: url(image.php?id=051);
}

.top-services__list:not(:first-child) {
  margin-top: 5px;
}

.top-services__ttl {
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 260px;
  cursor: pointer;
  padding-top: 50px;
  padding-bottom: 50px;
}

@media (max-width: 600px) {
  .top-services__ttl {
    background-size: 180px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .top-services__ttl {
    position: relative;
    z-index: 1;
  }
  .top-services__ttl::before {
    background: rgba(255, 255, 255, 0.5);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
}
@media (max-width: 420px) {
  .top-services__ttl {
    line-height: 1.3;
  }
}
.top-services__ttlinner {
  color: #519544;
  font-size: 24px;
  font-weight: bold;
}

@media (max-width: 980px) {
  .top-services__ttlinner {
    font-size: 18px;
  }
}
@media (max-width: 420px) {
  .top-services__ttlinner {
    font-size: 16px;
  }
}
.top-services__dot {
  font-size: 36px;
  background-position: top left 0px;
  background-repeat: repeat-x;
  background-size: 1.1em 0.3em;
  background-image: radial-gradient(0.1em 0.1em at center center, #ff9800, #ff9800 100%, transparent, transparent);
  padding-top: 0.2em;
}

@media (max-width: 980px) {
  .top-services__dot {
    font-size: 24px;
  }
}
@media (max-width: 420px) {
  .top-services__dot {
    font-size: 18px;
  }
}
.top-services__content {
  display: none;
  padding: 50px 0;
}

.subsidy-list {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  display: flex;
}

@media (max-width: 1000px) {
  .subsidy-list {
    padding-left: 2%;
    padding-right: 2%;
  }
}
@media (min-width: 981px) {
  .subsidy-list {
    flex-wrap: wrap;
  }
  .subsidy-list.-service01::after, .subsidy-list.-service03::after, .subsidy-list.-service04::after {
    content: "";
    width: 25%;
  }
  .subsidy-list.-service02::after, .subsidy-list.-service05::after {
    content: "";
    width: 50%;
  }
}
@media (max-width: 980px) {
  .subsidy-list {
    overflow: auto;
  }
}
.subsidy-list__item {
  color: #fff;
  position: relative;
  text-align: center;
  width: 25%;
}

@media (min-width: 981px) {
  .subsidy-list__item:nth-child(n+5) {
    margin-top: 50px;
  }
}
@media (max-width: 980px) {
  .subsidy-list__item {
    width: 280px;
    min-width: 280px;
  }
  .subsidy-list__item:not(:last-child) {
    margin-right: 30px;
  }
}
.subsidy-list__icon {
  height: 50px;
}

.subsidy-list__txt {
  font-size: 12px;
  margin-top: 15px;
}

.subsidy-list__btn {
  background: #fff;
  border-radius: 10px;
  color: #257ea7;
  font-size: 14px;
  margin: 20px auto 0;
  width: 180px;
}

.subsidy-list__btn a {
  display: block;
  padding: 10px;
  position: relative;
}

.subsidy-list__btn a:hover::before {
  right: 17px;
}

.subsidy-list__btn a:hover::after {
  right: 16px;
}

.subsidy-list__btn a::before, .subsidy-list__btn a::after {
  background: #257ea7;
  content: "";
  height: 2px;
  position: absolute;
  transition: 0.3s;
}

.subsidy-list__btn a::before {
  right: 10px;
  bottom: 18px;
  width: 30px;
}

.subsidy-list__btn a::after {
  right: 9px;
  bottom: 22px;
  transform: rotate(30deg);
  width: 15px;
}

@media (min-width: 981px) {
  .subsidy-list__scroll {
    display: none;
  }
}
@media (max-width: 980px) {
  .subsidy-list__scroll {
    margin-left: 10px;
    width: 50px;
    height: 50px;
  }
}
.top-disaster {
  padding-top: 100px;
}

.top-disaster__box:not(:first-child) {
  margin-top: 50px;
}

.top-disaster__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
}

@media (max-width: 1000px) {
  .top-disaster__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}
.top-disaster__txt {
  font-size: 18px;
  margin: 50px auto 0;
}

.top-disaster__txt p {
  margin-top: 1em;
}

.top-disaster__box02 {
  background: #e8f2e9;
  padding: 70px 0 100px;
  position: relative;
}

.top-disaster__wave {
  position: relative;
  width: 100%;
  z-index: -1;
}

.top-disaster__wave svg {
  vertical-align: bottom;
  width: 100%;
}

.top-disaster__ttl02 {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 480px) {
  .top-disaster__ttl02 {
    font-size: 24px;
  }
}
@media (max-width: 400px) {
  .top-disaster__ttl02 {
    font-size: 20px;
  }
}
.top-disaster__ttl02 span {
  font-size: 120%;
  font-weight: bold;
}

.top-disaster__txt02 {
  margin-top: 50px;
}

.top-disaster__txt02 p {
  margin-top: 1em;
}

.top-news {
  padding: 100px 0;
}
@media (max-width: 480px) {
  .top-news {
    padding: 50px 0;
  }
}
.top-news.-dn {
  display: none;
}
.top-news.-bg {
  background: #4e54c8;
  background: linear-gradient(to left, #8f94fb, #4e54c8);
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.top-news.-bg .circles {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.top-news.-bg .circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  animation: animate 25s linear infinite;
  bottom: -150px;
}
.top-news.-bg .circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}
.top-news.-bg .circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}
.top-news.-bg .circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}
.top-news.-bg .circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}
.top-news.-bg .circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}
.top-news.-bg .circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}
.top-news.-bg .circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}
.top-news.-bg .circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}
.top-news.-bg .circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}
.top-news.-bg .circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
.top-news__ttl {
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 480px) {
  .top-news__ttl {
    font-size: 36px;
  }
}
@media (max-width: 400px) {
  .top-news__ttl {
    font-size: 30px;
  }
}

.top-news-list__list {
  margin: 50px auto 0;
  max-width: 800px;
}
@media (max-width: 800px) {
  .top-news-list__list {
    padding: 0 2%;
  }
}
@media (max-width: 480px) {
  .top-news-list__list {
    margin-top: 30px;
  }
}

.top-news-list__item {
  border-bottom: 1px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-bottom: 5px;
  white-space: nowrap;
}
.top-news-list__item:not(:first-child) {
  margin-top: 15px;
}

.top-news-list__date {
  font-size: 14px;
  margin-right: 30px;
}

.top-news-list__ttl {
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.top-news-list__ttl a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top-news-list__ttl a:hover {
  opacity: 0.8;
}

/*********************************************************
下層ページ共通
*********************************************************/
.breadcrumbs {
  margin: 80px 0 15px;
}

@media (max-width: 480px) {
  .breadcrumbs {
    margin-top: 30px;
  }
}
.breadcrumbs__list {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  display: flex;
}

@media (max-width: 1000px) {
  .breadcrumbs__list {
    padding-left: 2%;
    padding-right: 2%;
  }
}
@media (max-width: 480px) {
  .breadcrumbs__list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.breadcrumbs__item {
  font-size: 14px;
  position: relative;
}

.breadcrumbs__item:not(:last-child) {
  padding-right: 30px;
}

.breadcrumbs__item:not(:last-child)::after {
  border-style: solid;
  border-width: 1px 1px 0 0;
  content: "";
  display: inline-block;
  height: 7px;
  width: 7px;
  transform: rotate(45deg);
  content: "";
  margin-top: -3.5px;
  position: absolute;
  top: 50%;
  right: 15px;
}

.breadcrumbs__item a {
  color: #F0A32F;
  display: block;
}

.breadcrumbs__home::before {
  content: "\f015";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  margin-right: 5px;
}

.page-header {
  background-color: #ccc;
  background-image: url(image.php?id=006);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.page-header__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  padding-top: 300px;
  position: relative;
}

@media (max-width: 1000px) {
  .page-header__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}
@media (max-width: 480px) {
  .page-header__inner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.page-header__en,
.page-header__jp {
  font-weight: bold;
  position: absolute;
  left: 0;
}

@media (max-width: 1000px) {
  .page-header__en,
  .page-header__jp {
    left: 20px;
  }
}
@media (max-width: 480px) {
  .page-header__en,
  .page-header__jp {
    position: static;
    text-align: center;
  }
}
.page-header__en {
  font-size: 48px;
  top: 80px;
}

@media (max-width: 768px) {
  .page-header__en {
    font-size: 36px;
    top: 90px;
  }
}
@media (max-width: 480px) {
  .page-header__en {
    font-size: 30px;
  }
}
.-npd .page-header__en {
  line-height: 1.2;
}

@media (min-width: 481px) and (max-width: 630px) {
  .-npd .page-header__en {
    top: 40px;
  }
}
.page-header__jp {
  font-size: 36px;
  top: 150px;
}

@media (max-width: 768px) {
  .page-header__jp {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .page-header__jp {
    font-size: 20px;
  }
}
.content__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  margin-top: 50px;
  margin-bottom: 50px;
}

@media (max-width: 1000px) {
  .content__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}
.comingsoon {
  padding: 80px 0;
}

.content-top {
  background-image: url(image.php?id=017);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  height: 500px;
  position: relative;
}

@media (min-width: 1901px) {
  .content-top {
    height: 800px;
  }
}
.content-top::before {
  background: rgba(0, 0, 0, 0.6);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.content-top__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1000px;
}

@media (max-width: 480px) {
  .content-top__inner p {
    font-size: 14px;
  }
}
.content-top__inner p:not(:first-child) {
  margin-top: 50px;
}

@media (max-width: 480px) {
  .content-top__inner p:not(:first-child) {
    margin-top: 30px;
  }
}
.content__section {
  margin-top: 100px;
}

@media (max-width: 480px) {
  .content__section {
    margin-top: 70px;
  }
}
.links {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .links {
    display: block;
  }
}
.links__item {
  background: #fff;
  border-radius: 10px;
  color: #257ea7;
  font-size: 14px;
  margin-top: 30px;
  position: relative;
  width: 48%;
}
@media (min-width: 481px) {
  .links__item:nth-child(odd) {
    margin-right: 2%;
  }
}

.-disable .links__item {
  border: 1px solid #333;
  border-radius: 0;
  color: #535353;
  padding: 10px;
  text-align: center;
}

@media (max-width: 480px) {
  .links__item {
    margin-top: 15px;
    width: 100%;
  }
}
.links__item a {
  border: 1px solid #257ea7;
  border-radius: 8px;
  display: block;
  font-size: 12px;
  padding: 10px 30px 10px 10px;
  position: relative;
  margin: 0 auto;
  max-width: 250px;
}

.links__item a:hover::before {
  right: 17px;
}

.links__item a:hover::after {
  right: 16px;
}

.links__item a::before, .links__item a::after {
  background: #257ea7;
  content: "";
  height: 2px;
  position: absolute;
  transition: 0.3s;
}

.links__item a::before {
  right: 12px;
  bottom: 18px;
  width: 20px;
}

.links__item a::after {
  right: 12px;
  bottom: 21px;
  transform: rotate(30deg);
  width: 10px;
}

/*********************************************************
association.html
*********************************************************/
.association-table {
  margin: 0 auto;
  width: 100%;
  max-width: 768px;
}

@media (max-width: 480px) {
  .association-table {
    border: 1px solid #999;
  }
}
.association-table th,
.association-table td {
  border: 1px solid #999;
  padding: 10px;
}

@media (max-width: 480px) {
  .association-table th,
  .association-table td {
    display: block;
    text-align: center;
  }
}
.association-table th {
  font-weight: bold;
}

.association-table td {
  font-size: 14px;
  padding: 10px 30px;
}

@media (max-width: 480px) {
  .association-table td {
    padding: 10px 15px;
  }
}
.association-table p:not(:first-child) {
  margin-top: 1em;
}

.association-table__list,
.association-table__list2 {
  display: flex;
}

@media (max-width: 480px) {
  .association-table__list,
  .association-table__list2 {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .association-table__list {
    margin: 0 auto;
    max-width: 300px;
  }
}
.association-table__list dt {
  width: 6em;
}

@media (max-width: 480px) {
  .association-table__list dd {
    width: 8em;
  }
}
.association-table__list2 dt {
  width: 9em;
}

/*********************************************************
auxiliary.html
*********************************************************/
.auxiliary-box {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .auxiliary-box {
    display: block;
  }
}
.auxiliary-box__content,
.auxiliary-box__img {
  width: 48%;
}

@media (max-width: 768px) {
  .auxiliary-box__content,
  .auxiliary-box__img {
    width: 100%;
  }
}
.auxiliary-box__txt {
  line-height: 2;
}

.auxiliary-box__img {
  text-align: center;
}

.auxiliary-box__link {
  margin-top: 15px;
}

.auxiliary-box__link a {
  color: blue;
  text-decoration: underline;
}

.auxiliary-box__link a:hover {
  text-decoration: none;
}

.auxiliary-box__links {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .auxiliary-box__img {
    margin-top: 30px;
    text-align: center;
  }
}
/*********************************************************
decarbonization.html
*********************************************************/
.decarbonization-box {
  margin-top: 50px;
}

.decarbonization-box__images {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

@media (max-width: 480px) {
  .decarbonization-box__images {
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .decarbonization-box__images li {
    width: 48%;
  }
}
.decarbonization-box__images li:not(:last-child) {
  margin-right: 15px;
}

@media (max-width: 480px) {
  .decarbonization-box__images li:not(:last-child) {
    margin-right: 2%;
  }
}
.decarbonization-box__images img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 195px;
  height: 120px;
}

.decarbonization-box__images p {
  font-size: 12px;
  text-align: center;
}

.decarbonization-box__gray {
  background: #f3f3f3;
  border-radius: 15px;
  margin-top: 15px;
  padding: 15px;
}

.decarbonization-box__gray ul {
  display: flex;
}

.decarbonization-box__gray ul:not(:first-child) {
  margin-top: 5px;
}

.decarbonization-box__gray li:first-child {
  white-space: nowrap;
}

.decarbonization-box__links {
  margin-top: 30px;
}

/*********************************************************
disaster.html
*********************************************************/
.disaster-box {
  margin-top: 50px;
}

.disaster-box__images {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

@media (max-width: 480px) {
  .disaster-box__images {
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .disaster-box__images.-add::after {
    content: "";
    width: 48%;
  }
}
@media (max-width: 480px) {
  .disaster-box__images li {
    width: 48%;
  }
  .disaster-box__images li:nth-child(n+3) {
    margin-top: 5px;
  }
}
.disaster-box__images li:not(:last-child) {
  margin-right: 15px;
}

@media (max-width: 480px) {
  .disaster-box__images li:not(:last-child) {
    margin-right: 2%;
  }
}
.disaster-box__images img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 195px;
  height: 120px;
}

.disaster-box__images p {
  font-size: 12px;
  text-align: center;
}

.disaster-box__gray {
  background: #f3f3f3;
  border-radius: 15px;
  margin-top: 15px;
  padding: 15px;
}

.disaster-box__gray ul {
  display: flex;
}

.disaster-box__gray ul:not(:first-child) {
  margin-top: 5px;
}

.disaster-box__gray li:first-child {
  white-space: nowrap;
}

.disaster-box__links {
  margin-top: 30px;
}

.disaster-box__table {
  margin-top: 30px;
}

.disaster-box__table table {
  width: 100%;
}

.disaster-box__table th,
.disaster-box__table td {
  border: 1px solid #333;
  padding: 10px;
  text-align: center;
  vertical-align: middle;
  width: 50%;
}

@media (max-width: 480px) {
  .disaster-box__table th,
  .disaster-box__table td {
    font-size: 14px;
  }
}
.disaster-box__table th {
  background: #f3f3f3;
}

.disaster-box__footer td {
  background: #bae8ff;
  border: 3px solid #f00;
}

.disaster-box__note {
  font-size: 14px;
  margin: 10px 0 0 1em;
  text-indent: -1em;
}

/*********************************************************
renovation.html
*********************************************************/
.renovation-table {
  margin-top: 50px;
  width: 100%;
}

.renovation-table th,
.renovation-table td {
  border: 1px solid #333;
  font-size: 14px;
  padding: 10px;
}

@media (max-width: 480px) {
  .renovation-table th,
  .renovation-table td {
    font-size: 12px;
  }
}
.renovation-table th {
  background: #f3f3f3;
  font-weight: bold;
  white-space: nowrap;
}

.renovation-table .empty {
  background: transparent;
  border: none;
}

.renovation-table__ol li,
.renovation-table__list li {
  margin-left: 1em;
  text-indent: -1em;
}

.renovation-table__ol li:not(:first-child),
.renovation-table__list li:not(:first-child) {
  margin-top: 5px;
}

.renovation-table__txt {
  margin: 15px 0 0 1em;
}

.renovation-container {
  overflow: auto;
}

.renovation-table2 {
  margin: 50px auto 0;
}

@media (max-width: 480px) {
  .renovation-table2 {
    width: 500px;
  }
}
.renovation-table2 th,
.renovation-table2 td {
  border: 1px solid #333;
  font-size: 14px;
  padding: 10px;
  vertical-align: middle;
}

.renovation-table2 th {
  background: #e8f2e9;
  font-weight: bold;
  white-space: nowrap;
}

.renovation-table2 td {
  font-size: 12px;
}

.renovation-table2 .renovation-table2__th {
  background: #eee;
}

.renovation-table2__red {
  color: #f00;
  display: inline-block;
  margin-left: 10px;
}

.renovation-table2__list li {
  display: flex;
  justify-content: space-between;
  white-space: nowrap;
}

.renovation-table2__list li:not(:last-child) {
  margin-bottom: 5px;
}

.renovation-table2__ttl {
  margin-right: 5px;
}

/*********************************************************
it.html
*********************************************************/
.it-img {
  margin-top: 50px;
  text-align: center;
}

.it-img2 {
  margin-top: 30px;
  text-align: center;
}

/*********************************************************
high-efficiency.html
*********************************************************/
.high-e-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 600px) {
  .high-e-box {
    flex-direction: column-reverse;
  }
}
.high-e-box__table,
.high-e-box__img {
  width: 48.5%;
}

@media (max-width: 600px) {
  .high-e-box__table,
  .high-e-box__img {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .high-e-box__table {
    margin-top: 30px;
  }
}
.high-e-box__table table {
  width: 100%;
}

.high-e-box__table th,
.high-e-box__table td {
  border: 1px solid #333;
  font-size: 14px;
  padding: 10px;
  text-align: center;
}

.high-e-box__table th {
  background: #f3f3f3;
  font-weight: bold;
}

.high-e-box__table span {
  color: #f00;
}

.high-e-box__img {
  text-align: center;
}

.high-e-box__img img {
  width: 300px;
}

.high-e__txt {
  margin-top: 30px;
}

.high-e__note {
  font-size: 14px;
  margin: 0.5em 0 0 1em;
  text-indent: -1em;
}

/*********************************************************
led-lighting.html
*********************************************************/
.led__table th,
.led__table td {
  font-size: 14px;
}

.led__table th {
  padding-right: 15px;
  white-space: nowrap;
}

.led__table th:first-child {
  padding-right: 30px;
}

.led__list {
  display: grid;
  gap: 25px;
  grid-template-columns: 300px 1fr;
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .led__list {
    grid-template-columns: 30% 1fr;
  }
}
@media (max-width: 480px) {
  .led__list {
    display: block;
  }
}
.led__list li:first-child {
  grid-column: 1/2;
  grid-row: 1/2;
}

.led__list li:nth-child(2) {
  align-self: end;
  grid-column: 1/2;
  grid-row: 2/3;
}

@media (max-width: 480px) {
  .led__list li:nth-child(2) {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.led__list li:last-child {
  grid-column: 2/3;
  grid-row: 1/3;
}

@media (max-width: 1024px) {
  .led__list li:last-child {
    align-self: center;
  }
}
@media (max-width: 480px) {
  .led__list li {
    margin-left: auto;
    margin-right: auto;
    max-width: 300px;
  }
}
.led__list li img {
  display: block;
}

/*********************************************************
heat-source.html
*********************************************************/
.heat-source__table {
  width: 100%;
}

.heat-source__table th,
.heat-source__table td {
  border: 1px solid #333;
  font-size: 14px;
  padding: 10px;
}

.heat-source__table th {
  background: #f3f3f3;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}

.heat-source__red {
  color: #f00;
  display: inline-block;
  margin-right: 15px;
}

.heat-source__img img {
  display: block;
  margin: 30px auto 0;
}

/*********************************************************
energy-saving.html
*********************************************************/
.energy-saving__box {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 980px) {
  .energy-saving__box {
    flex-direction: column-reverse;
  }
}
.energy-saving__table {
  width: 65%;
}

@media (max-width: 980px) {
  .energy-saving__table {
    margin-top: 30px;
    width: 100%;
  }
}
.energy-saving__table table {
  width: 100%;
}

.energy-saving__table th,
.energy-saving__table td {
  border: 1px solid #333;
  font-size: 14px;
  padding: 10px;
  vertical-align: middle;
}

.energy-saving__table th {
  background: #f3f3f3;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}

.energy-saving__list {
  margin-left: 1em;
  text-indent: -1em;
}

.energy-saving__list li:not(:first-child) {
  margin-top: 0.5em;
}

.energy-saving__note {
  font-size: 14px;
  margin-left: 2.3em;
  text-indent: -1.2em;
}

.energy-saving__note li {
  margin-top: 1em;
}

.energy-saving__no {
  display: inline-block;
  margin-right: 10px;
}

.energy-saving__kome {
  font-size: 10px;
  vertical-align: super;
}

.energy-saving__img {
  width: 32%;
}

@media (max-width: 980px) {
  .energy-saving__img {
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 980px) {
  .energy-saving__img img {
    width: 500px;
  }
}
/*********************************************************
power-outage.html
*********************************************************/
.power-outage__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 980px) {
  .power-outage__box {
    flex-direction: column-reverse;
  }
}
.power-outage__box:not(:first-child) {
  margin-top: 30px;
}

.power-outage__table {
  width: 65%;
}

@media (max-width: 980px) {
  .power-outage__table {
    margin-top: 30px;
    width: 100%;
  }
}
.power-outage__table table {
  width: 100%;
}

.power-outage__table th,
.power-outage__table td {
  border: 1px solid #333;
  font-size: 14px;
  padding: 10px;
  vertical-align: middle;
}

.power-outage__table th {
  background: #f3f3f3;
  font-weight: bold;
  text-align: center;
  width: 160px;
  white-space: nowrap;
}

.power-outage__list {
  margin-left: 1em;
  text-indent: -1em;
}

.power-outage__list li:not(:first-child) {
  margin-top: 0.5em;
}

.power-outage__txt {
  margin-top: 1em;
}

.power-outage__red {
  color: #f00;
}

.power-outage__img {
  width: 32%;
}

@media (max-width: 980px) {
  .power-outage__img {
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 980px) {
  .power-outage__img img {
    width: 500px;
  }
}
/*********************************************************
flood-damage.html
*********************************************************/
.flood-damage__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 980px) {
  .flood-damage__box {
    flex-direction: column-reverse;
  }
}
.flood-damage__box:not(:first-child) {
  margin-top: 30px;
}

.flood-damage__table {
  width: 65%;
}

@media (max-width: 980px) {
  .flood-damage__table {
    margin-top: 30px;
    width: 100%;
  }
}
.flood-damage__table table {
  width: 100%;
}

.flood-damage__table th,
.flood-damage__table td {
  border: 1px solid #333;
  font-size: 14px;
  padding: 10px;
  vertical-align: middle;
}

.flood-damage__table th {
  background: #f3f3f3;
  font-weight: bold;
  text-align: center;
  width: 160px;
  white-space: nowrap;
}

.flood-damage__list {
  margin-left: 1em;
  text-indent: -1em;
}

.flood-damage__list li:not(:first-child) {
  margin-top: 0.5em;
}

.flood-damage__txt {
  margin-top: 1em;
}

.flood-damage__red {
  color: #f00;
}

.flood-damage__img {
  width: 32%;
}

@media (max-width: 980px) {
  .flood-damage__img {
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 980px) {
  .flood-damage__img img {
    width: 500px;
  }
}
/*********************************************************
boiler.html
*********************************************************/
.boiler {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 600px) {
  .boiler {
    flex-direction: column-reverse;
  }
}
.boiler__table,
.boiler__img {
  width: 48.5%;
}

@media (max-width: 600px) {
  .boiler__table,
  .boiler__img {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .boiler__table {
    margin-top: 30px;
  }
}
.boiler__table table {
  width: 100%;
}

.boiler__table th,
.boiler__table td {
  border: 1px solid #333;
  font-size: 14px;
  padding: 10px;
}

.boiler__table th {
  background: #f3f3f3;
  font-weight: bold;
  white-space: nowrap;
}

.boiler__table span {
  color: #f00;
}

.boiler__img {
  text-align: center;
}

.boiler__img img {
  width: 300px;
}

/*********************************************************
septic-tank.html
*********************************************************/
.septic-tank__box {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 980px) {
  .septic-tank__box {
    flex-direction: column-reverse;
  }
}
.septic-tank__table {
  width: 65%;
}

@media (max-width: 980px) {
  .septic-tank__table {
    margin-top: 30px;
    width: 100%;
  }
}
.septic-tank__table table {
  width: 100%;
}

.septic-tank__table th,
.septic-tank__table td {
  border: 1px solid #333;
  font-size: 14px;
  padding: 10px;
  vertical-align: middle;
}

.septic-tank__table th {
  background: #f3f3f3;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}

.septic-tank__list {
  margin-left: 1em;
  text-indent: -1em;
}

.septic-tank__list li:not(:first-child) {
  margin-top: 0.5em;
}

.septic-tank__note {
  font-size: 14px;
  margin-left: 2.3em;
  text-indent: -1.2em;
}

.septic-tank__note li {
  margin-top: 1em;
}

.septic-tank__no {
  display: inline-block;
  margin-right: 10px;
}

.septic-tank__kome {
  font-size: 10px;
  vertical-align: super;
}

.septic-tank__img {
  text-align: center;
  width: 32%;
}

@media (max-width: 980px) {
  .septic-tank__img {
    display: flex;
    align-items: flex-end;
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
  }
}
@media (min-width: 981px) {
  .septic-tank__img div:not(:first-child) {
    margin-top: 15px;
  }
}
@media (max-width: 980px) {
  .septic-tank__img div:first-child {
    margin-right: 30px;
  }
}
@media (max-width: 400px) {
  .septic-tank__img div:first-child {
    margin-right: 15px;
  }
}
@media (max-width: 980px) {
  .septic-tank__img img {
    width: 300px;
  }
}
@media (max-width: 400px) {
  .septic-tank__img p {
    font-size: 14px;
  }
}
/*********************************************************
multibed-room.html
*********************************************************/
.multibed-room {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 810px) {
  .multibed-room {
    flex-direction: column-reverse;
  }
}
.multibed-room__table {
  width: 65%;
}

@media (max-width: 810px) {
  .multibed-room__table {
    margin-top: 30px;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .multibed-room__table {
    overflow: auto;
  }
}
.multibed-room__table table {
  width: 100%;
}

@media (max-width: 600px) {
  .multibed-room__table table {
    width: 600px;
  }
}
.multibed-room__table th,
.multibed-room__table td {
  border: 1px solid #333;
  font-size: 14px;
  padding: 10px;
  vertical-align: middle;
}

.multibed-room__table th {
  background: #f3f3f3;
  font-weight: bold;
  white-space: nowrap;
}

.multibed-room__table span {
  color: #f00;
}

.multibed-room__list li {
  margin-left: 1em;
  text-indent: -1em;
}

.multibed-room__img {
  text-align: center;
  width: 33%;
}

@media (max-width: 810px) {
  .multibed-room__img {
    width: 100%;
  }
}
/*********************************************************
operation.html
*********************************************************/
.grid {
  height: 650px;
  margin-top: 50px;
  position: relative;
}
@media (max-width: 900px) {
  .grid {
    overflow: auto;
  }
}

.grid__scroll {
  display: none;
}
@media (max-width: 830px) {
  .grid__scroll {
    display: flex;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 900px;
  }
}

.grid__right,
.grid__left {
  font-size: 14px;
  width: 50%;
}

.grid__right {
  text-align: left;
}

.grid__left {
  text-align: right;
}

.grid__inner {
  display: grid;
  grid-template-columns: 350px 50px 500px;
  margin: 0 auto;
  width: 900px;
}

.grid__1 {
  align-self: flex-end;
}
.grid__1 > div p {
  border: 1px solid #000;
  display: inline-block;
  text-align: center;
}
.grid__1 > div:first-child {
  position: relative;
}
.grid__1 > div:first-child::before {
  background: #000;
  content: "";
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  width: 50px;
  height: 2px;
}
.grid__1 > div:first-child p {
  padding: 10px;
  width: 100%;
}
.grid__1 > div:nth-child(2) {
  height: 15px;
  position: relative;
}
.grid__1 > div:nth-child(2)::before {
  background: #000;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
}
.grid__1 > div:nth-child(3) {
  background: #000;
  height: 2px;
  margin-left: 24px;
  width: calc(100% - 48px);
}
.grid__1 > div:nth-child(4) {
  display: flex;
  justify-content: space-between;
}
.grid__1 > div:nth-child(4) div {
  margin-top: 15px;
  position: relative;
  width: 50px;
  height: 50px;
}
.grid__1 > div:nth-child(4) div::before {
  background: #000;
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 15px;
}
.grid__1 > div:nth-child(4) p {
  font-size: 14px;
  line-height: 1.2;
  padding: 7px 5px 5px;
  width: 100%;
  height: 100%;
}

.grid__3 {
  display: grid;
  grid-template-columns: 200px 50px 250px;
}
.grid__3 > div p {
  background: #fff;
  border: 1px solid #000;
  display: inline-block;
  padding: 10px;
  text-align: center;
}
.grid__3 > div:nth-child(1) {
  grid-row: 1/2;
  grid-column: 1/4;
}
.grid__3 > div:nth-child(2) {
  grid-row: 2/3;
  grid-column: 1/3;
  height: 80px;
}
.grid__3 > div:nth-child(3) {
  grid-row: 2/3;
  grid-column: 3/4;
  align-self: center;
}
.grid__3 > div:nth-child(4) {
  grid-row: 3/4;
  grid-column: 1/2;
}
.grid__3 > div:nth-child(5) {
  grid-row: 3/4;
  grid-column: 2/3;
}
.grid__3 > div:nth-child(6) {
  grid-row: 3/4;
  grid-column: 3/4;
}
.grid__3 > div:nth-child(7) {
  grid-row: 4/5;
  grid-column: 1/4;
  height: 80px;
}
.grid__3 > div:nth-child(8) {
  grid-row: 5/6;
  grid-column: 1/2;
}
.grid__3 > div:nth-child(9) {
  grid-row: 5/6;
  grid-column: 2/3;
}
.grid__3 > div:nth-child(10) {
  grid-row: 5/6;
  grid-column: 3/4;
}
.grid__3 > div:nth-child(11) {
  grid-row: 6/7;
  grid-column: 1/4;
  height: 80px;
}
.grid__3 > div:nth-child(12) {
  grid-row: 7/8;
  grid-column: 1/4;
}
.grid__3 > div:nth-child(13) {
  grid-row: 9/10;
  grid-column: 1/4;
  height: 15px;
  position: relative;
}
.grid__3 > div:nth-child(13)::before {
  background: #000;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-1px);
  width: 2px;
  height: 100%;
}
.grid__3 > div:nth-child(14) {
  grid-row: 11/12;
  grid-column: 1/4;
  height: 10px;
  position: relative;
}
.grid__3 > div:nth-child(14)::before {
  background: #000;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
}
.grid__3 > div:nth-child(15) {
  grid-row: 12/13;
  grid-column: 1/4;
  display: flex;
  justify-content: center;
  height: 15px;
}
.grid__3 > div:nth-child(15) div {
  position: relative;
  text-align: center;
  width: 200px;
}
.grid__3 > div:nth-child(15) div::before {
  background: #000;
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-1px);
  width: 2px;
  height: 10px;
}
.grid__3 > div:nth-child(1) p, .grid__3 > div:nth-child(4) p, .grid__3 > div:nth-child(8) p {
  width: 150px;
}
.grid__3 > div:nth-child(2), .grid__3 > div:nth-child(7), .grid__3 > div:nth-child(11) {
  position: relative;
}
.grid__3 > div:nth-child(2)::before, .grid__3 > div:nth-child(7)::before, .grid__3 > div:nth-child(11)::before {
  background: #000;
  content: "";
  position: absolute;
  top: 0;
  left: 75px;
  transform: translateX(-1px);
  width: 2px;
  height: 100%;
}
.grid__3 > div:nth-child(3), .grid__3 > div:nth-child(6), .grid__3 > div:nth-child(10) {
  position: relative;
}
.grid__3 > div:nth-child(3)::before, .grid__3 > div:nth-child(6)::before, .grid__3 > div:nth-child(10)::before {
  background: #000;
  content: "";
  height: 2px;
  position: absolute;
  top: 50%;
}
.grid__3 > div:nth-child(3)::before {
  left: -175px;
  width: 175px;
}
.grid__3 > div:nth-child(6)::before, .grid__3 > div:nth-child(10)::before {
  left: -100px;
  width: 100px;
}
.grid__3 > div dl {
  display: flex;
}
.grid__3 > div dl dt,
.grid__3 > div dl dd {
  border-color: #000;
  border-style: solid;
  padding: 10px;
}
.grid__3 > div dl dt {
  border-width: 1px 0 1px 1px;
  text-align: center;
  writing-mode: vertical-rl;
}
.grid__3 > div dl dd {
  border-width: 1px;
  flex-grow: 1;
}
.grid__3 > div dl dd li {
  font-size: 14px;
}
.grid__3 > div dl dd li:not(:first-child) {
  margin-top: 0.5em;
}

/*********************************************************
news.html
*********************************************************/
.news__ttl {
  border-bottom: 1px solid #333;
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 5px;
}

.news__date {
  font-size: 14px;
  margin-top: 30px;
}

.news__body {
  margin-top: 30px;
}
.news__body p {
  font-size: 14px;
}
.news__body p:not(:first-child) {
  margin-top: 1em;
}

.news-menu {
  display: flex;
  justify-content: space-between;
  margin: 50px auto 0;
  max-width: 800px;
}
@media (max-width: 480px) {
  .news-menu {
    display: block;
  }
}

.news-menu__list {
  width: 49%;
}
@media (max-width: 480px) {
  .news-menu__list {
    width: 100%;
  }
}
.news-menu__list:last-child {
  text-align: center;
}
@media (max-width: 480px) {
  .news-menu__list:last-child {
    margin-top: 15px;
  }
}

.news-menu__ttl {
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 5px;
  text-align: center;
}

.news-menu__content {
  background: #eee;
  overflow: hidden;
  padding: 5px;
}
.news-menu__content a {
  display: block;
  font-size: 14px;
  overflow: hidden;
  padding: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-menu__content a:not(:last-child) {
  border-bottom: 1px dashed #999;
}

.pagination {
  display: flex;
  align-items: flex-start;
  text-align: center;
}

.blog-wrapper .pagination ul {
  margin-top: 60px;
}

.pagination li {
  display: inline-block;
}

.pagination a {
  background: #3bb0da;
  color: #FFF;
  display: block;
  font-size: 16px;
  padding: 5px 10px;
  text-decoration: none;
}

.pagination a:hover,
.pagination a.active {
  background: #186CB9;
}

#pagination {
  flex-grow: 1;
}

#pagination li {
  margin: 0 5px;
}

#prevpage {
  display: none;
}

#nextpage {
  display: none;
}

/*********************************************************
footer
*********************************************************/
.footer {
  background-image: url(image.php?id=015);
  background-position: 0 60%;
  background-size: cover;
  color: #fff;
  text-align: center;
}

@media (max-width: 480px) {
  .footer {
    background-position: bottom;
  }
}
.footer__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 1000px) {
  .footer__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}
@media (max-width: 480px) {
  .footer__inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.footer__txt {
  font-size: 18px;
}

@media (max-width: 480px) {
  .footer__txt {
    font-size: 16px;
  }
}
.footer__btn {
  background: #fff;
  border-radius: 10px;
  color: #257ea7;
  font-size: 14px;
  margin: 30px auto 0;
  position: relative;
  width: 280px;
}

.footer__btn a {
  display: block;
  padding: 10px;
  position: relative;
}

.footer__btn a:hover::before {
  right: 17px;
}

.footer__btn a:hover::after {
  right: 16px;
}

.footer__btn a::before, .footer__btn a::after {
  background: #257ea7;
  content: "";
  height: 2px;
  position: absolute;
  transition: 0.3s;
}

.footer__btn a::before {
  right: 10px;
  bottom: 18px;
  width: 30px;
}

.footer__btn a::after {
  right: 9px;
  bottom: 22px;
  transform: rotate(30deg);
  width: 15px;
}

.footer__copy {
  background: #fff;
  color: #333;
  font-size: 12px;
  padding: 5px 2px;
}