@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*color*/
html {
  font-size: 62.5%;
}
@media (width < 767px) {
  html {
    scroll-padding-top: 60px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #333;
  -webkit-text-size-adjust: 100%;
  line-height: 1.7;
  letter-spacing: 0.025em;
}
@media (width < 767px) {
  body {
    font-size: 1.5rem;
  }
}

a {
  color: #0088B2;
}

a:visited {
  color: #0088B2;
}

.pc {
  display: block !important;
}
@media (width < 767px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media (width < 767px) {
  .sp {
    display: block !important;
  }
}

.site-wrapper {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.site-header {
  background-color: #fff;
  max-width: 100%;
  margin: auto;
  padding: 1.5em 2em;
  position: relative;
  border-top: 3px solid #0088B2;
}
@media (width < 767px) {
  .site-header {
    width: 100%;
    height: 70px;
    margin: auto;
    padding: 0.5em;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    -webkit-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1);
  }
}
.site-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-header__logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-header__logo-img {
  width: 90px;
  height: auto;
  margin-right: 20px;
}
@media (width < 767px) {
  .site-header__logo-img {
    width: 50px;
    margin-right: 10px;
  }
}
.site-header__logo-img img {
  display: block;
  max-width: 100%;
  height: auto;
}
.site-header__logo-text {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (width < 767px) {
  .site-header__logo-text {
    font-size: 2rem;
  }
}
.site-header__logo-text span {
  font-size: 1.6rem;
  font-weight: 500;
  display: block;
}
@media (width < 767px) {
  .site-header__logo-text span {
    font-size: 1.3rem;
  }
}
.site-header__trigger {
  display: none;
}
@media (width < 767px) {
  .site-header__trigger {
    display: inline-block;
    width: 36px;
    height: 28px;
    vertical-align: middle;
    cursor: pointer;
    position: fixed;
    top: 23px;
    right: 10px;
    z-index: 100;
  }
  .site-header__trigger span {
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #000;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .site-header__trigger span:nth-of-type(1) {
    top: 0;
  }
  .site-header__trigger span:nth-of-type(2) {
    top: 12px;
  }
  .site-header__trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .site-header__trigger.active span {
    background-color: #fff;
  }
  .site-header__trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(12px) rotate(-45deg);
            transform: translateY(12px) rotate(-45deg);
  }
  .site-header__trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .site-header__trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-12px) rotate(45deg);
            transform: translateY(-12px) rotate(45deg);
  }
}
@media (width < 767px) {
  .site-header__navigation {
    width: 300px;
    height: 100%;
    padding-top: 100px;
    background-color: rgba(0, 136, 178, 0.8);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    -webkit-transform: translate(300px);
            transform: translate(300px);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .site-header__navigation.open {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
.site-header__navigation ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (width < 767px) {
  .site-header__navigation ul {
    display: block;
  }
}
.site-header__navigation ul li {
  line-height: 1;
}
@media (width < 767px) {
  .site-header__navigation ul li {
    font-size: 1.8rem;
    color: #fff;
    text-align: center;
    padding: 20px 0;
  }
}
.site-header__navigation ul li a {
  color: #333;
  display: block;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (width < 767px) {
  .site-header__navigation ul li a {
    color: #fff;
  }
}
.site-header__navigation ul li a:hover {
  opacity: 0.7;
}

.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.overlay.open {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 2;
}

main {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media (width < 767px) {
  main {
    padding-top: 70px;
  }
  main.open {
    -webkit-transform: translateX(-300px);
            transform: translateX(-300px);
  }
}

.main-slider {
  background-color: #EEFBFF;
  padding: 40px 2%;
  position: relative;
}
@media (width < 767px) {
  .main-slider {
    padding: 0;
  }
}
.main-slider__list {
  max-width: 1300px;
  margin: auto;
  overflow: hidden;
}
@media (width < 767px) {
  .main-slider__list {
    max-width: 100%;
  }
}
.main-slider__list img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}
@media (width < 767px) {
  .main-slider__list img {
    border-radius: 0;
  }
}
.main-slider-catch {
  max-width: 1300px;
  margin: auto;
  padding: 0 2%;
}
.main-slider-catch__inner {
  color: #fff;
  max-width: 840px;
  position: absolute;
  bottom: 12%;
}
@media (width < 767px) {
  .main-slider-catch__inner {
    bottom: 6%;
  }
}
.main-slider-catch__inner p {
  font-size: 1.3vw;
  text-shadow: 0px 0px 10px rgb(0, 0, 0), 0px 0px 10px rgb(0, 0, 0), 0px 0px 10px rgb(0, 0, 0);
}
@media (width < 767px) {
  .main-slider-catch__inner p {
    font-size: 1.6rem;
  }
}

.top-news {
  max-width: 100%;
  margin: 60px auto 0;
}
@media (width < 767px) {
  .top-news {
    margin: 0 auto;
    padding: 30px 4%;
  }
}
.top-news__inner {
  background-color: #fff;
  max-width: 800px;
  margin: auto;
  padding: 30px 5%;
  border: 1px solid #c8c8c8;
  border-radius: 10px;
}
@media (width < 767px) {
  .top-news__inner {
    max-width: 100%;
    padding: 20px 2%;
  }
}
.top-news__header {
  position: relative;
}
@media (width < 767px) {
  .top-news__header {
    width: auto;
  }
}
.top-news__header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0088B2;
  text-align: center;
  line-height: 1;
}
@media (width < 767px) {
  .top-news__header h2 {
    font-size: 2rem;
  }
}
.top-news__header h2::after {
  background-color: #0088B2;
  display: block;
  content: "";
  width: 40px;
  height: 3px;
  margin: 10px auto 0;
}
.top-news__list {
  margin-top: 30px;
  border-top: 1px solid #c8c8c8;
}
@media (width < 767px) {
  .top-news__list {
    margin-top: 20px;
  }
}
.top-news__post {
  background: url("../img/link_arrow.svg") no-repeat center right;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.6;
  padding: 10px 15px;
  border-bottom: 1px solid #c8c8c8;
}
@media (width < 767px) {
  .top-news__post {
    display: block;
    line-height: 1.4;
  }
}
.top-news__date {
  font-size: 1.6rem;
  margin-right: 40px;
}
@media (width < 767px) {
  .top-news__date {
    font-size: 1.4rem;
    display: block;
    margin-right: 0;
  }
}
.top-news__subtitle {
  font-weight: 600;
}
@media (width < 767px) {
  .top-news__subtitle {
    margin-top: 5px;
  }
}
.top-news__subtitle a {
  color: #333;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.top-news__subtitle a:hover {
  text-decoration: underline;
}

.top-about {
  background-color: #EEFBFF;
  max-width: 100%;
  margin: 60px auto 0;
  padding: 80px 0;
}
@media (width < 767px) {
  .top-about {
    margin: 20px auto 0;
    padding: 40px 1em;
  }
}
.top-about__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1040px;
  margin: auto;
}
@media (width < 767px) {
  .top-about__inner {
    display: block;
    max-width: 100%;
  }
}
.top-about__img {
  width: 440px;
  height: auto;
}
@media (width < 767px) {
  .top-about__img {
    width: auto;
  }
}
.top-about__img img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.top-about__text {
  width: calc(100% - 480px);
}
@media (width < 767px) {
  .top-about__text {
    width: auto;
  }
}
.top-about__text h2 {
  font-size: 2.4rem;
  font-weight: 700;
}
@media (width < 767px) {
  .top-about__text h2 {
    font-size: 2rem;
    text-align: center;
    line-height: 1;
    margin-top: 20px;
  }
}
.top-about__text p {
  line-height: 1.6;
  margin-top: 20px;
}
.top-about__text p a {
  color: #fff;
}
@media (width < 767px) {
  .top-about__btn {
    margin-top: 30px !important;
  }
}

.common-btn {
  background-color: #0088B2;
  color: #fff !important;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  min-width: 240px;
  padding: 15px 30px;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (width < 767px) {
  .common-btn {
    display: block;
    max-width: 260px;
    margin: auto;
    padding: 10px 20px;
  }
}
.common-btn:hover {
  opacity: 0.7;
}
.common-btn--activity {
  display: block;
  max-width: 360px;
  margin: 40px auto 0;
}
.common-btn--about {
  display: block;
  max-width: 360px;
  margin: auto;
}
.common-btn--footer {
  font-size: 1.6rem;
  margin-top: 10px;
}

.top-activity {
  padding: 80px 0;
}
@media (width < 767px) {
  .top-activity {
    padding: 40px 4%;
  }
}
.top-activity__header {
  text-align: center;
}
.top-activity__header h2 {
  font-size: 2.6rem;
  color: #0088B2;
}
.top-activity__header h2::after {
  background-color: #0088B2;
  display: block;
  content: "";
  width: 40px;
  height: 3px;
  margin: 10px auto 0;
}
.top-activity__header p {
  line-height: 1;
  margin-top: 15px;
}
@media (width < 767px) {
  .top-activity__header p {
    list-style: 1.2;
  }
}
.top-activity__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1040px;
  margin: 40px auto 0;
}
@media (width < 767px) {
  .top-activity__inner {
    display: block;
    max-width: 100%;
    margin: 20px auto 0;
  }
}
.top-activity__block {
  width: 32%;
  border: 1px solid #c8c8c8;
  border-radius: 10px;
}
@media (width < 767px) {
  .top-activity__block {
    width: 90%;
    margin: 0 auto 20px;
  }
}
.top-activity__img img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}
.top-activity__text {
  padding: 20px;
}
@media (width < 767px) {
  .top-activity__text {
    padding: 15px;
  }
}
.top-activity__text h3 {
  font-size: 2rem;
  text-align: center;
  line-height: 1;
}
@media (width < 767px) {
  .top-activity__text h3 {
    font-size: 1.8rem;
  }
}
.top-activity__text p {
  font-size: 1.6rem;
  line-height: 1.4;
  margin-top: 10px;
}
@media (width < 767px) {
  .top-activity__text p {
    font-size: 1.5rem;
  }
}

.top-magazine {
  background-color: #F3FFFD;
  max-width: 100%;
  margin: auto;
  padding: 80px 0;
}
@media (width < 767px) {
  .top-magazine {
    padding: 40px 0;
  }
}
.top-magazine__header {
  text-align: center;
}
.top-magazine__header h2 {
  font-size: 2.6rem;
  color: #0088B2;
  line-height: 1;
}
.top-magazine__header h2::after {
  background-color: #0088B2;
  display: block;
  content: "";
  width: 40px;
  height: 3px;
  margin: 20px auto 0;
}
.top-magazine__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 640px;
  margin: 40px auto 0;
}
@media (width < 767px) {
  .top-magazine__inner {
    display: block;
    max-width: 100%;
    margin: 20px auto 0;
  }
}
.top-magazine__img {
  width: 360px;
}
@media (width < 767px) {
  .top-magazine__img {
    width: 70%;
    margin: 0 auto 20px;
  }
}
.top-magazine__img img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 1px solid #c8c8c8;
  border-radius: 10px;
}
.top-magazine__list {
  width: calc(100% - 380px);
}
@media (width < 767px) {
  .top-magazine__list {
    width: 80%;
    margin: auto;
  }
}
.top-magazine__list h4 {
  font-size: 1.8rem;
  text-align: left;
  line-height: 1;
}
@media (width < 767px) {
  .top-magazine__list h4 {
    font-size: 1.6rem;
  }
}
.top-magazine__list ul {
  margin-top: 20px;
}
@media (width < 767px) {
  .top-magazine__list ul {
    margin-top: 10px;
  }
}
.top-magazine__list ul li {
  background: url("../img/link_arrow.svg") no-repeat center left;
  line-height: 2;
  padding-left: 10px;
}
.top-magazine__list ul li a {
  font-weight: 700;
  color: #333;
  text-decoration: underline;
}
.top-magazine__list ul li a:hover {
  text-decoration: none;
}
.top-magazine__list ul li span {
  display: inline-block;
  margin-right: 10px;
}
.top-magazine__link {
  margin-top: 20px;
}

.key-visual {
  max-width: 100%;
}
.key-visual__inner {
  background-color: #0088B2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 20px;
}
@media (width < 767px) {
  .key-visual__inner {
    max-width: 100%;
    border-radius: 0;
  }
}
.key-visual__inner h1 {
  font-size: 3rem;
  color: #fff;
  line-height: 1;
}
@media (width < 767px) {
  .key-visual__inner h1 {
    font-size: 2.2rem;
  }
}

.main-content {
  max-width: 100%;
}
.main-content__inner {
  max-width: 1040px;
  margin: 60px auto 0;
}
@media (width < 767px) {
  .main-content__inner {
    max-width: 100%;
    margin: 20px auto 0;
  }
}
.main-content__history {
  max-width: 960px;
  margin: 60px auto 0;
}
@media (width < 767px) {
  .main-content__history {
    max-width: 100%;
    margin: 40px 1em 0;
  }
}
.main-content__header h2 {
  font-size: 2.8rem;
  color: #0088B2;
  text-align: center;
  line-height: 1;
}
@media (width < 767px) {
  .main-content__header h2 {
    font-size: 2.4rem;
  }
}
.main-content__header h2::after {
  background-color: #0088B2;
  display: block;
  content: "";
  width: 40px;
  height: 3px;
  margin: 20px auto 0;
}
.main-content__about {
  margin-bottom: 40px;
}
.main-content__about:last-child {
  margin-bottom: 0;
}
.main-content__about h2 {
  font-size: 2.4rem;
  padding: 5px;
  border-bottom: 2px solid #0088B2;
}
@media (width < 767px) {
  .main-content__about h2 {
    font-size: 1.8rem;
  }
}
.main-content__about h3 {
  font-size: 2rem;
  background-color: #EEFBFF;
  color: #0088B2;
  margin-top: 30px;
  padding: 5px;
}
@media (width < 767px) {
  .main-content__about h3 {
    font-size: 1.6rem;
    margin-top: 20px;
  }
}
.main-content__about p {
  margin-top: 30px;
}
@media (width < 767px) {
  .main-content__about p {
    margin-top: 20px;
  }
}
.main-content__about figure {
  max-width: 100%;
  margin: 40px auto 0;
  overflow: hidden;
}
@media (width < 767px) {
  .main-content__about figure {
    margin-top: 20px;
  }
}
.main-content__about figure img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}
.main-content__link {
  margin: 60px auto 0 !important;
}
@media (width < 767px) {
  .main-content__link {
    margin: 40px auto 0 !important;
  }
}
.main-content__table {
  width: 100%;
  margin: auto;
  border-collapse: collapse;
}
@media (width < 767px) {
  .main-content__table {
    border-bottom: 1px solid #c8c8c8;
  }
}
.main-content__table tr th {
  background-color: #EEFBFF;
  vertical-align: middle;
  width: 30%;
  padding: 15px;
  border: 1px solid #c8c8c8;
}
@media (width < 767px) {
  .main-content__table tr th {
    display: block;
    width: 100%;
  }
}
.main-content__table tr td {
  vertical-align: middle;
  width: 70%;
  padding: 15px;
  border: 1px solid #c8c8c8;
}
@media (width < 767px) {
  .main-content__table tr td {
    display: block;
    width: 100%;
    border-top: none;
    border-bottom: none;
  }
}
.main-content__table tr td input {
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  padding: 10px;
  border: 1px solid #c8c8c8;
}
.main-content__table tr td textarea {
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  padding: 10px;
  border: 1px solid #c8c8c8;
  resize: vertical;
}
.main-content .submit {
  font-size: 1.6rem;
  background-color: #0088B2;
  color: #fff;
  display: block;
  line-height: 1;
  width: 360px;
  margin: 40px auto 0;
  padding: 20px 30px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (width < 767px) {
  .main-content .submit {
    width: 100%;
  }
}
.main-content .submit:hover {
  opacity: 0.7;
}

.greetings-section {
  background-color: #EEFBFF;
  max-width: 100%;
  margin: 100px auto 0;
  padding: 100px 0;
}
@media (width < 767px) {
  .greetings-section {
    margin: 60px auto 0;
    padding: 100px 1em;
  }
}
.greetings-section__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 960px;
  margin: 40px auto 0;
}
@media (width < 767px) {
  .greetings-section__block {
    display: block;
    max-width: 100%;
  }
}
.greetings-section__img {
  width: 300px;
  height: auto;
}
@media (width < 767px) {
  .greetings-section__img {
    margin: auto;
  }
}
.greetings-section__img img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}
.greetings-section__text {
  width: calc(100% - 340px);
}
@media (width < 767px) {
  .greetings-section__text {
    width: auto;
  }
}
.greetings-section__text p {
  margin-bottom: 20px;
}
@media (width < 767px) {
  .greetings-section__text p {
    margin-top: 20px;
    margin-bottom: 0;
  }
}
.greetings-section__name {
  text-align: right;
}

.activity-section {
  max-width: 100%;
  padding: 100px 0;
}
.activity-section__inner {
  max-width: 960px;
  margin: 0 auto;
}
@media (width < 767px) {
  .activity-section__inner {
    max-width: 100%;
  }
}
.activity-section__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}
@media (width < 767px) {
  .activity-section__block {
    display: block;
  }
}
.activity-section__img {
  width: 400px;
}
@media (width < 767px) {
  .activity-section__img {
    width: 80%;
    margin: auto;
  }
}
.activity-section__img img {
  display: block;
  max-width: 100%;
  height: auto;
  outline: 1px solid #c8c8c8;
  border-radius: 20px;
}
.activity-section__text {
  width: calc(100% - 440px);
  margin-top: 20px;
}
@media (width < 767px) {
  .activity-section__text {
    width: auto;
    margin: 20px 2em 0;
  }
}
.activity-section__text h3 {
  font-size: 2.4rem;
  line-height: 1;
}
@media (width < 767px) {
  .activity-section__text h3 {
    font-size: 2rem;
    text-align: center;
  }
}
.activity-section__text p {
  margin-top: 20px;
}
@media (width < 767px) {
  .activity-section__text p {
    margin-top: 10px;
  }
}

.magazine-section {
  max-width: 960px;
  margin: 0 auto 100px;
}
@media (width < 767px) {
  .magazine-section {
    max-width: 100%;
    margin: 0 1em 60px;
  }
}
.magazine-section__lead {
  padding: 20px;
  border: 2px solid #0088B2;
  border-radius: 10px;
}
@media (width < 767px) {
  .magazine-section__lead {
    margin: 0;
    padding: 10px;
  }
}
.magazine-section__lead p {
  line-height: 1.4;
}
.magazine-section__lead--news {
  margin-bottom: 60px;
}
@media (width < 767px) {
  .magazine-section__lead--news {
    margin-bottom: 30px;
  }
}
.magazine-section h3 {
  font-size: 3rem;
  color: #0088B2;
  text-align: center;
  margin: 40px auto 20px;
}
.magazine-section dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
  border-top: dotted 1px #0088B2;
}
.magazine-section dl:last-child {
  border-bottom: dotted 1px #0088B2;
}
.magazine-section dl dt {
  margin-right: 40px;
}
.magazine-section dl dd a {
  color: #333;
}
.magazine-section dl dd a:hover {
  text-decoration: none;
}

.information-archive {
  background-color: #fff;
  margin-top: 40px;
  padding: 0 0 100px;
}
@media (width < 767px) {
  .information-archive {
    margin-top: 20px;
    padding: 0 1em 60px;
  }
}
.information-archive__inner {
  max-width: 1040px;
  margin: auto;
}
@media (width < 767px) {
  .information-archive__inner {
    max-width: 100%;
  }
}
.information-archive__inner ul {
  margin-top: 40px;
  border-top: 1px solid #c8c8c8;
}
.information-archive__inner ul li {
  background: url("../img/link_arrow.svg") no-repeat center right;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  border-bottom: 1px solid #c8c8c8;
}
@media (width < 767px) {
  .information-archive__inner ul li {
    display: block;
    padding: 15px;
  }
}
.information-archive__inner ul li p {
  font-size: 1.8rem;
}
@media (width < 767px) {
  .information-archive__inner ul li p {
    font-size: 1.5rem;
    margin-top: 10px;
  }
}
.information-archive__inner ul li p a {
  color: #333;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.information-archive__inner ul li p a:hover {
  opacity: 0.7;
}
.information-archive__lead {
  padding: 20px;
  border: 2px solid #0088B2;
  border-radius: 10px;
}
.information-archive__lead p {
  line-height: 1.2;
}
.information-archive__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  margin-right: 40px;
}
.information-archive__meta-category {
  font-size: 1.2rem;
  color: #0088B2;
  display: inline-block;
  margin-right: 20px;
  padding: 2px 20px 3px;
  border: 1px solid #0088B2;
}
.information-archive__meta-date {
  font-family: "Roboto", sans-serif;
  display: inline-block;
}
.information-archive__pagination {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 60px;
}
@media (width < 767px) {
  .information-archive__pagination {
    margin-top: 40px;
  }
}
.information-archive__pagination span {
  padding: 10px 20px;
  border: 1px solid #EEFBFF;
}
.information-archive__pagination span.current {
  background-color: #EEFBFF;
  color: #fff;
}
.information-archive__pagination a {
  color: #333;
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid #666;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.information-archive__pagination a:hover {
  background-color: #EEFBFF;
  color: #fff;
  border: 1px solid #EEFBFF;
}

.information-post {
  background-color: #fff;
  margin-top: 60px;
  padding: 0 0 100px;
}
@media (width < 767px) {
  .information-post {
    margin-top: 20px;
    padding: 0 1em 60px;
  }
}
.information-post__inner {
  max-width: 1040px;
  margin: auto;
}
@media (width < 767px) {
  .information-post__inner {
    max-width: 100%;
  }
}
.information-post__inner-header {
  padding-bottom: 10px;
  border-bottom: 2px solid #c8c8c8;
}
.information-post__inner-header-meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  margin-bottom: 15px;
}
.information-post__inner-header-meta-category {
  font-size: 1.4rem;
}
@media (width < 767px) {
  .information-post__inner-header-meta-category {
    font-size: 1.2rem;
  }
}
.information-post__inner-header-meta-category a {
  color: #0088B2;
  text-decoration: none;
  margin-right: 20px;
  padding: 2px 20px 3px;
  border: 1px solid #0088B2;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.information-post__inner-header-meta-category a:hover {
  color: #fff;
  background-color: #0088B2;
}
.information-post__inner-header-meta-date {
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  display: inline-block;
}
@media (width < 767px) {
  .information-post__inner-header-meta-date {
    font-size: 1.6rem;
  }
}
.information-post__inner-header h2 {
  font-size: 2.8rem;
  font-weight: 500;
  position: relative;
}
@media (width < 767px) {
  .information-post__inner-header h2 {
    font-size: 2rem;
  }
}
.information-post__inner-header h2::after {
  background-color: #0088B2;
  display: block;
  content: "";
  width: 100px;
  height: 2px;
  position: absolute;
  bottom: -12px;
}
.information-post__inner-contents {
  padding: 40px 0 0;
  border-bottom: 1px solid #c8c8c8;
}
@media (width < 767px) {
  .information-post__inner-contents {
    padding-top: 20px;
  }
}
.information-post__inner-contents p {
  line-height: 1.8;
  margin-bottom: 40px;
}
@media (width < 767px) {
  .information-post__inner-contents p {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}
.information-post__inner-contents figure {
  margin-bottom: 40px;
}
.information-post__inner-return {
  text-align: center;
  margin: 40px auto 0;
}
.information-post__inner-return a {
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.information-post__inner-return a:hover {
  opacity: 0.7;
}

.privacy-contents {
  padding: 60px 0 100px;
}
@media (width < 767px) {
  .privacy-contents {
    padding: 20px 4% 60px;
  }
}
.privacy-contents__inner {
  max-width: 960px;
  margin: 0 auto;
}
@media (width < 767px) {
  .privacy-contents__inner {
    max-width: 100%;
  }
}
.privacy-contents__inner-text dl dt {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 40px;
}
@media (width < 767px) {
  .privacy-contents__inner-text dl dt {
    font-size: 1.6rem;
    margin-top: 20px;
  }
}
.privacy-contents__inner-text dl dd {
  margin-top: 10px;
}
.privacy-contents__inner-text dl dd a {
  color: #EEFBFF;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.privacy-contents__inner-text dl dd a:hover {
  text-decoration: none;
}

.contact-contents {
  padding: 60px 0 100px;
}
@media (width < 767px) {
  .contact-contents {
    padding: 20px 4% 60px;
  }
}
.contact-contents__inner {
  max-width: 960px;
  margin: auto;
  border-radius: 20px;
}
@media (width < 767px) {
  .contact-contents__inner {
    max-width: 100%;
  }
}

.not-found {
  padding: 0 0 100px;
}
@media (width < 767px) {
  .not-found {
    margin: 0 4%;
    margin-bottom: 0;
  }
}
.not-found__inner {
  background-color: #fff;
  text-align: center;
  max-width: 960px;
  margin: auto;
  padding: 60px;
  border-radius: 20px;
}
.not-found__title {
  font-family: "Roboto", sans-serif;
  font-size: 7rem;
  font-weight: 700;
  color: #0088B2;
  line-height: 1;
  margin-bottom: 10px;
}
.not-found__text {
  margin-bottom: 20px;
}
.not-found__small-text {
  font-size: 1.4rem;
}
.not-found__btn {
  text-align: center;
  margin: 0 auto;
}

.common-title {
  padding-bottom: 10px;
  border-bottom: 2px solid #EEFBFF;
}
.common-title h3 {
  font-size: 2rem;
  line-height: 1;
}

.common-table {
  margin-top: 30px;
}
@media (width < 767px) {
  .common-table {
    margin-top: 20px;
  }
}
.common-table table {
  width: 100%;
  border-collapse: collapse;
}
@media (width < 767px) {
  .common-table table tr {
    display: block;
    margin-bottom: 10px;
  }
  .common-table table tr:last-child {
    margin-bottom: 0;
  }
}
.common-table table tr th {
  font-weight: 500;
  background-color: #F5F3F0;
  text-align: left;
  vertical-align: middle;
  width: 36%;
  padding: 15px;
  border: 1px solid #c8c8c8;
}
@media (width < 767px) {
  .common-table table tr th {
    display: block;
    width: 100%;
    padding: 10px;
  }
}
.common-table table tr td {
  background-color: #fff;
  vertical-align: middle;
  padding: 15px;
  border: 1px solid #c8c8c8;
}
@media (width < 767px) {
  .common-table table tr td {
    display: block;
    width: 100%;
  }
}
.common-table table tr td input {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
}
.common-table table tr td input[type=text] {
  font-size: 1.6rem;
  padding: 15px;
  border: 1px solid #c8c8c8;
}
@media (width < 767px) {
  .common-table table tr td input[type=text] {
    width: 100%;
  }
}
.common-table table tr td input[type=email] {
  font-size: 1.6rem;
  padding: 15px;
  border: 1px solid #c8c8c8;
}
@media (width < 767px) {
  .common-table table tr td input[type=email] {
    width: 100%;
  }
}
.common-table table tr td textarea {
  font-size: 1.6rem;
  width: 100%;
  padding: 15px;
  border: 1px solid #c8c8c8;
}
.common-table-attention {
  margin-top: 10px;
}
.common-table-attention a {
  color: #EEFBFF;
}
.common-table-attention a:hover {
  text-decoration: none;
}

.site-footer {
  padding-top: 40px;
  border-top: 1px solid #c8c8c8;
}
@media (width < 767px) {
  .site-footer {
    padding: 0;
  }
}
.site-footer__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1040px;
  margin: 0 auto 40px;
  padding: 0;
}
@media (width < 767px) {
  .site-footer__inner {
    display: block;
    max-width: 100%;
    margin: 40px 0.5em;
  }
}
.site-footer__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (width < 767px) {
  .site-footer__header {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.site-footer__header figure {
  width: 90px;
  height: auto;
  margin-right: 20px;
}
.site-footer__header figure img {
  display: block;
  max-width: 100%;
  height: auto;
}
.site-footer__header p {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
}
.site-footer__header p span {
  font-size: 1.4rem;
  font-weight: 500;
  display: block;
}
.site-footer__address {
  margin-top: 20px;
}
@media (width < 767px) {
  .site-footer__address {
    text-align: center;
    margin-top: 10px;
  }
}
.site-footer__address p {
  font-size: 1.4rem;
}
@media (width < 767px) {
  .site-footer__address p {
    font-size: 1.3rem;
  }
}
.site-footer__address p strong {
  font-size: 2rem;
  font-weight: 700;
}
@media (width < 767px) {
  .site-footer__menu {
    margin-top: 40px;
  }
}
.site-footer__menu ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 30px;
}
@media (width < 767px) {
  .site-footer__menu ul {
    display: none;
  }
}
.site-footer__menu ul li {
  line-height: 1;
}
.site-footer__menu ul li a {
  background: url("../img/link_arrow.svg") no-repeat left center;
  color: #333;
  text-decoration: none;
  padding-left: 10px;
}
.site-footer__menu ul li a:hover {
  text-decoration: underline;
}
.site-footer__contact {
  text-align: right;
  margin-top: 30px;
}
.site-footer__contact p {
  font-size: 1.4rem;
}
@media (width < 767px) {
  .site-footer__contact p {
    font-size: 1.3rem;
    text-align: center;
  }
}
.site-footer__contact p a {
  color: #fff;
}
.site-footer__copy {
  background-color: #0088B2;
  padding: 10px;
}
.site-footer__copy p {
  font-size: 1.3rem;
  color: #fff;
  text-align: center;
  line-height: 1;
}
@media (width < 767px) {
  .site-footer__copy {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 30px;
  }
}

.fade-in-list .fade-in {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 1s ease-in-out, -webkit-transform 1s ease-in-out;
  transition: opacity 1s ease-in-out, -webkit-transform 1s ease-in-out;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.fade-in.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.breadcrumbs {
  font-size: 1.4rem;
  padding: 10px;
}
@media (width < 767px) {
  .breadcrumbs {
    font-size: 1.2rem;
    padding: 5px;
  }
}
.breadcrumbs a {
  text-decoration: none;
}
.breadcrumbs .current {
  font-weight: 700;
}

.send-complete {
  max-width: 960px;
  background-color: #fff;
  margin: 80px auto;
  padding: 40px;
  border-radius: 20px;
}
@media (width < 767px) {
  .send-complete {
    margin: 40px 4%;
  }
}
.send-complete p {
  font-size: 2rem;
  text-align: center;
  line-height: 2;
}
@media (width < 767px) {
  .send-complete p {
    font-size: 1.4rem;
  }
}

.google-policy {
  font-size: 1.3rem;
  text-align: center;
  margin-top: 60px;
}

.grecaptcha-badge {
  visibility: hidden;
}/*# sourceMappingURL=style.css.map */