@charset "utf-8";

@media screen and (min-width: 737px) {
  .test {
    display: none;
  }
}
html,
body {
  background: #fff none;
  color: #000;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック",
    YuGothic, "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  overflow-x: hidden;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-font-smoothing: antialiased;
}

a.nolink {
  pointer-events: none;
}

a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.sp_only {
  display: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.cl-over {
  clear: both;
  overflow: hidden;
}

.fl-left {
  float: left;
}
.fl-right {
  float: right;
}

.di-fl {
  display: flex;
  flex-wrap: wrap;
}

/*.di-fl li {
	flex: 1;
}*/

.di-fl li a {
  display: block;
  width: 100%;
  height: 100%;
}

.ju-sb {
  justify-content: space-between;
}
.ju-cn {
  justify-content: center;
}
.ju-fe {
  justify-content: flex-end;
}

.font-mi {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.inner {
  width: 1080px;
  margin: 0 auto;
}

/*--Splash Screen--*/
/* ---------------------------- */
/* --- スプラッシュ画面 --- */
/* ---------------------------- */
.WelcomeLayer {
  width: 100%;
  height: 100vh;
  display: block; /*デフォルト非表示*/
  background: #08183b;
  z-index: 2019;
  position: fixed;
}
.Welcome {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  opacity: 0;
}
.Welcome-Logo {
  margin-left: auto;
  margin-right: auto;
  height: 100vh;
  width: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadein-anim 1s linear forwards;
  position: relative;
}
.Welcome-Logo_str {
  position: absolute;
  width: 50%;
  top: calc(100vh / 2 - 75px);
  left: calc(100vw / 2 - 341px);
}
.fadein {
  opacity: 0;
  animation: fadein-anim 2s linear forwards;
}
@keyframes fadein-anim {
  100% {
    opacity: 1;
  }
}

/*--sp-navi--*/

#NavList {
  display: grid;
  width: fit-content;
  /*place-content: center;
	place-items: center;
  column-gap: 1em;*/
  row-gap: 2em;
  grid-template-columns: repeat(9, auto);
  align-items: center;
}

#NavList a:hover {
  text-decoration: none;
}

.athlete-nav {
  margin-left: 1.8em;
  margin: 0;
}

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

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  cursor: pointer;
}
.menu-trigger {
  position: fixed;
  width: 50px;
  height: 50px;
  background: #16447c;
  z-index: 999;
  right: 3%;
  top: 18px;
}
.menu-trigger span {
  position: absolute;
  background: #fff;
  width: 30px;
  height: 2px;
  left: 0;
  right: 0;
  margin: auto;
}
.menu-trigger span:nth-of-type(1) {
  top: 15px;
}
.menu-trigger span:nth-of-type(2) {
  top: 0;
  bottom: 0;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 15px;
}
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}
.g-nav {
  display: none;
  position: fixed;
  top: 0;
  /*background-color: rgba(255,255,255,0.93);*/
  background-color: #004876;
  width: 100%;
  height: 100%;
  z-index: 101;
  overflow-y: scroll;
  padding-bottom: 10em;
}
.g-nav .list {
  padding: 80px 0px 0px;
}
.g-nav .list li {
  display: block;
  width: 100%;
  margin: 0px auto;
  border-top: solid 1px #30b7ef;
}

.g-nav .list li:last-child {
  border-bottom: solid 1px #30b7ef;
}

.g-nav .list li a {
  width: 100%;
  display: block;
  text-align: left;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  padding: 20px 40px;
  box-sizing: border-box;
  font-weight: 400;
  background-color: #004876;
  letter-spacing: 0.1em;
}
.g-nav .list li a i {
  margin-right: 7px;
}

.g-nav .list li > ul.menuSub-sp li a {
  font-size: 1.4rem !important;
  text-align: left !important;
  padding: 10px 40px 8px !important;
  box-sizing: border-box;
}

.g-nav .list li > ul.menuSub-sp li {
  border-bottom: none;
  margin-bottom: 0;
}

.g-nav .list li.last-chinese:last-child a {
  background-color: #c12026 !important;
}
.g-nav .list li.last-ja:last-child a {
  background-color: #3b7f9c !important;
}

/*
.g-nav .list li:nth-child(5) a,
.g-nav .list li:last-child a{
	background-color: #08287e;
	color: #fff;
}
*/

/*--header--*/

header {
  width: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  padding: 1em;
  box-sizing: border-box;
  z-index: 100;
  align-items: center;
}

header h1 {
  width: 18%;
}

header h1 a {
  font-size: 20px;
  color: #333 !important;
}

header nav ul li a {
  color: #fff;
  font-size: 1.5rem;
  padding: 1em 1.5em;
}

header nav ul li.chinese a {
  background-color: #c12026;
}
header nav ul li.ja a {
  background-color: #3b7f9c;
}

header nav ul li a:hover {
  text-decoration: underline;
}

/*--main-visual--*/
#main-visual video {
  width: 100%;
  position: relative;
}

#main-visual {
  position: relative;
  background-size: cover;
  text-align: center;
  /*height: 100vh;*/
}

#main-visual .main {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 60%;
  height: 230px;
  z-index: 10;
}

#main-visual video {
  z-index: 1 !important;
}

/*--top-area--*/
.top-area {
  background: url("../images/page/top/top-img05.jpg") no-repeat;
  background-size: cover;
  text-align: center;
  color: #fff;
  /*margin-top: 9em;*/
  margin-bottom: 5em;
  padding: 5em 0 20em;
}

.top-area h2 {
  font-size: 6rem;
  line-height: 2;
  margin-bottom: 0.5em;
}

.top-area p {
  width: 50%;
  margin: 0 auto;
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.8);
  line-height: 2;
  padding: 2em 0;
}

/*--right left--*/
.right-area {
  background: url("../images/page/top/bg-left.png") no-repeat top left;
  background-size: 65%;
  margin-bottom: 5em;
  padding: 5em 0 0;
}

.right-area h3 {
  color: #82a9b8;
  font-size: 2.6rem;
  padding: 0 3em 0.5em 0;
  text-align: right;
}

.right-area-img {
  order: 2;
}

.right-area-ttl {
  padding-top: 10em !important;
  padding-left: 20em !important;
  box-sizing: border-box;
}

.left-area {
  /*background: url("../images/page/top/bg-right.png") no-repeat top right;*/
  background-size: 65%;
  margin-bottom: 5em;
  padding: 5em 0 0;
}

.left-area-img,
.right-area-img {
  width: 60%;
}

.left-area h3 {
  color: #82a9b8;
  font-size: 2.6rem;
  padding: 0 0 0.5em 3em;
}

.left-area-ttl,
.right-area-ttl {
  width: 40%;
  padding: 1em;
  box-sizing: border-box;
  color: #fff;
}

.left-area-ttl {
  padding-top: 8em !important;
}

.left-area-ttl h2,
.right-area-ttl h2 {
  font-size: 4rem;
  letter-spacing: 0.2em;
}

.left-area-ttl p,
.right-area-ttl p {
  color: #82a9b8;
  font-size: 2rem;
  margin-bottom: 1em;
}

/*--link-area--*/
ul.link-area {
  margin-bottom: 2em;
  height: 381.33px;
}

ul.link-area li {
  flex: 1;
  display: flex;
  align-items: center;
  width: 50%;
  text-align: center;
  padding: 0;
}

ul.link-area li a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
}

ul.link-area li a:hover {
  background: rgba(0, 0, 0, 0.5);
}

ul.link-area li.first {
  background: url("../images/page/top/athlete-career-bg.jpg") no-repeat scroll
    center;
  background-size: contain;
  object-fit: fill;
}

ul.link-area li.second {
  background: url("../images/page/top/top-img07.jpg") no-repeat scroll;
  background-size: cover;
}

ul.link-area li.athletes-support {
  background: url(../images/page/top/top-img03.png) no-repeat scroll;
  background-size: cover;
}

ul.link-area li.club-support {
  background: url(../images/page/top/top-img02.png) no-repeat scroll;
  background-size: cover;
}

ul.link-area li.sports-management {
  background: url(../images/page/top/top-img08.jpg) no-repeat scroll;
  background-size: cover;
  background-position: center;
}

ul.link-area li.sports-management h2 {
  color: #000;
  filter: drop-shadow(0px 10px 8px #000);
}

ul.link-area li.column {
  background: url(../images/page/top/top-img09.jpg) no-repeat scroll;
  background-size: cover;
  background-position: center;
}

ul.link-area li.column h2 {
  color: #000;
}

ul.link-area li h2 {
  font-size: 3.2rem;
  letter-spacing: 0.3em;
}

ul.link-area li h2 span {
  font-size: 2rem;
  display: block;
  letter-spacing: 0em;
  padding-top: 0.5em;
}

.spocomi-relative {
  position: relative;
}
.spocomi-net-logo-absolute {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 30%;
  height: 20%;
}

@media screen and (max-width: 420px) {
  .di-fl {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .di-fl li a h2 {
    display: inline-block;
    vertical-align: baseline;
  }

  ul.link-area {
    margin-bottom: 2em;
    height: fit-content;
  }
}

/*--recruit-area--*/
.recruit-area {
  background: url("../images/page/top/top-img06.jpg") no-repeat center;
  background-size: cover;
  padding: 8em 0;
  color: #fff;
  text-align: center;
}

.recruit-ttl {
  font-size: 6rem;
  letter-spacing: 0.5em;
  margin-bottom: 1em;
}
.recruit-ttl span {
  font-size: 2rem;
  display: block;
  letter-spacing: 0.1em;
  padding-top: 1em;
}

.more a {
  position: relative;
}
.more a span {
  position: absolute;
  top: 0.2em;
  right: 1em;
}
.more a {
  display: inline-block;
  font-size: 1.6rem;
  color: #fff;
  border: solid 1px #fff;
  padding: 0.3em 5em;
}

.more a:hover {
  color: #fff;
  background-color: #2f5595;
}

.more01 a {
  position: relative;
}
.more01 a span {
  position: absolute;
  top: 0.2em;
  right: 1em;
}
.more01 a {
  display: inline-block;
  font-size: 1.6rem;
  color: #16447c;
  border: solid 1px #16447c;
  padding: 0.3em 5em;
}
.more01 a:hover {
  color: #fff;
  background-color: #2f5595;
}

/*--media-area--*/
.media-area {
  padding: 5em 0;
  text-align: center;
  width: 100%;
}

h2.media-ttl {
  width: 35%;
  text-align: center;
  color: #384f78;
  font-size: 4.8rem;
  letter-spacing: 0.1em;
  padding-top: 1.5em;
}

h2.media-ttl span {
  color: #3b7f9c;
  font-size: 2rem;
  display: block;
  padding-top: 0.5em;
  letter-spacing: 0em;
}

.media-list {
  width: 55%;
}
.top-news-info {
  margin-bottom: 2em;
}
.top-news-info dl {
  align-items: center;
}
.top-news-info dl dt {
  width: 20%;
  background-color: #3b7f9c;
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  padding: 0.5em 0;
}

.top-news-info dl dd {
  width: 77%;
  margin-left: 1em;
  position: relative;
  padding: 0.5em 0;
}

.top-news-info a {
  display: block;
  padding: 1em;
  box-sizing: border-box;
  border-bottom: 1px solid #ccc;
}

.top-news-info a:hover {
  background-color: #16447c !important;
  color: #fff !important;
}

.top-news-info dl dd:before {
  position: absolute;
  top: 0.5em;
  right: 0em;
  content: "";
  display: inline-block;
  width: 2em;
  height: 2em;
  background: url(../images/page/top/arrow.png) no-repeat;
  background-size: contain;
}

.btn a {
  position: relative;
}
.btn a span {
  position: absolute;
  top: 0.4em;
  right: 1em;
}
.btn a {
  display: inline-block;
  font-size: 1.2rem;
  color: #2f5595;
  border: solid 1px #2f5595;
  padding: 0.5em 4em;
}

.btn a:hover {
  color: #fff;
  background-color: #2f5595;
}

.right {
  float: right;
}

/*--footer--*/
footer {
  clear: both;
  border-top: solid 20px #16447c;
}

.footer-inner {
  padding: 3em 5em 1em;
  box-sizing: border-box;
}

.footer-inner .footer-address {
  width: 40%;
}
.footer-inner .footer-address .footer-logo {
  width: 60%;
  margin-bottom: 1em;
}
.footer-inner .footer-address p {
  font-size: 1.5rem;
  line-height: 2;
}

.footer-inner .footer-info {
  width: 58%;
}

.footer-inner .footer-info ul {
  margin-bottom: 3em;
}

.footer-inner .footer-info ul li {
  font-size: 1.6rem;
  padding: 0 1em;
}

.footer-inner .footer-info ul li a:hover {
  color: #16447c;
}

.footer-inner .footer-info ol.sns-list {
  justify-content: flex-end;
  margin-bottom: 3em;
}
.footer-inner .footer-info ol.sns-list li {
  width: 6%;
  margin-left: 2em;
}

p.copyright {
  text-align: right;
  font-size: 1.2rem;
}

.footer-menu {
  display: grid;
  width: fit-content;
  place-content: center;
  place-items: center;
  column-gap: 2em;
  row-gap: 2em;
  grid-template-columns: repeat(7, auto);
}

.footer-menu li {
  display: inline-block;
  text-align: left;
  padding: 0;
  text-indent: 0;
}

@media (max-width: 1024px) {
  /* 検知ゾーンを消す */
  .hover-zone {
    display: none !important;
  } /* PC用ヘッダー自体も消す（.sp_only を使うため） */
  #GlobalHeader {
    display: none !important; /* 念のためのガード（テーマ側CSSの影響を断つ） */
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    background: transparent !important;
  }
} /* 2) PC（769px～）だけ hover 表示を有効化 */
@media (min-width: 1024px) {
  #GlobalHeader {
    z-index: 2000 !important;
  }
  /* 画面最上部のマウス検知ゾーン */
  .hover-zone {
    z-index: 1000 !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px; /* 出しやすさはここで調整可 */
    background: transparent; /* 透明 */
    pointer-events: auto;
    display: block; /* 念のため明示 */
  } /* ヘッダー：固定配置＋初期は上に隠す（高さ可変に強い） */
  #GlobalHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.72); /* 黒＋半透明 */
    backdrop-filter: saturate(120%) blur(2px); /* 任意 */
    transform: translateY(-100%);
    opacity: 0.98;
    transition: transform 0.35s ease, opacity 0.35s ease;
    display: flex; /* モバイルの display:none の影響を打ち消す */
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  } /* 表示状態：スッと降りてくる */
  #GlobalHeader.is-show {
    transform: translateY(0);
    opacity: 1;
  } /* ヘッダー内のリンク色（必要に応じて） */
  #GlobalHeader a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
  } /* ドロップダウンが潜らないように */
  #GlobalHeader .menuSub {
    position: absolute; /* 既存仕様に合わせて調整可 */
    z-index: 10001;
  }
}

@media screen and (min-width: 1359px) and (max-width: 1372px) {
  #GlobalHeader {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }
  #GlobalHeader > br {
    display: none !important;
  } /* ← これで“縦並び”の原因を遮断 */
  #GlobalHeader > h1 {
    flex: 0 0 auto !important;
  } /* ロゴ列は固定幅 */
  #GlobalHeader > h1 img {
    height: 52px;
    width: auto;
  }
  #GlobalHeader > nav {
    margin-left: auto !important;
  } /* ナビを右側へ寄せる */
}

/*----------

ページタイトル

------------*/

.page-top-title {
  text-align: center;
  font-family: "游明朝体", "Yu Mincho";
  font-size: 8rem;
}

#page-bg {
  padding: 20em 0;
  text-align: center;
  border-bottom: solid 30px #16447c;
}

#page-bg p {
  font-size: 3.4rem;
  color: #82a9b8;
}

#sns-icons {
  display: flex;
  justify-content: space-around;
}

#page-bg h2 {
  font-size: 8rem;
  color: #fff;
}

#page-bg li {
  font-size: 3.4rem;
  color: #82a9b8;
}

.media-bg {
  background: url("../images/page/athlete/bg-main.jpg") no-repeat;
  background-size: cover;
}

.mt10 {
  margin-top: 10em;
}

/*--------------

アスリートキャリア

--------------*/

main section {
  width: 100%;
  padding: 4rem 0;
}

#main-contents {
  text-align: center;
}

.primary-section,
.secondary-section {
  width: 100%;
  margin: 0 auto;
}

.ttl-bg {
  padding: 0.3em 0.5em;
  background: linear-gradient(to bottom, #fff, #d4e3f6);
  color: #16447c;
  width: 100%;
  margin: 0 auto;
}

.ttl-bg h1 {
  font-size: 4rem;
  font-family: "游明朝体", "Yu Mincho";
}

.about-section {
  width: 60%;
  margin: 4rem auto;
  overflow-wrap: break-word;
  line-break: strict;
}

.about-section p {
  font-size: 2rem;
  font-family: "游明朝体", "Yu Mincho";
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
}

.movie-section {
  margin: 4em auto;
  width: 60%;
  height: 10em;
  margin-bottom: 12em;
}

.movie-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.movie-ttl-p {
  text-align: left;
  margin-right: 8em;
}

.movie-ttl-p p {
  text-align: center;
  font-size: 2.4rem;
  margin: 0 auto;
  font-family: "游明朝体", "Yu Mincho";
}

.movie-ttl-p :last-of-type {
  font-size: 2rem;
  font-family: "游明朝体", "Yu Mincho";
}

.flex-contents {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.flex-contents-sub {
  padding-left: 6em;
  margin-bottom: 16em;
  overflow-wrap: break-word;
  width: 60em;
  height: 6.25em;
}

.flex-contents-sub h2 {
  font-size: 2.4rem;
  font-family: "游明朝体", "Yu Mincho";
  text-align: center;
  overflow-wrap: break-word;
}

.flex-contents-sub p {
  font-size: 1.4rem;
  font-family: "游明朝体", "Yu Mincho";
  text-align: center;
  overflow-wrap: break-word;
}

.swiper-container {
  margin-bottom: 4em;
}

.secondary-section h3 {
  font-size: 2.4rem;
  font-family: "游明朝体", "Yu Mincho";
}

.athlete-sentence p {
  font-size: 1.8rem;
  font-family: "游明朝体", "Yu Mincho";
  text-align: center;
  overflow-wrap: break-word;
  margin: 4rem 0;
}

.form-btn {
  width: 35%;
  height: auto;
  margin: 0 auto;
  background-color: #ffab40;
  border-radius: 10px;
  margin-bottom: 10em;
}

.form-btn h3 {
  font-size: 2.4rem;
  font-family: "游明朝体", "Yu Mincho";
  font-weight: 800;
  padding: 0.5em 1em;
}

.flex-adjust h2 {
  text-align: center;
  overflow-wrap: break-word;
  margin-bottom: 0.8em;
}

/*--------------------------------

アスリートキャリアの対談を見るボタン

--------------------------------*/

.athlete-btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn--red {
  width: 115px;
  height: fit-content;
  color: #fff;
  background-color: #ff0000;
  border-bottom: 5px solid #000;
}
a.btn--red:hover {
  margin-top: 3px;
  color: #fff;
  background: #ff0000;
  border-bottom: 2px solid #000;
}
a.btn--shadow {
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

a.btn--red.btn--cubic {
  border-bottom: 5px solid #ff0000;
}

a.btn--red.btn--cubic:hover {
  border-bottom: 2px solid #ff0000;
}

a.btn--radius {
  border-radius: 100vh;
}

.fa-position-right {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 1rem;
}

/*------------------------------------------

アスリートキャリアのスライド：ページネーション等

------------------------------------------*/

.swiper-container {
  position: relative;
  overflow: hidden;
}

/* ページ番号のスタイル */
.swiper-pagination {
  position: absolute;
  top: 105%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  color: #333;
  font-weight: bold;
  z-index: 11;
}

/* グラデーション（左右） */
.swiper-container::before,
.swiper-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 48px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.swiper-container::before {
  left: 0;
  background: linear-gradient(to right, white, rgba(255, 255, 255, 0));
}

.swiper-container::after {
  right: 0;
  background: linear-gradient(to left, white, rgba(255, 255, 255, 0));
}

.swiper-wrapper {
  position: relative;
  padding-bottom: 100px;
}

/* 矢印の基本スタイル */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  padding: 10px;
  background-color: transparent;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 60px;
  height: 100%;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
}

/* 左矢印 */
.swiper-button-prev {
  left: 8px;
}

/* 右矢印 */
.swiper-button-next {
  right: 8px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
}

.float-button {
  display: none;
  width: 30%;
  height: 8rem;
  background-color: #ffab40;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  vertical-align: middle;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 10px;
}

.float-button h2 {
  font-size: 2.4rem;
  font-weight: 800;
}



/*--------------

アスリートスポンサー

--------------*/

#sponsor-inner {
  width: 100%;
}

#support-area {
  display: flex;
  justify-content: center;
  gap: 50px 150px;
}

#support-area div p {
  font-family: "游明朝体", "Yu Mincho";
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}

#sponsor-inner {
  margin-bottom: 15em;
}

/*---------------------

スポーツマネジメント事業

---------------------*/

.athlete-list-inner {
  width: 1388px;
  height: auto;
}

.athlete-list-flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
  max-width: 1388px;
  margin: 0 auto;
  margin-bottom: 10rem;
  justify-content: center;
  min-height: 600px;
}

.athlete-list-flex-container > div {
  flex: 0 0 auto;
}

.athlete-list-flex-container img {
  display: block;
  width: 400px;
  height: auto;
}

.athlete-card {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s ease;
  display: none;
}

.athlete-card.show {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.athlete-card {
  opacity: 0;
  animation: slideIn 0.6s ease forwards;
}

.pagination {
  text-align: center;
  margin-top: 2rem;
}

.pagination button {
  background: #eee;
  border: none;
  padding: 0.5em 1em;
  margin: 0 0.3em;
  border-radius: 5px;
  cursor: pointer;
}

.pagination button.active {
  background: #333;
  color: white;
}

.athlete-list-table {
  width: 100%;
  margin-bottom: 10em;
}

.athlete-list-table,
.athlete-list-table,
.athlete-list-table {
  border: 1px solid #16447c;
  border-collapse: collapse;
}

.athlete-list-table,
.athlete-list-table {
  padding: 0.8em 1em;
  box-sizing: border-box;
  font-size: 1.5rem;
}

.athlete-list-table {
  width: 20%;
  background-color: #16447c;
  color: #fff;
  font-weight: normal;
  text-align: center;
  border-bottom: 1px solid #fff;
}

.athlete-list-table :last-child {
  border-bottom: 10px solid #000;
}

.athlete-list-table {
  line-height: 2;
}
.athlete-list-table div {
  margin-top: 4em;
}
.athlete-list-table a {
  color: #16447c;
}

.athlete-name {
  font-size: 20px;
}

.competition-event {
  font-size: 20px;
}

.competition-description {
  font-size: 20px;
}

.sign-up-form-list {
  display: flex;
  justify-content: space-between;
  width: 1200px;
  margin: 0 auto;
}

.sign-up-form-flex {
  display: flex;
  justify-content: space-between;
}

.for-athlete,
.for-company {
  background-color: #ff9900;
  color: #000;
  width: 400px;
  padding: 20px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}

.for-sponsor {
  background-color: #ff9900;
  color: #000;
  width: 400px;
  padding: 20px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  margin: 0 3rem;
}

.athlete-list img {
  aspect-ratio: unset !important;
  width: 560px !important;
  height: 360px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 5em 0 5em 0;
}

.athlete-thumb-link img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/*---------------------------------

スポーツマネジメント事業アスリート詳細

---------------------------------*/

.athlete-profile-container {
  width: min(90%, 960px);
  margin-inline: auto;
  margin: 10em auto;
}

.athlete-profile {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5em;
}

.athlete-profile-main {
  object-fit: contain;
}

.profile-information {
  display: flex;
  flex-wrap: wrap;
  vertical-align: middle;
  width: 400px;
  height: auto;
  text-align: center;
  margin-bottom: 5em;
}

tr.athlete-name-cell {
  vertical-align: top;
  font-size: 0em;
}

.profile-information h3 {
  font-size: 20px;
  font-weight: 700;
}

th.category-name {
  text-align: left;
}

h3.entry-description {
  text-align: left;
}

h3.athlete-media-link,
a.athlete-media-link {
  text-align: center;
  color: #16447c;
}

.profile-information th td {
  text-align: left;
}

.athlete-name-hurigana {
  font-size: 20px;
}

h3.athlete-main-name {
  font-size: 28px;
}

.athlete-profile-table {
  margin-top: 10em;
}

.athlete-information-table {
  text-align: center;
}

.career-highlights {
  margin-bottom: 5em;
}

.career-highlights h2 {
  font-size: 20px;
  font-weight: 700;
  padding: 1em;
}

h2.subheading {
  width: 20%;
  background-color: #d0dfe3;
  text-align: center;
}

h2.message-subheading {
  width: 42%;
  background-color: #d0dfe3;
  text-align: center;
}

.career-highlights p {
  font-size: 20px;
  padding: 1em;
}

.athlete-profile-images {
  display: flex;
  height: 360px;
}

.athlete-profile-images div {
  margin: 0.2em;
}

.athlete-profile-images-flex {
  width: 39%;
  height: 99.5%;
  object-fit: contain;
}

.athlete-profile-images-top {
  margin-top: 0.2em;
  margin-bottom: 0.2em;
  object-fit: cover;
}

.athlete-profile-images-bottom {
  margin-bottom: 0.2em;
  object-fit: cover;
}

.athlete-profile-images-top,
.athlete-profile-images-bottom {
  height: 50%;
}

.athlete-profile-images-second {
  display: flex;
  width: 100%;
  height: 360px;
}

.athlete-profile-images-second img {
  margin: 0.2em;
}

.athlete-flex-image-left {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.suzuki-hina-only {
  object-fit: none;
}

.athlete-flex-image-right {
  width: 36%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.profile-page-form {
  margin-bottom: 2em;
}

/*----------

メディア情報

------------*/

#main-contents {
  margin-bottom: 10em;
}

h2.ttl {
  font-size: 4em;
  color: #16447c;
  text-align: center;
  letter-spacing: 0.1em;
}

.ttl-img {
  width: 20%;
  margin: -7% auto 5em;
}

.ttl-img02 {
  width: 40%;
  margin: -7% auto 5em;
}

.ttl-img03 {
  width: 30%;
  margin: -8% auto 5em;
}

.ttl-img04 {
  width: 30%;
  margin: -10% auto 5em;
}

.ttl-img05 {
  width: 70%;
  margin: -8% auto 5em;
}

.ttl-img06 {
  width: 40%;
  margin: -10% auto 5em;
}

ul.media-list01 li {
  width: 23%;
  margin: 0 1% 3%;
}

ul.media-list01 li img {
  width: 230px;
  height: 115px;
  object-fit: cover;
  margin: 56px 0;
}

ul.media-list01 li p.media-day {
  display: inline-block;
  background-color: #16447c;
  color: #fff;
  font-weight: bold;
  padding: 0.4em 1em;
  margin: 1em 0;
}

ul.media-list01 li p.media-txt {
  font-size: 1.3rem;
  line-height: 1.6;
}

.contact-info {
  margin: 5em 0;
  background-color: #d8dfe9;
  padding: 5em 0;
  text-align: center;
}

.mail-btn {
  width: 50%;
  margin: 0 auto 3em;
}

.tel-img {
  width: 36%;
  margin: 0 auto 2em;
}

.contact-info h3 {
  font-size: 3rem;
  color: #16447c;
  margin-bottom: 1em;
}

.contact-info p {
  width: 40%;
  padding: 0.3em 0;
  margin: 0 auto;
  background-color: #243251;
  font-size: 1.4rem;
  color: #fff;
}

/*----------

採用情報

------------*/
.bg-area {
  text-align: center;
  color: #fff;
  padding: 8em 0;
  margin-bottom: 10em;
}

.bg-area h2 {
  font-size: 4rem;
  line-height: 2;
  margin-bottom: 0.4em;
}

.bg-area h2 span {
  display: block;
  font-size: 1.5rem;
}

.bg-area p {
  font-size: 2rem;
  line-height: 2;
}

.recruit-bg001 {
  background: url("..//images/page/recruit/bg-001.jpg") no-repeat;
  background-size: cover;
}

.recruit-link {
  margin: 4em 0 10em;
}

ul.recruit-btn {
  width: 48%;
}
ul.recruit-btn li + li {
  margin-top: 2em;
  margin-bottom: 2rem;
}

.new-graduate {
  background-color: #daf3ed;
  padding: 5px 0 20px;
}

.new-graduate p:first-child {
  font-size: 22px;
}

.new-graduate div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.mynavi_link {
  margin-top: 20px;
}

@media screen and (max-width: 737px) {
  .new-graduate p:first-child {
    font-size: 16px;
  }

  .new-graduate div img {
    width: 150px !important;
    height: 30px !important;
  }

  .sns-btn img {
    object-fit: contain;
  }
}

.sheet-area {
  width: 48%;
  background: #fafafa;
}

.sheet-area h3 {
  padding: 0.1em 0;
  color: #fff;
  background: #29abe2;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 3rem;
}

.sheet-inner {
  padding: 4em;
  box-sizing: border-box;
}

.sheet-inner dl + dl {
  margin-top: 1.5em;
}

.sheet-inner dl dt {
  width: 30%;
}

.sheet-inner dl dd {
  width: 60%;
}

.sheet-inner dl dd ul li {
  width: 48%;
  text-align: center;
}

.sheet-inner dl dd ul li a {
  display: block;
  padding: 0.8em 0;
  font-size: 1.4rem;
}

.sheet-inner dl dd ul.blue li a {
  color: #2f5595;
  border: solid 2px #2f5595;
}

.sheet-inner dl dd ul.blue li a:hover {
  background-color: #2f5595;
  color: #fff;
  border: solid 2px #2f5595;
}

.sheet-inner dl dd ul.green li a {
  color: #519d96;
  border: solid 2px #519d96;
}

.sheet-inner dl dd ul.green li a:hover {
  background-color: #519d96;
  color: #fff;
  border: solid 2px #519d96;
}

h2.ttl01 {
  font-size: 3.4rem;
  color: #16447c;
  text-align: center;
  margin-bottom: 1em;
}

table.recruit-table {
  width: 100%;
  margin-bottom: 10em;
}

table.recruit-table,
table.recruit-table td,
table.recruit-table th {
  border: 1px solid #16447c;
  border-collapse: collapse;
}

table.recruit-table td,
table.recruit-table th {
  padding: 0.8em 1em;
  box-sizing: border-box;
  font-size: 1.5rem;
}

table.recruit-table th {
  width: 20%;
  background-color: #16447c;
  color: #fff;
  font-weight: normal;
  text-align: center;
  border-bottom: 1px solid #fff;
}

table.recruit-table th:last-child {
  border-bottom: 10px solid #000;
}

table.recruit-table td {
  line-height: 2;
}
table.recruit-table td div {
  margin-top: 4em;
}
table.recruit-table td a {
  color: #16447c;
}

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

ul li.center p {
  font-size: 1.6rem;
  margin-bottom: 1em;
  letter-spacing: 0.1em;
  font-weight: bold;
}

ul li.center .recruit-img {
  display: block;
  width: 100%;
  border: solid 4px #ccc;
  padding: 1em;
  box-sizing: border-box;
}

ul li.center .recruit-img a {
  display: block;
}

/*----------

学校施設・部活動支援事業

------------*/

h2.ttl-01 {
  width: 100%;
  font-size: 4rem;
  margin: 0 auto 1em;
  background-color: #243251;
  text-align: center;
  color: #fff;
  margin-top: 128px;
}

h3.ttl-02 {
  font-size: 3.4rem;
  text-align: center;
  color: #384f78;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
}

.txt {
  font-size: 1.4rem;
  line-height: 2;
  text-align: center;
}

.arrow {
  width: 10%;
  margin: 4em auto;
}

ul.club-support-list {
  margin-bottom: 10em;
}

ul.club-support-list li {
  font-size: 2.2rem;
  font-weight: bold;
  color: #384f78;
  text-align: center;
}

ul.club-support-list li + li {
  margin-top: 0.5em;
}

.club-support-bg001 {
  background: url("../images/page/club-support/bg-001.jpg") no-repeat;
  background-size: cover;
  padding: 20em 0 8em 0;
}

.club-support-bg002 {
  background: url("../images/page/club-support/bg-002.jpg") no-repeat;
  background-size: cover;
  padding: 12em 0;
}

.bg-area01 {
  text-align: center;
  color: #243251;
  padding: 14em 0;
  margin: 10em 0;
}

.club-support-bg003 {
  background: url("../images/page/club-support/bg-003.jpg") no-repeat;
  background-size: cover;
}

.bg-area01 p {
  font-size: 26px;
  line-height: 2;
}

.wi80 {
  width: 80%;
  margin: 2% auto 0;
}

/*----------

学校施設・部活動支援事業

------------*/

.club-area-bg001 {
  background: url("../images/page/club-area/bg-001.jpg") no-repeat;
  background-size: cover;
}

.club-area-bg001 p {
  line-height: 3;
}

.arrow01 {
  width: 10%;
  margin: -10% auto 0;
}

.bg-area02 {
  text-align: center;
  color: #243251;
  padding: 10em 0;
  margin: -1% 0 0;
}

.club-area-bg002 {
  background: url("../images/page/club-area/bg-002.jpg") no-repeat #000;
  background-size: cover;
}

.club-area-bg003 {
  background: url("../images/page/club-area/bg-003.jpg") no-repeat;
  background-size: cover;
}

.mb0 {
  margin-bottom: 0 !important;
}
.merit-area {
  padding: 5em 0;
  text-align: center;
  color: #fff;
  background-color: #1da1f2;
}

.merit-area h3 {
  font-size: 3.8rem;
  border: 1px solid #fff;
  padding: 0.4em 0;
  margin-bottom: 0.5em;
}

.merit-area h3 span {
  font-size: 1.8rem;
  display: block;
}

.merit-area p {
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (max-width: 420px) and (orientation: portrait) {
  .inner {
    width: 420px;
  }
  h2.ttl-01 {
    font-size: 1.8rem;
  }
  h3.ttl-02 {
    font-size: 1.8rem;
  }
  .lp-img {
    width: 100vw;
  }
  .txt {
    font-size: 1.4vw;
  }
  ul.club-support-list li {
    font-size: 1.8vw;
  }
}

/*----------

講師派遣事業

------------*/

.coach-bg001 {
  background: url("../images/page/coach/bg-001.jpg") no-repeat;
  background-size: cover;
}

.area {
  margin-bottom: 10em;
}
.mt-3 {
  margin-top: -3%;
}
.area h2 {
  width: 50%;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.area .area-img {
  width: 50%;
}

.area .area-info {
  width: 50%;
  padding: 4em;
  box-sizing: border-box;
}

.area .area-info h3 {
  padding-top: 2em;
  font-size: 3rem;
  color: #16447c;
  padding-bottom: 1em;
  margin-bottom: 1.5em;
  letter-spacing: 0.1em;
  border-bottom: solid 1px #16447c;
}

.area .area-info h4 {
  font-size: 2.4rem;
  color: #16447c;
  margin-bottom: 1em;
}

.area .area-info p {
  font-size: 1.6rem;
  line-height: 2;
}

.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.wi20 {
  width: 20% !important;
}
.wi30 {
  width: 30% !important;
}
.wi40 {
  width: 40% !important;
}
.wi70 {
  width: 70% !important;
}

.introducing-area {
  background: url("../images/page/coach/ttl.png") repeat-x top;
  text-align: center;
}

.introducing-area h2 {
  font-size: 4rem;
  letter-spacing: 0.05em;
  padding-top: 1em;
  margin-bottom: 0.3em;
  color: #fff;
}

.introducing-area p {
  font-size: 1.6rem;
  color: #384f78;
}

.introducing-area ul {
  margin-top: 5em;
}

.introducing-area ul li {
  width: 30%;
  margin-bottom: 3em;
  box-sizing: border-box;
}

/*----------

スクール事業

------------*/

.school-bg001 {
  background: url("../images/page/school/bg-001.jpg") no-repeat;
  background-size: cover;
}

.mt5 {
  margin-top: 5em;
}

.area-01 {
  padding: 5em 0;
  margin-bottom: 10em;
  background-color: #d8dfe9;
}

.area-01 .box {
  width: 50%;
  padding: 0 4%;
  box-sizing: border-box;
}

.area-01 .box:first-of-type {
  border-right: solid 1px #000;
}

.area-01 h3 {
  font-size: 2.4rem;
  color: #16447c;
  text-align: center;
  margin-bottom: 1em;
}
table.info-01 {
  margin-top: 2em;
  width: 100%;
  border-spacing: 0 20px;
  border-collapse: separate;
}

table.ma10 {
  margin-top: 0 !important;
  border-spacing: 0 5px !important;
}

table.info-01,
table.info-01 td,
table.info-01 th {
}
table.info-01 td,
table.info-01 th {
  box-sizing: border-box;
  text-align: center;
}
table.info-01 th {
  padding: 0em 1em;
  font-size: 3rem;
  width: 5%;
  color: #fff;
  background-color: #16447c;
}

table.info-01 td {
  font-size: 2rem;
  line-height: 2;
  width: 80%;
  color: #16447c;
  background-color: #fff;
}

table.info-01 td a {
  display: block;
  padding: 0.5em 1em;
  color: #16447c;
  transition: background-color 1s;
}

table.info-01 td a:hover {
  color: #fff;
  background-color: #16447c;
  transition: background-color 1s;
}

.area-01 dl {
  text-align: center;
}

.area-01 dl dt {
  font-size: 1.7rem;
  color: #fff;
  padding: 0.5em 0;
  background-color: #16447c;
}

.area-01 dl dd {
  font-size: 2.4rem;
  color: #16447c;
  background-color: #b7c5d7;
}

.area-01 dl dd a {
  display: block;
  padding: 0.5em 0;
}

.area-01 dl dd a:hover {
  color: #fff;
  background-color: #16447c;
  transition: background-color 1s;
}

.school-bt {
}

.school-bt h3 {
  font-size: 3rem;
  color: #16447c;
  padding-bottom: 1em;
  margin-bottom: 1.5em;
  letter-spacing: 0.1em;
  border-bottom: solid 1px #16447c;
  text-indent: 2em;
}

.school-bt ul {
  margin: 2em 0;
}

.school-bt ul li {
  width: 49%;
}

/*----------

イベント企画・運営

------------*/

.event-bg001 {
  background: url("../images/page/event/bg-001.jpg") no-repeat;
  background-size: cover;
}

.event-img {
  margin-bottom: 4em;
}
.t-left {
  text-align: left;
}

ul.event-list {
  margin: 3em 0 10em;
}

ul.event-list li {
  width: 49%;
}
.pt3 {
  padding-top: 3em;
}

.event-img-list {
  width: 49%;
}

.event-img-list li + li {
  margin-top: 2em;
}

/*----------

スクール運営

------------*/

.operation-bg001 {
  background: url("../images/page/operation/bg-001.jpg") no-repeat;
  background-size: cover;
}

.img-100 {
  border-bottom: solid 30px #16447c;
  margin-bottom: 4em;
}

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

.operation-info {
  margin: 5em 0;
  background-color: #d8dfe9;
  padding: 0 0 5em;
  text-align: center;
}

.operation-info dl {
}

.operation-info dl dt {
  color: #16447c;
  background-color: #b7c5d6;
  padding: 0.5em 0;
  font-size: 3rem;
  margin-bottom: 1em;
  letter-spacing: 0.1em;
}

.operation-info dl dd {
  font-size: 1.6rem;
  line-height: 2;
  padding: 1em;
  box-sizing: border-box;
  color: #333333;
  background-color: #fff;
}

.operation-txt {
  color: #16447c;
  font-size: 1.6rem;
  line-height: 2;
  background-color: #d8dfe9;
  padding: 3em 0;
  text-align: center;
  margin-bottom: 5em;
}

.img-80 {
  width: 80%;
  margin: 0 auto 3em;
}
.t-cnter {
  text-align: center;
}
.m-auto {
  margin: 0 auto;
}
.mb-2 {
  margin-bottom: 2em !important;
}
.mb-5 {
  margin-bottom: 5em !important;
}
.mb-10 {
  margin-bottom: 10em !important;
}

/*----------

アスリート支援事業

------------*/

.athlete-bg001 {
  background: url("../images/page/athlete/bg-001.jpg") no-repeat;
  background-size: cover;
}

.athlete-bg002 {
  background: url("../images/page/athlete/bg-002.jpg") no-repeat;
  background-size: cover;
}

.athlete-bg003 {
  background: url("../images/page/athlete/bg-003.jpg") no-repeat;
  background-size: cover;
}

.athlete-area {
  margin-bottom: 5em;
}
.athlete-img {
  width: 40%;
}

.sns-btn {
  display: flex;
  gap: 20%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.sns-btn li {
  margin-top: 20px;
  margin-bottom: 20px;
}

.sns-btn img {
  width: 4vw;
  height: auto;
}

.athlete-info {
  width: 58%;
  padding: 4em 1em;
  box-sizing: border-box;
}

.athlete-info h3 {
  font-size: 3rem;
  color: #16447c;
  padding-bottom: 1em;
  margin-bottom: 1.5em;
  letter-spacing: 0.1em;
  border-bottom: solid 1px #16447c;
  padding-left: 1em;
  box-sizing: border-box;
}

.athlete-info h3 span {
  font-size: 1.8rem;
  padding-left: 1em;
}

.athlete-info dl {
  padding: 0 3em;
  box-sizing: border-box;
}

.athlete-info dl dt {
  width: 20%;
  font-size: 1.3rem;
}

.athlete-info dl dd {
  width: 80%;
  font-size: 1.3rem;
  line-height: 2;
}

.athlete-info dl dd div {
  margin-top: 1em;
}

h2.athlete-ttl {
  font-size: 3.6rem;
  color: #16447c;
  text-align: center;
  background: url("../images/page/athlete/ttl.png") repeat-x bottom;
  margin-bottom: 1em;
}

.interview-area {
  margin-bottom: 5em;
}
.interview-img {
  width: 30%;
}

.interview-area p {
  width: 70%;
  padding: 2em;
  box-sizing: border-box;
  font-size: 1.3rem;
  line-height: 1.8;
}

dl.support {
  border: solid 1px #16447c;
  margin-bottom: 10em;
}

dl.support dt {
  font-size: 1.6rem;
  width: 30%;
  text-align: center;
  background: #8aa1bd;
  padding: 1em 0;
  color: #fff;
  letter-spacing: 0.5em;
}

dl.support dd {
  font-size: 1.6rem;
  width: 70%;
  color: #16447c;
  padding: 1em 3em;
  box-sizing: border-box;
}

.support-txt {
  width: 60%;
  margin: 0 auto;
  font-size: 2rem;
  line-height: 2;
  background-color: #e1e7ee;
  text-align: center;
  border-radius: 20px;
  padding: 2em 0;
  position: relative;
  z-index: 10;
}

.support-area {
  background: url("../images/page/athlete/bg-004.jpg") no-repeat;
  background-size: cover;
  padding: 15em 0 10em;
  margin-top: -5%;
}

@media screen and (max-width: 737px) {
  .sns-btn img {
    display: flex;
    justify-content: space-around;
    object-fit: contain;
  }

  .sns-btn img {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 361px) {
  .sns-btn img {
    width: 100vw;
  }
}

/*----------

会社概要

------------*/

.message-area {
  margin-bottom: 3em;
}

.message-img {
  width: 40%;
}
.message-info {
  width: 58%;
}

.message-info p {
  font-size: 1.5rem;
  line-height: 1.8;
}

.message-info p + p {
  margin-top: 1.5em;
}

ol.media-bar {
  margin-bottom: 10em;
}

ol.media-bar li {
  width: 24%;
}

ol.media-bar li img {
  width: 100%;
  height: 135px;
  /*object-fit: cover;*/
}

.company-bg001 {
  background: url("../images/page/company/bg-001.jpg") no-repeat;
  background-size: cover;
}

.company-bg002 {
  background: url("../images/page/company/bg-002.jpg") no-repeat;
  background-size: cover;
}

.company-ttl {
  width: 50%;
  margin: 0 auto 5em;
}

.bg-area .block {
  margin-bottom: 3em;
}

.bg-area .block h2 {
  line-height: 1.6;
  margin-bottom: 0;
}

ul.list-bar {
  text-align: center;
}

ul.list-bar li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 2%;
}

/*----------

お問い合わせ

------------*/

.contact-txt {
  font-size: 1.7rem;
  text-align: center;
}

.contact-tel {
  width: 40%;
  margin: 3em auto;
}

.contact-txt01 {
  width: 60%;
  padding: 0.3em 0;
  margin: 0 auto;
  background-color: #243251;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
}

.form-area {
  margin-top: 8em;
  background: url("../images/page/contact/bg-001.jpg") no-repeat;
  background-size: cover;
  padding: 10em 0;
}

/*----------

社員の声を紹介

------------*/

.interviewee-area {
  margin-bottom: 8em;
}

.interviewee-img {
  width: 60%;
}

.interviewee-info {
  width: 36%;
  padding-top: 2em;
}

.interviewee-info h2 {
  font-size: 6rem;
  color: #3c7ed1;
}

.interviewee-info p {
  padding: 0.3em 1em;
  box-sizing: border-box;
  margin-bottom: 2em;
  background-color: #243251;
  font-size: 1.4rem;
  color: #fff;
}

.interviewee-info h3 {
  font-size: 3rem;
  color: #16447c;
  border-bottom: solid 1px #16447c;
  padding-bottom: 0.5em;
}

.interviewee-info h3 span {
  font-size: 1.8rem;
  color: #16447c;
  padding-left: 2em;
  box-sizing: border-box;
}

ul.voice-member {
  margin-bottom: 10em;
}
ul.voice-member li {
  width: 24%;
}

ul.voice-member li p {
  padding: 0.3em 1em;
  box-sizing: border-box;
  margin: 1em 0;
  background-color: #243251;
  font-size: 1.4rem;
  color: #fff;
}

ul.voice-member li h3 {
  font-size: 2rem;
  color: #16447c;
}

ul.voice-member li h3 span {
  font-size: 1.3rem;
  color: #16447c;
  padding-left: 2em;
  box-sizing: border-box;
}

dl.voice-interview {
  margin-bottom: 3em;
}

dl.voice-interview dt {
  width: 5%;
  color: #16447c;
  font-size: 1.6rem;
  font-weight: bold;
}

dl.voice-interview dd {
  width: 93%;
}

dl.voice-interview dd p {
  font-size: 1.5rem;
  line-height: 2;
}

h3.interview-ttl {
  font-size: 2.4rem;
  color: #519d96;
  border-bottom: solid 1px #519d96;
  padding-bottom: 1em;
  margin-bottom: 2em;
}

.co-blue {
  color: #29abe2 !important;
}

.voice-interview-ttl {
  font-size: 2.6rem;
  color: #16447c;
  margin-bottom: 1em;
  text-align: center;
}

.menuSub {
  position: absolute;
  margin-left: -30px;
  padding: 0;
  display: none;
  z-index: 100;
}

.pt5 {
  padding-top: 5em;
}
.mb10 {
  margin-bottom: 10em !important;
}

/*.openが付与された時、表示の設定*/
.menuSub.open {
  display: block;
}
.menuSub li {
}
.menuSub li a {
  width: 200px;
  padding: 1em;
  box-sizing: border-box;
  border-bottom: solid 2px #fff;
  display: block;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #243251;
  font-size: 1.4rem;
  transition: background-color 1s;
}

.menuSub li a:hover {
  background: #0b1d3d;
  color: #fff !important;
  transition: background-color 1s;
}

/*--link-area01--*/
.link-area01 {
  background: url("../images/common/footer-bg.png") no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
  margin-bottom: 2em;
}

.link-area01 .btn01 {
  width: 40%;
  margin: 0 auto;
}

.link-area01 h2 {
  font-size: 5rem;
  margin-bottom: 1em;
}

.link-area01 h2 span {
  font-size: 3rem;
  display: block;
  color: #82a9b8;
}

.c-block {
  width: 49.5%;
  padding: 5em 1em;
  box-sizing: border-box;
}

.c-block01 {
  width: 49.5%;
  padding: 5em 1em;
  box-sizing: border-box;
}

.leht-pt {
  padding-top: 0.5em;
}
.right-ttl {
  font-size: 4.4rem !important;
  margin-bottom: 0.4em !important;
}

/*----------

コラム

------------*/

#column-section {
  display: grid;
  justify-content: center;
  width: 1080px;
  margin: 0 auto;
}

.column-list {
  text-align: center;
  font-size: 16px; /*文字サイズ*/
  padding: 20px; /*文字回りの余白（上下左右）*/
  margin-top: 80px;
  display: block;
  width: 1080px;
}

.lcp_catlist {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: left;
  margin-left: 0;
  padding-left: 0;
  margin: 0 auto;
}

.lcp_catlist li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0 1% 3%;
  margin-bottom: 100px;
  width: 230px;
}

.lcp_catlist li a {
  text-align: left;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.3rem;
  text-decoration: #0000cd;
  color: #0000cd;
  transition: color 0.5s;
  align-items: stretch;
}

.lcp_catlist li a:first-of-type {
  margin-bottom: auto;
}

.lcp_catlist li a:last-child {
  width: 230px;
  height: 153px;
}

.lcp_catlist li a img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.lcp_catlist li a:hover {
  text-decoration: #1e90ff;
  color: #1e90ff;
}

@media screen and (max-width: 420px) {
  html,
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  #column-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }

  .column-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    font-size: 1.3rem; /*文字サイズ*/
    margin-top: 50px;
    width: 100%;
  }

  .lcp_catlist li {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 50px;
    width: 100%;
  }

  .lcp_catlist li a {
    text-align: center;
    font-size: 1.3rem;
    text-decoration: #0000cd;
    transition: color 0.5s;
  }

  .lcp_catlist li a img {
    width: 230px;
    height: 115px;
  }

  .lcp_catlist li a:hover {
    text-decoration: #1e90ff;
    color: #1e90ff;
  }
}

/*----------

中国語

------------*/

.chinese-list {
}

.chinese-list li {
  width: 48%;
  text-align: center;
  margin-bottom: 4em;
}

.chinese-list li h2 {
  font-size: 3rem;
}

.chinese-list li h2 span {
  font-size: 1.6rem;
  display: block;
  color: #3b7f9c;
}
.chinese-list li h2 a {
  display: block;
  padding: 0.5em 0;
}
.chinese-list li h2 a:hover {
  background-color: #001c4d;
  color: #fff;
}

.video {
  position: relative;
  padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*--contact--*/
.formTable {
  width: 86%;
  margin: 0 auto;
  text-align: left;
  box-sizing: border-box;
  border-collapse: collapse;
}

table.formTable th,
table.formTable td {
  width: 100%;
  display: block;
  border-collapse: collapse;
}

table.formTable th {
  color: #fff;
  text-align: left;
  font-weight: normal;
  box-sizing: border-box;
  font-size: 1.6rem;
  margin: 30px 0 10px;
}

.formTable td {
  color: #fff;
  font-size: 1.6rem;
}

.mw_wp_form_complete {
  background: #fff;
  padding: 2em;
  box-sizing: border-box;
  font-size: 1.6rem;
  line-height: 2;
}

table.formTable td,
table.formTable th {
  box-sizing: border-box;
}

table.formTable td {
}

table.formTable th span {
  font-weight: normal;
  text-align: left;
  color: #fbed21;
}

table.formTable td .cont_inputb {
  width: 30%;
  padding: 15px;
  box-sizing: border-box;
  font-size: 1.6rem;
  border: 1px solid #ccc;
}

table.formTable td .cont_inputd {
  width: 100%;
  height: 50px;
  padding: 13px;
  box-sizing: border-box;
  font-size: 1.6rem;
  margin: 0 0 20px;
  border: 1px solid #ccc;
  overflow: hidden;
}

table.formTable td .cont_inputd + .cont_inputd {
  margin-top: 10px 0 0;
}

table.formTable td .cont_input {
  width: 80%;
  padding: 15px;
  box-sizing: border-box;
  font-size: 1.6rem;
  border: 1px solid #ccc;
}

table.formTable td .cont_input {
  margin: 10px 0 0;
}

.mw_wp_form .error {
  font-size: 100%;
  background-color: #c00;
  color: #fff !important;
  display: inline-block !important;
  /*width: 15%;*/
  padding: 5px 5px 10px;
  box-sizing: border-box;
  font-weight: bold;
  margin: -20px 0 20px;
  text-align: center;
}

textarea.cont_input3 {
  width: 100%;
  height: 390px;
  border: none;
  border: 1px solid #ccc;
  padding: 15px;
  box-sizing: border-box;
  font-size: 16px;
}

#submit {
  text-align: center;
  margin: 50px auto;
}

#submit input {
  background: url(../images/page/monitor/info_arrow.png) no-repeat right 15px
    center #1da1f2;
  border: 1px solid #1da1f2;
  text-decoration: none;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 14px 0;
  letter-spacing: 1px;
  font-weight: bold;
  display: block;
  width: 40%;
  text-align: center;
  display: inline-block;
}

#submit input:hover {
  background: url(../images/page/monitor/info_arrow_hover.png) no-repeat right
    15px center #16447c;
  border: 1px solid #fff;
  color: #000;
  color: #fff;
}

#submit input.backbtn {
  background: #408a84;
  color: #fff;
  border: 1px solid #408a84;
  width: 40%;
  padding: 14px 0;
  letter-spacing: 1px;
  font-size: 1.4rem;
  margin-right: 20px;
}

#submit input.backbtn:hover {
  background: #fff;
  color: #408a84;
  cursor: pointer;
}

.contact-error p,
.contact-text1 p,
.contact-complete p {
  width: 80%;
  text-align: center;
  color: #c00;
  border: 4px double #ccc;
  margin: 0 auto 3%;
  padding: 2% 0;
  background-color: #fff;
  font-size: 1.6rem;
}

table.formTable td div + div {
  margin: 10px 0 0;
}

table.formTable td div p,
.mwform-radio-field {
  font-size: 14px;
  color: #fff;
}

.mwform-radio-field label {
  display: block;
  float: left;
  width: 31%;
  margin: 0.5%;
}

.news-single {
  color: #333;
  text-align: left;
}

.news-single dl {
  border-bottom: 1px solid #ccc;
  padding-bottom: 2em;
  align-items: center;
  margin-bottom: 2em;
}
s .news-single dl dt {
  width: 10%;
  background-color: #16447c;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
}

.news-single dl dd {
  width: 87%;
  text-align: left;
}

.news-single p {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 2em;
}

.news-single img {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
}

/*--news--*/
.news-area {
  padding: 0 0;
  text-align: center;
  margin: 0.5em 0 0;
  color: #9e005d;
}

.news-page {
  margin-top: 4em;
  box-sizing: border-box;
}

.news-page dl {
  border-bottom: 1px solid #ccc;
  padding-bottom: 2em;
}

.news-page dl + dl {
  margin-top: 2em;
}

.news-page dl dt {
  width: 10%;
  background-color: #16447c;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
}

.news-page dl dd {
  width: 87%;
  font-size: 1.6rem;
  text-align: left;
  position: relative;
}

.news-page dl dd span {
  width: 15%;
  position: absolute;
  right: 0;
}

.news-page dl dd span img {
  width: 100%;
}

.news-page dl dd a:hover {
  text-decoration: underline;
}

.news-single {
  color: #333;
  text-align: left;
}

.news-single dl {
  border-bottom: 1px solid #ccc;
  padding-bottom: 2em;
  align-items: center;
  margin-bottom: 2em;
}
.news-single dl dt {
  width: 10%;
  background-color: #16447c;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
}

.news-single dl dd {
  width: 87%;
  text-align: left;
}

.news-single p {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 2em;
}

.news-single img {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
}
.sp_only2 {
  display: none;
}
#daihyou {
  font-size: 15px;
  text-align: center;
}
.tyuuouyose1 {
  text-align: center;
}
.tyuuouyose2 {
  margin-right: auto;
  margin-left: auto;
}
.fontmaru1red {
  color: red;
  font-size: 30px;
}
.fontmaru1blue {
  color: #16447c;
}
.youchienpng {
  width: 600px;
}
.fontmaru2 {
  color: #16447c;
  font-size: 25px;
}
.wrapper {
  max-width: 60%;
  margin: 0 auto;
}
.fontmaru3 {
  color: #16447c;
  text-align: left;
  font-size: 30px;
}
.kasen {
  background: linear-gradient(transparent 60%, #99ccff 0%);
}
.fontmaru32 {
  color: #16447c;
  text-align: left;
  font-size: 20px;
}
.fontmaru4 {
  color: #16447c;
  font-size: 30px;
}
.youchienpng {
  width: 600px;
}
.maxwid {
  width: 100%;
}
.ikenpng {
  width: 450px;
}
.ikentext {
  text-align: left;
  font-size: 25px;
}
.wid80 {
  width: 80%;
}
