@charset "UTF-8";
/*ResetCSS*/
/*Fonts*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*基本設定*/
html {
  font-size: 14px;
}

body {
  font-family: "Noto Sans JP", sans-serif, "Hiragino Sans", "ヒラギノ角ゴシック";
  color: black;
  letter-spacing: 0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 600;
}

p {
  line-height: 1.67;
  letter-spacing: 0.05em;
}

figure {
  margin: 0;
}

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

iframe {
  max-width: 100%;
}

.container-l,
.container,
.container-s,
.container-ss {
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}

.container-l {
  max-width: 1440px;
}

.container {
  max-width: 1000px;
}

.container-s {
  max-width: 830px;
}

.container-ss {
  max-width: 600px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.linkbox {
  position: relative;
  cursor: pointer;
}
.linkbox a.more {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-indent: -9999px;
}

.d-flex {
  display: flex;
}

@media (min-width: 768px) {
  .d-tbpc-flex {
    display: flex;
  }
}
.flex-wrap {
  flex-wrap: wrap;
}

.justify-content-between {
  justify-content: space-between;
}

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

.text-center {
  text-align: center;
}

.bold {
  font-weight: 600;
}

.normal {
  font-weight: normal;
}

.small {
  font-size: 0.8em;
}

.large {
  font-size: 1.3em;
}

/*ボタン*/
.btn a {
  display: inline-block;
  padding: 0.5em 1em;
  line-height: 1.2;
  cursor: pointer;
}
.btn a:hover {
  opacity: 1;
  filter: brightness(1.1);
  text-decoration: none;
}

/*表組み*/
table th,
table td {
  padding: 0.5em 1em;
  border: 1px solid #ccc;
}
table th {
  font-weight: 600;
}
table td {
  font-weight: normal;
}

@media (max-width: 767px) {
  table.table-sp-block {
    display: block;
  }
  table.table-sp-block > thead > tr > th, table.table-sp-block > thead > tr > td, table.table-sp-block > tbody > tr > th, table.table-sp-block > tbody > tr > td {
    display: block;
  }
}
#page-header h1 {
  margin: 0;
}

#nav-main a {
  display: block;
}

.iframe-container {
  position: relative;
}
.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ls-none {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.image-button {
  display: inline-block;
  text-decoration: none;
}

button {
  /* ブラウザ特有のスタイルを無効に */
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

a[href=""] {
  pointer-events: none;
}

.btn a {
  border-radius: 0.1em;
}

body {
  position: relative;
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  background-color: white;
}

#body-cover {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  display: block;
  top: 0;
  left: 0;
  z-index: -1;
  transition: opacity 0.3s;
  opacity: 0;
}

#first-visual {
  width: 100%;
  background-color: #fff;
}

#first-visual picture,
#first-visual img {
  display: block;
  width: 100%;
  height: auto;
}

p {
  line-height: 1.6;
  margin-bottom: 0;
  text-align: justify;
}

li {
  line-height: 1.3;
}
li p {
  line-height: 1.6;
}

section {
  padding-top: 96px;
  padding-bottom: 48px;
}
section h2, section h3 {
  text-align: center;
  letter-spacing: 5px;
  margin-bottom: 1em;
  color: #00afec;
}

a {
  color: black;
}

#sect-info ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#sect-info ul li {
  padding: 10px;
  width: 100%;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 0;
  background-color: #00afec;
  color: white;
  transition: background-color 0.3s, opacity 0.3s;
  /* 偶数行の色変更（スマホとPCで列数が異なるので、6n などで指定） */
  /* リンク内のスタイル */
}
#sect-info ul li:nth-child(2n) {
  background-color: #e5f7fd;
}
#sect-info ul li img {
  width: auto;
  height: 40px;
  margin-bottom: 10px;
}
#sect-info ul li a {
  color: inherit;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#sect-info ul li a:hover {
  opacity: 0.8;
}

#sect-ad .container-s {
  padding: 20px 0 60px;
}
#sect-ad .content {
  margin-bottom: 85px;
}
#sect-ad img {
  width: 85%;
}
#sect-ad .responsive-video {
  width: 85%;
  margin: 0 auto;
  aspect-ratio: 16/9;
}
#sect-ad iframe {
  width: 100%;
  height: 100%;
}

#sect-sns .card {
  width: 300px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
}
#sect-sns .wrapper {
  display: contents;
}
#sect-sns .title {
  order: 1;
}
#sect-sns .description {
  order: 2;
}
#sect-sns .box_fb {
  order: 3;
}
#sect-sns .btn {
  order: 4;
}
#sect-sns .title,
#sect-sns p,
#sect-sns .box_fb {
  margin-bottom: 0.6em;
}
#sect-sns .box_fb {
  max-width: 100%;
  width: 100%;
  display: block;
}
#sect-sns .fb-page {
  max-width: 100%;
  width: 251px;
  height: 309px;
}
#sect-sns h3 {
  font-size: 20px;
  text-align: left;
  letter-spacing: 0;
  color: black;
}
#sect-sns .sns-list li {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
}
#sect-sns .fb_btn,
#sect-sns .X_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: 100px;
  width: auto;
  height: 40px;
  margin: 0 auto;
  padding: 0.9em 1em;
  border: none;
  border-radius: 25px;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
}
#sect-sns .fb_btn:hover,
#sect-sns .X_btn:hover {
  opacity: 0.8;
}
#sect-sns .fb_btn::before,
#sect-sns .X_btn::before {
  position: absolute;
  left: 3px;
  width: 34px;
  height: 34px;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
#sect-sns .fb_btn {
  background-color: #1877f2;
}
#sect-sns .fb_btn::before {
  background-image: url("../images/fb_icon.svg");
}
#sect-sns .X_btn {
  background-color: #000;
}
#sect-sns .X_btn::before {
  background-image: url("../images/x_btn_icon.svg");
}

.bk-orange {
  background-color: #00afec;
}
.bk-orange__alph5 {
  background-color: #d6f2fc;
}

#page-footer {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 600;
  color: white;
}
#page-footer h4 {
  font-size: 16px;
}
#page-footer .content {
  display: flex;
  flex-direction: column;
}
#page-footer .info {
  margin-top: 5px;
}
#page-footer .info dl {
  font-size: 11px;
}
#page-footer .info dt,
#page-footer .info dd {
  font-weight: 600;
  margin-bottom: 0;
}
#page-footer .info dt {
  float: left;
  width: 2.3rem;
}
#page-footer .info dt::after {
  content: "：";
}

.pagetop {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 50px;
}
/*# sourceMappingURL=style.css.map */