html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

@media screen and (min-width: 1440px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 1439px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 959px) {
  .sp {
    display: block;
  }
}

@media screen and (min-width: 1440px) {
  .tab {
    display: none;
  }
}
@media screen and (max-width: 1439px) {
  .tab {
    display: block;
  }
}

.center {
  text-align: center;
}

:root {
  --color-green: #00B09E;
  --color-orange: #F39700;
  --color-red: #D73B35;
  --color-black: #271F0D;
  --color-blue: #9ECFF3;
  --color-lblue: #E8F3FC;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  color: var(--color-black);
  font-size: 1.8rem;
  line-height: 30px;
}
@media screen and (max-width: 959px) {
  body {
    font-size: 1.6rem;
    line-height: 25px;
  }
}

h3 {
  font-size: 4rem;
}
@media screen and (max-width: 959px) {
  h3 {
    font-size: 2.2rem;
  }
}

h4 {
  font-size: 2.4rem;
}
@media screen and (max-width: 959px) {
  h4 {
    font-size: 2rem;
  }
}

.inner_13 {
  padding-inline: 13%;
}
@media screen and (max-width: 1439px) {
  .inner_13 {
    padding-inline: 9%;
  }
}
@media screen and (max-width: 959px) {
  .inner_13 {
    padding-inline: 4%;
  }
}

.inner_18 {
  padding-inline: 18%;
}
@media screen and (max-width: 1439px) {
  .inner_18 {
    padding-inline: 12%;
  }
}
@media screen and (max-width: 959px) {
  .inner_18 {
    padding-inline: 6%;
  }
}

header .kv {
  background-color: var(--color-blue);
}
@media screen and (max-width: 959px) {
  header .kv {
    padding-inline: 0;
    padding-top: 5rem;
  }
}
header .kv picture img {
  text-align: center;
  width: 100%;
}
header .fix-btn {
  position: fixed;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  transition: all 0.5s;
  z-index: 5;
  cursor: pointer;
  display: block;
}
header .fix-btn:hover {
  transform: scale(1) translateY(2px) translateX(2px);
}
@media screen and (max-width: 959px) {
  header .fix-btn {
    right: 10px;
    bottom: 10px;
    text-align: end;
  }
  header .fix-btn img {
    width: 50%;
    height: auto;
  }
}

.about {
  background-color: var(--color-blue);
  background: var(--color-blue);
  padding-bottom: 20rem;
}
@media screen and (max-width: 959px) {
  .about {
    padding-top: 5rem;
  }
}
.about .wrap-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 959px) {
  .about .wrap-box {
    grid-template-columns: unset;
    grid-template-rows: repeat(2, 1fr);
  }
}
.about .wrap-box .wrap-box_first,
.about .wrap-box .wrap-box_second {
  background-color: #FFFFFF;
  border-radius: 30px;
  transition: all 0.5s;
}
.about .wrap-box .wrap-box_first:hover,
.about .wrap-box .wrap-box_second:hover {
  transform: scale(1) translateY(2px) translateX(2px);
}
.about .wrap-box .wrap-box_first a,
.about .wrap-box .wrap-box_second a {
  padding: 60px 50px 20px;
  display: block;
  position: relative;
}
@media screen and (max-width: 959px) {
  .about .wrap-box .wrap-box_first a,
  .about .wrap-box .wrap-box_second a {
    padding: 30px 20px 20px;
  }
}
.about .wrap-box .wrap-box_first a .ttl,
.about .wrap-box .wrap-box_second a .ttl {
  font-size: 3.2rem;
  margin-bottom: 2rem;
  line-height: 42px;
}
@media screen and (max-width: 959px) {
  .about .wrap-box .wrap-box_first a .ttl,
  .about .wrap-box .wrap-box_second a .ttl {
    font-size: 2.4rem;
    line-height: 30px;
  }
}
.about .wrap-box .wrap-box_first a ul,
.about .wrap-box .wrap-box_second a ul {
  display: flex;
  flex-direction: column;
}
.about .wrap-box .wrap-box_first a ul li,
.about .wrap-box .wrap-box_second a ul li {
  font-size: 2.4rem;
  line-height: 2;
}
@media screen and (max-width: 959px) {
  .about .wrap-box .wrap-box_first a ul li,
  .about .wrap-box .wrap-box_second a ul li {
    font-size: 1.8rem;
    line-height: normal;
  }
}
.about .wrap-box .wrap-box_first a .vector,
.about .wrap-box .wrap-box_second a .vector {
  position: absolute;
  display: block;
  width: 42px;
  height: 42px;
  background-color: var(--color-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 25px;
  bottom: 16px;
}
@media screen and (max-width: 959px) {
  .about .wrap-box .wrap-box_first a .vector,
  .about .wrap-box .wrap-box_second a .vector {
    right: 10px;
    bottom: 10px;
    width: 30px;
    height: 30px;
  }
}
.about .wrap-box .wrap-box_first a .vector::before,
.about .wrap-box .wrap-box_second a .vector::before {
  content: "";
  background: url(../img/vector_white.png) no-repeat;
  transform: rotate(90deg);
  width: 24px;
  height: 22px;
  position: absolute;
}
@media screen and (max-width: 959px) {
  .about .wrap-box .wrap-box_first a .vector::before,
  .about .wrap-box .wrap-box_second a .vector::before {
    background-size: 70%;
    background-position: center;
  }
}
.about .wrap-box .wrap-box_first {
  position: relative;
  box-shadow: 5px 5px 0px 0px var(--color-green);
}
.about .wrap-box .wrap-box_first::before {
  content: "";
  position: absolute;
  background: url(../img/wrap-box_first.png) no-repeat;
  width: 248px;
  height: 91px;
  top: -33px;
  left: 20px;
  z-index: 2;
}
@media screen and (max-width: 959px) {
  .about .wrap-box .wrap-box_first::before {
    left: 0;
    background-size: 50%;
  }
}
.about .wrap-box .wrap-box_first .ttl {
  color: var(--color-green);
}
.about .wrap-box .wrap-box_second {
  position: relative;
  box-shadow: 5px 5px 0px 0px var(--color-orange);
}
.about .wrap-box .wrap-box_second::before {
  content: "";
  position: absolute;
  background: url(../img/wrap-box_second.png) no-repeat;
  width: 248px;
  height: 91px;
  top: -33px;
  left: 20px;
  z-index: 2;
}
@media screen and (max-width: 959px) {
  .about .wrap-box .wrap-box_second::before {
    left: 0;
    background-size: 50%;
  }
}
.about .wrap-box .wrap-box_second .ttl {
  color: var(--color-orange);
}
.about .wrap-box .wrap-box_second a .vector {
  background-color: var(--color-orange);
}
.about .des {
  margin-bottom: 10rem;
}
@media screen and (max-width: 959px) {
  .about .des {
    margin-bottom: 8rem;
    font-weight: 400;
  }
}
@media screen and (max-width: 959px) {
  .about .des span {
    font-weight: 800;
  }
}
.about .intro {
  color: #335895;
  font-size: 2.4rem;
  line-height: 2;
  margin-bottom: 10rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 959px) {
  .about .intro {
    font-size: 1.8rem;
    line-height: 1.4;
  }
}
.about .intro::before {
  position: absolute;
  content: "";
  background: url(../img/cloud.png) no-repeat;
  width: 203px;
  height: 89px;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 959px) {
  .about .intro::before {
    background-size: 50%;
    background-position: left bottom;
    bottom: -30%;
  }
}
.about .intro::after {
  position: absolute;
  content: "";
  background: url(../img/cloud.png) no-repeat;
  width: 203px;
  height: 89px;
  top: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 959px) {
  .about .intro::after {
    background-size: 70%;
    background-position: right top;
    top: -30%;
  }
}
.about .about_item {
  color: #FFFFFF;
  font-size: 4.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  line-height: 72px;
}
@media screen and (max-width: 959px) {
  .about .about_item {
    font-size: 2rem;
    gap: 0rem;
  }
}
.about .about_item img {
  display: block;
}
@media screen and (max-width: 959px) {
  .about .about_item img {
    width: 100%;
    height: auto;
  }
}

.schedule {
  background-color: var(--color-lblue);
  padding-bottom: 20rem;
  position: relative;
}
.schedule::before {
  position: absolute;
  display: block;
  margin: auto;
  content: "";
  top: -10.5rem;
  left: 0;
  width: 100%;
  height: 10.5rem;
  background: var(--color-lblue);
  -webkit-mask-image: url(../img/bg_mask.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  -webkit-mask-size: 100%;
  z-index: 1;
}
.schedule h4 {
  color: #335895;
  margin-bottom: 5rem;
  position: relative;
}
@media screen and (max-width: 959px) {
  .schedule h4 {
    margin-bottom: 10rem;
  }
}
.schedule h4::before {
  content: "";
  position: absolute;
  background: url(../img/schedule_img01.png) no-repeat;
  width: 220px;
  height: 117px;
  top: -15.5rem;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 959px) {
  .schedule h4::before {
    background-size: 65%;
    background-position: left;
  }
}
.schedule h4::after {
  content: "";
  position: absolute;
  background: url(../img/schedule_img02.png) no-repeat;
  width: 220px;
  height: 117px;
  top: -15.5rem;
  right: 0;
  z-index: 2;
}
@media screen and (max-width: 959px) {
  .schedule h4::after {
    background-size: 65%;
    background-position: right;
  }
}
.schedule .wrap-box_first,
.schedule .wrap-box_second {
  position: relative;
  max-width: 1100px;
  margin-inline: auto;
  padding-top: 70px;
  margin-top: -70px;
}
@media screen and (max-width: 1439px) {
  .schedule .wrap-box_first,
  .schedule .wrap-box_second {
    padding-top: 0;
    margin-top: 0;
  }
}
.schedule .wrap-box_first h2,
.schedule .wrap-box_second h2 {
  position: absolute;
  top: 25px;
  font-size: 4rem;
  color: #FFFFFF;
  border-radius: 30px;
  padding: 20px 68px;
  position: relative;
  text-align: center;
  padding-left: 20rem;
  line-height: 34px;
}
@media screen and (max-width: 1439px) {
  .schedule .wrap-box_first h2,
  .schedule .wrap-box_second h2 {
    font-size: 3.2rem;
    padding: 20px 10px;
  }
}
@media screen and (max-width: 959px) {
  .schedule .wrap-box_first h2,
  .schedule .wrap-box_second h2 {
    font-size: 2.4rem;
    text-align: center;
    padding: 20px 10px;
    top: 0;
  }
}
.schedule .wrap-box_first .wrap-box_content,
.schedule .wrap-box_second .wrap-box_content {
  padding: 58px 90px;
  background-color: #FFFFFF;
  border-radius: 30px;
}
@media screen and (max-width: 959px) {
  .schedule .wrap-box_first .wrap-box_content,
  .schedule .wrap-box_second .wrap-box_content {
    padding: 30px 20px;
  }
}
.schedule .wrap-box_first .wrap-box_content li,
.schedule .wrap-box_second .wrap-box_content li {
  margin-bottom: 3rem;
}
.schedule .wrap-box_first .wrap-box_content .company-box,
.schedule .wrap-box_second .wrap-box_content .company-box {
  display: grid;
  grid-template-columns: 9rem auto 1fr;
  gap: 40px;
}
@media screen and (max-width: 1439px) {
  .schedule .wrap-box_first .wrap-box_content .company-box,
  .schedule .wrap-box_second .wrap-box_content .company-box {
    grid-template-columns: unset;
    gap: 1rem;
  }
}
@media screen and (max-width: 959px) {
  .schedule .wrap-box_first .wrap-box_content .company-box:not(:last-child),
  .schedule .wrap-box_second .wrap-box_content .company-box:not(:last-child) {
    margin-bottom: 5rem;
  }
}
.schedule .wrap-box_first .wrap-box_content .company-box .time,
.schedule .wrap-box_second .wrap-box_content .company-box .time {
  font-size: 2.4rem;
}
.schedule .wrap-box_first .wrap-box_content .company-box .company-inner .name,
.schedule .wrap-box_second .wrap-box_content .company-box .company-inner .name {
  border-radius: 30px;
  color: #FFFFFF;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: start;
  padding-left: 2rem;
  line-height: 36px;
  white-space: nowrap;
}
@media screen and (max-width: 1439px) {
  .schedule .wrap-box_first .wrap-box_content .company-box .company-inner .name,
  .schedule .wrap-box_second .wrap-box_content .company-box .company-inner .name {
    width: -moz-fit-content;
    width: fit-content;
    line-height: normal;
  }
}
@media screen and (max-width: 959px) {
  .schedule .wrap-box_first .wrap-box_content .company-box .company-inner .name,
  .schedule .wrap-box_second .wrap-box_content .company-box .company-inner .name {
    flex-direction: column;
    padding-left: 0rem;
    padding: 0.5rem 15px;
    width: 100%;
  }
}
.schedule .wrap-box_first .wrap-box_content .company-box .company-inner .name .place,
.schedule .wrap-box_second .wrap-box_content .company-box .company-inner .name .place {
  font-size: 1.4rem;
  font-weight: 400;
  display: block;
}
.schedule .wrap-box_first .wrap-box_content .company-box .company-inner .intro,
.schedule .wrap-box_second .wrap-box_content .company-box .company-inner .intro {
  font-size: 1.8rem;
}
@media screen and (max-width: 959px) {
  .schedule .wrap-box_first .wrap-box_content .company-box .company-inner .intro,
  .schedule .wrap-box_second .wrap-box_content .company-box .company-inner .intro {
    margin-bottom: 2rem;
  }
}
.schedule .wrap-box_first .wrap-box_content .company-box .company-inner .tll,
.schedule .wrap-box_second .wrap-box_content .company-box .company-inner .tll {
  font-size: 1.6rem;
}
.schedule .wrap-box_first .wrap-box_content .company-box .company-inner .txt,
.schedule .wrap-box_second .wrap-box_content .company-box .company-inner .txt {
  margin-bottom: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 959px) {
  .schedule .wrap-box_first .wrap-box_content .company-box .company_img img,
  .schedule .wrap-box_second .wrap-box_content .company-box .company_img img {
    width: 100%;
    height: auto;
  }
}
.schedule .wrap-box_first .wrap-box_content .company-box.border .time,
.schedule .wrap-box_second .wrap-box_content .company-box.border .time {
  font-size: 1.8rem;
}
@media screen and (max-width: 959px) {
  .schedule .wrap-box_first .wrap-box_content .company-box.border .time,
  .schedule .wrap-box_second .wrap-box_content .company-box.border .time {
    font-size: 2.4rem;
  }
}
.schedule .wrap-box_first {
  margin-bottom: 14rem;
}
@media screen and (max-width: 959px) {
  .schedule .wrap-box_first {
    margin-bottom: 10rem;
    background-color: #fff;
    box-shadow: 5px 5px 0px 0px var(--color-green);
    border-radius: 30px;
  }
}
.schedule .wrap-box_first h2 {
  background-color: var(--color-green);
}
.schedule .wrap-box_first h2::before {
  content: "";
  position: absolute;
  display: block;
  background: url(../img/wrap-box_first-2.png) no-repeat;
  width: 248px;
  height: 91px;
  top: -50%;
  left: -3rem;
  z-index: 2;
}
@media screen and (max-width: 959px) {
  .schedule .wrap-box_first h2::before {
    background-size: 50%;
    left: 0;
    top: -35px;
  }
}
.schedule .wrap-box_first .wrap-box_content {
  box-shadow: 5px 5px 0px 0px var(--color-green);
}
@media screen and (max-width: 959px) {
  .schedule .wrap-box_first .wrap-box_content {
    box-shadow: none;
  }
}
.schedule .wrap-box_first .wrap-box_content .company-box .company-inner .name {
  background-color: var(--color-green);
}
.schedule .wrap-box_first .wrap-box_content .company-box .company-inner .intro {
  color: var(--color-green);
}
.schedule .wrap-box_first .wrap-box_content .company-box.border .time {
  position: relative;
  color: var(--color-green);
}
.schedule .wrap-box_first .wrap-box_content .company-box.border .time::before {
  content: "";
  position: absolute;
  left: 20%;
  width: 3px;
  top: 3rem;
  height: 90%;
  background: var(--color-green);
}
@media screen and (max-width: 1439px) {
  .schedule .wrap-box_first .wrap-box_content .company-box.border .time::before {
    display: block;
    left: -1rem;
    top: 50%;
    height: 2px;
    width: 1rem;
  }
}
@media screen and (max-width: 959px) {
  .schedule .wrap-box_second {
    background-color: #fff;
    box-shadow: 5px 5px 0px 0px var(--color-orange);
    border-radius: 30px;
  }
}
.schedule .wrap-box_second h2 {
  background-color: var(--color-orange);
}
.schedule .wrap-box_second h2::before {
  content: "";
  position: absolute;
  display: block;
  background: url(../img/wrap-box_second-2.png) no-repeat;
  width: 248px;
  height: 91px;
  top: -33px;
  left: 20px;
  z-index: 2;
  background-size: 90%;
}
@media screen and (max-width: 959px) {
  .schedule .wrap-box_second h2::before {
    background-size: 50%;
    left: 0;
    top: -35px;
  }
}
.schedule .wrap-box_second .wrap-box_content {
  box-shadow: 5px 5px 0px 0px var(--color-orange);
}
@media screen and (max-width: 959px) {
  .schedule .wrap-box_second .wrap-box_content {
    box-shadow: none;
  }
}
.schedule .wrap-box_second .company-box .company-inner .name {
  background-color: var(--color-orange);
}
.schedule .wrap-box_second .company-box .company-inner .intro {
  color: var(--color-orange);
}
.schedule .wrap-box_second .company-box.border .time {
  position: relative;
  color: var(--color-orange);
}
.schedule .wrap-box_second .company-box.border .time::before {
  content: "";
  position: absolute;
  left: 20%;
  width: 3px;
  top: 3rem;
  height: 90%;
  background: var(--color-orange);
  background-size: 90%;
}
@media screen and (max-width: 1439px) {
  .schedule .wrap-box_second .company-box.border .time::before {
    display: block;
    left: -1rem;
    top: 50%;
    height: 2px;
    width: 1rem;
  }
}

.overview {
  padding-bottom: 8.2rem;
  position: relative;
}
.overview::before {
  position: absolute;
  display: block;
  margin: auto;
  content: "";
  top: -10.5rem;
  left: 0;
  width: 100%;
  height: 10.5rem;
  background: #FFFFFF;
  -webkit-mask-image: url(../img/bg_mask.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  -webkit-mask-size: 100%;
  z-index: 1;
}
@media screen and (max-width: 959px) {
  .overview::before {
    top: -7rem;
    height: 7rem;
  }
}
.overview h3 {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.overview h3::before {
  position: absolute;
  content: "";
  background: url(../img/overview_bg1.png) no-repeat;
  width: 86px;
  height: 35px;
  display: block;
  bottom: 0;
  left: -20rem;
  z-index: 2;
}
@media screen and (max-width: 959px) {
  .overview h3::before {
    content: "";
    position: absolute;
    background: url(../img/schedule_img01.png) no-repeat;
    width: 220px;
    height: 117px;
    top: -13rem;
    left: -10rem;
    z-index: 2;
    background-size: 70%;
    background-position: left;
  }
}
.overview h3::after {
  position: absolute;
  content: "";
  background: url(../img/overview_bg2.png) no-repeat;
  width: 156px;
  height: 97px;
  display: block;
  bottom: 0;
  right: -20rem;
  z-index: 2;
}
@media screen and (max-width: 959px) {
  .overview h3::after {
    display: none;
  }
}
.overview .table_overview {
  margin-top: 8rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 959px) {
  .overview .table_overview {
    margin-top: 4rem;
  }
}
.overview .table_overview tbody {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.overview .table_overview tbody tr {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 959px) {
  .overview .table_overview tbody tr {
    flex-direction: column;
    gap: 10px;
  }
}
.overview .table_overview tbody tr th {
  background-color: var(--color-orange);
  border-radius: 30px;
  color: #FFFFFF;
  padding: 5px 20px;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  height: -moz-fit-content;
  height: fit-content;
  min-width: 10em;
}
@media screen and (max-width: 959px) {
  .overview .table_overview tbody tr th {
    min-width: 8rem;
    padding: 0px 10px;
  }
}
.overview .table_overview tbody tr td {
  font-weight: 400;
  font-size: 1.6rem;
}
.overview .table_overview tbody tr td span {
  color: var(--color-red);
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 959px) {
  .overview .table_overview tbody tr td span {
    font-size: 1.8rem;
  }
}
.overview .table_overview tbody tr .wrap-box {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 50px;
}
@media screen and (max-width: 959px) {
  .overview .table_overview tbody tr .wrap-box {
    flex-direction: column;
    gap: 10px;
  }
}
@media screen and (max-width: 959px) {
  .overview .table_overview tbody tr .wrap-box img {
    width: 100%;
    height: auto;
  }
}
.overview .list_overview {
  font-weight: 400;
}
.overview .list_overview li {
  margin-bottom: 10px;
}
.overview .attention {
  color: var(--color-red);
  margin-bottom: 10rem;
}
@media screen and (max-width: 959px) {
  .overview .attention {
    margin-bottom: 5rem;
  }
}
.overview .btn {
  max-width: 900px;
  margin-inline: auto;
  display: block;
  background-color: var(--color-red);
  color: #FFFFFF;
  border-radius: 30px;
  padding: 37px 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  transition: all 0.5s;
  margin-bottom: 6rem;
}
@media screen and (max-width: 959px) {
  .overview .btn {
    width: 100%;
    padding: 20px 20px;
  }
}
.overview .btn:hover {
  box-shadow: none;
  transform: scale(1) translateY(2px) translateX(2px);
}
.overview .btn span {
  display: block;
  font-size: 2.4rem;
}
@media screen and (max-width: 959px) {
  .overview .btn span {
    font-size: 1.6rem;
  }
}
.overview .btn .vector {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  background-color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 959px) {
  .overview .btn .vector {
    width: 30px;
    height: 30px;
  }
}
.overview .btn .vector::before {
  content: "";
  background: url(../img/vector_red.png) no-repeat;
  width: 24px;
  height: 22px;
  position: absolute;
}
@media screen and (max-width: 959px) {
  .overview .btn .vector::before {
    background-size: 70%;
    background-position: center;
  }
}
.overview .hojo {
  max-width: 624px;
  margin-inline: auto;
}
@media screen and (max-width: 959px) {
  .overview .hojo h4 {
    font-size: 1.8rem;
  }
}
.overview .hojo p {
  font-size: 1.6rem;
  font-weight: 400;
}
.overview .hojo a {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: right;
  text-decoration: underline;
  color: #335895;
}

.meeting {
  padding-top: 10rem;
  padding-bottom: 20rem;
  background-color: var(--color-blue);
  color: #FFFFFF;
}
.meeting .content_box {
  background-color: var(--color-green);
  padding: 50px 60px;
  border-radius: 30px;
}
@media screen and (max-width: 959px) {
  .meeting .content_box {
    padding: 25px 30px;
  }
}
.meeting .content_box h3 {
  color: #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  margin-bottom: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.meeting .content_box h3 .brown {
  display: inline-block;
  color: #FFF8A8;
  background-color: #69432F;
  border-radius: 30px;
  padding: 5px 20px;
  font-size: 2.4rem;
  margin-left: 3rem;
}
@media screen and (max-width: 959px) {
  .meeting .content_box h3 .brown {
    font-size: 1.6rem;
    margin-left: 0rem;
    margin-top: 10px;
  }
}
.meeting .content_box h3 .time {
  color: #FFF8A8;
  font-size: 3.2rem;
  margin-bottom: 20px;
  font-weight: 800;
  margin-top: 10px;
  display: block;
}
@media screen and (max-width: 959px) {
  .meeting .content_box h3 .time {
    font-size: 2.2rem;
    margin-left: 0rem;
  }
}
.meeting .content_box p {
  font-weight: 400;
  margin-bottom: 2rem;
}
.meeting .content_box p span {
  color: #FFF8A8;
  font-weight: 800;
}
.meeting .content_box .table_meeting {
  margin-bottom: 2rem;
}
.meeting .content_box .table_meeting tbody {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.meeting .content_box .table_meeting tbody tr {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 959px) {
  .meeting .content_box .table_meeting tbody tr {
    flex-direction: column;
    gap: 5px;
  }
}
.meeting .content_box .table_meeting tbody tr th {
  background-color: #FFFFFF;
  border-radius: 30px;
  color: var(--color-green);
  padding: 5px 20px;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  height: -moz-fit-content;
  height: fit-content;
  min-width: 150px;
}
@media screen and (max-width: 959px) {
  .meeting .content_box .table_meeting tbody tr th {
    min-width: 8rem;
    padding: 0px 10px;
  }
}
.meeting .content_box .table_meeting tbody tr td {
  font-weight: 400;
}
.meeting .content_box .btn {
  max-width: 400px;
  margin-inline: auto;
  display: block;
  background-color: #FFF8A8;
  color: var(--color-green);
  border-radius: 30px;
  padding: 20px 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  transition: all 0.5s;
}
@media screen and (max-width: 959px) {
  .meeting .content_box .btn {
    padding: 5px 20px;
  }
}
.meeting .content_box .btn:hover {
  box-shadow: none;
  transform: scale(1) translateY(2px) translateX(2px);
}
@media screen and (max-width: 959px) {
  .meeting .content_box .btn {
    width: 100%;
  }
}
.meeting .content_box .btn span {
  display: block;
  font-size: 2.4rem;
}
@media screen and (max-width: 959px) {
  .meeting .content_box .btn span {
    font-size: 1.6rem;
  }
}
.meeting .content_box .btn .vector {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  background-color: var(--color-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 959px) {
  .meeting .content_box .btn .vector {
    width: 30px;
    height: 30px;
  }
}
.meeting .content_box .btn .vector::before {
  content: "";
  background: url(../img/vector_white.png) no-repeat;
  width: 24px;
  height: 22px;
  position: absolute;
}
@media screen and (max-width: 959px) {
  .meeting .content_box .btn .vector::before {
    background-size: 70%;
    background-position: center;
  }
}

footer {
  position: relative;
  background: var(--color-lblue);
  padding-bottom: 8.2rem;
}
footer::before {
  position: absolute;
  display: block;
  margin: auto;
  content: "";
  top: -10.5rem;
  left: 0;
  width: 100%;
  height: 10.5rem;
  background: var(--color-lblue);
  -webkit-mask-image: url(../img/bg_mask.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  -webkit-mask-size: 100%;
  z-index: 1;
}
footer .inner_18 {
  text-align: center;
  z-index: 2;
}
footer .inner_18 dl dt {
  background-color: #69432F;
  color: #FFFFFF;
  border-radius: 3rem;
  padding: 0 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 1rem;
}
footer .inner_18 dl dd {
  margin-bottom: 3.6rem;
}
footer .inner_18 dl dd .address {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 400;
  font-size: 1.4rem;
  margin-top: 1.5rem;
}
footer .inner_18 dl dd .address a {
  display: inline-block;
  padding-right: 3.5rem;
}
footer .inner_18 .copylight {
  margin-top: 4rem;
  font-size: 1.2rem;
  font-weight: 400;
}
footer .page-top {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 24px;
  top: 40rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  border: 0;
  background: none;
  transition: 0.2s;
  color: var(--color-green);
  font-size: 1.8rem;
  font-weight: 700;
  z-index: 5;
}
@media screen and (max-width: 959px) {
  footer .page-top {
    right: 0px;
  }
}
footer .page-top .txt {
  writing-mode: vertical-rl;
  text-decoration: none;
  text-transform: uppercase;
  margin: 0;
  text-align: right;
  display: flex;
  align-items: center;
  gap: 6px;
}
footer .page-top .vector {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  background-color: var(--color-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .page-top .vector::before {
  content: "";
  background: url(../img/vector_white_top.png) no-repeat;
  width: 12px;
  height: 14px;
  position: absolute;
}
footer .is-active {
  opacity: 1;
  visibility: visible;
}/*# sourceMappingURL=style2025.css.map */