@charset "UTF-8";
/*
 * _setting.scss
 */
/*
 * _mixin.scss
 */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap");
@font-face {
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: local("Noto Sans CJK JP Thin"), url("/assets/fonts/NotoSansCJKjp-Thin.woff2") format("woff2"), url("/assets/fonts/NotoSansCJKjp-Thin.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Noto Sans CJK JP Light"), url("/assets/fonts/NotoSansCJKjp-Light.woff2") format("woff2"), url("/assets/fonts/NotoSansCJKjp-Light.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 350;
  font-display: swap;
  src: local("Noto Sans CJK JP DemiLight"), url("/assets/fonts/NotoSansCJKjp-DemiLight.woff2") format("woff2"), url("/assets/fonts/NotoSansCJKjp-DemiLight.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: local("Noto Sans CJK JP Regular"), url("/assets/fonts/NotoSansCJKjp-Regular.woff2") format("woff2"), url("/assets/fonts/NotoSansCJKjp-Regular.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Noto Sans CJK JP Medium"), url("/assets/fonts/NotoSansCJKjp-Medium.woff2") format("woff2"), url("/assets/fonts/NotoSansCJKjp-Medium.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Noto Sans CJK JP Bold"), url("/assets/fonts/NotoSansCJKjp-Bold.woff2") format("woff2"), url("/assets/fonts/NotoSansCJKjp-Bold.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: local("Noto Sans CJK JP Black"), url("/assets/fonts/NotoSansCJKjp-Black.woff2") format("woff2"), url("/assets/fonts/NotoSansCJKjp-Black.woff") format("woff");
}
/*
 * CSS disaster.css
 */
.disaster {
  margin-top: 20px;
}
.disaster_nav {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
}
.disaster_navWrap {
  background: #eeeeee;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .disaster_navWrap:nth-of-type(1) {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .disaster_navWrap:nth-of-type(2) {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .disaster_navWrap {
    padding: 20px 3%;
  }
}
.disaster_navWrap::before {
  content: "― 災害対策MENU ―";
  display: block;
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #333;
}
@media screen and (min-width: 769px) {
  .disaster_navWrap::before {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .disaster_nav {
    display: flex;
  }
}
.disaster_nav > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333;
}
@media screen and (min-width: 769px) {
  .disaster_nav > a {
    flex-basis: 50px;
  }
}
@media screen and (max-width: 768px) {
  .disaster_nav > a {
    height: 45px;
  }
}
@media screen and (min-width: 769px) {
  .disaster_nav > a span {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .disaster_nav > a span {
    font-weight: bold;
    font-size: 1.4rem;
  }
}
.disaster_nav > a::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/ico_home.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .disaster_nav > a::before {
    position: absolute;
    width: 20px;
    height: 20px;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-size: 70%;
  }
}
.disaster_nav > dl {
  position: relative;
}
@media screen and (min-width: 769px) {
  .disaster_nav > dl {
    flex-basis: 25%;
    border-left: 2px solid #eee;
  }
}
@media screen and (max-width: 768px) {
  .disaster_nav > dl {
    border-top: 1px solid #eee;
  }
}
.disaster_nav > dl dt {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: "Noto Sans CJK JP", sans-serif;
  font-weight: 700;
  color: #333;
}
@media screen and (min-width: 769px) {
  .disaster_nav > dl dt {
    height: 60px;
    padding-right: 10px;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .disaster_nav > dl dt {
    height: 45px;
    font-size: 14px;
  }
}
.disaster_nav > dl dt::before {
  content: "";
  display: block;
}
@media screen and (min-width: 769px) {
  .disaster_nav > dl dt::before {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .disaster_nav > dl dt::before {
    position: absolute;
    width: 20px;
    height: 20px;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.disaster_nav > dl dt i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
}
@media screen and (min-width: 769px) {
  .disaster_nav > dl dt i {
    display: none;
  }
}
.disaster_nav > dl dt i::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #333;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
}
.disaster_nav > dl dt i::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #333;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 0px;
  transform: translateX(-50%);
}
.disaster_nav > dl dt.is-visible i::after {
  display: none;
}
.disaster_nav > dl.-electricity dt::before {
  background: url(../img/ico_electricity.svg) no-repeat center/contain;
}
.disaster_nav > dl.-water dt::before {
  background: url(../img/ico_water.svg) no-repeat center/contain;
}
.disaster_nav > dl.-gas dt::before {
  background: url(../img/ico_gas.svg) no-repeat center/contain;
}
.disaster_nav > dl.-other dt::before {
  display: none;
}
@media screen and (min-width: 769px) {
  .disaster_nav > dl.-electricity:hover dt {
    background: rgba(103, 215, 127, 0.2);
  }
  .disaster_nav > dl.-water:hover dt {
    background: rgba(103, 198, 215, 0.2);
  }
  .disaster_nav > dl.-gas:hover dt {
    background: rgba(251, 180, 111, 0.2);
  }
  .disaster_nav > dl.-other:hover dt {
    background: rgba(153, 153, 153, 0.2);
  }
  .disaster_nav > dl.-other dt {
    border-radius: 0 10px 10px 0;
  }
}
@media screen and (max-width: 768px) {
  .disaster_nav > dl.-electricity dt.is-visible {
    background: rgba(103, 215, 127, 0.2);
  }
  .disaster_nav > dl.-water dt.is-visible {
    background: rgba(103, 198, 215, 0.2);
  }
  .disaster_nav > dl.-gas dt.is-visible {
    background: rgba(251, 180, 111, 0.2);
  }
  .disaster_nav > dl.-other dt.is-visible {
    background: rgba(153, 153, 153, 0.2);
  }
}
.disaster_nav > dl dd {
  z-index: 1;
  width: 100%;
  display: none;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .disaster_nav > dl dd {
    position: absolute;
  }
}
@media screen and (max-width: 768px) {
  .disaster_nav > dl dd {
    position: relative;
  }
}
.disaster_nav > dl dd.is-visible {
  display: block;
}
.disaster_nav > dl dd ul li {
  background: #fff;
}
.disaster_nav > dl dd ul li:first-child a {
  border: 1px solid #eee;
}
.disaster_nav > dl dd ul li:last-child, .disaster_nav > dl dd ul li:last-child a {
  border-radius: 0 0 10px 10px;
}
.disaster_nav > dl dd ul li a {
  border: 1px solid #eee;
  border-top: none;
  display: block;
  padding: 10px 10px;
  background: #fff;
  color: #333;
  text-decoration: none;
}
.disaster_nav > dl.-electricity dd ul li a:hover {
  background: rgba(103, 215, 127, 0.2);
}
.disaster_nav > dl.-water dd ul li a:hover {
  background: rgba(103, 198, 215, 0.2);
}
.disaster_nav > dl.-gas dd ul li a:hover {
  background: rgba(251, 180, 111, 0.2);
}
.disaster_nav > dl.-other dd ul li a:hover {
  background: rgba(153, 153, 153, 0.2);
}
.disaster_indexNav > dl + dl {
  margin-top: 40px;
}
.disaster_indexNav > dl > dt {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 20px;
  font-size: 2.4rem;
  font-weight: bold;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 768px) {
  .disaster_indexNav > dl > dt {
    font-size: 18px;
  }
}
.disaster_indexNav > dl > dt::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .disaster_indexNav > dl > dt::before {
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
  }
}
.disaster_indexNav > dl.-electricity dt::before {
  background: url(../img/ico_electricity.svg) no-repeat center/contain;
}
.disaster_indexNav > dl.-water dt::before {
  background: url(../img/ico_water.svg) no-repeat center/contain;
}
.disaster_indexNav > dl.-gas dt::before {
  background: url(../img/ico_gas.svg) no-repeat center/contain;
}
.disaster_indexNav > dl.-other dt::before {
  display: none;
}
.disaster_indexNav > dl > dd {
  margin-top: 20px;
}
.disaster_indexNav > dl > dd ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.disaster_indexNav > dl > dd ul::before, .disaster_indexNav > dl > dd ul::after {
  content: "";
  order: 2;
}
.disaster_indexNav > dl > dd ul::before, .disaster_indexNav > dl > dd ul::after,
.disaster_indexNav > dl > dd ul > li {
  flex-basis: 24%;
  margin-bottom: 1%;
}
@media screen and (max-width: 768px) {
  .disaster_indexNav > dl > dd ul::before, .disaster_indexNav > dl > dd ul::after,
  .disaster_indexNav > dl > dd ul > li {
    flex-basis: 49%;
    width: 49%;
  }
}
.disaster_indexNav > dl > dd ul > li {
  order: 1;
}
.disaster_indexNav > dl > dd ul > li a {
  transition: 0.4s ease-in-out;
  border: 3px solid #eee;
  border-radius: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: #333;
  padding: 20px 15px 10px;
}
@media screen and (max-width: 768px) {
  .disaster_indexNav > dl > dd ul > li a {
    padding: 10px 15px 10px;
  }
}
.disaster_indexNav > dl > dd ul > li a::before {
  content: "";
}
.disaster_indexNav > dl > dd ul > li a ._img1 {
  aspect-ratio: 1/1;
  width: 120px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .disaster_indexNav > dl > dd ul > li a ._img1 {
    width: 90px;
  }
}
.disaster_indexNav > dl > dd ul > li a ._img1 svg {
  width: 100%;
  height: 100%;
}
.disaster_indexNav > dl > dd ul > li a ._img1 svg .cls-1 {
  transition: 0.4s ease-in-out;
}
@media screen and (max-width: 768px) {
  .disaster_indexNav > dl > dd ul > li a ._img1 {
    margin-bottom: 5px;
  }
}
.disaster_indexNav > dl > dd ul > li a ._txt1 {
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .disaster_indexNav > dl > dd ul > li a ._txt1 {
    font-size: 14px;
  }
}
.disaster_indexNav > dl > dd ul > li a ._txt2 {
  margin-top: 5px;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .disaster_indexNav > dl > dd ul > li a ._txt2 {
    font-size: 10px;
  }
}
.disaster_indexNav > dl > dd ul > li a:hover {
  color: #fff;
}
.disaster_indexNav > dl > dd ul > li a:hover .cls-1 {
  fill: #fff;
}
.disaster_indexNav > dl.-electricity dd ul li a {
  background: rgba(103, 215, 127, 0.05);
}
.disaster_indexNav > dl.-water dd ul li a {
  background: rgba(103, 198, 215, 0.05);
}
.disaster_indexNav > dl.-gas dd ul li a {
  background: rgba(251, 180, 111, 0.05);
}
.disaster_indexNav > dl.-other dd ul li a {
  background: rgba(153, 153, 153, 0.05);
}
.disaster_indexNav > dl.-electricity .cls-1 {
  fill: #67d77f;
}
.disaster_indexNav > dl.-water .cls-1 {
  fill: #67c6d7;
}
.disaster_indexNav > dl.-gas .cls-1 {
  fill: #fbb46f;
}
.disaster_indexNav > dl.-other .cls-1 {
  fill: #999999;
}
.disaster_indexNav > dl.-electricity dd ul li a:hover {
  background: #67d77f;
}
.disaster_indexNav > dl.-water dd ul li a:hover {
  background: #67c6d7;
}
.disaster_indexNav > dl.-gas dd ul li a:hover {
  background: #fbb46f;
}
.disaster_indexNav > dl.-other dd ul li a:hover {
  background: #999999;
}
.disaster_indexNav > dl.-electricity dd ul li a {
  border-color: rgba(103, 215, 127, 0.6);
}
.disaster_indexNav > dl.-water dd ul li a {
  border-color: rgba(103, 198, 215, 0.6);
}
.disaster_indexNav > dl.-gas dd ul li a {
  border-color: rgba(251, 180, 111, 0.6);
}
.disaster_indexNav > dl.-other dd ul li a {
  border-color: rgba(153, 153, 153, 0.6);
}

article .section {
  color: #333;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  article .section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
article .sub_sec {
  padding: 40px 30px;
  padding: 30px 25px;
  border-bottom: 1px dashed #333;
  margin: 0 80px;
  margin: 0 40px;
}
@media screen and (max-width: 768px) {
  article .sub_sec {
    padding: 25px 5px;
    margin: 0;
  }
}
article .sub_sec:last-child {
  border-bottom: none;
}
article a:visited, article a:link {
  color: #333;
  text-decoration: none;
}
article a:hover {
  color: #333;
  text-decoration: underline;
}
article a.underline:active, article a.underline:visited, article a.underline:link {
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  article a.underline:hover {
    text-decoration: none;
  }
}

article #sec_0 {
  background: #FEE064;
  padding-top: 60px;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  article #sec_0 {
    padding-top: 40px;
  }
}
article #sec_0 .btn1 {
  margin: 0 auto 20px;
  max-width: 800px;
}

/* ---------------------------------------
title
--------------------------------------- */
article h2 {
  position: relative;
  text-align: center;
  font-weight: bold;
  margin-bottom: 36px;
}

article h2 span {
  position: relative;
  display: inline-block;
  padding: 0 50px;
  text-align: center;
  font-weight: bold;
  font-size: 1.85em; /*26px*/
  line-height: 60px;
}

article h2 span:before {
  content: "";
  display: block;
  width: 10px;
  height: 60px;
  border: 1px solid #333;
  border-right: none;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

article h2 span:after {
  content: "";
  display: block;
  width: 10px;
  height: 60px;
  border: 1px solid #333;
  border-left: none;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  article h2 {
    margin-bottom: 25px;
  }
  article h2 span {
    padding: 0 30px;
    font-size: 1.5em; /*21px*/
    line-height: 40px;
  }
  article h2 span:before {
    height: 40px;
  }
  article h2 span:after {
    height: 40px;
  }
}
article h3 {
  position: relative;
  text-align: center;
  font-weight: bold;
  font-size: 2.429em; /*34px*/
  padding-top: 80px;
  margin-bottom: 30px;
  line-height: 1.5;
}

article h3:before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background: url(../img/ico_1_yl.png) no-repeat center;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

article h3._2:before {
  background: url(../img/ico_2_yl.png) no-repeat center;
  background-size: 100%;
}

article h3._3:before {
  background: url(../img/ico_3_yl.png) no-repeat center;
  background-size: 100%;
}

@media screen and (max-width: 767px) {
  article h3 {
    font-size: 1.42em; /*20px*/
    padding-top: 55px;
    margin-bottom: 20px;
  }
  article h3:before {
    width: 46px;
    height: 46px;
  }
}
article h4 {
  position: relative;
  text-align: center;
  font-weight: bold;
  font-size: 1.42em; /*20px*/
  max-width: 800px;
  background: #fff;
  border: 2px solid #333;
  border-radius: 10px;
  line-height: 54px;
  margin: 70px auto 0;
  box-sizing: content-box;
}

article h4:before {
  content: "01";
  display: block;
  width: 74px;
  height: 54px;
  border-right: 2px solid #333;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

article h4._2:before {
  content: "02";
}

article h4._3:before {
  content: "03";
}

article h4._4:before {
  content: "04";
}

article h4:before {
  color: #67d77f;
}

article h4._2:before {
  color: #67c6d7;
}

article h4._3:before {
  color: #fbb46f;
}

article h4._4:before {
  color: #999999;
}

@media screen and (max-width: 767px) {
  article h4 {
    font-size: 1.14em; /*16px*/
    line-height: 35px;
  }
  article h4:before {
    width: 35px;
    height: 35px;
    font-size: 0.78em; /*11px*/
  }
}
article h5 {
  padding: 10px;
  background: #333;
  color: #FEE064;
  text-align: center;
  font-weight: bold;
  font-size: 1.42em; /*20px*/
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  article h5 {
    padding: 8px;
    font-size: 1.14em; /*16px*/
    margin-bottom: 15px;
  }
}
/* ---------------------------------------
txt
--------------------------------------- */
article .section .txt1 {
  text-align: center;
  font-weight: bold;
  font-size: 1.28em; /*18px*/
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  article .section .txt1 {
    text-align: left;
    font-size: 1.14em; /*16px*/
    margin-bottom: 20px;
  }
}
article .section .txt2 {
  margin-top: 10px;
  text-align: center;
  font-size: 1.07em; /*15px*/
}

@media screen and (max-width: 767px) {
  article .section .txt2 {
    text-align: left;
    font-size: 1em; /*14px*/
  }
}
article .section .txt3 {
  text-align: center;
  font-size: 1.42em; /*20px*/
}

article .section .txt3 span {
  padding: 0 5px;
  font-weight: bold;
  background: linear-gradient(rgba(255, 255, 255, 0) 35%, #FEE064 35%, #FEE064 80%, rgba(255, 255, 255, 0) 80%);
}

@media screen and (max-width: 767px) {
  article .section .txt3 {
    text-align: left;
    font-size: 1.14em; /*16px*/
  }
}
article .section .txt4 {
  margin-top: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 1.14em; /*16px*/
  margin-bottom: 15px;
}

article .section .txt4 span {
  padding: 0 5px;
  font-weight: bold;
  background: linear-gradient(rgba(255, 255, 255, 0) 35%, #FEE064 35%, #FEE064 80%, rgba(255, 255, 255, 0) 80%);
}

@media screen and (max-width: 767px) {
  article .section .txt4 {
    text-align: left;
    font-size: 1em; /*14px*/
  }
}
article .section .txt5 {
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
  font-size: 0.92em; /*13px*/
}

@media screen and (max-width: 767px) {
  article .section .txt5 {
    text-align: left;
  }
}
.marker {
  background: linear-gradient(rgba(255, 255, 255, 0) 35%, #FEE064 35%, #FEE064 80%, rgba(255, 255, 255, 0) 80%);
}

/* ---------------------------------------
btn1
--------------------------------------- */
a.link1 {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  color: #333;
}

a.link1:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url(../img/ico_arrow1.png) no-repeat center;
  background-size: 100%;
  position: absolute;
  top: 5px;
  left: 0;
}

a.btn1 {
  position: relative;
  display: block;
  background: #eee;
  padding: 0 40px;
  border-radius: 10px;
  line-height: 77px;
  line-height: 57px;
  text-align: center;
  font-weight: bold;
  font-size: 1.14em; /*16px*/
  transition: 0.4s;
  color: #333;
}
@media screen and (max-width: 768px) {
  a.btn1 {
    padding: 15px 10px 40px;
    line-height: 1.4;
    font-size: 0.92em; /*13px*/
  }
}
a.btn1 + a.btn1 {
  margin-top: 10px;
}
a.btn1:hover {
  text-decoration: none !important;
  opacity: 0.7;
}
a.btn1:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url(../img/ico_arrow1.png) no-repeat center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  a.btn1:before {
    top: auto;
    bottom: 8px;
    left: 50%;
    transform: translateY(0);
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) {
  a.btn1._pdf:before {
    margin-left: -10px;
  }
}
a.btn1._pdf:after {
  content: "";
  display: block;
  width: 15px;
  height: 19px;
  background: url(../img/ico_pdf.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  a.btn1._pdf:after {
    width: 15px;
    height: 15px;
    top: auto;
    bottom: 8px;
    left: 50%;
    transform: translateY(0);
    transform: translateY(-50%);
    margin-left: 10px;
  }
}

/* ---------------------------------------
dl
--------------------------------------- */
.dl1 {
  margin-top: 20px;
  border: 2px solid #333;
  border-radius: 10px;
}

.dl1 dl {
  padding: 20px;
}

.dl1 dl + dl {
  border-top: 1px solid #333;
}

.dl1 dl dt {
  position: relative;
  padding-left: 30px;
  font-weight: bold;
  font-size: 1.14em; /*16px*/
}

.dl1 dl dt:before {
  box-sizing: border-box;
  content: "1";
  display: inline-block;
  width: 18px;
  height: 18px;
  padding: 2px;
  background: #FEE064;
  border: 1px solid #333;
  position: absolute;
  top: 5px;
  left: 0;
  text-align: center;
  line-height: 1;
  font-size: 0.78em; /*11px*/
}

.dl1 dl dt._2:before {
  content: "2";
}

.dl1 dl dt._3:before {
  content: "3";
}

.dl1 dl dt._4:before {
  content: "4";
}

.dl1 dl dd {
  position: relative;
  padding-left: 30px;
  padding-top: 10px;
  font-weight: bold;
  font-size: 1.07em; /*15px*/
}

@media screen and (max-width: 767px) {
  .dl1 dl {
    padding: 15px;
  }
  .dl1 dl dt {
    padding-left: 25px;
    font-size: 1em; /*14px*/
  }
  .dl1 dl dt:before {
    top: 4px;
  }
  .dl1 dl dd {
    padding-left: 25px;
    padding-top: 10px;
    font-size: 1em; /*14px*/
  }
}
.dl2 {
  padding: 15px 20px;
  border: 3px solid red;
  border-radius: 10px;
  margin: 30px auto;
}
.dl2 dl > dt {
  font-weight: bold;
  font-size: 1.2em;
  color: #f00;
}
.dl2 dl > dd ul {
  margin-top: 6px;
}
.dl2 dl > dd ul li {
  font-weight: bold;
  margin-left: 1em;
  text-indent: -1em;
  font-size: 1.1em;
}
.dl2 dl > dd ul li::before {
  content: "●";
  color: #FEE064;
  color: red;
}

.step {
  padding: 15px 20px;
  background: rgba(238, 238, 238, 0.3);
  border-radius: 10px;
  margin: 30px auto;
}
.step dl > dt {
  font-weight: bold;
  font-size: 1.1em;
}
.step dl > dd ul {
  margin-top: 6px;
}
.step dl > dd ul li {
  font-size: 1.1em;
}
.step dl > dd ul li span {
  font-weight: bold;
}

/* ---------------------------------------
ul
--------------------------------------- */
.ul1 {
  margin-top: 20px;
  border: 2px solid #333;
  border-radius: 10px;
}

.ul1 ul {
  /*padding: 20px;*/
}

.ul1 ul li {
  position: relative;
  padding: 20px 20px 20px 50px;
  font-weight: bold;
  font-size: 1.14em; /*16px*/
}

.ul1 li + li {
  border-top: 1px solid #333;
}

.ul1 ul li:before {
  box-sizing: border-box;
  content: "1";
  display: inline-block;
  width: 18px;
  height: 18px;
  padding: 2px;
  background: #FEE064;
  border: 1px solid #333;
  position: absolute;
  top: 25px;
  left: 20px;
  /*transform: translateY(-50%);*/
  text-align: center;
  line-height: 1;
  font-size: 0.78em; /*11px*/
}

.ul1 ul li._2:before {
  content: "2";
}

.ul1 ul li._3:before {
  content: "3";
}

.ul1 ul li._4:before {
  content: "4";
}

@media screen and (max-width: 767px) {
  .ul1 ul li {
    padding: 10px 10px 10px 40px;
    font-size: 1em; /*14px*/
  }
  .ul1 ul li:before {
    top: 15px;
    left: 15px;
  }
}
/* ---------------------------------------
table
--------------------------------------- */
.table1 {
  margin-top: 20px;
}

.table1_title {
  font-weight: bold;
  padding-left: 10px;
  margin-bottom: 10px;
  font-size: 1.1em;
  margin-top: 30px;
}

.table1 table {
  width: 100%;
}

.table1 table th,
.table1 table td {
  background: #eee;
  padding: 10px 15px;
  border: 4px solid #fff;
  word-break: break-all;
}

.table1 table th {
  text-align: center;
  font-weight: bold;
  font-size: 1.14em; /*16px*/
  width: 250px;
}

.table1 table tr:first-child th {
  border-top-left-radius: 15px;
}

.table1 table tr:first-child td {
  border-top-right-radius: 15px;
}

.table1 table tr:last-child th {
  border-bottom-left-radius: 15px;
}

.table1 table tr:last-child td {
  border-bottom-right-radius: 15px;
}

@media screen and (max-width: 767px) {
  .table1 table th,
  .table1 table td {
    display: block;
    padding: 8px 10px;
    border: 1px solid #fff;
  }
  .table1 table th {
    display: block;
    width: auto;
    border-top: 4px solid #fff;
  }
  .table1 table th {
    font-size: 1em; /*14px*/
  }
  .table1 table tr:first-child th,
  .table1 table tr:first-child td,
  .table1 table tr:last-child th,
  .table1 table tr:last-child td {
    border-radius: 0;
  }
  .table1 table tr:first-child th {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }
  .table1 table tr:last-child td {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}
/* ---------------------------------------
table
--------------------------------------- */
.table2 {
  margin-top: 20px;
}

.table2 table {
  width: 100%;
}

.table2 table th,
.table2 table td {
  background: #eee;
  padding: 10px 15px;
  border: 4px solid #fff;
  border-width: 2px 4px;
}

.table2 table tr._b4 th,
.table2 table tr._b4 td {
  border-top: 4px solid #fff;
}

.table2 table th {
  text-align: center;
  font-weight: bold;
  font-size: 1.14em; /*16px*/
}

.table2 table td {
  font-size: 1.07em; /*15px*/
}

.table2 table tbody tr td:last-child {
  text-align: center;
  font-weight: bold;
}

.table2 table ._br1 {
  border-radius: 15px 0 0 0;
}

.table2 table ._br2 {
  border-radius: 0 15px 0 0;
}

.table2 table ._br3 {
  border-radius: 0 0 0 15px;
}

.table2 table ._br4 {
  border-radius: 0 0 15px 0;
}

@media screen and (max-width: 767px) {
  .table2 table th,
  .table2 table td {
    padding: 8px 10px;
  }
  .table2 table th {
    font-size: 1em; /*14px*/
  }
  .table2 table td {
    font-size: 1em; /*14px*/
  }
  .table2 table tbody tr td:last-child {
    white-space: nowrap;
  }
}
/* ---------------------------------------
sec1
--------------------------------------- */
#sec_0 .s1_img1 {
  margin-top: 40px;
}

/* ---------------------------------------
sec2
--------------------------------------- */
.ul2 {
  max-width: 740px;
  margin: 20px auto 0;
  border: 2px solid #333;
  border-radius: 10px;
}

.ul2 ul {
  display: flex;
}

.ul2 ul li {
  flex-basis: 50%;
}

.ul2 ul li a {
  position: relative;
  display: block;
  padding: 40px 20px 50px;
  background: #eee;
  border-radius: 0 10px 10px 0;
  text-align: center;
  transition: 0.4s;
}

.ul2 ul li a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.ul2 ul li:first-child a {
  border-right: 1px solid #ccc;
  border-radius: 10px 0 0 10px;
}

.ul2 ul li a:after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url(../img/ico_arrow2.png) no-repeat center;
  background-size: 100%;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.ul2 ul li a img {
  height: 170px;
}

.ul2 ul li a p {
  margin-top: 20px;
  font-weight: bold;
  font-size: 0.92em; /*13px*/
}

@media screen and (max-width: 767px) {
  .ul2 {
    max-width: 80%;
  }
  .ul2 ul {
    display: block;
  }
  .ul2 ul li a {
    padding: 30px 10px 40px;
    border-radius: 0 0 10px 10px;
  }
  .ul2 ul li:first-child a {
    border-right: none;
    border-bottom: 1px solid #ccc;
    border-radius: 10px 10px 0 0;
  }
  .ul2 ul li a:after {
    bottom: 15px;
  }
  .ul2 ul li a img {
    height: 150px;
  }
  .ul2 ul li a p {
    margin-top: 15px;
  }
}
/* ---------------------------------------
sec3
--------------------------------------- */
.ul3 {
  margin: 50px auto 0;
  max-width: 540px;
}

.ul3 ul li a {
  display: block;
  position: relative;
  padding: 3px 3px 3px 25px;
  font-size: 1.14em; /*16px*/
}

.ul3 ul li a:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url(../img/ico_arrow1.png) no-repeat center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .ul3 {
    margin: 30px auto 0;
  }
  .ul3 ul li a {
    font-size: 1em; /*14px*/
  }
  .ul3 ul li a:before {
    top: 8px;
    transform: translateY(0);
  }
}
.maintenance_btn {
  display: block;
  position: relative;
  color: #333;
  text-decoration: none;
  border: 2px solid #333;
  background: #fff;
  border-radius: 15px;
  line-height: 1;
  padding: 20px 50px;
  font-size: 1.2em;
  font-weight: bold;
  transition: 0.4s;
  text-align: center;
  margin-top: 30px;
  font-weight: bold !important;
  text-decoration: none !important;
}

.maintenance_btn:hover {
  opacity: 0.6;
}

.maintenance_btn:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/ico_arrow3.png) no-repeat 0 0;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.maintenance_btn:before {
  content: "";
  display: block;
  width: 44px;
  height: 30px;
  background: url(../img/ico_maintenance.png) no-repeat 0 0;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .maintenance_btn {
    line-height: 1.6;
    padding: 10px 50px;
    font-size: 1em;
  }
  .maintenance_btn:after {
    width: 15px;
    height: 15px;
    right: 10px;
  }
  .maintenance_btn:before {
    width: 34px;
    height: 26px;
    left: 15px;
  }
}
.movie1 {
  margin: 30px auto 0;
}
@media screen and (min-width: 769px) {
  .movie1 {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 769px) {
  .movie1_video {
    width: 300px;
  }
}
.movie1_video img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .movie1_txt {
    padding-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .movie1_txt {
    margin-top: 20px;
  }
}
.movie1_txt > p {
  font-weight: bold;
  font-size: 1.2em;
}
.movie1_txt > dl {
  margin-top: 15px;
}
@media screen and (min-width: 769px) {
  .movie1_txt > dl {
    display: flex;
    align-items: center;
  }
}
.movie1_txt > dl > dt {
  background: #FEE064;
  width: fit-content;
  line-height: 1;
  padding: 7px 15px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .movie1_txt > dl > dd {
    margin-top: 5px;
  }
}
.movie1_txt > dl > dd ul {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .movie1_txt > dl > dd ul {
    margin-left: 20px;
  }
}
.movie1_txt > dl > dd ul li {
  margin-right: 10px;
}

.youtube {
  position: relative;
  width: 100%;
  padding: 56.25% 0 0 0;
}

.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=style.css.map */