@charset "UTF-8";
/*
Theme Name: SAKATAJC
Version: 1.0
*/
/* reset ///////////////////////////////////////////////////////////// */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-style: normal;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

ol, ul {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: inherit;
}

/* base ///////////////////////////////////////////////////////////// */
/* noto-sans-jp-regular - japanese_latin */
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/noto-sans-jp-v52-japanese_latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-600 - japanese_latin */
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 600;
  src: url("assets/fonts/noto-sans-jp-v52-japanese_latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-900 - japanese_latin */
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  src: url("assets/fonts/noto-sans-jp-v52-japanese_latin-900.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
*, *::after, *::before {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", "WadalabChumarugo2004emojijp", "Migu 1C", "M+ 1p", "VL PGothic", Meiryo, sans-serif;
  font-size: 16px;
}
@media screen and (max-width: 980px) {
  body {
    font-size: clamp(15px, 1.6326530612vw, 16px);
  }
}
body {
  font-weight: 400;
  line-height: normal;
  letter-spacing: normal;
  color: #000;
  margin: 0 auto;
}

body * {
  line-height: 1.8;
  letter-spacing: 0.04em;
}

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

table {
  border-collapse: collapse;
}

iframe {
  max-width: 100%;
}

.site-wrap {
  overflow: hidden;
}

/* header ///////////////////////////////////////////////////////////// */
.header {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  z-index: 10000;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: auto;
  gap: 60px;
}
.header__inner._pc {
  padding-left: 30px;
}
@media screen and (max-width: 1200px) {
  .header__inner._pc {
    display: none;
  }
}
.header__inner._sp {
  position: relative;
  display: none;
}
@media screen and (max-width: 1200px) {
  .header__inner._sp {
    display: flex;
    padding: 10px 30px;
  }
}
.header__block-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0 10px;
  margin-right: 2.6041666667vw;
}
.header__block-2 {
  padding: 20px 0 10px;
}
.header__block-3 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__nav-lists {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.6041666667vw;
  padding-top: 10px;
}
.header__nav-lists a {
  font-weight: 600;
  transition: 0.3s;
}
.header__nav-lists a:hover {
  opacity: 0.7;
}
.header__contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(#03090E, #003483);
  width: 100%;
  height: 100%;
  padding: 30px;
  transition: 0.3s;
}
.header__contact-btn:hover {
  opacity: 0.8;
}
.header .hamburger-btn-wrapper {
  display: none;
}
@media screen and (max-width: 1200px) {
  .header .hamburger-btn-wrapper {
    display: block;
  }
}
.header .hamburger-btn {
  display: block;
  position: relative;
  width: 50px;
  height: 50px;
  z-index: 1000;
}
.header .hamburger-btn > div {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: #03090E;
  position: absolute;
  left: 10px;
  transition: all 0.2s;
}
.header .hamburger-btn > div:nth-of-type(1) {
  top: 10px;
}
.header .hamburger-btn > div:nth-of-type(2) {
  top: 24px;
}
.header .hamburger-btn > div:nth-of-type(3) {
  top: 38px;
}
.header .hamburger-btn.active > div:nth-of-type(1) {
  -webkit-transform: translateY(14px) rotate(-45deg);
          transform: translateY(14px) rotate(-45deg);
}
.header .hamburger-btn.active > div:nth-of-type(2) {
  display: none;
}
.header .hamburger-btn.active > div:nth-of-type(3) {
  -webkit-transform: translateY(-14px) rotate(45deg);
          transform: translateY(-14px) rotate(45deg);
}
.header .hamburger-nav {
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  background-color: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: 0.1s;
}
.header .hamburger-nav__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  width: 100%;
  padding-top: 40px;
}
.header .hamburger-nav__lists {
  padding: 0 60px 30px;
}
.header .hamburger-nav__lists li {
  margin-bottom: 10px;
}
.header .hamburger-nav__lists a {
  display: inline-block;
  font-weight: 600;
}
.header .hamburger-nav__address-wrap {
  background: linear-gradient(#03090E, #003483);
  padding: 40px;
}
.header .hamburger-nav__contact-btn {
  margin-bottom: 30px;
}
.header .hamburger-nav__contact-btn a {
  display: inline-block;
  font-weight: 600;
  background-color: #fff;
  padding: 8px 20px;
}
.header .hamburger-nav__name {
  font-weight: 600;
  color: #fff;
}
.header .hamburger-nav__address {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.header .hamburger-nav.active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

/* page-common /////////////////////////////////////////////////////////////// */
/* コンテナ */
.container {
  max-width: calc(980px + 60px);
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
}
@media screen and (max-width: 720px) {
  .container {
    max-width: calc(980px + 40px);
    padding-left: 20px;
    padding-right: 20px;
  }
}

.container-wide {
  max-width: calc(1200px + 60px);
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
}
@media screen and (max-width: 720px) {
  .container-wide {
    max-width: calc(1200px + 40px);
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* 改行 */
.pc-br {
  display: block;
}
@media screen and (max-width: 980px) {
  .pc-br {
    display: none;
  }
}

.tab-br {
  display: none;
}
@media screen and (max-width: 980px) {
  .tab-br {
    display: block;
  }
}

/* テキスト大文字表記 */
.uppercase {
  text-transform: uppercase;
}

/* ページャー（一覧ページ用） */
.pagination {
  padding-top: 80px;
}
.pagination > ul.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.pagination > ul.page-numbers li a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  width: 33px;
  height: 33px;
}
.pagination > ul.page-numbers li a.prev, .pagination > ul.page-numbers li a.next {
  display: none;
}
.pagination > ul.page-numbers li span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33px;
  height: 33px;
}
.pagination > ul.page-numbers li span.current {
  font-weight: 600;
  color: #003483;
}

/* ページトップボタン */
.top-btn {
  position: fixed;
  right: 50px;
  bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #03090E;
  background-color: #F0F0F0;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  cursor: pointer;
  opacity: 1;
  transition: 0.3s all;
}
@media screen and (max-width: 720px) {
  .top-btn {
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
  }
}
.top-btn p {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 1.1;
}
.top-btn:hover {
  opacity: 0.7;
}

/* iframe */
.movie-wrap {
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: 0;
  overflow: hidden;
}
.movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* フェードイン用css */
.fadein {
  visibility: hidden;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  opacity: 0;
  transition: all 0.8s;
}
.fadein._right {
  visibility: hidden;
  -webkit-transform: translate(-50px, 0);
          transform: translate(-50px, 0);
  opacity: 0;
  transition: all 0.8s;
}
.fadein.active {
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

/* 背景グラデーション */
.bg-grad-navy {
  background: linear-gradient(#03090E, #003483);
}

/* ページタイトル */
.page-head {
  background-color: #000;
}
.page-head__ttl {
  font-size: 23px;
}
@media screen and (max-width: 980px) {
  .page-head__ttl {
    font-size: clamp(18px, 2.3469387755vw, 23px);
  }
}
.page-head__ttl {
  font-weight: 600;
  color: #fff;
  max-width: 980px;
  padding: 60px;
  margin: 0 auto;
}

/* セクション */
.sec-style-1 {
  padding-top: 60px;
  padding-bottom: 80px;
}
@media screen and (max-width: 720px) {
  .sec-style-1 {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.sec-style-2 {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 720px) {
  .sec-style-2 {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

/* セクションタイトル */
.ttl-style-1 {
  margin-bottom: 20px;
}
.ttl-style-1__txt {
  font-size: 70px;
}
@media screen and (max-width: 980px) {
  .ttl-style-1__txt {
    font-size: clamp(40px, 7.1428571429vw, 70px);
  }
}
.ttl-style-1__txt {
  font-weight: 900;
  line-height: 1;
}
.ttl-style-1__txt::first-letter {
  color: #003483;
}
.ttl-style-1__sub-txt {
  font-size: 23px;
}
@media screen and (max-width: 980px) {
  .ttl-style-1__sub-txt {
    font-size: clamp(18px, 2.3469387755vw, 23px);
  }
}
.ttl-style-1__sub-txt {
  font-weight: 600;
}

.ttl-style-2 {
  margin-bottom: 40px;
}
.ttl-style-2__txt {
  font-size: 23px;
}
@media screen and (max-width: 980px) {
  .ttl-style-2__txt {
    font-size: clamp(18px, 2.3469387755vw, 23px);
  }
}
.ttl-style-2__txt {
  font-weight: 600;
  text-align: center;
}
.ttl-style-2__txt._white {
  color: #fff;
}

.ttl-style-3 {
  font-size: 24px;
}
@media screen and (max-width: 980px) {
  .ttl-style-3 {
    font-size: clamp(18px, 2.4489795918vw, 24px);
  }
}
.ttl-style-3 {
  font-weight: 600;
  color: #fff;
  background: linear-gradient(#003483, #0C2739);
  padding: 4px 30px;
}
.ttl-style-3 span {
  display: inline-block;
  font-size: 26px;
}
@media screen and (max-width: 980px) {
  .ttl-style-3 span {
    font-size: clamp(19px, 2.6530612245vw, 26px);
  }
}
.ttl-style-3 span {
  font-weight: 900;
  margin-right: 10px;
}

.btn-style-1 {
  display: block;
  font-size: 20px;
}
@media screen and (max-width: 980px) {
  .btn-style-1 {
    font-size: clamp(16px, 2.0408163265vw, 20px);
  }
}
.btn-style-1 {
  font-weight: 600;
  text-align: center;
  border: 10px solid #03090E;
  background-color: #fff;
  padding: 12px;
  transition: 0.3s;
}
.btn-style-1:hover {
  opacity: 0.7;
}

.members-bnr-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
@media screen and (max-width: 500px) {
  .members-bnr-lists {
    grid-template-columns: 1fr;
  }
}
.members-bnr-lists a {
  transition: 0.3s;
}
.members-bnr-lists a:hover {
  opacity: 0.8;
}

/* footer ///////////////////////////////////////////////////////////// */
.footer {
  background-color: #F0F0F0;
}
.footer__inner {
  padding-top: 40px;
  padding-bottom: 40px;
}
.footer__nav-home {
  display: inline-block;
  font-size: 20px;
}
@media screen and (max-width: 980px) {
  .footer__nav-home {
    font-size: clamp(16px, 2.0408163265vw, 20px);
  }
}
.footer__nav-home {
  font-weight: 600;
  margin-bottom: 40px;
}
@media screen and (max-width: 980px) {
  .footer__nav-home {
    margin-bottom: 20px;
  }
}
.footer__nav-lists {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 980px) {
  .footer__nav-lists {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.footer__nav-lists > li > a {
  display: inline-block;
  font-size: 20px;
}
@media screen and (max-width: 980px) {
  .footer__nav-lists > li > a {
    font-size: clamp(16px, 2.0408163265vw, 20px);
  }
}
.footer__nav-lists > li > a {
  font-weight: 600;
  transition: 0.3s;
}
.footer__nav-lists > li > a:hover {
  opacity: 0.7;
}
.footer__nav-child-lists > li > a {
  display: inline-block;
  transition: 0.3s;
}
.footer__nav-child-lists > li > a:hover {
  opacity: 0.7;
}
.footer__contact-btn {
  display: inline-block;
  font-size: 18px;
}
@media screen and (max-width: 980px) {
  .footer__contact-btn {
    font-size: clamp(16px, 1.8367346939vw, 18px);
  }
}
.footer__contact-btn {
  font-weight: 600;
  border: 6px solid #03090E;
  background-color: #fff;
  padding: 2px 30px;
  margin: 40px 0 20px;
  transition: 0.3s;
}
.footer__contact-btn:hover {
  opacity: 0.7;
}
.footer__name {
  font-size: 20px;
}
@media screen and (max-width: 980px) {
  .footer__name {
    font-size: clamp(16px, 2.0408163265vw, 20px);
  }
}
.footer__name {
  font-weight: 600;
}
.footer__address {
  margin-bottom: 40px;
}
.footer .copy {
  font-size: 12px;
}

/* single-post /////////////////////////////////////////////////////////////// */
/* シングルページ （コンテンツ） */
.single-post {
  background-color: #F0F0F0;
}
.single-post__date time {
  font-weight: 600;
  color: #003483;
}
.single-post__ttl {
  font-weight: 600;
  margin-bottom: 20px;
}
.single-post__content h2, .single-post__content h3 {
  font-weight: 600;
  margin-bottom: 12px;
}
.single-post__content h2 {
  font-size: 18px;
}
.single-post__content h3 {
  font-size: 17px;
}
.single-post__content p {
  margin-bottom: 20px;
}
.single-post__content strong {
  font-weight: 600;
}
.single-post__content a {
  color: #003483;
  transition: 0.3s;
}
.single-post__content a:hover {
  opacity: 0.7;
}
.single-post__content figure {
  margin-bottom: 20px;
}

/* ページャー（シングルページ用） */
.single-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 80px;
}
.single-pagination .nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 500px) {
  .single-pagination .nav-links {
    flex-direction: column;
  }
}
.single-pagination a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  color: #03090E;
  background-color: #fff;
  border: 1px solid #03090E;
  min-width: 200px;
  padding: 8px 16px;
  transition: 0.3s;
}
.single-pagination a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 500px) {
  .single-pagination a {
    min-width: initial;
  }
}

.link-list {
  max-width: calc(980px + 60px);
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
}
@media screen and (max-width: 720px) {
  .link-list {
    max-width: calc(980px + 40px);
    padding-left: 20px;
    padding-right: 20px;
  }
}
.link-list {
  display: flex;
  flex-wrap: wrap;
}
.link-list__item {
  width: calc((100% - 40px) / 3);
  margin-right: 20px;
  margin-bottom: 20px;
}
.link-list__item:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 500px) {
  .link-list__item:nth-child(3n) {
    margin-right: 20px;
  }
}
@media screen and (max-width: 500px) {
  .link-list__item {
    width: calc((100% - 20px) / 2);
  }
  .link-list__item:nth-child(2n) {
    margin-right: 0;
  }
}
.link-list__item img {
  width: 100%;
}

/* front ///////////////////////////////////////////////////////////// */
.mv {
  overflow: hidden;
}
.mv__flame {
  position: relative;
}
.mv__flame img {
  display: block;
  width: 100%;
}
.mv__flame__shape {
  position: absolute;
  left: -20px;
  right: -20px;
  bottom: 0;
  width: calc(100% + 40px) !important;
  max-width: initial !important;
}

.top-info {
  background-color: #F0F0F0;
}
.top-info__posts-wrap {
  margin-bottom: 60px;
}
@media screen and (max-width: 720px) {
  .top-info__posts-wrap {
    margin-bottom: 40px;
  }
}
.top-info__posts li {
  border-bottom: 0.5px solid #000;
  padding: 12px 0 8px;
}
.top-info__posts li:first-of-type {
  padding-top: 0;
}
.top-info__posts__latest {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: 0.3s;
}
.top-info__posts__latest:hover {
  opacity: 0.6;
}
.top-info__posts__latest .img-trim {
  align-self: center;
  position: relative;
  width: 70%;
}
@media screen and (max-width: 720px) {
  .top-info__posts__latest .img-trim {
    width: 100%;
  }
}
.top-info__posts__latest .img-trim::before {
  content: "";
  display: block;
  padding-top: 71%;
}
.top-info__posts__latest .img-trim img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-info__posts__past {
  display: flex;
  gap: 20px;
  transition: 0.3s;
}
.top-info__posts__past:hover {
  opacity: 0.6;
}
.top-info__posts__content {
  flex: 1;
  display: flex;
  gap: 20px;
}
.top-info__posts__date {
  font-weight: 600;
  color: #003483;
}
.top-info__posts__no-post {
  text-align: center;
}
.top-info__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 20px;
}
@media screen and (max-width: 720px) {
  .top-info__media {
    grid-template-columns: 1fr;
  }
}
.top-info__media__block-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-info__media__block-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 30px;
}
.top-info__media__ttl {
  font-size: 22px;
}
@media screen and (max-width: 980px) {
  .top-info__media__ttl {
    font-size: clamp(17px, 2.2448979592vw, 22px);
  }
}
.top-info__media__ttl {
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.top-info__media__txt {
  color: #fff;
}
.top-info__media__btn {
  display: inline-block;
  font-weight: 600;
  color: #03090E;
  background-color: #fff;
  padding: 6px 30px;
  transition: 0.3s;
}
.top-info__media__btn:hover {
  opacity: 0.8;
}

.top-about {
  background-color: #fff;
  padding-bottom: 40px;
}
.top-about__img-wrap {
  margin-bottom: 20px;
}
.top-about__btm-shape {
  position: relative;
  height: 6.25vw;
}
.top-about__btm-shape::before, .top-about__btm-shape::after {
  position: absolute;
  bottom: -1px;
  display: inline-block;
  content: "";
  background-color: #F0F0F0;
  width: 50%;
  height: 6.25vw;
}
.top-about__btm-shape::before {
  left: 0;
  clip-path: polygon(0 0, 100% calc(100% - 1px), 100% 100%, 0 100%);
}
.top-about__btm-shape::after {
  right: 0;
  clip-path: polygon(0 calc(100% - 1px), 100% 0, 100% 100%, 0 100%);
}

.top-activity {
  background-color: #F0F0F0;
}
.top-activity__media {
  display: flex;
  margin-bottom: 50px;
}
@media screen and (max-width: 720px) {
  .top-activity__media {
    flex-direction: column;
  }
}
.top-activity__media__block-1 {
  flex: 1;
}
.top-activity__media .img-trim {
  position: relative;
}
.top-activity__media .img-trim::before {
  content: "";
  display: block;
  padding-top: 72%;
}
.top-activity__media .img-trim img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-activity__media__block-2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.top-activity__media__bg {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 60px 30px 30px 0;
  min-height: 250px;
}
@media screen and (max-width: 720px) {
  .top-activity__media__bg {
    min-height: 100px;
    padding: 60px 30px 30px 30px;
  }
}
.top-activity__media__bg::before {
  position: absolute;
  top: 0;
  left: -30px;
  content: "";
  width: 30px;
  height: 100%;
  background: linear-gradient(#03090E, #003483);
}
@media screen and (max-width: 720px) {
  .top-activity__media__bg::before {
    display: none;
  }
}
.top-activity__media__nam {
  position: absolute;
  bottom: calc(100% - 30px);
  left: 0;
  font-size: 70px;
}
@media screen and (max-width: 980px) {
  .top-activity__media__nam {
    font-size: clamp(50px, 7.1428571429vw, 70px);
  }
}
.top-activity__media__nam {
  font-weight: 900;
  color: #003483;
  line-height: 1;
}
@media screen and (max-width: 720px) {
  .top-activity__media__nam {
    left: 15px;
  }
}
.top-activity__media__ttl {
  font-size: 20px;
}
@media screen and (max-width: 980px) {
  .top-activity__media__ttl {
    font-size: clamp(16px, 2.0408163265vw, 20px);
  }
}
.top-activity__media__ttl {
  font-weight: 600;
  color: #fff;
}
.top-activity__media__txt {
  color: #fff;
}
.top-activity__media2 {
  display: flex;
  margin-bottom: 50px;
}
@media screen and (max-width: 720px) {
  .top-activity__media2 {
    flex-direction: column;
  }
}
.top-activity__media2__block-1 {
  order: 1;
  flex: 1;
}
.top-activity__media2 .img-trim {
  position: relative;
}
.top-activity__media2 .img-trim::before {
  content: "";
  display: block;
  padding-top: 72%;
}
.top-activity__media2 .img-trim img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-activity__media2__block-2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 720px) {
  .top-activity__media2__block-2 {
    order: 1;
  }
}
.top-activity__media2__bg {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 60px 0 30px 30px;
  min-height: 250px;
}
@media screen and (max-width: 720px) {
  .top-activity__media2__bg {
    min-height: 100px;
    padding: 60px 30px 30px 30px;
  }
}
.top-activity__media2__bg::before {
  position: absolute;
  top: 0;
  right: -30px;
  content: "";
  width: 30px;
  height: 100%;
  background: linear-gradient(#03090E, #003483);
}
@media screen and (max-width: 720px) {
  .top-activity__media2__bg::before {
    display: none;
  }
}
.top-activity__media2__nam {
  position: absolute;
  bottom: calc(100% - 30px);
  left: 30px;
  font-size: 70px;
}
@media screen and (max-width: 980px) {
  .top-activity__media2__nam {
    font-size: clamp(50px, 7.1428571429vw, 70px);
  }
}
.top-activity__media2__nam {
  font-weight: 900;
  color: #003483;
  line-height: 1;
}
@media screen and (max-width: 720px) {
  .top-activity__media2__nam {
    left: 15px;
  }
}
.top-activity__txt {
  margin-bottom: 40px;
}

.top-sns__content-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
@media screen and (max-width: 720px) {
  .top-sns__content-wrap {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.top-sns__content {
  width: 320px;
}
.top-sns__icon {
  text-align: center;
  margin-bottom: 20px;
}
.top-sns__icon img {
  width: 40px;
}

.top-footer-img img {
  width: 100%;
}

/* page-about /////////////////////////////////////////////////////////////// */
.about {
  background-color: #F0F0F0;
}
.about__figure figcaption {
  text-align: end;
}
.about__qa {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 720px) {
  .about__qa {
    grid-template-columns: 20px 1fr;
    gap: 0;
    margin-bottom: 40px;
  }
}
.about__qa__block-1 {
  font-size: 188px;
}
@media screen and (max-width: 980px) {
  .about__qa__block-1 {
    font-size: clamp(188px, 19.1836734694vw, 188px);
  }
}
.about__qa__block-1 {
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 30px;
}
.about__qa__ttl {
  font-size: 23px;
}
@media screen and (max-width: 980px) {
  .about__qa__ttl {
    font-size: clamp(18px, 2.3469387755vw, 23px);
  }
}
.about__qa__ttl {
  font-weight: 600;
  margin-bottom: 12px;
}
.about__qa__txt span {
  font-weight: 600;
}
.about__txt {
  position: relative;
  font-size: 23px;
}
@media screen and (max-width: 980px) {
  .about__txt {
    font-size: clamp(18px, 2.3469387755vw, 23px);
  }
}
.about__txt {
  font-weight: 600;
  color: #003483;
  text-align: center;
  margin: 140px 0;
  z-index: 1;
}
@media screen and (max-width: 500px) {
  .about__txt {
    margin: 70px 0 120px;
  }
}
.about__txt::before, .about__txt::after {
  position: absolute;
  font-size: 188px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  z-index: -1;
}
.about__txt::before {
  content: "“";
  left: 0;
  bottom: calc(100% - 120px);
}
.about__txt::after {
  content: "”";
  right: 0;
  top: calc(100% - 90px);
}
.about__movie {
  max-width: 720px;
  margin: 0 auto;
}

.activity {
  background-color: #F0F0F0;
}
.activity .card {
  background-color: #fff;
  padding: 30px 30px 40px;
}
.activity .card__profile {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.activity .card__interview {
  margin-bottom: 40px;
}
.activity .card__interview__ttl {
  font-size: 20px;
}
@media screen and (max-width: 980px) {
  .activity .card__interview__ttl {
    font-size: clamp(16px, 2.0408163265vw, 20px);
  }
}
.activity .card__interview__ttl {
  font-weight: 600;
  color: #fff;
  padding: 8px 12px;
  margin-bottom: 8px;
}
.activity .card__interview__txt {
  margin-bottom: 20px;
}
.activity .card__one-day__ttl {
  font-size: 20px;
}
@media screen and (max-width: 980px) {
  .activity .card__one-day__ttl {
    font-size: clamp(16px, 2.0408163265vw, 20px);
  }
}
.activity .card__one-day__ttl {
  font-weight: 600;
  margin-bottom: 20px;
}
.activity .card__one-day__table {
  width: 100%;
}
.activity .card__one-day__table th, .activity .card__one-day__table td {
  text-align: start;
  border-bottom: 1px solid #000;
  padding-top: 8px;
  padding-bottom: 8px;
}
.activity .card__one-day__table th {
  font-size: 20px;
}
@media screen and (max-width: 980px) {
  .activity .card__one-day__table th {
    font-size: clamp(16px, 2.0408163265vw, 20px);
  }
}
.activity .card__one-day__table th {
  font-weight: 600;
  white-space: nowrap;
  width: 80px;
  padding-right: 20px;
}

.check__inner {
  padding: 60px 0;
}
.check__ttl {
  font-size: 23px;
}
@media screen and (max-width: 980px) {
  .check__ttl {
    font-size: clamp(18px, 2.3469387755vw, 23px);
  }
}
.check__ttl {
  font-weight: 600;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}
.check__content-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 30px;
  margin-bottom: 20px;
}
@media screen and (max-width: 720px) {
  .check__content-wrap {
    padding: 30px 20px;
  }
}
.check__content__txt {
  font-size: 20px;
}
@media screen and (max-width: 980px) {
  .check__content__txt {
    font-size: clamp(16px, 2.0408163265vw, 20px);
  }
}
.check__content__txt {
  font-weight: 600;
  margin-bottom: 6px;
}
.check__content__txt::before {
  content: url(assets/imgs/common/check.svg);
  vertical-align: text-top;
  margin-right: 8px;
}
.check__txt {
  font-size: 23px;
}
@media screen and (max-width: 980px) {
  .check__txt {
    font-size: clamp(18px, 2.3469387755vw, 23px);
  }
}
.check__txt {
  font-weight: 600;
  text-align: center;
  color: #fff;
}
.check__btn-wrap {
  padding-top: 40px;
  padding-bottom: 40px;
}

.access__overview-container {
  margin-bottom: 100px;
}
@media screen and (max-width: 720px) {
  .access__overview-container {
    margin-bottom: 60px;
  }
}
.access__overview-container > p {
  background: #F0F0F0;
}
@media screen and (max-width: 720px) {
  .access__overview-container > p {
    background: transparent;
  }
}
.access__overview {
  display: flex;
}
@media screen and (max-width: 720px) {
  .access__overview {
    flex-direction: column;
  }
}
.access__table {
  flex: 1;
}
.access__table tr:nth-child(even) th {
  background: #F0F0F0;
}
@media screen and (max-width: 720px) {
  .access__table tr:nth-child(even) th {
    background: transparent;
  }
}
.access__table tr:nth-child(even) td {
  background: #F0F0F0;
}
@media screen and (max-width: 720px) {
  .access__table tr:nth-child(even) td {
    background: transparent;
  }
}
@media screen and (max-width: 720px) {
  .access__table tr:nth-child(odd) th {
    background: #F0F0F0;
  }
}
@media screen and (max-width: 720px) {
  .access__table tr:nth-child(odd) td {
    background: #F0F0F0;
  }
}
.access__table th {
  text-align: start;
  padding: 0 10px;
}
.access__table td {
  text-align: end;
  padding: 0 10px;
}
.access__table--border tr:nth-child(odd) th {
  border-left: 2px solid #F0F0F0;
}
.access__table--border tr:nth-child(even) th {
  border-left: 2px solid #fff;
}

.hp__ttl {
  font-size: 23px;
}
@media screen and (max-width: 980px) {
  .hp__ttl {
    font-size: clamp(18px, 2.3469387755vw, 23px);
  }
}
.hp__ttl {
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}
.hp__lists {
  text-align: center;
}
.hp__lists li {
  margin-bottom: 8px;
}
.hp__lists a {
  display: inline-block;
  font-weight: 600;
  transition: 0.3s;
}
.hp__lists a:hover {
  opacity: 0.7;
}

/* page-guidance ///////////////////////////////////////////////////////////// */
.join {
  background-color: #F0F0F0;
}
.join__figure {
  margin-bottom: 20px;
}
.join__ttl {
  font-size: 23px;
}
@media screen and (max-width: 980px) {
  .join__ttl {
    font-size: clamp(18px, 2.3469387755vw, 23px);
  }
}
.join__ttl {
  font-weight: 600;
  margin-bottom: 12px;
}

.point {
  background-color: #F0F0F0;
}
.point__ttl {
  text-align: center;
  font-size: 26px;
}
@media screen and (max-width: 980px) {
  .point__ttl {
    font-size: clamp(19px, 2.6530612245vw, 26px);
  }
}
.point__ttl {
  font-weight: 600;
  margin-bottom: 30px;
}
.point__txt {
  background-color: #fff;
  padding: 10px 30px;
  margin-bottom: 20px;
}

.flow {
  background-color: #F0F0F0;
  padding-bottom: 80px;
}
.flow__bg {
  background-color: #fff;
  padding: 50px 30px;
}
.flow__ttl {
  text-align: center;
  font-size: 26px;
}
@media screen and (max-width: 980px) {
  .flow__ttl {
    font-size: clamp(19px, 2.6530612245vw, 26px);
  }
}
.flow__ttl {
  font-weight: 600;
  margin-bottom: 30px;
}
.flow__lists-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flow__lists li {
  position: relative;
  padding: 10px 30px;
}
.flow__lists li::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(100% - 1px);
  left: -30px;
  width: 30px;
  height: 30px;
  clip-path: polygon(0 0, 100% 0, 50% 50%, 50% 50%);
  z-index: 1;
}
.flow__lists li:nth-of-type(1) {
  border-left: 30px solid #C7E6FA;
}
.flow__lists li:nth-of-type(1)::after {
  background-color: #C7E6FA;
}
.flow__lists li:nth-of-type(2) {
  border-left: 30px solid #98D7FF;
}
.flow__lists li:nth-of-type(2)::after {
  background-color: #98D7FF;
}
.flow__lists li:nth-of-type(3) {
  border-left: 30px solid #52B8FA;
}
.flow__lists li:nth-of-type(3)::after {
  background-color: #52B8FA;
}
.flow__lists li:nth-of-type(4) {
  border-left: 30px solid #4294C9;
}
.flow__lists li:nth-of-type(4)::after {
  background-color: #4294C9;
}
.flow__lists li:nth-of-type(5) {
  border-left: 30px solid #326C91;
}
.flow__lists li:nth-of-type(5)::after {
  background-color: #326C91;
}
.flow__num {
  font-size: 12px;
  font-weight: 600;
}
.flow__num span {
  display: inline-block;
  font-size: 32px;
}
@media screen and (max-width: 980px) {
  .flow__num span {
    font-size: clamp(22px, 3.2653061224vw, 32px);
  }
}
.flow__num span {
  font-weight: 600;
  vertical-align: sub;
  margin-left: 4px;
}
.flow__subttl {
  font-size: 20px;
}
@media screen and (max-width: 980px) {
  .flow__subttl {
    font-size: clamp(16px, 2.0408163265vw, 20px);
  }
}
.flow__subttl {
  font-weight: 600;
}
.flow__btm {
  max-width: 647px;
  padding-top: 70px;
  margin: 30px auto 0;
}
.flow__btm__parts-1 {
  font-size: 20px;
}
@media screen and (max-width: 980px) {
  .flow__btm__parts-1 {
    font-size: clamp(16px, 2.0408163265vw, 20px);
  }
}
.flow__btm__parts-1 {
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 500px) {
  .flow__btm__parts-1 {
    text-align: start;
  }
}
.flow__btm__parts-2 {
  position: relative;
  text-align: center;
}
.flow__btm__parts-2 img:nth-of-type(2) {
  position: absolute;
  right: 30px;
  bottom: 50%;
}
@media screen and (max-width: 720px) {
  .flow__btm__parts-2 img:nth-of-type(2) {
    width: 100px;
  }
}

.requirement__ttl {
  text-align: center;
  font-size: 26px;
}
@media screen and (max-width: 980px) {
  .requirement__ttl {
    font-size: clamp(19px, 2.6530612245vw, 26px);
  }
}
.requirement__ttl {
  font-weight: 600;
  margin-bottom: 30px;
}
.requirement__lists {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  padding-top: 40px;
  margin-bottom: 80px;
}
@media screen and (max-width: 980px) {
  .requirement__lists {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media screen and (max-width: 500px) {
  .requirement__lists {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.requirement__lists li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.requirement__img {
  position: relative;
  margin-bottom: 10px;
}
.requirement__img__num {
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 48px;
}
@media screen and (max-width: 980px) {
  .requirement__img__num {
    font-size: clamp(40px, 4.8979591837vw, 48px);
  }
}
.requirement__img__num {
  font-weight: 600;
  line-height: 1;
}
.requirement__txt {
  font-weight: 600;
}
.requirement__fee {
  max-width: 500px;
  margin: 0 auto 40px;
}
.requirement__fee p {
  font-weight: 600;
  text-align: center;
  border-bottom: 1px dashed #000;
  padding: 20px;
}
.requirement__fee p:first-of-type {
  border-top: 1px dashed #000;
}
@media screen and (max-width: 500px) {
  .requirement__fee p span {
    display: none;
  }
}

.faq__ttl {
  text-align: center;
  font-size: 26px;
}
@media screen and (max-width: 980px) {
  .faq__ttl {
    font-size: clamp(19px, 2.6530612245vw, 26px);
  }
}
.faq__ttl {
  font-weight: 600;
  color: #fff;
  margin-bottom: 30px;
}
.faq__dl dt {
  font-size: 23px;
}
@media screen and (max-width: 980px) {
  .faq__dl dt {
    font-size: clamp(18px, 2.3469387755vw, 23px);
  }
}
.faq__dl dt {
  font-weight: 600;
  background-color: #fff;
  padding: 20px 20px 20px 50px;
  text-indent: -30px;
}
.faq__dl dt::before {
  content: "Q";
  margin-right: 14px;
}
.faq__dl dd {
  color: #fff;
  padding: 20px 20px 20px 50px;
  margin-bottom: 10px;
  text-indent: -30px;
}
.faq__dl dd::before {
  content: "A";
  font-size: 23px;
}
@media screen and (max-width: 980px) {
  .faq__dl dd::before {
    font-size: clamp(18px, 2.3469387755vw, 23px);
  }
}
.faq__dl dd::before {
  font-weight: 600;
  margin-right: 14px;
}

/* page-policy ///////////////////////////////////////////////////////////// */
.policy-nav__lists {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 500px) {
  .policy-nav__lists {
    grid-template-columns: 1fr;
  }
}
.policy-nav li a {
  display: inline-block;
  font-size: 18px;
}
@media screen and (max-width: 980px) {
  .policy-nav li a {
    font-size: clamp(16px, 1.8367346939vw, 18px);
  }
}
.policy-nav li a {
  font-weight: 600;
  text-align: center;
  color: #fff;
  background-color: #003483;
  width: 100%;
  padding: 8px;
  transition: 0.3s;
}
.policy-nav li a:hover {
  opacity: 0.8;
}

.belief {
  background-color: #F0F0F0;
}
.belief__ttl {
  font-size: 26px;
}
@media screen and (max-width: 980px) {
  .belief__ttl {
    font-size: clamp(19px, 2.6530612245vw, 26px);
  }
}
.belief__ttl {
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}
.belief__img {
  text-align: center;
}
.belief__img img {
  max-width: 359px;
}
.belief__name {
  font-weight: 600;
  text-align: end;
  margin-bottom: 20px;
}
.belief__name span {
  display: inline-block;
  font-size: 23px;
}
@media screen and (max-width: 980px) {
  .belief__name span {
    font-size: clamp(18px, 2.3469387755vw, 23px);
  }
}
.belief__name span {
  font-weight: 600;
  margin-left: 20px;
}
.belief__content {
  margin-bottom: 40px;
}
.belief__content__ttl {
  margin-bottom: 20px;
}
.belief__content__txt {
  text-align: justify;
}

.policy {
  background-color: #F0F0F0;
  padding-bottom: 80px;
}
.policy__bg {
  background-color: #fff;
  padding: 40px 30px;
}
.policy__ttl {
  font-size: 23px;
}
@media screen and (max-width: 980px) {
  .policy__ttl {
    font-size: clamp(18px, 2.3469387755vw, 23px);
  }
}
.policy__ttl {
  font-weight: 600;
  margin-bottom: 20px;
}
.policy__slogan {
  text-align: center;
  margin-bottom: 40px;
}
.policy__slogan img {
  width: 100%;
}
.policy__lists {
  margin-bottom: 40px;
}
.policy__lists li {
  background-color: #C7E6FA;
  font-size: 23px;
}
@media screen and (max-width: 980px) {
  .policy__lists li {
    font-size: clamp(18px, 2.3469387755vw, 23px);
  }
}
.policy__lists li {
  font-weight: 600;
  padding: 4px 10px;
  margin-bottom: 20px;
}
.policy__lists li span {
  display: inline-block;
  font-size: 50px;
}
@media screen and (max-width: 980px) {
  .policy__lists li span {
    font-size: clamp(24px, 5.1020408163vw, 50px);
  }
}
.policy__lists li span {
  font-weight: 900;
  line-height: 1;
  vertical-align: sub;
  color: #003483;
  margin-right: 10px;
}
.policy__ttl-2 {
  margin-bottom: 20px;
}
.policy__lists-2 {
  margin-bottom: 40px;
}
.policy__lists-2 li {
  font-size: 23px;
}
@media screen and (max-width: 980px) {
  .policy__lists-2 li {
    font-size: clamp(18px, 2.3469387755vw, 23px);
  }
}
.policy__lists-2 li {
  font-weight: 600;
  margin-bottom: 10px;
}
.policy__lists-2 li span {
  display: inline-block;
  font-weight: 600;
  margin-right: 10px;
}

/* page-committee ///////////////////////////////////////////////////////////// */
.committee-nav__ttl {
  font-size: 23px;
}
@media screen and (max-width: 980px) {
  .committee-nav__ttl {
    font-size: clamp(18px, 2.3469387755vw, 23px);
  }
}
.committee-nav__ttl {
  font-weight: 600;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}
.committee-nav__lists {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 500px) {
  .committee-nav__lists {
    grid-template-columns: 1fr;
  }
}
.committee-nav li a {
  display: inline-block;
  font-size: 18px;
}
@media screen and (max-width: 980px) {
  .committee-nav li a {
    font-size: clamp(16px, 1.8367346939vw, 18px);
  }
}
.committee-nav li a {
  font-weight: 600;
  text-align: center;
  background-color: #fff;
  width: 100%;
  padding: 8px;
  transition: 0.3s;
}
.committee-nav li a:hover {
  opacity: 0.8;
}

.committee {
  background-color: #F0F0F0;
}
.committee__group {
  margin-bottom: 80px;
}
.committee__figure {
  margin-bottom: 40px;
}
.committee__ttl {
  margin-bottom: 20px;
}
.committee__name {
  font-weight: 600;
  text-align: end;
}
.committee__name span {
  display: inline-block;
  font-size: 23px;
}
@media screen and (max-width: 980px) {
  .committee__name span {
    font-size: clamp(18px, 2.3469387755vw, 23px);
  }
}
.committee__name span {
  font-weight: 600;
  margin-left: 20px;
}
.committee__txt {
  text-align: justify;
  padding-top: 20px;
  margin-bottom: 40px;
}
.committee__table th, .committee__table td {
  text-align: justify;
}
.committee__table th {
  font-weight: 600;
  text-align: start;
  white-space: nowrap;
  color: #003483;
  padding: 16px 16px 16px 0;
}
.committee__table td {
  padding: 16px 0;
}
.committee__plan {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  max-width: 720px;
  padding: 40px 30px;
  margin: 0 auto;
}
.committee__plan__ttl {
  font-size: 23px;
}
@media screen and (max-width: 980px) {
  .committee__plan__ttl {
    font-size: clamp(18px, 2.3469387755vw, 23px);
  }
}
.committee__plan__ttl {
  font-weight: 600;
  margin-bottom: 20px;
}
.committee__plan__lists li {
  margin-bottom: 10px;
}

/* page-member /////////////////////////////////////////////////////////////// */
.member-info {
  background-color: #F0F0F0;
}
.member-info__ttl {
  font-size: 23px;
}
@media screen and (max-width: 980px) {
  .member-info__ttl {
    font-size: clamp(18px, 2.3469387755vw, 23px);
  }
}
.member-info__ttl {
  font-weight: 600;
  margin-bottom: 12px;
}

.members {
  background-color: #F0F0F0;
  padding-bottom: 80px;
}
.members__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  max-width: 720px;
  padding: 40px 30px;
  margin: 0 auto 40px;
}
.members__ttl {
  font-size: 30px;
}
@media screen and (max-width: 980px) {
  .members__ttl {
    font-size: clamp(22px, 3.0612244898vw, 30px);
  }
}
.members__ttl {
  font-weight: 900;
  margin-bottom: 20px;
}
.members__ttl::first-letter {
  color: #003483;
}
.members__lists li {
  font-size: 23px;
}
@media screen and (max-width: 980px) {
  .members__lists li {
    font-size: clamp(18px, 2.3469387755vw, 23px);
  }
}
.members__lists li {
  font-weight: 600;
  margin-bottom: 10px;
}

.member-details__ttl {
  font-size: 23px;
}
@media screen and (max-width: 980px) {
  .member-details__ttl {
    font-size: clamp(18px, 2.3469387755vw, 23px);
  }
}
.member-details__ttl {
  font-weight: 600;
  margin-bottom: 10px;
}
.member-details__label-txt {
  font-size: 23px;
}
@media screen and (max-width: 980px) {
  .member-details__label-txt {
    font-size: clamp(18px, 2.3469387755vw, 23px);
  }
}
.member-details__label-txt {
  font-weight: 600;
  margin-bottom: 10px;
}
.member-details__label-txt span {
  display: inline-block;
  font-weight: 600;
  color: #fff;
  background-color: #003483;
  padding: 2px 30px;
  margin-right: 20px;
}
.member-details__txt {
  margin-bottom: 20px;
}
.member-details__btn {
  display: inline-block;
  color: #fff;
  background: linear-gradient(#003483, #0C2739);
  border-radius: 200px;
  padding: 10px 30px;
  margin-bottom: 20px;
  transition: 0.3s;
}
.member-details__btn:hover {
  opacity: 0.8;
}
.member-details .dashd-line {
  border-bottom: 1px dashed #000;
  margin-bottom: 20px;
}

.members-bnr {
  background-color: #F0F0F0;
}

/* page-contact /////////////////////////////////////////////////////////////// */
.contact {
  background-color: #F0F0F0;
}
.contact__txt {
  margin-bottom: 20px;
}

#mycontact {
  padding-top: 40px;
  margin-bottom: 40px;
}
#mycontact .mycontact-list {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 720px) {
  #mycontact .mycontact-list {
    flex-direction: column;
    gap: 10px;
  }
}
#mycontact .mycontact-list .mycontact-txt {
  font-size: 18px;
}
@media screen and (max-width: 980px) {
  #mycontact .mycontact-list .mycontact-txt {
    font-size: clamp(16px, 1.8367346939vw, 18px);
  }
}
#mycontact .mycontact-list .mycontact-txt {
  flex: 1;
  font-weight: 600;
}
#mycontact .mycontact-list .mycontact-required {
  display: inline-block;
  font-size: 15px;
  color: #fff;
  background-color: #B12D2C;
  margin-right: 10px;
  padding: 0 8px;
}
#mycontact .mycontact-list .mycontact-holder-wrapper {
  flex: 3;
}
#mycontact .mycontact-list .mycontact-holder {
  display: flex;
  border: none;
  border-radius: 10px;
  width: 100%;
  padding: 8px 10px;
}
#mycontact .mycontact-list .mycontact-select-wrapper {
  flex: 1;
  position: relative;
}
#mycontact .mycontact-list .mycontact-select-wrapper::after {
  position: absolute;
  top: 30%; /* 矢印の位置 */
  right: 15px; /* 矢印の位置 */
  width: 10px; /* 矢印の大きさ */
  height: 10px; /* 矢印の大きさ */
  border-top: 1px solid #58504A; /* 矢印の線 */
  border-right: 1px solid #58504A; /* 矢印の線 */
  -webkit-transform: rotate(135deg); /* 矢印の傾き */
  transform: rotate(135deg); /* 矢印の傾き */
  pointer-events: none; /* 矢印部分もクリック可能にする */
  content: "";
}
#mycontact .mycontact-list .mycontact-select {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  border-radius: 10px;
  width: 100%;
  padding: 8px 10px;
}
#mycontact .mycontact-list2 {
  padding-top: 20px;
}
#mycontact .mycontact-list2 .mycontact-txt {
  font-size: 18px;
}
@media screen and (max-width: 980px) {
  #mycontact .mycontact-list2 .mycontact-txt {
    font-size: clamp(16px, 1.8367346939vw, 18px);
  }
}
#mycontact .mycontact-list2 .mycontact-txt {
  font-weight: 600;
  margin-bottom: 10px;
}
#mycontact .mycontact-list2 .mycontact-required {
  display: inline-block;
  font-size: 15px;
  color: #fff;
  background-color: #B12D2C;
  margin-right: 10px;
  padding: 0 8px;
}
#mycontact .mycontact-list2 .mycontact-bigholder {
  display: flex;
  border: none;
  border-radius: 10px;
  width: 100%;
  padding: 8px 10px;
}

.mycontact-annotation {
  font-weight: 600;
  text-align: center;
  margin: 0 auto 40px;
}
.mycontact-annotation a {
  font-weight: 600;
  color: #003483;
  transition: 0.3s;
}
.mycontact-annotation a:hover {
  opacity: 0.7;
}

.mycontact-btn-wrapper {
  text-align: center;
  margin: 0 auto;
}
.mycontact-btn-wrapper .wpcf7-spinner {
  display: none;
}

.mycontact-btn {
  font-weight: 600;
  color: #fff;
  background: linear-gradient(#184D71, #0C2739);
  padding: 10px 24px;
  cursor: pointer;
  transition: 0.3s;
}
.mycontact-btn:hover {
  opacity: 0.8;
}/*# sourceMappingURL=style.css.map */