@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap");
a:link,
a:visited,
a:hover,
a:active,
a {
  text-decoration: none !important;
  color: inherit;
}

h1,
.h1-like {
  font-size: 22px;
  font-weight: 900;
}

.p-28 {
  font-size: 28px;
  font-weight: 900;
}

h2,
.h2-like {
  font-size: 30px;
  font-weight: 700;
}

.p-23 {
  font-size: 23px;
}

h3,
.h3-like {
  font-size: 21px;
  font-weight: 900;
}

h4,
.h4-like {
  font-size: 16px;
  font-weight: 700;
}

.p-large {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 180%;
}

p,
.p-like {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 180%;
}

.p-small {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 180%;
}

ul li, ol li {
  font-size: 14px;
}

@media screen and (min-width: 500px) {
  h1,
.h1-like {
    font-size: 28px;
  }

  .p-28 {
    font-size: 32px;
    font-weight: 900;
  }

  h2,
.h2-like {
    font-size: 34px;
  }

  .p-23 {
    font-size: 26px;
  }

  h3,
.h3-like {
    font-size: 24px;
  }

  h4,
.h4-like,
.p-large {
    font-size: 18px;
  }

  p,
.p-like {
    font-size: 16px;
  }

  .p-small {
    font-size: 14px;
  }

  ul li, ol li {
    font-size: 16px;
  }
}
.fw-900 {
  font-weight: 900;
}

.fw-700 {
  font-weight: 700;
}

.fw-500 {
  font-weight: 500;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

header {
  z-index: 900;
}
header .nav-container .nav-menu {
  display: none;
  margin: auto 0;
  list-style-type: "▷　";
  color: #ffffff;
}
header .nav-container .nav-menu li {
  display: list-item;
  position: relative;
  width: fit-content;
  margin: 0 0 20px 16px;
}
header .nav-container .nav-menu li a {
  color: #ffffff;
}
header .nav-container .nav-menu li a:hover {
  color: #E69249;
}
header .nav-container .nav-menu li a {
  width: fit-content;
  line-height: 200%;
}
header .nav-container .nav-menu .line-menu-button {
  width: 320px;
  max-width: 90%;
  box-sizing: border-box;
  margin: 30px auto;
  padding: 16px 10px;
  border: 2px solid #ffffff;
  background-color: #8EC020;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  z-index: 100;
}
header .nav-container .nav-menu .line-menu-button p {
  color: #ffffff;
  width: max-content;
}
header .nav-container .nav-menu .line-menu-button img {
  width: 40px;
  margin-right: 10px;
}
header .nav-container .nav-menu .line-menu-button:hover {
  opacity: 0.8;
}
header .nav-container.open-menu {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 910;
  animation: slidein 0.2s ease-in-out;
  background-color: #8EC020;
  border-left: 2px solid #E69249;
}
header .nav-container.open-menu .nav-menu {
  display: block;
  margin: 70px 0 0 0;
  padding-top: 7vh;
  padding-left: 40px;
  z-index: 101;
}
header .nav-container.open-menu .nav-menu::before {
  content: "";
  display: block;
  position: absolute;
  top: 2vw;
  left: 2vw;
  width: 100px;
  height: 70px;
  z-index: 102;
  background: url(../img/logo-b.svg) center no-repeat;
  background-size: contain;
}
@media screen and (min-width: 800px) {
  header .nav-container.open-menu {
    max-width: 400px;
  }
}
header .nav-container .hamburger {
  cursor: pointer;
  display: block;
  position: fixed;
  top: -31px;
  right: -31px;
  height: 105px;
  width: 105px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background-color: #8EC020;
  transform: rotate(0deg);
  transform-origin: bottom;
  transition: 0.5s ease-in-out;
  z-index: 901;
}
header .nav-container .hamburger:hover span, header .nav-container .hamburger:focus span {
  background-color: #E69249;
}
header .nav-container .hamburger:visited span {
  background-color: #ffffff;
}
header .nav-container .hamburger span {
  display: block;
  position: absolute;
  left: 0;
  height: 6px;
  width: 36px;
  background: #ffffff;
  opacity: 1;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
}
header .nav-container .hamburger span:nth-child(1) {
  bottom: 54px;
  left: 26px;
  transform-origin: left center;
}
header .nav-container .hamburger span:nth-child(2) {
  bottom: 42px;
  left: 26px;
  transform-origin: left center;
}
header .nav-container .hamburger span:nth-child(3) {
  bottom: 30px;
  left: 26px;
  transform-origin: left center;
}
header .nav-container .hamburger.active-ham {
  opacity: 1 !important;
  position: fixed;
  border: 3px solid #ffffff;
}
header .nav-container .hamburger.active-ham span {
  background: #ffffff;
}
header .nav-container .hamburger.active-ham span:nth-child(1) {
  transform: rotate(45deg);
  bottom: 52px;
  left: 26px;
}
header .nav-container .hamburger.active-ham span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
header .nav-container .hamburger.active-ham span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 26px;
  left: 26px;
}

@keyframes slidein {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0%);
  }
}
footer {
  width: 100%;
  align-items: center;
  color: #ffffff;
  background-color: #8EC020;
  padding: 10px 0;
}
footer .footer-logo {
  width: 59px;
  margin-bottom: 10px;
}
footer h3 {
  text-align: center;
}
footer .access-info {
  list-style-type: none;
  padding-left: 0;
  margin: 32px 0;
}
footer .access-info li {
  margin: 10px 0;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-size: 16px;
  color: #000000;
  font-family: source-han-sans-japanese, "source-han-sans-japanese", "Noto Sans JP", Noto Sans JP, YuGothic, "Yu Gothic", "Yu Gothic Medium", Meiryo, sans-serif;
  font-weight: 500;
  letter-spacing: 0.075rem;
  margin: 0 0 0 0;
  overflow-x: hidden;
}

main {
  margin: 0 auto;
  width: 100%;
  align-items: center;
  max-width: 800px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  font-family: source-han-sans-japanese, "source-han-sans-japanese", "Noto Sans JP", Noto Sans JP, YuGothic, "Yu Gothic", "Yu Gothic Medium", Meiryo, sans-serif;
}

.a-btn:link,
.a-btn:visited,
.a-btn:active,
.a-btn {
  border: 2px solid #E32727;
  background-color: #ffffff;
  color: #E32727;
  cursor: pointer;
  font-weight: 500;
  padding: 10px 20px;
}
.a-btn:link:hover,
.a-btn:visited:hover,
.a-btn:active:hover,
.a-btn:hover {
  border: 2px solid #E69249;
  color: #E69249;
  background-color: #78B146;
}

.submit-btn {
  appearance: unset;
  -webkit-appearance: unset;
  border: 2px solid #E32727;
  background-color: #ffffff;
  color: #E32727;
  cursor: pointer;
  font-weight: 500;
  padding: 10px 20px;
}
.submit-btn:hover {
  border: 2px solid #E69249;
  color: #E69249;
  background-color: #78B146;
}

.w901200 {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.width1400 {
  width: 1400px;
  max-width: 96%;
  margin: auto;
}

.width1200 {
  width: 1200px;
  max-width: 96%;
  margin: auto;
}

.width1000 {
  width: 1000px;
  max-width: 96%;
  margin: auto;
}

.width800 {
  width: 800px;
  max-width: 96%;
  margin: auto;
}

.width600 {
  width: 600px;
  max-width: 96%;
  margin: auto;
}

.table-container {
  max-width: 96%;
}
.table-container table {
  table-layout: auto;
  width: 100%;
  margin: clamp(40px, 10vw, 100px) auto;
}
.table-container table th, .table-container table td {
  font-weight: 500;
  border-top: 1px solid #E32727;
  border-bottom: 1px solid #E32727;
  padding: 24px 0;
  text-align: center;
}
.table-container table th.first-line, .table-container table td.first-line {
  border-top: 5px solid #E32727;
}
.table-container table th.last-line, .table-container table td.last-line {
  border-bottom: 5px solid #E32727;
}
.table-container table th {
  background-color: #F5F4E3;
  color: #ffffff;
  padding: 1vw;
}
.table-container table td {
  background-color: #ffffff;
}
.table-container table td a {
  width: fit-content;
  border-bottom: 1px solid #E32727;
  padding-bottom: 6px;
}
.table-container table td a a {
  color: #E32727;
}
.table-container table td a a:hover {
  color: #E69249;
}
.table-container table td ul {
  text-align: start;
}
@media screen and (max-width: 1600px) {
  .table-container table th, .table-container table td {
    font-size: 18px;
    padding: 20px 0;
  }
}
@media screen and (max-width: 1200px) {
  .table-container table th, .table-container table td {
    font-size: 16px;
    padding: 16px 0;
  }
}
@media screen and (max-width: 800px) {
  .table-container table {
    filter: drop-shadow(1px 1px 5px #E32727);
  }
  .table-container table th, .table-container table td {
    font-size: 14px;
    padding: 12px 0;
  }
}

.red-text {
  color: #E32727;
  font-size: 1.5em;
}

.green-text {
  color: #8EC020;
  font-size: 1.5em;
}

.orange-text {
  color: #E69249;
  font-size: 1.5em;
  font-weight: 900;
}

.grey-text {
  color: #707070;
}

.line-button {
  width: 360px;
  max-width: 90%;
  box-sizing: border-box;
  margin: 70px auto;
  padding: 16px 10px;
  background-color: #8EC020;
  justify-content: center;
  align-items: center;
  border-radius: 21px;
  z-index: 100;
}
.line-button p {
  color: #ffffff;
}
.line-button img {
  width: 65px;
  margin-right: 15px;
}
.line-button:hover {
  opacity: 0.8;
}

.fx-center-self {
  align-self: center;
  justify-self: center;
}

.fx-center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.fx-row {
  display: flex;
  flex-direction: row;
}

.fx-row-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.fx-row-rev {
  display: flex;
  flex-direction: row-reverse;
}

.fx-col {
  display: flex;
  flex-direction: column;
}

.fx-col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.block-break {
  display: inline-block;
}

@media screen and (min-width: 400px) {
  .max-400 {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  .min-400 {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .max-600 {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .min-600 {
    display: none;
  }
}
@media screen and (min-width: 800px) {
  .max-800 {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .min-800 {
    display: none;
  }
}

/*# sourceMappingURL=main.css.map */
