@charset "UTF-8";
@font-face {
  font-family: "NotoSansJP-Black";
  src: url(/teamjosai/fonts/NotoSansJP/NotoSansJP-Black.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP-Bold";
  src: url(/teamjosai/fonts/NotoSansJP/NotoSansJP-Bold.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP-Light";
  src: url(/teamjosai/fonts/NotoSansJP/NotoSansJP-Light.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP-Medium";
  src: url(/teamjosai/fonts/NotoSansJP/NotoSansJP-Medium.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP-Regular";
  src: url(/teamjosai/fonts/NotoSansJP/NotoSansJP-Regular.woff) format("woff");
  font-display: swap;
}
/*16*1.75/2*/
/*======*/
/* 共通 */
/*======*/
/* PC/SP出し分け
------------------------------ */
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* 共通アニメーション
------------------------------ */
/* レイアウト
-----------------------------------*/
body {
  height: 100%;
}

section .contents {
  max-width: 1488px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 767px) {
  section .contents {
    padding: 0 24px;
  }
}

section .contents p,
section .contents ul,
section .contents ol {
  margin-bottom: 1em;
}

/* フォーム
-----------------------------------*/
input[type=text],
input[type=email],
textarea {
  width: 100%;
  padding: 8px;
  font-size: 16px;
}

input[type=date],
select {
  max-width: 100%;
  padding: 8px;
  font-size: 16px;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button],
button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  font-family: "NotoSansJP-Regular", sans-serif;
  font-size: 16px;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/* パンくず
-----------------------------------*/
.b-nv {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 767px) {
  .b-nv {
    display: none;
  }
}
.b-nv ul {
  display: flex;
  justify-content: flex-start;
  padding: 16px 0;
}
.b-nv ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 8px;
  line-height: 1;
}
.b-nv ul li a {
  margin-right: 8px;
}
.b-nv ul li::after {
  content: "";
  display: block;
  border-color: #333;
  border-style: solid;
  border-width: 0 1px 1px 0;
  height: 8px;
  vertical-align: middle;
  width: 8px;
  transform: rotate(-45deg);
}
.b-nv ul li:last-child::after {
  content: none;
}

/* タイトル
-----------------------------------*/
.title-area {
  padding: 64px 0;
  margin-bottom: 32px;
  background-color: #FCCF00;
}
@media (max-width: 767px) {
  .title-area {
    padding: 48px 0;
  }
}
.title-area .heading-title {
  margin-bottom: 0;
  font-size: 32px;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1;
  text-align: center;
}
@media (max-width: 767px) {
  .title-area .heading-title {
    font-size: 28px;
  }
}

.heading01 {
  margin: 128px 0 64px;
  font-size: 32px;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1;
  text-align: center;
}
@media (max-width: 767px) {
  .heading01 {
    margin: 80px 0 40px;
    font-size: 28px;
  }
}

.heading02 {
  margin: 64px 0 24px;
  font-size: 24px;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .heading02 {
    margin: 32px 0 16px;
    font-size: 18px;
  }
}

.heading03 {
  margin: 48px 0 16px;
  font-size: 20px;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .heading03 {
    margin: 24px 0 16px;
    font-size: 18px;
  }
}

.heading04 {
  margin: 32px 0 16px;
  font-size: 18px;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .heading04 {
    margin: 24px 0 16px;
    font-size: 16px;
  }
}

/* リンクテキスト（リンク共通の記載があれば）
-----------------------------------*/
.link-txt {
  text-decoration: underline;
}

/* リンクボタン
-----------------------------------*/
.com-bt {
  display: inline-block;
  padding: 16px 32px;
  border: 1px solid #CCC;
  background-color: #FCCF00;
  border-radius: 4px;
  line-height: 1;
  text-align: center;
  vertical-align: top;
  transition: 0.5s all;
}
.com-bt:hover {
  background-color: #EEE;
  text-decoration: none;
  color: #333;
}
@media (max-width: 767px) {
  .com-bt {
    display: block;
    width: 100%;
    padding: 16px;
  }
}
.com-bt.next {
  position: relative;
}
.com-bt.next::after {
  content: "";
  position: absolute;
  display: block;
  right: 8px;
  top: 50%;
  margin-top: -4px;
  border-color: #333;
  border-style: solid;
  border-width: 0 1px 1px 0;
  height: 8px;
  vertical-align: middle;
  width: 8px;
  transform: rotate(-45deg);
}
.com-bt.prev {
  position: relative;
}
.com-bt.prev::before {
  content: "";
  position: absolute;
  display: block;
  left: 8px;
  top: 50%;
  margin-top: -4px;
  border-color: #333;
  border-style: solid;
  border-width: 0 1px 1px 0;
  height: 8px;
  vertical-align: middle;
  width: 8px;
  transform: rotate(135deg);
}

input[type=submit].com-bt,
input[type=button].com-bt,
button.com-bt {
  border: 1px solid #CCC;
  background-color: #FCCF00;
  line-height: 1;
  cursor: pointer;
}
input[type=submit].com-bt:hover,
input[type=button].com-bt:hover,
button.com-bt:hover {
  background-color: #EEE;
  color: #333;
}
@media (max-width: 767px) {
  input[type=submit].com-bt,
input[type=button].com-bt,
button.com-bt {
    font-size: 14px;
  }
}

/*=============*/
/* message-sec */
/*=============*/
/* message
-----------------------------------*/
.message-sec {
  position: relative;
  padding-bottom: 80px;
  background: #0079C3;
}
.message-sec .contents {
  position: relative;
  max-width: 100%;
  padding: 0;
}
.message-sec .contents::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -2;
  width: 100%;
  height: 100%;
  background: #0079C3;
  background-position: center;
}
@media (max-width: 767px) {
  .message-sec .contents::before {
    /*top: initial;
    bottom: -12vw;
    height: 40vw;*/
    content: none;
  }
}
.message-sec .wrap {
  position: relative;
}
@media (max-width: 767px) {
  .message-sec .wrap {
    display: block;
  }
}
.message-sec .wrap .l-cts {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  width: 50%;
}
@media (max-width: 767px) {
  .message-sec .wrap .l-cts {
    width: 100%;
  }
}
.message-sec .wrap .l-cts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(/teamjosai/images/message/message_bg01.jpg) no-repeat;
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .message-sec .wrap .l-cts::before {
    top: 100%;
    left: 0;
    content: none;
    height: 50%;
    background: url(/teamjosai/images/message/message_bg01_sp.jpg) no-repeat;
    background-size: 100% auto;
  }
}
.message-sec .wrap .l-cts .heading-wrap {
  position: absolute;
  top: 54px;
  right: 48px;
}
@media (max-width: 1024px) {
  .message-sec .wrap .l-cts .heading-wrap {
    top: 4.13vw;
    right: 5.33vw;
  }
}
.message-sec .wrap .l-cts .heading-wrap h2,
.message-sec .wrap .l-cts .heading-wrap .heading-msg {
  color: #0E2D45;
  font-size: 36px;
  font-family: "NotoSansJP-Bold", sans-serif;
  text-align: right;
}
@media (max-width: 1024px) {
  .message-sec .wrap .l-cts .heading-wrap h2,
.message-sec .wrap .l-cts .heading-wrap .heading-msg {
    font-size: 20px;
  }
}
.message-sec .wrap .l-cts .heading-wrap .sub-txt {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0;
  color: #0079C3;
  font-size: 50px;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .message-sec .wrap .l-cts .heading-wrap .sub-txt {
    font-size: 28px;
  }
}
.message-sec .wrap .l-cts .heading-wrap .sub-txt span {
  display: block;
}
.message-sec .wrap .l-cts .heading-wrap .sub-txt span.num {
  margin-right: 12px;
}
@media (max-width: 1024px) {
  .message-sec .wrap .l-cts .heading-wrap .sub-txt span.num {
    margin-right: 8px;
  }
}
.message-sec .wrap .l-cts .heading-wrap .sub-txt span.txt {
  transform: translateY(3px);
  font-size: 16px;
}
@media (max-width: 1024px) {
  .message-sec .wrap .l-cts .heading-wrap .sub-txt span.txt {
    transform: translateY(0);
    font-size: 10px;
  }
}
.message-sec .wrap .l-cts .img img {
  width: 100%;
}
.message-sec .wrap .r-cts {
  width: 50%;
  margin: -48% 0 0 auto;
  margin: 0 0 0 auto;
}
@media (max-width: 767px) {
  .message-sec .wrap .r-cts {
    width: 100%;
    margin: 0 auto;
    background: url(/teamjosai/images/index/message_bg01_sp.jpg) no-repeat;
    background-size: auto 100%;
  }
}
.message-sec .wrap .r-cts .comment-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  margin-top: -96%;
  padding: min(2.91vw, 56px) 40px min(2.91vw, 56px) min(2.91vw, 56px);
  -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 1s both;
          animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 1s both;
}
@media (max-width: 767px) {
  .message-sec .wrap .r-cts .comment-wrap {
    z-index: 0;
    width: 100%;
    margin-top: 0;
    padding: 20px;
    -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s both;
            animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s both;
  }
}
.message-sec .wrap .r-cts .comment-wrap .comment {
  position: relative;
  display: inline-block;
  padding: 24px;
  box-shadow: 3px 3px 4px 2px rgba(45, 127, 140, 0.2);
  border-radius: 10px;
  background: #FFF;
}
@media (max-width: 1024px) {
  .message-sec .wrap .r-cts .comment-wrap .comment {
    padding: 18px;
  }
}
@media (max-width: 767px) {
  .message-sec .wrap .r-cts .comment-wrap .comment {
    padding: 10px 12px;
    border-radius: 5px;
  }
}
.message-sec .wrap .r-cts .comment-wrap .comment::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -23px;
  transform: translateY(-50%);
  width: 24px;
  padding-top: 22px;
  filter: drop-shadow(3px 3px 0 rgba(45, 127, 140, 0.2));
  background: url(/teamjosai/images/index/message_arrow01.svg) no-repeat;
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .message-sec .wrap .r-cts .comment-wrap .comment::before {
    right: -11px;
    width: 12px;
    padding-top: 11px;
  }
}
.message-sec .wrap .r-cts .comment-wrap .comment:not(:last-child) {
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .message-sec .wrap .r-cts .comment-wrap .comment:not(:last-child) {
    margin-bottom: 6px;
  }
}
.message-sec .wrap .r-cts .comment-wrap .comment p {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .message-sec .wrap .r-cts .comment-wrap .comment p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .message-sec .wrap .r-cts .comment-wrap .comment p {
    font-size: 10px;
  }
}
.message-sec .wrap .r-cts .comment-wrap .comment .ttl {
  color: #0079C3;
}
.message-sec .bt {
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 767px) {
  .message-sec .bt {
    max-width: 268px;
  }
}
.message-sec .bt a {
  display: inline-block;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .message-sec .bt a {
    margin-top: 8px;
  }
}
@media (max-width: 767px) {
  .message-sec .bt a:hover img {
    opacity: 1 !important;
  }
}

/*============*/
/* 共通?汎用 */
/*============*/
/* 段落
-----------------------------------*/
/* ぶら下げインデント */
.indent {
  margin-left: 1em;
  text-indent: -1em;
}

/* 汎用カラム
-----------------------------------*/
.row:after {
  content: "";
  clear: both;
  display: block;
}

.multicolumn,
.multilist {
  overflow: hidden !important;
}

.multicolumn-left {
  float: left;
}

.multicolumn-right {
  float: right;
}

.multilist li {
  float: left;
}

/* カラム幅
-----------------------------------*/
.w1000 {
  width: 1000px;
}

/* リスト、アイコン
-----------------------------------*/
/* リスト（デフォルト） */
.list-df {
  margin-left: 23px;
  list-style: disc;
}

/* リスト（ドット） */
.list-dot li {
  padding-left: 1em;
}

.list-dot li:before {
  content: "?";
  margin-left: -1em;
}

/* リスト（数字） */
.list-num li {
  margin-left: 30px;
}

/* テーブル
-----------------------------------*/
/* 幅 */
col.colw05 {
  width: 5%;
}

col.colw10 {
  width: 10%;
}

col.colw15 {
  width: 15%;
}

col.colw20 {
  width: 20%;
}

col.colw25 {
  width: 25%;
}

col.colw30 {
  width: 30%;
}

col.colw35 {
  width: 35%;
}

col.colw40 {
  width: 40%;
}

col.colw45 {
  width: 45%;
}

col.colw50 {
  width: 50%;
}

/* テーブル */
.table {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  display: block;
}
.table tbody, .table tr {
  display: block;
  width: 100%;
}
.table th {
  display: block;
  margin-bottom: 16px;
  font-family: "NotoSansJP-Bold", sans-serif;
}
.table td {
  display: block;
  margin-bottom: 16px;
}

/* ニュース一覧
-----------------------------------*/
.list-news li {
  border-bottom: 1px solid #CCC;
}
.list-news li:last-child {
  border-bottom: none;
}
.list-news li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
.list-news li a .date {
  width: 80px;
  line-height: 1;
}
.list-news li a .label {
  width: 80px;
  padding: 6px 8px;
  background-color: #333;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  line-height: 1;
}
@media (max-width: 767px) {
  .list-news li a .label {
    font-size: 12px;
  }
}
.list-news li a .title {
  width: calc(100% - 192px);
  word-wrap: break-word;
  line-height: 1.3;
}
.list-news li a:hover {
  color: #AAA;
  text-decoration: none;
}
@media (max-width: 767px) {
  .list-news li a .title {
    width: 100%;
    margin-top: 8px;
  }
}

/* WPページャー
-----------------------------------*/
.wp-pagenavi {
  display: flex;
  justify-content: center;
  padding: 88px 0;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 32px;
  text-align: center;
}
@media (max-width: 767px) {
  .wp-pagenavi {
    padding: 64px 0;
  }
}
.wp-pagenavi a,
.wp-pagenavi span.current {
  display: inline-block;
  width: 32px;
  margin: 0 2px;
  border-radius: 50%;
  color: #333;
  transition: 0.5s all;
}
.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  text-decoration: none;
  background-color: #333;
  color: #FFF;
}

/* 投稿記事 タイトル
-----------------------------------*/
.entry-detail .entry-header .entry-title {
  margin: 40px 0 32px;
  font-size: 28px;
  line-height: 1.3;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-header .entry-title {
    margin: 28px 0;
    font-size: 24px;
  }
}
.entry-detail .entry-header .entry-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.entry-detail .entry-header .entry-meta .date {
  line-height: 1;
}
.entry-detail .entry-header .entry-meta .label {
  width: 80px;
  padding: 6px 8px;
  margin-left: 16px;
  background-color: #333;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  line-height: 1;
}
@media (max-width: 767px) {
  .entry-detail .entry-header .entry-meta .label {
    font-size: 12px;
  }
}
.entry-detail .entry-content {
  padding: 24px 0;
  margin: 24px 0;
  border-bottom: 1px solid #CCC;
  border-top: 1px solid #CCC;
  overflow: hidden;
  word-break: break-all;
}
@media (max-width: 767px) {
  .entry-detail .entry-content {
    padding: 16px 0;
    margin: 16px 0;
  }
}
.entry-detail .btn-area {
  margin: 88px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .entry-detail .btn-area {
    margin: 40px 0;
  }
}

/* 投稿記事 詳細
-----------------------------------*/
.entry-detail .entry-content {
  /* 投稿画像 */
}
.entry-detail .entry-content p {
  margin: 1em 0;
}
.entry-detail .entry-content h1 {
  margin: 24px 0 16px;
  font-size: 28px;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h1 {
    margin: 16px 0 12px;
    font-size: 24px;
  }
}
.entry-detail .entry-content h2 {
  margin: 24px 0 16px;
  font-size: 26px;
  font-family: "NotoSansJP-Bold", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h2 {
    margin: 16px 0 12px;
    font-size: 22px;
  }
}
.entry-detail .entry-content h3 {
  margin: 16px 0;
  font-size: 24px;
  line-height: 1.3;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h3 {
    margin: 12px 0;
    font-size: 20px;
  }
}
.entry-detail .entry-content h4 {
  margin: 16px 0;
  font-size: 22px;
  line-height: 1.3;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h4 {
    margin: 12px 0;
    font-size: 18px;
  }
}
.entry-detail .entry-content h5 {
  margin: 16px 0;
  font-size: 20px;
  line-height: 1.3;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h5 {
    margin: 12px 0;
    font-size: 16px;
  }
}
.entry-detail .entry-content h6 {
  margin: 16px 0;
  font-size: 18px;
  line-height: 1.3;
  font-family: "NotoSansJP-Bold", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h6 {
    margin: 12px 0;
    font-size: 14px;
  }
}
.entry-detail .entry-content ul {
  margin: 16px 0 16px 32px;
}
.entry-detail .entry-content ul li {
  list-style: disc;
}
.entry-detail .entry-content ol {
  margin: 16px 0 16px 32px;
}
.entry-detail .entry-content blockquote {
  font-style: italic;
  padding: 0 32px;
}
.entry-detail .entry-content blockquote cite,
.entry-detail .entry-content blockquote em,
.entry-detail .entry-content blockquote i {
  font-style: normal;
}
.entry-detail .entry-content table {
  width: 100%;
  margin-bottom: 1em;
  border-collapse: collapse;
  border-spacing: 0;
}
.entry-detail .entry-content table th {
  padding: 16px;
  border: solid 1px #333;
  font-family: "NotoSansJP-Bold", sans-serif;
  text-align: center;
}
@media (max-width: 767px) {
  .entry-detail .entry-content table th {
    padding: 8px 2px;
    font-size: 12px;
  }
}
.entry-detail .entry-content table td {
  padding: 16px;
  border: solid 1px #333;
}
@media (max-width: 767px) {
  .entry-detail .entry-content table td {
    padding: 8px 2px;
    font-size: 12px;
  }
}
.entry-detail .entry-content .alignleft,
.entry-detail .entry-content img.alignleft {
  display: inline;
  float: left;
  margin-right: 16px;
  margin-top: 4px;
}
.entry-detail .entry-content .alignright,
.entry-detail .entry-content img.alignright {
  display: inline;
  float: right;
  margin-left: 16px;
  margin-top: 4px;
}
.entry-detail .entry-content .aligncenter,
.entry-detail .entry-content img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.entry-detail .entry-content img.alignleft,
.entry-detail .entry-content img.alignright,
.entry-detail .entry-content img.aligncenter {
  margin-bottom: 16px;
}
.entry-detail .entry-content .wp-caption {
  text-align: center;
}
/*# sourceMappingURL=common.css.map */