@charset "UTF-8";
html, body {
  height: 100%;
}

body {
  font-family: "メイリオ", "Meiryo", sans-serif;
}

body:has(.modal_wrap.isShow) {
  overflow: hidden;
}

.outer {
  background-color: #b6eab6;
  height: 100%;
  min-height: 100%;
  padding: 3.2rem 0 16rem;
}

body > .outer {
  height: auto; /* 要素を超えた分の背景が伸びないブラウザ用 */
}

.inner {
  background-color: #efefef;
  max-width: 1200px;
  margin: 0 auto;
}

h1 {
  font-size: 4rem;
  padding: 1rem 1rem 1rem 6rem;
  color: #1e5f68;
  position: relative;
  display: inline-block;
}

h1:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../img/favicon.ico);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 26%;
  left: 1rem;
}

header ul {
  display: flex;
  top: 0;
}
header ul li {
  width: 50%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  list-style: none;
  font-size: 2.4rem;
  letter-spacing: 0.2rem;
  text-align: center;
  color: #1e5f68;
  background-color: #efefef;
  border: solid 1px #1e5f68;
  transition: 0.5s;
  cursor: pointer;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}
header ul li.isSelected {
  color: #efefef;
  background: #1e5f68;
  pointer-events: none;
  cursor: auto;
}
header ul li:hover {
  color: #efefef;
  background: #1e5f68;
}

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  color: #efefef;
  background-color: #1e5f68;
  padding: 2rem 1.8rem 2rem;
  width: 100%;
  text-align: center;
  letter-spacing: 0.1rem;
}
footer h3 {
  font-size: 2rem;
  position: relative;
  display: inline-block;
}
footer h3:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../img/favicon.ico);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translateY(20%);
  left: -3rem;
}
footer p {
  font-style: 1.3rem;
  line-height: 2rem;
}

footer:before {
  content: "";
  width: 100%;
  height: 0.5rem;
  display: inline-block;
  background-color: #b6eab6;
  position: absolute;
  top: -0.5rem;
  left: 0;
}

.horizon {
  display: block;
  width: 100%;
  height: 2rem;
  background-color: yellowgreen;
}

.bold {
  font-style: bold;
}

#main_view .view {
  padding: 3rem 1.8rem;
  font-size: 1.8rem;
}
#main_view .view_1 h2 {
  color: #1e5f68;
  font-size: 2.4rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 1.2rem;
}
#main_view .view_1 h2:after {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: inline-block;
  background-color: #1e5f68;
  position: absolute;
  bottom: 0;
  left: 0;
}
#main_view .view_1 h2:nth-child(n+2) {
  margin-top: 4rem;
}
#main_view .view_1 h3 {
  font-weight: bold;
  font-size: 2rem;
}
#main_view .view_1 h3.mt {
  margin-top: 2rem;
}
#main_view .view_2 ul {
  display: flex;
  flex-wrap: wrap;
  width: 86%;
  margin: 0 auto;
}
#main_view .view_2 ul li {
  display: flex;
  padding: 1.2rem 1.8rem;
  width: 49%;
  box-shadow: 1px 1px 5px rgba(107, 107, 107, 0.2);
  cursor: pointer;
}
#main_view .view_2 ul li span {
  font-weight: bold;
  color: #1e5f68;
}
#main_view .view_2 ul li span.img_wrap {
  width: 30%;
  margin-left: auto;
  padding-right: 2rem;
}
#main_view .view_2 ul li:nth-child(2n) {
  margin-left: 2%;
}
#main_view .view_2 ul li:nth-child(n+3) {
  margin-top: 2%;
}
#main_view .view_3 dl {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  border-collapse: collapse;
  border: solid 0.05rem #b6eab6;
}
#main_view .view_3 dl dt {
  width: 160px;
  background-color: #1e5f68;
  color: #efefef;
}
#main_view .view_3 dl dd {
  width: calc(100% - 160px);
}
#main_view .view_3 dl dt:nth-child(n+2) {
  border-top: solid 0.05rem #b6eab6;
}
#main_view .view_3 dl dd:nth-child(n+2) {
  border-top: solid 0.05rem #b6eab6;
}
#main_view .view_3 dl dt, #main_view .view_3 dl dd {
  padding: 1rem 1.2rem;
}
#main_view .view_4 dt {
  color: #1e5f68;
  font-size: 2.4rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 1.2rem;
}
#main_view .view_4 dt:after {
  content: "";
  width: 100%;
  height: 0.3rem;
  display: inline-block;
  background-color: #1e5f68;
  position: absolute;
  bottom: 0;
  left: 0;
}
#main_view .view_4 dt:nth-child(n+2) {
  margin-top: 2rem;
}

.modal_wrap {
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  z-index: 999;
  transition: 0.5s;
  padding: 0 20px;
}
.modal_wrap .modal_area {
  align-items: center;
  justify-content: center;
  height: 92vh;
  background-color: #fff;
  border-radius: 7.5px;
  max-width: 926px;
  padding: 25px 5.44872% 40px;
  margin: auto;
  position: relative;
  z-index: 999;
  overflow-y: auto;
}
.modal_wrap .modal_area .close_wrap {
  order: 1;
  width: 23px;
  height: 23px;
  margin-left: auto;
  transform: translateY(5px) translateX(92%);
}
.modal_wrap .modal_area .close_wrap .close {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
}
.modal_wrap .modal_area .txt_wrap {
  order: 2;
  margin-top: 3.6%;
  font-family: source-han-sans-japanese, sans-serif;
  font-style: normal;
}
.modal_wrap .modal_area .txt_wrap h4 {
  display: inline-block;
  background-color: #1e5f68;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 3.4px;
  letter-spacing: 0.1rem;
}
.modal_wrap .modal_area .txt_wrap .content {
  margin-top: 3.2%;
  font-size: 1.6rem;
  line-height: 28px;
  padding: 1em 0;
}
.modal_wrap .modal_area .txt_wrap .modal_img {
  margin-top: 3.2%;
  width: 100%;
}

.modal_wrap.isShow {
  opacity: 1;
  -webkit-user-select: initial;
     -moz-user-select: initial;
          user-select: initial;
  pointer-events: initial;
  background-color: rgba(30, 95, 104, 0.4);
}

@media screen and (max-width: 768px) {
  .outer {
    padding: 1.2rem 0 14rem;
  }
  .horizon {
    height: 1.2rem;
  }
  h1 {
    font-size: 2.8rem;
    padding: 0.8rem 1rem 0.8rem 4.8rem;
    display: none;
  }
  h1:before {
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    top: 24%;
    left: 0.8rem;
  }
  footer {
    padding: 2rem 1.4rem 2.8rem;
  }
  footer h3 {
    font-size: 2rem;
  }
  footer h3:before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    top: 0.4rem;
    left: -2.5rem;
  }
  footer p {
    font-style: 1.4rem;
  }
  footer:before {
    height: 0.3rem;
    top: -0.3rem;
  }
  header ul {
    flex-wrap: wrap;
  }
  header ul li {
    width: 50%;
    font-size: 2rem;
  }
  #main_view .view {
    padding: 2.4rem 1.4rem;
    font-size: 1.6rem;
  }
  #main_view .view_1 h2 {
    color: #1e5f68;
    font-size: 2rem;
    font-weight: bold;
    position: relative;
    margin-bottom: 1.2rem;
  }
  #main_view .view_1 h3 {
    font-size: 1.6rem;
  }
  #main_view .view_1 h3.mt {
    margin-top: 2rem;
  }
  #main_view .view_2 ul {
    width: 92%;
  }
  #main_view .view_2 ul li {
    padding: 1.2rem 1.8rem;
    width: 100%;
  }
  #main_view .view_2 ul li span.img_wrap {
    width: 25%;
    padding-right: 0rem;
    padding: 0.25rem;
  }
  #main_view .view_2 ul li:nth-child(n+2) {
    margin-top: 1.6rem;
  }
  #main_view .view_2 ul li:nth-child(2n) {
    margin-left: 0;
  }
  #main_view .view_3 dl {
    max-width: 880px;
  }
  #main_view .view_3 dl dt {
    width: 100px;
  }
  #main_view .view_3 dl dd {
    width: calc(100% - 100px);
  }
  #main_view .view_3 dl dt:nth-child(n+2) {
    border-top: solid 0.05rem #b6eab6;
  }
  #main_view .view_3 dl dd:nth-child(n+2) {
    border-top: solid 0.05rem #b6eab6;
  }
  #main_view .view_3 dl dt, #main_view .view_3 dl dd {
    padding: 0.8rem 1rem;
  }
  #main_view .view_4 dt {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }
  #main_view .view_4 dt:nth-child(n+2) {
    margin-top: 2rem;
  }
  .modal_wrap {
    padding: 0;
  }
  .modal_wrap .modal_area {
    border-radius: 5.7px;
    width: 92%;
    height: calc(100% - 120px);
    margin: auto auto 80px;
    padding: 18px 4% 28px;
  }
  .modal_wrap .modal_area .close_wrap {
    width: 20px;
    height: 20px;
    transform: none;
  }
  .modal_wrap .close_wrap {
    width: 20px;
    height: 20px;
    transform: none;
  }
  .modal_wrap .txt_wrap {
    margin-top: 10px;
  }
  .modal_wrap .txt_wrap h4 {
    font-size: 1.6rem;
    padding: 0.4rem 1rem;
  }
  .modal_wrap .txt_wrap .content {
    margin-top: 2rem;
    overflow-y: auto;
    font-size: 1.4rem;
    line-height: 2.1rem;
    padding: 0.8rem 0;
  }
}/*# sourceMappingURL=style.css.map */